types

package
v0.27.0 Latest Latest
Warning

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

Go to latest
Published: Oct 17, 2020 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 Snowball is to be delivered to.
	City *string

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

	// The country in an address that a Snowball 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 Snowball at an address.
	Name *string

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

	// The postal code in an address that a Snowball 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 Snowball is to be delivered to.
	StateOrProvince *string

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

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

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

The address that you want the Snowball or Snowballs 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 Snowball Edge 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, Snowball Edges
	// 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, Snowball Edges 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 Snowball device to use for this cluster. For cluster jobs, AWS
	// Snowball 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 (
	ClusterStateAwaiting_quorum ClusterState = "AwaitingQuorum"
	ClusterStatePending         ClusterState = "Pending"
	ClusterStateIn_use          ClusterState = "InUse"
	ClusterStateComplete        ClusterState = "Complete"
	ClusterStateCancelled       ClusterState = "Cancelled"
)

Enum values for ClusterState

type CompatibleImage

type CompatibleImage struct {

	// The unique identifier for an individual Snowball Edge 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 Snowball Edge 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 DataTransfer

type DataTransfer struct {

	// The number of bytes transferred between a Snowball and Amazon S3.
	BytesTransferred *int64

	// The number of objects transferred between a Snowball and Amazon S3.
	ObjectsTransferred *int64

	// The total bytes of data for a transfer between a Snowball 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 Snowball 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 Snowball'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 Snowball Edge 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 Snowball Edge 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 master job. A master job represents a
	// successful request to create an export job. Master jobs aren't associated with
	// any Snowballs. Instead, each master 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 master job are listed, because they are
	// created after the master 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 Snowball 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 Snowball 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 Snowball 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 Snowball'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 Snowball 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 Snowball 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"
	JobStatePreparing_appliance       JobState = "PreparingAppliance"
	JobStatePreparing_shipment        JobState = "PreparingShipment"
	JobStateIn_transit_to_customer    JobState = "InTransitToCustomer"
	JobStateWith_customer             JobState = "WithCustomer"
	JobStateIn_transit_to_aws         JobState = "InTransitToAWS"
	JobStateWith_aws_sorting_facility JobState = "WithAWSSortingFacility"
	JobStateWith_aws                  JobState = "WithAWS"
	JobStateIn_progress               JobState = "InProgress"
	JobStateComplete                  JobState = "Complete"
	JobStateCancelled                 JobState = "Cancelled"
	JobStateListing                   JobState = "Listing"
	JobStatePending                   JobState = "Pending"
)

Enum values for JobState

type JobType

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

Enum values for JobType

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 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 Snowball 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 ShippingDetails

type ShippingDetails struct {

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

	// The Status and TrackingNumber values for a Snowball 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 Snowball 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, Snowballs shipped express are delivered in about a day.
	//
	//     * In the
	// European Union (EU), you have access to express shipping. Typically, Snowballs
	// 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, Snowballs 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 ShippingOption

type ShippingOption string
const (
	ShippingOptionSecond_day ShippingOption = "SECOND_DAY"
	ShippingOptionNext_day   ShippingOption = "NEXT_DAY"
	ShippingOptionExpress    ShippingOption = "EXPRESS"
	ShippingOptionStandard   ShippingOption = "STANDARD"
)

Enum values for ShippingOption

type SnowballCapacity

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

Enum values for SnowballCapacity

type SnowballType

type SnowballType string
const (
	SnowballTypeStandard SnowballType = "STANDARD"
	SnowballTypeEdge     SnowballType = "EDGE"
	SnowballTypeEdge_c   SnowballType = "EDGE_C"
	SnowballTypeEdge_cg  SnowballType = "EDGE_CG"
	SnowballTypeEdge_s   SnowballType = "EDGE_S"
	SnowballTypeSnc1_hdd SnowballType = "SNC1_HDD"
)

Enum values for SnowballType

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