types

package
v1.1.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 10, 2021 License: Apache-2.0 Imports: 3 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Address

type Address struct {

	// The unique ID for an address.
	AddressId *string

	// The city in an address that a Snow device is to be delivered to.
	City *string

	// The name of the company to receive a Snow device at an address.
	Company *string

	// The country in an address that a Snow device is to be delivered to.
	Country *string

	// If the address you are creating is a primary address, then set this option to
	// true. This field is not supported in most regions.
	IsRestricted bool

	// This field is no longer used and the value is ignored.
	Landmark *string

	// The name of a person to receive a Snow device at an address.
	Name *string

	// The phone number associated with an address that a Snow device is to be
	// delivered to.
	PhoneNumber *string

	// The postal code in an address that a Snow device is to be delivered to.
	PostalCode *string

	// This field is no longer used and the value is ignored.
	PrefectureOrDistrict *string

	// The state or province in an address that a Snow device is to be delivered to.
	StateOrProvince *string

	// The first line in a street address that a Snow device is to be delivered to.
	Street1 *string

	// The second line in a street address that a Snow device is to be delivered to.
	Street2 *string

	// The third line in a street address that a Snow device is to be delivered to.
	Street3 *string
}

The address that you want the Snow device(s) associated with a specific job to be shipped to. Addresses are validated at the time of creation. The address you provide must be located within the serviceable area of your region. Although no individual elements of the Address are required, if the address is invalid or unsupported, then an exception is thrown.

type ClusterLimitExceededException

type ClusterLimitExceededException struct {
	Message *string
}

Job creation failed. Currently, clusters support five nodes. If you have less than five nodes for your cluster and you have more nodes to create for this cluster, try again and create jobs until your cluster has exactly five notes.

func (*ClusterLimitExceededException) Error

func (*ClusterLimitExceededException) ErrorCode

func (e *ClusterLimitExceededException) ErrorCode() string

func (*ClusterLimitExceededException) ErrorFault

func (*ClusterLimitExceededException) ErrorMessage

func (e *ClusterLimitExceededException) ErrorMessage() string

type ClusterListEntry

type ClusterListEntry struct {

	// The 39-character ID for the cluster that you want to list, for example
	// CID123e4567-e89b-12d3-a456-426655440000.
	ClusterId *string

	// The current state of this cluster. For information about the state of a specific
	// node, see JobListEntry$JobState.
	ClusterState ClusterState

	// The creation date for this cluster.
	CreationDate *time.Time

	// Defines an optional description of the cluster, for example Environmental Data
	// Cluster-01.
	Description *string
}

Contains a cluster's state, a cluster's ID, and other important information.

type ClusterMetadata

type ClusterMetadata struct {

	// The automatically generated ID for a specific address.
	AddressId *string

	// The automatically generated ID for a cluster.
	ClusterId *string

	// The current status of the cluster.
	ClusterState ClusterState

	// The creation date for this cluster.
	CreationDate *time.Time

	// The optional description of the cluster.
	Description *string

	// The ID of the address that you want a cluster shipped to, after it will be
	// shipped to its primary address. This field is not supported in most regions.
	ForwardingAddressId *string

	// The type of job for this cluster. Currently, the only job type supported for
	// clusters is LOCAL_USE.
	JobType JobType

	// The KmsKeyARN Amazon Resource Name (ARN) associated with this cluster. This ARN
	// was created using the CreateKey
	// (https://docs.aws.amazon.com/kms/latest/APIReference/API_CreateKey.html) API
	// action in AWS Key Management Service (AWS KMS).
	KmsKeyARN *string

	// The Amazon Simple Notification Service (Amazon SNS) notification settings for
	// this cluster.
	Notification *Notification

	// The arrays of JobResource objects that can include updated S3Resource objects or
	// LambdaResource objects.
	Resources *JobResource

	// The role ARN associated with this cluster. This ARN was created using the
	// CreateRole
	// (https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateRole.html) API
	// action in AWS Identity and Access Management (IAM).
	RoleARN *string

	// The shipping speed for each node in this cluster. This speed doesn't dictate how
	// soon you'll get each device, rather it represents how quickly each device moves
	// to its destination while in transit. Regional shipping speeds are as follows:
	//
	// *
	// In Australia, you have access to express shipping. Typically, devices shipped
	// express are delivered in about a day.
	//
	// * In the European Union (EU), you have
	// access to express shipping. Typically, Snow devices shipped express are
	// delivered in about a day. In addition, most countries in the EU have access to
	// standard shipping, which typically takes less than a week, one way.
	//
	// * In India,
	// Snow devices are delivered in one to seven days.
	//
	// * In the US, you have access
	// to one-day shipping and two-day shipping.
	ShippingOption ShippingOption

	// The type of AWS Snow device to use for this cluster. For cluster jobs, AWS Snow
	// Family currently supports only the EDGE device type.
	SnowballType SnowballType

	// The tax documents required in your AWS Region.
	TaxDocuments *TaxDocuments
}

Contains metadata about a specific cluster.

type ClusterState

type ClusterState string
const (
	ClusterStateAwaitingQuorum ClusterState = "AwaitingQuorum"
	ClusterStatePending        ClusterState = "Pending"
	ClusterStateInUse          ClusterState = "InUse"
	ClusterStateComplete       ClusterState = "Complete"
	ClusterStateCancelled      ClusterState = "Cancelled"
)

Enum values for ClusterState

func (ClusterState) Values added in v0.29.0

func (ClusterState) Values() []ClusterState

Values returns all known values for ClusterState. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type CompatibleImage

type CompatibleImage struct {

	// The unique identifier for an individual Snow device AMI.
	AmiId *string

	// The optional name of a compatible image.
	Name *string
}

A JSON-formatted object that describes a compatible Amazon Machine Image (AMI), including the ID and name for a Snow device AMI. This AMI is compatible with the device's physical hardware requirements, and it should be able to be run in an SBE1 instance on the device.

type ConflictException added in v0.29.0

type ConflictException struct {
	Message *string

	ConflictResource *string
}

You get this exception when you call CreateReturnShippingLabel more than once when other requests are not completed.

func (*ConflictException) Error added in v0.29.0

func (e *ConflictException) Error() string

func (*ConflictException) ErrorCode added in v0.29.0

func (e *ConflictException) ErrorCode() string

func (*ConflictException) ErrorFault added in v0.29.0

func (e *ConflictException) ErrorFault() smithy.ErrorFault

func (*ConflictException) ErrorMessage added in v0.29.0

func (e *ConflictException) ErrorMessage() string

type DataTransfer

type DataTransfer struct {

	// The number of bytes transferred between a Snow device and Amazon S3.
	BytesTransferred int64

	// The number of objects transferred between a Snow device and Amazon S3.
	ObjectsTransferred int64

	// The total bytes of data for a transfer between a Snow device and Amazon S3. This
	// value is set to 0 (zero) until all the keys that will be transferred have been
	// listed.
	TotalBytes int64

	// The total number of objects for a transfer between a Snow device and Amazon S3.
	// This value is set to 0 (zero) until all the keys that will be transferred have
	// been listed.
	TotalObjects int64
}

Defines the real-time status of a Snow device's data transfer while the device is at AWS. This data is only available while a job has a JobState value of InProgress, for both import and export jobs.

type DeviceConfiguration

type DeviceConfiguration struct {

	// Returns information about the device configuration for an AWS Snowcone job.
	SnowconeDeviceConfiguration *SnowconeDeviceConfiguration
}

The container for SnowconeDeviceConfiguration.

type Ec2AmiResource

type Ec2AmiResource struct {

	// The ID of the AMI in Amazon EC2.
	//
	// This member is required.
	AmiId *string

	// The ID of the AMI on the Snow device.
	SnowballAmiId *string
}

A JSON-formatted object that contains the IDs for an Amazon Machine Image (AMI), including the Amazon EC2 AMI ID and the Snow device AMI ID. Each AMI has these two IDs to simplify identifying the AMI in both the AWS Cloud and on the device.

type Ec2RequestFailedException

type Ec2RequestFailedException struct {
	Message *string
}

Your IAM user lacks the necessary Amazon EC2 permissions to perform the attempted action.

func (*Ec2RequestFailedException) Error

func (e *Ec2RequestFailedException) Error() string

func (*Ec2RequestFailedException) ErrorCode

func (e *Ec2RequestFailedException) ErrorCode() string

func (*Ec2RequestFailedException) ErrorFault

func (*Ec2RequestFailedException) ErrorMessage

func (e *Ec2RequestFailedException) ErrorMessage() string

type EventTriggerDefinition

type EventTriggerDefinition struct {

	// The Amazon Resource Name (ARN) for any local Amazon S3 resource that is an AWS
	// Lambda function's event trigger associated with this job.
	EventResourceARN *string
}

The container for the EventTriggerDefinition$EventResourceARN.

type INDTaxDocuments

type INDTaxDocuments struct {

	// The Goods and Services Tax (GST) documents required in AWS Regions in India.
	GSTIN *string
}

The tax documents required in AWS Regions in India.

type InvalidAddressException

type InvalidAddressException struct {
	Message *string
}

The address provided was invalid. Check the address with your region's carrier, and try again.

func (*InvalidAddressException) Error

func (e *InvalidAddressException) Error() string

func (*InvalidAddressException) ErrorCode

func (e *InvalidAddressException) ErrorCode() string

func (*InvalidAddressException) ErrorFault

func (e *InvalidAddressException) ErrorFault() smithy.ErrorFault

func (*InvalidAddressException) ErrorMessage

func (e *InvalidAddressException) ErrorMessage() string

type InvalidInputCombinationException

type InvalidInputCombinationException struct {
	Message *string
}

Job or cluster creation failed. One or more inputs were invalid. Confirm that the CreateClusterRequest$SnowballType value supports your CreateJobRequest$JobType, and try again.

func (*InvalidInputCombinationException) Error

func (*InvalidInputCombinationException) ErrorCode

func (*InvalidInputCombinationException) ErrorFault

func (*InvalidInputCombinationException) ErrorMessage

func (e *InvalidInputCombinationException) ErrorMessage() string

type InvalidJobStateException

type InvalidJobStateException struct {
	Message *string
}

The action can't be performed because the job's current state doesn't allow that action to be performed.

func (*InvalidJobStateException) Error

func (e *InvalidJobStateException) Error() string

func (*InvalidJobStateException) ErrorCode

func (e *InvalidJobStateException) ErrorCode() string

func (*InvalidJobStateException) ErrorFault

func (e *InvalidJobStateException) ErrorFault() smithy.ErrorFault

func (*InvalidJobStateException) ErrorMessage

func (e *InvalidJobStateException) ErrorMessage() string

type InvalidNextTokenException

type InvalidNextTokenException struct {
	Message *string
}

The NextToken string was altered unexpectedly, and the operation has stopped. Run the operation without changing the NextToken string, and try again.

func (*InvalidNextTokenException) Error

func (e *InvalidNextTokenException) Error() string

func (*InvalidNextTokenException) ErrorCode

func (e *InvalidNextTokenException) ErrorCode() string

func (*InvalidNextTokenException) ErrorFault

func (*InvalidNextTokenException) ErrorMessage

func (e *InvalidNextTokenException) ErrorMessage() string

type InvalidResourceException

type InvalidResourceException struct {
	Message *string

	ResourceType *string
}

The specified resource can't be found. Check the information you provided in your last request, and try again.

func (*InvalidResourceException) Error

func (e *InvalidResourceException) Error() string

func (*InvalidResourceException) ErrorCode

func (e *InvalidResourceException) ErrorCode() string

func (*InvalidResourceException) ErrorFault

func (e *InvalidResourceException) ErrorFault() smithy.ErrorFault

func (*InvalidResourceException) ErrorMessage

func (e *InvalidResourceException) ErrorMessage() string

type JobListEntry

type JobListEntry struct {

	// The creation date for this job.
	CreationDate *time.Time

	// The optional description of this specific job, for example Important Photos
	// 2016-08-11.
	Description *string

	// A value that indicates that this job is a main job. A main job represents a
	// successful request to create an export job. Main jobs aren't associated with any
	// Snowballs. Instead, each main job will have at least one job part, and each job
	// part is associated with a Snowball. It might take some time before the job parts
	// associated with a particular main job are listed, because they are created after
	// the main job is created.
	IsMaster bool

	// The automatically generated ID for a job, for example
	// JID123e4567-e89b-12d3-a456-426655440000.
	JobId *string

	// The current state of this job.
	JobState JobState

	// The type of job.
	JobType JobType

	// The type of device used with this job.
	SnowballType SnowballType
}

Each JobListEntry object contains a job's state, a job's ID, and a value that indicates whether the job is a job part, in the case of an export job.

type JobLogs

type JobLogs struct {

	// A link to an Amazon S3 presigned URL where the job completion report is located.
	JobCompletionReportURI *string

	// A link to an Amazon S3 presigned URL where the job failure log is located.
	JobFailureLogURI *string

	// A link to an Amazon S3 presigned URL where the job success log is located.
	JobSuccessLogURI *string
}

Contains job logs. Whenever a Snow device is used to import data into or export data out of Amazon S3, you'll have the option of downloading a PDF job report. Job logs are returned as a part of the response syntax of the DescribeJob action in the JobMetadata data type. The job logs can be accessed for up to 60 minutes after this request has been made. To access any of the job logs after 60 minutes have passed, you'll have to make another call to the DescribeJob action. For import jobs, the PDF job report becomes available at the end of the import process. For export jobs, your job report typically becomes available while the Snow device for your job part is being delivered to you. The job report provides you insight into the state of your Amazon S3 data transfer. The report includes details about your job or job part for your records. For deeper visibility into the status of your transferred objects, you can look at the two associated logs: a success log and a failure log. The logs are saved in comma-separated value (CSV) format, and the name of each log includes the ID of the job or job part that the log describes.

type JobMetadata

type JobMetadata struct {

	// The ID for the address that you want the Snow device shipped to.
	AddressId *string

	// The 39-character ID for the cluster, for example
	// CID123e4567-e89b-12d3-a456-426655440000.
	ClusterId *string

	// The creation date for this job.
	CreationDate *time.Time

	// A value that defines the real-time status of a Snow device's data transfer while
	// the device is at AWS. This data is only available while a job has a JobState
	// value of InProgress, for both import and export jobs.
	DataTransferProgress *DataTransfer

	// The description of the job, provided at job creation.
	Description *string

	// The container for SnowconeDeviceConfiguration.
	DeviceConfiguration *DeviceConfiguration

	// The ID of the address that you want a job shipped to, after it will be shipped
	// to its primary address. This field is not supported in most regions.
	ForwardingAddressId *string

	// The automatically generated ID for a job, for example
	// JID123e4567-e89b-12d3-a456-426655440000.
	JobId *string

	// Links to Amazon S3 presigned URLs for the job report and logs. For import jobs,
	// the PDF job report becomes available at the end of the import process. For
	// export jobs, your job report typically becomes available while the Snow device
	// for your job part is being delivered to you.
	JobLogInfo *JobLogs

	// The current status of the jobs.
	JobState JobState

	// The type of job.
	JobType JobType

	// The Amazon Resource Name (ARN) for the AWS Key Management Service (AWS KMS) key
	// associated with this job. This ARN was created using the CreateKey
	// (https://docs.aws.amazon.com/kms/latest/APIReference/API_CreateKey.html) API
	// action in AWS KMS.
	KmsKeyARN *string

	// The Amazon Simple Notification Service (Amazon SNS) notification settings
	// associated with a specific job. The Notification object is returned as a part of
	// the response syntax of the DescribeJob action in the JobMetadata data type.
	Notification *Notification

	// An array of S3Resource objects. Each S3Resource object represents an Amazon S3
	// bucket that your transferred data will be exported from or imported into.
	Resources *JobResource

	// The role ARN associated with this job. This ARN was created using the CreateRole
	// (https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateRole.html) API
	// action in AWS Identity and Access Management (IAM).
	RoleARN *string

	// A job's shipping information, including inbound and outbound tracking numbers
	// and shipping speed options.
	ShippingDetails *ShippingDetails

	// The Snow device capacity preference for this job, specified at job creation. In
	// US regions, you can choose between 50 TB and 80 TB Snowballs. All other regions
	// use 80 TB capacity Snowballs.
	SnowballCapacityPreference SnowballCapacity

	// The type of device used with this job.
	SnowballType SnowballType

	// The metadata associated with the tax documents required in your AWS Region.
	TaxDocuments *TaxDocuments
}

Contains information about a specific job including shipping information, job status, and other important metadata. This information is returned as a part of the response syntax of the DescribeJob action.

type JobResource

type JobResource struct {

	// The Amazon Machine Images (AMIs) associated with this job.
	Ec2AmiResources []Ec2AmiResource

	// The Python-language Lambda functions for this job.
	LambdaResources []LambdaResource

	// An array of S3Resource objects.
	S3Resources []S3Resource
}

Contains an array of AWS resource objects. Each object represents an Amazon S3 bucket, an AWS Lambda function, or an Amazon Machine Image (AMI) based on Amazon EC2 that is associated with a particular job.

type JobState

type JobState string
const (
	JobStateNew                    JobState = "New"
	JobStatePreparingAppliance     JobState = "PreparingAppliance"
	JobStatePreparingShipment      JobState = "PreparingShipment"
	JobStateInTransitToCustomer    JobState = "InTransitToCustomer"
	JobStateWithCustomer           JobState = "WithCustomer"
	JobStateInTransitToAws         JobState = "InTransitToAWS"
	JobStateWithAwsSortingFacility JobState = "WithAWSSortingFacility"
	JobStateWithAws                JobState = "WithAWS"
	JobStateInProgress             JobState = "InProgress"
	JobStateComplete               JobState = "Complete"
	JobStateCancelled              JobState = "Cancelled"
	JobStateListing                JobState = "Listing"
	JobStatePending                JobState = "Pending"
)

Enum values for JobState

func (JobState) Values added in v0.29.0

func (JobState) Values() []JobState

Values returns all known values for JobState. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type JobType

type JobType string
const (
	JobTypeImport   JobType = "IMPORT"
	JobTypeExport   JobType = "EXPORT"
	JobTypeLocalUse JobType = "LOCAL_USE"
)

Enum values for JobType

func (JobType) Values added in v0.29.0

func (JobType) Values() []JobType

Values returns all known values for JobType. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type KMSRequestFailedException

type KMSRequestFailedException struct {
	Message *string
}

The provided AWS Key Management Service key lacks the permissions to perform the specified CreateJob or UpdateJob action.

func (*KMSRequestFailedException) Error

func (e *KMSRequestFailedException) Error() string

func (*KMSRequestFailedException) ErrorCode

func (e *KMSRequestFailedException) ErrorCode() string

func (*KMSRequestFailedException) ErrorFault

func (*KMSRequestFailedException) ErrorMessage

func (e *KMSRequestFailedException) ErrorMessage() string

type KeyRange

type KeyRange struct {

	// The key that starts an optional key range for an export job. Ranges are
	// inclusive and UTF-8 binary sorted.
	BeginMarker *string

	// The key that ends an optional key range for an export job. Ranges are inclusive
	// and UTF-8 binary sorted.
	EndMarker *string
}

Contains a key range. For export jobs, a S3Resource object can have an optional KeyRange value. The length of the range is defined at job creation, and has either an inclusive BeginMarker, an inclusive EndMarker, or both. Ranges are UTF-8 binary sorted.

type LambdaResource

type LambdaResource struct {

	// The array of ARNs for S3Resource objects to trigger the LambdaResource objects
	// associated with this job.
	EventTriggers []EventTriggerDefinition

	// An Amazon Resource Name (ARN) that represents an AWS Lambda function to be
	// triggered by PUT object actions on the associated local Amazon S3 resource.
	LambdaArn *string
}

Identifies

type Notification

type Notification struct {

	// The list of job states that will trigger a notification for this job.
	JobStatesToNotify []JobState

	// Any change in job state will trigger a notification for this job.
	NotifyAll bool

	// The new SNS TopicArn that you want to associate with this job. You can create
	// Amazon Resource Names (ARNs) for topics by using the CreateTopic
	// (https://docs.aws.amazon.com/sns/latest/api/API_CreateTopic.html) Amazon SNS API
	// action. You can subscribe email addresses to an Amazon SNS topic through the AWS
	// Management Console, or by using the Subscribe
	// (https://docs.aws.amazon.com/sns/latest/api/API_Subscribe.html) AWS Simple
	// Notification Service (SNS) API action.
	SnsTopicARN *string
}

The Amazon Simple Notification Service (Amazon SNS) notification settings associated with a specific job. The Notification object is returned as a part of the response syntax of the DescribeJob action in the JobMetadata data type. When the notification settings are defined during job creation, you can choose to notify based on a specific set of job states using the JobStatesToNotify array of strings, or you can specify that you want to have Amazon SNS notifications sent out for all job states with NotifyAll set to true.

type ReturnShippingLabelAlreadyExistsException added in v0.29.0

type ReturnShippingLabelAlreadyExistsException struct {
	Message *string
}

You get this exception if you call CreateReturnShippingLabel and a valid return shipping label already exists. In this case, use DescribeReturnShippingLabel to get the url.

func (*ReturnShippingLabelAlreadyExistsException) Error added in v0.29.0

func (*ReturnShippingLabelAlreadyExistsException) ErrorCode added in v0.29.0

func (*ReturnShippingLabelAlreadyExistsException) ErrorFault added in v0.29.0

func (*ReturnShippingLabelAlreadyExistsException) ErrorMessage added in v0.29.0

type S3Resource

type S3Resource struct {

	// The Amazon Resource Name (ARN) of an Amazon S3 bucket.
	BucketArn *string

	// For export jobs, you can provide an optional KeyRange within a specific Amazon
	// S3 bucket. The length of the range is defined at job creation, and has either an
	// inclusive BeginMarker, an inclusive EndMarker, or both. Ranges are UTF-8 binary
	// sorted.
	KeyRange *KeyRange
}

Each S3Resource object represents an Amazon S3 bucket that your transferred data will be exported from or imported into. For export jobs, this object can have an optional KeyRange value. The length of the range is defined at job creation, and has either an inclusive BeginMarker, an inclusive EndMarker, or both. Ranges are UTF-8 binary sorted.

type Shipment

type Shipment struct {

	// Status information for a shipment.
	Status *string

	// The tracking number for this job. Using this tracking number with your region's
	// carrier's website, you can track a Snow device as the carrier transports it. For
	// India, the carrier is Amazon Logistics. For all other regions, UPS is the
	// carrier.
	TrackingNumber *string
}

The Status and TrackingNumber information for an inbound or outbound shipment.

type ShipmentState added in v0.29.0

type ShipmentState string
const (
	ShipmentStateReceived ShipmentState = "RECEIVED"
	ShipmentStateReturned ShipmentState = "RETURNED"
)

Enum values for ShipmentState

func (ShipmentState) Values added in v0.29.0

func (ShipmentState) Values() []ShipmentState

Values returns all known values for ShipmentState. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type ShippingDetails

type ShippingDetails struct {

	// The Status and TrackingNumber values for a Snow device being returned to AWS for
	// a particular job.
	InboundShipment *Shipment

	// The Status and TrackingNumber values for a Snow device being delivered to the
	// address that you specified for a particular job.
	OutboundShipment *Shipment

	// The shipping speed for a particular job. This speed doesn't dictate how soon
	// you'll get the Snow device from the job's creation date. This speed represents
	// how quickly it moves to its destination while in transit. Regional shipping
	// speeds are as follows:
	//
	// * In Australia, you have access to express shipping.
	// Typically, Snow devices shipped express are delivered in about a day.
	//
	// * In the
	// European Union (EU), you have access to express shipping. Typically, Snow
	// devices shipped express are delivered in about a day. In addition, most
	// countries in the EU have access to standard shipping, which typically takes less
	// than a week, one way.
	//
	// * In India, Snow device are delivered in one to seven
	// days.
	//
	// * In the United States of America (US), you have access to one-day
	// shipping and two-day shipping.
	ShippingOption ShippingOption
}

A job's shipping information, including inbound and outbound tracking numbers and shipping speed options.

type ShippingLabelStatus added in v0.29.0

type ShippingLabelStatus string
const (
	ShippingLabelStatusInProgress ShippingLabelStatus = "InProgress"
	ShippingLabelStatusTimedOut   ShippingLabelStatus = "TimedOut"
	ShippingLabelStatusSucceeded  ShippingLabelStatus = "Succeeded"
	ShippingLabelStatusFailed     ShippingLabelStatus = "Failed"
)

Enum values for ShippingLabelStatus

func (ShippingLabelStatus) Values added in v0.29.0

Values returns all known values for ShippingLabelStatus. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type ShippingOption

type ShippingOption string
const (
	ShippingOptionSecondDay ShippingOption = "SECOND_DAY"
	ShippingOptionNextDay   ShippingOption = "NEXT_DAY"
	ShippingOptionExpress   ShippingOption = "EXPRESS"
	ShippingOptionStandard  ShippingOption = "STANDARD"
)

Enum values for ShippingOption

func (ShippingOption) Values added in v0.29.0

func (ShippingOption) Values() []ShippingOption

Values returns all known values for ShippingOption. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type SnowballCapacity

type SnowballCapacity string
const (
	SnowballCapacityT50          SnowballCapacity = "T50"
	SnowballCapacityT80          SnowballCapacity = "T80"
	SnowballCapacityT100         SnowballCapacity = "T100"
	SnowballCapacityT42          SnowballCapacity = "T42"
	SnowballCapacityT98          SnowballCapacity = "T98"
	SnowballCapacityT8           SnowballCapacity = "T8"
	SnowballCapacityNoPreference SnowballCapacity = "NoPreference"
)

Enum values for SnowballCapacity

func (SnowballCapacity) Values added in v0.29.0

Values returns all known values for SnowballCapacity. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type SnowballType

type SnowballType string
const (
	SnowballTypeStandard SnowballType = "STANDARD"
	SnowballTypeEdge     SnowballType = "EDGE"
	SnowballTypeEdgeC    SnowballType = "EDGE_C"
	SnowballTypeEdgeCg   SnowballType = "EDGE_CG"
	SnowballTypeEdgeS    SnowballType = "EDGE_S"
	SnowballTypeSnc1Hdd  SnowballType = "SNC1_HDD"
)

Enum values for SnowballType

func (SnowballType) Values added in v0.29.0

func (SnowballType) Values() []SnowballType

Values returns all known values for SnowballType. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type SnowconeDeviceConfiguration

type SnowconeDeviceConfiguration struct {

	// Configures the wireless connection for the AWS Snowcone device.
	WirelessConnection *WirelessConnection
}

Specifies the device configuration for an AWS Snowcone job.

type TaxDocuments

type TaxDocuments struct {

	// The tax documents required in AWS Regions in India.
	IND *INDTaxDocuments
}

The tax documents required in your AWS Region.

type UnsupportedAddressException

type UnsupportedAddressException struct {
	Message *string
}

The address is either outside the serviceable area for your region, or an error occurred. Check the address with your region's carrier and try again. If the issue persists, contact AWS Support.

func (*UnsupportedAddressException) Error

func (*UnsupportedAddressException) ErrorCode

func (e *UnsupportedAddressException) ErrorCode() string

func (*UnsupportedAddressException) ErrorFault

func (*UnsupportedAddressException) ErrorMessage

func (e *UnsupportedAddressException) ErrorMessage() string

type WirelessConnection

type WirelessConnection struct {

	// Enables the Wi-Fi adapter on an AWS Snowcone device.
	IsWifiEnabled bool
}

Configures the wireless connection on an AWS Snowcone device.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL