ec2 - ActiveState ActiveGo 1.8
...

Package ec2

import "github.com/aws/aws-sdk-go/service/ec2"
Overview
Index
Examples
Subdirectories

Overview ▾

Package ec2 provides the client and types for making API requests to Amazon Elastic Compute Cloud.

Amazon Elastic Compute Cloud (Amazon EC2) provides resizable computing capacity in the Amazon Web Services (AWS) cloud. Using Amazon EC2 eliminates your need to invest in hardware up front, so you can develop and deploy applications faster.

See https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15 for more information on this service.

See ec2 package documentation for more information. https://docs.aws.amazon.com/sdk-for-go/api/service/ec2/

Using the Client

To use the client for Amazon Elastic Compute Cloud you will first need to create a new instance of it.

When creating a client for an AWS service you'll first need to have a Session already created. The Session provides configuration that can be shared between multiple service clients. Additional configuration can be applied to the Session and service's client when they are constructed. The aws package's Config type contains several fields such as Region for the AWS Region the client should make API requests too. The optional Config value can be provided as the variadic argument for Sessions and client creation.

Once the service's client is created you can use it to make API requests the AWS service. These clients are safe to use concurrently.

// Create a session to share configuration, and load external configuration.
sess := session.Must(session.NewSession())

// Create the service's client with the session.
svc := ec2.New(sess)

See the SDK's documentation for more information on how to use service clients. https://docs.aws.amazon.com/sdk-for-go/api/

See aws package's Config type for more information on configuration options. https://docs.aws.amazon.com/sdk-for-go/api/aws/#Config

See the Amazon Elastic Compute Cloud client EC2 for more information on creating the service's client. https://docs.aws.amazon.com/sdk-for-go/api/service/ec2/#New

Once the client is created you can make an API request to the service. Each API method takes a input parameter, and returns the service response and an error.

The API method will document which error codes the service can be returned by the operation if the service models the API operation's errors. These errors will also be available as const strings prefixed with "ErrCode".

result, err := svc.AcceptReservedInstancesExchangeQuote(params)
if err != nil {
    // Cast err to awserr.Error to handle specific error codes.
    aerr, ok := err.(awserr.Error)
    if ok && aerr.Code() == <error code to check for> {
        // Specific error code handling
    }
    return err
}

fmt.Println("AcceptReservedInstancesExchangeQuote result:")
fmt.Println(result)

Using the Client with Context

The service's client also provides methods to make API requests with a Context value. This allows you to control the timeout, and cancellation of pending requests. These methods also take request Option as variadic parameter to apply additional configuration to the API request.

ctx := context.Background()

result, err := svc.AcceptReservedInstancesExchangeQuoteWithContext(ctx, params)

See the request package documentation for more information on using Context pattern with the SDK. https://docs.aws.amazon.com/sdk-for-go/api/aws/request/

Index ▾

Constants
type AcceptReservedInstancesExchangeQuoteInput
    func (s AcceptReservedInstancesExchangeQuoteInput) GoString() string
    func (s *AcceptReservedInstancesExchangeQuoteInput) SetDryRun(v bool) *AcceptReservedInstancesExchangeQuoteInput
    func (s *AcceptReservedInstancesExchangeQuoteInput) SetReservedInstanceIds(v []*string) *AcceptReservedInstancesExchangeQuoteInput
    func (s *AcceptReservedInstancesExchangeQuoteInput) SetTargetConfigurations(v []*TargetConfigurationRequest) *AcceptReservedInstancesExchangeQuoteInput
    func (s AcceptReservedInstancesExchangeQuoteInput) String() string
    func (s *AcceptReservedInstancesExchangeQuoteInput) Validate() error
type AcceptReservedInstancesExchangeQuoteOutput
    func (s AcceptReservedInstancesExchangeQuoteOutput) GoString() string
    func (s *AcceptReservedInstancesExchangeQuoteOutput) SetExchangeId(v string) *AcceptReservedInstancesExchangeQuoteOutput
    func (s AcceptReservedInstancesExchangeQuoteOutput) String() string
type AcceptVpcPeeringConnectionInput
    func (s AcceptVpcPeeringConnectionInput) GoString() string
    func (s *AcceptVpcPeeringConnectionInput) SetDryRun(v bool) *AcceptVpcPeeringConnectionInput
    func (s *AcceptVpcPeeringConnectionInput) SetVpcPeeringConnectionId(v string) *AcceptVpcPeeringConnectionInput
    func (s AcceptVpcPeeringConnectionInput) String() string
type AcceptVpcPeeringConnectionOutput
    func (s AcceptVpcPeeringConnectionOutput) GoString() string
    func (s *AcceptVpcPeeringConnectionOutput) SetVpcPeeringConnection(v *VpcPeeringConnection) *AcceptVpcPeeringConnectionOutput
    func (s AcceptVpcPeeringConnectionOutput) String() string
type AccountAttribute
    func (s AccountAttribute) GoString() string
    func (s *AccountAttribute) SetAttributeName(v string) *AccountAttribute
    func (s *AccountAttribute) SetAttributeValues(v []*AccountAttributeValue) *AccountAttribute
    func (s AccountAttribute) String() string
type AccountAttributeValue
    func (s AccountAttributeValue) GoString() string
    func (s *AccountAttributeValue) SetAttributeValue(v string) *AccountAttributeValue
    func (s AccountAttributeValue) String() string
type ActiveInstance
    func (s ActiveInstance) GoString() string
    func (s *ActiveInstance) SetInstanceHealth(v string) *ActiveInstance
    func (s *ActiveInstance) SetInstanceId(v string) *ActiveInstance
    func (s *ActiveInstance) SetInstanceType(v string) *ActiveInstance
    func (s *ActiveInstance) SetSpotInstanceRequestId(v string) *ActiveInstance
    func (s ActiveInstance) String() string
type Address
    func (s Address) GoString() string
    func (s *Address) SetAllocationId(v string) *Address
    func (s *Address) SetAssociationId(v string) *Address
    func (s *Address) SetDomain(v string) *Address
    func (s *Address) SetInstanceId(v string) *Address
    func (s *Address) SetNetworkInterfaceId(v string) *Address
    func (s *Address) SetNetworkInterfaceOwnerId(v string) *Address
    func (s *Address) SetPrivateIpAddress(v string) *Address
    func (s *Address) SetPublicIp(v string) *Address
    func (s Address) String() string
type AllocateAddressInput
    func (s AllocateAddressInput) GoString() string
    func (s *AllocateAddressInput) SetDomain(v string) *AllocateAddressInput
    func (s *AllocateAddressInput) SetDryRun(v bool) *AllocateAddressInput
    func (s AllocateAddressInput) String() string
type AllocateAddressOutput
    func (s AllocateAddressOutput) GoString() string
    func (s *AllocateAddressOutput) SetAllocationId(v string) *AllocateAddressOutput
    func (s *AllocateAddressOutput) SetDomain(v string) *AllocateAddressOutput
    func (s *AllocateAddressOutput) SetPublicIp(v string) *AllocateAddressOutput
    func (s AllocateAddressOutput) String() string
type AllocateHostsInput
    func (s AllocateHostsInput) GoString() string
    func (s *AllocateHostsInput) SetAutoPlacement(v string) *AllocateHostsInput
    func (s *AllocateHostsInput) SetAvailabilityZone(v string) *AllocateHostsInput
    func (s *AllocateHostsInput) SetClientToken(v string) *AllocateHostsInput
    func (s *AllocateHostsInput) SetInstanceType(v string) *AllocateHostsInput
    func (s *AllocateHostsInput) SetQuantity(v int64) *AllocateHostsInput
    func (s AllocateHostsInput) String() string
    func (s *AllocateHostsInput) Validate() error
type AllocateHostsOutput
    func (s AllocateHostsOutput) GoString() string
    func (s *AllocateHostsOutput) SetHostIds(v []*string) *AllocateHostsOutput
    func (s AllocateHostsOutput) String() string
type AssignIpv6AddressesInput
    func (s AssignIpv6AddressesInput) GoString() string
    func (s *AssignIpv6AddressesInput) SetIpv6AddressCount(v int64) *AssignIpv6AddressesInput
    func (s *AssignIpv6AddressesInput) SetIpv6Addresses(v []*string) *AssignIpv6AddressesInput
    func (s *AssignIpv6AddressesInput) SetNetworkInterfaceId(v string) *AssignIpv6AddressesInput
    func (s AssignIpv6AddressesInput) String() string
    func (s *AssignIpv6AddressesInput) Validate() error
type AssignIpv6AddressesOutput
    func (s AssignIpv6AddressesOutput) GoString() string
    func (s *AssignIpv6AddressesOutput) SetAssignedIpv6Addresses(v []*string) *AssignIpv6AddressesOutput
    func (s *AssignIpv6AddressesOutput) SetNetworkInterfaceId(v string) *AssignIpv6AddressesOutput
    func (s AssignIpv6AddressesOutput) String() string
type AssignPrivateIpAddressesInput
    func (s AssignPrivateIpAddressesInput) GoString() string
    func (s *AssignPrivateIpAddressesInput) SetAllowReassignment(v bool) *AssignPrivateIpAddressesInput
    func (s *AssignPrivateIpAddressesInput) SetNetworkInterfaceId(v string) *AssignPrivateIpAddressesInput
    func (s *AssignPrivateIpAddressesInput) SetPrivateIpAddresses(v []*string) *AssignPrivateIpAddressesInput
    func (s *AssignPrivateIpAddressesInput) SetSecondaryPrivateIpAddressCount(v int64) *AssignPrivateIpAddressesInput
    func (s AssignPrivateIpAddressesInput) String() string
    func (s *AssignPrivateIpAddressesInput) Validate() error
type AssignPrivateIpAddressesOutput
    func (s AssignPrivateIpAddressesOutput) GoString() string
    func (s AssignPrivateIpAddressesOutput) String() string
type AssociateAddressInput
    func (s AssociateAddressInput) GoString() string
    func (s *AssociateAddressInput) SetAllocationId(v string) *AssociateAddressInput
    func (s *AssociateAddressInput) SetAllowReassociation(v bool) *AssociateAddressInput
    func (s *AssociateAddressInput) SetDryRun(v bool) *AssociateAddressInput
    func (s *AssociateAddressInput) SetInstanceId(v string) *AssociateAddressInput
    func (s *AssociateAddressInput) SetNetworkInterfaceId(v string) *AssociateAddressInput
    func (s *AssociateAddressInput) SetPrivateIpAddress(v string) *AssociateAddressInput
    func (s *AssociateAddressInput) SetPublicIp(v string) *AssociateAddressInput
    func (s AssociateAddressInput) String() string
type AssociateAddressOutput
    func (s AssociateAddressOutput) GoString() string
    func (s *AssociateAddressOutput) SetAssociationId(v string) *AssociateAddressOutput
    func (s AssociateAddressOutput) String() string
type AssociateDhcpOptionsInput
    func (s AssociateDhcpOptionsInput) GoString() string
    func (s *AssociateDhcpOptionsInput) SetDhcpOptionsId(v string) *AssociateDhcpOptionsInput
    func (s *AssociateDhcpOptionsInput) SetDryRun(v bool) *AssociateDhcpOptionsInput
    func (s *AssociateDhcpOptionsInput) SetVpcId(v string) *AssociateDhcpOptionsInput
    func (s AssociateDhcpOptionsInput) String() string
    func (s *AssociateDhcpOptionsInput) Validate() error
type AssociateDhcpOptionsOutput
    func (s AssociateDhcpOptionsOutput) GoString() string
    func (s AssociateDhcpOptionsOutput) String() string
type AssociateIamInstanceProfileInput
    func (s AssociateIamInstanceProfileInput) GoString() string
    func (s *AssociateIamInstanceProfileInput) SetIamInstanceProfile(v *IamInstanceProfileSpecification) *AssociateIamInstanceProfileInput
    func (s *AssociateIamInstanceProfileInput) SetInstanceId(v string) *AssociateIamInstanceProfileInput
    func (s AssociateIamInstanceProfileInput) String() string
    func (s *AssociateIamInstanceProfileInput) Validate() error
type AssociateIamInstanceProfileOutput
    func (s AssociateIamInstanceProfileOutput) GoString() string
    func (s *AssociateIamInstanceProfileOutput) SetIamInstanceProfileAssociation(v *IamInstanceProfileAssociation) *AssociateIamInstanceProfileOutput
    func (s AssociateIamInstanceProfileOutput) String() string
type AssociateRouteTableInput
    func (s AssociateRouteTableInput) GoString() string
    func (s *AssociateRouteTableInput) SetDryRun(v bool) *AssociateRouteTableInput
    func (s *AssociateRouteTableInput) SetRouteTableId(v string) *AssociateRouteTableInput
    func (s *AssociateRouteTableInput) SetSubnetId(v string) *AssociateRouteTableInput
    func (s AssociateRouteTableInput) String() string
    func (s *AssociateRouteTableInput) Validate() error
type AssociateRouteTableOutput
    func (s AssociateRouteTableOutput) GoString() string
    func (s *AssociateRouteTableOutput) SetAssociationId(v string) *AssociateRouteTableOutput
    func (s AssociateRouteTableOutput) String() string
type AssociateSubnetCidrBlockInput
    func (s AssociateSubnetCidrBlockInput) GoString() string
    func (s *AssociateSubnetCidrBlockInput) SetIpv6CidrBlock(v string) *AssociateSubnetCidrBlockInput
    func (s *AssociateSubnetCidrBlockInput) SetSubnetId(v string) *AssociateSubnetCidrBlockInput
    func (s AssociateSubnetCidrBlockInput) String() string
    func (s *AssociateSubnetCidrBlockInput) Validate() error
type AssociateSubnetCidrBlockOutput
    func (s AssociateSubnetCidrBlockOutput) GoString() string
    func (s *AssociateSubnetCidrBlockOutput) SetIpv6CidrBlockAssociation(v *SubnetIpv6CidrBlockAssociation) *AssociateSubnetCidrBlockOutput
    func (s *AssociateSubnetCidrBlockOutput) SetSubnetId(v string) *AssociateSubnetCidrBlockOutput
    func (s AssociateSubnetCidrBlockOutput) String() string
type AssociateVpcCidrBlockInput
    func (s AssociateVpcCidrBlockInput) GoString() string
    func (s *AssociateVpcCidrBlockInput) SetAmazonProvidedIpv6CidrBlock(v bool) *AssociateVpcCidrBlockInput
    func (s *AssociateVpcCidrBlockInput) SetVpcId(v string) *AssociateVpcCidrBlockInput
    func (s AssociateVpcCidrBlockInput) String() string
    func (s *AssociateVpcCidrBlockInput) Validate() error
type AssociateVpcCidrBlockOutput
    func (s AssociateVpcCidrBlockOutput) GoString() string
    func (s *AssociateVpcCidrBlockOutput) SetIpv6CidrBlockAssociation(v *VpcIpv6CidrBlockAssociation) *AssociateVpcCidrBlockOutput
    func (s *AssociateVpcCidrBlockOutput) SetVpcId(v string) *AssociateVpcCidrBlockOutput
    func (s AssociateVpcCidrBlockOutput) String() string
type AttachClassicLinkVpcInput
    func (s AttachClassicLinkVpcInput) GoString() string
    func (s *AttachClassicLinkVpcInput) SetDryRun(v bool) *AttachClassicLinkVpcInput
    func (s *AttachClassicLinkVpcInput) SetGroups(v []*string) *AttachClassicLinkVpcInput
    func (s *AttachClassicLinkVpcInput) SetInstanceId(v string) *AttachClassicLinkVpcInput
    func (s *AttachClassicLinkVpcInput) SetVpcId(v string) *AttachClassicLinkVpcInput
    func (s AttachClassicLinkVpcInput) String() string
    func (s *AttachClassicLinkVpcInput) Validate() error
type AttachClassicLinkVpcOutput
    func (s AttachClassicLinkVpcOutput) GoString() string
    func (s *AttachClassicLinkVpcOutput) SetReturn(v bool) *AttachClassicLinkVpcOutput
    func (s AttachClassicLinkVpcOutput) String() string
type AttachInternetGatewayInput
    func (s AttachInternetGatewayInput) GoString() string
    func (s *AttachInternetGatewayInput) SetDryRun(v bool) *AttachInternetGatewayInput
    func (s *AttachInternetGatewayInput) SetInternetGatewayId(v string) *AttachInternetGatewayInput
    func (s *AttachInternetGatewayInput) SetVpcId(v string) *AttachInternetGatewayInput
    func (s AttachInternetGatewayInput) String() string
    func (s *AttachInternetGatewayInput) Validate() error
type AttachInternetGatewayOutput
    func (s AttachInternetGatewayOutput) GoString() string
    func (s AttachInternetGatewayOutput) String() string
type AttachNetworkInterfaceInput
    func (s AttachNetworkInterfaceInput) GoString() string
    func (s *AttachNetworkInterfaceInput) SetDeviceIndex(v int64) *AttachNetworkInterfaceInput
    func (s *AttachNetworkInterfaceInput) SetDryRun(v bool) *AttachNetworkInterfaceInput
    func (s *AttachNetworkInterfaceInput) SetInstanceId(v string) *AttachNetworkInterfaceInput
    func (s *AttachNetworkInterfaceInput) SetNetworkInterfaceId(v string) *AttachNetworkInterfaceInput
    func (s AttachNetworkInterfaceInput) String() string
    func (s *AttachNetworkInterfaceInput) Validate() error
type AttachNetworkInterfaceOutput
    func (s AttachNetworkInterfaceOutput) GoString() string
    func (s *AttachNetworkInterfaceOutput) SetAttachmentId(v string) *AttachNetworkInterfaceOutput
    func (s AttachNetworkInterfaceOutput) String() string
type AttachVolumeInput
    func (s AttachVolumeInput) GoString() string
    func (s *AttachVolumeInput) SetDevice(v string) *AttachVolumeInput
    func (s *AttachVolumeInput) SetDryRun(v bool) *AttachVolumeInput
    func (s *AttachVolumeInput) SetInstanceId(v string) *AttachVolumeInput
    func (s *AttachVolumeInput) SetVolumeId(v string) *AttachVolumeInput
    func (s AttachVolumeInput) String() string
    func (s *AttachVolumeInput) Validate() error
type AttachVpnGatewayInput
    func (s AttachVpnGatewayInput) GoString() string
    func (s *AttachVpnGatewayInput) SetDryRun(v bool) *AttachVpnGatewayInput
    func (s *AttachVpnGatewayInput) SetVpcId(v string) *AttachVpnGatewayInput
    func (s *AttachVpnGatewayInput) SetVpnGatewayId(v string) *AttachVpnGatewayInput
    func (s AttachVpnGatewayInput) String() string
    func (s *AttachVpnGatewayInput) Validate() error
type AttachVpnGatewayOutput
    func (s AttachVpnGatewayOutput) GoString() string
    func (s *AttachVpnGatewayOutput) SetVpcAttachment(v *VpcAttachment) *AttachVpnGatewayOutput
    func (s AttachVpnGatewayOutput) String() string
type AttributeBooleanValue
    func (s AttributeBooleanValue) GoString() string
    func (s *AttributeBooleanValue) SetValue(v bool) *AttributeBooleanValue
    func (s AttributeBooleanValue) String() string
type AttributeValue
    func (s AttributeValue) GoString() string
    func (s *AttributeValue) SetValue(v string) *AttributeValue
    func (s AttributeValue) String() string
type AuthorizeSecurityGroupEgressInput
    func (s AuthorizeSecurityGroupEgressInput) GoString() string
    func (s *AuthorizeSecurityGroupEgressInput) SetCidrIp(v string) *AuthorizeSecurityGroupEgressInput
    func (s *AuthorizeSecurityGroupEgressInput) SetDryRun(v bool) *AuthorizeSecurityGroupEgressInput
    func (s *AuthorizeSecurityGroupEgressInput) SetFromPort(v int64) *AuthorizeSecurityGroupEgressInput
    func (s *AuthorizeSecurityGroupEgressInput) SetGroupId(v string) *AuthorizeSecurityGroupEgressInput
    func (s *AuthorizeSecurityGroupEgressInput) SetIpPermissions(v []*IpPermission) *AuthorizeSecurityGroupEgressInput
    func (s *AuthorizeSecurityGroupEgressInput) SetIpProtocol(v string) *AuthorizeSecurityGroupEgressInput
    func (s *AuthorizeSecurityGroupEgressInput) SetSourceSecurityGroupName(v string) *AuthorizeSecurityGroupEgressInput
    func (s *AuthorizeSecurityGroupEgressInput) SetSourceSecurityGroupOwnerId(v string) *AuthorizeSecurityGroupEgressInput
    func (s *AuthorizeSecurityGroupEgressInput) SetToPort(v int64) *AuthorizeSecurityGroupEgressInput
    func (s AuthorizeSecurityGroupEgressInput) String() string
    func (s *AuthorizeSecurityGroupEgressInput) Validate() error
type AuthorizeSecurityGroupEgressOutput
    func (s AuthorizeSecurityGroupEgressOutput) GoString() string
    func (s AuthorizeSecurityGroupEgressOutput) String() string
type AuthorizeSecurityGroupIngressInput
    func (s AuthorizeSecurityGroupIngressInput) GoString() string
    func (s *AuthorizeSecurityGroupIngressInput) SetCidrIp(v string) *AuthorizeSecurityGroupIngressInput
    func (s *AuthorizeSecurityGroupIngressInput) SetDryRun(v bool) *AuthorizeSecurityGroupIngressInput
    func (s *AuthorizeSecurityGroupIngressInput) SetFromPort(v int64) *AuthorizeSecurityGroupIngressInput
    func (s *AuthorizeSecurityGroupIngressInput) SetGroupId(v string) *AuthorizeSecurityGroupIngressInput
    func (s *AuthorizeSecurityGroupIngressInput) SetGroupName(v string) *AuthorizeSecurityGroupIngressInput
    func (s *AuthorizeSecurityGroupIngressInput) SetIpPermissions(v []*IpPermission) *AuthorizeSecurityGroupIngressInput
    func (s *AuthorizeSecurityGroupIngressInput) SetIpProtocol(v string) *AuthorizeSecurityGroupIngressInput
    func (s *AuthorizeSecurityGroupIngressInput) SetSourceSecurityGroupName(v string) *AuthorizeSecurityGroupIngressInput
    func (s *AuthorizeSecurityGroupIngressInput) SetSourceSecurityGroupOwnerId(v string) *AuthorizeSecurityGroupIngressInput
    func (s *AuthorizeSecurityGroupIngressInput) SetToPort(v int64) *AuthorizeSecurityGroupIngressInput
    func (s AuthorizeSecurityGroupIngressInput) String() string
type AuthorizeSecurityGroupIngressOutput
    func (s AuthorizeSecurityGroupIngressOutput) GoString() string
    func (s AuthorizeSecurityGroupIngressOutput) String() string
type AvailabilityZone
    func (s AvailabilityZone) GoString() string
    func (s *AvailabilityZone) SetMessages(v []*AvailabilityZoneMessage) *AvailabilityZone
    func (s *AvailabilityZone) SetRegionName(v string) *AvailabilityZone
    func (s *AvailabilityZone) SetState(v string) *AvailabilityZone
    func (s *AvailabilityZone) SetZoneName(v string) *AvailabilityZone
    func (s AvailabilityZone) String() string
type AvailabilityZoneMessage
    func (s AvailabilityZoneMessage) GoString() string
    func (s *AvailabilityZoneMessage) SetMessage(v string) *AvailabilityZoneMessage
    func (s AvailabilityZoneMessage) String() string
type AvailableCapacity
    func (s AvailableCapacity) GoString() string
    func (s *AvailableCapacity) SetAvailableInstanceCapacity(v []*InstanceCapacity) *AvailableCapacity
    func (s *AvailableCapacity) SetAvailableVCpus(v int64) *AvailableCapacity
    func (s AvailableCapacity) String() string
type BlobAttributeValue
    func (s BlobAttributeValue) GoString() string
    func (s *BlobAttributeValue) SetValue(v []byte) *BlobAttributeValue
    func (s BlobAttributeValue) String() string
type BlockDeviceMapping
    func (s BlockDeviceMapping) GoString() string
    func (s *BlockDeviceMapping) SetDeviceName(v string) *BlockDeviceMapping
    func (s *BlockDeviceMapping) SetEbs(v *EbsBlockDevice) *BlockDeviceMapping
    func (s *BlockDeviceMapping) SetNoDevice(v string) *BlockDeviceMapping
    func (s *BlockDeviceMapping) SetVirtualName(v string) *BlockDeviceMapping
    func (s BlockDeviceMapping) String() string
type BundleInstanceInput
    func (s BundleInstanceInput) GoString() string
    func (s *BundleInstanceInput) SetDryRun(v bool) *BundleInstanceInput
    func (s *BundleInstanceInput) SetInstanceId(v string) *BundleInstanceInput
    func (s *BundleInstanceInput) SetStorage(v *Storage) *BundleInstanceInput
    func (s BundleInstanceInput) String() string
    func (s *BundleInstanceInput) Validate() error
type BundleInstanceOutput
    func (s BundleInstanceOutput) GoString() string
    func (s *BundleInstanceOutput) SetBundleTask(v *BundleTask) *BundleInstanceOutput
    func (s BundleInstanceOutput) String() string
type BundleTask
    func (s BundleTask) GoString() string
    func (s *BundleTask) SetBundleId(v string) *BundleTask
    func (s *BundleTask) SetBundleTaskError(v *BundleTaskError) *BundleTask
    func (s *BundleTask) SetInstanceId(v string) *BundleTask
    func (s *BundleTask) SetProgress(v string) *BundleTask
    func (s *BundleTask) SetStartTime(v time.Time) *BundleTask
    func (s *BundleTask) SetState(v string) *BundleTask
    func (s *BundleTask) SetStorage(v *Storage) *BundleTask
    func (s *BundleTask) SetUpdateTime(v time.Time) *BundleTask
    func (s BundleTask) String() string
type BundleTaskError
    func (s BundleTaskError) GoString() string
    func (s *BundleTaskError) SetCode(v string) *BundleTaskError
    func (s *BundleTaskError) SetMessage(v string) *BundleTaskError
    func (s BundleTaskError) String() string
type CancelBundleTaskInput
    func (s CancelBundleTaskInput) GoString() string
    func (s *CancelBundleTaskInput) SetBundleId(v string) *CancelBundleTaskInput
    func (s *CancelBundleTaskInput) SetDryRun(v bool) *CancelBundleTaskInput
    func (s CancelBundleTaskInput) String() string
    func (s *CancelBundleTaskInput) Validate() error
type CancelBundleTaskOutput
    func (s CancelBundleTaskOutput) GoString() string
    func (s *CancelBundleTaskOutput) SetBundleTask(v *BundleTask) *CancelBundleTaskOutput
    func (s CancelBundleTaskOutput) String() string
type CancelConversionTaskInput
    func (s CancelConversionTaskInput) GoString() string
    func (s *CancelConversionTaskInput) SetConversionTaskId(v string) *CancelConversionTaskInput
    func (s *CancelConversionTaskInput) SetDryRun(v bool) *CancelConversionTaskInput
    func (s *CancelConversionTaskInput) SetReasonMessage(v string) *CancelConversionTaskInput
    func (s CancelConversionTaskInput) String() string
    func (s *CancelConversionTaskInput) Validate() error
type CancelConversionTaskOutput
    func (s CancelConversionTaskOutput) GoString() string
    func (s CancelConversionTaskOutput) String() string
type CancelExportTaskInput
    func (s CancelExportTaskInput) GoString() string
    func (s *CancelExportTaskInput) SetExportTaskId(v string) *CancelExportTaskInput
    func (s CancelExportTaskInput) String() string
    func (s *CancelExportTaskInput) Validate() error
type CancelExportTaskOutput
    func (s CancelExportTaskOutput) GoString() string
    func (s CancelExportTaskOutput) String() string
type CancelImportTaskInput
    func (s CancelImportTaskInput) GoString() string
    func (s *CancelImportTaskInput) SetCancelReason(v string) *CancelImportTaskInput
    func (s *CancelImportTaskInput) SetDryRun(v bool) *CancelImportTaskInput
    func (s *CancelImportTaskInput) SetImportTaskId(v string) *CancelImportTaskInput
    func (s CancelImportTaskInput) String() string
type CancelImportTaskOutput
    func (s CancelImportTaskOutput) GoString() string
    func (s *CancelImportTaskOutput) SetImportTaskId(v string) *CancelImportTaskOutput
    func (s *CancelImportTaskOutput) SetPreviousState(v string) *CancelImportTaskOutput
    func (s *CancelImportTaskOutput) SetState(v string) *CancelImportTaskOutput
    func (s CancelImportTaskOutput) String() string
type CancelReservedInstancesListingInput
    func (s CancelReservedInstancesListingInput) GoString() string
    func (s *CancelReservedInstancesListingInput) SetReservedInstancesListingId(v string) *CancelReservedInstancesListingInput
    func (s CancelReservedInstancesListingInput) String() string
    func (s *CancelReservedInstancesListingInput) Validate() error
type CancelReservedInstancesListingOutput
    func (s CancelReservedInstancesListingOutput) GoString() string
    func (s *CancelReservedInstancesListingOutput) SetReservedInstancesListings(v []*ReservedInstancesListing) *CancelReservedInstancesListingOutput
    func (s CancelReservedInstancesListingOutput) String() string
type CancelSpotFleetRequestsError
    func (s CancelSpotFleetRequestsError) GoString() string
    func (s *CancelSpotFleetRequestsError) SetCode(v string) *CancelSpotFleetRequestsError
    func (s *CancelSpotFleetRequestsError) SetMessage(v string) *CancelSpotFleetRequestsError
    func (s CancelSpotFleetRequestsError) String() string
type CancelSpotFleetRequestsErrorItem
    func (s CancelSpotFleetRequestsErrorItem) GoString() string
    func (s *CancelSpotFleetRequestsErrorItem) SetError(v *CancelSpotFleetRequestsError) *CancelSpotFleetRequestsErrorItem
    func (s *CancelSpotFleetRequestsErrorItem) SetSpotFleetRequestId(v string) *CancelSpotFleetRequestsErrorItem
    func (s CancelSpotFleetRequestsErrorItem) String() string
type CancelSpotFleetRequestsInput
    func (s CancelSpotFleetRequestsInput) GoString() string
    func (s *CancelSpotFleetRequestsInput) SetDryRun(v bool) *CancelSpotFleetRequestsInput
    func (s *CancelSpotFleetRequestsInput) SetSpotFleetRequestIds(v []*string) *CancelSpotFleetRequestsInput
    func (s *CancelSpotFleetRequestsInput) SetTerminateInstances(v bool) *CancelSpotFleetRequestsInput
    func (s CancelSpotFleetRequestsInput) String() string
    func (s *CancelSpotFleetRequestsInput) Validate() error
type CancelSpotFleetRequestsOutput
    func (s CancelSpotFleetRequestsOutput) GoString() string
    func (s *CancelSpotFleetRequestsOutput) SetSuccessfulFleetRequests(v []*CancelSpotFleetRequestsSuccessItem) *CancelSpotFleetRequestsOutput
    func (s *CancelSpotFleetRequestsOutput) SetUnsuccessfulFleetRequests(v []*CancelSpotFleetRequestsErrorItem) *CancelSpotFleetRequestsOutput
    func (s CancelSpotFleetRequestsOutput) String() string
type CancelSpotFleetRequestsSuccessItem
    func (s CancelSpotFleetRequestsSuccessItem) GoString() string
    func (s *CancelSpotFleetRequestsSuccessItem) SetCurrentSpotFleetRequestState(v string) *CancelSpotFleetRequestsSuccessItem
    func (s *CancelSpotFleetRequestsSuccessItem) SetPreviousSpotFleetRequestState(v string) *CancelSpotFleetRequestsSuccessItem
    func (s *CancelSpotFleetRequestsSuccessItem) SetSpotFleetRequestId(v string) *CancelSpotFleetRequestsSuccessItem
    func (s CancelSpotFleetRequestsSuccessItem) String() string
type CancelSpotInstanceRequestsInput
    func (s CancelSpotInstanceRequestsInput) GoString() string
    func (s *CancelSpotInstanceRequestsInput) SetDryRun(v bool) *CancelSpotInstanceRequestsInput
    func (s *CancelSpotInstanceRequestsInput) SetSpotInstanceRequestIds(v []*string) *CancelSpotInstanceRequestsInput
    func (s CancelSpotInstanceRequestsInput) String() string
    func (s *CancelSpotInstanceRequestsInput) Validate() error
type CancelSpotInstanceRequestsOutput
    func (s CancelSpotInstanceRequestsOutput) GoString() string
    func (s *CancelSpotInstanceRequestsOutput) SetCancelledSpotInstanceRequests(v []*CancelledSpotInstanceRequest) *CancelSpotInstanceRequestsOutput
    func (s CancelSpotInstanceRequestsOutput) String() string
type CancelledSpotInstanceRequest
    func (s CancelledSpotInstanceRequest) GoString() string
    func (s *CancelledSpotInstanceRequest) SetSpotInstanceRequestId(v string) *CancelledSpotInstanceRequest
    func (s *CancelledSpotInstanceRequest) SetState(v string) *CancelledSpotInstanceRequest
    func (s CancelledSpotInstanceRequest) String() string
type ClassicLinkDnsSupport
    func (s ClassicLinkDnsSupport) GoString() string
    func (s *ClassicLinkDnsSupport) SetClassicLinkDnsSupported(v bool) *ClassicLinkDnsSupport
    func (s *ClassicLinkDnsSupport) SetVpcId(v string) *ClassicLinkDnsSupport
    func (s ClassicLinkDnsSupport) String() string
type ClassicLinkInstance
    func (s ClassicLinkInstance) GoString() string
    func (s *ClassicLinkInstance) SetGroups(v []*GroupIdentifier) *ClassicLinkInstance
    func (s *ClassicLinkInstance) SetInstanceId(v string) *ClassicLinkInstance
    func (s *ClassicLinkInstance) SetTags(v []*Tag) *ClassicLinkInstance
    func (s *ClassicLinkInstance) SetVpcId(v string) *ClassicLinkInstance
    func (s ClassicLinkInstance) String() string
type ClientData
    func (s ClientData) GoString() string
    func (s *ClientData) SetComment(v string) *ClientData
    func (s *ClientData) SetUploadEnd(v time.Time) *ClientData
    func (s *ClientData) SetUploadSize(v float64) *ClientData
    func (s *ClientData) SetUploadStart(v time.Time) *ClientData
    func (s ClientData) String() string
type ConfirmProductInstanceInput
    func (s ConfirmProductInstanceInput) GoString() string
    func (s *ConfirmProductInstanceInput) SetDryRun(v bool) *ConfirmProductInstanceInput
    func (s *ConfirmProductInstanceInput) SetInstanceId(v string) *ConfirmProductInstanceInput
    func (s *ConfirmProductInstanceInput) SetProductCode(v string) *ConfirmProductInstanceInput
    func (s ConfirmProductInstanceInput) String() string
    func (s *ConfirmProductInstanceInput) Validate() error
type ConfirmProductInstanceOutput
    func (s ConfirmProductInstanceOutput) GoString() string
    func (s *ConfirmProductInstanceOutput) SetOwnerId(v string) *ConfirmProductInstanceOutput
    func (s *ConfirmProductInstanceOutput) SetReturn(v bool) *ConfirmProductInstanceOutput
    func (s ConfirmProductInstanceOutput) String() string
type ConversionTask
    func (s ConversionTask) GoString() string
    func (s *ConversionTask) SetConversionTaskId(v string) *ConversionTask
    func (s *ConversionTask) SetExpirationTime(v string) *ConversionTask
    func (s *ConversionTask) SetImportInstance(v *ImportInstanceTaskDetails) *ConversionTask
    func (s *ConversionTask) SetImportVolume(v *ImportVolumeTaskDetails) *ConversionTask
    func (s *ConversionTask) SetState(v string) *ConversionTask
    func (s *ConversionTask) SetStatusMessage(v string) *ConversionTask
    func (s *ConversionTask) SetTags(v []*Tag) *ConversionTask
    func (s ConversionTask) String() string
type CopyImageInput
    func (s CopyImageInput) GoString() string
    func (s *CopyImageInput) SetClientToken(v string) *CopyImageInput
    func (s *CopyImageInput) SetDescription(v string) *CopyImageInput
    func (s *CopyImageInput) SetDryRun(v bool) *CopyImageInput
    func (s *CopyImageInput) SetEncrypted(v bool) *CopyImageInput
    func (s *CopyImageInput) SetKmsKeyId(v string) *CopyImageInput
    func (s *CopyImageInput) SetName(v string) *CopyImageInput
    func (s *CopyImageInput) SetSourceImageId(v string) *CopyImageInput
    func (s *CopyImageInput) SetSourceRegion(v string) *CopyImageInput
    func (s CopyImageInput) String() string
    func (s *CopyImageInput) Validate() error
type CopyImageOutput
    func (s CopyImageOutput) GoString() string
    func (s *CopyImageOutput) SetImageId(v string) *CopyImageOutput
    func (s CopyImageOutput) String() string
type CopySnapshotInput
    func (s CopySnapshotInput) GoString() string
    func (s *CopySnapshotInput) SetDescription(v string) *CopySnapshotInput
    func (s *CopySnapshotInput) SetDestinationRegion(v string) *CopySnapshotInput
    func (s *CopySnapshotInput) SetDryRun(v bool) *CopySnapshotInput
    func (s *CopySnapshotInput) SetEncrypted(v bool) *CopySnapshotInput
    func (s *CopySnapshotInput) SetKmsKeyId(v string) *CopySnapshotInput
    func (s *CopySnapshotInput) SetPresignedUrl(v string) *CopySnapshotInput
    func (s *CopySnapshotInput) SetSourceRegion(v string) *CopySnapshotInput
    func (s *CopySnapshotInput) SetSourceSnapshotId(v string) *CopySnapshotInput
    func (s CopySnapshotInput) String() string
    func (s *CopySnapshotInput) Validate() error
type CopySnapshotOutput
    func (s CopySnapshotOutput) GoString() string
    func (s *CopySnapshotOutput) SetSnapshotId(v string) *CopySnapshotOutput
    func (s CopySnapshotOutput) String() string
type CreateCustomerGatewayInput
    func (s CreateCustomerGatewayInput) GoString() string
    func (s *CreateCustomerGatewayInput) SetBgpAsn(v int64) *CreateCustomerGatewayInput
    func (s *CreateCustomerGatewayInput) SetDryRun(v bool) *CreateCustomerGatewayInput
    func (s *CreateCustomerGatewayInput) SetPublicIp(v string) *CreateCustomerGatewayInput
    func (s *CreateCustomerGatewayInput) SetType(v string) *CreateCustomerGatewayInput
    func (s CreateCustomerGatewayInput) String() string
    func (s *CreateCustomerGatewayInput) Validate() error
type CreateCustomerGatewayOutput
    func (s CreateCustomerGatewayOutput) GoString() string
    func (s *CreateCustomerGatewayOutput) SetCustomerGateway(v *CustomerGateway) *CreateCustomerGatewayOutput
    func (s CreateCustomerGatewayOutput) String() string
type CreateDhcpOptionsInput
    func (s CreateDhcpOptionsInput) GoString() string
    func (s *CreateDhcpOptionsInput) SetDhcpConfigurations(v []*NewDhcpConfiguration) *CreateDhcpOptionsInput
    func (s *CreateDhcpOptionsInput) SetDryRun(v bool) *CreateDhcpOptionsInput
    func (s CreateDhcpOptionsInput) String() string
    func (s *CreateDhcpOptionsInput) Validate() error
type CreateDhcpOptionsOutput
    func (s CreateDhcpOptionsOutput) GoString() string
    func (s *CreateDhcpOptionsOutput) SetDhcpOptions(v *DhcpOptions) *CreateDhcpOptionsOutput
    func (s CreateDhcpOptionsOutput) String() string
type CreateEgressOnlyInternetGatewayInput
    func (s CreateEgressOnlyInternetGatewayInput) GoString() string
    func (s *CreateEgressOnlyInternetGatewayInput) SetClientToken(v string) *CreateEgressOnlyInternetGatewayInput
    func (s *CreateEgressOnlyInternetGatewayInput) SetDryRun(v bool) *CreateEgressOnlyInternetGatewayInput
    func (s *CreateEgressOnlyInternetGatewayInput) SetVpcId(v string) *CreateEgressOnlyInternetGatewayInput
    func (s CreateEgressOnlyInternetGatewayInput) String() string
    func (s *CreateEgressOnlyInternetGatewayInput) Validate() error
type CreateEgressOnlyInternetGatewayOutput
    func (s CreateEgressOnlyInternetGatewayOutput) GoString() string
    func (s *CreateEgressOnlyInternetGatewayOutput) SetClientToken(v string) *CreateEgressOnlyInternetGatewayOutput
    func (s *CreateEgressOnlyInternetGatewayOutput) SetEgressOnlyInternetGateway(v *EgressOnlyInternetGateway) *CreateEgressOnlyInternetGatewayOutput
    func (s CreateEgressOnlyInternetGatewayOutput) String() string
type CreateFlowLogsInput
    func (s CreateFlowLogsInput) GoString() string
    func (s *CreateFlowLogsInput) SetClientToken(v string) *CreateFlowLogsInput
    func (s *CreateFlowLogsInput) SetDeliverLogsPermissionArn(v string) *CreateFlowLogsInput
    func (s *CreateFlowLogsInput) SetLogGroupName(v string) *CreateFlowLogsInput
    func (s *CreateFlowLogsInput) SetResourceIds(v []*string) *CreateFlowLogsInput
    func (s *CreateFlowLogsInput) SetResourceType(v string) *CreateFlowLogsInput
    func (s *CreateFlowLogsInput) SetTrafficType(v string) *CreateFlowLogsInput
    func (s CreateFlowLogsInput) String() string
    func (s *CreateFlowLogsInput) Validate() error
type CreateFlowLogsOutput
    func (s CreateFlowLogsOutput) GoString() string
    func (s *CreateFlowLogsOutput) SetClientToken(v string) *CreateFlowLogsOutput
    func (s *CreateFlowLogsOutput) SetFlowLogIds(v []*string) *CreateFlowLogsOutput
    func (s *CreateFlowLogsOutput) SetUnsuccessful(v []*UnsuccessfulItem) *CreateFlowLogsOutput
    func (s CreateFlowLogsOutput) String() string
type CreateFpgaImageInput
    func (s CreateFpgaImageInput) GoString() string
    func (s *CreateFpgaImageInput) SetClientToken(v string) *CreateFpgaImageInput
    func (s *CreateFpgaImageInput) SetDescription(v string) *CreateFpgaImageInput
    func (s *CreateFpgaImageInput) SetDryRun(v bool) *CreateFpgaImageInput
    func (s *CreateFpgaImageInput) SetInputStorageLocation(v *StorageLocation) *CreateFpgaImageInput
    func (s *CreateFpgaImageInput) SetLogsStorageLocation(v *StorageLocation) *CreateFpgaImageInput
    func (s *CreateFpgaImageInput) SetName(v string) *CreateFpgaImageInput
    func (s CreateFpgaImageInput) String() string
    func (s *CreateFpgaImageInput) Validate() error
type CreateFpgaImageOutput
    func (s CreateFpgaImageOutput) GoString() string
    func (s *CreateFpgaImageOutput) SetFpgaImageGlobalId(v string) *CreateFpgaImageOutput
    func (s *CreateFpgaImageOutput) SetFpgaImageId(v string) *CreateFpgaImageOutput
    func (s CreateFpgaImageOutput) String() string
type CreateImageInput
    func (s CreateImageInput) GoString() string
    func (s *CreateImageInput) SetBlockDeviceMappings(v []*BlockDeviceMapping) *CreateImageInput
    func (s *CreateImageInput) SetDescription(v string) *CreateImageInput
    func (s *CreateImageInput) SetDryRun(v bool) *CreateImageInput
    func (s *CreateImageInput) SetInstanceId(v string) *CreateImageInput
    func (s *CreateImageInput) SetName(v string) *CreateImageInput
    func (s *CreateImageInput) SetNoReboot(v bool) *CreateImageInput
    func (s CreateImageInput) String() string
    func (s *CreateImageInput) Validate() error
type CreateImageOutput
    func (s CreateImageOutput) GoString() string
    func (s *CreateImageOutput) SetImageId(v string) *CreateImageOutput
    func (s CreateImageOutput) String() string
type CreateInstanceExportTaskInput
    func (s CreateInstanceExportTaskInput) GoString() string
    func (s *CreateInstanceExportTaskInput) SetDescription(v string) *CreateInstanceExportTaskInput
    func (s *CreateInstanceExportTaskInput) SetExportToS3Task(v *ExportToS3TaskSpecification) *CreateInstanceExportTaskInput
    func (s *CreateInstanceExportTaskInput) SetInstanceId(v string) *CreateInstanceExportTaskInput
    func (s *CreateInstanceExportTaskInput) SetTargetEnvironment(v string) *CreateInstanceExportTaskInput
    func (s CreateInstanceExportTaskInput) String() string
    func (s *CreateInstanceExportTaskInput) Validate() error
type CreateInstanceExportTaskOutput
    func (s CreateInstanceExportTaskOutput) GoString() string
    func (s *CreateInstanceExportTaskOutput) SetExportTask(v *ExportTask) *CreateInstanceExportTaskOutput
    func (s CreateInstanceExportTaskOutput) String() string
type CreateInternetGatewayInput
    func (s CreateInternetGatewayInput) GoString() string
    func (s *CreateInternetGatewayInput) SetDryRun(v bool) *CreateInternetGatewayInput
    func (s CreateInternetGatewayInput) String() string
type CreateInternetGatewayOutput
    func (s CreateInternetGatewayOutput) GoString() string
    func (s *CreateInternetGatewayOutput) SetInternetGateway(v *InternetGateway) *CreateInternetGatewayOutput
    func (s CreateInternetGatewayOutput) String() string
type CreateKeyPairInput
    func (s CreateKeyPairInput) GoString() string
    func (s *CreateKeyPairInput) SetDryRun(v bool) *CreateKeyPairInput
    func (s *CreateKeyPairInput) SetKeyName(v string) *CreateKeyPairInput
    func (s CreateKeyPairInput) String() string
    func (s *CreateKeyPairInput) Validate() error
type CreateKeyPairOutput
    func (s CreateKeyPairOutput) GoString() string
    func (s *CreateKeyPairOutput) SetKeyFingerprint(v string) *CreateKeyPairOutput
    func (s *CreateKeyPairOutput) SetKeyMaterial(v string) *CreateKeyPairOutput
    func (s *CreateKeyPairOutput) SetKeyName(v string) *CreateKeyPairOutput
    func (s CreateKeyPairOutput) String() string
type CreateNatGatewayInput
    func (s CreateNatGatewayInput) GoString() string
    func (s *CreateNatGatewayInput) SetAllocationId(v string) *CreateNatGatewayInput
    func (s *CreateNatGatewayInput) SetClientToken(v string) *CreateNatGatewayInput
    func (s *CreateNatGatewayInput) SetSubnetId(v string) *CreateNatGatewayInput
    func (s CreateNatGatewayInput) String() string
    func (s *CreateNatGatewayInput) Validate() error
type CreateNatGatewayOutput
    func (s CreateNatGatewayOutput) GoString() string
    func (s *CreateNatGatewayOutput) SetClientToken(v string) *CreateNatGatewayOutput
    func (s *CreateNatGatewayOutput) SetNatGateway(v *NatGateway) *CreateNatGatewayOutput
    func (s CreateNatGatewayOutput) String() string
type CreateNetworkAclEntryInput
    func (s CreateNetworkAclEntryInput) GoString() string
    func (s *CreateNetworkAclEntryInput) SetCidrBlock(v string) *CreateNetworkAclEntryInput
    func (s *CreateNetworkAclEntryInput) SetDryRun(v bool) *CreateNetworkAclEntryInput
    func (s *CreateNetworkAclEntryInput) SetEgress(v bool) *CreateNetworkAclEntryInput
    func (s *CreateNetworkAclEntryInput) SetIcmpTypeCode(v *IcmpTypeCode) *CreateNetworkAclEntryInput
    func (s *CreateNetworkAclEntryInput) SetIpv6CidrBlock(v string) *CreateNetworkAclEntryInput
    func (s *CreateNetworkAclEntryInput) SetNetworkAclId(v string) *CreateNetworkAclEntryInput
    func (s *CreateNetworkAclEntryInput) SetPortRange(v *PortRange) *CreateNetworkAclEntryInput
    func (s *CreateNetworkAclEntryInput) SetProtocol(v string) *CreateNetworkAclEntryInput
    func (s *CreateNetworkAclEntryInput) SetRuleAction(v string) *CreateNetworkAclEntryInput
    func (s *CreateNetworkAclEntryInput) SetRuleNumber(v int64) *CreateNetworkAclEntryInput
    func (s CreateNetworkAclEntryInput) String() string
    func (s *CreateNetworkAclEntryInput) Validate() error
type CreateNetworkAclEntryOutput
    func (s CreateNetworkAclEntryOutput) GoString() string
    func (s CreateNetworkAclEntryOutput) String() string
type CreateNetworkAclInput
    func (s CreateNetworkAclInput) GoString() string
    func (s *CreateNetworkAclInput) SetDryRun(v bool) *CreateNetworkAclInput
    func (s *CreateNetworkAclInput) SetVpcId(v string) *CreateNetworkAclInput
    func (s CreateNetworkAclInput) String() string
    func (s *CreateNetworkAclInput) Validate() error
type CreateNetworkAclOutput
    func (s CreateNetworkAclOutput) GoString() string
    func (s *CreateNetworkAclOutput) SetNetworkAcl(v *NetworkAcl) *CreateNetworkAclOutput
    func (s CreateNetworkAclOutput) String() string
type CreateNetworkInterfaceInput
    func (s CreateNetworkInterfaceInput) GoString() string
    func (s *CreateNetworkInterfaceInput) SetDescription(v string) *CreateNetworkInterfaceInput
    func (s *CreateNetworkInterfaceInput) SetDryRun(v bool) *CreateNetworkInterfaceInput
    func (s *CreateNetworkInterfaceInput) SetGroups(v []*string) *CreateNetworkInterfaceInput
    func (s *CreateNetworkInterfaceInput) SetIpv6AddressCount(v int64) *CreateNetworkInterfaceInput
    func (s *CreateNetworkInterfaceInput) SetIpv6Addresses(v []*InstanceIpv6Address) *CreateNetworkInterfaceInput
    func (s *CreateNetworkInterfaceInput) SetPrivateIpAddress(v string) *CreateNetworkInterfaceInput
    func (s *CreateNetworkInterfaceInput) SetPrivateIpAddresses(v []*PrivateIpAddressSpecification) *CreateNetworkInterfaceInput
    func (s *CreateNetworkInterfaceInput) SetSecondaryPrivateIpAddressCount(v int64) *CreateNetworkInterfaceInput
    func (s *CreateNetworkInterfaceInput) SetSubnetId(v string) *CreateNetworkInterfaceInput
    func (s CreateNetworkInterfaceInput) String() string
    func (s *CreateNetworkInterfaceInput) Validate() error
type CreateNetworkInterfaceOutput
    func (s CreateNetworkInterfaceOutput) GoString() string
    func (s *CreateNetworkInterfaceOutput) SetNetworkInterface(v *NetworkInterface) *CreateNetworkInterfaceOutput
    func (s CreateNetworkInterfaceOutput) String() string
type CreatePlacementGroupInput
    func (s CreatePlacementGroupInput) GoString() string
    func (s *CreatePlacementGroupInput) SetDryRun(v bool) *CreatePlacementGroupInput
    func (s *CreatePlacementGroupInput) SetGroupName(v string) *CreatePlacementGroupInput
    func (s *CreatePlacementGroupInput) SetStrategy(v string) *CreatePlacementGroupInput
    func (s CreatePlacementGroupInput) String() string
    func (s *CreatePlacementGroupInput) Validate() error
type CreatePlacementGroupOutput
    func (s CreatePlacementGroupOutput) GoString() string
    func (s CreatePlacementGroupOutput) String() string
type CreateReservedInstancesListingInput
    func (s CreateReservedInstancesListingInput) GoString() string
    func (s *CreateReservedInstancesListingInput) SetClientToken(v string) *CreateReservedInstancesListingInput
    func (s *CreateReservedInstancesListingInput) SetInstanceCount(v int64) *CreateReservedInstancesListingInput
    func (s *CreateReservedInstancesListingInput) SetPriceSchedules(v []*PriceScheduleSpecification) *CreateReservedInstancesListingInput
    func (s *CreateReservedInstancesListingInput) SetReservedInstancesId(v string) *CreateReservedInstancesListingInput
    func (s CreateReservedInstancesListingInput) String() string
    func (s *CreateReservedInstancesListingInput) Validate() error
type CreateReservedInstancesListingOutput
    func (s CreateReservedInstancesListingOutput) GoString() string
    func (s *CreateReservedInstancesListingOutput) SetReservedInstancesListings(v []*ReservedInstancesListing) *CreateReservedInstancesListingOutput
    func (s CreateReservedInstancesListingOutput) String() string
type CreateRouteInput
    func (s CreateRouteInput) GoString() string
    func (s *CreateRouteInput) SetDestinationCidrBlock(v string) *CreateRouteInput
    func (s *CreateRouteInput) SetDestinationIpv6CidrBlock(v string) *CreateRouteInput
    func (s *CreateRouteInput) SetDryRun(v bool) *CreateRouteInput
    func (s *CreateRouteInput) SetEgressOnlyInternetGatewayId(v string) *CreateRouteInput
    func (s *CreateRouteInput) SetGatewayId(v string) *CreateRouteInput
    func (s *CreateRouteInput) SetInstanceId(v string) *CreateRouteInput
    func (s *CreateRouteInput) SetNatGatewayId(v string) *CreateRouteInput
    func (s *CreateRouteInput) SetNetworkInterfaceId(v string) *CreateRouteInput
    func (s *CreateRouteInput) SetRouteTableId(v string) *CreateRouteInput
    func (s *CreateRouteInput) SetVpcPeeringConnectionId(v string) *CreateRouteInput
    func (s CreateRouteInput) String() string
    func (s *CreateRouteInput) Validate() error
type CreateRouteOutput
    func (s CreateRouteOutput) GoString() string
    func (s *CreateRouteOutput) SetReturn(v bool) *CreateRouteOutput
    func (s CreateRouteOutput) String() string
type CreateRouteTableInput
    func (s CreateRouteTableInput) GoString() string
    func (s *CreateRouteTableInput) SetDryRun(v bool) *CreateRouteTableInput
    func (s *CreateRouteTableInput) SetVpcId(v string) *CreateRouteTableInput
    func (s CreateRouteTableInput) String() string
    func (s *CreateRouteTableInput) Validate() error
type CreateRouteTableOutput
    func (s CreateRouteTableOutput) GoString() string
    func (s *CreateRouteTableOutput) SetRouteTable(v *RouteTable) *CreateRouteTableOutput
    func (s CreateRouteTableOutput) String() string
type CreateSecurityGroupInput
    func (s CreateSecurityGroupInput) GoString() string
    func (s *CreateSecurityGroupInput) SetDescription(v string) *CreateSecurityGroupInput
    func (s *CreateSecurityGroupInput) SetDryRun(v bool) *CreateSecurityGroupInput
    func (s *CreateSecurityGroupInput) SetGroupName(v string) *CreateSecurityGroupInput
    func (s *CreateSecurityGroupInput) SetVpcId(v string) *CreateSecurityGroupInput
    func (s CreateSecurityGroupInput) String() string
    func (s *CreateSecurityGroupInput) Validate() error
type CreateSecurityGroupOutput
    func (s CreateSecurityGroupOutput) GoString() string
    func (s *CreateSecurityGroupOutput) SetGroupId(v string) *CreateSecurityGroupOutput
    func (s CreateSecurityGroupOutput) String() string
type CreateSnapshotInput
    func (s CreateSnapshotInput) GoString() string
    func (s *CreateSnapshotInput) SetDescription(v string) *CreateSnapshotInput
    func (s *CreateSnapshotInput) SetDryRun(v bool) *CreateSnapshotInput
    func (s *CreateSnapshotInput) SetVolumeId(v string) *CreateSnapshotInput
    func (s CreateSnapshotInput) String() string
    func (s *CreateSnapshotInput) Validate() error
type CreateSpotDatafeedSubscriptionInput
    func (s CreateSpotDatafeedSubscriptionInput) GoString() string
    func (s *CreateSpotDatafeedSubscriptionInput) SetBucket(v string) *CreateSpotDatafeedSubscriptionInput
    func (s *CreateSpotDatafeedSubscriptionInput) SetDryRun(v bool) *CreateSpotDatafeedSubscriptionInput
    func (s *CreateSpotDatafeedSubscriptionInput) SetPrefix(v string) *CreateSpotDatafeedSubscriptionInput
    func (s CreateSpotDatafeedSubscriptionInput) String() string
    func (s *CreateSpotDatafeedSubscriptionInput) Validate() error
type CreateSpotDatafeedSubscriptionOutput
    func (s CreateSpotDatafeedSubscriptionOutput) GoString() string
    func (s *CreateSpotDatafeedSubscriptionOutput) SetSpotDatafeedSubscription(v *SpotDatafeedSubscription) *CreateSpotDatafeedSubscriptionOutput
    func (s CreateSpotDatafeedSubscriptionOutput) String() string
type CreateSubnetInput
    func (s CreateSubnetInput) GoString() string
    func (s *CreateSubnetInput) SetAvailabilityZone(v string) *CreateSubnetInput
    func (s *CreateSubnetInput) SetCidrBlock(v string) *CreateSubnetInput
    func (s *CreateSubnetInput) SetDryRun(v bool) *CreateSubnetInput
    func (s *CreateSubnetInput) SetIpv6CidrBlock(v string) *CreateSubnetInput
    func (s *CreateSubnetInput) SetVpcId(v string) *CreateSubnetInput
    func (s CreateSubnetInput) String() string
    func (s *CreateSubnetInput) Validate() error
type CreateSubnetOutput
    func (s CreateSubnetOutput) GoString() string
    func (s *CreateSubnetOutput) SetSubnet(v *Subnet) *CreateSubnetOutput
    func (s CreateSubnetOutput) String() string
type CreateTagsInput
    func (s CreateTagsInput) GoString() string
    func (s *CreateTagsInput) SetDryRun(v bool) *CreateTagsInput
    func (s *CreateTagsInput) SetResources(v []*string) *CreateTagsInput
    func (s *CreateTagsInput) SetTags(v []*Tag) *CreateTagsInput
    func (s CreateTagsInput) String() string
    func (s *CreateTagsInput) Validate() error
type CreateTagsOutput
    func (s CreateTagsOutput) GoString() string
    func (s CreateTagsOutput) String() string
type CreateVolumeInput
    func (s CreateVolumeInput) GoString() string
    func (s *CreateVolumeInput) SetAvailabilityZone(v string) *CreateVolumeInput
    func (s *CreateVolumeInput) SetDryRun(v bool) *CreateVolumeInput
    func (s *CreateVolumeInput) SetEncrypted(v bool) *CreateVolumeInput
    func (s *CreateVolumeInput) SetIops(v int64) *CreateVolumeInput
    func (s *CreateVolumeInput) SetKmsKeyId(v string) *CreateVolumeInput
    func (s *CreateVolumeInput) SetSize(v int64) *CreateVolumeInput
    func (s *CreateVolumeInput) SetSnapshotId(v string) *CreateVolumeInput
    func (s *CreateVolumeInput) SetTagSpecifications(v []*TagSpecification) *CreateVolumeInput
    func (s *CreateVolumeInput) SetVolumeType(v string) *CreateVolumeInput
    func (s CreateVolumeInput) String() string
    func (s *CreateVolumeInput) Validate() error
type CreateVolumePermission
    func (s CreateVolumePermission) GoString() string
    func (s *CreateVolumePermission) SetGroup(v string) *CreateVolumePermission
    func (s *CreateVolumePermission) SetUserId(v string) *CreateVolumePermission
    func (s CreateVolumePermission) String() string
type CreateVolumePermissionModifications
    func (s CreateVolumePermissionModifications) GoString() string
    func (s *CreateVolumePermissionModifications) SetAdd(v []*CreateVolumePermission) *CreateVolumePermissionModifications
    func (s *CreateVolumePermissionModifications) SetRemove(v []*CreateVolumePermission) *CreateVolumePermissionModifications
    func (s CreateVolumePermissionModifications) String() string
type CreateVpcEndpointInput
    func (s CreateVpcEndpointInput) GoString() string
    func (s *CreateVpcEndpointInput) SetClientToken(v string) *CreateVpcEndpointInput
    func (s *CreateVpcEndpointInput) SetDryRun(v bool) *CreateVpcEndpointInput
    func (s *CreateVpcEndpointInput) SetPolicyDocument(v string) *CreateVpcEndpointInput
    func (s *CreateVpcEndpointInput) SetRouteTableIds(v []*string) *CreateVpcEndpointInput
    func (s *CreateVpcEndpointInput) SetServiceName(v string) *CreateVpcEndpointInput
    func (s *CreateVpcEndpointInput) SetVpcId(v string) *CreateVpcEndpointInput
    func (s CreateVpcEndpointInput) String() string
    func (s *CreateVpcEndpointInput) Validate() error
type CreateVpcEndpointOutput
    func (s CreateVpcEndpointOutput) GoString() string
    func (s *CreateVpcEndpointOutput) SetClientToken(v string) *CreateVpcEndpointOutput
    func (s *CreateVpcEndpointOutput) SetVpcEndpoint(v *VpcEndpoint) *CreateVpcEndpointOutput
    func (s CreateVpcEndpointOutput) String() string
type CreateVpcInput
    func (s CreateVpcInput) GoString() string
    func (s *CreateVpcInput) SetAmazonProvidedIpv6CidrBlock(v bool) *CreateVpcInput
    func (s *CreateVpcInput) SetCidrBlock(v string) *CreateVpcInput
    func (s *CreateVpcInput) SetDryRun(v bool) *CreateVpcInput
    func (s *CreateVpcInput) SetInstanceTenancy(v string) *CreateVpcInput
    func (s CreateVpcInput) String() string
    func (s *CreateVpcInput) Validate() error
type CreateVpcOutput
    func (s CreateVpcOutput) GoString() string
    func (s *CreateVpcOutput) SetVpc(v *Vpc) *CreateVpcOutput
    func (s CreateVpcOutput) String() string
type CreateVpcPeeringConnectionInput
    func (s CreateVpcPeeringConnectionInput) GoString() string
    func (s *CreateVpcPeeringConnectionInput) SetDryRun(v bool) *CreateVpcPeeringConnectionInput
    func (s *CreateVpcPeeringConnectionInput) SetPeerOwnerId(v string) *CreateVpcPeeringConnectionInput
    func (s *CreateVpcPeeringConnectionInput) SetPeerVpcId(v string) *CreateVpcPeeringConnectionInput
    func (s *CreateVpcPeeringConnectionInput) SetVpcId(v string) *CreateVpcPeeringConnectionInput
    func (s CreateVpcPeeringConnectionInput) String() string
type CreateVpcPeeringConnectionOutput
    func (s CreateVpcPeeringConnectionOutput) GoString() string
    func (s *CreateVpcPeeringConnectionOutput) SetVpcPeeringConnection(v *VpcPeeringConnection) *CreateVpcPeeringConnectionOutput
    func (s CreateVpcPeeringConnectionOutput) String() string
type CreateVpnConnectionInput
    func (s CreateVpnConnectionInput) GoString() string
    func (s *CreateVpnConnectionInput) SetCustomerGatewayId(v string) *CreateVpnConnectionInput
    func (s *CreateVpnConnectionInput) SetDryRun(v bool) *CreateVpnConnectionInput
    func (s *CreateVpnConnectionInput) SetOptions(v *VpnConnectionOptionsSpecification) *CreateVpnConnectionInput
    func (s *CreateVpnConnectionInput) SetType(v string) *CreateVpnConnectionInput
    func (s *CreateVpnConnectionInput) SetVpnGatewayId(v string) *CreateVpnConnectionInput
    func (s CreateVpnConnectionInput) String() string
    func (s *CreateVpnConnectionInput) Validate() error
type CreateVpnConnectionOutput
    func (s CreateVpnConnectionOutput) GoString() string
    func (s *CreateVpnConnectionOutput) SetVpnConnection(v *VpnConnection) *CreateVpnConnectionOutput
    func (s CreateVpnConnectionOutput) String() string
type CreateVpnConnectionRouteInput
    func (s CreateVpnConnectionRouteInput) GoString() string
    func (s *CreateVpnConnectionRouteInput) SetDestinationCidrBlock(v string) *CreateVpnConnectionRouteInput
    func (s *CreateVpnConnectionRouteInput) SetVpnConnectionId(v string) *CreateVpnConnectionRouteInput
    func (s CreateVpnConnectionRouteInput) String() string
    func (s *CreateVpnConnectionRouteInput) Validate() error
type CreateVpnConnectionRouteOutput
    func (s CreateVpnConnectionRouteOutput) GoString() string
    func (s CreateVpnConnectionRouteOutput) String() string
type CreateVpnGatewayInput
    func (s CreateVpnGatewayInput) GoString() string
    func (s *CreateVpnGatewayInput) SetAvailabilityZone(v string) *CreateVpnGatewayInput
    func (s *CreateVpnGatewayInput) SetDryRun(v bool) *CreateVpnGatewayInput
    func (s *CreateVpnGatewayInput) SetType(v string) *CreateVpnGatewayInput
    func (s CreateVpnGatewayInput) String() string
    func (s *CreateVpnGatewayInput) Validate() error
type CreateVpnGatewayOutput
    func (s CreateVpnGatewayOutput) GoString() string
    func (s *CreateVpnGatewayOutput) SetVpnGateway(v *VpnGateway) *CreateVpnGatewayOutput
    func (s CreateVpnGatewayOutput) String() string
type CustomerGateway
    func (s CustomerGateway) GoString() string
    func (s *CustomerGateway) SetBgpAsn(v string) *CustomerGateway
    func (s *CustomerGateway) SetCustomerGatewayId(v string) *CustomerGateway
    func (s *CustomerGateway) SetIpAddress(v string) *CustomerGateway
    func (s *CustomerGateway) SetState(v string) *CustomerGateway
    func (s *CustomerGateway) SetTags(v []*Tag) *CustomerGateway
    func (s *CustomerGateway) SetType(v string) *CustomerGateway
    func (s CustomerGateway) String() string
type DeleteCustomerGatewayInput
    func (s DeleteCustomerGatewayInput) GoString() string
    func (s *DeleteCustomerGatewayInput) SetCustomerGatewayId(v string) *DeleteCustomerGatewayInput
    func (s *DeleteCustomerGatewayInput) SetDryRun(v bool) *DeleteCustomerGatewayInput
    func (s DeleteCustomerGatewayInput) String() string
    func (s *DeleteCustomerGatewayInput) Validate() error
type DeleteCustomerGatewayOutput
    func (s DeleteCustomerGatewayOutput) GoString() string
    func (s DeleteCustomerGatewayOutput) String() string
type DeleteDhcpOptionsInput
    func (s DeleteDhcpOptionsInput) GoString() string
    func (s *DeleteDhcpOptionsInput) SetDhcpOptionsId(v string) *DeleteDhcpOptionsInput
    func (s *DeleteDhcpOptionsInput) SetDryRun(v bool) *DeleteDhcpOptionsInput
    func (s DeleteDhcpOptionsInput) String() string
    func (s *DeleteDhcpOptionsInput) Validate() error
type DeleteDhcpOptionsOutput
    func (s DeleteDhcpOptionsOutput) GoString() string
    func (s DeleteDhcpOptionsOutput) String() string
type DeleteEgressOnlyInternetGatewayInput
    func (s DeleteEgressOnlyInternetGatewayInput) GoString() string
    func (s *DeleteEgressOnlyInternetGatewayInput) SetDryRun(v bool) *DeleteEgressOnlyInternetGatewayInput
    func (s *DeleteEgressOnlyInternetGatewayInput) SetEgressOnlyInternetGatewayId(v string) *DeleteEgressOnlyInternetGatewayInput
    func (s DeleteEgressOnlyInternetGatewayInput) String() string
    func (s *DeleteEgressOnlyInternetGatewayInput) Validate() error
type DeleteEgressOnlyInternetGatewayOutput
    func (s DeleteEgressOnlyInternetGatewayOutput) GoString() string
    func (s *DeleteEgressOnlyInternetGatewayOutput) SetReturnCode(v bool) *DeleteEgressOnlyInternetGatewayOutput
    func (s DeleteEgressOnlyInternetGatewayOutput) String() string
type DeleteFlowLogsInput
    func (s DeleteFlowLogsInput) GoString() string
    func (s *DeleteFlowLogsInput) SetFlowLogIds(v []*string) *DeleteFlowLogsInput
    func (s DeleteFlowLogsInput) String() string
    func (s *DeleteFlowLogsInput) Validate() error
type DeleteFlowLogsOutput
    func (s DeleteFlowLogsOutput) GoString() string
    func (s *DeleteFlowLogsOutput) SetUnsuccessful(v []*UnsuccessfulItem) *DeleteFlowLogsOutput
    func (s DeleteFlowLogsOutput) String() string
type DeleteInternetGatewayInput
    func (s DeleteInternetGatewayInput) GoString() string
    func (s *DeleteInternetGatewayInput) SetDryRun(v bool) *DeleteInternetGatewayInput
    func (s *DeleteInternetGatewayInput) SetInternetGatewayId(v string) *DeleteInternetGatewayInput
    func (s DeleteInternetGatewayInput) String() string
    func (s *DeleteInternetGatewayInput) Validate() error
type DeleteInternetGatewayOutput
    func (s DeleteInternetGatewayOutput) GoString() string
    func (s DeleteInternetGatewayOutput) String() string
type DeleteKeyPairInput
    func (s DeleteKeyPairInput) GoString() string
    func (s *DeleteKeyPairInput) SetDryRun(v bool) *DeleteKeyPairInput
    func (s *DeleteKeyPairInput) SetKeyName(v string) *DeleteKeyPairInput
    func (s DeleteKeyPairInput) String() string
    func (s *DeleteKeyPairInput) Validate() error
type DeleteKeyPairOutput
    func (s DeleteKeyPairOutput) GoString() string
    func (s DeleteKeyPairOutput) String() string
type DeleteNatGatewayInput
    func (s DeleteNatGatewayInput) GoString() string
    func (s *DeleteNatGatewayInput) SetNatGatewayId(v string) *DeleteNatGatewayInput
    func (s DeleteNatGatewayInput) String() string
    func (s *DeleteNatGatewayInput) Validate() error
type DeleteNatGatewayOutput
    func (s DeleteNatGatewayOutput) GoString() string
    func (s *DeleteNatGatewayOutput) SetNatGatewayId(v string) *DeleteNatGatewayOutput
    func (s DeleteNatGatewayOutput) String() string
type DeleteNetworkAclEntryInput
    func (s DeleteNetworkAclEntryInput) GoString() string
    func (s *DeleteNetworkAclEntryInput) SetDryRun(v bool) *DeleteNetworkAclEntryInput
    func (s *DeleteNetworkAclEntryInput) SetEgress(v bool) *DeleteNetworkAclEntryInput
    func (s *DeleteNetworkAclEntryInput) SetNetworkAclId(v string) *DeleteNetworkAclEntryInput
    func (s *DeleteNetworkAclEntryInput) SetRuleNumber(v int64) *DeleteNetworkAclEntryInput
    func (s DeleteNetworkAclEntryInput) String() string
    func (s *DeleteNetworkAclEntryInput) Validate() error
type DeleteNetworkAclEntryOutput
    func (s DeleteNetworkAclEntryOutput) GoString() string
    func (s DeleteNetworkAclEntryOutput) String() string
type DeleteNetworkAclInput
    func (s DeleteNetworkAclInput) GoString() string
    func (s *DeleteNetworkAclInput) SetDryRun(v bool) *DeleteNetworkAclInput
    func (s *DeleteNetworkAclInput) SetNetworkAclId(v string) *DeleteNetworkAclInput
    func (s DeleteNetworkAclInput) String() string
    func (s *DeleteNetworkAclInput) Validate() error
type DeleteNetworkAclOutput
    func (s DeleteNetworkAclOutput) GoString() string
    func (s DeleteNetworkAclOutput) String() string
type DeleteNetworkInterfaceInput
    func (s DeleteNetworkInterfaceInput) GoString() string
    func (s *DeleteNetworkInterfaceInput) SetDryRun(v bool) *DeleteNetworkInterfaceInput
    func (s *DeleteNetworkInterfaceInput) SetNetworkInterfaceId(v string) *DeleteNetworkInterfaceInput
    func (s DeleteNetworkInterfaceInput) String() string
    func (s *DeleteNetworkInterfaceInput) Validate() error
type DeleteNetworkInterfaceOutput
    func (s DeleteNetworkInterfaceOutput) GoString() string
    func (s DeleteNetworkInterfaceOutput) String() string
type DeletePlacementGroupInput
    func (s DeletePlacementGroupInput) GoString() string
    func (s *DeletePlacementGroupInput) SetDryRun(v bool) *DeletePlacementGroupInput
    func (s *DeletePlacementGroupInput) SetGroupName(v string) *DeletePlacementGroupInput
    func (s DeletePlacementGroupInput) String() string
    func (s *DeletePlacementGroupInput) Validate() error
type DeletePlacementGroupOutput
    func (s DeletePlacementGroupOutput) GoString() string
    func (s DeletePlacementGroupOutput) String() string
type DeleteRouteInput
    func (s DeleteRouteInput) GoString() string
    func (s *DeleteRouteInput) SetDestinationCidrBlock(v string) *DeleteRouteInput
    func (s *DeleteRouteInput) SetDestinationIpv6CidrBlock(v string) *DeleteRouteInput
    func (s *DeleteRouteInput) SetDryRun(v bool) *DeleteRouteInput
    func (s *DeleteRouteInput) SetRouteTableId(v string) *DeleteRouteInput
    func (s DeleteRouteInput) String() string
    func (s *DeleteRouteInput) Validate() error
type DeleteRouteOutput
    func (s DeleteRouteOutput) GoString() string
    func (s DeleteRouteOutput) String() string
type DeleteRouteTableInput
    func (s DeleteRouteTableInput) GoString() string
    func (s *DeleteRouteTableInput) SetDryRun(v bool) *DeleteRouteTableInput
    func (s *DeleteRouteTableInput) SetRouteTableId(v string) *DeleteRouteTableInput
    func (s DeleteRouteTableInput) String() string
    func (s *DeleteRouteTableInput) Validate() error
type DeleteRouteTableOutput
    func (s DeleteRouteTableOutput) GoString() string
    func (s DeleteRouteTableOutput) String() string
type DeleteSecurityGroupInput
    func (s DeleteSecurityGroupInput) GoString() string
    func (s *DeleteSecurityGroupInput) SetDryRun(v bool) *DeleteSecurityGroupInput
    func (s *DeleteSecurityGroupInput) SetGroupId(v string) *DeleteSecurityGroupInput
    func (s *DeleteSecurityGroupInput) SetGroupName(v string) *DeleteSecurityGroupInput
    func (s DeleteSecurityGroupInput) String() string
type DeleteSecurityGroupOutput
    func (s DeleteSecurityGroupOutput) GoString() string
    func (s DeleteSecurityGroupOutput) String() string
type DeleteSnapshotInput
    func (s DeleteSnapshotInput) GoString() string
    func (s *DeleteSnapshotInput) SetDryRun(v bool) *DeleteSnapshotInput
    func (s *DeleteSnapshotInput) SetSnapshotId(v string) *DeleteSnapshotInput
    func (s DeleteSnapshotInput) String() string
    func (s *DeleteSnapshotInput) Validate() error
type DeleteSnapshotOutput
    func (s DeleteSnapshotOutput) GoString() string
    func (s DeleteSnapshotOutput) String() string
type DeleteSpotDatafeedSubscriptionInput
    func (s DeleteSpotDatafeedSubscriptionInput) GoString() string
    func (s *DeleteSpotDatafeedSubscriptionInput) SetDryRun(v bool) *DeleteSpotDatafeedSubscriptionInput
    func (s DeleteSpotDatafeedSubscriptionInput) String() string
type DeleteSpotDatafeedSubscriptionOutput
    func (s DeleteSpotDatafeedSubscriptionOutput) GoString() string
    func (s DeleteSpotDatafeedSubscriptionOutput) String() string
type DeleteSubnetInput
    func (s DeleteSubnetInput) GoString() string
    func (s *DeleteSubnetInput) SetDryRun(v bool) *DeleteSubnetInput
    func (s *DeleteSubnetInput) SetSubnetId(v string) *DeleteSubnetInput
    func (s DeleteSubnetInput) String() string
    func (s *DeleteSubnetInput) Validate() error
type DeleteSubnetOutput
    func (s DeleteSubnetOutput) GoString() string
    func (s DeleteSubnetOutput) String() string
type DeleteTagsInput
    func (s DeleteTagsInput) GoString() string
    func (s *DeleteTagsInput) SetDryRun(v bool) *DeleteTagsInput
    func (s *DeleteTagsInput) SetResources(v []*string) *DeleteTagsInput
    func (s *DeleteTagsInput) SetTags(v []*Tag) *DeleteTagsInput
    func (s DeleteTagsInput) String() string
    func (s *DeleteTagsInput) Validate() error
type DeleteTagsOutput
    func (s DeleteTagsOutput) GoString() string
    func (s DeleteTagsOutput) String() string
type DeleteVolumeInput
    func (s DeleteVolumeInput) GoString() string
    func (s *DeleteVolumeInput) SetDryRun(v bool) *DeleteVolumeInput
    func (s *DeleteVolumeInput) SetVolumeId(v string) *DeleteVolumeInput
    func (s DeleteVolumeInput) String() string
    func (s *DeleteVolumeInput) Validate() error
type DeleteVolumeOutput
    func (s DeleteVolumeOutput) GoString() string
    func (s DeleteVolumeOutput) String() string
type DeleteVpcEndpointsInput
    func (s DeleteVpcEndpointsInput) GoString() string
    func (s *DeleteVpcEndpointsInput) SetDryRun(v bool) *DeleteVpcEndpointsInput
    func (s *DeleteVpcEndpointsInput) SetVpcEndpointIds(v []*string) *DeleteVpcEndpointsInput
    func (s DeleteVpcEndpointsInput) String() string
    func (s *DeleteVpcEndpointsInput) Validate() error
type DeleteVpcEndpointsOutput
    func (s DeleteVpcEndpointsOutput) GoString() string
    func (s *DeleteVpcEndpointsOutput) SetUnsuccessful(v []*UnsuccessfulItem) *DeleteVpcEndpointsOutput
    func (s DeleteVpcEndpointsOutput) String() string
type DeleteVpcInput
    func (s DeleteVpcInput) GoString() string
    func (s *DeleteVpcInput) SetDryRun(v bool) *DeleteVpcInput
    func (s *DeleteVpcInput) SetVpcId(v string) *DeleteVpcInput
    func (s DeleteVpcInput) String() string
    func (s *DeleteVpcInput) Validate() error
type DeleteVpcOutput
    func (s DeleteVpcOutput) GoString() string
    func (s DeleteVpcOutput) String() string
type DeleteVpcPeeringConnectionInput
    func (s DeleteVpcPeeringConnectionInput) GoString() string
    func (s *DeleteVpcPeeringConnectionInput) SetDryRun(v bool) *DeleteVpcPeeringConnectionInput
    func (s *DeleteVpcPeeringConnectionInput) SetVpcPeeringConnectionId(v string) *DeleteVpcPeeringConnectionInput
    func (s DeleteVpcPeeringConnectionInput) String() string
    func (s *DeleteVpcPeeringConnectionInput) Validate() error
type DeleteVpcPeeringConnectionOutput
    func (s DeleteVpcPeeringConnectionOutput) GoString() string
    func (s *DeleteVpcPeeringConnectionOutput) SetReturn(v bool) *DeleteVpcPeeringConnectionOutput
    func (s DeleteVpcPeeringConnectionOutput) String() string
type DeleteVpnConnectionInput
    func (s DeleteVpnConnectionInput) GoString() string
    func (s *DeleteVpnConnectionInput) SetDryRun(v bool) *DeleteVpnConnectionInput
    func (s *DeleteVpnConnectionInput) SetVpnConnectionId(v string) *DeleteVpnConnectionInput
    func (s DeleteVpnConnectionInput) String() string
    func (s *DeleteVpnConnectionInput) Validate() error
type DeleteVpnConnectionOutput
    func (s DeleteVpnConnectionOutput) GoString() string
    func (s DeleteVpnConnectionOutput) String() string
type DeleteVpnConnectionRouteInput
    func (s DeleteVpnConnectionRouteInput) GoString() string
    func (s *DeleteVpnConnectionRouteInput) SetDestinationCidrBlock(v string) *DeleteVpnConnectionRouteInput
    func (s *DeleteVpnConnectionRouteInput) SetVpnConnectionId(v string) *DeleteVpnConnectionRouteInput
    func (s DeleteVpnConnectionRouteInput) String() string
    func (s *DeleteVpnConnectionRouteInput) Validate() error
type DeleteVpnConnectionRouteOutput
    func (s DeleteVpnConnectionRouteOutput) GoString() string
    func (s DeleteVpnConnectionRouteOutput) String() string
type DeleteVpnGatewayInput
    func (s DeleteVpnGatewayInput) GoString() string
    func (s *DeleteVpnGatewayInput) SetDryRun(v bool) *DeleteVpnGatewayInput
    func (s *DeleteVpnGatewayInput) SetVpnGatewayId(v string) *DeleteVpnGatewayInput
    func (s DeleteVpnGatewayInput) String() string
    func (s *DeleteVpnGatewayInput) Validate() error
type DeleteVpnGatewayOutput
    func (s DeleteVpnGatewayOutput) GoString() string
    func (s DeleteVpnGatewayOutput) String() string
type DeregisterImageInput
    func (s DeregisterImageInput) GoString() string
    func (s *DeregisterImageInput) SetDryRun(v bool) *DeregisterImageInput
    func (s *DeregisterImageInput) SetImageId(v string) *DeregisterImageInput
    func (s DeregisterImageInput) String() string
    func (s *DeregisterImageInput) Validate() error
type DeregisterImageOutput
    func (s DeregisterImageOutput) GoString() string
    func (s DeregisterImageOutput) String() string
type DescribeAccountAttributesInput
    func (s DescribeAccountAttributesInput) GoString() string
    func (s *DescribeAccountAttributesInput) SetAttributeNames(v []*string) *DescribeAccountAttributesInput
    func (s *DescribeAccountAttributesInput) SetDryRun(v bool) *DescribeAccountAttributesInput
    func (s DescribeAccountAttributesInput) String() string
type DescribeAccountAttributesOutput
    func (s DescribeAccountAttributesOutput) GoString() string
    func (s *DescribeAccountAttributesOutput) SetAccountAttributes(v []*AccountAttribute) *DescribeAccountAttributesOutput
    func (s DescribeAccountAttributesOutput) String() string
type DescribeAddressesInput
    func (s DescribeAddressesInput) GoString() string
    func (s *DescribeAddressesInput) SetAllocationIds(v []*string) *DescribeAddressesInput
    func (s *DescribeAddressesInput) SetDryRun(v bool) *DescribeAddressesInput
    func (s *DescribeAddressesInput) SetFilters(v []*Filter) *DescribeAddressesInput
    func (s *DescribeAddressesInput) SetPublicIps(v []*string) *DescribeAddressesInput
    func (s DescribeAddressesInput) String() string
type DescribeAddressesOutput
    func (s DescribeAddressesOutput) GoString() string
    func (s *DescribeAddressesOutput) SetAddresses(v []*Address) *DescribeAddressesOutput
    func (s DescribeAddressesOutput) String() string
type DescribeAvailabilityZonesInput
    func (s DescribeAvailabilityZonesInput) GoString() string
    func (s *DescribeAvailabilityZonesInput) SetDryRun(v bool) *DescribeAvailabilityZonesInput
    func (s *DescribeAvailabilityZonesInput) SetFilters(v []*Filter) *DescribeAvailabilityZonesInput
    func (s *DescribeAvailabilityZonesInput) SetZoneNames(v []*string) *DescribeAvailabilityZonesInput
    func (s DescribeAvailabilityZonesInput) String() string
type DescribeAvailabilityZonesOutput
    func (s DescribeAvailabilityZonesOutput) GoString() string
    func (s *DescribeAvailabilityZonesOutput) SetAvailabilityZones(v []*AvailabilityZone) *DescribeAvailabilityZonesOutput
    func (s DescribeAvailabilityZonesOutput) String() string
type DescribeBundleTasksInput
    func (s DescribeBundleTasksInput) GoString() string
    func (s *DescribeBundleTasksInput) SetBundleIds(v []*string) *DescribeBundleTasksInput
    func (s *DescribeBundleTasksInput) SetDryRun(v bool) *DescribeBundleTasksInput
    func (s *DescribeBundleTasksInput) SetFilters(v []*Filter) *DescribeBundleTasksInput
    func (s DescribeBundleTasksInput) String() string
type DescribeBundleTasksOutput
    func (s DescribeBundleTasksOutput) GoString() string
    func (s *DescribeBundleTasksOutput) SetBundleTasks(v []*BundleTask) *DescribeBundleTasksOutput
    func (s DescribeBundleTasksOutput) String() string
type DescribeClassicLinkInstancesInput
    func (s DescribeClassicLinkInstancesInput) GoString() string
    func (s *DescribeClassicLinkInstancesInput) SetDryRun(v bool) *DescribeClassicLinkInstancesInput
    func (s *DescribeClassicLinkInstancesInput) SetFilters(v []*Filter) *DescribeClassicLinkInstancesInput
    func (s *DescribeClassicLinkInstancesInput) SetInstanceIds(v []*string) *DescribeClassicLinkInstancesInput
    func (s *DescribeClassicLinkInstancesInput) SetMaxResults(v int64) *DescribeClassicLinkInstancesInput
    func (s *DescribeClassicLinkInstancesInput) SetNextToken(v string) *DescribeClassicLinkInstancesInput
    func (s DescribeClassicLinkInstancesInput) String() string
type DescribeClassicLinkInstancesOutput
    func (s DescribeClassicLinkInstancesOutput) GoString() string
    func (s *DescribeClassicLinkInstancesOutput) SetInstances(v []*ClassicLinkInstance) *DescribeClassicLinkInstancesOutput
    func (s *DescribeClassicLinkInstancesOutput) SetNextToken(v string) *DescribeClassicLinkInstancesOutput
    func (s DescribeClassicLinkInstancesOutput) String() string
type DescribeConversionTasksInput
    func (s DescribeConversionTasksInput) GoString() string
    func (s *DescribeConversionTasksInput) SetConversionTaskIds(v []*string) *DescribeConversionTasksInput
    func (s *DescribeConversionTasksInput) SetDryRun(v bool) *DescribeConversionTasksInput
    func (s DescribeConversionTasksInput) String() string
type DescribeConversionTasksOutput
    func (s DescribeConversionTasksOutput) GoString() string
    func (s *DescribeConversionTasksOutput) SetConversionTasks(v []*ConversionTask) *DescribeConversionTasksOutput
    func (s DescribeConversionTasksOutput) String() string
type DescribeCustomerGatewaysInput
    func (s DescribeCustomerGatewaysInput) GoString() string
    func (s *DescribeCustomerGatewaysInput) SetCustomerGatewayIds(v []*string) *DescribeCustomerGatewaysInput
    func (s *DescribeCustomerGatewaysInput) SetDryRun(v bool) *DescribeCustomerGatewaysInput
    func (s *DescribeCustomerGatewaysInput) SetFilters(v []*Filter) *DescribeCustomerGatewaysInput
    func (s DescribeCustomerGatewaysInput) String() string
type DescribeCustomerGatewaysOutput
    func (s DescribeCustomerGatewaysOutput) GoString() string
    func (s *DescribeCustomerGatewaysOutput) SetCustomerGateways(v []*CustomerGateway) *DescribeCustomerGatewaysOutput
    func (s DescribeCustomerGatewaysOutput) String() string
type DescribeDhcpOptionsInput
    func (s DescribeDhcpOptionsInput) GoString() string
    func (s *DescribeDhcpOptionsInput) SetDhcpOptionsIds(v []*string) *DescribeDhcpOptionsInput
    func (s *DescribeDhcpOptionsInput) SetDryRun(v bool) *DescribeDhcpOptionsInput
    func (s *DescribeDhcpOptionsInput) SetFilters(v []*Filter) *DescribeDhcpOptionsInput
    func (s DescribeDhcpOptionsInput) String() string
type DescribeDhcpOptionsOutput
    func (s DescribeDhcpOptionsOutput) GoString() string
    func (s *DescribeDhcpOptionsOutput) SetDhcpOptions(v []*DhcpOptions) *DescribeDhcpOptionsOutput
    func (s DescribeDhcpOptionsOutput) String() string
type DescribeEgressOnlyInternetGatewaysInput
    func (s DescribeEgressOnlyInternetGatewaysInput) GoString() string
    func (s *DescribeEgressOnlyInternetGatewaysInput) SetDryRun(v bool) *DescribeEgressOnlyInternetGatewaysInput
    func (s *DescribeEgressOnlyInternetGatewaysInput) SetEgressOnlyInternetGatewayIds(v []*string) *DescribeEgressOnlyInternetGatewaysInput
    func (s *DescribeEgressOnlyInternetGatewaysInput) SetMaxResults(v int64) *DescribeEgressOnlyInternetGatewaysInput
    func (s *DescribeEgressOnlyInternetGatewaysInput) SetNextToken(v string) *DescribeEgressOnlyInternetGatewaysInput
    func (s DescribeEgressOnlyInternetGatewaysInput) String() string
type DescribeEgressOnlyInternetGatewaysOutput
    func (s DescribeEgressOnlyInternetGatewaysOutput) GoString() string
    func (s *DescribeEgressOnlyInternetGatewaysOutput) SetEgressOnlyInternetGateways(v []*EgressOnlyInternetGateway) *DescribeEgressOnlyInternetGatewaysOutput
    func (s *DescribeEgressOnlyInternetGatewaysOutput) SetNextToken(v string) *DescribeEgressOnlyInternetGatewaysOutput
    func (s DescribeEgressOnlyInternetGatewaysOutput) String() string
type DescribeExportTasksInput
    func (s DescribeExportTasksInput) GoString() string
    func (s *DescribeExportTasksInput) SetExportTaskIds(v []*string) *DescribeExportTasksInput
    func (s DescribeExportTasksInput) String() string
type DescribeExportTasksOutput
    func (s DescribeExportTasksOutput) GoString() string
    func (s *DescribeExportTasksOutput) SetExportTasks(v []*ExportTask) *DescribeExportTasksOutput
    func (s DescribeExportTasksOutput) String() string
type DescribeFlowLogsInput
    func (s DescribeFlowLogsInput) GoString() string
    func (s *DescribeFlowLogsInput) SetFilter(v []*Filter) *DescribeFlowLogsInput
    func (s *DescribeFlowLogsInput) SetFlowLogIds(v []*string) *DescribeFlowLogsInput
    func (s *DescribeFlowLogsInput) SetMaxResults(v int64) *DescribeFlowLogsInput
    func (s *DescribeFlowLogsInput) SetNextToken(v string) *DescribeFlowLogsInput
    func (s DescribeFlowLogsInput) String() string
type DescribeFlowLogsOutput
    func (s DescribeFlowLogsOutput) GoString() string
    func (s *DescribeFlowLogsOutput) SetFlowLogs(v []*FlowLog) *DescribeFlowLogsOutput
    func (s *DescribeFlowLogsOutput) SetNextToken(v string) *DescribeFlowLogsOutput
    func (s DescribeFlowLogsOutput) String() string
type DescribeFpgaImagesInput
    func (s DescribeFpgaImagesInput) GoString() string
    func (s *DescribeFpgaImagesInput) SetDryRun(v bool) *DescribeFpgaImagesInput
    func (s *DescribeFpgaImagesInput) SetFilters(v []*Filter) *DescribeFpgaImagesInput
    func (s *DescribeFpgaImagesInput) SetFpgaImageIds(v []*string) *DescribeFpgaImagesInput
    func (s *DescribeFpgaImagesInput) SetMaxResults(v int64) *DescribeFpgaImagesInput
    func (s *DescribeFpgaImagesInput) SetNextToken(v string) *DescribeFpgaImagesInput
    func (s *DescribeFpgaImagesInput) SetOwners(v []*string) *DescribeFpgaImagesInput
    func (s DescribeFpgaImagesInput) String() string
    func (s *DescribeFpgaImagesInput) Validate() error
type DescribeFpgaImagesOutput
    func (s DescribeFpgaImagesOutput) GoString() string
    func (s *DescribeFpgaImagesOutput) SetFpgaImages(v []*FpgaImage) *DescribeFpgaImagesOutput
    func (s *DescribeFpgaImagesOutput) SetNextToken(v string) *DescribeFpgaImagesOutput
    func (s DescribeFpgaImagesOutput) String() string
type DescribeHostReservationOfferingsInput
    func (s DescribeHostReservationOfferingsInput) GoString() string
    func (s *DescribeHostReservationOfferingsInput) SetFilter(v []*Filter) *DescribeHostReservationOfferingsInput
    func (s *DescribeHostReservationOfferingsInput) SetMaxDuration(v int64) *DescribeHostReservationOfferingsInput
    func (s *DescribeHostReservationOfferingsInput) SetMaxResults(v int64) *DescribeHostReservationOfferingsInput
    func (s *DescribeHostReservationOfferingsInput) SetMinDuration(v int64) *DescribeHostReservationOfferingsInput
    func (s *DescribeHostReservationOfferingsInput) SetNextToken(v string) *DescribeHostReservationOfferingsInput
    func (s *DescribeHostReservationOfferingsInput) SetOfferingId(v string) *DescribeHostReservationOfferingsInput
    func (s DescribeHostReservationOfferingsInput) String() string
type DescribeHostReservationOfferingsOutput
    func (s DescribeHostReservationOfferingsOutput) GoString() string
    func (s *DescribeHostReservationOfferingsOutput) SetNextToken(v string) *DescribeHostReservationOfferingsOutput
    func (s *DescribeHostReservationOfferingsOutput) SetOfferingSet(v []*HostOffering) *DescribeHostReservationOfferingsOutput
    func (s DescribeHostReservationOfferingsOutput) String() string
type DescribeHostReservationsInput
    func (s DescribeHostReservationsInput) GoString() string
    func (s *DescribeHostReservationsInput) SetFilter(v []*Filter) *DescribeHostReservationsInput
    func (s *DescribeHostReservationsInput) SetHostReservationIdSet(v []*string) *DescribeHostReservationsInput
    func (s *DescribeHostReservationsInput) SetMaxResults(v int64) *DescribeHostReservationsInput
    func (s *DescribeHostReservationsInput) SetNextToken(v string) *DescribeHostReservationsInput
    func (s DescribeHostReservationsInput) String() string
type DescribeHostReservationsOutput
    func (s DescribeHostReservationsOutput) GoString() string
    func (s *DescribeHostReservationsOutput) SetHostReservationSet(v []*HostReservation) *DescribeHostReservationsOutput
    func (s *DescribeHostReservationsOutput) SetNextToken(v string) *DescribeHostReservationsOutput
    func (s DescribeHostReservationsOutput) String() string
type DescribeHostsInput
    func (s DescribeHostsInput) GoString() string
    func (s *DescribeHostsInput) SetFilter(v []*Filter) *DescribeHostsInput
    func (s *DescribeHostsInput) SetHostIds(v []*string) *DescribeHostsInput
    func (s *DescribeHostsInput) SetMaxResults(v int64) *DescribeHostsInput
    func (s *DescribeHostsInput) SetNextToken(v string) *DescribeHostsInput
    func (s DescribeHostsInput) String() string
type DescribeHostsOutput
    func (s DescribeHostsOutput) GoString() string
    func (s *DescribeHostsOutput) SetHosts(v []*Host) *DescribeHostsOutput
    func (s *DescribeHostsOutput) SetNextToken(v string) *DescribeHostsOutput
    func (s DescribeHostsOutput) String() string
type DescribeIamInstanceProfileAssociationsInput
    func (s DescribeIamInstanceProfileAssociationsInput) GoString() string
    func (s *DescribeIamInstanceProfileAssociationsInput) SetAssociationIds(v []*string) *DescribeIamInstanceProfileAssociationsInput
    func (s *DescribeIamInstanceProfileAssociationsInput) SetFilters(v []*Filter) *DescribeIamInstanceProfileAssociationsInput
    func (s *DescribeIamInstanceProfileAssociationsInput) SetMaxResults(v int64) *DescribeIamInstanceProfileAssociationsInput
    func (s *DescribeIamInstanceProfileAssociationsInput) SetNextToken(v string) *DescribeIamInstanceProfileAssociationsInput
    func (s DescribeIamInstanceProfileAssociationsInput) String() string
    func (s *DescribeIamInstanceProfileAssociationsInput) Validate() error
type DescribeIamInstanceProfileAssociationsOutput
    func (s DescribeIamInstanceProfileAssociationsOutput) GoString() string
    func (s *DescribeIamInstanceProfileAssociationsOutput) SetIamInstanceProfileAssociations(v []*IamInstanceProfileAssociation) *DescribeIamInstanceProfileAssociationsOutput
    func (s *DescribeIamInstanceProfileAssociationsOutput) SetNextToken(v string) *DescribeIamInstanceProfileAssociationsOutput
    func (s DescribeIamInstanceProfileAssociationsOutput) String() string
type DescribeIdFormatInput
    func (s DescribeIdFormatInput) GoString() string
    func (s *DescribeIdFormatInput) SetResource(v string) *DescribeIdFormatInput
    func (s DescribeIdFormatInput) String() string
type DescribeIdFormatOutput
    func (s DescribeIdFormatOutput) GoString() string
    func (s *DescribeIdFormatOutput) SetStatuses(v []*IdFormat) *DescribeIdFormatOutput
    func (s DescribeIdFormatOutput) String() string
type DescribeIdentityIdFormatInput
    func (s DescribeIdentityIdFormatInput) GoString() string
    func (s *DescribeIdentityIdFormatInput) SetPrincipalArn(v string) *DescribeIdentityIdFormatInput
    func (s *DescribeIdentityIdFormatInput) SetResource(v string) *DescribeIdentityIdFormatInput
    func (s DescribeIdentityIdFormatInput) String() string
    func (s *DescribeIdentityIdFormatInput) Validate() error
type DescribeIdentityIdFormatOutput
    func (s DescribeIdentityIdFormatOutput) GoString() string
    func (s *DescribeIdentityIdFormatOutput) SetStatuses(v []*IdFormat) *DescribeIdentityIdFormatOutput
    func (s DescribeIdentityIdFormatOutput) String() string
type DescribeImageAttributeInput
    func (s DescribeImageAttributeInput) GoString() string
    func (s *DescribeImageAttributeInput) SetAttribute(v string) *DescribeImageAttributeInput
    func (s *DescribeImageAttributeInput) SetDryRun(v bool) *DescribeImageAttributeInput
    func (s *DescribeImageAttributeInput) SetImageId(v string) *DescribeImageAttributeInput
    func (s DescribeImageAttributeInput) String() string
    func (s *DescribeImageAttributeInput) Validate() error
type DescribeImageAttributeOutput
    func (s DescribeImageAttributeOutput) GoString() string
    func (s *DescribeImageAttributeOutput) SetBlockDeviceMappings(v []*BlockDeviceMapping) *DescribeImageAttributeOutput
    func (s *DescribeImageAttributeOutput) SetDescription(v *AttributeValue) *DescribeImageAttributeOutput
    func (s *DescribeImageAttributeOutput) SetImageId(v string) *DescribeImageAttributeOutput
    func (s *DescribeImageAttributeOutput) SetKernelId(v *AttributeValue) *DescribeImageAttributeOutput
    func (s *DescribeImageAttributeOutput) SetLaunchPermissions(v []*LaunchPermission) *DescribeImageAttributeOutput
    func (s *DescribeImageAttributeOutput) SetProductCodes(v []*ProductCode) *DescribeImageAttributeOutput
    func (s *DescribeImageAttributeOutput) SetRamdiskId(v *AttributeValue) *DescribeImageAttributeOutput
    func (s *DescribeImageAttributeOutput) SetSriovNetSupport(v *AttributeValue) *DescribeImageAttributeOutput
    func (s DescribeImageAttributeOutput) String() string
type DescribeImagesInput
    func (s DescribeImagesInput) GoString() string
    func (s *DescribeImagesInput) SetDryRun(v bool) *DescribeImagesInput
    func (s *DescribeImagesInput) SetExecutableUsers(v []*string) *DescribeImagesInput
    func (s *DescribeImagesInput) SetFilters(v []*Filter) *DescribeImagesInput
    func (s *DescribeImagesInput) SetImageIds(v []*string) *DescribeImagesInput
    func (s *DescribeImagesInput) SetOwners(v []*string) *DescribeImagesInput
    func (s DescribeImagesInput) String() string
type DescribeImagesOutput
    func (s DescribeImagesOutput) GoString() string
    func (s *DescribeImagesOutput) SetImages(v []*Image) *DescribeImagesOutput
    func (s DescribeImagesOutput) String() string
type DescribeImportImageTasksInput
    func (s DescribeImportImageTasksInput) GoString() string
    func (s *DescribeImportImageTasksInput) SetDryRun(v bool) *DescribeImportImageTasksInput
    func (s *DescribeImportImageTasksInput) SetFilters(v []*Filter) *DescribeImportImageTasksInput
    func (s *DescribeImportImageTasksInput) SetImportTaskIds(v []*string) *DescribeImportImageTasksInput
    func (s *DescribeImportImageTasksInput) SetMaxResults(v int64) *DescribeImportImageTasksInput
    func (s *DescribeImportImageTasksInput) SetNextToken(v string) *DescribeImportImageTasksInput
    func (s DescribeImportImageTasksInput) String() string
type DescribeImportImageTasksOutput
    func (s DescribeImportImageTasksOutput) GoString() string
    func (s *DescribeImportImageTasksOutput) SetImportImageTasks(v []*ImportImageTask) *DescribeImportImageTasksOutput
    func (s *DescribeImportImageTasksOutput) SetNextToken(v string) *DescribeImportImageTasksOutput
    func (s DescribeImportImageTasksOutput) String() string
type DescribeImportSnapshotTasksInput
    func (s DescribeImportSnapshotTasksInput) GoString() string
    func (s *DescribeImportSnapshotTasksInput) SetDryRun(v bool) *DescribeImportSnapshotTasksInput
    func (s *DescribeImportSnapshotTasksInput) SetFilters(v []*Filter) *DescribeImportSnapshotTasksInput
    func (s *DescribeImportSnapshotTasksInput) SetImportTaskIds(v []*string) *DescribeImportSnapshotTasksInput
    func (s *DescribeImportSnapshotTasksInput) SetMaxResults(v int64) *DescribeImportSnapshotTasksInput
    func (s *DescribeImportSnapshotTasksInput) SetNextToken(v string) *DescribeImportSnapshotTasksInput
    func (s DescribeImportSnapshotTasksInput) String() string
type DescribeImportSnapshotTasksOutput
    func (s DescribeImportSnapshotTasksOutput) GoString() string
    func (s *DescribeImportSnapshotTasksOutput) SetImportSnapshotTasks(v []*ImportSnapshotTask) *DescribeImportSnapshotTasksOutput
    func (s *DescribeImportSnapshotTasksOutput) SetNextToken(v string) *DescribeImportSnapshotTasksOutput
    func (s DescribeImportSnapshotTasksOutput) String() string
type DescribeInstanceAttributeInput
    func (s DescribeInstanceAttributeInput) GoString() string
    func (s *DescribeInstanceAttributeInput) SetAttribute(v string) *DescribeInstanceAttributeInput
    func (s *DescribeInstanceAttributeInput) SetDryRun(v bool) *DescribeInstanceAttributeInput
    func (s *DescribeInstanceAttributeInput) SetInstanceId(v string) *DescribeInstanceAttributeInput
    func (s DescribeInstanceAttributeInput) String() string
    func (s *DescribeInstanceAttributeInput) Validate() error
type DescribeInstanceAttributeOutput
    func (s DescribeInstanceAttributeOutput) GoString() string
    func (s *DescribeInstanceAttributeOutput) SetBlockDeviceMappings(v []*InstanceBlockDeviceMapping) *DescribeInstanceAttributeOutput
    func (s *DescribeInstanceAttributeOutput) SetDisableApiTermination(v *AttributeBooleanValue) *DescribeInstanceAttributeOutput
    func (s *DescribeInstanceAttributeOutput) SetEbsOptimized(v *AttributeBooleanValue) *DescribeInstanceAttributeOutput
    func (s *DescribeInstanceAttributeOutput) SetEnaSupport(v *AttributeBooleanValue) *DescribeInstanceAttributeOutput
    func (s *DescribeInstanceAttributeOutput) SetGroups(v []*GroupIdentifier) *DescribeInstanceAttributeOutput
    func (s *DescribeInstanceAttributeOutput) SetInstanceId(v string) *DescribeInstanceAttributeOutput
    func (s *DescribeInstanceAttributeOutput) SetInstanceInitiatedShutdownBehavior(v *AttributeValue) *DescribeInstanceAttributeOutput
    func (s *DescribeInstanceAttributeOutput) SetInstanceType(v *AttributeValue) *DescribeInstanceAttributeOutput
    func (s *DescribeInstanceAttributeOutput) SetKernelId(v *AttributeValue) *DescribeInstanceAttributeOutput
    func (s *DescribeInstanceAttributeOutput) SetProductCodes(v []*ProductCode) *DescribeInstanceAttributeOutput
    func (s *DescribeInstanceAttributeOutput) SetRamdiskId(v *AttributeValue) *DescribeInstanceAttributeOutput
    func (s *DescribeInstanceAttributeOutput) SetRootDeviceName(v *AttributeValue) *DescribeInstanceAttributeOutput
    func (s *DescribeInstanceAttributeOutput) SetSourceDestCheck(v *AttributeBooleanValue) *DescribeInstanceAttributeOutput
    func (s *DescribeInstanceAttributeOutput) SetSriovNetSupport(v *AttributeValue) *DescribeInstanceAttributeOutput
    func (s *DescribeInstanceAttributeOutput) SetUserData(v *AttributeValue) *DescribeInstanceAttributeOutput
    func (s DescribeInstanceAttributeOutput) String() string
type DescribeInstanceStatusInput
    func (s DescribeInstanceStatusInput) GoString() string
    func (s *DescribeInstanceStatusInput) SetDryRun(v bool) *DescribeInstanceStatusInput
    func (s *DescribeInstanceStatusInput) SetFilters(v []*Filter) *DescribeInstanceStatusInput
    func (s *DescribeInstanceStatusInput) SetIncludeAllInstances(v bool) *DescribeInstanceStatusInput
    func (s *DescribeInstanceStatusInput) SetInstanceIds(v []*string) *DescribeInstanceStatusInput
    func (s *DescribeInstanceStatusInput) SetMaxResults(v int64) *DescribeInstanceStatusInput
    func (s *DescribeInstanceStatusInput) SetNextToken(v string) *DescribeInstanceStatusInput
    func (s DescribeInstanceStatusInput) String() string
type DescribeInstanceStatusOutput
    func (s DescribeInstanceStatusOutput) GoString() string
    func (s *DescribeInstanceStatusOutput) SetInstanceStatuses(v []*InstanceStatus) *DescribeInstanceStatusOutput
    func (s *DescribeInstanceStatusOutput) SetNextToken(v string) *DescribeInstanceStatusOutput
    func (s DescribeInstanceStatusOutput) String() string
type DescribeInstancesInput
    func (s DescribeInstancesInput) GoString() string
    func (s *DescribeInstancesInput) SetDryRun(v bool) *DescribeInstancesInput
    func (s *DescribeInstancesInput) SetFilters(v []*Filter) *DescribeInstancesInput
    func (s *DescribeInstancesInput) SetInstanceIds(v []*string) *DescribeInstancesInput
    func (s *DescribeInstancesInput) SetMaxResults(v int64) *DescribeInstancesInput
    func (s *DescribeInstancesInput) SetNextToken(v string) *DescribeInstancesInput
    func (s DescribeInstancesInput) String() string
type DescribeInstancesOutput
    func (s DescribeInstancesOutput) GoString() string
    func (s *DescribeInstancesOutput) SetNextToken(v string) *DescribeInstancesOutput
    func (s *DescribeInstancesOutput) SetReservations(v []*Reservation) *DescribeInstancesOutput
    func (s DescribeInstancesOutput) String() string
type DescribeInternetGatewaysInput
    func (s DescribeInternetGatewaysInput) GoString() string
    func (s *DescribeInternetGatewaysInput) SetDryRun(v bool) *DescribeInternetGatewaysInput
    func (s *DescribeInternetGatewaysInput) SetFilters(v []*Filter) *DescribeInternetGatewaysInput
    func (s *DescribeInternetGatewaysInput) SetInternetGatewayIds(v []*string) *DescribeInternetGatewaysInput
    func (s DescribeInternetGatewaysInput) String() string
type DescribeInternetGatewaysOutput
    func (s DescribeInternetGatewaysOutput) GoString() string
    func (s *DescribeInternetGatewaysOutput) SetInternetGateways(v []*InternetGateway) *DescribeInternetGatewaysOutput
    func (s DescribeInternetGatewaysOutput) String() string
type DescribeKeyPairsInput
    func (s DescribeKeyPairsInput) GoString() string
    func (s *DescribeKeyPairsInput) SetDryRun(v bool) *DescribeKeyPairsInput
    func (s *DescribeKeyPairsInput) SetFilters(v []*Filter) *DescribeKeyPairsInput
    func (s *DescribeKeyPairsInput) SetKeyNames(v []*string) *DescribeKeyPairsInput
    func (s DescribeKeyPairsInput) String() string
type DescribeKeyPairsOutput
    func (s DescribeKeyPairsOutput) GoString() string
    func (s *DescribeKeyPairsOutput) SetKeyPairs(v []*KeyPairInfo) *DescribeKeyPairsOutput
    func (s DescribeKeyPairsOutput) String() string
type DescribeMovingAddressesInput
    func (s DescribeMovingAddressesInput) GoString() string
    func (s *DescribeMovingAddressesInput) SetDryRun(v bool) *DescribeMovingAddressesInput
    func (s *DescribeMovingAddressesInput) SetFilters(v []*Filter) *DescribeMovingAddressesInput
    func (s *DescribeMovingAddressesInput) SetMaxResults(v int64) *DescribeMovingAddressesInput
    func (s *DescribeMovingAddressesInput) SetNextToken(v string) *DescribeMovingAddressesInput
    func (s *DescribeMovingAddressesInput) SetPublicIps(v []*string) *DescribeMovingAddressesInput
    func (s DescribeMovingAddressesInput) String() string
type DescribeMovingAddressesOutput
    func (s DescribeMovingAddressesOutput) GoString() string
    func (s *DescribeMovingAddressesOutput) SetMovingAddressStatuses(v []*MovingAddressStatus) *DescribeMovingAddressesOutput
    func (s *DescribeMovingAddressesOutput) SetNextToken(v string) *DescribeMovingAddressesOutput
    func (s DescribeMovingAddressesOutput) String() string
type DescribeNatGatewaysInput
    func (s DescribeNatGatewaysInput) GoString() string
    func (s *DescribeNatGatewaysInput) SetFilter(v []*Filter) *DescribeNatGatewaysInput
    func (s *DescribeNatGatewaysInput) SetMaxResults(v int64) *DescribeNatGatewaysInput
    func (s *DescribeNatGatewaysInput) SetNatGatewayIds(v []*string) *DescribeNatGatewaysInput
    func (s *DescribeNatGatewaysInput) SetNextToken(v string) *DescribeNatGatewaysInput
    func (s DescribeNatGatewaysInput) String() string
type DescribeNatGatewaysOutput
    func (s DescribeNatGatewaysOutput) GoString() string
    func (s *DescribeNatGatewaysOutput) SetNatGateways(v []*NatGateway) *DescribeNatGatewaysOutput
    func (s *DescribeNatGatewaysOutput) SetNextToken(v string) *DescribeNatGatewaysOutput
    func (s DescribeNatGatewaysOutput) String() string
type DescribeNetworkAclsInput
    func (s DescribeNetworkAclsInput) GoString() string
    func (s *DescribeNetworkAclsInput) SetDryRun(v bool) *DescribeNetworkAclsInput
    func (s *DescribeNetworkAclsInput) SetFilters(v []*Filter) *DescribeNetworkAclsInput
    func (s *DescribeNetworkAclsInput) SetNetworkAclIds(v []*string) *DescribeNetworkAclsInput
    func (s DescribeNetworkAclsInput) String() string
type DescribeNetworkAclsOutput
    func (s DescribeNetworkAclsOutput) GoString() string
    func (s *DescribeNetworkAclsOutput) SetNetworkAcls(v []*NetworkAcl) *DescribeNetworkAclsOutput
    func (s DescribeNetworkAclsOutput) String() string
type DescribeNetworkInterfaceAttributeInput
    func (s DescribeNetworkInterfaceAttributeInput) GoString() string
    func (s *DescribeNetworkInterfaceAttributeInput) SetAttribute(v string) *DescribeNetworkInterfaceAttributeInput
    func (s *DescribeNetworkInterfaceAttributeInput) SetDryRun(v bool) *DescribeNetworkInterfaceAttributeInput
    func (s *DescribeNetworkInterfaceAttributeInput) SetNetworkInterfaceId(v string) *DescribeNetworkInterfaceAttributeInput
    func (s DescribeNetworkInterfaceAttributeInput) String() string
    func (s *DescribeNetworkInterfaceAttributeInput) Validate() error
type DescribeNetworkInterfaceAttributeOutput
    func (s DescribeNetworkInterfaceAttributeOutput) GoString() string
    func (s *DescribeNetworkInterfaceAttributeOutput) SetAttachment(v *NetworkInterfaceAttachment) *DescribeNetworkInterfaceAttributeOutput
    func (s *DescribeNetworkInterfaceAttributeOutput) SetDescription(v *AttributeValue) *DescribeNetworkInterfaceAttributeOutput
    func (s *DescribeNetworkInterfaceAttributeOutput) SetGroups(v []*GroupIdentifier) *DescribeNetworkInterfaceAttributeOutput
    func (s *DescribeNetworkInterfaceAttributeOutput) SetNetworkInterfaceId(v string) *DescribeNetworkInterfaceAttributeOutput
    func (s *DescribeNetworkInterfaceAttributeOutput) SetSourceDestCheck(v *AttributeBooleanValue) *DescribeNetworkInterfaceAttributeOutput
    func (s DescribeNetworkInterfaceAttributeOutput) String() string
type DescribeNetworkInterfacesInput
    func (s DescribeNetworkInterfacesInput) GoString() string
    func (s *DescribeNetworkInterfacesInput) SetDryRun(v bool) *DescribeNetworkInterfacesInput
    func (s *DescribeNetworkInterfacesInput) SetFilters(v []*Filter) *DescribeNetworkInterfacesInput
    func (s *DescribeNetworkInterfacesInput) SetNetworkInterfaceIds(v []*string) *DescribeNetworkInterfacesInput
    func (s DescribeNetworkInterfacesInput) String() string
type DescribeNetworkInterfacesOutput
    func (s DescribeNetworkInterfacesOutput) GoString() string
    func (s *DescribeNetworkInterfacesOutput) SetNetworkInterfaces(v []*NetworkInterface) *DescribeNetworkInterfacesOutput
    func (s DescribeNetworkInterfacesOutput) String() string
type DescribePlacementGroupsInput
    func (s DescribePlacementGroupsInput) GoString() string
    func (s *DescribePlacementGroupsInput) SetDryRun(v bool) *DescribePlacementGroupsInput
    func (s *DescribePlacementGroupsInput) SetFilters(v []*Filter) *DescribePlacementGroupsInput
    func (s *DescribePlacementGroupsInput) SetGroupNames(v []*string) *DescribePlacementGroupsInput
    func (s DescribePlacementGroupsInput) String() string
type DescribePlacementGroupsOutput
    func (s DescribePlacementGroupsOutput) GoString() string
    func (s *DescribePlacementGroupsOutput) SetPlacementGroups(v []*PlacementGroup) *DescribePlacementGroupsOutput
    func (s DescribePlacementGroupsOutput) String() string
type DescribePrefixListsInput
    func (s DescribePrefixListsInput) GoString() string
    func (s *DescribePrefixListsInput) SetDryRun(v bool) *DescribePrefixListsInput
    func (s *DescribePrefixListsInput) SetFilters(v []*Filter) *DescribePrefixListsInput
    func (s *DescribePrefixListsInput) SetMaxResults(v int64) *DescribePrefixListsInput
    func (s *DescribePrefixListsInput) SetNextToken(v string) *DescribePrefixListsInput
    func (s *DescribePrefixListsInput) SetPrefixListIds(v []*string) *DescribePrefixListsInput
    func (s DescribePrefixListsInput) String() string
type DescribePrefixListsOutput
    func (s DescribePrefixListsOutput) GoString() string
    func (s *DescribePrefixListsOutput) SetNextToken(v string) *DescribePrefixListsOutput
    func (s *DescribePrefixListsOutput) SetPrefixLists(v []*PrefixList) *DescribePrefixListsOutput
    func (s DescribePrefixListsOutput) String() string
type DescribeRegionsInput
    func (s DescribeRegionsInput) GoString() string
    func (s *DescribeRegionsInput) SetDryRun(v bool) *DescribeRegionsInput
    func (s *DescribeRegionsInput) SetFilters(v []*Filter) *DescribeRegionsInput
    func (s *DescribeRegionsInput) SetRegionNames(v []*string) *DescribeRegionsInput
    func (s DescribeRegionsInput) String() string
type DescribeRegionsOutput
    func (s DescribeRegionsOutput) GoString() string
    func (s *DescribeRegionsOutput) SetRegions(v []*Region) *DescribeRegionsOutput
    func (s DescribeRegionsOutput) String() string
type DescribeReservedInstancesInput
    func (s DescribeReservedInstancesInput) GoString() string
    func (s *DescribeReservedInstancesInput) SetDryRun(v bool) *DescribeReservedInstancesInput
    func (s *DescribeReservedInstancesInput) SetFilters(v []*Filter) *DescribeReservedInstancesInput
    func (s *DescribeReservedInstancesInput) SetOfferingClass(v string) *DescribeReservedInstancesInput
    func (s *DescribeReservedInstancesInput) SetOfferingType(v string) *DescribeReservedInstancesInput
    func (s *DescribeReservedInstancesInput) SetReservedInstancesIds(v []*string) *DescribeReservedInstancesInput
    func (s DescribeReservedInstancesInput) String() string
type DescribeReservedInstancesListingsInput
    func (s DescribeReservedInstancesListingsInput) GoString() string
    func (s *DescribeReservedInstancesListingsInput) SetFilters(v []*Filter) *DescribeReservedInstancesListingsInput
    func (s *DescribeReservedInstancesListingsInput) SetReservedInstancesId(v string) *DescribeReservedInstancesListingsInput
    func (s *DescribeReservedInstancesListingsInput) SetReservedInstancesListingId(v string) *DescribeReservedInstancesListingsInput
    func (s DescribeReservedInstancesListingsInput) String() string
type DescribeReservedInstancesListingsOutput
    func (s DescribeReservedInstancesListingsOutput) GoString() string
    func (s *DescribeReservedInstancesListingsOutput) SetReservedInstancesListings(v []*ReservedInstancesListing) *DescribeReservedInstancesListingsOutput
    func (s DescribeReservedInstancesListingsOutput) String() string
type DescribeReservedInstancesModificationsInput
    func (s DescribeReservedInstancesModificationsInput) GoString() string
    func (s *DescribeReservedInstancesModificationsInput) SetFilters(v []*Filter) *DescribeReservedInstancesModificationsInput
    func (s *DescribeReservedInstancesModificationsInput) SetNextToken(v string) *DescribeReservedInstancesModificationsInput
    func (s *DescribeReservedInstancesModificationsInput) SetReservedInstancesModificationIds(v []*string) *DescribeReservedInstancesModificationsInput
    func (s DescribeReservedInstancesModificationsInput) String() string
type DescribeReservedInstancesModificationsOutput
    func (s DescribeReservedInstancesModificationsOutput) GoString() string
    func (s *DescribeReservedInstancesModificationsOutput) SetNextToken(v string) *DescribeReservedInstancesModificationsOutput
    func (s *DescribeReservedInstancesModificationsOutput) SetReservedInstancesModifications(v []*ReservedInstancesModification) *DescribeReservedInstancesModificationsOutput
    func (s DescribeReservedInstancesModificationsOutput) String() string
type DescribeReservedInstancesOfferingsInput
    func (s DescribeReservedInstancesOfferingsInput) GoString() string
    func (s *DescribeReservedInstancesOfferingsInput) SetAvailabilityZone(v string) *DescribeReservedInstancesOfferingsInput
    func (s *DescribeReservedInstancesOfferingsInput) SetDryRun(v bool) *DescribeReservedInstancesOfferingsInput
    func (s *DescribeReservedInstancesOfferingsInput) SetFilters(v []*Filter) *DescribeReservedInstancesOfferingsInput
    func (s *DescribeReservedInstancesOfferingsInput) SetIncludeMarketplace(v bool) *DescribeReservedInstancesOfferingsInput
    func (s *DescribeReservedInstancesOfferingsInput) SetInstanceTenancy(v string) *DescribeReservedInstancesOfferingsInput
    func (s *DescribeReservedInstancesOfferingsInput) SetInstanceType(v string) *DescribeReservedInstancesOfferingsInput
    func (s *DescribeReservedInstancesOfferingsInput) SetMaxDuration(v int64) *DescribeReservedInstancesOfferingsInput
    func (s *DescribeReservedInstancesOfferingsInput) SetMaxInstanceCount(v int64) *DescribeReservedInstancesOfferingsInput
    func (s *DescribeReservedInstancesOfferingsInput) SetMaxResults(v int64) *DescribeReservedInstancesOfferingsInput
    func (s *DescribeReservedInstancesOfferingsInput) SetMinDuration(v int64) *DescribeReservedInstancesOfferingsInput
    func (s *DescribeReservedInstancesOfferingsInput) SetNextToken(v string) *DescribeReservedInstancesOfferingsInput
    func (s *DescribeReservedInstancesOfferingsInput) SetOfferingClass(v string) *DescribeReservedInstancesOfferingsInput
    func (s *DescribeReservedInstancesOfferingsInput) SetOfferingType(v string) *DescribeReservedInstancesOfferingsInput
    func (s *DescribeReservedInstancesOfferingsInput) SetProductDescription(v string) *DescribeReservedInstancesOfferingsInput
    func (s *DescribeReservedInstancesOfferingsInput) SetReservedInstancesOfferingIds(v []*string) *DescribeReservedInstancesOfferingsInput
    func (s DescribeReservedInstancesOfferingsInput) String() string
type DescribeReservedInstancesOfferingsOutput
    func (s DescribeReservedInstancesOfferingsOutput) GoString() string
    func (s *DescribeReservedInstancesOfferingsOutput) SetNextToken(v string) *DescribeReservedInstancesOfferingsOutput
    func (s *DescribeReservedInstancesOfferingsOutput) SetReservedInstancesOfferings(v []*ReservedInstancesOffering) *DescribeReservedInstancesOfferingsOutput
    func (s DescribeReservedInstancesOfferingsOutput) String() string
type DescribeReservedInstancesOutput
    func (s DescribeReservedInstancesOutput) GoString() string
    func (s *DescribeReservedInstancesOutput) SetReservedInstances(v []*ReservedInstances) *DescribeReservedInstancesOutput
    func (s DescribeReservedInstancesOutput) String() string
type DescribeRouteTablesInput
    func (s DescribeRouteTablesInput) GoString() string
    func (s *DescribeRouteTablesInput) SetDryRun(v bool) *DescribeRouteTablesInput
    func (s *DescribeRouteTablesInput) SetFilters(v []*Filter) *DescribeRouteTablesInput
    func (s *DescribeRouteTablesInput) SetRouteTableIds(v []*string) *DescribeRouteTablesInput
    func (s DescribeRouteTablesInput) String() string
type DescribeRouteTablesOutput
    func (s DescribeRouteTablesOutput) GoString() string
    func (s *DescribeRouteTablesOutput) SetRouteTables(v []*RouteTable) *DescribeRouteTablesOutput
    func (s DescribeRouteTablesOutput) String() string
type DescribeScheduledInstanceAvailabilityInput
    func (s DescribeScheduledInstanceAvailabilityInput) GoString() string
    func (s *DescribeScheduledInstanceAvailabilityInput) SetDryRun(v bool) *DescribeScheduledInstanceAvailabilityInput
    func (s *DescribeScheduledInstanceAvailabilityInput) SetFilters(v []*Filter) *DescribeScheduledInstanceAvailabilityInput
    func (s *DescribeScheduledInstanceAvailabilityInput) SetFirstSlotStartTimeRange(v *SlotDateTimeRangeRequest) *DescribeScheduledInstanceAvailabilityInput
    func (s *DescribeScheduledInstanceAvailabilityInput) SetMaxResults(v int64) *DescribeScheduledInstanceAvailabilityInput
    func (s *DescribeScheduledInstanceAvailabilityInput) SetMaxSlotDurationInHours(v int64) *DescribeScheduledInstanceAvailabilityInput
    func (s *DescribeScheduledInstanceAvailabilityInput) SetMinSlotDurationInHours(v int64) *DescribeScheduledInstanceAvailabilityInput
    func (s *DescribeScheduledInstanceAvailabilityInput) SetNextToken(v string) *DescribeScheduledInstanceAvailabilityInput
    func (s *DescribeScheduledInstanceAvailabilityInput) SetRecurrence(v *ScheduledInstanceRecurrenceRequest) *DescribeScheduledInstanceAvailabilityInput
    func (s DescribeScheduledInstanceAvailabilityInput) String() string
    func (s *DescribeScheduledInstanceAvailabilityInput) Validate() error
type DescribeScheduledInstanceAvailabilityOutput
    func (s DescribeScheduledInstanceAvailabilityOutput) GoString() string
    func (s *DescribeScheduledInstanceAvailabilityOutput) SetNextToken(v string) *DescribeScheduledInstanceAvailabilityOutput
    func (s *DescribeScheduledInstanceAvailabilityOutput) SetScheduledInstanceAvailabilitySet(v []*ScheduledInstanceAvailability) *DescribeScheduledInstanceAvailabilityOutput
    func (s DescribeScheduledInstanceAvailabilityOutput) String() string
type DescribeScheduledInstancesInput
    func (s DescribeScheduledInstancesInput) GoString() string
    func (s *DescribeScheduledInstancesInput) SetDryRun(v bool) *DescribeScheduledInstancesInput
    func (s *DescribeScheduledInstancesInput) SetFilters(v []*Filter) *DescribeScheduledInstancesInput
    func (s *DescribeScheduledInstancesInput) SetMaxResults(v int64) *DescribeScheduledInstancesInput
    func (s *DescribeScheduledInstancesInput) SetNextToken(v string) *DescribeScheduledInstancesInput
    func (s *DescribeScheduledInstancesInput) SetScheduledInstanceIds(v []*string) *DescribeScheduledInstancesInput
    func (s *DescribeScheduledInstancesInput) SetSlotStartTimeRange(v *SlotStartTimeRangeRequest) *DescribeScheduledInstancesInput
    func (s DescribeScheduledInstancesInput) String() string
type DescribeScheduledInstancesOutput
    func (s DescribeScheduledInstancesOutput) GoString() string
    func (s *DescribeScheduledInstancesOutput) SetNextToken(v string) *DescribeScheduledInstancesOutput
    func (s *DescribeScheduledInstancesOutput) SetScheduledInstanceSet(v []*ScheduledInstance) *DescribeScheduledInstancesOutput
    func (s DescribeScheduledInstancesOutput) String() string
type DescribeSecurityGroupReferencesInput
    func (s DescribeSecurityGroupReferencesInput) GoString() string
    func (s *DescribeSecurityGroupReferencesInput) SetDryRun(v bool) *DescribeSecurityGroupReferencesInput
    func (s *DescribeSecurityGroupReferencesInput) SetGroupId(v []*string) *DescribeSecurityGroupReferencesInput
    func (s DescribeSecurityGroupReferencesInput) String() string
    func (s *DescribeSecurityGroupReferencesInput) Validate() error
type DescribeSecurityGroupReferencesOutput
    func (s DescribeSecurityGroupReferencesOutput) GoString() string
    func (s *DescribeSecurityGroupReferencesOutput) SetSecurityGroupReferenceSet(v []*SecurityGroupReference) *DescribeSecurityGroupReferencesOutput
    func (s DescribeSecurityGroupReferencesOutput) String() string
type DescribeSecurityGroupsInput
    func (s DescribeSecurityGroupsInput) GoString() string
    func (s *DescribeSecurityGroupsInput) SetDryRun(v bool) *DescribeSecurityGroupsInput
    func (s *DescribeSecurityGroupsInput) SetFilters(v []*Filter) *DescribeSecurityGroupsInput
    func (s *DescribeSecurityGroupsInput) SetGroupIds(v []*string) *DescribeSecurityGroupsInput
    func (s *DescribeSecurityGroupsInput) SetGroupNames(v []*string) *DescribeSecurityGroupsInput
    func (s DescribeSecurityGroupsInput) String() string
type DescribeSecurityGroupsOutput
    func (s DescribeSecurityGroupsOutput) GoString() string
    func (s *DescribeSecurityGroupsOutput) SetSecurityGroups(v []*SecurityGroup) *DescribeSecurityGroupsOutput
    func (s DescribeSecurityGroupsOutput) String() string
type DescribeSnapshotAttributeInput
    func (s DescribeSnapshotAttributeInput) GoString() string
    func (s *DescribeSnapshotAttributeInput) SetAttribute(v string) *DescribeSnapshotAttributeInput
    func (s *DescribeSnapshotAttributeInput) SetDryRun(v bool) *DescribeSnapshotAttributeInput
    func (s *DescribeSnapshotAttributeInput) SetSnapshotId(v string) *DescribeSnapshotAttributeInput
    func (s DescribeSnapshotAttributeInput) String() string
    func (s *DescribeSnapshotAttributeInput) Validate() error
type DescribeSnapshotAttributeOutput
    func (s DescribeSnapshotAttributeOutput) GoString() string
    func (s *DescribeSnapshotAttributeOutput) SetCreateVolumePermissions(v []*CreateVolumePermission) *DescribeSnapshotAttributeOutput
    func (s *DescribeSnapshotAttributeOutput) SetProductCodes(v []*ProductCode) *DescribeSnapshotAttributeOutput
    func (s *DescribeSnapshotAttributeOutput) SetSnapshotId(v string) *DescribeSnapshotAttributeOutput
    func (s DescribeSnapshotAttributeOutput) String() string
type DescribeSnapshotsInput
    func (s DescribeSnapshotsInput) GoString() string
    func (s *DescribeSnapshotsInput) SetDryRun(v bool) *DescribeSnapshotsInput
    func (s *DescribeSnapshotsInput) SetFilters(v []*Filter) *DescribeSnapshotsInput
    func (s *DescribeSnapshotsInput) SetMaxResults(v int64) *DescribeSnapshotsInput
    func (s *DescribeSnapshotsInput) SetNextToken(v string) *DescribeSnapshotsInput
    func (s *DescribeSnapshotsInput) SetOwnerIds(v []*string) *DescribeSnapshotsInput
    func (s *DescribeSnapshotsInput) SetRestorableByUserIds(v []*string) *DescribeSnapshotsInput
    func (s *DescribeSnapshotsInput) SetSnapshotIds(v []*string) *DescribeSnapshotsInput
    func (s DescribeSnapshotsInput) String() string
type DescribeSnapshotsOutput
    func (s DescribeSnapshotsOutput) GoString() string
    func (s *DescribeSnapshotsOutput) SetNextToken(v string) *DescribeSnapshotsOutput
    func (s *DescribeSnapshotsOutput) SetSnapshots(v []*Snapshot) *DescribeSnapshotsOutput
    func (s DescribeSnapshotsOutput) String() string
type DescribeSpotDatafeedSubscriptionInput
    func (s DescribeSpotDatafeedSubscriptionInput) GoString() string
    func (s *DescribeSpotDatafeedSubscriptionInput) SetDryRun(v bool) *DescribeSpotDatafeedSubscriptionInput
    func (s DescribeSpotDatafeedSubscriptionInput) String() string
type DescribeSpotDatafeedSubscriptionOutput
    func (s DescribeSpotDatafeedSubscriptionOutput) GoString() string
    func (s *DescribeSpotDatafeedSubscriptionOutput) SetSpotDatafeedSubscription(v *SpotDatafeedSubscription) *DescribeSpotDatafeedSubscriptionOutput
    func (s DescribeSpotDatafeedSubscriptionOutput) String() string
type DescribeSpotFleetInstancesInput
    func (s DescribeSpotFleetInstancesInput) GoString() string
    func (s *DescribeSpotFleetInstancesInput) SetDryRun(v bool) *DescribeSpotFleetInstancesInput
    func (s *DescribeSpotFleetInstancesInput) SetMaxResults(v int64) *DescribeSpotFleetInstancesInput
    func (s *DescribeSpotFleetInstancesInput) SetNextToken(v string) *DescribeSpotFleetInstancesInput
    func (s *DescribeSpotFleetInstancesInput) SetSpotFleetRequestId(v string) *DescribeSpotFleetInstancesInput
    func (s DescribeSpotFleetInstancesInput) String() string
    func (s *DescribeSpotFleetInstancesInput) Validate() error
type DescribeSpotFleetInstancesOutput
    func (s DescribeSpotFleetInstancesOutput) GoString() string
    func (s *DescribeSpotFleetInstancesOutput) SetActiveInstances(v []*ActiveInstance) *DescribeSpotFleetInstancesOutput
    func (s *DescribeSpotFleetInstancesOutput) SetNextToken(v string) *DescribeSpotFleetInstancesOutput
    func (s *DescribeSpotFleetInstancesOutput) SetSpotFleetRequestId(v string) *DescribeSpotFleetInstancesOutput
    func (s DescribeSpotFleetInstancesOutput) String() string
type DescribeSpotFleetRequestHistoryInput
    func (s DescribeSpotFleetRequestHistoryInput) GoString() string
    func (s *DescribeSpotFleetRequestHistoryInput) SetDryRun(v bool) *DescribeSpotFleetRequestHistoryInput
    func (s *DescribeSpotFleetRequestHistoryInput) SetEventType(v string) *DescribeSpotFleetRequestHistoryInput
    func (s *DescribeSpotFleetRequestHistoryInput) SetMaxResults(v int64) *DescribeSpotFleetRequestHistoryInput
    func (s *DescribeSpotFleetRequestHistoryInput) SetNextToken(v string) *DescribeSpotFleetRequestHistoryInput
    func (s *DescribeSpotFleetRequestHistoryInput) SetSpotFleetRequestId(v string) *DescribeSpotFleetRequestHistoryInput
    func (s *DescribeSpotFleetRequestHistoryInput) SetStartTime(v time.Time) *DescribeSpotFleetRequestHistoryInput
    func (s DescribeSpotFleetRequestHistoryInput) String() string
    func (s *DescribeSpotFleetRequestHistoryInput) Validate() error
type DescribeSpotFleetRequestHistoryOutput
    func (s DescribeSpotFleetRequestHistoryOutput) GoString() string
    func (s *DescribeSpotFleetRequestHistoryOutput) SetHistoryRecords(v []*HistoryRecord) *DescribeSpotFleetRequestHistoryOutput
    func (s *DescribeSpotFleetRequestHistoryOutput) SetLastEvaluatedTime(v time.Time) *DescribeSpotFleetRequestHistoryOutput
    func (s *DescribeSpotFleetRequestHistoryOutput) SetNextToken(v string) *DescribeSpotFleetRequestHistoryOutput
    func (s *DescribeSpotFleetRequestHistoryOutput) SetSpotFleetRequestId(v string) *DescribeSpotFleetRequestHistoryOutput
    func (s *DescribeSpotFleetRequestHistoryOutput) SetStartTime(v time.Time) *DescribeSpotFleetRequestHistoryOutput
    func (s DescribeSpotFleetRequestHistoryOutput) String() string
type DescribeSpotFleetRequestsInput
    func (s DescribeSpotFleetRequestsInput) GoString() string
    func (s *DescribeSpotFleetRequestsInput) SetDryRun(v bool) *DescribeSpotFleetRequestsInput
    func (s *DescribeSpotFleetRequestsInput) SetMaxResults(v int64) *DescribeSpotFleetRequestsInput
    func (s *DescribeSpotFleetRequestsInput) SetNextToken(v string) *DescribeSpotFleetRequestsInput
    func (s *DescribeSpotFleetRequestsInput) SetSpotFleetRequestIds(v []*string) *DescribeSpotFleetRequestsInput
    func (s DescribeSpotFleetRequestsInput) String() string
type DescribeSpotFleetRequestsOutput
    func (s DescribeSpotFleetRequestsOutput) GoString() string
    func (s *DescribeSpotFleetRequestsOutput) SetNextToken(v string) *DescribeSpotFleetRequestsOutput
    func (s *DescribeSpotFleetRequestsOutput) SetSpotFleetRequestConfigs(v []*SpotFleetRequestConfig) *DescribeSpotFleetRequestsOutput
    func (s DescribeSpotFleetRequestsOutput) String() string
type DescribeSpotInstanceRequestsInput
    func (s DescribeSpotInstanceRequestsInput) GoString() string
    func (s *DescribeSpotInstanceRequestsInput) SetDryRun(v bool) *DescribeSpotInstanceRequestsInput
    func (s *DescribeSpotInstanceRequestsInput) SetFilters(v []*Filter) *DescribeSpotInstanceRequestsInput
    func (s *DescribeSpotInstanceRequestsInput) SetSpotInstanceRequestIds(v []*string) *DescribeSpotInstanceRequestsInput
    func (s DescribeSpotInstanceRequestsInput) String() string
type DescribeSpotInstanceRequestsOutput
    func (s DescribeSpotInstanceRequestsOutput) GoString() string
    func (s *DescribeSpotInstanceRequestsOutput) SetSpotInstanceRequests(v []*SpotInstanceRequest) *DescribeSpotInstanceRequestsOutput
    func (s DescribeSpotInstanceRequestsOutput) String() string
type DescribeSpotPriceHistoryInput
    func (s DescribeSpotPriceHistoryInput) GoString() string
    func (s *DescribeSpotPriceHistoryInput) SetAvailabilityZone(v string) *DescribeSpotPriceHistoryInput
    func (s *DescribeSpotPriceHistoryInput) SetDryRun(v bool) *DescribeSpotPriceHistoryInput
    func (s *DescribeSpotPriceHistoryInput) SetEndTime(v time.Time) *DescribeSpotPriceHistoryInput
    func (s *DescribeSpotPriceHistoryInput) SetFilters(v []*Filter) *DescribeSpotPriceHistoryInput
    func (s *DescribeSpotPriceHistoryInput) SetInstanceTypes(v []*string) *DescribeSpotPriceHistoryInput
    func (s *DescribeSpotPriceHistoryInput) SetMaxResults(v int64) *DescribeSpotPriceHistoryInput
    func (s *DescribeSpotPriceHistoryInput) SetNextToken(v string) *DescribeSpotPriceHistoryInput
    func (s *DescribeSpotPriceHistoryInput) SetProductDescriptions(v []*string) *DescribeSpotPriceHistoryInput
    func (s *DescribeSpotPriceHistoryInput) SetStartTime(v time.Time) *DescribeSpotPriceHistoryInput
    func (s DescribeSpotPriceHistoryInput) String() string
type DescribeSpotPriceHistoryOutput
    func (s DescribeSpotPriceHistoryOutput) GoString() string
    func (s *DescribeSpotPriceHistoryOutput) SetNextToken(v string) *DescribeSpotPriceHistoryOutput
    func (s *DescribeSpotPriceHistoryOutput) SetSpotPriceHistory(v []*SpotPrice) *DescribeSpotPriceHistoryOutput
    func (s DescribeSpotPriceHistoryOutput) String() string
type DescribeStaleSecurityGroupsInput
    func (s DescribeStaleSecurityGroupsInput) GoString() string
    func (s *DescribeStaleSecurityGroupsInput) SetDryRun(v bool) *DescribeStaleSecurityGroupsInput
    func (s *DescribeStaleSecurityGroupsInput) SetMaxResults(v int64) *DescribeStaleSecurityGroupsInput
    func (s *DescribeStaleSecurityGroupsInput) SetNextToken(v string) *DescribeStaleSecurityGroupsInput
    func (s *DescribeStaleSecurityGroupsInput) SetVpcId(v string) *DescribeStaleSecurityGroupsInput
    func (s DescribeStaleSecurityGroupsInput) String() string
    func (s *DescribeStaleSecurityGroupsInput) Validate() error
type DescribeStaleSecurityGroupsOutput
    func (s DescribeStaleSecurityGroupsOutput) GoString() string
    func (s *DescribeStaleSecurityGroupsOutput) SetNextToken(v string) *DescribeStaleSecurityGroupsOutput
    func (s *DescribeStaleSecurityGroupsOutput) SetStaleSecurityGroupSet(v []*StaleSecurityGroup) *DescribeStaleSecurityGroupsOutput
    func (s DescribeStaleSecurityGroupsOutput) String() string
type DescribeSubnetsInput
    func (s DescribeSubnetsInput) GoString() string
    func (s *DescribeSubnetsInput) SetDryRun(v bool) *DescribeSubnetsInput
    func (s *DescribeSubnetsInput) SetFilters(v []*Filter) *DescribeSubnetsInput
    func (s *DescribeSubnetsInput) SetSubnetIds(v []*string) *DescribeSubnetsInput
    func (s DescribeSubnetsInput) String() string
type DescribeSubnetsOutput
    func (s DescribeSubnetsOutput) GoString() string
    func (s *DescribeSubnetsOutput) SetSubnets(v []*Subnet) *DescribeSubnetsOutput
    func (s DescribeSubnetsOutput) String() string
type DescribeTagsInput
    func (s DescribeTagsInput) GoString() string
    func (s *DescribeTagsInput) SetDryRun(v bool) *DescribeTagsInput
    func (s *DescribeTagsInput) SetFilters(v []*Filter) *DescribeTagsInput
    func (s *DescribeTagsInput) SetMaxResults(v int64) *DescribeTagsInput
    func (s *DescribeTagsInput) SetNextToken(v string) *DescribeTagsInput
    func (s DescribeTagsInput) String() string
type DescribeTagsOutput
    func (s DescribeTagsOutput) GoString() string
    func (s *DescribeTagsOutput) SetNextToken(v string) *DescribeTagsOutput
    func (s *DescribeTagsOutput) SetTags(v []*TagDescription) *DescribeTagsOutput
    func (s DescribeTagsOutput) String() string
type DescribeVolumeAttributeInput
    func (s DescribeVolumeAttributeInput) GoString() string
    func (s *DescribeVolumeAttributeInput) SetAttribute(v string) *DescribeVolumeAttributeInput
    func (s *DescribeVolumeAttributeInput) SetDryRun(v bool) *DescribeVolumeAttributeInput
    func (s *DescribeVolumeAttributeInput) SetVolumeId(v string) *DescribeVolumeAttributeInput
    func (s DescribeVolumeAttributeInput) String() string
    func (s *DescribeVolumeAttributeInput) Validate() error
type DescribeVolumeAttributeOutput
    func (s DescribeVolumeAttributeOutput) GoString() string
    func (s *DescribeVolumeAttributeOutput) SetAutoEnableIO(v *AttributeBooleanValue) *DescribeVolumeAttributeOutput
    func (s *DescribeVolumeAttributeOutput) SetProductCodes(v []*ProductCode) *DescribeVolumeAttributeOutput
    func (s *DescribeVolumeAttributeOutput) SetVolumeId(v string) *DescribeVolumeAttributeOutput
    func (s DescribeVolumeAttributeOutput) String() string
type DescribeVolumeStatusInput
    func (s DescribeVolumeStatusInput) GoString() string
    func (s *DescribeVolumeStatusInput) SetDryRun(v bool) *DescribeVolumeStatusInput
    func (s *DescribeVolumeStatusInput) SetFilters(v []*Filter) *DescribeVolumeStatusInput
    func (s *DescribeVolumeStatusInput) SetMaxResults(v int64) *DescribeVolumeStatusInput
    func (s *DescribeVolumeStatusInput) SetNextToken(v string) *DescribeVolumeStatusInput
    func (s *DescribeVolumeStatusInput) SetVolumeIds(v []*string) *DescribeVolumeStatusInput
    func (s DescribeVolumeStatusInput) String() string
type DescribeVolumeStatusOutput
    func (s DescribeVolumeStatusOutput) GoString() string
    func (s *DescribeVolumeStatusOutput) SetNextToken(v string) *DescribeVolumeStatusOutput
    func (s *DescribeVolumeStatusOutput) SetVolumeStatuses(v []*VolumeStatusItem) *DescribeVolumeStatusOutput
    func (s DescribeVolumeStatusOutput) String() string
type DescribeVolumesInput
    func (s DescribeVolumesInput) GoString() string
    func (s *DescribeVolumesInput) SetDryRun(v bool) *DescribeVolumesInput
    func (s *DescribeVolumesInput) SetFilters(v []*Filter) *DescribeVolumesInput
    func (s *DescribeVolumesInput) SetMaxResults(v int64) *DescribeVolumesInput
    func (s *DescribeVolumesInput) SetNextToken(v string) *DescribeVolumesInput
    func (s *DescribeVolumesInput) SetVolumeIds(v []*string) *DescribeVolumesInput
    func (s DescribeVolumesInput) String() string
type DescribeVolumesModificationsInput
    func (s DescribeVolumesModificationsInput) GoString() string
    func (s *DescribeVolumesModificationsInput) SetDryRun(v bool) *DescribeVolumesModificationsInput
    func (s *DescribeVolumesModificationsInput) SetFilters(v []*Filter) *DescribeVolumesModificationsInput
    func (s *DescribeVolumesModificationsInput) SetMaxResults(v int64) *DescribeVolumesModificationsInput
    func (s *DescribeVolumesModificationsInput) SetNextToken(v string) *DescribeVolumesModificationsInput
    func (s *DescribeVolumesModificationsInput) SetVolumeIds(v []*string) *DescribeVolumesModificationsInput
    func (s DescribeVolumesModificationsInput) String() string
type DescribeVolumesModificationsOutput
    func (s DescribeVolumesModificationsOutput) GoString() string
    func (s *DescribeVolumesModificationsOutput) SetNextToken(v string) *DescribeVolumesModificationsOutput
    func (s *DescribeVolumesModificationsOutput) SetVolumesModifications(v []*VolumeModification) *DescribeVolumesModificationsOutput
    func (s DescribeVolumesModificationsOutput) String() string
type DescribeVolumesOutput
    func (s DescribeVolumesOutput) GoString() string
    func (s *DescribeVolumesOutput) SetNextToken(v string) *DescribeVolumesOutput
    func (s *DescribeVolumesOutput) SetVolumes(v []*Volume) *DescribeVolumesOutput
    func (s DescribeVolumesOutput) String() string
type DescribeVpcAttributeInput
    func (s DescribeVpcAttributeInput) GoString() string
    func (s *DescribeVpcAttributeInput) SetAttribute(v string) *DescribeVpcAttributeInput
    func (s *DescribeVpcAttributeInput) SetDryRun(v bool) *DescribeVpcAttributeInput
    func (s *DescribeVpcAttributeInput) SetVpcId(v string) *DescribeVpcAttributeInput
    func (s DescribeVpcAttributeInput) String() string
    func (s *DescribeVpcAttributeInput) Validate() error
type DescribeVpcAttributeOutput
    func (s DescribeVpcAttributeOutput) GoString() string
    func (s *DescribeVpcAttributeOutput) SetEnableDnsHostnames(v *AttributeBooleanValue) *DescribeVpcAttributeOutput
    func (s *DescribeVpcAttributeOutput) SetEnableDnsSupport(v *AttributeBooleanValue) *DescribeVpcAttributeOutput
    func (s *DescribeVpcAttributeOutput) SetVpcId(v string) *DescribeVpcAttributeOutput
    func (s DescribeVpcAttributeOutput) String() string
type DescribeVpcClassicLinkDnsSupportInput
    func (s DescribeVpcClassicLinkDnsSupportInput) GoString() string
    func (s *DescribeVpcClassicLinkDnsSupportInput) SetMaxResults(v int64) *DescribeVpcClassicLinkDnsSupportInput
    func (s *DescribeVpcClassicLinkDnsSupportInput) SetNextToken(v string) *DescribeVpcClassicLinkDnsSupportInput
    func (s *DescribeVpcClassicLinkDnsSupportInput) SetVpcIds(v []*string) *DescribeVpcClassicLinkDnsSupportInput
    func (s DescribeVpcClassicLinkDnsSupportInput) String() string
    func (s *DescribeVpcClassicLinkDnsSupportInput) Validate() error
type DescribeVpcClassicLinkDnsSupportOutput
    func (s DescribeVpcClassicLinkDnsSupportOutput) GoString() string
    func (s *DescribeVpcClassicLinkDnsSupportOutput) SetNextToken(v string) *DescribeVpcClassicLinkDnsSupportOutput
    func (s *DescribeVpcClassicLinkDnsSupportOutput) SetVpcs(v []*ClassicLinkDnsSupport) *DescribeVpcClassicLinkDnsSupportOutput
    func (s DescribeVpcClassicLinkDnsSupportOutput) String() string
type DescribeVpcClassicLinkInput
    func (s DescribeVpcClassicLinkInput) GoString() string
    func (s *DescribeVpcClassicLinkInput) SetDryRun(v bool) *DescribeVpcClassicLinkInput
    func (s *DescribeVpcClassicLinkInput) SetFilters(v []*Filter) *DescribeVpcClassicLinkInput
    func (s *DescribeVpcClassicLinkInput) SetVpcIds(v []*string) *DescribeVpcClassicLinkInput
    func (s DescribeVpcClassicLinkInput) String() string
type DescribeVpcClassicLinkOutput
    func (s DescribeVpcClassicLinkOutput) GoString() string
    func (s *DescribeVpcClassicLinkOutput) SetVpcs(v []*VpcClassicLink) *DescribeVpcClassicLinkOutput
    func (s DescribeVpcClassicLinkOutput) String() string
type DescribeVpcEndpointServicesInput
    func (s DescribeVpcEndpointServicesInput) GoString() string
    func (s *DescribeVpcEndpointServicesInput) SetDryRun(v bool) *DescribeVpcEndpointServicesInput
    func (s *DescribeVpcEndpointServicesInput) SetMaxResults(v int64) *DescribeVpcEndpointServicesInput
    func (s *DescribeVpcEndpointServicesInput) SetNextToken(v string) *DescribeVpcEndpointServicesInput
    func (s DescribeVpcEndpointServicesInput) String() string
type DescribeVpcEndpointServicesOutput
    func (s DescribeVpcEndpointServicesOutput) GoString() string
    func (s *DescribeVpcEndpointServicesOutput) SetNextToken(v string) *DescribeVpcEndpointServicesOutput
    func (s *DescribeVpcEndpointServicesOutput) SetServiceNames(v []*string) *DescribeVpcEndpointServicesOutput
    func (s DescribeVpcEndpointServicesOutput) String() string
type DescribeVpcEndpointsInput
    func (s DescribeVpcEndpointsInput) GoString() string
    func (s *DescribeVpcEndpointsInput) SetDryRun(v bool) *DescribeVpcEndpointsInput
    func (s *DescribeVpcEndpointsInput) SetFilters(v []*Filter) *DescribeVpcEndpointsInput
    func (s *DescribeVpcEndpointsInput) SetMaxResults(v int64) *DescribeVpcEndpointsInput
    func (s *DescribeVpcEndpointsInput) SetNextToken(v string) *DescribeVpcEndpointsInput
    func (s *DescribeVpcEndpointsInput) SetVpcEndpointIds(v []*string) *DescribeVpcEndpointsInput
    func (s DescribeVpcEndpointsInput) String() string
type DescribeVpcEndpointsOutput
    func (s DescribeVpcEndpointsOutput) GoString() string
    func (s *DescribeVpcEndpointsOutput) SetNextToken(v string) *DescribeVpcEndpointsOutput
    func (s *DescribeVpcEndpointsOutput) SetVpcEndpoints(v []*VpcEndpoint) *DescribeVpcEndpointsOutput
    func (s DescribeVpcEndpointsOutput) String() string
type DescribeVpcPeeringConnectionsInput
    func (s DescribeVpcPeeringConnectionsInput) GoString() string
    func (s *DescribeVpcPeeringConnectionsInput) SetDryRun(v bool) *DescribeVpcPeeringConnectionsInput
    func (s *DescribeVpcPeeringConnectionsInput) SetFilters(v []*Filter) *DescribeVpcPeeringConnectionsInput
    func (s *DescribeVpcPeeringConnectionsInput) SetVpcPeeringConnectionIds(v []*string) *DescribeVpcPeeringConnectionsInput
    func (s DescribeVpcPeeringConnectionsInput) String() string
type DescribeVpcPeeringConnectionsOutput
    func (s DescribeVpcPeeringConnectionsOutput) GoString() string
    func (s *DescribeVpcPeeringConnectionsOutput) SetVpcPeeringConnections(v []*VpcPeeringConnection) *DescribeVpcPeeringConnectionsOutput
    func (s DescribeVpcPeeringConnectionsOutput) String() string
type DescribeVpcsInput
    func (s DescribeVpcsInput) GoString() string
    func (s *DescribeVpcsInput) SetDryRun(v bool) *DescribeVpcsInput
    func (s *DescribeVpcsInput) SetFilters(v []*Filter) *DescribeVpcsInput
    func (s *DescribeVpcsInput) SetVpcIds(v []*string) *DescribeVpcsInput
    func (s DescribeVpcsInput) String() string
type DescribeVpcsOutput
    func (s DescribeVpcsOutput) GoString() string
    func (s *DescribeVpcsOutput) SetVpcs(v []*Vpc) *DescribeVpcsOutput
    func (s DescribeVpcsOutput) String() string
type DescribeVpnConnectionsInput
    func (s DescribeVpnConnectionsInput) GoString() string
    func (s *DescribeVpnConnectionsInput) SetDryRun(v bool) *DescribeVpnConnectionsInput
    func (s *DescribeVpnConnectionsInput) SetFilters(v []*Filter) *DescribeVpnConnectionsInput
    func (s *DescribeVpnConnectionsInput) SetVpnConnectionIds(v []*string) *DescribeVpnConnectionsInput
    func (s DescribeVpnConnectionsInput) String() string
type DescribeVpnConnectionsOutput
    func (s DescribeVpnConnectionsOutput) GoString() string
    func (s *DescribeVpnConnectionsOutput) SetVpnConnections(v []*VpnConnection) *DescribeVpnConnectionsOutput
    func (s DescribeVpnConnectionsOutput) String() string
type DescribeVpnGatewaysInput
    func (s DescribeVpnGatewaysInput) GoString() string
    func (s *DescribeVpnGatewaysInput) SetDryRun(v bool) *DescribeVpnGatewaysInput
    func (s *DescribeVpnGatewaysInput) SetFilters(v []*Filter) *DescribeVpnGatewaysInput
    func (s *DescribeVpnGatewaysInput) SetVpnGatewayIds(v []*string) *DescribeVpnGatewaysInput
    func (s DescribeVpnGatewaysInput) String() string
type DescribeVpnGatewaysOutput
    func (s DescribeVpnGatewaysOutput) GoString() string
    func (s *DescribeVpnGatewaysOutput) SetVpnGateways(v []*VpnGateway) *DescribeVpnGatewaysOutput
    func (s DescribeVpnGatewaysOutput) String() string
type DetachClassicLinkVpcInput
    func (s DetachClassicLinkVpcInput) GoString() string
    func (s *DetachClassicLinkVpcInput) SetDryRun(v bool) *DetachClassicLinkVpcInput
    func (s *DetachClassicLinkVpcInput) SetInstanceId(v string) *DetachClassicLinkVpcInput
    func (s *DetachClassicLinkVpcInput) SetVpcId(v string) *DetachClassicLinkVpcInput
    func (s DetachClassicLinkVpcInput) String() string
    func (s *DetachClassicLinkVpcInput) Validate() error
type DetachClassicLinkVpcOutput
    func (s DetachClassicLinkVpcOutput) GoString() string
    func (s *DetachClassicLinkVpcOutput) SetReturn(v bool) *DetachClassicLinkVpcOutput
    func (s DetachClassicLinkVpcOutput) String() string
type DetachInternetGatewayInput
    func (s DetachInternetGatewayInput) GoString() string
    func (s *DetachInternetGatewayInput) SetDryRun(v bool) *DetachInternetGatewayInput
    func (s *DetachInternetGatewayInput) SetInternetGatewayId(v string) *DetachInternetGatewayInput
    func (s *DetachInternetGatewayInput) SetVpcId(v string) *DetachInternetGatewayInput
    func (s DetachInternetGatewayInput) String() string
    func (s *DetachInternetGatewayInput) Validate() error
type DetachInternetGatewayOutput
    func (s DetachInternetGatewayOutput) GoString() string
    func (s DetachInternetGatewayOutput) String() string
type DetachNetworkInterfaceInput
    func (s DetachNetworkInterfaceInput) GoString() string
    func (s *DetachNetworkInterfaceInput) SetAttachmentId(v string) *DetachNetworkInterfaceInput
    func (s *DetachNetworkInterfaceInput) SetDryRun(v bool) *DetachNetworkInterfaceInput
    func (s *DetachNetworkInterfaceInput) SetForce(v bool) *DetachNetworkInterfaceInput
    func (s DetachNetworkInterfaceInput) String() string
    func (s *DetachNetworkInterfaceInput) Validate() error
type DetachNetworkInterfaceOutput
    func (s DetachNetworkInterfaceOutput) GoString() string
    func (s DetachNetworkInterfaceOutput) String() string
type DetachVolumeInput
    func (s DetachVolumeInput) GoString() string
    func (s *DetachVolumeInput) SetDevice(v string) *DetachVolumeInput
    func (s *DetachVolumeInput) SetDryRun(v bool) *DetachVolumeInput
    func (s *DetachVolumeInput) SetForce(v bool) *DetachVolumeInput
    func (s *DetachVolumeInput) SetInstanceId(v string) *DetachVolumeInput
    func (s *DetachVolumeInput) SetVolumeId(v string) *DetachVolumeInput
    func (s DetachVolumeInput) String() string
    func (s *DetachVolumeInput) Validate() error
type DetachVpnGatewayInput
    func (s DetachVpnGatewayInput) GoString() string
    func (s *DetachVpnGatewayInput) SetDryRun(v bool) *DetachVpnGatewayInput
    func (s *DetachVpnGatewayInput) SetVpcId(v string) *DetachVpnGatewayInput
    func (s *DetachVpnGatewayInput) SetVpnGatewayId(v string) *DetachVpnGatewayInput
    func (s DetachVpnGatewayInput) String() string
    func (s *DetachVpnGatewayInput) Validate() error
type DetachVpnGatewayOutput
    func (s DetachVpnGatewayOutput) GoString() string
    func (s DetachVpnGatewayOutput) String() string
type DhcpConfiguration
    func (s DhcpConfiguration) GoString() string
    func (s *DhcpConfiguration) SetKey(v string) *DhcpConfiguration
    func (s *DhcpConfiguration) SetValues(v []*AttributeValue) *DhcpConfiguration
    func (s DhcpConfiguration) String() string
type DhcpOptions
    func (s DhcpOptions) GoString() string
    func (s *DhcpOptions) SetDhcpConfigurations(v []*DhcpConfiguration) *DhcpOptions
    func (s *DhcpOptions) SetDhcpOptionsId(v string) *DhcpOptions
    func (s *DhcpOptions) SetTags(v []*Tag) *DhcpOptions
    func (s DhcpOptions) String() string
type DisableVgwRoutePropagationInput
    func (s DisableVgwRoutePropagationInput) GoString() string
    func (s *DisableVgwRoutePropagationInput) SetGatewayId(v string) *DisableVgwRoutePropagationInput
    func (s *DisableVgwRoutePropagationInput) SetRouteTableId(v string) *DisableVgwRoutePropagationInput
    func (s DisableVgwRoutePropagationInput) String() string
    func (s *DisableVgwRoutePropagationInput) Validate() error
type DisableVgwRoutePropagationOutput
    func (s DisableVgwRoutePropagationOutput) GoString() string
    func (s DisableVgwRoutePropagationOutput) String() string
type DisableVpcClassicLinkDnsSupportInput
    func (s DisableVpcClassicLinkDnsSupportInput) GoString() string
    func (s *DisableVpcClassicLinkDnsSupportInput) SetVpcId(v string) *DisableVpcClassicLinkDnsSupportInput
    func (s DisableVpcClassicLinkDnsSupportInput) String() string
type DisableVpcClassicLinkDnsSupportOutput
    func (s DisableVpcClassicLinkDnsSupportOutput) GoString() string
    func (s *DisableVpcClassicLinkDnsSupportOutput) SetReturn(v bool) *DisableVpcClassicLinkDnsSupportOutput
    func (s DisableVpcClassicLinkDnsSupportOutput) String() string
type DisableVpcClassicLinkInput
    func (s DisableVpcClassicLinkInput) GoString() string
    func (s *DisableVpcClassicLinkInput) SetDryRun(v bool) *DisableVpcClassicLinkInput
    func (s *DisableVpcClassicLinkInput) SetVpcId(v string) *DisableVpcClassicLinkInput
    func (s DisableVpcClassicLinkInput) String() string
    func (s *DisableVpcClassicLinkInput) Validate() error
type DisableVpcClassicLinkOutput
    func (s DisableVpcClassicLinkOutput) GoString() string
    func (s *DisableVpcClassicLinkOutput) SetReturn(v bool) *DisableVpcClassicLinkOutput
    func (s DisableVpcClassicLinkOutput) String() string
type DisassociateAddressInput
    func (s DisassociateAddressInput) GoString() string
    func (s *DisassociateAddressInput) SetAssociationId(v string) *DisassociateAddressInput
    func (s *DisassociateAddressInput) SetDryRun(v bool) *DisassociateAddressInput
    func (s *DisassociateAddressInput) SetPublicIp(v string) *DisassociateAddressInput
    func (s DisassociateAddressInput) String() string
type DisassociateAddressOutput
    func (s DisassociateAddressOutput) GoString() string
    func (s DisassociateAddressOutput) String() string
type DisassociateIamInstanceProfileInput
    func (s DisassociateIamInstanceProfileInput) GoString() string
    func (s *DisassociateIamInstanceProfileInput) SetAssociationId(v string) *DisassociateIamInstanceProfileInput
    func (s DisassociateIamInstanceProfileInput) String() string
    func (s *DisassociateIamInstanceProfileInput) Validate() error
type DisassociateIamInstanceProfileOutput
    func (s DisassociateIamInstanceProfileOutput) GoString() string
    func (s *DisassociateIamInstanceProfileOutput) SetIamInstanceProfileAssociation(v *IamInstanceProfileAssociation) *DisassociateIamInstanceProfileOutput
    func (s DisassociateIamInstanceProfileOutput) String() string
type DisassociateRouteTableInput
    func (s DisassociateRouteTableInput) GoString() string
    func (s *DisassociateRouteTableInput) SetAssociationId(v string) *DisassociateRouteTableInput
    func (s *DisassociateRouteTableInput) SetDryRun(v bool) *DisassociateRouteTableInput
    func (s DisassociateRouteTableInput) String() string
    func (s *DisassociateRouteTableInput) Validate() error
type DisassociateRouteTableOutput
    func (s DisassociateRouteTableOutput) GoString() string
    func (s DisassociateRouteTableOutput) String() string
type DisassociateSubnetCidrBlockInput
    func (s DisassociateSubnetCidrBlockInput) GoString() string
    func (s *DisassociateSubnetCidrBlockInput) SetAssociationId(v string) *DisassociateSubnetCidrBlockInput
    func (s DisassociateSubnetCidrBlockInput) String() string
    func (s *DisassociateSubnetCidrBlockInput) Validate() error
type DisassociateSubnetCidrBlockOutput
    func (s DisassociateSubnetCidrBlockOutput) GoString() string
    func (s *DisassociateSubnetCidrBlockOutput) SetIpv6CidrBlockAssociation(v *SubnetIpv6CidrBlockAssociation) *DisassociateSubnetCidrBlockOutput
    func (s *DisassociateSubnetCidrBlockOutput) SetSubnetId(v string) *DisassociateSubnetCidrBlockOutput
    func (s DisassociateSubnetCidrBlockOutput) String() string
type DisassociateVpcCidrBlockInput
    func (s DisassociateVpcCidrBlockInput) GoString() string
    func (s *DisassociateVpcCidrBlockInput) SetAssociationId(v string) *DisassociateVpcCidrBlockInput
    func (s DisassociateVpcCidrBlockInput) String() string
    func (s *DisassociateVpcCidrBlockInput) Validate() error
type DisassociateVpcCidrBlockOutput
    func (s DisassociateVpcCidrBlockOutput) GoString() string
    func (s *DisassociateVpcCidrBlockOutput) SetIpv6CidrBlockAssociation(v *VpcIpv6CidrBlockAssociation) *DisassociateVpcCidrBlockOutput
    func (s *DisassociateVpcCidrBlockOutput) SetVpcId(v string) *DisassociateVpcCidrBlockOutput
    func (s DisassociateVpcCidrBlockOutput) String() string
type DiskImage
    func (s DiskImage) GoString() string
    func (s *DiskImage) SetDescription(v string) *DiskImage
    func (s *DiskImage) SetImage(v *DiskImageDetail) *DiskImage
    func (s *DiskImage) SetVolume(v *VolumeDetail) *DiskImage
    func (s DiskImage) String() string
    func (s *DiskImage) Validate() error
type DiskImageDescription
    func (s DiskImageDescription) GoString() string
    func (s *DiskImageDescription) SetChecksum(v string) *DiskImageDescription
    func (s *DiskImageDescription) SetFormat(v string) *DiskImageDescription
    func (s *DiskImageDescription) SetImportManifestUrl(v string) *DiskImageDescription
    func (s *DiskImageDescription) SetSize(v int64) *DiskImageDescription
    func (s DiskImageDescription) String() string
type DiskImageDetail
    func (s DiskImageDetail) GoString() string
    func (s *DiskImageDetail) SetBytes(v int64) *DiskImageDetail
    func (s *DiskImageDetail) SetFormat(v string) *DiskImageDetail
    func (s *DiskImageDetail) SetImportManifestUrl(v string) *DiskImageDetail
    func (s DiskImageDetail) String() string
    func (s *DiskImageDetail) Validate() error
type DiskImageVolumeDescription
    func (s DiskImageVolumeDescription) GoString() string
    func (s *DiskImageVolumeDescription) SetId(v string) *DiskImageVolumeDescription
    func (s *DiskImageVolumeDescription) SetSize(v int64) *DiskImageVolumeDescription
    func (s DiskImageVolumeDescription) String() string
type EC2
    func New(p client.ConfigProvider, cfgs ...*aws.Config) *EC2
    func (c *EC2) AcceptReservedInstancesExchangeQuote(input *AcceptReservedInstancesExchangeQuoteInput) (*AcceptReservedInstancesExchangeQuoteOutput, error)
    func (c *EC2) AcceptReservedInstancesExchangeQuoteRequest(input *AcceptReservedInstancesExchangeQuoteInput) (req *request.Request, output *AcceptReservedInstancesExchangeQuoteOutput)
    func (c *EC2) AcceptReservedInstancesExchangeQuoteWithContext(ctx aws.Context, input *AcceptReservedInstancesExchangeQuoteInput, opts ...request.Option) (*AcceptReservedInstancesExchangeQuoteOutput, error)
    func (c *EC2) AcceptVpcPeeringConnection(input *AcceptVpcPeeringConnectionInput) (*AcceptVpcPeeringConnectionOutput, error)
    func (c *EC2) AcceptVpcPeeringConnectionRequest(input *AcceptVpcPeeringConnectionInput) (req *request.Request, output *AcceptVpcPeeringConnectionOutput)
    func (c *EC2) AcceptVpcPeeringConnectionWithContext(ctx aws.Context, input *AcceptVpcPeeringConnectionInput, opts ...request.Option) (*AcceptVpcPeeringConnectionOutput, error)
    func (c *EC2) AllocateAddress(input *AllocateAddressInput) (*AllocateAddressOutput, error)
    func (c *EC2) AllocateAddressRequest(input *AllocateAddressInput) (req *request.Request, output *AllocateAddressOutput)
    func (c *EC2) AllocateAddressWithContext(ctx aws.Context, input *AllocateAddressInput, opts ...request.Option) (*AllocateAddressOutput, error)
    func (c *EC2) AllocateHosts(input *AllocateHostsInput) (*AllocateHostsOutput, error)
    func (c *EC2) AllocateHostsRequest(input *AllocateHostsInput) (req *request.Request, output *AllocateHostsOutput)
    func (c *EC2) AllocateHostsWithContext(ctx aws.Context, input *AllocateHostsInput, opts ...request.Option) (*AllocateHostsOutput, error)
    func (c *EC2) AssignIpv6Addresses(input *AssignIpv6AddressesInput) (*AssignIpv6AddressesOutput, error)
    func (c *EC2) AssignIpv6AddressesRequest(input *AssignIpv6AddressesInput) (req *request.Request, output *AssignIpv6AddressesOutput)
    func (c *EC2) AssignIpv6AddressesWithContext(ctx aws.Context, input *AssignIpv6AddressesInput, opts ...request.Option) (*AssignIpv6AddressesOutput, error)
    func (c *EC2) AssignPrivateIpAddresses(input *AssignPrivateIpAddressesInput) (*AssignPrivateIpAddressesOutput, error)
    func (c *EC2) AssignPrivateIpAddressesRequest(input *AssignPrivateIpAddressesInput) (req *request.Request, output *AssignPrivateIpAddressesOutput)
    func (c *EC2) AssignPrivateIpAddressesWithContext(ctx aws.Context, input *AssignPrivateIpAddressesInput, opts ...request.Option) (*AssignPrivateIpAddressesOutput, error)
    func (c *EC2) AssociateAddress(input *AssociateAddressInput) (*AssociateAddressOutput, error)
    func (c *EC2) AssociateAddressRequest(input *AssociateAddressInput) (req *request.Request, output *AssociateAddressOutput)
    func (c *EC2) AssociateAddressWithContext(ctx aws.Context, input *AssociateAddressInput, opts ...request.Option) (*AssociateAddressOutput, error)
    func (c *EC2) AssociateDhcpOptions(input *AssociateDhcpOptionsInput) (*AssociateDhcpOptionsOutput, error)
    func (c *EC2) AssociateDhcpOptionsRequest(input *AssociateDhcpOptionsInput) (req *request.Request, output *AssociateDhcpOptionsOutput)
    func (c *EC2) AssociateDhcpOptionsWithContext(ctx aws.Context, input *AssociateDhcpOptionsInput, opts ...request.Option) (*AssociateDhcpOptionsOutput, error)
    func (c *EC2) AssociateIamInstanceProfile(input *AssociateIamInstanceProfileInput) (*AssociateIamInstanceProfileOutput, error)
    func (c *EC2) AssociateIamInstanceProfileRequest(input *AssociateIamInstanceProfileInput) (req *request.Request, output *AssociateIamInstanceProfileOutput)
    func (c *EC2) AssociateIamInstanceProfileWithContext(ctx aws.Context, input *AssociateIamInstanceProfileInput, opts ...request.Option) (*AssociateIamInstanceProfileOutput, error)
    func (c *EC2) AssociateRouteTable(input *AssociateRouteTableInput) (*AssociateRouteTableOutput, error)
    func (c *EC2) AssociateRouteTableRequest(input *AssociateRouteTableInput) (req *request.Request, output *AssociateRouteTableOutput)
    func (c *EC2) AssociateRouteTableWithContext(ctx aws.Context, input *AssociateRouteTableInput, opts ...request.Option) (*AssociateRouteTableOutput, error)
    func (c *EC2) AssociateSubnetCidrBlock(input *AssociateSubnetCidrBlockInput) (*AssociateSubnetCidrBlockOutput, error)
    func (c *EC2) AssociateSubnetCidrBlockRequest(input *AssociateSubnetCidrBlockInput) (req *request.Request, output *AssociateSubnetCidrBlockOutput)
    func (c *EC2) AssociateSubnetCidrBlockWithContext(ctx aws.Context, input *AssociateSubnetCidrBlockInput, opts ...request.Option) (*AssociateSubnetCidrBlockOutput, error)
    func (c *EC2) AssociateVpcCidrBlock(input *AssociateVpcCidrBlockInput) (*AssociateVpcCidrBlockOutput, error)
    func (c *EC2) AssociateVpcCidrBlockRequest(input *AssociateVpcCidrBlockInput) (req *request.Request, output *AssociateVpcCidrBlockOutput)
    func (c *EC2) AssociateVpcCidrBlockWithContext(ctx aws.Context, input *AssociateVpcCidrBlockInput, opts ...request.Option) (*AssociateVpcCidrBlockOutput, error)
    func (c *EC2) AttachClassicLinkVpc(input *AttachClassicLinkVpcInput) (*AttachClassicLinkVpcOutput, error)
    func (c *EC2) AttachClassicLinkVpcRequest(input *AttachClassicLinkVpcInput) (req *request.Request, output *AttachClassicLinkVpcOutput)
    func (c *EC2) AttachClassicLinkVpcWithContext(ctx aws.Context, input *AttachClassicLinkVpcInput, opts ...request.Option) (*AttachClassicLinkVpcOutput, error)
    func (c *EC2) AttachInternetGateway(input *AttachInternetGatewayInput) (*AttachInternetGatewayOutput, error)
    func (c *EC2) AttachInternetGatewayRequest(input *AttachInternetGatewayInput) (req *request.Request, output *AttachInternetGatewayOutput)
    func (c *EC2) AttachInternetGatewayWithContext(ctx aws.Context, input *AttachInternetGatewayInput, opts ...request.Option) (*AttachInternetGatewayOutput, error)
    func (c *EC2) AttachNetworkInterface(input *AttachNetworkInterfaceInput) (*AttachNetworkInterfaceOutput, error)
    func (c *EC2) AttachNetworkInterfaceRequest(input *AttachNetworkInterfaceInput) (req *request.Request, output *AttachNetworkInterfaceOutput)
    func (c *EC2) AttachNetworkInterfaceWithContext(ctx aws.Context, input *AttachNetworkInterfaceInput, opts ...request.Option) (*AttachNetworkInterfaceOutput, error)
    func (c *EC2) AttachVolume(input *AttachVolumeInput) (*VolumeAttachment, error)
    func (c *EC2) AttachVolumeRequest(input *AttachVolumeInput) (req *request.Request, output *VolumeAttachment)
    func (c *EC2) AttachVolumeWithContext(ctx aws.Context, input *AttachVolumeInput, opts ...request.Option) (*VolumeAttachment, error)
    func (c *EC2) AttachVpnGateway(input *AttachVpnGatewayInput) (*AttachVpnGatewayOutput, error)
    func (c *EC2) AttachVpnGatewayRequest(input *AttachVpnGatewayInput) (req *request.Request, output *AttachVpnGatewayOutput)
    func (c *EC2) AttachVpnGatewayWithContext(ctx aws.Context, input *AttachVpnGatewayInput, opts ...request.Option) (*AttachVpnGatewayOutput, error)
    func (c *EC2) AuthorizeSecurityGroupEgress(input *AuthorizeSecurityGroupEgressInput) (*AuthorizeSecurityGroupEgressOutput, error)
    func (c *EC2) AuthorizeSecurityGroupEgressRequest(input *AuthorizeSecurityGroupEgressInput) (req *request.Request, output *AuthorizeSecurityGroupEgressOutput)
    func (c *EC2) AuthorizeSecurityGroupEgressWithContext(ctx aws.Context, input *AuthorizeSecurityGroupEgressInput, opts ...request.Option) (*AuthorizeSecurityGroupEgressOutput, error)
    func (c *EC2) AuthorizeSecurityGroupIngress(input *AuthorizeSecurityGroupIngressInput) (*AuthorizeSecurityGroupIngressOutput, error)
    func (c *EC2) AuthorizeSecurityGroupIngressRequest(input *AuthorizeSecurityGroupIngressInput) (req *request.Request, output *AuthorizeSecurityGroupIngressOutput)
    func (c *EC2) AuthorizeSecurityGroupIngressWithContext(ctx aws.Context, input *AuthorizeSecurityGroupIngressInput, opts ...request.Option) (*AuthorizeSecurityGroupIngressOutput, error)
    func (c *EC2) BundleInstance(input *BundleInstanceInput) (*BundleInstanceOutput, error)
    func (c *EC2) BundleInstanceRequest(input *BundleInstanceInput) (req *request.Request, output *BundleInstanceOutput)
    func (c *EC2) BundleInstanceWithContext(ctx aws.Context, input *BundleInstanceInput, opts ...request.Option) (*BundleInstanceOutput, error)
    func (c *EC2) CancelBundleTask(input *CancelBundleTaskInput) (*CancelBundleTaskOutput, error)
    func (c *EC2) CancelBundleTaskRequest(input *CancelBundleTaskInput) (req *request.Request, output *CancelBundleTaskOutput)
    func (c *EC2) CancelBundleTaskWithContext(ctx aws.Context, input *CancelBundleTaskInput, opts ...request.Option) (*CancelBundleTaskOutput, error)
    func (c *EC2) CancelConversionTask(input *CancelConversionTaskInput) (*CancelConversionTaskOutput, error)
    func (c *EC2) CancelConversionTaskRequest(input *CancelConversionTaskInput) (req *request.Request, output *CancelConversionTaskOutput)
    func (c *EC2) CancelConversionTaskWithContext(ctx aws.Context, input *CancelConversionTaskInput, opts ...request.Option) (*CancelConversionTaskOutput, error)
    func (c *EC2) CancelExportTask(input *CancelExportTaskInput) (*CancelExportTaskOutput, error)
    func (c *EC2) CancelExportTaskRequest(input *CancelExportTaskInput) (req *request.Request, output *CancelExportTaskOutput)
    func (c *EC2) CancelExportTaskWithContext(ctx aws.Context, input *CancelExportTaskInput, opts ...request.Option) (*CancelExportTaskOutput, error)
    func (c *EC2) CancelImportTask(input *CancelImportTaskInput) (*CancelImportTaskOutput, error)
    func (c *EC2) CancelImportTaskRequest(input *CancelImportTaskInput) (req *request.Request, output *CancelImportTaskOutput)
    func (c *EC2) CancelImportTaskWithContext(ctx aws.Context, input *CancelImportTaskInput, opts ...request.Option) (*CancelImportTaskOutput, error)
    func (c *EC2) CancelReservedInstancesListing(input *CancelReservedInstancesListingInput) (*CancelReservedInstancesListingOutput, error)
    func (c *EC2) CancelReservedInstancesListingRequest(input *CancelReservedInstancesListingInput) (req *request.Request, output *CancelReservedInstancesListingOutput)
    func (c *EC2) CancelReservedInstancesListingWithContext(ctx aws.Context, input *CancelReservedInstancesListingInput, opts ...request.Option) (*CancelReservedInstancesListingOutput, error)
    func (c *EC2) CancelSpotFleetRequests(input *CancelSpotFleetRequestsInput) (*CancelSpotFleetRequestsOutput, error)
    func (c *EC2) CancelSpotFleetRequestsRequest(input *CancelSpotFleetRequestsInput) (req *request.Request, output *CancelSpotFleetRequestsOutput)
    func (c *EC2) CancelSpotFleetRequestsWithContext(ctx aws.Context, input *CancelSpotFleetRequestsInput, opts ...request.Option) (*CancelSpotFleetRequestsOutput, error)
    func (c *EC2) CancelSpotInstanceRequests(input *CancelSpotInstanceRequestsInput) (*CancelSpotInstanceRequestsOutput, error)
    func (c *EC2) CancelSpotInstanceRequestsRequest(input *CancelSpotInstanceRequestsInput) (req *request.Request, output *CancelSpotInstanceRequestsOutput)
    func (c *EC2) CancelSpotInstanceRequestsWithContext(ctx aws.Context, input *CancelSpotInstanceRequestsInput, opts ...request.Option) (*CancelSpotInstanceRequestsOutput, error)
    func (c *EC2) ConfirmProductInstance(input *ConfirmProductInstanceInput) (*ConfirmProductInstanceOutput, error)
    func (c *EC2) ConfirmProductInstanceRequest(input *ConfirmProductInstanceInput) (req *request.Request, output *ConfirmProductInstanceOutput)
    func (c *EC2) ConfirmProductInstanceWithContext(ctx aws.Context, input *ConfirmProductInstanceInput, opts ...request.Option) (*ConfirmProductInstanceOutput, error)
    func (c *EC2) CopyImage(input *CopyImageInput) (*CopyImageOutput, error)
    func (c *EC2) CopyImageRequest(input *CopyImageInput) (req *request.Request, output *CopyImageOutput)
    func (c *EC2) CopyImageWithContext(ctx aws.Context, input *CopyImageInput, opts ...request.Option) (*CopyImageOutput, error)
    func (c *EC2) CopySnapshot(input *CopySnapshotInput) (*CopySnapshotOutput, error)
    func (c *EC2) CopySnapshotRequest(input *CopySnapshotInput) (req *request.Request, output *CopySnapshotOutput)
    func (c *EC2) CopySnapshotWithContext(ctx aws.Context, input *CopySnapshotInput, opts ...request.Option) (*CopySnapshotOutput, error)
    func (c *EC2) CreateCustomerGateway(input *CreateCustomerGatewayInput) (*CreateCustomerGatewayOutput, error)
    func (c *EC2) CreateCustomerGatewayRequest(input *CreateCustomerGatewayInput) (req *request.Request, output *CreateCustomerGatewayOutput)
    func (c *EC2) CreateCustomerGatewayWithContext(ctx aws.Context, input *CreateCustomerGatewayInput, opts ...request.Option) (*CreateCustomerGatewayOutput, error)
    func (c *EC2) CreateDhcpOptions(input *CreateDhcpOptionsInput) (*CreateDhcpOptionsOutput, error)
    func (c *EC2) CreateDhcpOptionsRequest(input *CreateDhcpOptionsInput) (req *request.Request, output *CreateDhcpOptionsOutput)
    func (c *EC2) CreateDhcpOptionsWithContext(ctx aws.Context, input *CreateDhcpOptionsInput, opts ...request.Option) (*CreateDhcpOptionsOutput, error)
    func (c *EC2) CreateEgressOnlyInternetGateway(input *CreateEgressOnlyInternetGatewayInput) (*CreateEgressOnlyInternetGatewayOutput, error)
    func (c *EC2) CreateEgressOnlyInternetGatewayRequest(input *CreateEgressOnlyInternetGatewayInput) (req *request.Request, output *CreateEgressOnlyInternetGatewayOutput)
    func (c *EC2) CreateEgressOnlyInternetGatewayWithContext(ctx aws.Context, input *CreateEgressOnlyInternetGatewayInput, opts ...request.Option) (*CreateEgressOnlyInternetGatewayOutput, error)
    func (c *EC2) CreateFlowLogs(input *CreateFlowLogsInput) (*CreateFlowLogsOutput, error)
    func (c *EC2) CreateFlowLogsRequest(input *CreateFlowLogsInput) (req *request.Request, output *CreateFlowLogsOutput)
    func (c *EC2) CreateFlowLogsWithContext(ctx aws.Context, input *CreateFlowLogsInput, opts ...request.Option) (*CreateFlowLogsOutput, error)
    func (c *EC2) CreateFpgaImage(input *CreateFpgaImageInput) (*CreateFpgaImageOutput, error)
    func (c *EC2) CreateFpgaImageRequest(input *CreateFpgaImageInput) (req *request.Request, output *CreateFpgaImageOutput)
    func (c *EC2) CreateFpgaImageWithContext(ctx aws.Context, input *CreateFpgaImageInput, opts ...request.Option) (*CreateFpgaImageOutput, error)
    func (c *EC2) CreateImage(input *CreateImageInput) (*CreateImageOutput, error)
    func (c *EC2) CreateImageRequest(input *CreateImageInput) (req *request.Request, output *CreateImageOutput)
    func (c *EC2) CreateImageWithContext(ctx aws.Context, input *CreateImageInput, opts ...request.Option) (*CreateImageOutput, error)
    func (c *EC2) CreateInstanceExportTask(input *CreateInstanceExportTaskInput) (*CreateInstanceExportTaskOutput, error)
    func (c *EC2) CreateInstanceExportTaskRequest(input *CreateInstanceExportTaskInput) (req *request.Request, output *CreateInstanceExportTaskOutput)
    func (c *EC2) CreateInstanceExportTaskWithContext(ctx aws.Context, input *CreateInstanceExportTaskInput, opts ...request.Option) (*CreateInstanceExportTaskOutput, error)
    func (c *EC2) CreateInternetGateway(input *CreateInternetGatewayInput) (*CreateInternetGatewayOutput, error)
    func (c *EC2) CreateInternetGatewayRequest(input *CreateInternetGatewayInput) (req *request.Request, output *CreateInternetGatewayOutput)
    func (c *EC2) CreateInternetGatewayWithContext(ctx aws.Context, input *CreateInternetGatewayInput, opts ...request.Option) (*CreateInternetGatewayOutput, error)
    func (c *EC2) CreateKeyPair(input *CreateKeyPairInput) (*CreateKeyPairOutput, error)
    func (c *EC2) CreateKeyPairRequest(input *CreateKeyPairInput) (req *request.Request, output *CreateKeyPairOutput)
    func (c *EC2) CreateKeyPairWithContext(ctx aws.Context, input *CreateKeyPairInput, opts ...request.Option) (*CreateKeyPairOutput, error)
    func (c *EC2) CreateNatGateway(input *CreateNatGatewayInput) (*CreateNatGatewayOutput, error)
    func (c *EC2) CreateNatGatewayRequest(input *CreateNatGatewayInput) (req *request.Request, output *CreateNatGatewayOutput)
    func (c *EC2) CreateNatGatewayWithContext(ctx aws.Context, input *CreateNatGatewayInput, opts ...request.Option) (*CreateNatGatewayOutput, error)
    func (c *EC2) CreateNetworkAcl(input *CreateNetworkAclInput) (*CreateNetworkAclOutput, error)
    func (c *EC2) CreateNetworkAclEntry(input *CreateNetworkAclEntryInput) (*CreateNetworkAclEntryOutput, error)
    func (c *EC2) CreateNetworkAclEntryRequest(input *CreateNetworkAclEntryInput) (req *request.Request, output *CreateNetworkAclEntryOutput)
    func (c *EC2) CreateNetworkAclEntryWithContext(ctx aws.Context, input *CreateNetworkAclEntryInput, opts ...request.Option) (*CreateNetworkAclEntryOutput, error)
    func (c *EC2) CreateNetworkAclRequest(input *CreateNetworkAclInput) (req *request.Request, output *CreateNetworkAclOutput)
    func (c *EC2) CreateNetworkAclWithContext(ctx aws.Context, input *CreateNetworkAclInput, opts ...request.Option) (*CreateNetworkAclOutput, error)
    func (c *EC2) CreateNetworkInterface(input *CreateNetworkInterfaceInput) (*CreateNetworkInterfaceOutput, error)
    func (c *EC2) CreateNetworkInterfaceRequest(input *CreateNetworkInterfaceInput) (req *request.Request, output *CreateNetworkInterfaceOutput)
    func (c *EC2) CreateNetworkInterfaceWithContext(ctx aws.Context, input *CreateNetworkInterfaceInput, opts ...request.Option) (*CreateNetworkInterfaceOutput, error)
    func (c *EC2) CreatePlacementGroup(input *CreatePlacementGroupInput) (*CreatePlacementGroupOutput, error)
    func (c *EC2) CreatePlacementGroupRequest(input *CreatePlacementGroupInput) (req *request.Request, output *CreatePlacementGroupOutput)
    func (c *EC2) CreatePlacementGroupWithContext(ctx aws.Context, input *CreatePlacementGroupInput, opts ...request.Option) (*CreatePlacementGroupOutput, error)
    func (c *EC2) CreateReservedInstancesListing(input *CreateReservedInstancesListingInput) (*CreateReservedInstancesListingOutput, error)
    func (c *EC2) CreateReservedInstancesListingRequest(input *CreateReservedInstancesListingInput) (req *request.Request, output *CreateReservedInstancesListingOutput)
    func (c *EC2) CreateReservedInstancesListingWithContext(ctx aws.Context, input *CreateReservedInstancesListingInput, opts ...request.Option) (*CreateReservedInstancesListingOutput, error)
    func (c *EC2) CreateRoute(input *CreateRouteInput) (*CreateRouteOutput, error)
    func (c *EC2) CreateRouteRequest(input *CreateRouteInput) (req *request.Request, output *CreateRouteOutput)
    func (c *EC2) CreateRouteTable(input *CreateRouteTableInput) (*CreateRouteTableOutput, error)
    func (c *EC2) CreateRouteTableRequest(input *CreateRouteTableInput) (req *request.Request, output *CreateRouteTableOutput)
    func (c *EC2) CreateRouteTableWithContext(ctx aws.Context, input *CreateRouteTableInput, opts ...request.Option) (*CreateRouteTableOutput, error)
    func (c *EC2) CreateRouteWithContext(ctx aws.Context, input *CreateRouteInput, opts ...request.Option) (*CreateRouteOutput, error)
    func (c *EC2) CreateSecurityGroup(input *CreateSecurityGroupInput) (*CreateSecurityGroupOutput, error)
    func (c *EC2) CreateSecurityGroupRequest(input *CreateSecurityGroupInput) (req *request.Request, output *CreateSecurityGroupOutput)
    func (c *EC2) CreateSecurityGroupWithContext(ctx aws.Context, input *CreateSecurityGroupInput, opts ...request.Option) (*CreateSecurityGroupOutput, error)
    func (c *EC2) CreateSnapshot(input *CreateSnapshotInput) (*Snapshot, error)
    func (c *EC2) CreateSnapshotRequest(input *CreateSnapshotInput) (req *request.Request, output *Snapshot)
    func (c *EC2) CreateSnapshotWithContext(ctx aws.Context, input *CreateSnapshotInput, opts ...request.Option) (*Snapshot, error)
    func (c *EC2) CreateSpotDatafeedSubscription(input *CreateSpotDatafeedSubscriptionInput) (*CreateSpotDatafeedSubscriptionOutput, error)
    func (c *EC2) CreateSpotDatafeedSubscriptionRequest(input *CreateSpotDatafeedSubscriptionInput) (req *request.Request, output *CreateSpotDatafeedSubscriptionOutput)
    func (c *EC2) CreateSpotDatafeedSubscriptionWithContext(ctx aws.Context, input *CreateSpotDatafeedSubscriptionInput, opts ...request.Option) (*CreateSpotDatafeedSubscriptionOutput, error)
    func (c *EC2) CreateSubnet(input *CreateSubnetInput) (*CreateSubnetOutput, error)
    func (c *EC2) CreateSubnetRequest(input *CreateSubnetInput) (req *request.Request, output *CreateSubnetOutput)
    func (c *EC2) CreateSubnetWithContext(ctx aws.Context, input *CreateSubnetInput, opts ...request.Option) (*CreateSubnetOutput, error)
    func (c *EC2) CreateTags(input *CreateTagsInput) (*CreateTagsOutput, error)
    func (c *EC2) CreateTagsRequest(input *CreateTagsInput) (req *request.Request, output *CreateTagsOutput)
    func (c *EC2) CreateTagsWithContext(ctx aws.Context, input *CreateTagsInput, opts ...request.Option) (*CreateTagsOutput, error)
    func (c *EC2) CreateVolume(input *CreateVolumeInput) (*Volume, error)
    func (c *EC2) CreateVolumeRequest(input *CreateVolumeInput) (req *request.Request, output *Volume)
    func (c *EC2) CreateVolumeWithContext(ctx aws.Context, input *CreateVolumeInput, opts ...request.Option) (*Volume, error)
    func (c *EC2) CreateVpc(input *CreateVpcInput) (*CreateVpcOutput, error)
    func (c *EC2) CreateVpcEndpoint(input *CreateVpcEndpointInput) (*CreateVpcEndpointOutput, error)
    func (c *EC2) CreateVpcEndpointRequest(input *CreateVpcEndpointInput) (req *request.Request, output *CreateVpcEndpointOutput)
    func (c *EC2) CreateVpcEndpointWithContext(ctx aws.Context, input *CreateVpcEndpointInput, opts ...request.Option) (*CreateVpcEndpointOutput, error)
    func (c *EC2) CreateVpcPeeringConnection(input *CreateVpcPeeringConnectionInput) (*CreateVpcPeeringConnectionOutput, error)
    func (c *EC2) CreateVpcPeeringConnectionRequest(input *CreateVpcPeeringConnectionInput) (req *request.Request, output *CreateVpcPeeringConnectionOutput)
    func (c *EC2) CreateVpcPeeringConnectionWithContext(ctx aws.Context, input *CreateVpcPeeringConnectionInput, opts ...request.Option) (*CreateVpcPeeringConnectionOutput, error)
    func (c *EC2) CreateVpcRequest(input *CreateVpcInput) (req *request.Request, output *CreateVpcOutput)
    func (c *EC2) CreateVpcWithContext(ctx aws.Context, input *CreateVpcInput, opts ...request.Option) (*CreateVpcOutput, error)
    func (c *EC2) CreateVpnConnection(input *CreateVpnConnectionInput) (*CreateVpnConnectionOutput, error)
    func (c *EC2) CreateVpnConnectionRequest(input *CreateVpnConnectionInput) (req *request.Request, output *CreateVpnConnectionOutput)
    func (c *EC2) CreateVpnConnectionRoute(input *CreateVpnConnectionRouteInput) (*CreateVpnConnectionRouteOutput, error)
    func (c *EC2) CreateVpnConnectionRouteRequest(input *CreateVpnConnectionRouteInput) (req *request.Request, output *CreateVpnConnectionRouteOutput)
    func (c *EC2) CreateVpnConnectionRouteWithContext(ctx aws.Context, input *CreateVpnConnectionRouteInput, opts ...request.Option) (*CreateVpnConnectionRouteOutput, error)
    func (c *EC2) CreateVpnConnectionWithContext(ctx aws.Context, input *CreateVpnConnectionInput, opts ...request.Option) (*CreateVpnConnectionOutput, error)
    func (c *EC2) CreateVpnGateway(input *CreateVpnGatewayInput) (*CreateVpnGatewayOutput, error)
    func (c *EC2) CreateVpnGatewayRequest(input *CreateVpnGatewayInput) (req *request.Request, output *CreateVpnGatewayOutput)
    func (c *EC2) CreateVpnGatewayWithContext(ctx aws.Context, input *CreateVpnGatewayInput, opts ...request.Option) (*CreateVpnGatewayOutput, error)
    func (c *EC2) DeleteCustomerGateway(input *DeleteCustomerGatewayInput) (*DeleteCustomerGatewayOutput, error)
    func (c *EC2) DeleteCustomerGatewayRequest(input *DeleteCustomerGatewayInput) (req *request.Request, output *DeleteCustomerGatewayOutput)
    func (c *EC2) DeleteCustomerGatewayWithContext(ctx aws.Context, input *DeleteCustomerGatewayInput, opts ...request.Option) (*DeleteCustomerGatewayOutput, error)
    func (c *EC2) DeleteDhcpOptions(input *DeleteDhcpOptionsInput) (*DeleteDhcpOptionsOutput, error)
    func (c *EC2) DeleteDhcpOptionsRequest(input *DeleteDhcpOptionsInput) (req *request.Request, output *DeleteDhcpOptionsOutput)
    func (c *EC2) DeleteDhcpOptionsWithContext(ctx aws.Context, input *DeleteDhcpOptionsInput, opts ...request.Option) (*DeleteDhcpOptionsOutput, error)
    func (c *EC2) DeleteEgressOnlyInternetGateway(input *DeleteEgressOnlyInternetGatewayInput) (*DeleteEgressOnlyInternetGatewayOutput, error)
    func (c *EC2) DeleteEgressOnlyInternetGatewayRequest(input *DeleteEgressOnlyInternetGatewayInput) (req *request.Request, output *DeleteEgressOnlyInternetGatewayOutput)
    func (c *EC2) DeleteEgressOnlyInternetGatewayWithContext(ctx aws.Context, input *DeleteEgressOnlyInternetGatewayInput, opts ...request.Option) (*DeleteEgressOnlyInternetGatewayOutput, error)
    func (c *EC2) DeleteFlowLogs(input *DeleteFlowLogsInput) (*DeleteFlowLogsOutput, error)
    func (c *EC2) DeleteFlowLogsRequest(input *DeleteFlowLogsInput) (req *request.Request, output *DeleteFlowLogsOutput)
    func (c *EC2) DeleteFlowLogsWithContext(ctx aws.Context, input *DeleteFlowLogsInput, opts ...request.Option) (*DeleteFlowLogsOutput, error)
    func (c *EC2) DeleteInternetGateway(input *DeleteInternetGatewayInput) (*DeleteInternetGatewayOutput, error)
    func (c *EC2) DeleteInternetGatewayRequest(input *DeleteInternetGatewayInput) (req *request.Request, output *DeleteInternetGatewayOutput)
    func (c *EC2) DeleteInternetGatewayWithContext(ctx aws.Context, input *DeleteInternetGatewayInput, opts ...request.Option) (*DeleteInternetGatewayOutput, error)
    func (c *EC2) DeleteKeyPair(input *DeleteKeyPairInput) (*DeleteKeyPairOutput, error)
    func (c *EC2) DeleteKeyPairRequest(input *DeleteKeyPairInput) (req *request.Request, output *DeleteKeyPairOutput)
    func (c *EC2) DeleteKeyPairWithContext(ctx aws.Context, input *DeleteKeyPairInput, opts ...request.Option) (*DeleteKeyPairOutput, error)
    func (c *EC2) DeleteNatGateway(input *DeleteNatGatewayInput) (*DeleteNatGatewayOutput, error)
    func (c *EC2) DeleteNatGatewayRequest(input *DeleteNatGatewayInput) (req *request.Request, output *DeleteNatGatewayOutput)
    func (c *EC2) DeleteNatGatewayWithContext(ctx aws.Context, input *DeleteNatGatewayInput, opts ...request.Option) (*DeleteNatGatewayOutput, error)
    func (c *EC2) DeleteNetworkAcl(input *DeleteNetworkAclInput) (*DeleteNetworkAclOutput, error)
    func (c *EC2) DeleteNetworkAclEntry(input *DeleteNetworkAclEntryInput) (*DeleteNetworkAclEntryOutput, error)
    func (c *EC2) DeleteNetworkAclEntryRequest(input *DeleteNetworkAclEntryInput) (req *request.Request, output *DeleteNetworkAclEntryOutput)
    func (c *EC2) DeleteNetworkAclEntryWithContext(ctx aws.Context, input *DeleteNetworkAclEntryInput, opts ...request.Option) (*DeleteNetworkAclEntryOutput, error)
    func (c *EC2) DeleteNetworkAclRequest(input *DeleteNetworkAclInput) (req *request.Request, output *DeleteNetworkAclOutput)
    func (c *EC2) DeleteNetworkAclWithContext(ctx aws.Context, input *DeleteNetworkAclInput, opts ...request.Option) (*DeleteNetworkAclOutput, error)
    func (c *EC2) DeleteNetworkInterface(input *DeleteNetworkInterfaceInput) (*DeleteNetworkInterfaceOutput, error)
    func (c *EC2) DeleteNetworkInterfaceRequest(input *DeleteNetworkInterfaceInput) (req *request.Request, output *DeleteNetworkInterfaceOutput)
    func (c *EC2) DeleteNetworkInterfaceWithContext(ctx aws.Context, input *DeleteNetworkInterfaceInput, opts ...request.Option) (*DeleteNetworkInterfaceOutput, error)
    func (c *EC2) DeletePlacementGroup(input *DeletePlacementGroupInput) (*DeletePlacementGroupOutput, error)
    func (c *EC2) DeletePlacementGroupRequest(input *DeletePlacementGroupInput) (req *request.Request, output *DeletePlacementGroupOutput)
    func (c *EC2) DeletePlacementGroupWithContext(ctx aws.Context, input *DeletePlacementGroupInput, opts ...request.Option) (*DeletePlacementGroupOutput, error)
    func (c *EC2) DeleteRoute(input *DeleteRouteInput) (*DeleteRouteOutput, error)
    func (c *EC2) DeleteRouteRequest(input *DeleteRouteInput) (req *request.Request, output *DeleteRouteOutput)
    func (c *EC2) DeleteRouteTable(input *DeleteRouteTableInput) (*DeleteRouteTableOutput, error)
    func (c *EC2) DeleteRouteTableRequest(input *DeleteRouteTableInput) (req *request.Request, output *DeleteRouteTableOutput)
    func (c *EC2) DeleteRouteTableWithContext(ctx aws.Context, input *DeleteRouteTableInput, opts ...request.Option) (*DeleteRouteTableOutput, error)
    func (c *EC2) DeleteRouteWithContext(ctx aws.Context, input *DeleteRouteInput, opts ...request.Option) (*DeleteRouteOutput, error)
    func (c *EC2) DeleteSecurityGroup(input *DeleteSecurityGroupInput) (*DeleteSecurityGroupOutput, error)
    func (c *EC2) DeleteSecurityGroupRequest(input *DeleteSecurityGroupInput) (req *request.Request, output *DeleteSecurityGroupOutput)
    func (c *EC2) DeleteSecurityGroupWithContext(ctx aws.Context, input *DeleteSecurityGroupInput, opts ...request.Option) (*DeleteSecurityGroupOutput, error)
    func (c *EC2) DeleteSnapshot(input *DeleteSnapshotInput) (*DeleteSnapshotOutput, error)
    func (c *EC2) DeleteSnapshotRequest(input *DeleteSnapshotInput) (req *request.Request, output *DeleteSnapshotOutput)
    func (c *EC2) DeleteSnapshotWithContext(ctx aws.Context, input *DeleteSnapshotInput, opts ...request.Option) (*DeleteSnapshotOutput, error)
    func (c *EC2) DeleteSpotDatafeedSubscription(input *DeleteSpotDatafeedSubscriptionInput) (*DeleteSpotDatafeedSubscriptionOutput, error)
    func (c *EC2) DeleteSpotDatafeedSubscriptionRequest(input *DeleteSpotDatafeedSubscriptionInput) (req *request.Request, output *DeleteSpotDatafeedSubscriptionOutput)
    func (c *EC2) DeleteSpotDatafeedSubscriptionWithContext(ctx aws.Context, input *DeleteSpotDatafeedSubscriptionInput, opts ...request.Option) (*DeleteSpotDatafeedSubscriptionOutput, error)
    func (c *EC2) DeleteSubnet(input *DeleteSubnetInput) (*DeleteSubnetOutput, error)
    func (c *EC2) DeleteSubnetRequest(input *DeleteSubnetInput) (req *request.Request, output *DeleteSubnetOutput)
    func (c *EC2) DeleteSubnetWithContext(ctx aws.Context, input *DeleteSubnetInput, opts ...request.Option) (*DeleteSubnetOutput, error)
    func (c *EC2) DeleteTags(input *DeleteTagsInput) (*DeleteTagsOutput, error)
    func (c *EC2) DeleteTagsRequest(input *DeleteTagsInput) (req *request.Request, output *DeleteTagsOutput)
    func (c *EC2) DeleteTagsWithContext(ctx aws.Context, input *DeleteTagsInput, opts ...request.Option) (*DeleteTagsOutput, error)
    func (c *EC2) DeleteVolume(input *DeleteVolumeInput) (*DeleteVolumeOutput, error)
    func (c *EC2) DeleteVolumeRequest(input *DeleteVolumeInput) (req *request.Request, output *DeleteVolumeOutput)
    func (c *EC2) DeleteVolumeWithContext(ctx aws.Context, input *DeleteVolumeInput, opts ...request.Option) (*DeleteVolumeOutput, error)
    func (c *EC2) DeleteVpc(input *DeleteVpcInput) (*DeleteVpcOutput, error)
    func (c *EC2) DeleteVpcEndpoints(input *DeleteVpcEndpointsInput) (*DeleteVpcEndpointsOutput, error)
    func (c *EC2) DeleteVpcEndpointsRequest(input *DeleteVpcEndpointsInput) (req *request.Request, output *DeleteVpcEndpointsOutput)
    func (c *EC2) DeleteVpcEndpointsWithContext(ctx aws.Context, input *DeleteVpcEndpointsInput, opts ...request.Option) (*DeleteVpcEndpointsOutput, error)
    func (c *EC2) DeleteVpcPeeringConnection(input *DeleteVpcPeeringConnectionInput) (*DeleteVpcPeeringConnectionOutput, error)
    func (c *EC2) DeleteVpcPeeringConnectionRequest(input *DeleteVpcPeeringConnectionInput) (req *request.Request, output *DeleteVpcPeeringConnectionOutput)
    func (c *EC2) DeleteVpcPeeringConnectionWithContext(ctx aws.Context, input *DeleteVpcPeeringConnectionInput, opts ...request.Option) (*DeleteVpcPeeringConnectionOutput, error)
    func (c *EC2) DeleteVpcRequest(input *DeleteVpcInput) (req *request.Request, output *DeleteVpcOutput)
    func (c *EC2) DeleteVpcWithContext(ctx aws.Context, input *DeleteVpcInput, opts ...request.Option) (*DeleteVpcOutput, error)
    func (c *EC2) DeleteVpnConnection(input *DeleteVpnConnectionInput) (*DeleteVpnConnectionOutput, error)
    func (c *EC2) DeleteVpnConnectionRequest(input *DeleteVpnConnectionInput) (req *request.Request, output *DeleteVpnConnectionOutput)
    func (c *EC2) DeleteVpnConnectionRoute(input *DeleteVpnConnectionRouteInput) (*DeleteVpnConnectionRouteOutput, error)
    func (c *EC2) DeleteVpnConnectionRouteRequest(input *DeleteVpnConnectionRouteInput) (req *request.Request, output *DeleteVpnConnectionRouteOutput)
    func (c *EC2) DeleteVpnConnectionRouteWithContext(ctx aws.Context, input *DeleteVpnConnectionRouteInput, opts ...request.Option) (*DeleteVpnConnectionRouteOutput, error)
    func (c *EC2) DeleteVpnConnectionWithContext(ctx aws.Context, input *DeleteVpnConnectionInput, opts ...request.Option) (*DeleteVpnConnectionOutput, error)
    func (c *EC2) DeleteVpnGateway(input *DeleteVpnGatewayInput) (*DeleteVpnGatewayOutput, error)
    func (c *EC2) DeleteVpnGatewayRequest(input *DeleteVpnGatewayInput) (req *request.Request, output *DeleteVpnGatewayOutput)
    func (c *EC2) DeleteVpnGatewayWithContext(ctx aws.Context, input *DeleteVpnGatewayInput, opts ...request.Option) (*DeleteVpnGatewayOutput, error)
    func (c *EC2) DeregisterImage(input *DeregisterImageInput) (*DeregisterImageOutput, error)
    func (c *EC2) DeregisterImageRequest(input *DeregisterImageInput) (req *request.Request, output *DeregisterImageOutput)
    func (c *EC2) DeregisterImageWithContext(ctx aws.Context, input *DeregisterImageInput, opts ...request.Option) (*DeregisterImageOutput, error)
    func (c *EC2) DescribeAccountAttributes(input *DescribeAccountAttributesInput) (*DescribeAccountAttributesOutput, error)
    func (c *EC2) DescribeAccountAttributesRequest(input *DescribeAccountAttributesInput) (req *request.Request, output *DescribeAccountAttributesOutput)
    func (c *EC2) DescribeAccountAttributesWithContext(ctx aws.Context, input *DescribeAccountAttributesInput, opts ...request.Option) (*DescribeAccountAttributesOutput, error)
    func (c *EC2) DescribeAddresses(input *DescribeAddressesInput) (*DescribeAddressesOutput, error)
    func (c *EC2) DescribeAddressesRequest(input *DescribeAddressesInput) (req *request.Request, output *DescribeAddressesOutput)
    func (c *EC2) DescribeAddressesWithContext(ctx aws.Context, input *DescribeAddressesInput, opts ...request.Option) (*DescribeAddressesOutput, error)
    func (c *EC2) DescribeAvailabilityZones(input *DescribeAvailabilityZonesInput) (*DescribeAvailabilityZonesOutput, error)
    func (c *EC2) DescribeAvailabilityZonesRequest(input *DescribeAvailabilityZonesInput) (req *request.Request, output *DescribeAvailabilityZonesOutput)
    func (c *EC2) DescribeAvailabilityZonesWithContext(ctx aws.Context, input *DescribeAvailabilityZonesInput, opts ...request.Option) (*DescribeAvailabilityZonesOutput, error)
    func (c *EC2) DescribeBundleTasks(input *DescribeBundleTasksInput) (*DescribeBundleTasksOutput, error)
    func (c *EC2) DescribeBundleTasksRequest(input *DescribeBundleTasksInput) (req *request.Request, output *DescribeBundleTasksOutput)
    func (c *EC2) DescribeBundleTasksWithContext(ctx aws.Context, input *DescribeBundleTasksInput, opts ...request.Option) (*DescribeBundleTasksOutput, error)
    func (c *EC2) DescribeClassicLinkInstances(input *DescribeClassicLinkInstancesInput) (*DescribeClassicLinkInstancesOutput, error)
    func (c *EC2) DescribeClassicLinkInstancesRequest(input *DescribeClassicLinkInstancesInput) (req *request.Request, output *DescribeClassicLinkInstancesOutput)
    func (c *EC2) DescribeClassicLinkInstancesWithContext(ctx aws.Context, input *DescribeClassicLinkInstancesInput, opts ...request.Option) (*DescribeClassicLinkInstancesOutput, error)
    func (c *EC2) DescribeConversionTasks(input *DescribeConversionTasksInput) (*DescribeConversionTasksOutput, error)
    func (c *EC2) DescribeConversionTasksRequest(input *DescribeConversionTasksInput) (req *request.Request, output *DescribeConversionTasksOutput)
    func (c *EC2) DescribeConversionTasksWithContext(ctx aws.Context, input *DescribeConversionTasksInput, opts ...request.Option) (*DescribeConversionTasksOutput, error)
    func (c *EC2) DescribeCustomerGateways(input *DescribeCustomerGatewaysInput) (*DescribeCustomerGatewaysOutput, error)
    func (c *EC2) DescribeCustomerGatewaysRequest(input *DescribeCustomerGatewaysInput) (req *request.Request, output *DescribeCustomerGatewaysOutput)
    func (c *EC2) DescribeCustomerGatewaysWithContext(ctx aws.Context, input *DescribeCustomerGatewaysInput, opts ...request.Option) (*DescribeCustomerGatewaysOutput, error)
    func (c *EC2) DescribeDhcpOptions(input *DescribeDhcpOptionsInput) (*DescribeDhcpOptionsOutput, error)
    func (c *EC2) DescribeDhcpOptionsRequest(input *DescribeDhcpOptionsInput) (req *request.Request, output *DescribeDhcpOptionsOutput)
    func (c *EC2) DescribeDhcpOptionsWithContext(ctx aws.Context, input *DescribeDhcpOptionsInput, opts ...request.Option) (*DescribeDhcpOptionsOutput, error)
    func (c *EC2) DescribeEgressOnlyInternetGateways(input *DescribeEgressOnlyInternetGatewaysInput) (*DescribeEgressOnlyInternetGatewaysOutput, error)
    func (c *EC2) DescribeEgressOnlyInternetGatewaysRequest(input *DescribeEgressOnlyInternetGatewaysInput) (req *request.Request, output *DescribeEgressOnlyInternetGatewaysOutput)
    func (c *EC2) DescribeEgressOnlyInternetGatewaysWithContext(ctx aws.Context, input *DescribeEgressOnlyInternetGatewaysInput, opts ...request.Option) (*DescribeEgressOnlyInternetGatewaysOutput, error)
    func (c *EC2) DescribeExportTasks(input *DescribeExportTasksInput) (*DescribeExportTasksOutput, error)
    func (c *EC2) DescribeExportTasksRequest(input *DescribeExportTasksInput) (req *request.Request, output *DescribeExportTasksOutput)
    func (c *EC2) DescribeExportTasksWithContext(ctx aws.Context, input *DescribeExportTasksInput, opts ...request.Option) (*DescribeExportTasksOutput, error)
    func (c *EC2) DescribeFlowLogs(input *DescribeFlowLogsInput) (*DescribeFlowLogsOutput, error)
    func (c *EC2) DescribeFlowLogsRequest(input *DescribeFlowLogsInput) (req *request.Request, output *DescribeFlowLogsOutput)
    func (c *EC2) DescribeFlowLogsWithContext(ctx aws.Context, input *DescribeFlowLogsInput, opts ...request.Option) (*DescribeFlowLogsOutput, error)
    func (c *EC2) DescribeFpgaImages(input *DescribeFpgaImagesInput) (*DescribeFpgaImagesOutput, error)
    func (c *EC2) DescribeFpgaImagesRequest(input *DescribeFpgaImagesInput) (req *request.Request, output *DescribeFpgaImagesOutput)
    func (c *EC2) DescribeFpgaImagesWithContext(ctx aws.Context, input *DescribeFpgaImagesInput, opts ...request.Option) (*DescribeFpgaImagesOutput, error)
    func (c *EC2) DescribeHostReservationOfferings(input *DescribeHostReservationOfferingsInput) (*DescribeHostReservationOfferingsOutput, error)
    func (c *EC2) DescribeHostReservationOfferingsRequest(input *DescribeHostReservationOfferingsInput) (req *request.Request, output *DescribeHostReservationOfferingsOutput)
    func (c *EC2) DescribeHostReservationOfferingsWithContext(ctx aws.Context, input *DescribeHostReservationOfferingsInput, opts ...request.Option) (*DescribeHostReservationOfferingsOutput, error)
    func (c *EC2) DescribeHostReservations(input *DescribeHostReservationsInput) (*DescribeHostReservationsOutput, error)
    func (c *EC2) DescribeHostReservationsRequest(input *DescribeHostReservationsInput) (req *request.Request, output *DescribeHostReservationsOutput)
    func (c *EC2) DescribeHostReservationsWithContext(ctx aws.Context, input *DescribeHostReservationsInput, opts ...request.Option) (*DescribeHostReservationsOutput, error)
    func (c *EC2) DescribeHosts(input *DescribeHostsInput) (*DescribeHostsOutput, error)
    func (c *EC2) DescribeHostsRequest(input *DescribeHostsInput) (req *request.Request, output *DescribeHostsOutput)
    func (c *EC2) DescribeHostsWithContext(ctx aws.Context, input *DescribeHostsInput, opts ...request.Option) (*DescribeHostsOutput, error)
    func (c *EC2) DescribeIamInstanceProfileAssociations(input *DescribeIamInstanceProfileAssociationsInput) (*DescribeIamInstanceProfileAssociationsOutput, error)
    func (c *EC2) DescribeIamInstanceProfileAssociationsRequest(input *DescribeIamInstanceProfileAssociationsInput) (req *request.Request, output *DescribeIamInstanceProfileAssociationsOutput)
    func (c *EC2) DescribeIamInstanceProfileAssociationsWithContext(ctx aws.Context, input *DescribeIamInstanceProfileAssociationsInput, opts ...request.Option) (*DescribeIamInstanceProfileAssociationsOutput, error)
    func (c *EC2) DescribeIdFormat(input *DescribeIdFormatInput) (*DescribeIdFormatOutput, error)
    func (c *EC2) DescribeIdFormatRequest(input *DescribeIdFormatInput) (req *request.Request, output *DescribeIdFormatOutput)
    func (c *EC2) DescribeIdFormatWithContext(ctx aws.Context, input *DescribeIdFormatInput, opts ...request.Option) (*DescribeIdFormatOutput, error)
    func (c *EC2) DescribeIdentityIdFormat(input *DescribeIdentityIdFormatInput) (*DescribeIdentityIdFormatOutput, error)
    func (c *EC2) DescribeIdentityIdFormatRequest(input *DescribeIdentityIdFormatInput) (req *request.Request, output *DescribeIdentityIdFormatOutput)
    func (c *EC2) DescribeIdentityIdFormatWithContext(ctx aws.Context, input *DescribeIdentityIdFormatInput, opts ...request.Option) (*DescribeIdentityIdFormatOutput, error)
    func (c *EC2) DescribeImageAttribute(input *DescribeImageAttributeInput) (*DescribeImageAttributeOutput, error)
    func (c *EC2) DescribeImageAttributeRequest(input *DescribeImageAttributeInput) (req *request.Request, output *DescribeImageAttributeOutput)
    func (c *EC2) DescribeImageAttributeWithContext(ctx aws.Context, input *DescribeImageAttributeInput, opts ...request.Option) (*DescribeImageAttributeOutput, error)
    func (c *EC2) DescribeImages(input *DescribeImagesInput) (*DescribeImagesOutput, error)
    func (c *EC2) DescribeImagesRequest(input *DescribeImagesInput) (req *request.Request, output *DescribeImagesOutput)
    func (c *EC2) DescribeImagesWithContext(ctx aws.Context, input *DescribeImagesInput, opts ...request.Option) (*DescribeImagesOutput, error)
    func (c *EC2) DescribeImportImageTasks(input *DescribeImportImageTasksInput) (*DescribeImportImageTasksOutput, error)
    func (c *EC2) DescribeImportImageTasksRequest(input *DescribeImportImageTasksInput) (req *request.Request, output *DescribeImportImageTasksOutput)
    func (c *EC2) DescribeImportImageTasksWithContext(ctx aws.Context, input *DescribeImportImageTasksInput, opts ...request.Option) (*DescribeImportImageTasksOutput, error)
    func (c *EC2) DescribeImportSnapshotTasks(input *DescribeImportSnapshotTasksInput) (*DescribeImportSnapshotTasksOutput, error)
    func (c *EC2) DescribeImportSnapshotTasksRequest(input *DescribeImportSnapshotTasksInput) (req *request.Request, output *DescribeImportSnapshotTasksOutput)
    func (c *EC2) DescribeImportSnapshotTasksWithContext(ctx aws.Context, input *DescribeImportSnapshotTasksInput, opts ...request.Option) (*DescribeImportSnapshotTasksOutput, error)
    func (c *EC2) DescribeInstanceAttribute(input *DescribeInstanceAttributeInput) (*DescribeInstanceAttributeOutput, error)
    func (c *EC2) DescribeInstanceAttributeRequest(input *DescribeInstanceAttributeInput) (req *request.Request, output *DescribeInstanceAttributeOutput)
    func (c *EC2) DescribeInstanceAttributeWithContext(ctx aws.Context, input *DescribeInstanceAttributeInput, opts ...request.Option) (*DescribeInstanceAttributeOutput, error)
    func (c *EC2) DescribeInstanceStatus(input *DescribeInstanceStatusInput) (*DescribeInstanceStatusOutput, error)
    func (c *EC2) DescribeInstanceStatusPages(input *DescribeInstanceStatusInput, fn func(*DescribeInstanceStatusOutput, bool) bool) error
    func (c *EC2) DescribeInstanceStatusPagesWithContext(ctx aws.Context, input *DescribeInstanceStatusInput, fn func(*DescribeInstanceStatusOutput, bool) bool, opts ...request.Option) error
    func (c *EC2) DescribeInstanceStatusRequest(input *DescribeInstanceStatusInput) (req *request.Request, output *DescribeInstanceStatusOutput)
    func (c *EC2) DescribeInstanceStatusWithContext(ctx aws.Context, input *DescribeInstanceStatusInput, opts ...request.Option) (*DescribeInstanceStatusOutput, error)
    func (c *EC2) DescribeInstances(input *DescribeInstancesInput) (*DescribeInstancesOutput, error)
    func (c *EC2) DescribeInstancesPages(input *DescribeInstancesInput, fn func(*DescribeInstancesOutput, bool) bool) error
    func (c *EC2) DescribeInstancesPagesWithContext(ctx aws.Context, input *DescribeInstancesInput, fn func(*DescribeInstancesOutput, bool) bool, opts ...request.Option) error
    func (c *EC2) DescribeInstancesRequest(input *DescribeInstancesInput) (req *request.Request, output *DescribeInstancesOutput)
    func (c *EC2) DescribeInstancesWithContext(ctx aws.Context, input *DescribeInstancesInput, opts ...request.Option) (*DescribeInstancesOutput, error)
    func (c *EC2) DescribeInternetGateways(input *DescribeInternetGatewaysInput) (*DescribeInternetGatewaysOutput, error)
    func (c *EC2) DescribeInternetGatewaysRequest(input *DescribeInternetGatewaysInput) (req *request.Request, output *DescribeInternetGatewaysOutput)
    func (c *EC2) DescribeInternetGatewaysWithContext(ctx aws.Context, input *DescribeInternetGatewaysInput, opts ...request.Option) (*DescribeInternetGatewaysOutput, error)
    func (c *EC2) DescribeKeyPairs(input *DescribeKeyPairsInput) (*DescribeKeyPairsOutput, error)
    func (c *EC2) DescribeKeyPairsRequest(input *DescribeKeyPairsInput) (req *request.Request, output *DescribeKeyPairsOutput)
    func (c *EC2) DescribeKeyPairsWithContext(ctx aws.Context, input *DescribeKeyPairsInput, opts ...request.Option) (*DescribeKeyPairsOutput, error)
    func (c *EC2) DescribeMovingAddresses(input *DescribeMovingAddressesInput) (*DescribeMovingAddressesOutput, error)
    func (c *EC2) DescribeMovingAddressesRequest(input *DescribeMovingAddressesInput) (req *request.Request, output *DescribeMovingAddressesOutput)
    func (c *EC2) DescribeMovingAddressesWithContext(ctx aws.Context, input *DescribeMovingAddressesInput, opts ...request.Option) (*DescribeMovingAddressesOutput, error)
    func (c *EC2) DescribeNatGateways(input *DescribeNatGatewaysInput) (*DescribeNatGatewaysOutput, error)
    func (c *EC2) DescribeNatGatewaysPages(input *DescribeNatGatewaysInput, fn func(*DescribeNatGatewaysOutput, bool) bool) error
    func (c *EC2) DescribeNatGatewaysPagesWithContext(ctx aws.Context, input *DescribeNatGatewaysInput, fn func(*DescribeNatGatewaysOutput, bool) bool, opts ...request.Option) error
    func (c *EC2) DescribeNatGatewaysRequest(input *DescribeNatGatewaysInput) (req *request.Request, output *DescribeNatGatewaysOutput)
    func (c *EC2) DescribeNatGatewaysWithContext(ctx aws.Context, input *DescribeNatGatewaysInput, opts ...request.Option) (*DescribeNatGatewaysOutput, error)
    func (c *EC2) DescribeNetworkAcls(input *DescribeNetworkAclsInput) (*DescribeNetworkAclsOutput, error)
    func (c *EC2) DescribeNetworkAclsRequest(input *DescribeNetworkAclsInput) (req *request.Request, output *DescribeNetworkAclsOutput)
    func (c *EC2) DescribeNetworkAclsWithContext(ctx aws.Context, input *DescribeNetworkAclsInput, opts ...request.Option) (*DescribeNetworkAclsOutput, error)
    func (c *EC2) DescribeNetworkInterfaceAttribute(input *DescribeNetworkInterfaceAttributeInput) (*DescribeNetworkInterfaceAttributeOutput, error)
    func (c *EC2) DescribeNetworkInterfaceAttributeRequest(input *DescribeNetworkInterfaceAttributeInput) (req *request.Request, output *DescribeNetworkInterfaceAttributeOutput)
    func (c *EC2) DescribeNetworkInterfaceAttributeWithContext(ctx aws.Context, input *DescribeNetworkInterfaceAttributeInput, opts ...request.Option) (*DescribeNetworkInterfaceAttributeOutput, error)
    func (c *EC2) DescribeNetworkInterfaces(input *DescribeNetworkInterfacesInput) (*DescribeNetworkInterfacesOutput, error)
    func (c *EC2) DescribeNetworkInterfacesRequest(input *DescribeNetworkInterfacesInput) (req *request.Request, output *DescribeNetworkInterfacesOutput)
    func (c *EC2) DescribeNetworkInterfacesWithContext(ctx aws.Context, input *DescribeNetworkInterfacesInput, opts ...request.Option) (*DescribeNetworkInterfacesOutput, error)
    func (c *EC2) DescribePlacementGroups(input *DescribePlacementGroupsInput) (*DescribePlacementGroupsOutput, error)
    func (c *EC2) DescribePlacementGroupsRequest(input *DescribePlacementGroupsInput) (req *request.Request, output *DescribePlacementGroupsOutput)
    func (c *EC2) DescribePlacementGroupsWithContext(ctx aws.Context, input *DescribePlacementGroupsInput, opts ...request.Option) (*DescribePlacementGroupsOutput, error)
    func (c *EC2) DescribePrefixLists(input *DescribePrefixListsInput) (*DescribePrefixListsOutput, error)
    func (c *EC2) DescribePrefixListsRequest(input *DescribePrefixListsInput) (req *request.Request, output *DescribePrefixListsOutput)
    func (c *EC2) DescribePrefixListsWithContext(ctx aws.Context, input *DescribePrefixListsInput, opts ...request.Option) (*DescribePrefixListsOutput, error)
    func (c *EC2) DescribeRegions(input *DescribeRegionsInput) (*DescribeRegionsOutput, error)
    func (c *EC2) DescribeRegionsRequest(input *DescribeRegionsInput) (req *request.Request, output *DescribeRegionsOutput)
    func (c *EC2) DescribeRegionsWithContext(ctx aws.Context, input *DescribeRegionsInput, opts ...request.Option) (*DescribeRegionsOutput, error)
    func (c *EC2) DescribeReservedInstances(input *DescribeReservedInstancesInput) (*DescribeReservedInstancesOutput, error)
    func (c *EC2) DescribeReservedInstancesListings(input *DescribeReservedInstancesListingsInput) (*DescribeReservedInstancesListingsOutput, error)
    func (c *EC2) DescribeReservedInstancesListingsRequest(input *DescribeReservedInstancesListingsInput) (req *request.Request, output *DescribeReservedInstancesListingsOutput)
    func (c *EC2) DescribeReservedInstancesListingsWithContext(ctx aws.Context, input *DescribeReservedInstancesListingsInput, opts ...request.Option) (*DescribeReservedInstancesListingsOutput, error)
    func (c *EC2) DescribeReservedInstancesModifications(input *DescribeReservedInstancesModificationsInput) (*DescribeReservedInstancesModificationsOutput, error)
    func (c *EC2) DescribeReservedInstancesModificationsPages(input *DescribeReservedInstancesModificationsInput, fn func(*DescribeReservedInstancesModificationsOutput, bool) bool) error
    func (c *EC2) DescribeReservedInstancesModificationsPagesWithContext(ctx aws.Context, input *DescribeReservedInstancesModificationsInput, fn func(*DescribeReservedInstancesModificationsOutput, bool) bool, opts ...request.Option) error
    func (c *EC2) DescribeReservedInstancesModificationsRequest(input *DescribeReservedInstancesModificationsInput) (req *request.Request, output *DescribeReservedInstancesModificationsOutput)
    func (c *EC2) DescribeReservedInstancesModificationsWithContext(ctx aws.Context, input *DescribeReservedInstancesModificationsInput, opts ...request.Option) (*DescribeReservedInstancesModificationsOutput, error)
    func (c *EC2) DescribeReservedInstancesOfferings(input *DescribeReservedInstancesOfferingsInput) (*DescribeReservedInstancesOfferingsOutput, error)
    func (c *EC2) DescribeReservedInstancesOfferingsPages(input *DescribeReservedInstancesOfferingsInput, fn func(*DescribeReservedInstancesOfferingsOutput, bool) bool) error
    func (c *EC2) DescribeReservedInstancesOfferingsPagesWithContext(ctx aws.Context, input *DescribeReservedInstancesOfferingsInput, fn func(*DescribeReservedInstancesOfferingsOutput, bool) bool, opts ...request.Option) error
    func (c *EC2) DescribeReservedInstancesOfferingsRequest(input *DescribeReservedInstancesOfferingsInput) (req *request.Request, output *DescribeReservedInstancesOfferingsOutput)
    func (c *EC2) DescribeReservedInstancesOfferingsWithContext(ctx aws.Context, input *DescribeReservedInstancesOfferingsInput, opts ...request.Option) (*DescribeReservedInstancesOfferingsOutput, error)
    func (c *EC2) DescribeReservedInstancesRequest(input *DescribeReservedInstancesInput) (req *request.Request, output *DescribeReservedInstancesOutput)
    func (c *EC2) DescribeReservedInstancesWithContext(ctx aws.Context, input *DescribeReservedInstancesInput, opts ...request.Option) (*DescribeReservedInstancesOutput, error)
    func (c *EC2) DescribeRouteTables(input *DescribeRouteTablesInput) (*DescribeRouteTablesOutput, error)
    func (c *EC2) DescribeRouteTablesRequest(input *DescribeRouteTablesInput) (req *request.Request, output *DescribeRouteTablesOutput)
    func (c *EC2) DescribeRouteTablesWithContext(ctx aws.Context, input *DescribeRouteTablesInput, opts ...request.Option) (*DescribeRouteTablesOutput, error)
    func (c *EC2) DescribeScheduledInstanceAvailability(input *DescribeScheduledInstanceAvailabilityInput) (*DescribeScheduledInstanceAvailabilityOutput, error)
    func (c *EC2) DescribeScheduledInstanceAvailabilityRequest(input *DescribeScheduledInstanceAvailabilityInput) (req *request.Request, output *DescribeScheduledInstanceAvailabilityOutput)
    func (c *EC2) DescribeScheduledInstanceAvailabilityWithContext(ctx aws.Context, input *DescribeScheduledInstanceAvailabilityInput, opts ...request.Option) (*DescribeScheduledInstanceAvailabilityOutput, error)
    func (c *EC2) DescribeScheduledInstances(input *DescribeScheduledInstancesInput) (*DescribeScheduledInstancesOutput, error)
    func (c *EC2) DescribeScheduledInstancesRequest(input *DescribeScheduledInstancesInput) (req *request.Request, output *DescribeScheduledInstancesOutput)
    func (c *EC2) DescribeScheduledInstancesWithContext(ctx aws.Context, input *DescribeScheduledInstancesInput, opts ...request.Option) (*DescribeScheduledInstancesOutput, error)
    func (c *EC2) DescribeSecurityGroupReferences(input *DescribeSecurityGroupReferencesInput) (*DescribeSecurityGroupReferencesOutput, error)
    func (c *EC2) DescribeSecurityGroupReferencesRequest(input *DescribeSecurityGroupReferencesInput) (req *request.Request, output *DescribeSecurityGroupReferencesOutput)
    func (c *EC2) DescribeSecurityGroupReferencesWithContext(ctx aws.Context, input *DescribeSecurityGroupReferencesInput, opts ...request.Option) (*DescribeSecurityGroupReferencesOutput, error)
    func (c *EC2) DescribeSecurityGroups(input *DescribeSecurityGroupsInput) (*DescribeSecurityGroupsOutput, error)
    func (c *EC2) DescribeSecurityGroupsRequest(input *DescribeSecurityGroupsInput) (req *request.Request, output *DescribeSecurityGroupsOutput)
    func (c *EC2) DescribeSecurityGroupsWithContext(ctx aws.Context, input *DescribeSecurityGroupsInput, opts ...request.Option) (*DescribeSecurityGroupsOutput, error)
    func (c *EC2) DescribeSnapshotAttribute(input *DescribeSnapshotAttributeInput) (*DescribeSnapshotAttributeOutput, error)
    func (c *EC2) DescribeSnapshotAttributeRequest(input *DescribeSnapshotAttributeInput) (req *request.Request, output *DescribeSnapshotAttributeOutput)
    func (c *EC2) DescribeSnapshotAttributeWithContext(ctx aws.Context, input *DescribeSnapshotAttributeInput, opts ...request.Option) (*DescribeSnapshotAttributeOutput, error)
    func (c *EC2) DescribeSnapshots(input *DescribeSnapshotsInput) (*DescribeSnapshotsOutput, error)
    func (c *EC2) DescribeSnapshotsPages(input *DescribeSnapshotsInput, fn func(*DescribeSnapshotsOutput, bool) bool) error
    func (c *EC2) DescribeSnapshotsPagesWithContext(ctx aws.Context, input *DescribeSnapshotsInput, fn func(*DescribeSnapshotsOutput, bool) bool, opts ...request.Option) error
    func (c *EC2) DescribeSnapshotsRequest(input *DescribeSnapshotsInput) (req *request.Request, output *DescribeSnapshotsOutput)
    func (c *EC2) DescribeSnapshotsWithContext(ctx aws.Context, input *DescribeSnapshotsInput, opts ...request.Option) (*DescribeSnapshotsOutput, error)
    func (c *EC2) DescribeSpotDatafeedSubscription(input *DescribeSpotDatafeedSubscriptionInput) (*DescribeSpotDatafeedSubscriptionOutput, error)
    func (c *EC2) DescribeSpotDatafeedSubscriptionRequest(input *DescribeSpotDatafeedSubscriptionInput) (req *request.Request, output *DescribeSpotDatafeedSubscriptionOutput)
    func (c *EC2) DescribeSpotDatafeedSubscriptionWithContext(ctx aws.Context, input *DescribeSpotDatafeedSubscriptionInput, opts ...request.Option) (*DescribeSpotDatafeedSubscriptionOutput, error)
    func (c *EC2) DescribeSpotFleetInstances(input *DescribeSpotFleetInstancesInput) (*DescribeSpotFleetInstancesOutput, error)
    func (c *EC2) DescribeSpotFleetInstancesRequest(input *DescribeSpotFleetInstancesInput) (req *request.Request, output *DescribeSpotFleetInstancesOutput)
    func (c *EC2) DescribeSpotFleetInstancesWithContext(ctx aws.Context, input *DescribeSpotFleetInstancesInput, opts ...request.Option) (*DescribeSpotFleetInstancesOutput, error)
    func (c *EC2) DescribeSpotFleetRequestHistory(input *DescribeSpotFleetRequestHistoryInput) (*DescribeSpotFleetRequestHistoryOutput, error)
    func (c *EC2) DescribeSpotFleetRequestHistoryRequest(input *DescribeSpotFleetRequestHistoryInput) (req *request.Request, output *DescribeSpotFleetRequestHistoryOutput)
    func (c *EC2) DescribeSpotFleetRequestHistoryWithContext(ctx aws.Context, input *DescribeSpotFleetRequestHistoryInput, opts ...request.Option) (*DescribeSpotFleetRequestHistoryOutput, error)
    func (c *EC2) DescribeSpotFleetRequests(input *DescribeSpotFleetRequestsInput) (*DescribeSpotFleetRequestsOutput, error)
    func (c *EC2) DescribeSpotFleetRequestsPages(input *DescribeSpotFleetRequestsInput, fn func(*DescribeSpotFleetRequestsOutput, bool) bool) error
    func (c *EC2) DescribeSpotFleetRequestsPagesWithContext(ctx aws.Context, input *DescribeSpotFleetRequestsInput, fn func(*DescribeSpotFleetRequestsOutput, bool) bool, opts ...request.Option) error
    func (c *EC2) DescribeSpotFleetRequestsRequest(input *DescribeSpotFleetRequestsInput) (req *request.Request, output *DescribeSpotFleetRequestsOutput)
    func (c *EC2) DescribeSpotFleetRequestsWithContext(ctx aws.Context, input *DescribeSpotFleetRequestsInput, opts ...request.Option) (*DescribeSpotFleetRequestsOutput, error)
    func (c *EC2) DescribeSpotInstanceRequests(input *DescribeSpotInstanceRequestsInput) (*DescribeSpotInstanceRequestsOutput, error)
    func (c *EC2) DescribeSpotInstanceRequestsRequest(input *DescribeSpotInstanceRequestsInput) (req *request.Request, output *DescribeSpotInstanceRequestsOutput)
    func (c *EC2) DescribeSpotInstanceRequestsWithContext(ctx aws.Context, input *DescribeSpotInstanceRequestsInput, opts ...request.Option) (*DescribeSpotInstanceRequestsOutput, error)
    func (c *EC2) DescribeSpotPriceHistory(input *DescribeSpotPriceHistoryInput) (*DescribeSpotPriceHistoryOutput, error)
    func (c *EC2) DescribeSpotPriceHistoryPages(input *DescribeSpotPriceHistoryInput, fn func(*DescribeSpotPriceHistoryOutput, bool) bool) error
    func (c *EC2) DescribeSpotPriceHistoryPagesWithContext(ctx aws.Context, input *DescribeSpotPriceHistoryInput, fn func(*DescribeSpotPriceHistoryOutput, bool) bool, opts ...request.Option) error
    func (c *EC2) DescribeSpotPriceHistoryRequest(input *DescribeSpotPriceHistoryInput) (req *request.Request, output *DescribeSpotPriceHistoryOutput)
    func (c *EC2) DescribeSpotPriceHistoryWithContext(ctx aws.Context, input *DescribeSpotPriceHistoryInput, opts ...request.Option) (*DescribeSpotPriceHistoryOutput, error)
    func (c *EC2) DescribeStaleSecurityGroups(input *DescribeStaleSecurityGroupsInput) (*DescribeStaleSecurityGroupsOutput, error)
    func (c *EC2) DescribeStaleSecurityGroupsRequest(input *DescribeStaleSecurityGroupsInput) (req *request.Request, output *DescribeStaleSecurityGroupsOutput)
    func (c *EC2) DescribeStaleSecurityGroupsWithContext(ctx aws.Context, input *DescribeStaleSecurityGroupsInput, opts ...request.Option) (*DescribeStaleSecurityGroupsOutput, error)
    func (c *EC2) DescribeSubnets(input *DescribeSubnetsInput) (*DescribeSubnetsOutput, error)
    func (c *EC2) DescribeSubnetsRequest(input *DescribeSubnetsInput) (req *request.Request, output *DescribeSubnetsOutput)
    func (c *EC2) DescribeSubnetsWithContext(ctx aws.Context, input *DescribeSubnetsInput, opts ...request.Option) (*DescribeSubnetsOutput, error)
    func (c *EC2) DescribeTags(input *DescribeTagsInput) (*DescribeTagsOutput, error)
    func (c *EC2) DescribeTagsPages(input *DescribeTagsInput, fn func(*DescribeTagsOutput, bool) bool) error
    func (c *EC2) DescribeTagsPagesWithContext(ctx aws.Context, input *DescribeTagsInput, fn func(*DescribeTagsOutput, bool) bool, opts ...request.Option) error
    func (c *EC2) DescribeTagsRequest(input *DescribeTagsInput) (req *request.Request, output *DescribeTagsOutput)
    func (c *EC2) DescribeTagsWithContext(ctx aws.Context, input *DescribeTagsInput, opts ...request.Option) (*DescribeTagsOutput, error)
    func (c *EC2) DescribeVolumeAttribute(input *DescribeVolumeAttributeInput) (*DescribeVolumeAttributeOutput, error)
    func (c *EC2) DescribeVolumeAttributeRequest(input *DescribeVolumeAttributeInput) (req *request.Request, output *DescribeVolumeAttributeOutput)
    func (c *EC2) DescribeVolumeAttributeWithContext(ctx aws.Context, input *DescribeVolumeAttributeInput, opts ...request.Option) (*DescribeVolumeAttributeOutput, error)
    func (c *EC2) DescribeVolumeStatus(input *DescribeVolumeStatusInput) (*DescribeVolumeStatusOutput, error)
    func (c *EC2) DescribeVolumeStatusPages(input *DescribeVolumeStatusInput, fn func(*DescribeVolumeStatusOutput, bool) bool) error
    func (c *EC2) DescribeVolumeStatusPagesWithContext(ctx aws.Context, input *DescribeVolumeStatusInput, fn func(*DescribeVolumeStatusOutput, bool) bool, opts ...request.Option) error
    func (c *EC2) DescribeVolumeStatusRequest(input *DescribeVolumeStatusInput) (req *request.Request, output *DescribeVolumeStatusOutput)
    func (c *EC2) DescribeVolumeStatusWithContext(ctx aws.Context, input *DescribeVolumeStatusInput, opts ...request.Option) (*DescribeVolumeStatusOutput, error)
    func (c *EC2) DescribeVolumes(input *DescribeVolumesInput) (*DescribeVolumesOutput, error)
    func (c *EC2) DescribeVolumesModifications(input *DescribeVolumesModificationsInput) (*DescribeVolumesModificationsOutput, error)
    func (c *EC2) DescribeVolumesModificationsRequest(input *DescribeVolumesModificationsInput) (req *request.Request, output *DescribeVolumesModificationsOutput)
    func (c *EC2) DescribeVolumesModificationsWithContext(ctx aws.Context, input *DescribeVolumesModificationsInput, opts ...request.Option) (*DescribeVolumesModificationsOutput, error)
    func (c *EC2) DescribeVolumesPages(input *DescribeVolumesInput, fn func(*DescribeVolumesOutput, bool) bool) error
    func (c *EC2) DescribeVolumesPagesWithContext(ctx aws.Context, input *DescribeVolumesInput, fn func(*DescribeVolumesOutput, bool) bool, opts ...request.Option) error
    func (c *EC2) DescribeVolumesRequest(input *DescribeVolumesInput) (req *request.Request, output *DescribeVolumesOutput)
    func (c *EC2) DescribeVolumesWithContext(ctx aws.Context, input *DescribeVolumesInput, opts ...request.Option) (*DescribeVolumesOutput, error)
    func (c *EC2) DescribeVpcAttribute(input *DescribeVpcAttributeInput) (*DescribeVpcAttributeOutput, error)
    func (c *EC2) DescribeVpcAttributeRequest(input *DescribeVpcAttributeInput) (req *request.Request, output *DescribeVpcAttributeOutput)
    func (c *EC2) DescribeVpcAttributeWithContext(ctx aws.Context, input *DescribeVpcAttributeInput, opts ...request.Option) (*DescribeVpcAttributeOutput, error)
    func (c *EC2) DescribeVpcClassicLink(input *DescribeVpcClassicLinkInput) (*DescribeVpcClassicLinkOutput, error)
    func (c *EC2) DescribeVpcClassicLinkDnsSupport(input *DescribeVpcClassicLinkDnsSupportInput) (*DescribeVpcClassicLinkDnsSupportOutput, error)
    func (c *EC2) DescribeVpcClassicLinkDnsSupportRequest(input *DescribeVpcClassicLinkDnsSupportInput) (req *request.Request, output *DescribeVpcClassicLinkDnsSupportOutput)
    func (c *EC2) DescribeVpcClassicLinkDnsSupportWithContext(ctx aws.Context, input *DescribeVpcClassicLinkDnsSupportInput, opts ...request.Option) (*DescribeVpcClassicLinkDnsSupportOutput, error)
    func (c *EC2) DescribeVpcClassicLinkRequest(input *DescribeVpcClassicLinkInput) (req *request.Request, output *DescribeVpcClassicLinkOutput)
    func (c *EC2) DescribeVpcClassicLinkWithContext(ctx aws.Context, input *DescribeVpcClassicLinkInput, opts ...request.Option) (*DescribeVpcClassicLinkOutput, error)
    func (c *EC2) DescribeVpcEndpointServices(input *DescribeVpcEndpointServicesInput) (*DescribeVpcEndpointServicesOutput, error)
    func (c *EC2) DescribeVpcEndpointServicesRequest(input *DescribeVpcEndpointServicesInput) (req *request.Request, output *DescribeVpcEndpointServicesOutput)
    func (c *EC2) DescribeVpcEndpointServicesWithContext(ctx aws.Context, input *DescribeVpcEndpointServicesInput, opts ...request.Option) (*DescribeVpcEndpointServicesOutput, error)
    func (c *EC2) DescribeVpcEndpoints(input *DescribeVpcEndpointsInput) (*DescribeVpcEndpointsOutput, error)
    func (c *EC2) DescribeVpcEndpointsRequest(input *DescribeVpcEndpointsInput) (req *request.Request, output *DescribeVpcEndpointsOutput)
    func (c *EC2) DescribeVpcEndpointsWithContext(ctx aws.Context, input *DescribeVpcEndpointsInput, opts ...request.Option) (*DescribeVpcEndpointsOutput, error)
    func (c *EC2) DescribeVpcPeeringConnections(input *DescribeVpcPeeringConnectionsInput) (*DescribeVpcPeeringConnectionsOutput, error)
    func (c *EC2) DescribeVpcPeeringConnectionsRequest(input *DescribeVpcPeeringConnectionsInput) (req *request.Request, output *DescribeVpcPeeringConnectionsOutput)
    func (c *EC2) DescribeVpcPeeringConnectionsWithContext(ctx aws.Context, input *DescribeVpcPeeringConnectionsInput, opts ...request.Option) (*DescribeVpcPeeringConnectionsOutput, error)
    func (c *EC2) DescribeVpcs(input *DescribeVpcsInput) (*DescribeVpcsOutput, error)
    func (c *EC2) DescribeVpcsRequest(input *DescribeVpcsInput) (req *request.Request, output *DescribeVpcsOutput)
    func (c *EC2) DescribeVpcsWithContext(ctx aws.Context, input *DescribeVpcsInput, opts ...request.Option) (*DescribeVpcsOutput, error)
    func (c *EC2) DescribeVpnConnections(input *DescribeVpnConnectionsInput) (*DescribeVpnConnectionsOutput, error)
    func (c *EC2) DescribeVpnConnectionsRequest(input *DescribeVpnConnectionsInput) (req *request.Request, output *DescribeVpnConnectionsOutput)
    func (c *EC2) DescribeVpnConnectionsWithContext(ctx aws.Context, input *DescribeVpnConnectionsInput, opts ...request.Option) (*DescribeVpnConnectionsOutput, error)
    func (c *EC2) DescribeVpnGateways(input *DescribeVpnGatewaysInput) (*DescribeVpnGatewaysOutput, error)
    func (c *EC2) DescribeVpnGatewaysRequest(input *DescribeVpnGatewaysInput) (req *request.Request, output *DescribeVpnGatewaysOutput)
    func (c *EC2) DescribeVpnGatewaysWithContext(ctx aws.Context, input *DescribeVpnGatewaysInput, opts ...request.Option) (*DescribeVpnGatewaysOutput, error)
    func (c *EC2) DetachClassicLinkVpc(input *DetachClassicLinkVpcInput) (*DetachClassicLinkVpcOutput, error)
    func (c *EC2) DetachClassicLinkVpcRequest(input *DetachClassicLinkVpcInput) (req *request.Request, output *DetachClassicLinkVpcOutput)
    func (c *EC2) DetachClassicLinkVpcWithContext(ctx aws.Context, input *DetachClassicLinkVpcInput, opts ...request.Option) (*DetachClassicLinkVpcOutput, error)
    func (c *EC2) DetachInternetGateway(input *DetachInternetGatewayInput) (*DetachInternetGatewayOutput, error)
    func (c *EC2) DetachInternetGatewayRequest(input *DetachInternetGatewayInput) (req *request.Request, output *DetachInternetGatewayOutput)
    func (c *EC2) DetachInternetGatewayWithContext(ctx aws.Context, input *DetachInternetGatewayInput, opts ...request.Option) (*DetachInternetGatewayOutput, error)
    func (c *EC2) DetachNetworkInterface(input *DetachNetworkInterfaceInput) (*DetachNetworkInterfaceOutput, error)
    func (c *EC2) DetachNetworkInterfaceRequest(input *DetachNetworkInterfaceInput) (req *request.Request, output *DetachNetworkInterfaceOutput)
    func (c *EC2) DetachNetworkInterfaceWithContext(ctx aws.Context, input *DetachNetworkInterfaceInput, opts ...request.Option) (*DetachNetworkInterfaceOutput, error)
    func (c *EC2) DetachVolume(input *DetachVolumeInput) (*VolumeAttachment, error)
    func (c *EC2) DetachVolumeRequest(input *DetachVolumeInput) (req *request.Request, output *VolumeAttachment)
    func (c *EC2) DetachVolumeWithContext(ctx aws.Context, input *DetachVolumeInput, opts ...request.Option) (*VolumeAttachment, error)
    func (c *EC2) DetachVpnGateway(input *DetachVpnGatewayInput) (*DetachVpnGatewayOutput, error)
    func (c *EC2) DetachVpnGatewayRequest(input *DetachVpnGatewayInput) (req *request.Request, output *DetachVpnGatewayOutput)
    func (c *EC2) DetachVpnGatewayWithContext(ctx aws.Context, input *DetachVpnGatewayInput, opts ...request.Option) (*DetachVpnGatewayOutput, error)
    func (c *EC2) DisableVgwRoutePropagation(input *DisableVgwRoutePropagationInput) (*DisableVgwRoutePropagationOutput, error)
    func (c *EC2) DisableVgwRoutePropagationRequest(input *DisableVgwRoutePropagationInput) (req *request.Request, output *DisableVgwRoutePropagationOutput)
    func (c *EC2) DisableVgwRoutePropagationWithContext(ctx aws.Context, input *DisableVgwRoutePropagationInput, opts ...request.Option) (*DisableVgwRoutePropagationOutput, error)
    func (c *EC2) DisableVpcClassicLink(input *DisableVpcClassicLinkInput) (*DisableVpcClassicLinkOutput, error)
    func (c *EC2) DisableVpcClassicLinkDnsSupport(input *DisableVpcClassicLinkDnsSupportInput) (*DisableVpcClassicLinkDnsSupportOutput, error)
    func (c *EC2) DisableVpcClassicLinkDnsSupportRequest(input *DisableVpcClassicLinkDnsSupportInput) (req *request.Request, output *DisableVpcClassicLinkDnsSupportOutput)
    func (c *EC2) DisableVpcClassicLinkDnsSupportWithContext(ctx aws.Context, input *DisableVpcClassicLinkDnsSupportInput, opts ...request.Option) (*DisableVpcClassicLinkDnsSupportOutput, error)
    func (c *EC2) DisableVpcClassicLinkRequest(input *DisableVpcClassicLinkInput) (req *request.Request, output *DisableVpcClassicLinkOutput)
    func (c *EC2) DisableVpcClassicLinkWithContext(ctx aws.Context, input *DisableVpcClassicLinkInput, opts ...request.Option) (*DisableVpcClassicLinkOutput, error)
    func (c *EC2) DisassociateAddress(input *DisassociateAddressInput) (*DisassociateAddressOutput, error)
    func (c *EC2) DisassociateAddressRequest(input *DisassociateAddressInput) (req *request.Request, output *DisassociateAddressOutput)
    func (c *EC2) DisassociateAddressWithContext(ctx aws.Context, input *DisassociateAddressInput, opts ...request.Option) (*DisassociateAddressOutput, error)
    func (c *EC2) DisassociateIamInstanceProfile(input *DisassociateIamInstanceProfileInput) (*DisassociateIamInstanceProfileOutput, error)
    func (c *EC2) DisassociateIamInstanceProfileRequest(input *DisassociateIamInstanceProfileInput) (req *request.Request, output *DisassociateIamInstanceProfileOutput)
    func (c *EC2) DisassociateIamInstanceProfileWithContext(ctx aws.Context, input *DisassociateIamInstanceProfileInput, opts ...request.Option) (*DisassociateIamInstanceProfileOutput, error)
    func (c *EC2) DisassociateRouteTable(input *DisassociateRouteTableInput) (*DisassociateRouteTableOutput, error)
    func (c *EC2) DisassociateRouteTableRequest(input *DisassociateRouteTableInput) (req *request.Request, output *DisassociateRouteTableOutput)
    func (c *EC2) DisassociateRouteTableWithContext(ctx aws.Context, input *DisassociateRouteTableInput, opts ...request.Option) (*DisassociateRouteTableOutput, error)
    func (c *EC2) DisassociateSubnetCidrBlock(input *DisassociateSubnetCidrBlockInput) (*DisassociateSubnetCidrBlockOutput, error)
    func (c *EC2) DisassociateSubnetCidrBlockRequest(input *DisassociateSubnetCidrBlockInput) (req *request.Request, output *DisassociateSubnetCidrBlockOutput)
    func (c *EC2) DisassociateSubnetCidrBlockWithContext(ctx aws.Context, input *DisassociateSubnetCidrBlockInput, opts ...request.Option) (*DisassociateSubnetCidrBlockOutput, error)
    func (c *EC2) DisassociateVpcCidrBlock(input *DisassociateVpcCidrBlockInput) (*DisassociateVpcCidrBlockOutput, error)
    func (c *EC2) DisassociateVpcCidrBlockRequest(input *DisassociateVpcCidrBlockInput) (req *request.Request, output *DisassociateVpcCidrBlockOutput)
    func (c *EC2) DisassociateVpcCidrBlockWithContext(ctx aws.Context, input *DisassociateVpcCidrBlockInput, opts ...request.Option) (*DisassociateVpcCidrBlockOutput, error)
    func (c *EC2) EnableVgwRoutePropagation(input *EnableVgwRoutePropagationInput) (*EnableVgwRoutePropagationOutput, error)
    func (c *EC2) EnableVgwRoutePropagationRequest(input *EnableVgwRoutePropagationInput) (req *request.Request, output *EnableVgwRoutePropagationOutput)
    func (c *EC2) EnableVgwRoutePropagationWithContext(ctx aws.Context, input *EnableVgwRoutePropagationInput, opts ...request.Option) (*EnableVgwRoutePropagationOutput, error)
    func (c *EC2) EnableVolumeIO(input *EnableVolumeIOInput) (*EnableVolumeIOOutput, error)
    func (c *EC2) EnableVolumeIORequest(input *EnableVolumeIOInput) (req *request.Request, output *EnableVolumeIOOutput)
    func (c *EC2) EnableVolumeIOWithContext(ctx aws.Context, input *EnableVolumeIOInput, opts ...request.Option) (*EnableVolumeIOOutput, error)
    func (c *EC2) EnableVpcClassicLink(input *EnableVpcClassicLinkInput) (*EnableVpcClassicLinkOutput, error)
    func (c *EC2) EnableVpcClassicLinkDnsSupport(input *EnableVpcClassicLinkDnsSupportInput) (*EnableVpcClassicLinkDnsSupportOutput, error)
    func (c *EC2) EnableVpcClassicLinkDnsSupportRequest(input *EnableVpcClassicLinkDnsSupportInput) (req *request.Request, output *EnableVpcClassicLinkDnsSupportOutput)
    func (c *EC2) EnableVpcClassicLinkDnsSupportWithContext(ctx aws.Context, input *EnableVpcClassicLinkDnsSupportInput, opts ...request.Option) (*EnableVpcClassicLinkDnsSupportOutput, error)
    func (c *EC2) EnableVpcClassicLinkRequest(input *EnableVpcClassicLinkInput) (req *request.Request, output *EnableVpcClassicLinkOutput)
    func (c *EC2) EnableVpcClassicLinkWithContext(ctx aws.Context, input *EnableVpcClassicLinkInput, opts ...request.Option) (*EnableVpcClassicLinkOutput, error)
    func (c *EC2) GetConsoleOutput(input *GetConsoleOutputInput) (*GetConsoleOutputOutput, error)
    func (c *EC2) GetConsoleOutputRequest(input *GetConsoleOutputInput) (req *request.Request, output *GetConsoleOutputOutput)
    func (c *EC2) GetConsoleOutputWithContext(ctx aws.Context, input *GetConsoleOutputInput, opts ...request.Option) (*GetConsoleOutputOutput, error)
    func (c *EC2) GetConsoleScreenshot(input *GetConsoleScreenshotInput) (*GetConsoleScreenshotOutput, error)
    func (c *EC2) GetConsoleScreenshotRequest(input *GetConsoleScreenshotInput) (req *request.Request, output *GetConsoleScreenshotOutput)
    func (c *EC2) GetConsoleScreenshotWithContext(ctx aws.Context, input *GetConsoleScreenshotInput, opts ...request.Option) (*GetConsoleScreenshotOutput, error)
    func (c *EC2) GetHostReservationPurchasePreview(input *GetHostReservationPurchasePreviewInput) (*GetHostReservationPurchasePreviewOutput, error)
    func (c *EC2) GetHostReservationPurchasePreviewRequest(input *GetHostReservationPurchasePreviewInput) (req *request.Request, output *GetHostReservationPurchasePreviewOutput)
    func (c *EC2) GetHostReservationPurchasePreviewWithContext(ctx aws.Context, input *GetHostReservationPurchasePreviewInput, opts ...request.Option) (*GetHostReservationPurchasePreviewOutput, error)
    func (c *EC2) GetPasswordData(input *GetPasswordDataInput) (*GetPasswordDataOutput, error)
    func (c *EC2) GetPasswordDataRequest(input *GetPasswordDataInput) (req *request.Request, output *GetPasswordDataOutput)
    func (c *EC2) GetPasswordDataWithContext(ctx aws.Context, input *GetPasswordDataInput, opts ...request.Option) (*GetPasswordDataOutput, error)
    func (c *EC2) GetReservedInstancesExchangeQuote(input *GetReservedInstancesExchangeQuoteInput) (*GetReservedInstancesExchangeQuoteOutput, error)
    func (c *EC2) GetReservedInstancesExchangeQuoteRequest(input *GetReservedInstancesExchangeQuoteInput) (req *request.Request, output *GetReservedInstancesExchangeQuoteOutput)
    func (c *EC2) GetReservedInstancesExchangeQuoteWithContext(ctx aws.Context, input *GetReservedInstancesExchangeQuoteInput, opts ...request.Option) (*GetReservedInstancesExchangeQuoteOutput, error)
    func (c *EC2) ImportImage(input *ImportImageInput) (*ImportImageOutput, error)
    func (c *EC2) ImportImageRequest(input *ImportImageInput) (req *request.Request, output *ImportImageOutput)
    func (c *EC2) ImportImageWithContext(ctx aws.Context, input *ImportImageInput, opts ...request.Option) (*ImportImageOutput, error)
    func (c *EC2) ImportInstance(input *ImportInstanceInput) (*ImportInstanceOutput, error)
    func (c *EC2) ImportInstanceRequest(input *ImportInstanceInput) (req *request.Request, output *ImportInstanceOutput)
    func (c *EC2) ImportInstanceWithContext(ctx aws.Context, input *ImportInstanceInput, opts ...request.Option) (*ImportInstanceOutput, error)
    func (c *EC2) ImportKeyPair(input *ImportKeyPairInput) (*ImportKeyPairOutput, error)
    func (c *EC2) ImportKeyPairRequest(input *ImportKeyPairInput) (req *request.Request, output *ImportKeyPairOutput)
    func (c *EC2) ImportKeyPairWithContext(ctx aws.Context, input *ImportKeyPairInput, opts ...request.Option) (*ImportKeyPairOutput, error)
    func (c *EC2) ImportSnapshot(input *ImportSnapshotInput) (*ImportSnapshotOutput, error)
    func (c *EC2) ImportSnapshotRequest(input *ImportSnapshotInput) (req *request.Request, output *ImportSnapshotOutput)
    func (c *EC2) ImportSnapshotWithContext(ctx aws.Context, input *ImportSnapshotInput, opts ...request.Option) (*ImportSnapshotOutput, error)
    func (c *EC2) ImportVolume(input *ImportVolumeInput) (*ImportVolumeOutput, error)
    func (c *EC2) ImportVolumeRequest(input *ImportVolumeInput) (req *request.Request, output *ImportVolumeOutput)
    func (c *EC2) ImportVolumeWithContext(ctx aws.Context, input *ImportVolumeInput, opts ...request.Option) (*ImportVolumeOutput, error)
    func (c *EC2) ModifyHosts(input *ModifyHostsInput) (*ModifyHostsOutput, error)
    func (c *EC2) ModifyHostsRequest(input *ModifyHostsInput) (req *request.Request, output *ModifyHostsOutput)
    func (c *EC2) ModifyHostsWithContext(ctx aws.Context, input *ModifyHostsInput, opts ...request.Option) (*ModifyHostsOutput, error)
    func (c *EC2) ModifyIdFormat(input *ModifyIdFormatInput) (*ModifyIdFormatOutput, error)
    func (c *EC2) ModifyIdFormatRequest(input *ModifyIdFormatInput) (req *request.Request, output *ModifyIdFormatOutput)
    func (c *EC2) ModifyIdFormatWithContext(ctx aws.Context, input *ModifyIdFormatInput, opts ...request.Option) (*ModifyIdFormatOutput, error)
    func (c *EC2) ModifyIdentityIdFormat(input *ModifyIdentityIdFormatInput) (*ModifyIdentityIdFormatOutput, error)
    func (c *EC2) ModifyIdentityIdFormatRequest(input *ModifyIdentityIdFormatInput) (req *request.Request, output *ModifyIdentityIdFormatOutput)
    func (c *EC2) ModifyIdentityIdFormatWithContext(ctx aws.Context, input *ModifyIdentityIdFormatInput, opts ...request.Option) (*ModifyIdentityIdFormatOutput, error)
    func (c *EC2) ModifyImageAttribute(input *ModifyImageAttributeInput) (*ModifyImageAttributeOutput, error)
    func (c *EC2) ModifyImageAttributeRequest(input *ModifyImageAttributeInput) (req *request.Request, output *ModifyImageAttributeOutput)
    func (c *EC2) ModifyImageAttributeWithContext(ctx aws.Context, input *ModifyImageAttributeInput, opts ...request.Option) (*ModifyImageAttributeOutput, error)
    func (c *EC2) ModifyInstanceAttribute(input *ModifyInstanceAttributeInput) (*ModifyInstanceAttributeOutput, error)
    func (c *EC2) ModifyInstanceAttributeRequest(input *ModifyInstanceAttributeInput) (req *request.Request, output *ModifyInstanceAttributeOutput)
    func (c *EC2) ModifyInstanceAttributeWithContext(ctx aws.Context, input *ModifyInstanceAttributeInput, opts ...request.Option) (*ModifyInstanceAttributeOutput, error)
    func (c *EC2) ModifyInstancePlacement(input *ModifyInstancePlacementInput) (*ModifyInstancePlacementOutput, error)
    func (c *EC2) ModifyInstancePlacementRequest(input *ModifyInstancePlacementInput) (req *request.Request, output *ModifyInstancePlacementOutput)
    func (c *EC2) ModifyInstancePlacementWithContext(ctx aws.Context, input *ModifyInstancePlacementInput, opts ...request.Option) (*ModifyInstancePlacementOutput, error)
    func (c *EC2) ModifyNetworkInterfaceAttribute(input *ModifyNetworkInterfaceAttributeInput) (*ModifyNetworkInterfaceAttributeOutput, error)
    func (c *EC2) ModifyNetworkInterfaceAttributeRequest(input *ModifyNetworkInterfaceAttributeInput) (req *request.Request, output *ModifyNetworkInterfaceAttributeOutput)
    func (c *EC2) ModifyNetworkInterfaceAttributeWithContext(ctx aws.Context, input *ModifyNetworkInterfaceAttributeInput, opts ...request.Option) (*ModifyNetworkInterfaceAttributeOutput, error)
    func (c *EC2) ModifyReservedInstances(input *ModifyReservedInstancesInput) (*ModifyReservedInstancesOutput, error)
    func (c *EC2) ModifyReservedInstancesRequest(input *ModifyReservedInstancesInput) (req *request.Request, output *ModifyReservedInstancesOutput)
    func (c *EC2) ModifyReservedInstancesWithContext(ctx aws.Context, input *ModifyReservedInstancesInput, opts ...request.Option) (*ModifyReservedInstancesOutput, error)
    func (c *EC2) ModifySnapshotAttribute(input *ModifySnapshotAttributeInput) (*ModifySnapshotAttributeOutput, error)
    func (c *EC2) ModifySnapshotAttributeRequest(input *ModifySnapshotAttributeInput) (req *request.Request, output *ModifySnapshotAttributeOutput)
    func (c *EC2) ModifySnapshotAttributeWithContext(ctx aws.Context, input *ModifySnapshotAttributeInput, opts ...request.Option) (*ModifySnapshotAttributeOutput, error)
    func (c *EC2) ModifySpotFleetRequest(input *ModifySpotFleetRequestInput) (*ModifySpotFleetRequestOutput, error)
    func (c *EC2) ModifySpotFleetRequestRequest(input *ModifySpotFleetRequestInput) (req *request.Request, output *ModifySpotFleetRequestOutput)
    func (c *EC2) ModifySpotFleetRequestWithContext(ctx aws.Context, input *ModifySpotFleetRequestInput, opts ...request.Option) (*ModifySpotFleetRequestOutput, error)
    func (c *EC2) ModifySubnetAttribute(input *ModifySubnetAttributeInput) (*ModifySubnetAttributeOutput, error)
    func (c *EC2) ModifySubnetAttributeRequest(input *ModifySubnetAttributeInput) (req *request.Request, output *ModifySubnetAttributeOutput)
    func (c *EC2) ModifySubnetAttributeWithContext(ctx aws.Context, input *ModifySubnetAttributeInput, opts ...request.Option) (*ModifySubnetAttributeOutput, error)
    func (c *EC2) ModifyVolume(input *ModifyVolumeInput) (*ModifyVolumeOutput, error)
    func (c *EC2) ModifyVolumeAttribute(input *ModifyVolumeAttributeInput) (*ModifyVolumeAttributeOutput, error)
    func (c *EC2) ModifyVolumeAttributeRequest(input *ModifyVolumeAttributeInput) (req *request.Request, output *ModifyVolumeAttributeOutput)
    func (c *EC2) ModifyVolumeAttributeWithContext(ctx aws.Context, input *ModifyVolumeAttributeInput, opts ...request.Option) (*ModifyVolumeAttributeOutput, error)
    func (c *EC2) ModifyVolumeRequest(input *ModifyVolumeInput) (req *request.Request, output *ModifyVolumeOutput)
    func (c *EC2) ModifyVolumeWithContext(ctx aws.Context, input *ModifyVolumeInput, opts ...request.Option) (*ModifyVolumeOutput, error)
    func (c *EC2) ModifyVpcAttribute(input *ModifyVpcAttributeInput) (*ModifyVpcAttributeOutput, error)
    func (c *EC2) ModifyVpcAttributeRequest(input *ModifyVpcAttributeInput) (req *request.Request, output *ModifyVpcAttributeOutput)
    func (c *EC2) ModifyVpcAttributeWithContext(ctx aws.Context, input *ModifyVpcAttributeInput, opts ...request.Option) (*ModifyVpcAttributeOutput, error)
    func (c *EC2) ModifyVpcEndpoint(input *ModifyVpcEndpointInput) (*ModifyVpcEndpointOutput, error)
    func (c *EC2) ModifyVpcEndpointRequest(input *ModifyVpcEndpointInput) (req *request.Request, output *ModifyVpcEndpointOutput)
    func (c *EC2) ModifyVpcEndpointWithContext(ctx aws.Context, input *ModifyVpcEndpointInput, opts ...request.Option) (*ModifyVpcEndpointOutput, error)
    func (c *EC2) ModifyVpcPeeringConnectionOptions(input *ModifyVpcPeeringConnectionOptionsInput) (*ModifyVpcPeeringConnectionOptionsOutput, error)
    func (c *EC2) ModifyVpcPeeringConnectionOptionsRequest(input *ModifyVpcPeeringConnectionOptionsInput) (req *request.Request, output *ModifyVpcPeeringConnectionOptionsOutput)
    func (c *EC2) ModifyVpcPeeringConnectionOptionsWithContext(ctx aws.Context, input *ModifyVpcPeeringConnectionOptionsInput, opts ...request.Option) (*ModifyVpcPeeringConnectionOptionsOutput, error)
    func (c *EC2) MonitorInstances(input *MonitorInstancesInput) (*MonitorInstancesOutput, error)
    func (c *EC2) MonitorInstancesRequest(input *MonitorInstancesInput) (req *request.Request, output *MonitorInstancesOutput)
    func (c *EC2) MonitorInstancesWithContext(ctx aws.Context, input *MonitorInstancesInput, opts ...request.Option) (*MonitorInstancesOutput, error)
    func (c *EC2) MoveAddressToVpc(input *MoveAddressToVpcInput) (*MoveAddressToVpcOutput, error)
    func (c *EC2) MoveAddressToVpcRequest(input *MoveAddressToVpcInput) (req *request.Request, output *MoveAddressToVpcOutput)
    func (c *EC2) MoveAddressToVpcWithContext(ctx aws.Context, input *MoveAddressToVpcInput, opts ...request.Option) (*MoveAddressToVpcOutput, error)
    func (c *EC2) PurchaseHostReservation(input *PurchaseHostReservationInput) (*PurchaseHostReservationOutput, error)
    func (c *EC2) PurchaseHostReservationRequest(input *PurchaseHostReservationInput) (req *request.Request, output *PurchaseHostReservationOutput)
    func (c *EC2) PurchaseHostReservationWithContext(ctx aws.Context, input *PurchaseHostReservationInput, opts ...request.Option) (*PurchaseHostReservationOutput, error)
    func (c *EC2) PurchaseReservedInstancesOffering(input *PurchaseReservedInstancesOfferingInput) (*PurchaseReservedInstancesOfferingOutput, error)
    func (c *EC2) PurchaseReservedInstancesOfferingRequest(input *PurchaseReservedInstancesOfferingInput) (req *request.Request, output *PurchaseReservedInstancesOfferingOutput)
    func (c *EC2) PurchaseReservedInstancesOfferingWithContext(ctx aws.Context, input *PurchaseReservedInstancesOfferingInput, opts ...request.Option) (*PurchaseReservedInstancesOfferingOutput, error)
    func (c *EC2) PurchaseScheduledInstances(input *PurchaseScheduledInstancesInput) (*PurchaseScheduledInstancesOutput, error)
    func (c *EC2) PurchaseScheduledInstancesRequest(input *PurchaseScheduledInstancesInput) (req *request.Request, output *PurchaseScheduledInstancesOutput)
    func (c *EC2) PurchaseScheduledInstancesWithContext(ctx aws.Context, input *PurchaseScheduledInstancesInput, opts ...request.Option) (*PurchaseScheduledInstancesOutput, error)
    func (c *EC2) RebootInstances(input *RebootInstancesInput) (*RebootInstancesOutput, error)
    func (c *EC2) RebootInstancesRequest(input *RebootInstancesInput) (req *request.Request, output *RebootInstancesOutput)
    func (c *EC2) RebootInstancesWithContext(ctx aws.Context, input *RebootInstancesInput, opts ...request.Option) (*RebootInstancesOutput, error)
    func (c *EC2) RegisterImage(input *RegisterImageInput) (*RegisterImageOutput, error)
    func (c *EC2) RegisterImageRequest(input *RegisterImageInput) (req *request.Request, output *RegisterImageOutput)
    func (c *EC2) RegisterImageWithContext(ctx aws.Context, input *RegisterImageInput, opts ...request.Option) (*RegisterImageOutput, error)
    func (c *EC2) RejectVpcPeeringConnection(input *RejectVpcPeeringConnectionInput) (*RejectVpcPeeringConnectionOutput, error)
    func (c *EC2) RejectVpcPeeringConnectionRequest(input *RejectVpcPeeringConnectionInput) (req *request.Request, output *RejectVpcPeeringConnectionOutput)
    func (c *EC2) RejectVpcPeeringConnectionWithContext(ctx aws.Context, input *RejectVpcPeeringConnectionInput, opts ...request.Option) (*RejectVpcPeeringConnectionOutput, error)
    func (c *EC2) ReleaseAddress(input *ReleaseAddressInput) (*ReleaseAddressOutput, error)
    func (c *EC2) ReleaseAddressRequest(input *ReleaseAddressInput) (req *request.Request, output *ReleaseAddressOutput)
    func (c *EC2) ReleaseAddressWithContext(ctx aws.Context, input *ReleaseAddressInput, opts ...request.Option) (*ReleaseAddressOutput, error)
    func (c *EC2) ReleaseHosts(input *ReleaseHostsInput) (*ReleaseHostsOutput, error)
    func (c *EC2) ReleaseHostsRequest(input *ReleaseHostsInput) (req *request.Request, output *ReleaseHostsOutput)
    func (c *EC2) ReleaseHostsWithContext(ctx aws.Context, input *ReleaseHostsInput, opts ...request.Option) (*ReleaseHostsOutput, error)
    func (c *EC2) ReplaceIamInstanceProfileAssociation(input *ReplaceIamInstanceProfileAssociationInput) (*ReplaceIamInstanceProfileAssociationOutput, error)
    func (c *EC2) ReplaceIamInstanceProfileAssociationRequest(input *ReplaceIamInstanceProfileAssociationInput) (req *request.Request, output *ReplaceIamInstanceProfileAssociationOutput)
    func (c *EC2) ReplaceIamInstanceProfileAssociationWithContext(ctx aws.Context, input *ReplaceIamInstanceProfileAssociationInput, opts ...request.Option) (*ReplaceIamInstanceProfileAssociationOutput, error)
    func (c *EC2) ReplaceNetworkAclAssociation(input *ReplaceNetworkAclAssociationInput) (*ReplaceNetworkAclAssociationOutput, error)
    func (c *EC2) ReplaceNetworkAclAssociationRequest(input *ReplaceNetworkAclAssociationInput) (req *request.Request, output *ReplaceNetworkAclAssociationOutput)
    func (c *EC2) ReplaceNetworkAclAssociationWithContext(ctx aws.Context, input *ReplaceNetworkAclAssociationInput, opts ...request.Option) (*ReplaceNetworkAclAssociationOutput, error)
    func (c *EC2) ReplaceNetworkAclEntry(input *ReplaceNetworkAclEntryInput) (*ReplaceNetworkAclEntryOutput, error)
    func (c *EC2) ReplaceNetworkAclEntryRequest(input *ReplaceNetworkAclEntryInput) (req *request.Request, output *ReplaceNetworkAclEntryOutput)
    func (c *EC2) ReplaceNetworkAclEntryWithContext(ctx aws.Context, input *ReplaceNetworkAclEntryInput, opts ...request.Option) (*ReplaceNetworkAclEntryOutput, error)
    func (c *EC2) ReplaceRoute(input *ReplaceRouteInput) (*ReplaceRouteOutput, error)
    func (c *EC2) ReplaceRouteRequest(input *ReplaceRouteInput) (req *request.Request, output *ReplaceRouteOutput)
    func (c *EC2) ReplaceRouteTableAssociation(input *ReplaceRouteTableAssociationInput) (*ReplaceRouteTableAssociationOutput, error)
    func (c *EC2) ReplaceRouteTableAssociationRequest(input *ReplaceRouteTableAssociationInput) (req *request.Request, output *ReplaceRouteTableAssociationOutput)
    func (c *EC2) ReplaceRouteTableAssociationWithContext(ctx aws.Context, input *ReplaceRouteTableAssociationInput, opts ...request.Option) (*ReplaceRouteTableAssociationOutput, error)
    func (c *EC2) ReplaceRouteWithContext(ctx aws.Context, input *ReplaceRouteInput, opts ...request.Option) (*ReplaceRouteOutput, error)
    func (c *EC2) ReportInstanceStatus(input *ReportInstanceStatusInput) (*ReportInstanceStatusOutput, error)
    func (c *EC2) ReportInstanceStatusRequest(input *ReportInstanceStatusInput) (req *request.Request, output *ReportInstanceStatusOutput)
    func (c *EC2) ReportInstanceStatusWithContext(ctx aws.Context, input *ReportInstanceStatusInput, opts ...request.Option) (*ReportInstanceStatusOutput, error)
    func (c *EC2) RequestSpotFleet(input *RequestSpotFleetInput) (*RequestSpotFleetOutput, error)
    func (c *EC2) RequestSpotFleetRequest(input *RequestSpotFleetInput) (req *request.Request, output *RequestSpotFleetOutput)
    func (c *EC2) RequestSpotFleetWithContext(ctx aws.Context, input *RequestSpotFleetInput, opts ...request.Option) (*RequestSpotFleetOutput, error)
    func (c *EC2) RequestSpotInstances(input *RequestSpotInstancesInput) (*RequestSpotInstancesOutput, error)
    func (c *EC2) RequestSpotInstancesRequest(input *RequestSpotInstancesInput) (req *request.Request, output *RequestSpotInstancesOutput)
    func (c *EC2) RequestSpotInstancesWithContext(ctx aws.Context, input *RequestSpotInstancesInput, opts ...request.Option) (*RequestSpotInstancesOutput, error)
    func (c *EC2) ResetImageAttribute(input *ResetImageAttributeInput) (*ResetImageAttributeOutput, error)
    func (c *EC2) ResetImageAttributeRequest(input *ResetImageAttributeInput) (req *request.Request, output *ResetImageAttributeOutput)
    func (c *EC2) ResetImageAttributeWithContext(ctx aws.Context, input *ResetImageAttributeInput, opts ...request.Option) (*ResetImageAttributeOutput, error)
    func (c *EC2) ResetInstanceAttribute(input *ResetInstanceAttributeInput) (*ResetInstanceAttributeOutput, error)
    func (c *EC2) ResetInstanceAttributeRequest(input *ResetInstanceAttributeInput) (req *request.Request, output *ResetInstanceAttributeOutput)
    func (c *EC2) ResetInstanceAttributeWithContext(ctx aws.Context, input *ResetInstanceAttributeInput, opts ...request.Option) (*ResetInstanceAttributeOutput, error)
    func (c *EC2) ResetNetworkInterfaceAttribute(input *ResetNetworkInterfaceAttributeInput) (*ResetNetworkInterfaceAttributeOutput, error)
    func (c *EC2) ResetNetworkInterfaceAttributeRequest(input *ResetNetworkInterfaceAttributeInput) (req *request.Request, output *ResetNetworkInterfaceAttributeOutput)
    func (c *EC2) ResetNetworkInterfaceAttributeWithContext(ctx aws.Context, input *ResetNetworkInterfaceAttributeInput, opts ...request.Option) (*ResetNetworkInterfaceAttributeOutput, error)
    func (c *EC2) ResetSnapshotAttribute(input *ResetSnapshotAttributeInput) (*ResetSnapshotAttributeOutput, error)
    func (c *EC2) ResetSnapshotAttributeRequest(input *ResetSnapshotAttributeInput) (req *request.Request, output *ResetSnapshotAttributeOutput)
    func (c *EC2) ResetSnapshotAttributeWithContext(ctx aws.Context, input *ResetSnapshotAttributeInput, opts ...request.Option) (*ResetSnapshotAttributeOutput, error)
    func (c *EC2) RestoreAddressToClassic(input *RestoreAddressToClassicInput) (*RestoreAddressToClassicOutput, error)
    func (c *EC2) RestoreAddressToClassicRequest(input *RestoreAddressToClassicInput) (req *request.Request, output *RestoreAddressToClassicOutput)
    func (c *EC2) RestoreAddressToClassicWithContext(ctx aws.Context, input *RestoreAddressToClassicInput, opts ...request.Option) (*RestoreAddressToClassicOutput, error)
    func (c *EC2) RevokeSecurityGroupEgress(input *RevokeSecurityGroupEgressInput) (*RevokeSecurityGroupEgressOutput, error)
    func (c *EC2) RevokeSecurityGroupEgressRequest(input *RevokeSecurityGroupEgressInput) (req *request.Request, output *RevokeSecurityGroupEgressOutput)
    func (c *EC2) RevokeSecurityGroupEgressWithContext(ctx aws.Context, input *RevokeSecurityGroupEgressInput, opts ...request.Option) (*RevokeSecurityGroupEgressOutput, error)
    func (c *EC2) RevokeSecurityGroupIngress(input *RevokeSecurityGroupIngressInput) (*RevokeSecurityGroupIngressOutput, error)
    func (c *EC2) RevokeSecurityGroupIngressRequest(input *RevokeSecurityGroupIngressInput) (req *request.Request, output *RevokeSecurityGroupIngressOutput)
    func (c *EC2) RevokeSecurityGroupIngressWithContext(ctx aws.Context, input *RevokeSecurityGroupIngressInput, opts ...request.Option) (*RevokeSecurityGroupIngressOutput, error)
    func (c *EC2) RunInstances(input *RunInstancesInput) (*Reservation, error)
    func (c *EC2) RunInstancesRequest(input *RunInstancesInput) (req *request.Request, output *Reservation)
    func (c *EC2) RunInstancesWithContext(ctx aws.Context, input *RunInstancesInput, opts ...request.Option) (*Reservation, error)
    func (c *EC2) RunScheduledInstances(input *RunScheduledInstancesInput) (*RunScheduledInstancesOutput, error)
    func (c *EC2) RunScheduledInstancesRequest(input *RunScheduledInstancesInput) (req *request.Request, output *RunScheduledInstancesOutput)
    func (c *EC2) RunScheduledInstancesWithContext(ctx aws.Context, input *RunScheduledInstancesInput, opts ...request.Option) (*RunScheduledInstancesOutput, error)
    func (c *EC2) StartInstances(input *StartInstancesInput) (*StartInstancesOutput, error)
    func (c *EC2) StartInstancesRequest(input *StartInstancesInput) (req *request.Request, output *StartInstancesOutput)
    func (c *EC2) StartInstancesWithContext(ctx aws.Context, input *StartInstancesInput, opts ...request.Option) (*StartInstancesOutput, error)
    func (c *EC2) StopInstances(input *StopInstancesInput) (*StopInstancesOutput, error)
    func (c *EC2) StopInstancesRequest(input *StopInstancesInput) (req *request.Request, output *StopInstancesOutput)
    func (c *EC2) StopInstancesWithContext(ctx aws.Context, input *StopInstancesInput, opts ...request.Option) (*StopInstancesOutput, error)
    func (c *EC2) TerminateInstances(input *TerminateInstancesInput) (*TerminateInstancesOutput, error)
    func (c *EC2) TerminateInstancesRequest(input *TerminateInstancesInput) (req *request.Request, output *TerminateInstancesOutput)
    func (c *EC2) TerminateInstancesWithContext(ctx aws.Context, input *TerminateInstancesInput, opts ...request.Option) (*TerminateInstancesOutput, error)
    func (c *EC2) UnassignIpv6Addresses(input *UnassignIpv6AddressesInput) (*UnassignIpv6AddressesOutput, error)
    func (c *EC2) UnassignIpv6AddressesRequest(input *UnassignIpv6AddressesInput) (req *request.Request, output *UnassignIpv6AddressesOutput)
    func (c *EC2) UnassignIpv6AddressesWithContext(ctx aws.Context, input *UnassignIpv6AddressesInput, opts ...request.Option) (*UnassignIpv6AddressesOutput, error)
    func (c *EC2) UnassignPrivateIpAddresses(input *UnassignPrivateIpAddressesInput) (*UnassignPrivateIpAddressesOutput, error)
    func (c *EC2) UnassignPrivateIpAddressesRequest(input *UnassignPrivateIpAddressesInput) (req *request.Request, output *UnassignPrivateIpAddressesOutput)
    func (c *EC2) UnassignPrivateIpAddressesWithContext(ctx aws.Context, input *UnassignPrivateIpAddressesInput, opts ...request.Option) (*UnassignPrivateIpAddressesOutput, error)
    func (c *EC2) UnmonitorInstances(input *UnmonitorInstancesInput) (*UnmonitorInstancesOutput, error)
    func (c *EC2) UnmonitorInstancesRequest(input *UnmonitorInstancesInput) (req *request.Request, output *UnmonitorInstancesOutput)
    func (c *EC2) UnmonitorInstancesWithContext(ctx aws.Context, input *UnmonitorInstancesInput, opts ...request.Option) (*UnmonitorInstancesOutput, error)
    func (c *EC2) WaitUntilBundleTaskComplete(input *DescribeBundleTasksInput) error
    func (c *EC2) WaitUntilBundleTaskCompleteWithContext(ctx aws.Context, input *DescribeBundleTasksInput, opts ...request.WaiterOption) error
    func (c *EC2) WaitUntilConversionTaskCancelled(input *DescribeConversionTasksInput) error
    func (c *EC2) WaitUntilConversionTaskCancelledWithContext(ctx aws.Context, input *DescribeConversionTasksInput, opts ...request.WaiterOption) error
    func (c *EC2) WaitUntilConversionTaskCompleted(input *DescribeConversionTasksInput) error
    func (c *EC2) WaitUntilConversionTaskCompletedWithContext(ctx aws.Context, input *DescribeConversionTasksInput, opts ...request.WaiterOption) error
    func (c *EC2) WaitUntilConversionTaskDeleted(input *DescribeConversionTasksInput) error
    func (c *EC2) WaitUntilConversionTaskDeletedWithContext(ctx aws.Context, input *DescribeConversionTasksInput, opts ...request.WaiterOption) error
    func (c *EC2) WaitUntilCustomerGatewayAvailable(input *DescribeCustomerGatewaysInput) error
    func (c *EC2) WaitUntilCustomerGatewayAvailableWithContext(ctx aws.Context, input *DescribeCustomerGatewaysInput, opts ...request.WaiterOption) error
    func (c *EC2) WaitUntilExportTaskCancelled(input *DescribeExportTasksInput) error
    func (c *EC2) WaitUntilExportTaskCancelledWithContext(ctx aws.Context, input *DescribeExportTasksInput, opts ...request.WaiterOption) error
    func (c *EC2) WaitUntilExportTaskCompleted(input *DescribeExportTasksInput) error
    func (c *EC2) WaitUntilExportTaskCompletedWithContext(ctx aws.Context, input *DescribeExportTasksInput, opts ...request.WaiterOption) error
    func (c *EC2) WaitUntilImageAvailable(input *DescribeImagesInput) error
    func (c *EC2) WaitUntilImageAvailableWithContext(ctx aws.Context, input *DescribeImagesInput, opts ...request.WaiterOption) error
    func (c *EC2) WaitUntilImageExists(input *DescribeImagesInput) error
    func (c *EC2) WaitUntilImageExistsWithContext(ctx aws.Context, input *DescribeImagesInput, opts ...request.WaiterOption) error
    func (c *EC2) WaitUntilInstanceExists(input *DescribeInstancesInput) error
    func (c *EC2) WaitUntilInstanceExistsWithContext(ctx aws.Context, input *DescribeInstancesInput, opts ...request.WaiterOption) error
    func (c *EC2) WaitUntilInstanceRunning(input *DescribeInstancesInput) error
    func (c *EC2) WaitUntilInstanceRunningWithContext(ctx aws.Context, input *DescribeInstancesInput, opts ...request.WaiterOption) error
    func (c *EC2) WaitUntilInstanceStatusOk(input *DescribeInstanceStatusInput) error
    func (c *EC2) WaitUntilInstanceStatusOkWithContext(ctx aws.Context, input *DescribeInstanceStatusInput, opts ...request.WaiterOption) error
    func (c *EC2) WaitUntilInstanceStopped(input *DescribeInstancesInput) error
    func (c *EC2) WaitUntilInstanceStoppedWithContext(ctx aws.Context, input *DescribeInstancesInput, opts ...request.WaiterOption) error
    func (c *EC2) WaitUntilInstanceTerminated(input *DescribeInstancesInput) error
    func (c *EC2) WaitUntilInstanceTerminatedWithContext(ctx aws.Context, input *DescribeInstancesInput, opts ...request.WaiterOption) error
    func (c *EC2) WaitUntilKeyPairExists(input *DescribeKeyPairsInput) error
    func (c *EC2) WaitUntilKeyPairExistsWithContext(ctx aws.Context, input *DescribeKeyPairsInput, opts ...request.WaiterOption) error
    func (c *EC2) WaitUntilNatGatewayAvailable(input *DescribeNatGatewaysInput) error
    func (c *EC2) WaitUntilNatGatewayAvailableWithContext(ctx aws.Context, input *DescribeNatGatewaysInput, opts ...request.WaiterOption) error
    func (c *EC2) WaitUntilNetworkInterfaceAvailable(input *DescribeNetworkInterfacesInput) error
    func (c *EC2) WaitUntilNetworkInterfaceAvailableWithContext(ctx aws.Context, input *DescribeNetworkInterfacesInput, opts ...request.WaiterOption) error
    func (c *EC2) WaitUntilPasswordDataAvailable(input *GetPasswordDataInput) error
    func (c *EC2) WaitUntilPasswordDataAvailableWithContext(ctx aws.Context, input *GetPasswordDataInput, opts ...request.WaiterOption) error
    func (c *EC2) WaitUntilSnapshotCompleted(input *DescribeSnapshotsInput) error
    func (c *EC2) WaitUntilSnapshotCompletedWithContext(ctx aws.Context, input *DescribeSnapshotsInput, opts ...request.WaiterOption) error
    func (c *EC2) WaitUntilSpotInstanceRequestFulfilled(input *DescribeSpotInstanceRequestsInput) error
    func (c *EC2) WaitUntilSpotInstanceRequestFulfilledWithContext(ctx aws.Context, input *DescribeSpotInstanceRequestsInput, opts ...request.WaiterOption) error
    func (c *EC2) WaitUntilSubnetAvailable(input *DescribeSubnetsInput) error
    func (c *EC2) WaitUntilSubnetAvailableWithContext(ctx aws.Context, input *DescribeSubnetsInput, opts ...request.WaiterOption) error
    func (c *EC2) WaitUntilSystemStatusOk(input *DescribeInstanceStatusInput) error
    func (c *EC2) WaitUntilSystemStatusOkWithContext(ctx aws.Context, input *DescribeInstanceStatusInput, opts ...request.WaiterOption) error
    func (c *EC2) WaitUntilVolumeAvailable(input *DescribeVolumesInput) error
    func (c *EC2) WaitUntilVolumeAvailableWithContext(ctx aws.Context, input *DescribeVolumesInput, opts ...request.WaiterOption) error
    func (c *EC2) WaitUntilVolumeDeleted(input *DescribeVolumesInput) error
    func (c *EC2) WaitUntilVolumeDeletedWithContext(ctx aws.Context, input *DescribeVolumesInput, opts ...request.WaiterOption) error
    func (c *EC2) WaitUntilVolumeInUse(input *DescribeVolumesInput) error
    func (c *EC2) WaitUntilVolumeInUseWithContext(ctx aws.Context, input *DescribeVolumesInput, opts ...request.WaiterOption) error
    func (c *EC2) WaitUntilVpcAvailable(input *DescribeVpcsInput) error
    func (c *EC2) WaitUntilVpcAvailableWithContext(ctx aws.Context, input *DescribeVpcsInput, opts ...request.WaiterOption) error
    func (c *EC2) WaitUntilVpcExists(input *DescribeVpcsInput) error
    func (c *EC2) WaitUntilVpcExistsWithContext(ctx aws.Context, input *DescribeVpcsInput, opts ...request.WaiterOption) error
    func (c *EC2) WaitUntilVpcPeeringConnectionDeleted(input *DescribeVpcPeeringConnectionsInput) error
    func (c *EC2) WaitUntilVpcPeeringConnectionDeletedWithContext(ctx aws.Context, input *DescribeVpcPeeringConnectionsInput, opts ...request.WaiterOption) error
    func (c *EC2) WaitUntilVpcPeeringConnectionExists(input *DescribeVpcPeeringConnectionsInput) error
    func (c *EC2) WaitUntilVpcPeeringConnectionExistsWithContext(ctx aws.Context, input *DescribeVpcPeeringConnectionsInput, opts ...request.WaiterOption) error
    func (c *EC2) WaitUntilVpnConnectionAvailable(input *DescribeVpnConnectionsInput) error
    func (c *EC2) WaitUntilVpnConnectionAvailableWithContext(ctx aws.Context, input *DescribeVpnConnectionsInput, opts ...request.WaiterOption) error
    func (c *EC2) WaitUntilVpnConnectionDeleted(input *DescribeVpnConnectionsInput) error
    func (c *EC2) WaitUntilVpnConnectionDeletedWithContext(ctx aws.Context, input *DescribeVpnConnectionsInput, opts ...request.WaiterOption) error
type EbsBlockDevice
    func (s EbsBlockDevice) GoString() string
    func (s *EbsBlockDevice) SetDeleteOnTermination(v bool) *EbsBlockDevice
    func (s *EbsBlockDevice) SetEncrypted(v bool) *EbsBlockDevice
    func (s *EbsBlockDevice) SetIops(v int64) *EbsBlockDevice
    func (s *EbsBlockDevice) SetSnapshotId(v string) *EbsBlockDevice
    func (s *EbsBlockDevice) SetVolumeSize(v int64) *EbsBlockDevice
    func (s *EbsBlockDevice) SetVolumeType(v string) *EbsBlockDevice
    func (s EbsBlockDevice) String() string
type EbsInstanceBlockDevice
    func (s EbsInstanceBlockDevice) GoString() string
    func (s *EbsInstanceBlockDevice) SetAttachTime(v time.Time) *EbsInstanceBlockDevice
    func (s *EbsInstanceBlockDevice) SetDeleteOnTermination(v bool) *EbsInstanceBlockDevice
    func (s *EbsInstanceBlockDevice) SetStatus(v string) *EbsInstanceBlockDevice
    func (s *EbsInstanceBlockDevice) SetVolumeId(v string) *EbsInstanceBlockDevice
    func (s EbsInstanceBlockDevice) String() string
type EbsInstanceBlockDeviceSpecification
    func (s EbsInstanceBlockDeviceSpecification) GoString() string
    func (s *EbsInstanceBlockDeviceSpecification) SetDeleteOnTermination(v bool) *EbsInstanceBlockDeviceSpecification
    func (s *EbsInstanceBlockDeviceSpecification) SetVolumeId(v string) *EbsInstanceBlockDeviceSpecification
    func (s EbsInstanceBlockDeviceSpecification) String() string
type EgressOnlyInternetGateway
    func (s EgressOnlyInternetGateway) GoString() string
    func (s *EgressOnlyInternetGateway) SetAttachments(v []*InternetGatewayAttachment) *EgressOnlyInternetGateway
    func (s *EgressOnlyInternetGateway) SetEgressOnlyInternetGatewayId(v string) *EgressOnlyInternetGateway
    func (s EgressOnlyInternetGateway) String() string
type EnableVgwRoutePropagationInput
    func (s EnableVgwRoutePropagationInput) GoString() string
    func (s *EnableVgwRoutePropagationInput) SetGatewayId(v string) *EnableVgwRoutePropagationInput
    func (s *EnableVgwRoutePropagationInput) SetRouteTableId(v string) *EnableVgwRoutePropagationInput
    func (s EnableVgwRoutePropagationInput) String() string
    func (s *EnableVgwRoutePropagationInput) Validate() error
type EnableVgwRoutePropagationOutput
    func (s EnableVgwRoutePropagationOutput) GoString() string
    func (s EnableVgwRoutePropagationOutput) String() string
type EnableVolumeIOInput
    func (s EnableVolumeIOInput) GoString() string
    func (s *EnableVolumeIOInput) SetDryRun(v bool) *EnableVolumeIOInput
    func (s *EnableVolumeIOInput) SetVolumeId(v string) *EnableVolumeIOInput
    func (s EnableVolumeIOInput) String() string
    func (s *EnableVolumeIOInput) Validate() error
type EnableVolumeIOOutput
    func (s EnableVolumeIOOutput) GoString() string
    func (s EnableVolumeIOOutput) String() string
type EnableVpcClassicLinkDnsSupportInput
    func (s EnableVpcClassicLinkDnsSupportInput) GoString() string
    func (s *EnableVpcClassicLinkDnsSupportInput) SetVpcId(v string) *EnableVpcClassicLinkDnsSupportInput
    func (s EnableVpcClassicLinkDnsSupportInput) String() string
type EnableVpcClassicLinkDnsSupportOutput
    func (s EnableVpcClassicLinkDnsSupportOutput) GoString() string
    func (s *EnableVpcClassicLinkDnsSupportOutput) SetReturn(v bool) *EnableVpcClassicLinkDnsSupportOutput
    func (s EnableVpcClassicLinkDnsSupportOutput) String() string
type EnableVpcClassicLinkInput
    func (s EnableVpcClassicLinkInput) GoString() string
    func (s *EnableVpcClassicLinkInput) SetDryRun(v bool) *EnableVpcClassicLinkInput
    func (s *EnableVpcClassicLinkInput) SetVpcId(v string) *EnableVpcClassicLinkInput
    func (s EnableVpcClassicLinkInput) String() string
    func (s *EnableVpcClassicLinkInput) Validate() error
type EnableVpcClassicLinkOutput
    func (s EnableVpcClassicLinkOutput) GoString() string
    func (s *EnableVpcClassicLinkOutput) SetReturn(v bool) *EnableVpcClassicLinkOutput
    func (s EnableVpcClassicLinkOutput) String() string
type EventInformation
    func (s EventInformation) GoString() string
    func (s *EventInformation) SetEventDescription(v string) *EventInformation
    func (s *EventInformation) SetEventSubType(v string) *EventInformation
    func (s *EventInformation) SetInstanceId(v string) *EventInformation
    func (s EventInformation) String() string
type ExportTask
    func (s ExportTask) GoString() string
    func (s *ExportTask) SetDescription(v string) *ExportTask
    func (s *ExportTask) SetExportTaskId(v string) *ExportTask
    func (s *ExportTask) SetExportToS3Task(v *ExportToS3Task) *ExportTask
    func (s *ExportTask) SetInstanceExportDetails(v *InstanceExportDetails) *ExportTask
    func (s *ExportTask) SetState(v string) *ExportTask
    func (s *ExportTask) SetStatusMessage(v string) *ExportTask
    func (s ExportTask) String() string
type ExportToS3Task
    func (s ExportToS3Task) GoString() string
    func (s *ExportToS3Task) SetContainerFormat(v string) *ExportToS3Task
    func (s *ExportToS3Task) SetDiskImageFormat(v string) *ExportToS3Task
    func (s *ExportToS3Task) SetS3Bucket(v string) *ExportToS3Task
    func (s *ExportToS3Task) SetS3Key(v string) *ExportToS3Task
    func (s ExportToS3Task) String() string
type ExportToS3TaskSpecification
    func (s ExportToS3TaskSpecification) GoString() string
    func (s *ExportToS3TaskSpecification) SetContainerFormat(v string) *ExportToS3TaskSpecification
    func (s *ExportToS3TaskSpecification) SetDiskImageFormat(v string) *ExportToS3TaskSpecification
    func (s *ExportToS3TaskSpecification) SetS3Bucket(v string) *ExportToS3TaskSpecification
    func (s *ExportToS3TaskSpecification) SetS3Prefix(v string) *ExportToS3TaskSpecification
    func (s ExportToS3TaskSpecification) String() string
type Filter
    func (s Filter) GoString() string
    func (s *Filter) SetName(v string) *Filter
    func (s *Filter) SetValues(v []*string) *Filter
    func (s Filter) String() string
type FlowLog
    func (s FlowLog) GoString() string
    func (s *FlowLog) SetCreationTime(v time.Time) *FlowLog
    func (s *FlowLog) SetDeliverLogsErrorMessage(v string) *FlowLog
    func (s *FlowLog) SetDeliverLogsPermissionArn(v string) *FlowLog
    func (s *FlowLog) SetDeliverLogsStatus(v string) *FlowLog
    func (s *FlowLog) SetFlowLogId(v string) *FlowLog
    func (s *FlowLog) SetFlowLogStatus(v string) *FlowLog
    func (s *FlowLog) SetLogGroupName(v string) *FlowLog
    func (s *FlowLog) SetResourceId(v string) *FlowLog
    func (s *FlowLog) SetTrafficType(v string) *FlowLog
    func (s FlowLog) String() string
type FpgaImage
    func (s FpgaImage) GoString() string
    func (s *FpgaImage) SetCreateTime(v time.Time) *FpgaImage
    func (s *FpgaImage) SetDescription(v string) *FpgaImage
    func (s *FpgaImage) SetFpgaImageGlobalId(v string) *FpgaImage
    func (s *FpgaImage) SetFpgaImageId(v string) *FpgaImage
    func (s *FpgaImage) SetName(v string) *FpgaImage
    func (s *FpgaImage) SetOwnerAlias(v string) *FpgaImage
    func (s *FpgaImage) SetOwnerId(v string) *FpgaImage
    func (s *FpgaImage) SetPciId(v *PciId) *FpgaImage
    func (s *FpgaImage) SetProductCodes(v []*ProductCode) *FpgaImage
    func (s *FpgaImage) SetShellVersion(v string) *FpgaImage
    func (s *FpgaImage) SetState(v *FpgaImageState) *FpgaImage
    func (s *FpgaImage) SetTags(v []*Tag) *FpgaImage
    func (s *FpgaImage) SetUpdateTime(v time.Time) *FpgaImage
    func (s FpgaImage) String() string
type FpgaImageState
    func (s FpgaImageState) GoString() string
    func (s *FpgaImageState) SetCode(v string) *FpgaImageState
    func (s *FpgaImageState) SetMessage(v string) *FpgaImageState
    func (s FpgaImageState) String() string
type GetConsoleOutputInput
    func (s GetConsoleOutputInput) GoString() string
    func (s *GetConsoleOutputInput) SetDryRun(v bool) *GetConsoleOutputInput
    func (s *GetConsoleOutputInput) SetInstanceId(v string) *GetConsoleOutputInput
    func (s GetConsoleOutputInput) String() string
    func (s *GetConsoleOutputInput) Validate() error
type GetConsoleOutputOutput
    func (s GetConsoleOutputOutput) GoString() string
    func (s *GetConsoleOutputOutput) SetInstanceId(v string) *GetConsoleOutputOutput
    func (s *GetConsoleOutputOutput) SetOutput(v string) *GetConsoleOutputOutput
    func (s *GetConsoleOutputOutput) SetTimestamp(v time.Time) *GetConsoleOutputOutput
    func (s GetConsoleOutputOutput) String() string
type GetConsoleScreenshotInput
    func (s GetConsoleScreenshotInput) GoString() string
    func (s *GetConsoleScreenshotInput) SetDryRun(v bool) *GetConsoleScreenshotInput
    func (s *GetConsoleScreenshotInput) SetInstanceId(v string) *GetConsoleScreenshotInput
    func (s *GetConsoleScreenshotInput) SetWakeUp(v bool) *GetConsoleScreenshotInput
    func (s GetConsoleScreenshotInput) String() string
    func (s *GetConsoleScreenshotInput) Validate() error
type GetConsoleScreenshotOutput
    func (s GetConsoleScreenshotOutput) GoString() string
    func (s *GetConsoleScreenshotOutput) SetImageData(v string) *GetConsoleScreenshotOutput
    func (s *GetConsoleScreenshotOutput) SetInstanceId(v string) *GetConsoleScreenshotOutput
    func (s GetConsoleScreenshotOutput) String() string
type GetHostReservationPurchasePreviewInput
    func (s GetHostReservationPurchasePreviewInput) GoString() string
    func (s *GetHostReservationPurchasePreviewInput) SetHostIdSet(v []*string) *GetHostReservationPurchasePreviewInput
    func (s *GetHostReservationPurchasePreviewInput) SetOfferingId(v string) *GetHostReservationPurchasePreviewInput
    func (s GetHostReservationPurchasePreviewInput) String() string
    func (s *GetHostReservationPurchasePreviewInput) Validate() error
type GetHostReservationPurchasePreviewOutput
    func (s GetHostReservationPurchasePreviewOutput) GoString() string
    func (s *GetHostReservationPurchasePreviewOutput) SetCurrencyCode(v string) *GetHostReservationPurchasePreviewOutput
    func (s *GetHostReservationPurchasePreviewOutput) SetPurchase(v []*Purchase) *GetHostReservationPurchasePreviewOutput
    func (s *GetHostReservationPurchasePreviewOutput) SetTotalHourlyPrice(v string) *GetHostReservationPurchasePreviewOutput
    func (s *GetHostReservationPurchasePreviewOutput) SetTotalUpfrontPrice(v string) *GetHostReservationPurchasePreviewOutput
    func (s GetHostReservationPurchasePreviewOutput) String() string
type GetPasswordDataInput
    func (s GetPasswordDataInput) GoString() string
    func (s *GetPasswordDataInput) SetDryRun(v bool) *GetPasswordDataInput
    func (s *GetPasswordDataInput) SetInstanceId(v string) *GetPasswordDataInput
    func (s GetPasswordDataInput) String() string
    func (s *GetPasswordDataInput) Validate() error
type GetPasswordDataOutput
    func (s GetPasswordDataOutput) GoString() string
    func (s *GetPasswordDataOutput) SetInstanceId(v string) *GetPasswordDataOutput
    func (s *GetPasswordDataOutput) SetPasswordData(v string) *GetPasswordDataOutput
    func (s *GetPasswordDataOutput) SetTimestamp(v time.Time) *GetPasswordDataOutput
    func (s GetPasswordDataOutput) String() string
type GetReservedInstancesExchangeQuoteInput
    func (s GetReservedInstancesExchangeQuoteInput) GoString() string
    func (s *GetReservedInstancesExchangeQuoteInput) SetDryRun(v bool) *GetReservedInstancesExchangeQuoteInput
    func (s *GetReservedInstancesExchangeQuoteInput) SetReservedInstanceIds(v []*string) *GetReservedInstancesExchangeQuoteInput
    func (s *GetReservedInstancesExchangeQuoteInput) SetTargetConfigurations(v []*TargetConfigurationRequest) *GetReservedInstancesExchangeQuoteInput
    func (s GetReservedInstancesExchangeQuoteInput) String() string
    func (s *GetReservedInstancesExchangeQuoteInput) Validate() error
type GetReservedInstancesExchangeQuoteOutput
    func (s GetReservedInstancesExchangeQuoteOutput) GoString() string
    func (s *GetReservedInstancesExchangeQuoteOutput) SetCurrencyCode(v string) *GetReservedInstancesExchangeQuoteOutput
    func (s *GetReservedInstancesExchangeQuoteOutput) SetIsValidExchange(v bool) *GetReservedInstancesExchangeQuoteOutput
    func (s *GetReservedInstancesExchangeQuoteOutput) SetOutputReservedInstancesWillExpireAt(v time.Time) *GetReservedInstancesExchangeQuoteOutput
    func (s *GetReservedInstancesExchangeQuoteOutput) SetPaymentDue(v string) *GetReservedInstancesExchangeQuoteOutput
    func (s *GetReservedInstancesExchangeQuoteOutput) SetReservedInstanceValueRollup(v *ReservationValue) *GetReservedInstancesExchangeQuoteOutput
    func (s *GetReservedInstancesExchangeQuoteOutput) SetReservedInstanceValueSet(v []*ReservedInstanceReservationValue) *GetReservedInstancesExchangeQuoteOutput
    func (s *GetReservedInstancesExchangeQuoteOutput) SetTargetConfigurationValueRollup(v *ReservationValue) *GetReservedInstancesExchangeQuoteOutput
    func (s *GetReservedInstancesExchangeQuoteOutput) SetTargetConfigurationValueSet(v []*TargetReservationValue) *GetReservedInstancesExchangeQuoteOutput
    func (s *GetReservedInstancesExchangeQuoteOutput) SetValidationFailureReason(v string) *GetReservedInstancesExchangeQuoteOutput
    func (s GetReservedInstancesExchangeQuoteOutput) String() string
type GroupIdentifier
    func (s GroupIdentifier) GoString() string
    func (s *GroupIdentifier) SetGroupId(v string) *GroupIdentifier
    func (s *GroupIdentifier) SetGroupName(v string) *GroupIdentifier
    func (s GroupIdentifier) String() string
type HistoryRecord
    func (s HistoryRecord) GoString() string
    func (s *HistoryRecord) SetEventInformation(v *EventInformation) *HistoryRecord
    func (s *HistoryRecord) SetEventType(v string) *HistoryRecord
    func (s *HistoryRecord) SetTimestamp(v time.Time) *HistoryRecord
    func (s HistoryRecord) String() string
type Host
    func (s Host) GoString() string
    func (s *Host) SetAutoPlacement(v string) *Host
    func (s *Host) SetAvailabilityZone(v string) *Host
    func (s *Host) SetAvailableCapacity(v *AvailableCapacity) *Host
    func (s *Host) SetClientToken(v string) *Host
    func (s *Host) SetHostId(v string) *Host
    func (s *Host) SetHostProperties(v *HostProperties) *Host
    func (s *Host) SetHostReservationId(v string) *Host
    func (s *Host) SetInstances(v []*HostInstance) *Host
    func (s *Host) SetState(v string) *Host
    func (s Host) String() string
type HostInstance
    func (s HostInstance) GoString() string
    func (s *HostInstance) SetInstanceId(v string) *HostInstance
    func (s *HostInstance) SetInstanceType(v string) *HostInstance
    func (s HostInstance) String() string
type HostOffering
    func (s HostOffering) GoString() string
    func (s *HostOffering) SetCurrencyCode(v string) *HostOffering
    func (s *HostOffering) SetDuration(v int64) *HostOffering
    func (s *HostOffering) SetHourlyPrice(v string) *HostOffering
    func (s *HostOffering) SetInstanceFamily(v string) *HostOffering
    func (s *HostOffering) SetOfferingId(v string) *HostOffering
    func (s *HostOffering) SetPaymentOption(v string) *HostOffering
    func (s *HostOffering) SetUpfrontPrice(v string) *HostOffering
    func (s HostOffering) String() string
type HostProperties
    func (s HostProperties) GoString() string
    func (s *HostProperties) SetCores(v int64) *HostProperties
    func (s *HostProperties) SetInstanceType(v string) *HostProperties
    func (s *HostProperties) SetSockets(v int64) *HostProperties
    func (s *HostProperties) SetTotalVCpus(v int64) *HostProperties
    func (s HostProperties) String() string
type HostReservation
    func (s HostReservation) GoString() string
    func (s *HostReservation) SetCount(v int64) *HostReservation
    func (s *HostReservation) SetCurrencyCode(v string) *HostReservation
    func (s *HostReservation) SetDuration(v int64) *HostReservation
    func (s *HostReservation) SetEnd(v time.Time) *HostReservation
    func (s *HostReservation) SetHostIdSet(v []*string) *HostReservation
    func (s *HostReservation) SetHostReservationId(v string) *HostReservation
    func (s *HostReservation) SetHourlyPrice(v string) *HostReservation
    func (s *HostReservation) SetInstanceFamily(v string) *HostReservation
    func (s *HostReservation) SetOfferingId(v string) *HostReservation
    func (s *HostReservation) SetPaymentOption(v string) *HostReservation
    func (s *HostReservation) SetStart(v time.Time) *HostReservation
    func (s *HostReservation) SetState(v string) *HostReservation
    func (s *HostReservation) SetUpfrontPrice(v string) *HostReservation
    func (s HostReservation) String() string
type IamInstanceProfile
    func (s IamInstanceProfile) GoString() string
    func (s *IamInstanceProfile) SetArn(v string) *IamInstanceProfile
    func (s *IamInstanceProfile) SetId(v string) *IamInstanceProfile
    func (s IamInstanceProfile) String() string
type IamInstanceProfileAssociation
    func (s IamInstanceProfileAssociation) GoString() string
    func (s *IamInstanceProfileAssociation) SetAssociationId(v string) *IamInstanceProfileAssociation
    func (s *IamInstanceProfileAssociation) SetIamInstanceProfile(v *IamInstanceProfile) *IamInstanceProfileAssociation
    func (s *IamInstanceProfileAssociation) SetInstanceId(v string) *IamInstanceProfileAssociation
    func (s *IamInstanceProfileAssociation) SetState(v string) *IamInstanceProfileAssociation
    func (s *IamInstanceProfileAssociation) SetTimestamp(v time.Time) *IamInstanceProfileAssociation
    func (s IamInstanceProfileAssociation) String() string
type IamInstanceProfileSpecification
    func (s IamInstanceProfileSpecification) GoString() string
    func (s *IamInstanceProfileSpecification) SetArn(v string) *IamInstanceProfileSpecification
    func (s *IamInstanceProfileSpecification) SetName(v string) *IamInstanceProfileSpecification
    func (s IamInstanceProfileSpecification) String() string
type IcmpTypeCode
    func (s IcmpTypeCode) GoString() string
    func (s *IcmpTypeCode) SetCode(v int64) *IcmpTypeCode
    func (s *IcmpTypeCode) SetType(v int64) *IcmpTypeCode
    func (s IcmpTypeCode) String() string
type IdFormat
    func (s IdFormat) GoString() string
    func (s *IdFormat) SetDeadline(v time.Time) *IdFormat
    func (s *IdFormat) SetResource(v string) *IdFormat
    func (s *IdFormat) SetUseLongIds(v bool) *IdFormat
    func (s IdFormat) String() string
type Image
    func (s Image) GoString() string
    func (s *Image) SetArchitecture(v string) *Image
    func (s *Image) SetBlockDeviceMappings(v []*BlockDeviceMapping) *Image
    func (s *Image) SetCreationDate(v string) *Image
    func (s *Image) SetDescription(v string) *Image
    func (s *Image) SetEnaSupport(v bool) *Image
    func (s *Image) SetHypervisor(v string) *Image
    func (s *Image) SetImageId(v string) *Image
    func (s *Image) SetImageLocation(v string) *Image
    func (s *Image) SetImageOwnerAlias(v string) *Image
    func (s *Image) SetImageType(v string) *Image
    func (s *Image) SetKernelId(v string) *Image
    func (s *Image) SetName(v string) *Image
    func (s *Image) SetOwnerId(v string) *Image
    func (s *Image) SetPlatform(v string) *Image
    func (s *Image) SetProductCodes(v []*ProductCode) *Image
    func (s *Image) SetPublic(v bool) *Image
    func (s *Image) SetRamdiskId(v string) *Image
    func (s *Image) SetRootDeviceName(v string) *Image
    func (s *Image) SetRootDeviceType(v string) *Image
    func (s *Image) SetSriovNetSupport(v string) *Image
    func (s *Image) SetState(v string) *Image
    func (s *Image) SetStateReason(v *StateReason) *Image
    func (s *Image) SetTags(v []*Tag) *Image
    func (s *Image) SetVirtualizationType(v string) *Image
    func (s Image) String() string
type ImageDiskContainer
    func (s ImageDiskContainer) GoString() string
    func (s *ImageDiskContainer) SetDescription(v string) *ImageDiskContainer
    func (s *ImageDiskContainer) SetDeviceName(v string) *ImageDiskContainer
    func (s *ImageDiskContainer) SetFormat(v string) *ImageDiskContainer
    func (s *ImageDiskContainer) SetSnapshotId(v string) *ImageDiskContainer
    func (s *ImageDiskContainer) SetUrl(v string) *ImageDiskContainer
    func (s *ImageDiskContainer) SetUserBucket(v *UserBucket) *ImageDiskContainer
    func (s ImageDiskContainer) String() string
type ImportImageInput
    func (s ImportImageInput) GoString() string
    func (s *ImportImageInput) SetArchitecture(v string) *ImportImageInput
    func (s *ImportImageInput) SetClientData(v *ClientData) *ImportImageInput
    func (s *ImportImageInput) SetClientToken(v string) *ImportImageInput
    func (s *ImportImageInput) SetDescription(v string) *ImportImageInput
    func (s *ImportImageInput) SetDiskContainers(v []*ImageDiskContainer) *ImportImageInput
    func (s *ImportImageInput) SetDryRun(v bool) *ImportImageInput
    func (s *ImportImageInput) SetHypervisor(v string) *ImportImageInput
    func (s *ImportImageInput) SetLicenseType(v string) *ImportImageInput
    func (s *ImportImageInput) SetPlatform(v string) *ImportImageInput
    func (s *ImportImageInput) SetRoleName(v string) *ImportImageInput
    func (s ImportImageInput) String() string
type ImportImageOutput
    func (s ImportImageOutput) GoString() string
    func (s *ImportImageOutput) SetArchitecture(v string) *ImportImageOutput
    func (s *ImportImageOutput) SetDescription(v string) *ImportImageOutput
    func (s *ImportImageOutput) SetHypervisor(v string) *ImportImageOutput
    func (s *ImportImageOutput) SetImageId(v string) *ImportImageOutput
    func (s *ImportImageOutput) SetImportTaskId(v string) *ImportImageOutput
    func (s *ImportImageOutput) SetLicenseType(v string) *ImportImageOutput
    func (s *ImportImageOutput) SetPlatform(v string) *ImportImageOutput
    func (s *ImportImageOutput) SetProgress(v string) *ImportImageOutput
    func (s *ImportImageOutput) SetSnapshotDetails(v []*SnapshotDetail) *ImportImageOutput
    func (s *ImportImageOutput) SetStatus(v string) *ImportImageOutput
    func (s *ImportImageOutput) SetStatusMessage(v string) *ImportImageOutput
    func (s ImportImageOutput) String() string
type ImportImageTask
    func (s ImportImageTask) GoString() string
    func (s *ImportImageTask) SetArchitecture(v string) *ImportImageTask
    func (s *ImportImageTask) SetDescription(v string) *ImportImageTask
    func (s *ImportImageTask) SetHypervisor(v string) *ImportImageTask
    func (s *ImportImageTask) SetImageId(v string) *ImportImageTask
    func (s *ImportImageTask) SetImportTaskId(v string) *ImportImageTask
    func (s *ImportImageTask) SetLicenseType(v string) *ImportImageTask
    func (s *ImportImageTask) SetPlatform(v string) *ImportImageTask
    func (s *ImportImageTask) SetProgress(v string) *ImportImageTask
    func (s *ImportImageTask) SetSnapshotDetails(v []*SnapshotDetail) *ImportImageTask
    func (s *ImportImageTask) SetStatus(v string) *ImportImageTask
    func (s *ImportImageTask) SetStatusMessage(v string) *ImportImageTask
    func (s ImportImageTask) String() string
type ImportInstanceInput
    func (s ImportInstanceInput) GoString() string
    func (s *ImportInstanceInput) SetDescription(v string) *ImportInstanceInput
    func (s *ImportInstanceInput) SetDiskImages(v []*DiskImage) *ImportInstanceInput
    func (s *ImportInstanceInput) SetDryRun(v bool) *ImportInstanceInput
    func (s *ImportInstanceInput) SetLaunchSpecification(v *ImportInstanceLaunchSpecification) *ImportInstanceInput
    func (s *ImportInstanceInput) SetPlatform(v string) *ImportInstanceInput
    func (s ImportInstanceInput) String() string
    func (s *ImportInstanceInput) Validate() error
type ImportInstanceLaunchSpecification
    func (s ImportInstanceLaunchSpecification) GoString() string
    func (s *ImportInstanceLaunchSpecification) SetAdditionalInfo(v string) *ImportInstanceLaunchSpecification
    func (s *ImportInstanceLaunchSpecification) SetArchitecture(v string) *ImportInstanceLaunchSpecification
    func (s *ImportInstanceLaunchSpecification) SetGroupIds(v []*string) *ImportInstanceLaunchSpecification
    func (s *ImportInstanceLaunchSpecification) SetGroupNames(v []*string) *ImportInstanceLaunchSpecification
    func (s *ImportInstanceLaunchSpecification) SetInstanceInitiatedShutdownBehavior(v string) *ImportInstanceLaunchSpecification
    func (s *ImportInstanceLaunchSpecification) SetInstanceType(v string) *ImportInstanceLaunchSpecification
    func (s *ImportInstanceLaunchSpecification) SetMonitoring(v bool) *ImportInstanceLaunchSpecification
    func (s *ImportInstanceLaunchSpecification) SetPlacement(v *Placement) *ImportInstanceLaunchSpecification
    func (s *ImportInstanceLaunchSpecification) SetPrivateIpAddress(v string) *ImportInstanceLaunchSpecification
    func (s *ImportInstanceLaunchSpecification) SetSubnetId(v string) *ImportInstanceLaunchSpecification
    func (s *ImportInstanceLaunchSpecification) SetUserData(v *UserData) *ImportInstanceLaunchSpecification
    func (s ImportInstanceLaunchSpecification) String() string
type ImportInstanceOutput
    func (s ImportInstanceOutput) GoString() string
    func (s *ImportInstanceOutput) SetConversionTask(v *ConversionTask) *ImportInstanceOutput
    func (s ImportInstanceOutput) String() string
type ImportInstanceTaskDetails
    func (s ImportInstanceTaskDetails) GoString() string
    func (s *ImportInstanceTaskDetails) SetDescription(v string) *ImportInstanceTaskDetails
    func (s *ImportInstanceTaskDetails) SetInstanceId(v string) *ImportInstanceTaskDetails
    func (s *ImportInstanceTaskDetails) SetPlatform(v string) *ImportInstanceTaskDetails
    func (s *ImportInstanceTaskDetails) SetVolumes(v []*ImportInstanceVolumeDetailItem) *ImportInstanceTaskDetails
    func (s ImportInstanceTaskDetails) String() string
type ImportInstanceVolumeDetailItem
    func (s ImportInstanceVolumeDetailItem) GoString() string
    func (s *ImportInstanceVolumeDetailItem) SetAvailabilityZone(v string) *ImportInstanceVolumeDetailItem
    func (s *ImportInstanceVolumeDetailItem) SetBytesConverted(v int64) *ImportInstanceVolumeDetailItem
    func (s *ImportInstanceVolumeDetailItem) SetDescription(v string) *ImportInstanceVolumeDetailItem
    func (s *ImportInstanceVolumeDetailItem) SetImage(v *DiskImageDescription) *ImportInstanceVolumeDetailItem
    func (s *ImportInstanceVolumeDetailItem) SetStatus(v string) *ImportInstanceVolumeDetailItem
    func (s *ImportInstanceVolumeDetailItem) SetStatusMessage(v string) *ImportInstanceVolumeDetailItem
    func (s *ImportInstanceVolumeDetailItem) SetVolume(v *DiskImageVolumeDescription) *ImportInstanceVolumeDetailItem
    func (s ImportInstanceVolumeDetailItem) String() string
type ImportKeyPairInput
    func (s ImportKeyPairInput) GoString() string
    func (s *ImportKeyPairInput) SetDryRun(v bool) *ImportKeyPairInput
    func (s *ImportKeyPairInput) SetKeyName(v string) *ImportKeyPairInput
    func (s *ImportKeyPairInput) SetPublicKeyMaterial(v []byte) *ImportKeyPairInput
    func (s ImportKeyPairInput) String() string
    func (s *ImportKeyPairInput) Validate() error
type ImportKeyPairOutput
    func (s ImportKeyPairOutput) GoString() string
    func (s *ImportKeyPairOutput) SetKeyFingerprint(v string) *ImportKeyPairOutput
    func (s *ImportKeyPairOutput) SetKeyName(v string) *ImportKeyPairOutput
    func (s ImportKeyPairOutput) String() string
type ImportSnapshotInput
    func (s ImportSnapshotInput) GoString() string
    func (s *ImportSnapshotInput) SetClientData(v *ClientData) *ImportSnapshotInput
    func (s *ImportSnapshotInput) SetClientToken(v string) *ImportSnapshotInput
    func (s *ImportSnapshotInput) SetDescription(v string) *ImportSnapshotInput
    func (s *ImportSnapshotInput) SetDiskContainer(v *SnapshotDiskContainer) *ImportSnapshotInput
    func (s *ImportSnapshotInput) SetDryRun(v bool) *ImportSnapshotInput
    func (s *ImportSnapshotInput) SetRoleName(v string) *ImportSnapshotInput
    func (s ImportSnapshotInput) String() string
type ImportSnapshotOutput
    func (s ImportSnapshotOutput) GoString() string
    func (s *ImportSnapshotOutput) SetDescription(v string) *ImportSnapshotOutput
    func (s *ImportSnapshotOutput) SetImportTaskId(v string) *ImportSnapshotOutput
    func (s *ImportSnapshotOutput) SetSnapshotTaskDetail(v *SnapshotTaskDetail) *ImportSnapshotOutput
    func (s ImportSnapshotOutput) String() string
type ImportSnapshotTask
    func (s ImportSnapshotTask) GoString() string
    func (s *ImportSnapshotTask) SetDescription(v string) *ImportSnapshotTask
    func (s *ImportSnapshotTask) SetImportTaskId(v string) *ImportSnapshotTask
    func (s *ImportSnapshotTask) SetSnapshotTaskDetail(v *SnapshotTaskDetail) *ImportSnapshotTask
    func (s ImportSnapshotTask) String() string
type ImportVolumeInput
    func (s ImportVolumeInput) GoString() string
    func (s *ImportVolumeInput) SetAvailabilityZone(v string) *ImportVolumeInput
    func (s *ImportVolumeInput) SetDescription(v string) *ImportVolumeInput
    func (s *ImportVolumeInput) SetDryRun(v bool) *ImportVolumeInput
    func (s *ImportVolumeInput) SetImage(v *DiskImageDetail) *ImportVolumeInput
    func (s *ImportVolumeInput) SetVolume(v *VolumeDetail) *ImportVolumeInput
    func (s ImportVolumeInput) String() string
    func (s *ImportVolumeInput) Validate() error
type ImportVolumeOutput
    func (s ImportVolumeOutput) GoString() string
    func (s *ImportVolumeOutput) SetConversionTask(v *ConversionTask) *ImportVolumeOutput
    func (s ImportVolumeOutput) String() string
type ImportVolumeTaskDetails
    func (s ImportVolumeTaskDetails) GoString() string
    func (s *ImportVolumeTaskDetails) SetAvailabilityZone(v string) *ImportVolumeTaskDetails
    func (s *ImportVolumeTaskDetails) SetBytesConverted(v int64) *ImportVolumeTaskDetails
    func (s *ImportVolumeTaskDetails) SetDescription(v string) *ImportVolumeTaskDetails
    func (s *ImportVolumeTaskDetails) SetImage(v *DiskImageDescription) *ImportVolumeTaskDetails
    func (s *ImportVolumeTaskDetails) SetVolume(v *DiskImageVolumeDescription) *ImportVolumeTaskDetails
    func (s ImportVolumeTaskDetails) String() string
type Instance
    func (s Instance) GoString() string
    func (s *Instance) SetAmiLaunchIndex(v int64) *Instance
    func (s *Instance) SetArchitecture(v string) *Instance
    func (s *Instance) SetBlockDeviceMappings(v []*InstanceBlockDeviceMapping) *Instance
    func (s *Instance) SetClientToken(v string) *Instance
    func (s *Instance) SetEbsOptimized(v bool) *Instance
    func (s *Instance) SetEnaSupport(v bool) *Instance
    func (s *Instance) SetHypervisor(v string) *Instance
    func (s *Instance) SetIamInstanceProfile(v *IamInstanceProfile) *Instance
    func (s *Instance) SetImageId(v string) *Instance
    func (s *Instance) SetInstanceId(v string) *Instance
    func (s *Instance) SetInstanceLifecycle(v string) *Instance
    func (s *Instance) SetInstanceType(v string) *Instance
    func (s *Instance) SetKernelId(v string) *Instance
    func (s *Instance) SetKeyName(v string) *Instance
    func (s *Instance) SetLaunchTime(v time.Time) *Instance
    func (s *Instance) SetMonitoring(v *Monitoring) *Instance
    func (s *Instance) SetNetworkInterfaces(v []*InstanceNetworkInterface) *Instance
    func (s *Instance) SetPlacement(v *Placement) *Instance
    func (s *Instance) SetPlatform(v string) *Instance
    func (s *Instance) SetPrivateDnsName(v string) *Instance
    func (s *Instance) SetPrivateIpAddress(v string) *Instance
    func (s *Instance) SetProductCodes(v []*ProductCode) *Instance
    func (s *Instance) SetPublicDnsName(v string) *Instance
    func (s *Instance) SetPublicIpAddress(v string) *Instance
    func (s *Instance) SetRamdiskId(v string) *Instance
    func (s *Instance) SetRootDeviceName(v string) *Instance
    func (s *Instance) SetRootDeviceType(v string) *Instance
    func (s *Instance) SetSecurityGroups(v []*GroupIdentifier) *Instance
    func (s *Instance) SetSourceDestCheck(v bool) *Instance
    func (s *Instance) SetSpotInstanceRequestId(v string) *Instance
    func (s *Instance) SetSriovNetSupport(v string) *Instance
    func (s *Instance) SetState(v *InstanceState) *Instance
    func (s *Instance) SetStateReason(v *StateReason) *Instance
    func (s *Instance) SetStateTransitionReason(v string) *Instance
    func (s *Instance) SetSubnetId(v string) *Instance
    func (s *Instance) SetTags(v []*Tag) *Instance
    func (s *Instance) SetVirtualizationType(v string) *Instance
    func (s *Instance) SetVpcId(v string) *Instance
    func (s Instance) String() string
type InstanceBlockDeviceMapping
    func (s InstanceBlockDeviceMapping) GoString() string
    func (s *InstanceBlockDeviceMapping) SetDeviceName(v string) *InstanceBlockDeviceMapping
    func (s *InstanceBlockDeviceMapping) SetEbs(v *EbsInstanceBlockDevice) *InstanceBlockDeviceMapping
    func (s InstanceBlockDeviceMapping) String() string
type InstanceBlockDeviceMappingSpecification
    func (s InstanceBlockDeviceMappingSpecification) GoString() string
    func (s *InstanceBlockDeviceMappingSpecification) SetDeviceName(v string) *InstanceBlockDeviceMappingSpecification
    func (s *InstanceBlockDeviceMappingSpecification) SetEbs(v *EbsInstanceBlockDeviceSpecification) *InstanceBlockDeviceMappingSpecification
    func (s *InstanceBlockDeviceMappingSpecification) SetNoDevice(v string) *InstanceBlockDeviceMappingSpecification
    func (s *InstanceBlockDeviceMappingSpecification) SetVirtualName(v string) *InstanceBlockDeviceMappingSpecification
    func (s InstanceBlockDeviceMappingSpecification) String() string
type InstanceCapacity
    func (s InstanceCapacity) GoString() string
    func (s *InstanceCapacity) SetAvailableCapacity(v int64) *InstanceCapacity
    func (s *InstanceCapacity) SetInstanceType(v string) *InstanceCapacity
    func (s *InstanceCapacity) SetTotalCapacity(v int64) *InstanceCapacity
    func (s InstanceCapacity) String() string
type InstanceCount
    func (s InstanceCount) GoString() string
    func (s *InstanceCount) SetInstanceCount(v int64) *InstanceCount
    func (s *InstanceCount) SetState(v string) *InstanceCount
    func (s InstanceCount) String() string
type InstanceExportDetails
    func (s InstanceExportDetails) GoString() string
    func (s *InstanceExportDetails) SetInstanceId(v string) *InstanceExportDetails
    func (s *InstanceExportDetails) SetTargetEnvironment(v string) *InstanceExportDetails
    func (s InstanceExportDetails) String() string
type InstanceIpv6Address
    func (s InstanceIpv6Address) GoString() string
    func (s *InstanceIpv6Address) SetIpv6Address(v string) *InstanceIpv6Address
    func (s InstanceIpv6Address) String() string
type InstanceMonitoring
    func (s InstanceMonitoring) GoString() string
    func (s *InstanceMonitoring) SetInstanceId(v string) *InstanceMonitoring
    func (s *InstanceMonitoring) SetMonitoring(v *Monitoring) *InstanceMonitoring
    func (s InstanceMonitoring) String() string
type InstanceNetworkInterface
    func (s InstanceNetworkInterface) GoString() string
    func (s *InstanceNetworkInterface) SetAssociation(v *InstanceNetworkInterfaceAssociation) *InstanceNetworkInterface
    func (s *InstanceNetworkInterface) SetAttachment(v *InstanceNetworkInterfaceAttachment) *InstanceNetworkInterface
    func (s *InstanceNetworkInterface) SetDescription(v string) *InstanceNetworkInterface
    func (s *InstanceNetworkInterface) SetGroups(v []*GroupIdentifier) *InstanceNetworkInterface
    func (s *InstanceNetworkInterface) SetIpv6Addresses(v []*InstanceIpv6Address) *InstanceNetworkInterface
    func (s *InstanceNetworkInterface) SetMacAddress(v string) *InstanceNetworkInterface
    func (s *InstanceNetworkInterface) SetNetworkInterfaceId(v string) *InstanceNetworkInterface
    func (s *InstanceNetworkInterface) SetOwnerId(v string) *InstanceNetworkInterface
    func (s *InstanceNetworkInterface) SetPrivateDnsName(v string) *InstanceNetworkInterface
    func (s *InstanceNetworkInterface) SetPrivateIpAddress(v string) *InstanceNetworkInterface
    func (s *InstanceNetworkInterface) SetPrivateIpAddresses(v []*InstancePrivateIpAddress) *InstanceNetworkInterface
    func (s *InstanceNetworkInterface) SetSourceDestCheck(v bool) *InstanceNetworkInterface
    func (s *InstanceNetworkInterface) SetStatus(v string) *InstanceNetworkInterface
    func (s *InstanceNetworkInterface) SetSubnetId(v string) *InstanceNetworkInterface
    func (s *InstanceNetworkInterface) SetVpcId(v string) *InstanceNetworkInterface
    func (s InstanceNetworkInterface) String() string
type InstanceNetworkInterfaceAssociation
    func (s InstanceNetworkInterfaceAssociation) GoString() string
    func (s *InstanceNetworkInterfaceAssociation) SetIpOwnerId(v string) *InstanceNetworkInterfaceAssociation
    func (s *InstanceNetworkInterfaceAssociation) SetPublicDnsName(v string) *InstanceNetworkInterfaceAssociation
    func (s *InstanceNetworkInterfaceAssociation) SetPublicIp(v string) *InstanceNetworkInterfaceAssociation
    func (s InstanceNetworkInterfaceAssociation) String() string
type InstanceNetworkInterfaceAttachment
    func (s InstanceNetworkInterfaceAttachment) GoString() string
    func (s *InstanceNetworkInterfaceAttachment) SetAttachTime(v time.Time) *InstanceNetworkInterfaceAttachment
    func (s *InstanceNetworkInterfaceAttachment) SetAttachmentId(v string) *InstanceNetworkInterfaceAttachment
    func (s *InstanceNetworkInterfaceAttachment) SetDeleteOnTermination(v bool) *InstanceNetworkInterfaceAttachment
    func (s *InstanceNetworkInterfaceAttachment) SetDeviceIndex(v int64) *InstanceNetworkInterfaceAttachment
    func (s *InstanceNetworkInterfaceAttachment) SetStatus(v string) *InstanceNetworkInterfaceAttachment
    func (s InstanceNetworkInterfaceAttachment) String() string
type InstanceNetworkInterfaceSpecification
    func (s InstanceNetworkInterfaceSpecification) GoString() string
    func (s *InstanceNetworkInterfaceSpecification) SetAssociatePublicIpAddress(v bool) *InstanceNetworkInterfaceSpecification
    func (s *InstanceNetworkInterfaceSpecification) SetDeleteOnTermination(v bool) *InstanceNetworkInterfaceSpecification
    func (s *InstanceNetworkInterfaceSpecification) SetDescription(v string) *InstanceNetworkInterfaceSpecification
    func (s *InstanceNetworkInterfaceSpecification) SetDeviceIndex(v int64) *InstanceNetworkInterfaceSpecification
    func (s *InstanceNetworkInterfaceSpecification) SetGroups(v []*string) *InstanceNetworkInterfaceSpecification
    func (s *InstanceNetworkInterfaceSpecification) SetIpv6AddressCount(v int64) *InstanceNetworkInterfaceSpecification
    func (s *InstanceNetworkInterfaceSpecification) SetIpv6Addresses(v []*InstanceIpv6Address) *InstanceNetworkInterfaceSpecification
    func (s *InstanceNetworkInterfaceSpecification) SetNetworkInterfaceId(v string) *InstanceNetworkInterfaceSpecification
    func (s *InstanceNetworkInterfaceSpecification) SetPrivateIpAddress(v string) *InstanceNetworkInterfaceSpecification
    func (s *InstanceNetworkInterfaceSpecification) SetPrivateIpAddresses(v []*PrivateIpAddressSpecification) *InstanceNetworkInterfaceSpecification
    func (s *InstanceNetworkInterfaceSpecification) SetSecondaryPrivateIpAddressCount(v int64) *InstanceNetworkInterfaceSpecification
    func (s *InstanceNetworkInterfaceSpecification) SetSubnetId(v string) *InstanceNetworkInterfaceSpecification
    func (s InstanceNetworkInterfaceSpecification) String() string
    func (s *InstanceNetworkInterfaceSpecification) Validate() error
type InstancePrivateIpAddress
    func (s InstancePrivateIpAddress) GoString() string
    func (s *InstancePrivateIpAddress) SetAssociation(v *InstanceNetworkInterfaceAssociation) *InstancePrivateIpAddress
    func (s *InstancePrivateIpAddress) SetPrimary(v bool) *InstancePrivateIpAddress
    func (s *InstancePrivateIpAddress) SetPrivateDnsName(v string) *InstancePrivateIpAddress
    func (s *InstancePrivateIpAddress) SetPrivateIpAddress(v string) *InstancePrivateIpAddress
    func (s InstancePrivateIpAddress) String() string
type InstanceState
    func (s InstanceState) GoString() string
    func (s *InstanceState) SetCode(v int64) *InstanceState
    func (s *InstanceState) SetName(v string) *InstanceState
    func (s InstanceState) String() string
type InstanceStateChange
    func (s InstanceStateChange) GoString() string
    func (s *InstanceStateChange) SetCurrentState(v *InstanceState) *InstanceStateChange
    func (s *InstanceStateChange) SetInstanceId(v string) *InstanceStateChange
    func (s *InstanceStateChange) SetPreviousState(v *InstanceState) *InstanceStateChange
    func (s InstanceStateChange) String() string
type InstanceStatus
    func (s InstanceStatus) GoString() string
    func (s *InstanceStatus) SetAvailabilityZone(v string) *InstanceStatus
    func (s *InstanceStatus) SetEvents(v []*InstanceStatusEvent) *InstanceStatus
    func (s *InstanceStatus) SetInstanceId(v string) *InstanceStatus
    func (s *InstanceStatus) SetInstanceState(v *InstanceState) *InstanceStatus
    func (s *InstanceStatus) SetInstanceStatus(v *InstanceStatusSummary) *InstanceStatus
    func (s *InstanceStatus) SetSystemStatus(v *InstanceStatusSummary) *InstanceStatus
    func (s InstanceStatus) String() string
type InstanceStatusDetails
    func (s InstanceStatusDetails) GoString() string
    func (s *InstanceStatusDetails) SetImpairedSince(v time.Time) *InstanceStatusDetails
    func (s *InstanceStatusDetails) SetName(v string) *InstanceStatusDetails
    func (s *InstanceStatusDetails) SetStatus(v string) *InstanceStatusDetails
    func (s InstanceStatusDetails) String() string
type InstanceStatusEvent
    func (s InstanceStatusEvent) GoString() string
    func (s *InstanceStatusEvent) SetCode(v string) *InstanceStatusEvent
    func (s *InstanceStatusEvent) SetDescription(v string) *InstanceStatusEvent
    func (s *InstanceStatusEvent) SetNotAfter(v time.Time) *InstanceStatusEvent
    func (s *InstanceStatusEvent) SetNotBefore(v time.Time) *InstanceStatusEvent
    func (s InstanceStatusEvent) String() string
type InstanceStatusSummary
    func (s InstanceStatusSummary) GoString() string
    func (s *InstanceStatusSummary) SetDetails(v []*InstanceStatusDetails) *InstanceStatusSummary
    func (s *InstanceStatusSummary) SetStatus(v string) *InstanceStatusSummary
    func (s InstanceStatusSummary) String() string
type InternetGateway
    func (s InternetGateway) GoString() string
    func (s *InternetGateway) SetAttachments(v []*InternetGatewayAttachment) *InternetGateway
    func (s *InternetGateway) SetInternetGatewayId(v string) *InternetGateway
    func (s *InternetGateway) SetTags(v []*Tag) *InternetGateway
    func (s InternetGateway) String() string
type InternetGatewayAttachment
    func (s InternetGatewayAttachment) GoString() string
    func (s *InternetGatewayAttachment) SetState(v string) *InternetGatewayAttachment
    func (s *InternetGatewayAttachment) SetVpcId(v string) *InternetGatewayAttachment
    func (s InternetGatewayAttachment) String() string
type IpPermission
    func (s IpPermission) GoString() string
    func (s *IpPermission) SetFromPort(v int64) *IpPermission
    func (s *IpPermission) SetIpProtocol(v string) *IpPermission
    func (s *IpPermission) SetIpRanges(v []*IpRange) *IpPermission
    func (s *IpPermission) SetIpv6Ranges(v []*Ipv6Range) *IpPermission
    func (s *IpPermission) SetPrefixListIds(v []*PrefixListId) *IpPermission
    func (s *IpPermission) SetToPort(v int64) *IpPermission
    func (s *IpPermission) SetUserIdGroupPairs(v []*UserIdGroupPair) *IpPermission
    func (s IpPermission) String() string
type IpRange
    func (s IpRange) GoString() string
    func (s *IpRange) SetCidrIp(v string) *IpRange
    func (s IpRange) String() string
type Ipv6CidrBlock
    func (s Ipv6CidrBlock) GoString() string
    func (s *Ipv6CidrBlock) SetIpv6CidrBlock(v string) *Ipv6CidrBlock
    func (s Ipv6CidrBlock) String() string
type Ipv6Range
    func (s Ipv6Range) GoString() string
    func (s *Ipv6Range) SetCidrIpv6(v string) *Ipv6Range
    func (s Ipv6Range) String() string
type KeyPairInfo
    func (s KeyPairInfo) GoString() string
    func (s *KeyPairInfo) SetKeyFingerprint(v string) *KeyPairInfo
    func (s *KeyPairInfo) SetKeyName(v string) *KeyPairInfo
    func (s KeyPairInfo) String() string
type LaunchPermission
    func (s LaunchPermission) GoString() string
    func (s *LaunchPermission) SetGroup(v string) *LaunchPermission
    func (s *LaunchPermission) SetUserId(v string) *LaunchPermission
    func (s LaunchPermission) String() string
type LaunchPermissionModifications
    func (s LaunchPermissionModifications) GoString() string
    func (s *LaunchPermissionModifications) SetAdd(v []*LaunchPermission) *LaunchPermissionModifications
    func (s *LaunchPermissionModifications) SetRemove(v []*LaunchPermission) *LaunchPermissionModifications
    func (s LaunchPermissionModifications) String() string
type LaunchSpecification
    func (s LaunchSpecification) GoString() string
    func (s *LaunchSpecification) SetAddressingType(v string) *LaunchSpecification
    func (s *LaunchSpecification) SetBlockDeviceMappings(v []*BlockDeviceMapping) *LaunchSpecification
    func (s *LaunchSpecification) SetEbsOptimized(v bool) *LaunchSpecification
    func (s *LaunchSpecification) SetIamInstanceProfile(v *IamInstanceProfileSpecification) *LaunchSpecification
    func (s *LaunchSpecification) SetImageId(v string) *LaunchSpecification
    func (s *LaunchSpecification) SetInstanceType(v string) *LaunchSpecification
    func (s *LaunchSpecification) SetKernelId(v string) *LaunchSpecification
    func (s *LaunchSpecification) SetKeyName(v string) *LaunchSpecification
    func (s *LaunchSpecification) SetMonitoring(v *RunInstancesMonitoringEnabled) *LaunchSpecification
    func (s *LaunchSpecification) SetNetworkInterfaces(v []*InstanceNetworkInterfaceSpecification) *LaunchSpecification
    func (s *LaunchSpecification) SetPlacement(v *SpotPlacement) *LaunchSpecification
    func (s *LaunchSpecification) SetRamdiskId(v string) *LaunchSpecification
    func (s *LaunchSpecification) SetSecurityGroups(v []*GroupIdentifier) *LaunchSpecification
    func (s *LaunchSpecification) SetSubnetId(v string) *LaunchSpecification
    func (s *LaunchSpecification) SetUserData(v string) *LaunchSpecification
    func (s LaunchSpecification) String() string
type ModifyHostsInput
    func (s ModifyHostsInput) GoString() string
    func (s *ModifyHostsInput) SetAutoPlacement(v string) *ModifyHostsInput
    func (s *ModifyHostsInput) SetHostIds(v []*string) *ModifyHostsInput
    func (s ModifyHostsInput) String() string
    func (s *ModifyHostsInput) Validate() error
type ModifyHostsOutput
    func (s ModifyHostsOutput) GoString() string
    func (s *ModifyHostsOutput) SetSuccessful(v []*string) *ModifyHostsOutput
    func (s *ModifyHostsOutput) SetUnsuccessful(v []*UnsuccessfulItem) *ModifyHostsOutput
    func (s ModifyHostsOutput) String() string
type ModifyIdFormatInput
    func (s ModifyIdFormatInput) GoString() string
    func (s *ModifyIdFormatInput) SetResource(v string) *ModifyIdFormatInput
    func (s *ModifyIdFormatInput) SetUseLongIds(v bool) *ModifyIdFormatInput
    func (s ModifyIdFormatInput) String() string
    func (s *ModifyIdFormatInput) Validate() error
type ModifyIdFormatOutput
    func (s ModifyIdFormatOutput) GoString() string
    func (s ModifyIdFormatOutput) String() string
type ModifyIdentityIdFormatInput
    func (s ModifyIdentityIdFormatInput) GoString() string
    func (s *ModifyIdentityIdFormatInput) SetPrincipalArn(v string) *ModifyIdentityIdFormatInput
    func (s *ModifyIdentityIdFormatInput) SetResource(v string) *ModifyIdentityIdFormatInput
    func (s *ModifyIdentityIdFormatInput) SetUseLongIds(v bool) *ModifyIdentityIdFormatInput
    func (s ModifyIdentityIdFormatInput) String() string
    func (s *ModifyIdentityIdFormatInput) Validate() error
type ModifyIdentityIdFormatOutput
    func (s ModifyIdentityIdFormatOutput) GoString() string
    func (s ModifyIdentityIdFormatOutput) String() string
type ModifyImageAttributeInput
    func (s ModifyImageAttributeInput) GoString() string
    func (s *ModifyImageAttributeInput) SetAttribute(v string) *ModifyImageAttributeInput
    func (s *ModifyImageAttributeInput) SetDescription(v *AttributeValue) *ModifyImageAttributeInput
    func (s *ModifyImageAttributeInput) SetDryRun(v bool) *ModifyImageAttributeInput
    func (s *ModifyImageAttributeInput) SetImageId(v string) *ModifyImageAttributeInput
    func (s *ModifyImageAttributeInput) SetLaunchPermission(v *LaunchPermissionModifications) *ModifyImageAttributeInput
    func (s *ModifyImageAttributeInput) SetOperationType(v string) *ModifyImageAttributeInput
    func (s *ModifyImageAttributeInput) SetProductCodes(v []*string) *ModifyImageAttributeInput
    func (s *ModifyImageAttributeInput) SetUserGroups(v []*string) *ModifyImageAttributeInput
    func (s *ModifyImageAttributeInput) SetUserIds(v []*string) *ModifyImageAttributeInput
    func (s *ModifyImageAttributeInput) SetValue(v string) *ModifyImageAttributeInput
    func (s ModifyImageAttributeInput) String() string
    func (s *ModifyImageAttributeInput) Validate() error
type ModifyImageAttributeOutput
    func (s ModifyImageAttributeOutput) GoString() string
    func (s ModifyImageAttributeOutput) String() string
type ModifyInstanceAttributeInput
    func (s ModifyInstanceAttributeInput) GoString() string
    func (s *ModifyInstanceAttributeInput) SetAttribute(v string) *ModifyInstanceAttributeInput
    func (s *ModifyInstanceAttributeInput) SetBlockDeviceMappings(v []*InstanceBlockDeviceMappingSpecification) *ModifyInstanceAttributeInput
    func (s *ModifyInstanceAttributeInput) SetDisableApiTermination(v *AttributeBooleanValue) *ModifyInstanceAttributeInput
    func (s *ModifyInstanceAttributeInput) SetDryRun(v bool) *ModifyInstanceAttributeInput
    func (s *ModifyInstanceAttributeInput) SetEbsOptimized(v *AttributeBooleanValue) *ModifyInstanceAttributeInput
    func (s *ModifyInstanceAttributeInput) SetEnaSupport(v *AttributeBooleanValue) *ModifyInstanceAttributeInput
    func (s *ModifyInstanceAttributeInput) SetGroups(v []*string) *ModifyInstanceAttributeInput
    func (s *ModifyInstanceAttributeInput) SetInstanceId(v string) *ModifyInstanceAttributeInput
    func (s *ModifyInstanceAttributeInput) SetInstanceInitiatedShutdownBehavior(v *AttributeValue) *ModifyInstanceAttributeInput
    func (s *ModifyInstanceAttributeInput) SetInstanceType(v *AttributeValue) *ModifyInstanceAttributeInput
    func (s *ModifyInstanceAttributeInput) SetKernel(v *AttributeValue) *ModifyInstanceAttributeInput
    func (s *ModifyInstanceAttributeInput) SetRamdisk(v *AttributeValue) *ModifyInstanceAttributeInput
    func (s *ModifyInstanceAttributeInput) SetSourceDestCheck(v *AttributeBooleanValue) *ModifyInstanceAttributeInput
    func (s *ModifyInstanceAttributeInput) SetSriovNetSupport(v *AttributeValue) *ModifyInstanceAttributeInput
    func (s *ModifyInstanceAttributeInput) SetUserData(v *BlobAttributeValue) *ModifyInstanceAttributeInput
    func (s *ModifyInstanceAttributeInput) SetValue(v string) *ModifyInstanceAttributeInput
    func (s ModifyInstanceAttributeInput) String() string
    func (s *ModifyInstanceAttributeInput) Validate() error
type ModifyInstanceAttributeOutput
    func (s ModifyInstanceAttributeOutput) GoString() string
    func (s ModifyInstanceAttributeOutput) String() string
type ModifyInstancePlacementInput
    func (s ModifyInstancePlacementInput) GoString() string
    func (s *ModifyInstancePlacementInput) SetAffinity(v string) *ModifyInstancePlacementInput
    func (s *ModifyInstancePlacementInput) SetHostId(v string) *ModifyInstancePlacementInput
    func (s *ModifyInstancePlacementInput) SetInstanceId(v string) *ModifyInstancePlacementInput
    func (s *ModifyInstancePlacementInput) SetTenancy(v string) *ModifyInstancePlacementInput
    func (s ModifyInstancePlacementInput) String() string
    func (s *ModifyInstancePlacementInput) Validate() error
type ModifyInstancePlacementOutput
    func (s ModifyInstancePlacementOutput) GoString() string
    func (s *ModifyInstancePlacementOutput) SetReturn(v bool) *ModifyInstancePlacementOutput
    func (s ModifyInstancePlacementOutput) String() string
type ModifyNetworkInterfaceAttributeInput
    func (s ModifyNetworkInterfaceAttributeInput) GoString() string
    func (s *ModifyNetworkInterfaceAttributeInput) SetAttachment(v *NetworkInterfaceAttachmentChanges) *ModifyNetworkInterfaceAttributeInput
    func (s *ModifyNetworkInterfaceAttributeInput) SetDescription(v *AttributeValue) *ModifyNetworkInterfaceAttributeInput
    func (s *ModifyNetworkInterfaceAttributeInput) SetDryRun(v bool) *ModifyNetworkInterfaceAttributeInput
    func (s *ModifyNetworkInterfaceAttributeInput) SetGroups(v []*string) *ModifyNetworkInterfaceAttributeInput
    func (s *ModifyNetworkInterfaceAttributeInput) SetNetworkInterfaceId(v string) *ModifyNetworkInterfaceAttributeInput
    func (s *ModifyNetworkInterfaceAttributeInput) SetSourceDestCheck(v *AttributeBooleanValue) *ModifyNetworkInterfaceAttributeInput
    func (s ModifyNetworkInterfaceAttributeInput) String() string
    func (s *ModifyNetworkInterfaceAttributeInput) Validate() error
type ModifyNetworkInterfaceAttributeOutput
    func (s ModifyNetworkInterfaceAttributeOutput) GoString() string
    func (s ModifyNetworkInterfaceAttributeOutput) String() string
type ModifyReservedInstancesInput
    func (s ModifyReservedInstancesInput) GoString() string
    func (s *ModifyReservedInstancesInput) SetClientToken(v string) *ModifyReservedInstancesInput
    func (s *ModifyReservedInstancesInput) SetReservedInstancesIds(v []*string) *ModifyReservedInstancesInput
    func (s *ModifyReservedInstancesInput) SetTargetConfigurations(v []*ReservedInstancesConfiguration) *ModifyReservedInstancesInput
    func (s ModifyReservedInstancesInput) String() string
    func (s *ModifyReservedInstancesInput) Validate() error
type ModifyReservedInstancesOutput
    func (s ModifyReservedInstancesOutput) GoString() string
    func (s *ModifyReservedInstancesOutput) SetReservedInstancesModificationId(v string) *ModifyReservedInstancesOutput
    func (s ModifyReservedInstancesOutput) String() string
type ModifySnapshotAttributeInput
    func (s ModifySnapshotAttributeInput) GoString() string
    func (s *ModifySnapshotAttributeInput) SetAttribute(v string) *ModifySnapshotAttributeInput
    func (s *ModifySnapshotAttributeInput) SetCreateVolumePermission(v *CreateVolumePermissionModifications) *ModifySnapshotAttributeInput
    func (s *ModifySnapshotAttributeInput) SetDryRun(v bool) *ModifySnapshotAttributeInput
    func (s *ModifySnapshotAttributeInput) SetGroupNames(v []*string) *ModifySnapshotAttributeInput
    func (s *ModifySnapshotAttributeInput) SetOperationType(v string) *ModifySnapshotAttributeInput
    func (s *ModifySnapshotAttributeInput) SetSnapshotId(v string) *ModifySnapshotAttributeInput
    func (s *ModifySnapshotAttributeInput) SetUserIds(v []*string) *ModifySnapshotAttributeInput
    func (s ModifySnapshotAttributeInput) String() string
    func (s *ModifySnapshotAttributeInput) Validate() error
type ModifySnapshotAttributeOutput
    func (s ModifySnapshotAttributeOutput) GoString() string
    func (s ModifySnapshotAttributeOutput) String() string
type ModifySpotFleetRequestInput
    func (s ModifySpotFleetRequestInput) GoString() string
    func (s *ModifySpotFleetRequestInput) SetExcessCapacityTerminationPolicy(v string) *ModifySpotFleetRequestInput
    func (s *ModifySpotFleetRequestInput) SetSpotFleetRequestId(v string) *ModifySpotFleetRequestInput
    func (s *ModifySpotFleetRequestInput) SetTargetCapacity(v int64) *ModifySpotFleetRequestInput
    func (s ModifySpotFleetRequestInput) String() string
    func (s *ModifySpotFleetRequestInput) Validate() error
type ModifySpotFleetRequestOutput
    func (s ModifySpotFleetRequestOutput) GoString() string
    func (s *ModifySpotFleetRequestOutput) SetReturn(v bool) *ModifySpotFleetRequestOutput
    func (s ModifySpotFleetRequestOutput) String() string
type ModifySubnetAttributeInput
    func (s ModifySubnetAttributeInput) GoString() string
    func (s *ModifySubnetAttributeInput) SetAssignIpv6AddressOnCreation(v *AttributeBooleanValue) *ModifySubnetAttributeInput
    func (s *ModifySubnetAttributeInput) SetMapPublicIpOnLaunch(v *AttributeBooleanValue) *ModifySubnetAttributeInput
    func (s *ModifySubnetAttributeInput) SetSubnetId(v string) *ModifySubnetAttributeInput
    func (s ModifySubnetAttributeInput) String() string
    func (s *ModifySubnetAttributeInput) Validate() error
type ModifySubnetAttributeOutput
    func (s ModifySubnetAttributeOutput) GoString() string
    func (s ModifySubnetAttributeOutput) String() string
type ModifyVolumeAttributeInput
    func (s ModifyVolumeAttributeInput) GoString() string
    func (s *ModifyVolumeAttributeInput) SetAutoEnableIO(v *AttributeBooleanValue) *ModifyVolumeAttributeInput
    func (s *ModifyVolumeAttributeInput) SetDryRun(v bool) *ModifyVolumeAttributeInput
    func (s *ModifyVolumeAttributeInput) SetVolumeId(v string) *ModifyVolumeAttributeInput
    func (s ModifyVolumeAttributeInput) String() string
    func (s *ModifyVolumeAttributeInput) Validate() error
type ModifyVolumeAttributeOutput
    func (s ModifyVolumeAttributeOutput) GoString() string
    func (s ModifyVolumeAttributeOutput) String() string
type ModifyVolumeInput
    func (s ModifyVolumeInput) GoString() string
    func (s *ModifyVolumeInput) SetDryRun(v bool) *ModifyVolumeInput
    func (s *ModifyVolumeInput) SetIops(v int64) *ModifyVolumeInput
    func (s *ModifyVolumeInput) SetSize(v int64) *ModifyVolumeInput
    func (s *ModifyVolumeInput) SetVolumeId(v string) *ModifyVolumeInput
    func (s *ModifyVolumeInput) SetVolumeType(v string) *ModifyVolumeInput
    func (s ModifyVolumeInput) String() string
    func (s *ModifyVolumeInput) Validate() error
type ModifyVolumeOutput
    func (s ModifyVolumeOutput) GoString() string
    func (s *ModifyVolumeOutput) SetVolumeModification(v *VolumeModification) *ModifyVolumeOutput
    func (s ModifyVolumeOutput) String() string
type ModifyVpcAttributeInput
    func (s ModifyVpcAttributeInput) GoString() string
    func (s *ModifyVpcAttributeInput) SetEnableDnsHostnames(v *AttributeBooleanValue) *ModifyVpcAttributeInput
    func (s *ModifyVpcAttributeInput) SetEnableDnsSupport(v *AttributeBooleanValue) *ModifyVpcAttributeInput
    func (s *ModifyVpcAttributeInput) SetVpcId(v string) *ModifyVpcAttributeInput
    func (s ModifyVpcAttributeInput) String() string
    func (s *ModifyVpcAttributeInput) Validate() error
type ModifyVpcAttributeOutput
    func (s ModifyVpcAttributeOutput) GoString() string
    func (s ModifyVpcAttributeOutput) String() string
type ModifyVpcEndpointInput
    func (s ModifyVpcEndpointInput) GoString() string
    func (s *ModifyVpcEndpointInput) SetAddRouteTableIds(v []*string) *ModifyVpcEndpointInput
    func (s *ModifyVpcEndpointInput) SetDryRun(v bool) *ModifyVpcEndpointInput
    func (s *ModifyVpcEndpointInput) SetPolicyDocument(v string) *ModifyVpcEndpointInput
    func (s *ModifyVpcEndpointInput) SetRemoveRouteTableIds(v []*string) *ModifyVpcEndpointInput
    func (s *ModifyVpcEndpointInput) SetResetPolicy(v bool) *ModifyVpcEndpointInput
    func (s *ModifyVpcEndpointInput) SetVpcEndpointId(v string) *ModifyVpcEndpointInput
    func (s ModifyVpcEndpointInput) String() string
    func (s *ModifyVpcEndpointInput) Validate() error
type ModifyVpcEndpointOutput
    func (s ModifyVpcEndpointOutput) GoString() string
    func (s *ModifyVpcEndpointOutput) SetReturn(v bool) *ModifyVpcEndpointOutput
    func (s ModifyVpcEndpointOutput) String() string
type ModifyVpcPeeringConnectionOptionsInput
    func (s ModifyVpcPeeringConnectionOptionsInput) GoString() string
    func (s *ModifyVpcPeeringConnectionOptionsInput) SetAccepterPeeringConnectionOptions(v *PeeringConnectionOptionsRequest) *ModifyVpcPeeringConnectionOptionsInput
    func (s *ModifyVpcPeeringConnectionOptionsInput) SetDryRun(v bool) *ModifyVpcPeeringConnectionOptionsInput
    func (s *ModifyVpcPeeringConnectionOptionsInput) SetRequesterPeeringConnectionOptions(v *PeeringConnectionOptionsRequest) *ModifyVpcPeeringConnectionOptionsInput
    func (s *ModifyVpcPeeringConnectionOptionsInput) SetVpcPeeringConnectionId(v string) *ModifyVpcPeeringConnectionOptionsInput
    func (s ModifyVpcPeeringConnectionOptionsInput) String() string
    func (s *ModifyVpcPeeringConnectionOptionsInput) Validate() error
type ModifyVpcPeeringConnectionOptionsOutput
    func (s ModifyVpcPeeringConnectionOptionsOutput) GoString() string
    func (s *ModifyVpcPeeringConnectionOptionsOutput) SetAccepterPeeringConnectionOptions(v *PeeringConnectionOptions) *ModifyVpcPeeringConnectionOptionsOutput
    func (s *ModifyVpcPeeringConnectionOptionsOutput) SetRequesterPeeringConnectionOptions(v *PeeringConnectionOptions) *ModifyVpcPeeringConnectionOptionsOutput
    func (s ModifyVpcPeeringConnectionOptionsOutput) String() string
type MonitorInstancesInput
    func (s MonitorInstancesInput) GoString() string
    func (s *MonitorInstancesInput) SetDryRun(v bool) *MonitorInstancesInput
    func (s *MonitorInstancesInput) SetInstanceIds(v []*string) *MonitorInstancesInput
    func (s MonitorInstancesInput) String() string
    func (s *MonitorInstancesInput) Validate() error
type MonitorInstancesOutput
    func (s MonitorInstancesOutput) GoString() string
    func (s *MonitorInstancesOutput) SetInstanceMonitorings(v []*InstanceMonitoring) *MonitorInstancesOutput
    func (s MonitorInstancesOutput) String() string
type Monitoring
    func (s Monitoring) GoString() string
    func (s *Monitoring) SetState(v string) *Monitoring
    func (s Monitoring) String() string
type MoveAddressToVpcInput
    func (s MoveAddressToVpcInput) GoString() string
    func (s *MoveAddressToVpcInput) SetDryRun(v bool) *MoveAddressToVpcInput
    func (s *MoveAddressToVpcInput) SetPublicIp(v string) *MoveAddressToVpcInput
    func (s MoveAddressToVpcInput) String() string
    func (s *MoveAddressToVpcInput) Validate() error
type MoveAddressToVpcOutput
    func (s MoveAddressToVpcOutput) GoString() string
    func (s *MoveAddressToVpcOutput) SetAllocationId(v string) *MoveAddressToVpcOutput
    func (s *MoveAddressToVpcOutput) SetStatus(v string) *MoveAddressToVpcOutput
    func (s MoveAddressToVpcOutput) String() string
type MovingAddressStatus
    func (s MovingAddressStatus) GoString() string
    func (s *MovingAddressStatus) SetMoveStatus(v string) *MovingAddressStatus
    func (s *MovingAddressStatus) SetPublicIp(v string) *MovingAddressStatus
    func (s MovingAddressStatus) String() string
type NatGateway
    func (s NatGateway) GoString() string
    func (s *NatGateway) SetCreateTime(v time.Time) *NatGateway
    func (s *NatGateway) SetDeleteTime(v time.Time) *NatGateway
    func (s *NatGateway) SetFailureCode(v string) *NatGateway
    func (s *NatGateway) SetFailureMessage(v string) *NatGateway
    func (s *NatGateway) SetNatGatewayAddresses(v []*NatGatewayAddress) *NatGateway
    func (s *NatGateway) SetNatGatewayId(v string) *NatGateway
    func (s *NatGateway) SetProvisionedBandwidth(v *ProvisionedBandwidth) *NatGateway
    func (s *NatGateway) SetState(v string) *NatGateway
    func (s *NatGateway) SetSubnetId(v string) *NatGateway
    func (s *NatGateway) SetVpcId(v string) *NatGateway
    func (s NatGateway) String() string
type NatGatewayAddress
    func (s NatGatewayAddress) GoString() string
    func (s *NatGatewayAddress) SetAllocationId(v string) *NatGatewayAddress
    func (s *NatGatewayAddress) SetNetworkInterfaceId(v string) *NatGatewayAddress
    func (s *NatGatewayAddress) SetPrivateIp(v string) *NatGatewayAddress
    func (s *NatGatewayAddress) SetPublicIp(v string) *NatGatewayAddress
    func (s NatGatewayAddress) String() string
type NetworkAcl
    func (s NetworkAcl) GoString() string
    func (s *NetworkAcl) SetAssociations(v []*NetworkAclAssociation) *NetworkAcl
    func (s *NetworkAcl) SetEntries(v []*NetworkAclEntry) *NetworkAcl
    func (s *NetworkAcl) SetIsDefault(v bool) *NetworkAcl
    func (s *NetworkAcl) SetNetworkAclId(v string) *NetworkAcl
    func (s *NetworkAcl) SetTags(v []*Tag) *NetworkAcl
    func (s *NetworkAcl) SetVpcId(v string) *NetworkAcl
    func (s NetworkAcl) String() string
type NetworkAclAssociation
    func (s NetworkAclAssociation) GoString() string
    func (s *NetworkAclAssociation) SetNetworkAclAssociationId(v string) *NetworkAclAssociation
    func (s *NetworkAclAssociation) SetNetworkAclId(v string) *NetworkAclAssociation
    func (s *NetworkAclAssociation) SetSubnetId(v string) *NetworkAclAssociation
    func (s NetworkAclAssociation) String() string
type NetworkAclEntry
    func (s NetworkAclEntry) GoString() string
    func (s *NetworkAclEntry) SetCidrBlock(v string) *NetworkAclEntry
    func (s *NetworkAclEntry) SetEgress(v bool) *NetworkAclEntry
    func (s *NetworkAclEntry) SetIcmpTypeCode(v *IcmpTypeCode) *NetworkAclEntry
    func (s *NetworkAclEntry) SetIpv6CidrBlock(v string) *NetworkAclEntry
    func (s *NetworkAclEntry) SetPortRange(v *PortRange) *NetworkAclEntry
    func (s *NetworkAclEntry) SetProtocol(v string) *NetworkAclEntry
    func (s *NetworkAclEntry) SetRuleAction(v string) *NetworkAclEntry
    func (s *NetworkAclEntry) SetRuleNumber(v int64) *NetworkAclEntry
    func (s NetworkAclEntry) String() string
type NetworkInterface
    func (s NetworkInterface) GoString() string
    func (s *NetworkInterface) SetAssociation(v *NetworkInterfaceAssociation) *NetworkInterface
    func (s *NetworkInterface) SetAttachment(v *NetworkInterfaceAttachment) *NetworkInterface
    func (s *NetworkInterface) SetAvailabilityZone(v string) *NetworkInterface
    func (s *NetworkInterface) SetDescription(v string) *NetworkInterface
    func (s *NetworkInterface) SetGroups(v []*GroupIdentifier) *NetworkInterface
    func (s *NetworkInterface) SetInterfaceType(v string) *NetworkInterface
    func (s *NetworkInterface) SetIpv6Addresses(v []*NetworkInterfaceIpv6Address) *NetworkInterface
    func (s *NetworkInterface) SetMacAddress(v string) *NetworkInterface
    func (s *NetworkInterface) SetNetworkInterfaceId(v string) *NetworkInterface
    func (s *NetworkInterface) SetOwnerId(v string) *NetworkInterface
    func (s *NetworkInterface) SetPrivateDnsName(v string) *NetworkInterface
    func (s *NetworkInterface) SetPrivateIpAddress(v string) *NetworkInterface
    func (s *NetworkInterface) SetPrivateIpAddresses(v []*NetworkInterfacePrivateIpAddress) *NetworkInterface
    func (s *NetworkInterface) SetRequesterId(v string) *NetworkInterface
    func (s *NetworkInterface) SetRequesterManaged(v bool) *NetworkInterface
    func (s *NetworkInterface) SetSourceDestCheck(v bool) *NetworkInterface
    func (s *NetworkInterface) SetStatus(v string) *NetworkInterface
    func (s *NetworkInterface) SetSubnetId(v string) *NetworkInterface
    func (s *NetworkInterface) SetTagSet(v []*Tag) *NetworkInterface
    func (s *NetworkInterface) SetVpcId(v string) *NetworkInterface
    func (s NetworkInterface) String() string
type NetworkInterfaceAssociation
    func (s NetworkInterfaceAssociation) GoString() string
    func (s *NetworkInterfaceAssociation) SetAllocationId(v string) *NetworkInterfaceAssociation
    func (s *NetworkInterfaceAssociation) SetAssociationId(v string) *NetworkInterfaceAssociation
    func (s *NetworkInterfaceAssociation) SetIpOwnerId(v string) *NetworkInterfaceAssociation
    func (s *NetworkInterfaceAssociation) SetPublicDnsName(v string) *NetworkInterfaceAssociation
    func (s *NetworkInterfaceAssociation) SetPublicIp(v string) *NetworkInterfaceAssociation
    func (s NetworkInterfaceAssociation) String() string
type NetworkInterfaceAttachment
    func (s NetworkInterfaceAttachment) GoString() string
    func (s *NetworkInterfaceAttachment) SetAttachTime(v time.Time) *NetworkInterfaceAttachment
    func (s *NetworkInterfaceAttachment) SetAttachmentId(v string) *NetworkInterfaceAttachment
    func (s *NetworkInterfaceAttachment) SetDeleteOnTermination(v bool) *NetworkInterfaceAttachment
    func (s *NetworkInterfaceAttachment) SetDeviceIndex(v int64) *NetworkInterfaceAttachment
    func (s *NetworkInterfaceAttachment) SetInstanceId(v string) *NetworkInterfaceAttachment
    func (s *NetworkInterfaceAttachment) SetInstanceOwnerId(v string) *NetworkInterfaceAttachment
    func (s *NetworkInterfaceAttachment) SetStatus(v string) *NetworkInterfaceAttachment
    func (s NetworkInterfaceAttachment) String() string
type NetworkInterfaceAttachmentChanges
    func (s NetworkInterfaceAttachmentChanges) GoString() string
    func (s *NetworkInterfaceAttachmentChanges) SetAttachmentId(v string) *NetworkInterfaceAttachmentChanges
    func (s *NetworkInterfaceAttachmentChanges) SetDeleteOnTermination(v bool) *NetworkInterfaceAttachmentChanges
    func (s NetworkInterfaceAttachmentChanges) String() string
type NetworkInterfaceIpv6Address
    func (s NetworkInterfaceIpv6Address) GoString() string
    func (s *NetworkInterfaceIpv6Address) SetIpv6Address(v string) *NetworkInterfaceIpv6Address
    func (s NetworkInterfaceIpv6Address) String() string
type NetworkInterfacePrivateIpAddress
    func (s NetworkInterfacePrivateIpAddress) GoString() string
    func (s *NetworkInterfacePrivateIpAddress) SetAssociation(v *NetworkInterfaceAssociation) *NetworkInterfacePrivateIpAddress
    func (s *NetworkInterfacePrivateIpAddress) SetPrimary(v bool) *NetworkInterfacePrivateIpAddress
    func (s *NetworkInterfacePrivateIpAddress) SetPrivateDnsName(v string) *NetworkInterfacePrivateIpAddress
    func (s *NetworkInterfacePrivateIpAddress) SetPrivateIpAddress(v string) *NetworkInterfacePrivateIpAddress
    func (s NetworkInterfacePrivateIpAddress) String() string
type NewDhcpConfiguration
    func (s NewDhcpConfiguration) GoString() string
    func (s *NewDhcpConfiguration) SetKey(v string) *NewDhcpConfiguration
    func (s *NewDhcpConfiguration) SetValues(v []*string) *NewDhcpConfiguration
    func (s NewDhcpConfiguration) String() string
type PciId
    func (s PciId) GoString() string
    func (s *PciId) SetDeviceId(v string) *PciId
    func (s *PciId) SetSubsystemId(v string) *PciId
    func (s *PciId) SetSubsystemVendorId(v string) *PciId
    func (s *PciId) SetVendorId(v string) *PciId
    func (s PciId) String() string
type PeeringConnectionOptions
    func (s PeeringConnectionOptions) GoString() string
    func (s *PeeringConnectionOptions) SetAllowDnsResolutionFromRemoteVpc(v bool) *PeeringConnectionOptions
    func (s *PeeringConnectionOptions) SetAllowEgressFromLocalClassicLinkToRemoteVpc(v bool) *PeeringConnectionOptions
    func (s *PeeringConnectionOptions) SetAllowEgressFromLocalVpcToRemoteClassicLink(v bool) *PeeringConnectionOptions
    func (s PeeringConnectionOptions) String() string
type PeeringConnectionOptionsRequest
    func (s PeeringConnectionOptionsRequest) GoString() string
    func (s *PeeringConnectionOptionsRequest) SetAllowDnsResolutionFromRemoteVpc(v bool) *PeeringConnectionOptionsRequest
    func (s *PeeringConnectionOptionsRequest) SetAllowEgressFromLocalClassicLinkToRemoteVpc(v bool) *PeeringConnectionOptionsRequest
    func (s *PeeringConnectionOptionsRequest) SetAllowEgressFromLocalVpcToRemoteClassicLink(v bool) *PeeringConnectionOptionsRequest
    func (s PeeringConnectionOptionsRequest) String() string
type Placement
    func (s Placement) GoString() string
    func (s *Placement) SetAffinity(v string) *Placement
    func (s *Placement) SetAvailabilityZone(v string) *Placement
    func (s *Placement) SetGroupName(v string) *Placement
    func (s *Placement) SetHostId(v string) *Placement
    func (s *Placement) SetSpreadDomain(v string) *Placement
    func (s *Placement) SetTenancy(v string) *Placement
    func (s Placement) String() string
type PlacementGroup
    func (s PlacementGroup) GoString() string
    func (s *PlacementGroup) SetGroupName(v string) *PlacementGroup
    func (s *PlacementGroup) SetState(v string) *PlacementGroup
    func (s *PlacementGroup) SetStrategy(v string) *PlacementGroup
    func (s PlacementGroup) String() string
type PortRange
    func (s PortRange) GoString() string
    func (s *PortRange) SetFrom(v int64) *PortRange
    func (s *PortRange) SetTo(v int64) *PortRange
    func (s PortRange) String() string
type PrefixList
    func (s PrefixList) GoString() string
    func (s *PrefixList) SetCidrs(v []*string) *PrefixList
    func (s *PrefixList) SetPrefixListId(v string) *PrefixList
    func (s *PrefixList) SetPrefixListName(v string) *PrefixList
    func (s PrefixList) String() string
type PrefixListId
    func (s PrefixListId) GoString() string
    func (s *PrefixListId) SetPrefixListId(v string) *PrefixListId
    func (s PrefixListId) String() string
type PriceSchedule
    func (s PriceSchedule) GoString() string
    func (s *PriceSchedule) SetActive(v bool) *PriceSchedule
    func (s *PriceSchedule) SetCurrencyCode(v string) *PriceSchedule
    func (s *PriceSchedule) SetPrice(v float64) *PriceSchedule
    func (s *PriceSchedule) SetTerm(v int64) *PriceSchedule
    func (s PriceSchedule) String() string
type PriceScheduleSpecification
    func (s PriceScheduleSpecification) GoString() string
    func (s *PriceScheduleSpecification) SetCurrencyCode(v string) *PriceScheduleSpecification
    func (s *PriceScheduleSpecification) SetPrice(v float64) *PriceScheduleSpecification
    func (s *PriceScheduleSpecification) SetTerm(v int64) *PriceScheduleSpecification
    func (s PriceScheduleSpecification) String() string
type PricingDetail
    func (s PricingDetail) GoString() string
    func (s *PricingDetail) SetCount(v int64) *PricingDetail
    func (s *PricingDetail) SetPrice(v float64) *PricingDetail
    func (s PricingDetail) String() string
type PrivateIpAddressSpecification
    func (s PrivateIpAddressSpecification) GoString() string
    func (s *PrivateIpAddressSpecification) SetPrimary(v bool) *PrivateIpAddressSpecification
    func (s *PrivateIpAddressSpecification) SetPrivateIpAddress(v string) *PrivateIpAddressSpecification
    func (s PrivateIpAddressSpecification) String() string
    func (s *PrivateIpAddressSpecification) Validate() error
type ProductCode
    func (s ProductCode) GoString() string
    func (s *ProductCode) SetProductCodeId(v string) *ProductCode
    func (s *ProductCode) SetProductCodeType(v string) *ProductCode
    func (s ProductCode) String() string
type PropagatingVgw
    func (s PropagatingVgw) GoString() string
    func (s *PropagatingVgw) SetGatewayId(v string) *PropagatingVgw
    func (s PropagatingVgw) String() string
type ProvisionedBandwidth
    func (s ProvisionedBandwidth) GoString() string
    func (s *ProvisionedBandwidth) SetProvisionTime(v time.Time) *ProvisionedBandwidth
    func (s *ProvisionedBandwidth) SetProvisioned(v string) *ProvisionedBandwidth
    func (s *ProvisionedBandwidth) SetRequestTime(v time.Time) *ProvisionedBandwidth
    func (s *ProvisionedBandwidth) SetRequested(v string) *ProvisionedBandwidth
    func (s *ProvisionedBandwidth) SetStatus(v string) *ProvisionedBandwidth
    func (s ProvisionedBandwidth) String() string
type Purchase
    func (s Purchase) GoString() string
    func (s *Purchase) SetCurrencyCode(v string) *Purchase
    func (s *Purchase) SetDuration(v int64) *Purchase
    func (s *Purchase) SetHostIdSet(v []*string) *Purchase
    func (s *Purchase) SetHostReservationId(v string) *Purchase
    func (s *Purchase) SetHourlyPrice(v string) *Purchase
    func (s *Purchase) SetInstanceFamily(v string) *Purchase
    func (s *Purchase) SetPaymentOption(v string) *Purchase
    func (s *Purchase) SetUpfrontPrice(v string) *Purchase
    func (s Purchase) String() string
type PurchaseHostReservationInput
    func (s PurchaseHostReservationInput) GoString() string
    func (s *PurchaseHostReservationInput) SetClientToken(v string) *PurchaseHostReservationInput
    func (s *PurchaseHostReservationInput) SetCurrencyCode(v string) *PurchaseHostReservationInput
    func (s *PurchaseHostReservationInput) SetHostIdSet(v []*string) *PurchaseHostReservationInput
    func (s *PurchaseHostReservationInput) SetLimitPrice(v string) *PurchaseHostReservationInput
    func (s *PurchaseHostReservationInput) SetOfferingId(v string) *PurchaseHostReservationInput
    func (s PurchaseHostReservationInput) String() string
    func (s *PurchaseHostReservationInput) Validate() error
type PurchaseHostReservationOutput
    func (s PurchaseHostReservationOutput) GoString() string
    func (s *PurchaseHostReservationOutput) SetClientToken(v string) *PurchaseHostReservationOutput
    func (s *PurchaseHostReservationOutput) SetCurrencyCode(v string) *PurchaseHostReservationOutput
    func (s *PurchaseHostReservationOutput) SetPurchase(v []*Purchase) *PurchaseHostReservationOutput
    func (s *PurchaseHostReservationOutput) SetTotalHourlyPrice(v string) *PurchaseHostReservationOutput
    func (s *PurchaseHostReservationOutput) SetTotalUpfrontPrice(v string) *PurchaseHostReservationOutput
    func (s PurchaseHostReservationOutput) String() string
type PurchaseRequest
    func (s PurchaseRequest) GoString() string
    func (s *PurchaseRequest) SetInstanceCount(v int64) *PurchaseRequest
    func (s *PurchaseRequest) SetPurchaseToken(v string) *PurchaseRequest
    func (s PurchaseRequest) String() string
    func (s *PurchaseRequest) Validate() error
type PurchaseReservedInstancesOfferingInput
    func (s PurchaseReservedInstancesOfferingInput) GoString() string
    func (s *PurchaseReservedInstancesOfferingInput) SetDryRun(v bool) *PurchaseReservedInstancesOfferingInput
    func (s *PurchaseReservedInstancesOfferingInput) SetInstanceCount(v int64) *PurchaseReservedInstancesOfferingInput
    func (s *PurchaseReservedInstancesOfferingInput) SetLimitPrice(v *ReservedInstanceLimitPrice) *PurchaseReservedInstancesOfferingInput
    func (s *PurchaseReservedInstancesOfferingInput) SetReservedInstancesOfferingId(v string) *PurchaseReservedInstancesOfferingInput
    func (s PurchaseReservedInstancesOfferingInput) String() string
    func (s *PurchaseReservedInstancesOfferingInput) Validate() error
type PurchaseReservedInstancesOfferingOutput
    func (s PurchaseReservedInstancesOfferingOutput) GoString() string
    func (s *PurchaseReservedInstancesOfferingOutput) SetReservedInstancesId(v string) *PurchaseReservedInstancesOfferingOutput
    func (s PurchaseReservedInstancesOfferingOutput) String() string
type PurchaseScheduledInstancesInput
    func (s PurchaseScheduledInstancesInput) GoString() string
    func (s *PurchaseScheduledInstancesInput) SetClientToken(v string) *PurchaseScheduledInstancesInput
    func (s *PurchaseScheduledInstancesInput) SetDryRun(v bool) *PurchaseScheduledInstancesInput
    func (s *PurchaseScheduledInstancesInput) SetPurchaseRequests(v []*PurchaseRequest) *PurchaseScheduledInstancesInput
    func (s PurchaseScheduledInstancesInput) String() string
    func (s *PurchaseScheduledInstancesInput) Validate() error
type PurchaseScheduledInstancesOutput
    func (s PurchaseScheduledInstancesOutput) GoString() string
    func (s *PurchaseScheduledInstancesOutput) SetScheduledInstanceSet(v []*ScheduledInstance) *PurchaseScheduledInstancesOutput
    func (s PurchaseScheduledInstancesOutput) String() string
type RebootInstancesInput
    func (s RebootInstancesInput) GoString() string
    func (s *RebootInstancesInput) SetDryRun(v bool) *RebootInstancesInput
    func (s *RebootInstancesInput) SetInstanceIds(v []*string) *RebootInstancesInput
    func (s RebootInstancesInput) String() string
    func (s *RebootInstancesInput) Validate() error
type RebootInstancesOutput
    func (s RebootInstancesOutput) GoString() string
    func (s RebootInstancesOutput) String() string
type RecurringCharge
    func (s RecurringCharge) GoString() string
    func (s *RecurringCharge) SetAmount(v float64) *RecurringCharge
    func (s *RecurringCharge) SetFrequency(v string) *RecurringCharge
    func (s RecurringCharge) String() string
type Region
    func (s Region) GoString() string
    func (s *Region) SetEndpoint(v string) *Region
    func (s *Region) SetRegionName(v string) *Region
    func (s Region) String() string
type RegisterImageInput
    func (s RegisterImageInput) GoString() string
    func (s *RegisterImageInput) SetArchitecture(v string) *RegisterImageInput
    func (s *RegisterImageInput) SetBillingProducts(v []*string) *RegisterImageInput
    func (s *RegisterImageInput) SetBlockDeviceMappings(v []*BlockDeviceMapping) *RegisterImageInput
    func (s *RegisterImageInput) SetDescription(v string) *RegisterImageInput
    func (s *RegisterImageInput) SetDryRun(v bool) *RegisterImageInput
    func (s *RegisterImageInput) SetEnaSupport(v bool) *RegisterImageInput
    func (s *RegisterImageInput) SetImageLocation(v string) *RegisterImageInput
    func (s *RegisterImageInput) SetKernelId(v string) *RegisterImageInput
    func (s *RegisterImageInput) SetName(v string) *RegisterImageInput
    func (s *RegisterImageInput) SetRamdiskId(v string) *RegisterImageInput
    func (s *RegisterImageInput) SetRootDeviceName(v string) *RegisterImageInput
    func (s *RegisterImageInput) SetSriovNetSupport(v string) *RegisterImageInput
    func (s *RegisterImageInput) SetVirtualizationType(v string) *RegisterImageInput
    func (s RegisterImageInput) String() string
    func (s *RegisterImageInput) Validate() error
type RegisterImageOutput
    func (s RegisterImageOutput) GoString() string
    func (s *RegisterImageOutput) SetImageId(v string) *RegisterImageOutput
    func (s RegisterImageOutput) String() string
type RejectVpcPeeringConnectionInput
    func (s RejectVpcPeeringConnectionInput) GoString() string
    func (s *RejectVpcPeeringConnectionInput) SetDryRun(v bool) *RejectVpcPeeringConnectionInput
    func (s *RejectVpcPeeringConnectionInput) SetVpcPeeringConnectionId(v string) *RejectVpcPeeringConnectionInput
    func (s RejectVpcPeeringConnectionInput) String() string
    func (s *RejectVpcPeeringConnectionInput) Validate() error
type RejectVpcPeeringConnectionOutput
    func (s RejectVpcPeeringConnectionOutput) GoString() string
    func (s *RejectVpcPeeringConnectionOutput) SetReturn(v bool) *RejectVpcPeeringConnectionOutput
    func (s RejectVpcPeeringConnectionOutput) String() string
type ReleaseAddressInput
    func (s ReleaseAddressInput) GoString() string
    func (s *ReleaseAddressInput) SetAllocationId(v string) *ReleaseAddressInput
    func (s *ReleaseAddressInput) SetDryRun(v bool) *ReleaseAddressInput
    func (s *ReleaseAddressInput) SetPublicIp(v string) *ReleaseAddressInput
    func (s ReleaseAddressInput) String() string
type ReleaseAddressOutput
    func (s ReleaseAddressOutput) GoString() string
    func (s ReleaseAddressOutput) String() string
type ReleaseHostsInput
    func (s ReleaseHostsInput) GoString() string
    func (s *ReleaseHostsInput) SetHostIds(v []*string) *ReleaseHostsInput
    func (s ReleaseHostsInput) String() string
    func (s *ReleaseHostsInput) Validate() error
type ReleaseHostsOutput
    func (s ReleaseHostsOutput) GoString() string
    func (s *ReleaseHostsOutput) SetSuccessful(v []*string) *ReleaseHostsOutput
    func (s *ReleaseHostsOutput) SetUnsuccessful(v []*UnsuccessfulItem) *ReleaseHostsOutput
    func (s ReleaseHostsOutput) String() string
type ReplaceIamInstanceProfileAssociationInput
    func (s ReplaceIamInstanceProfileAssociationInput) GoString() string
    func (s *ReplaceIamInstanceProfileAssociationInput) SetAssociationId(v string) *ReplaceIamInstanceProfileAssociationInput
    func (s *ReplaceIamInstanceProfileAssociationInput) SetIamInstanceProfile(v *IamInstanceProfileSpecification) *ReplaceIamInstanceProfileAssociationInput
    func (s ReplaceIamInstanceProfileAssociationInput) String() string
    func (s *ReplaceIamInstanceProfileAssociationInput) Validate() error
type ReplaceIamInstanceProfileAssociationOutput
    func (s ReplaceIamInstanceProfileAssociationOutput) GoString() string
    func (s *ReplaceIamInstanceProfileAssociationOutput) SetIamInstanceProfileAssociation(v *IamInstanceProfileAssociation) *ReplaceIamInstanceProfileAssociationOutput
    func (s ReplaceIamInstanceProfileAssociationOutput) String() string
type ReplaceNetworkAclAssociationInput
    func (s ReplaceNetworkAclAssociationInput) GoString() string
    func (s *ReplaceNetworkAclAssociationInput) SetAssociationId(v string) *ReplaceNetworkAclAssociationInput
    func (s *ReplaceNetworkAclAssociationInput) SetDryRun(v bool) *ReplaceNetworkAclAssociationInput
    func (s *ReplaceNetworkAclAssociationInput) SetNetworkAclId(v string) *ReplaceNetworkAclAssociationInput
    func (s ReplaceNetworkAclAssociationInput) String() string
    func (s *ReplaceNetworkAclAssociationInput) Validate() error
type ReplaceNetworkAclAssociationOutput
    func (s ReplaceNetworkAclAssociationOutput) GoString() string
    func (s *ReplaceNetworkAclAssociationOutput) SetNewAssociationId(v string) *ReplaceNetworkAclAssociationOutput
    func (s ReplaceNetworkAclAssociationOutput) String() string
type ReplaceNetworkAclEntryInput
    func (s ReplaceNetworkAclEntryInput) GoString() string
    func (s *ReplaceNetworkAclEntryInput) SetCidrBlock(v string) *ReplaceNetworkAclEntryInput
    func (s *ReplaceNetworkAclEntryInput) SetDryRun(v bool) *ReplaceNetworkAclEntryInput
    func (s *ReplaceNetworkAclEntryInput) SetEgress(v bool) *ReplaceNetworkAclEntryInput
    func (s *ReplaceNetworkAclEntryInput) SetIcmpTypeCode(v *IcmpTypeCode) *ReplaceNetworkAclEntryInput
    func (s *ReplaceNetworkAclEntryInput) SetIpv6CidrBlock(v string) *ReplaceNetworkAclEntryInput
    func (s *ReplaceNetworkAclEntryInput) SetNetworkAclId(v string) *ReplaceNetworkAclEntryInput
    func (s *ReplaceNetworkAclEntryInput) SetPortRange(v *PortRange) *ReplaceNetworkAclEntryInput
    func (s *ReplaceNetworkAclEntryInput) SetProtocol(v string) *ReplaceNetworkAclEntryInput
    func (s *ReplaceNetworkAclEntryInput) SetRuleAction(v string) *ReplaceNetworkAclEntryInput
    func (s *ReplaceNetworkAclEntryInput) SetRuleNumber(v int64) *ReplaceNetworkAclEntryInput
    func (s ReplaceNetworkAclEntryInput) String() string
    func (s *ReplaceNetworkAclEntryInput) Validate() error
type ReplaceNetworkAclEntryOutput
    func (s ReplaceNetworkAclEntryOutput) GoString() string
    func (s ReplaceNetworkAclEntryOutput) String() string
type ReplaceRouteInput
    func (s ReplaceRouteInput) GoString() string
    func (s *ReplaceRouteInput) SetDestinationCidrBlock(v string) *ReplaceRouteInput
    func (s *ReplaceRouteInput) SetDestinationIpv6CidrBlock(v string) *ReplaceRouteInput
    func (s *ReplaceRouteInput) SetDryRun(v bool) *ReplaceRouteInput
    func (s *ReplaceRouteInput) SetEgressOnlyInternetGatewayId(v string) *ReplaceRouteInput
    func (s *ReplaceRouteInput) SetGatewayId(v string) *ReplaceRouteInput
    func (s *ReplaceRouteInput) SetInstanceId(v string) *ReplaceRouteInput
    func (s *ReplaceRouteInput) SetNatGatewayId(v string) *ReplaceRouteInput
    func (s *ReplaceRouteInput) SetNetworkInterfaceId(v string) *ReplaceRouteInput
    func (s *ReplaceRouteInput) SetRouteTableId(v string) *ReplaceRouteInput
    func (s *ReplaceRouteInput) SetVpcPeeringConnectionId(v string) *ReplaceRouteInput
    func (s ReplaceRouteInput) String() string
    func (s *ReplaceRouteInput) Validate() error
type ReplaceRouteOutput
    func (s ReplaceRouteOutput) GoString() string
    func (s ReplaceRouteOutput) String() string
type ReplaceRouteTableAssociationInput
    func (s ReplaceRouteTableAssociationInput) GoString() string
    func (s *ReplaceRouteTableAssociationInput) SetAssociationId(v string) *ReplaceRouteTableAssociationInput
    func (s *ReplaceRouteTableAssociationInput) SetDryRun(v bool) *ReplaceRouteTableAssociationInput
    func (s *ReplaceRouteTableAssociationInput) SetRouteTableId(v string) *ReplaceRouteTableAssociationInput
    func (s ReplaceRouteTableAssociationInput) String() string
    func (s *ReplaceRouteTableAssociationInput) Validate() error
type ReplaceRouteTableAssociationOutput
    func (s ReplaceRouteTableAssociationOutput) GoString() string
    func (s *ReplaceRouteTableAssociationOutput) SetNewAssociationId(v string) *ReplaceRouteTableAssociationOutput
    func (s ReplaceRouteTableAssociationOutput) String() string
type ReportInstanceStatusInput
    func (s ReportInstanceStatusInput) GoString() string
    func (s *ReportInstanceStatusInput) SetDescription(v string) *ReportInstanceStatusInput
    func (s *ReportInstanceStatusInput) SetDryRun(v bool) *ReportInstanceStatusInput
    func (s *ReportInstanceStatusInput) SetEndTime(v time.Time) *ReportInstanceStatusInput
    func (s *ReportInstanceStatusInput) SetInstances(v []*string) *ReportInstanceStatusInput
    func (s *ReportInstanceStatusInput) SetReasonCodes(v []*string) *ReportInstanceStatusInput
    func (s *ReportInstanceStatusInput) SetStartTime(v time.Time) *ReportInstanceStatusInput
    func (s *ReportInstanceStatusInput) SetStatus(v string) *ReportInstanceStatusInput
    func (s ReportInstanceStatusInput) String() string
    func (s *ReportInstanceStatusInput) Validate() error
type ReportInstanceStatusOutput
    func (s ReportInstanceStatusOutput) GoString() string
    func (s ReportInstanceStatusOutput) String() string
type RequestSpotFleetInput
    func (s RequestSpotFleetInput) GoString() string
    func (s *RequestSpotFleetInput) SetDryRun(v bool) *RequestSpotFleetInput
    func (s *RequestSpotFleetInput) SetSpotFleetRequestConfig(v *SpotFleetRequestConfigData) *RequestSpotFleetInput
    func (s RequestSpotFleetInput) String() string
    func (s *RequestSpotFleetInput) Validate() error
type RequestSpotFleetOutput
    func (s RequestSpotFleetOutput) GoString() string
    func (s *RequestSpotFleetOutput) SetSpotFleetRequestId(v string) *RequestSpotFleetOutput
    func (s RequestSpotFleetOutput) String() string
type RequestSpotInstancesInput
    func (s RequestSpotInstancesInput) GoString() string
    func (s *RequestSpotInstancesInput) SetAvailabilityZoneGroup(v string) *RequestSpotInstancesInput
    func (s *RequestSpotInstancesInput) SetBlockDurationMinutes(v int64) *RequestSpotInstancesInput
    func (s *RequestSpotInstancesInput) SetClientToken(v string) *RequestSpotInstancesInput
    func (s *RequestSpotInstancesInput) SetDryRun(v bool) *RequestSpotInstancesInput
    func (s *RequestSpotInstancesInput) SetInstanceCount(v int64) *RequestSpotInstancesInput
    func (s *RequestSpotInstancesInput) SetLaunchGroup(v string) *RequestSpotInstancesInput
    func (s *RequestSpotInstancesInput) SetLaunchSpecification(v *RequestSpotLaunchSpecification) *RequestSpotInstancesInput
    func (s *RequestSpotInstancesInput) SetSpotPrice(v string) *RequestSpotInstancesInput
    func (s *RequestSpotInstancesInput) SetType(v string) *RequestSpotInstancesInput
    func (s *RequestSpotInstancesInput) SetValidFrom(v time.Time) *RequestSpotInstancesInput
    func (s *RequestSpotInstancesInput) SetValidUntil(v time.Time) *RequestSpotInstancesInput
    func (s RequestSpotInstancesInput) String() string
    func (s *RequestSpotInstancesInput) Validate() error
type RequestSpotInstancesOutput
    func (s RequestSpotInstancesOutput) GoString() string
    func (s *RequestSpotInstancesOutput) SetSpotInstanceRequests(v []*SpotInstanceRequest) *RequestSpotInstancesOutput
    func (s RequestSpotInstancesOutput) String() string
type RequestSpotLaunchSpecification
    func (s RequestSpotLaunchSpecification) GoString() string
    func (s *RequestSpotLaunchSpecification) SetAddressingType(v string) *RequestSpotLaunchSpecification
    func (s *RequestSpotLaunchSpecification) SetBlockDeviceMappings(v []*BlockDeviceMapping) *RequestSpotLaunchSpecification
    func (s *RequestSpotLaunchSpecification) SetEbsOptimized(v bool) *RequestSpotLaunchSpecification
    func (s *RequestSpotLaunchSpecification) SetIamInstanceProfile(v *IamInstanceProfileSpecification) *RequestSpotLaunchSpecification
    func (s *RequestSpotLaunchSpecification) SetImageId(v string) *RequestSpotLaunchSpecification
    func (s *RequestSpotLaunchSpecification) SetInstanceType(v string) *RequestSpotLaunchSpecification
    func (s *RequestSpotLaunchSpecification) SetKernelId(v string) *RequestSpotLaunchSpecification
    func (s *RequestSpotLaunchSpecification) SetKeyName(v string) *RequestSpotLaunchSpecification
    func (s *RequestSpotLaunchSpecification) SetMonitoring(v *RunInstancesMonitoringEnabled) *RequestSpotLaunchSpecification
    func (s *RequestSpotLaunchSpecification) SetNetworkInterfaces(v []*InstanceNetworkInterfaceSpecification) *RequestSpotLaunchSpecification
    func (s *RequestSpotLaunchSpecification) SetPlacement(v *SpotPlacement) *RequestSpotLaunchSpecification
    func (s *RequestSpotLaunchSpecification) SetRamdiskId(v string) *RequestSpotLaunchSpecification
    func (s *RequestSpotLaunchSpecification) SetSecurityGroupIds(v []*string) *RequestSpotLaunchSpecification
    func (s *RequestSpotLaunchSpecification) SetSecurityGroups(v []*string) *RequestSpotLaunchSpecification
    func (s *RequestSpotLaunchSpecification) SetSubnetId(v string) *RequestSpotLaunchSpecification
    func (s *RequestSpotLaunchSpecification) SetUserData(v string) *RequestSpotLaunchSpecification
    func (s RequestSpotLaunchSpecification) String() string
    func (s *RequestSpotLaunchSpecification) Validate() error
type Reservation
    func (s Reservation) GoString() string
    func (s *Reservation) SetGroups(v []*GroupIdentifier) *Reservation
    func (s *Reservation) SetInstances(v []*Instance) *Reservation
    func (s *Reservation) SetOwnerId(v string) *Reservation
    func (s *Reservation) SetRequesterId(v string) *Reservation
    func (s *Reservation) SetReservationId(v string) *Reservation
    func (s Reservation) String() string
type ReservationValue
    func (s ReservationValue) GoString() string
    func (s *ReservationValue) SetHourlyPrice(v string) *ReservationValue
    func (s *ReservationValue) SetRemainingTotalValue(v string) *ReservationValue
    func (s *ReservationValue) SetRemainingUpfrontValue(v string) *ReservationValue
    func (s ReservationValue) String() string
type ReservedInstanceLimitPrice
    func (s ReservedInstanceLimitPrice) GoString() string
    func (s *ReservedInstanceLimitPrice) SetAmount(v float64) *ReservedInstanceLimitPrice
    func (s *ReservedInstanceLimitPrice) SetCurrencyCode(v string) *ReservedInstanceLimitPrice
    func (s ReservedInstanceLimitPrice) String() string
type ReservedInstanceReservationValue
    func (s ReservedInstanceReservationValue) GoString() string
    func (s *ReservedInstanceReservationValue) SetReservationValue(v *ReservationValue) *ReservedInstanceReservationValue
    func (s *ReservedInstanceReservationValue) SetReservedInstanceId(v string) *ReservedInstanceReservationValue
    func (s ReservedInstanceReservationValue) String() string
type ReservedInstances
    func (s ReservedInstances) GoString() string
    func (s *ReservedInstances) SetAvailabilityZone(v string) *ReservedInstances
    func (s *ReservedInstances) SetCurrencyCode(v string) *ReservedInstances
    func (s *ReservedInstances) SetDuration(v int64) *ReservedInstances
    func (s *ReservedInstances) SetEnd(v time.Time) *ReservedInstances
    func (s *ReservedInstances) SetFixedPrice(v float64) *ReservedInstances
    func (s *ReservedInstances) SetInstanceCount(v int64) *ReservedInstances
    func (s *ReservedInstances) SetInstanceTenancy(v string) *ReservedInstances
    func (s *ReservedInstances) SetInstanceType(v string) *ReservedInstances
    func (s *ReservedInstances) SetOfferingClass(v string) *ReservedInstances
    func (s *ReservedInstances) SetOfferingType(v string) *ReservedInstances
    func (s *ReservedInstances) SetProductDescription(v string) *ReservedInstances
    func (s *ReservedInstances) SetRecurringCharges(v []*RecurringCharge) *ReservedInstances
    func (s *ReservedInstances) SetReservedInstancesId(v string) *ReservedInstances
    func (s *ReservedInstances) SetScope(v string) *ReservedInstances
    func (s *ReservedInstances) SetStart(v time.Time) *ReservedInstances
    func (s *ReservedInstances) SetState(v string) *ReservedInstances
    func (s *ReservedInstances) SetTags(v []*Tag) *ReservedInstances
    func (s *ReservedInstances) SetUsagePrice(v float64) *ReservedInstances
    func (s ReservedInstances) String() string
type ReservedInstancesConfiguration
    func (s ReservedInstancesConfiguration) GoString() string
    func (s *ReservedInstancesConfiguration) SetAvailabilityZone(v string) *ReservedInstancesConfiguration
    func (s *ReservedInstancesConfiguration) SetInstanceCount(v int64) *ReservedInstancesConfiguration
    func (s *ReservedInstancesConfiguration) SetInstanceType(v string) *ReservedInstancesConfiguration
    func (s *ReservedInstancesConfiguration) SetPlatform(v string) *ReservedInstancesConfiguration
    func (s *ReservedInstancesConfiguration) SetScope(v string) *ReservedInstancesConfiguration
    func (s ReservedInstancesConfiguration) String() string
type ReservedInstancesId
    func (s ReservedInstancesId) GoString() string
    func (s *ReservedInstancesId) SetReservedInstancesId(v string) *ReservedInstancesId
    func (s ReservedInstancesId) String() string
type ReservedInstancesListing
    func (s ReservedInstancesListing) GoString() string
    func (s *ReservedInstancesListing) SetClientToken(v string) *ReservedInstancesListing
    func (s *ReservedInstancesListing) SetCreateDate(v time.Time) *ReservedInstancesListing
    func (s *ReservedInstancesListing) SetInstanceCounts(v []*InstanceCount) *ReservedInstancesListing
    func (s *ReservedInstancesListing) SetPriceSchedules(v []*PriceSchedule) *ReservedInstancesListing
    func (s *ReservedInstancesListing) SetReservedInstancesId(v string) *ReservedInstancesListing
    func (s *ReservedInstancesListing) SetReservedInstancesListingId(v string) *ReservedInstancesListing
    func (s *ReservedInstancesListing) SetStatus(v string) *ReservedInstancesListing
    func (s *ReservedInstancesListing) SetStatusMessage(v string) *ReservedInstancesListing
    func (s *ReservedInstancesListing) SetTags(v []*Tag) *ReservedInstancesListing
    func (s *ReservedInstancesListing) SetUpdateDate(v time.Time) *ReservedInstancesListing
    func (s ReservedInstancesListing) String() string
type ReservedInstancesModification
    func (s ReservedInstancesModification) GoString() string
    func (s *ReservedInstancesModification) SetClientToken(v string) *ReservedInstancesModification
    func (s *ReservedInstancesModification) SetCreateDate(v time.Time) *ReservedInstancesModification
    func (s *ReservedInstancesModification) SetEffectiveDate(v time.Time) *ReservedInstancesModification
    func (s *ReservedInstancesModification) SetModificationResults(v []*ReservedInstancesModificationResult) *ReservedInstancesModification
    func (s *ReservedInstancesModification) SetReservedInstancesIds(v []*ReservedInstancesId) *ReservedInstancesModification
    func (s *ReservedInstancesModification) SetReservedInstancesModificationId(v string) *ReservedInstancesModification
    func (s *ReservedInstancesModification) SetStatus(v string) *ReservedInstancesModification
    func (s *ReservedInstancesModification) SetStatusMessage(v string) *ReservedInstancesModification
    func (s *ReservedInstancesModification) SetUpdateDate(v time.Time) *ReservedInstancesModification
    func (s ReservedInstancesModification) String() string
type ReservedInstancesModificationResult
    func (s ReservedInstancesModificationResult) GoString() string
    func (s *ReservedInstancesModificationResult) SetReservedInstancesId(v string) *ReservedInstancesModificationResult
    func (s *ReservedInstancesModificationResult) SetTargetConfiguration(v *ReservedInstancesConfiguration) *ReservedInstancesModificationResult
    func (s ReservedInstancesModificationResult) String() string
type ReservedInstancesOffering
    func (s ReservedInstancesOffering) GoString() string
    func (s *ReservedInstancesOffering) SetAvailabilityZone(v string) *ReservedInstancesOffering
    func (s *ReservedInstancesOffering) SetCurrencyCode(v string) *ReservedInstancesOffering
    func (s *ReservedInstancesOffering) SetDuration(v int64) *ReservedInstancesOffering
    func (s *ReservedInstancesOffering) SetFixedPrice(v float64) *ReservedInstancesOffering
    func (s *ReservedInstancesOffering) SetInstanceTenancy(v string) *ReservedInstancesOffering
    func (s *ReservedInstancesOffering) SetInstanceType(v string) *ReservedInstancesOffering
    func (s *ReservedInstancesOffering) SetMarketplace(v bool) *ReservedInstancesOffering
    func (s *ReservedInstancesOffering) SetOfferingClass(v string) *ReservedInstancesOffering
    func (s *ReservedInstancesOffering) SetOfferingType(v string) *ReservedInstancesOffering
    func (s *ReservedInstancesOffering) SetPricingDetails(v []*PricingDetail) *ReservedInstancesOffering
    func (s *ReservedInstancesOffering) SetProductDescription(v string) *ReservedInstancesOffering
    func (s *ReservedInstancesOffering) SetRecurringCharges(v []*RecurringCharge) *ReservedInstancesOffering
    func (s *ReservedInstancesOffering) SetReservedInstancesOfferingId(v string) *ReservedInstancesOffering
    func (s *ReservedInstancesOffering) SetScope(v string) *ReservedInstancesOffering
    func (s *ReservedInstancesOffering) SetUsagePrice(v float64) *ReservedInstancesOffering
    func (s ReservedInstancesOffering) String() string
type ResetImageAttributeInput
    func (s ResetImageAttributeInput) GoString() string
    func (s *ResetImageAttributeInput) SetAttribute(v string) *ResetImageAttributeInput
    func (s *ResetImageAttributeInput) SetDryRun(v bool) *ResetImageAttributeInput
    func (s *ResetImageAttributeInput) SetImageId(v string) *ResetImageAttributeInput
    func (s ResetImageAttributeInput) String() string
    func (s *ResetImageAttributeInput) Validate() error
type ResetImageAttributeOutput
    func (s ResetImageAttributeOutput) GoString() string
    func (s ResetImageAttributeOutput) String() string
type ResetInstanceAttributeInput
    func (s ResetInstanceAttributeInput) GoString() string
    func (s *ResetInstanceAttributeInput) SetAttribute(v string) *ResetInstanceAttributeInput
    func (s *ResetInstanceAttributeInput) SetDryRun(v bool) *ResetInstanceAttributeInput
    func (s *ResetInstanceAttributeInput) SetInstanceId(v string) *ResetInstanceAttributeInput
    func (s ResetInstanceAttributeInput) String() string
    func (s *ResetInstanceAttributeInput) Validate() error
type ResetInstanceAttributeOutput
    func (s ResetInstanceAttributeOutput) GoString() string
    func (s ResetInstanceAttributeOutput) String() string
type ResetNetworkInterfaceAttributeInput
    func (s ResetNetworkInterfaceAttributeInput) GoString() string
    func (s *ResetNetworkInterfaceAttributeInput) SetDryRun(v bool) *ResetNetworkInterfaceAttributeInput
    func (s *ResetNetworkInterfaceAttributeInput) SetNetworkInterfaceId(v string) *ResetNetworkInterfaceAttributeInput
    func (s *ResetNetworkInterfaceAttributeInput) SetSourceDestCheck(v string) *ResetNetworkInterfaceAttributeInput
    func (s ResetNetworkInterfaceAttributeInput) String() string
    func (s *ResetNetworkInterfaceAttributeInput) Validate() error
type ResetNetworkInterfaceAttributeOutput
    func (s ResetNetworkInterfaceAttributeOutput) GoString() string
    func (s ResetNetworkInterfaceAttributeOutput) String() string
type ResetSnapshotAttributeInput
    func (s ResetSnapshotAttributeInput) GoString() string
    func (s *ResetSnapshotAttributeInput) SetAttribute(v string) *ResetSnapshotAttributeInput
    func (s *ResetSnapshotAttributeInput) SetDryRun(v bool) *ResetSnapshotAttributeInput
    func (s *ResetSnapshotAttributeInput) SetSnapshotId(v string) *ResetSnapshotAttributeInput
    func (s ResetSnapshotAttributeInput) String() string
    func (s *ResetSnapshotAttributeInput) Validate() error
type ResetSnapshotAttributeOutput
    func (s ResetSnapshotAttributeOutput) GoString() string
    func (s ResetSnapshotAttributeOutput) String() string
type RestoreAddressToClassicInput
    func (s RestoreAddressToClassicInput) GoString() string
    func (s *RestoreAddressToClassicInput) SetDryRun(v bool) *RestoreAddressToClassicInput
    func (s *RestoreAddressToClassicInput) SetPublicIp(v string) *RestoreAddressToClassicInput
    func (s RestoreAddressToClassicInput) String() string
    func (s *RestoreAddressToClassicInput) Validate() error
type RestoreAddressToClassicOutput
    func (s RestoreAddressToClassicOutput) GoString() string
    func (s *RestoreAddressToClassicOutput) SetPublicIp(v string) *RestoreAddressToClassicOutput
    func (s *RestoreAddressToClassicOutput) SetStatus(v string) *RestoreAddressToClassicOutput
    func (s RestoreAddressToClassicOutput) String() string
type RevokeSecurityGroupEgressInput
    func (s RevokeSecurityGroupEgressInput) GoString() string
    func (s *RevokeSecurityGroupEgressInput) SetCidrIp(v string) *RevokeSecurityGroupEgressInput
    func (s *RevokeSecurityGroupEgressInput) SetDryRun(v bool) *RevokeSecurityGroupEgressInput
    func (s *RevokeSecurityGroupEgressInput) SetFromPort(v int64) *RevokeSecurityGroupEgressInput
    func (s *RevokeSecurityGroupEgressInput) SetGroupId(v string) *RevokeSecurityGroupEgressInput
    func (s *RevokeSecurityGroupEgressInput) SetIpPermissions(v []*IpPermission) *RevokeSecurityGroupEgressInput
    func (s *RevokeSecurityGroupEgressInput) SetIpProtocol(v string) *RevokeSecurityGroupEgressInput
    func (s *RevokeSecurityGroupEgressInput) SetSourceSecurityGroupName(v string) *RevokeSecurityGroupEgressInput
    func (s *RevokeSecurityGroupEgressInput) SetSourceSecurityGroupOwnerId(v string) *RevokeSecurityGroupEgressInput
    func (s *RevokeSecurityGroupEgressInput) SetToPort(v int64) *RevokeSecurityGroupEgressInput
    func (s RevokeSecurityGroupEgressInput) String() string
    func (s *RevokeSecurityGroupEgressInput) Validate() error
type RevokeSecurityGroupEgressOutput
    func (s RevokeSecurityGroupEgressOutput) GoString() string
    func (s RevokeSecurityGroupEgressOutput) String() string
type RevokeSecurityGroupIngressInput
    func (s RevokeSecurityGroupIngressInput) GoString() string
    func (s *RevokeSecurityGroupIngressInput) SetCidrIp(v string) *RevokeSecurityGroupIngressInput
    func (s *RevokeSecurityGroupIngressInput) SetDryRun(v bool) *RevokeSecurityGroupIngressInput
    func (s *RevokeSecurityGroupIngressInput) SetFromPort(v int64) *RevokeSecurityGroupIngressInput
    func (s *RevokeSecurityGroupIngressInput) SetGroupId(v string) *RevokeSecurityGroupIngressInput
    func (s *RevokeSecurityGroupIngressInput) SetGroupName(v string) *RevokeSecurityGroupIngressInput
    func (s *RevokeSecurityGroupIngressInput) SetIpPermissions(v []*IpPermission) *RevokeSecurityGroupIngressInput
    func (s *RevokeSecurityGroupIngressInput) SetIpProtocol(v string) *RevokeSecurityGroupIngressInput
    func (s *RevokeSecurityGroupIngressInput) SetSourceSecurityGroupName(v string) *RevokeSecurityGroupIngressInput
    func (s *RevokeSecurityGroupIngressInput) SetSourceSecurityGroupOwnerId(v string) *RevokeSecurityGroupIngressInput
    func (s *RevokeSecurityGroupIngressInput) SetToPort(v int64) *RevokeSecurityGroupIngressInput
    func (s RevokeSecurityGroupIngressInput) String() string
type RevokeSecurityGroupIngressOutput
    func (s RevokeSecurityGroupIngressOutput) GoString() string
    func (s RevokeSecurityGroupIngressOutput) String() string
type Route
    func (s Route) GoString() string
    func (s *Route) SetDestinationCidrBlock(v string) *Route
    func (s *Route) SetDestinationIpv6CidrBlock(v string) *Route
    func (s *Route) SetDestinationPrefixListId(v string) *Route
    func (s *Route) SetEgressOnlyInternetGatewayId(v string) *Route
    func (s *Route) SetGatewayId(v string) *Route
    func (s *Route) SetInstanceId(v string) *Route
    func (s *Route) SetInstanceOwnerId(v string) *Route
    func (s *Route) SetNatGatewayId(v string) *Route
    func (s *Route) SetNetworkInterfaceId(v string) *Route
    func (s *Route) SetOrigin(v string) *Route
    func (s *Route) SetState(v string) *Route
    func (s *Route) SetVpcPeeringConnectionId(v string) *Route
    func (s Route) String() string
type RouteTable
    func (s RouteTable) GoString() string
    func (s *RouteTable) SetAssociations(v []*RouteTableAssociation) *RouteTable
    func (s *RouteTable) SetPropagatingVgws(v []*PropagatingVgw) *RouteTable
    func (s *RouteTable) SetRouteTableId(v string) *RouteTable
    func (s *RouteTable) SetRoutes(v []*Route) *RouteTable
    func (s *RouteTable) SetTags(v []*Tag) *RouteTable
    func (s *RouteTable) SetVpcId(v string) *RouteTable
    func (s RouteTable) String() string
type RouteTableAssociation
    func (s RouteTableAssociation) GoString() string
    func (s *RouteTableAssociation) SetMain(v bool) *RouteTableAssociation
    func (s *RouteTableAssociation) SetRouteTableAssociationId(v string) *RouteTableAssociation
    func (s *RouteTableAssociation) SetRouteTableId(v string) *RouteTableAssociation
    func (s *RouteTableAssociation) SetSubnetId(v string) *RouteTableAssociation
    func (s RouteTableAssociation) String() string
type RunInstancesInput
    func (s RunInstancesInput) GoString() string
    func (s *RunInstancesInput) SetAdditionalInfo(v string) *RunInstancesInput
    func (s *RunInstancesInput) SetBlockDeviceMappings(v []*BlockDeviceMapping) *RunInstancesInput
    func (s *RunInstancesInput) SetClientToken(v string) *RunInstancesInput
    func (s *RunInstancesInput) SetDisableApiTermination(v bool) *RunInstancesInput
    func (s *RunInstancesInput) SetDryRun(v bool) *RunInstancesInput
    func (s *RunInstancesInput) SetEbsOptimized(v bool) *RunInstancesInput
    func (s *RunInstancesInput) SetIamInstanceProfile(v *IamInstanceProfileSpecification) *RunInstancesInput
    func (s *RunInstancesInput) SetImageId(v string) *RunInstancesInput
    func (s *RunInstancesInput) SetInstanceInitiatedShutdownBehavior(v string) *RunInstancesInput
    func (s *RunInstancesInput) SetInstanceType(v string) *RunInstancesInput
    func (s *RunInstancesInput) SetIpv6AddressCount(v int64) *RunInstancesInput
    func (s *RunInstancesInput) SetIpv6Addresses(v []*InstanceIpv6Address) *RunInstancesInput
    func (s *RunInstancesInput) SetKernelId(v string) *RunInstancesInput
    func (s *RunInstancesInput) SetKeyName(v string) *RunInstancesInput
    func (s *RunInstancesInput) SetMaxCount(v int64) *RunInstancesInput
    func (s *RunInstancesInput) SetMinCount(v int64) *RunInstancesInput
    func (s *RunInstancesInput) SetMonitoring(v *RunInstancesMonitoringEnabled) *RunInstancesInput
    func (s *RunInstancesInput) SetNetworkInterfaces(v []*InstanceNetworkInterfaceSpecification) *RunInstancesInput
    func (s *RunInstancesInput) SetPlacement(v *Placement) *RunInstancesInput
    func (s *RunInstancesInput) SetPrivateIpAddress(v string) *RunInstancesInput
    func (s *RunInstancesInput) SetRamdiskId(v string) *RunInstancesInput
    func (s *RunInstancesInput) SetSecurityGroupIds(v []*string) *RunInstancesInput
    func (s *RunInstancesInput) SetSecurityGroups(v []*string) *RunInstancesInput
    func (s *RunInstancesInput) SetSubnetId(v string) *RunInstancesInput
    func (s *RunInstancesInput) SetTagSpecifications(v []*TagSpecification) *RunInstancesInput
    func (s *RunInstancesInput) SetUserData(v string) *RunInstancesInput
    func (s RunInstancesInput) String() string
    func (s *RunInstancesInput) Validate() error
type RunInstancesMonitoringEnabled
    func (s RunInstancesMonitoringEnabled) GoString() string
    func (s *RunInstancesMonitoringEnabled) SetEnabled(v bool) *RunInstancesMonitoringEnabled
    func (s RunInstancesMonitoringEnabled) String() string
    func (s *RunInstancesMonitoringEnabled) Validate() error
type RunScheduledInstancesInput
    func (s RunScheduledInstancesInput) GoString() string
    func (s *RunScheduledInstancesInput) SetClientToken(v string) *RunScheduledInstancesInput
    func (s *RunScheduledInstancesInput) SetDryRun(v bool) *RunScheduledInstancesInput
    func (s *RunScheduledInstancesInput) SetInstanceCount(v int64) *RunScheduledInstancesInput
    func (s *RunScheduledInstancesInput) SetLaunchSpecification(v *ScheduledInstancesLaunchSpecification) *RunScheduledInstancesInput
    func (s *RunScheduledInstancesInput) SetScheduledInstanceId(v string) *RunScheduledInstancesInput
    func (s RunScheduledInstancesInput) String() string
    func (s *RunScheduledInstancesInput) Validate() error
type RunScheduledInstancesOutput
    func (s RunScheduledInstancesOutput) GoString() string
    func (s *RunScheduledInstancesOutput) SetInstanceIdSet(v []*string) *RunScheduledInstancesOutput
    func (s RunScheduledInstancesOutput) String() string
type S3Storage
    func (s S3Storage) GoString() string
    func (s *S3Storage) SetAWSAccessKeyId(v string) *S3Storage
    func (s *S3Storage) SetBucket(v string) *S3Storage
    func (s *S3Storage) SetPrefix(v string) *S3Storage
    func (s *S3Storage) SetUploadPolicy(v []byte) *S3Storage
    func (s *S3Storage) SetUploadPolicySignature(v string) *S3Storage
    func (s S3Storage) String() string
type ScheduledInstance
    func (s ScheduledInstance) GoString() string
    func (s *ScheduledInstance) SetAvailabilityZone(v string) *ScheduledInstance
    func (s *ScheduledInstance) SetCreateDate(v time.Time) *ScheduledInstance
    func (s *ScheduledInstance) SetHourlyPrice(v string) *ScheduledInstance
    func (s *ScheduledInstance) SetInstanceCount(v int64) *ScheduledInstance
    func (s *ScheduledInstance) SetInstanceType(v string) *ScheduledInstance
    func (s *ScheduledInstance) SetNetworkPlatform(v string) *ScheduledInstance
    func (s *ScheduledInstance) SetNextSlotStartTime(v time.Time) *ScheduledInstance
    func (s *ScheduledInstance) SetPlatform(v string) *ScheduledInstance
    func (s *ScheduledInstance) SetPreviousSlotEndTime(v time.Time) *ScheduledInstance
    func (s *ScheduledInstance) SetRecurrence(v *ScheduledInstanceRecurrence) *ScheduledInstance
    func (s *ScheduledInstance) SetScheduledInstanceId(v string) *ScheduledInstance
    func (s *ScheduledInstance) SetSlotDurationInHours(v int64) *ScheduledInstance
    func (s *ScheduledInstance) SetTermEndDate(v time.Time) *ScheduledInstance
    func (s *ScheduledInstance) SetTermStartDate(v time.Time) *ScheduledInstance
    func (s *ScheduledInstance) SetTotalScheduledInstanceHours(v int64) *ScheduledInstance
    func (s ScheduledInstance) String() string
type ScheduledInstanceAvailability
    func (s ScheduledInstanceAvailability) GoString() string
    func (s *ScheduledInstanceAvailability) SetAvailabilityZone(v string) *ScheduledInstanceAvailability
    func (s *ScheduledInstanceAvailability) SetAvailableInstanceCount(v int64) *ScheduledInstanceAvailability
    func (s *ScheduledInstanceAvailability) SetFirstSlotStartTime(v time.Time) *ScheduledInstanceAvailability
    func (s *ScheduledInstanceAvailability) SetHourlyPrice(v string) *ScheduledInstanceAvailability
    func (s *ScheduledInstanceAvailability) SetInstanceType(v string) *ScheduledInstanceAvailability
    func (s *ScheduledInstanceAvailability) SetMaxTermDurationInDays(v int64) *ScheduledInstanceAvailability
    func (s *ScheduledInstanceAvailability) SetMinTermDurationInDays(v int64) *ScheduledInstanceAvailability
    func (s *ScheduledInstanceAvailability) SetNetworkPlatform(v string) *ScheduledInstanceAvailability
    func (s *ScheduledInstanceAvailability) SetPlatform(v string) *ScheduledInstanceAvailability
    func (s *ScheduledInstanceAvailability) SetPurchaseToken(v string) *ScheduledInstanceAvailability
    func (s *ScheduledInstanceAvailability) SetRecurrence(v *ScheduledInstanceRecurrence) *ScheduledInstanceAvailability
    func (s *ScheduledInstanceAvailability) SetSlotDurationInHours(v int64) *ScheduledInstanceAvailability
    func (s *ScheduledInstanceAvailability) SetTotalScheduledInstanceHours(v int64) *ScheduledInstanceAvailability
    func (s ScheduledInstanceAvailability) String() string
type ScheduledInstanceRecurrence
    func (s ScheduledInstanceRecurrence) GoString() string
    func (s *ScheduledInstanceRecurrence) SetFrequency(v string) *ScheduledInstanceRecurrence
    func (s *ScheduledInstanceRecurrence) SetInterval(v int64) *ScheduledInstanceRecurrence
    func (s *ScheduledInstanceRecurrence) SetOccurrenceDaySet(v []*int64) *ScheduledInstanceRecurrence
    func (s *ScheduledInstanceRecurrence) SetOccurrenceRelativeToEnd(v bool) *ScheduledInstanceRecurrence
    func (s *ScheduledInstanceRecurrence) SetOccurrenceUnit(v string) *ScheduledInstanceRecurrence
    func (s ScheduledInstanceRecurrence) String() string
type ScheduledInstanceRecurrenceRequest
    func (s ScheduledInstanceRecurrenceRequest) GoString() string
    func (s *ScheduledInstanceRecurrenceRequest) SetFrequency(v string) *ScheduledInstanceRecurrenceRequest
    func (s *ScheduledInstanceRecurrenceRequest) SetInterval(v int64) *ScheduledInstanceRecurrenceRequest
    func (s *ScheduledInstanceRecurrenceRequest) SetOccurrenceDays(v []*int64) *ScheduledInstanceRecurrenceRequest
    func (s *ScheduledInstanceRecurrenceRequest) SetOccurrenceRelativeToEnd(v bool) *ScheduledInstanceRecurrenceRequest
    func (s *ScheduledInstanceRecurrenceRequest) SetOccurrenceUnit(v string) *ScheduledInstanceRecurrenceRequest
    func (s ScheduledInstanceRecurrenceRequest) String() string
type ScheduledInstancesBlockDeviceMapping
    func (s ScheduledInstancesBlockDeviceMapping) GoString() string
    func (s *ScheduledInstancesBlockDeviceMapping) SetDeviceName(v string) *ScheduledInstancesBlockDeviceMapping
    func (s *ScheduledInstancesBlockDeviceMapping) SetEbs(v *ScheduledInstancesEbs) *ScheduledInstancesBlockDeviceMapping
    func (s *ScheduledInstancesBlockDeviceMapping) SetNoDevice(v string) *ScheduledInstancesBlockDeviceMapping
    func (s *ScheduledInstancesBlockDeviceMapping) SetVirtualName(v string) *ScheduledInstancesBlockDeviceMapping
    func (s ScheduledInstancesBlockDeviceMapping) String() string
type ScheduledInstancesEbs
    func (s ScheduledInstancesEbs) GoString() string
    func (s *ScheduledInstancesEbs) SetDeleteOnTermination(v bool) *ScheduledInstancesEbs
    func (s *ScheduledInstancesEbs) SetEncrypted(v bool) *ScheduledInstancesEbs
    func (s *ScheduledInstancesEbs) SetIops(v int64) *ScheduledInstancesEbs
    func (s *ScheduledInstancesEbs) SetSnapshotId(v string) *ScheduledInstancesEbs
    func (s *ScheduledInstancesEbs) SetVolumeSize(v int64) *ScheduledInstancesEbs
    func (s *ScheduledInstancesEbs) SetVolumeType(v string) *ScheduledInstancesEbs
    func (s ScheduledInstancesEbs) String() string
type ScheduledInstancesIamInstanceProfile
    func (s ScheduledInstancesIamInstanceProfile) GoString() string
    func (s *ScheduledInstancesIamInstanceProfile) SetArn(v string) *ScheduledInstancesIamInstanceProfile
    func (s *ScheduledInstancesIamInstanceProfile) SetName(v string) *ScheduledInstancesIamInstanceProfile
    func (s ScheduledInstancesIamInstanceProfile) String() string
type ScheduledInstancesIpv6Address
    func (s ScheduledInstancesIpv6Address) GoString() string
    func (s *ScheduledInstancesIpv6Address) SetIpv6Address(v string) *ScheduledInstancesIpv6Address
    func (s ScheduledInstancesIpv6Address) String() string
type ScheduledInstancesLaunchSpecification
    func (s ScheduledInstancesLaunchSpecification) GoString() string
    func (s *ScheduledInstancesLaunchSpecification) SetBlockDeviceMappings(v []*ScheduledInstancesBlockDeviceMapping) *ScheduledInstancesLaunchSpecification
    func (s *ScheduledInstancesLaunchSpecification) SetEbsOptimized(v bool) *ScheduledInstancesLaunchSpecification
    func (s *ScheduledInstancesLaunchSpecification) SetIamInstanceProfile(v *ScheduledInstancesIamInstanceProfile) *ScheduledInstancesLaunchSpecification
    func (s *ScheduledInstancesLaunchSpecification) SetImageId(v string) *ScheduledInstancesLaunchSpecification
    func (s *ScheduledInstancesLaunchSpecification) SetInstanceType(v string) *ScheduledInstancesLaunchSpecification
    func (s *ScheduledInstancesLaunchSpecification) SetKernelId(v string) *ScheduledInstancesLaunchSpecification
    func (s *ScheduledInstancesLaunchSpecification) SetKeyName(v string) *ScheduledInstancesLaunchSpecification
    func (s *ScheduledInstancesLaunchSpecification) SetMonitoring(v *ScheduledInstancesMonitoring) *ScheduledInstancesLaunchSpecification
    func (s *ScheduledInstancesLaunchSpecification) SetNetworkInterfaces(v []*ScheduledInstancesNetworkInterface) *ScheduledInstancesLaunchSpecification
    func (s *ScheduledInstancesLaunchSpecification) SetPlacement(v *ScheduledInstancesPlacement) *ScheduledInstancesLaunchSpecification
    func (s *ScheduledInstancesLaunchSpecification) SetRamdiskId(v string) *ScheduledInstancesLaunchSpecification
    func (s *ScheduledInstancesLaunchSpecification) SetSecurityGroupIds(v []*string) *ScheduledInstancesLaunchSpecification
    func (s *ScheduledInstancesLaunchSpecification) SetSubnetId(v string) *ScheduledInstancesLaunchSpecification
    func (s *ScheduledInstancesLaunchSpecification) SetUserData(v string) *ScheduledInstancesLaunchSpecification
    func (s ScheduledInstancesLaunchSpecification) String() string
    func (s *ScheduledInstancesLaunchSpecification) Validate() error
type ScheduledInstancesMonitoring
    func (s ScheduledInstancesMonitoring) GoString() string
    func (s *ScheduledInstancesMonitoring) SetEnabled(v bool) *ScheduledInstancesMonitoring
    func (s ScheduledInstancesMonitoring) String() string
type ScheduledInstancesNetworkInterface
    func (s ScheduledInstancesNetworkInterface) GoString() string
    func (s *ScheduledInstancesNetworkInterface) SetAssociatePublicIpAddress(v bool) *ScheduledInstancesNetworkInterface
    func (s *ScheduledInstancesNetworkInterface) SetDeleteOnTermination(v bool) *ScheduledInstancesNetworkInterface
    func (s *ScheduledInstancesNetworkInterface) SetDescription(v string) *ScheduledInstancesNetworkInterface
    func (s *ScheduledInstancesNetworkInterface) SetDeviceIndex(v int64) *ScheduledInstancesNetworkInterface
    func (s *ScheduledInstancesNetworkInterface) SetGroups(v []*string) *ScheduledInstancesNetworkInterface
    func (s *ScheduledInstancesNetworkInterface) SetIpv6AddressCount(v int64) *ScheduledInstancesNetworkInterface
    func (s *ScheduledInstancesNetworkInterface) SetIpv6Addresses(v []*ScheduledInstancesIpv6Address) *ScheduledInstancesNetworkInterface
    func (s *ScheduledInstancesNetworkInterface) SetNetworkInterfaceId(v string) *ScheduledInstancesNetworkInterface
    func (s *ScheduledInstancesNetworkInterface) SetPrivateIpAddress(v string) *ScheduledInstancesNetworkInterface
    func (s *ScheduledInstancesNetworkInterface) SetPrivateIpAddressConfigs(v []*ScheduledInstancesPrivateIpAddressConfig) *ScheduledInstancesNetworkInterface
    func (s *ScheduledInstancesNetworkInterface) SetSecondaryPrivateIpAddressCount(v int64) *ScheduledInstancesNetworkInterface
    func (s *ScheduledInstancesNetworkInterface) SetSubnetId(v string) *ScheduledInstancesNetworkInterface
    func (s ScheduledInstancesNetworkInterface) String() string
type ScheduledInstancesPlacement
    func (s ScheduledInstancesPlacement) GoString() string
    func (s *ScheduledInstancesPlacement) SetAvailabilityZone(v string) *ScheduledInstancesPlacement
    func (s *ScheduledInstancesPlacement) SetGroupName(v string) *ScheduledInstancesPlacement
    func (s ScheduledInstancesPlacement) String() string
type ScheduledInstancesPrivateIpAddressConfig
    func (s ScheduledInstancesPrivateIpAddressConfig) GoString() string
    func (s *ScheduledInstancesPrivateIpAddressConfig) SetPrimary(v bool) *ScheduledInstancesPrivateIpAddressConfig
    func (s *ScheduledInstancesPrivateIpAddressConfig) SetPrivateIpAddress(v string) *ScheduledInstancesPrivateIpAddressConfig
    func (s ScheduledInstancesPrivateIpAddressConfig) String() string
type SecurityGroup
    func (s SecurityGroup) GoString() string
    func (s *SecurityGroup) SetDescription(v string) *SecurityGroup
    func (s *SecurityGroup) SetGroupId(v string) *SecurityGroup
    func (s *SecurityGroup) SetGroupName(v string) *SecurityGroup
    func (s *SecurityGroup) SetIpPermissions(v []*IpPermission) *SecurityGroup
    func (s *SecurityGroup) SetIpPermissionsEgress(v []*IpPermission) *SecurityGroup
    func (s *SecurityGroup) SetOwnerId(v string) *SecurityGroup
    func (s *SecurityGroup) SetTags(v []*Tag) *SecurityGroup
    func (s *SecurityGroup) SetVpcId(v string) *SecurityGroup
    func (s SecurityGroup) String() string
type SecurityGroupReference
    func (s SecurityGroupReference) GoString() string
    func (s *SecurityGroupReference) SetGroupId(v string) *SecurityGroupReference
    func (s *SecurityGroupReference) SetReferencingVpcId(v string) *SecurityGroupReference
    func (s *SecurityGroupReference) SetVpcPeeringConnectionId(v string) *SecurityGroupReference
    func (s SecurityGroupReference) String() string
type SlotDateTimeRangeRequest
    func (s SlotDateTimeRangeRequest) GoString() string
    func (s *SlotDateTimeRangeRequest) SetEarliestTime(v time.Time) *SlotDateTimeRangeRequest
    func (s *SlotDateTimeRangeRequest) SetLatestTime(v time.Time) *SlotDateTimeRangeRequest
    func (s SlotDateTimeRangeRequest) String() string
    func (s *SlotDateTimeRangeRequest) Validate() error
type SlotStartTimeRangeRequest
    func (s SlotStartTimeRangeRequest) GoString() string
    func (s *SlotStartTimeRangeRequest) SetEarliestTime(v time.Time) *SlotStartTimeRangeRequest
    func (s *SlotStartTimeRangeRequest) SetLatestTime(v time.Time) *SlotStartTimeRangeRequest
    func (s SlotStartTimeRangeRequest) String() string
type Snapshot
    func (s Snapshot) GoString() string
    func (s *Snapshot) SetDataEncryptionKeyId(v string) *Snapshot
    func (s *Snapshot) SetDescription(v string) *Snapshot
    func (s *Snapshot) SetEncrypted(v bool) *Snapshot
    func (s *Snapshot) SetKmsKeyId(v string) *Snapshot
    func (s *Snapshot) SetOwnerAlias(v string) *Snapshot
    func (s *Snapshot) SetOwnerId(v string) *Snapshot
    func (s *Snapshot) SetProgress(v string) *Snapshot
    func (s *Snapshot) SetSnapshotId(v string) *Snapshot
    func (s *Snapshot) SetStartTime(v time.Time) *Snapshot
    func (s *Snapshot) SetState(v string) *Snapshot
    func (s *Snapshot) SetStateMessage(v string) *Snapshot
    func (s *Snapshot) SetTags(v []*Tag) *Snapshot
    func (s *Snapshot) SetVolumeId(v string) *Snapshot
    func (s *Snapshot) SetVolumeSize(v int64) *Snapshot
    func (s Snapshot) String() string
type SnapshotDetail
    func (s SnapshotDetail) GoString() string
    func (s *SnapshotDetail) SetDescription(v string) *SnapshotDetail
    func (s *SnapshotDetail) SetDeviceName(v string) *SnapshotDetail
    func (s *SnapshotDetail) SetDiskImageSize(v float64) *SnapshotDetail
    func (s *SnapshotDetail) SetFormat(v string) *SnapshotDetail
    func (s *SnapshotDetail) SetProgress(v string) *SnapshotDetail
    func (s *SnapshotDetail) SetSnapshotId(v string) *SnapshotDetail
    func (s *SnapshotDetail) SetStatus(v string) *SnapshotDetail
    func (s *SnapshotDetail) SetStatusMessage(v string) *SnapshotDetail
    func (s *SnapshotDetail) SetUrl(v string) *SnapshotDetail
    func (s *SnapshotDetail) SetUserBucket(v *UserBucketDetails) *SnapshotDetail
    func (s SnapshotDetail) String() string
type SnapshotDiskContainer
    func (s SnapshotDiskContainer) GoString() string
    func (s *SnapshotDiskContainer) SetDescription(v string) *SnapshotDiskContainer
    func (s *SnapshotDiskContainer) SetFormat(v string) *SnapshotDiskContainer
    func (s *SnapshotDiskContainer) SetUrl(v string) *SnapshotDiskContainer
    func (s *SnapshotDiskContainer) SetUserBucket(v *UserBucket) *SnapshotDiskContainer
    func (s SnapshotDiskContainer) String() string
type SnapshotTaskDetail
    func (s SnapshotTaskDetail) GoString() string
    func (s *SnapshotTaskDetail) SetDescription(v string) *SnapshotTaskDetail
    func (s *SnapshotTaskDetail) SetDiskImageSize(v float64) *SnapshotTaskDetail
    func (s *SnapshotTaskDetail) SetFormat(v string) *SnapshotTaskDetail
    func (s *SnapshotTaskDetail) SetProgress(v string) *SnapshotTaskDetail
    func (s *SnapshotTaskDetail) SetSnapshotId(v string) *SnapshotTaskDetail
    func (s *SnapshotTaskDetail) SetStatus(v string) *SnapshotTaskDetail
    func (s *SnapshotTaskDetail) SetStatusMessage(v string) *SnapshotTaskDetail
    func (s *SnapshotTaskDetail) SetUrl(v string) *SnapshotTaskDetail
    func (s *SnapshotTaskDetail) SetUserBucket(v *UserBucketDetails) *SnapshotTaskDetail
    func (s SnapshotTaskDetail) String() string
type SpotDatafeedSubscription
    func (s SpotDatafeedSubscription) GoString() string
    func (s *SpotDatafeedSubscription) SetBucket(v string) *SpotDatafeedSubscription
    func (s *SpotDatafeedSubscription) SetFault(v *SpotInstanceStateFault) *SpotDatafeedSubscription
    func (s *SpotDatafeedSubscription) SetOwnerId(v string) *SpotDatafeedSubscription
    func (s *SpotDatafeedSubscription) SetPrefix(v string) *SpotDatafeedSubscription
    func (s *SpotDatafeedSubscription) SetState(v string) *SpotDatafeedSubscription
    func (s SpotDatafeedSubscription) String() string
type SpotFleetLaunchSpecification
    func (s SpotFleetLaunchSpecification) GoString() string
    func (s *SpotFleetLaunchSpecification) SetAddressingType(v string) *SpotFleetLaunchSpecification
    func (s *SpotFleetLaunchSpecification) SetBlockDeviceMappings(v []*BlockDeviceMapping) *SpotFleetLaunchSpecification
    func (s *SpotFleetLaunchSpecification) SetEbsOptimized(v bool) *SpotFleetLaunchSpecification
    func (s *SpotFleetLaunchSpecification) SetIamInstanceProfile(v *IamInstanceProfileSpecification) *SpotFleetLaunchSpecification
    func (s *SpotFleetLaunchSpecification) SetImageId(v string) *SpotFleetLaunchSpecification
    func (s *SpotFleetLaunchSpecification) SetInstanceType(v string) *SpotFleetLaunchSpecification
    func (s *SpotFleetLaunchSpecification) SetKernelId(v string) *SpotFleetLaunchSpecification
    func (s *SpotFleetLaunchSpecification) SetKeyName(v string) *SpotFleetLaunchSpecification
    func (s *SpotFleetLaunchSpecification) SetMonitoring(v *SpotFleetMonitoring) *SpotFleetLaunchSpecification
    func (s *SpotFleetLaunchSpecification) SetNetworkInterfaces(v []*InstanceNetworkInterfaceSpecification) *SpotFleetLaunchSpecification
    func (s *SpotFleetLaunchSpecification) SetPlacement(v *SpotPlacement) *SpotFleetLaunchSpecification
    func (s *SpotFleetLaunchSpecification) SetRamdiskId(v string) *SpotFleetLaunchSpecification
    func (s *SpotFleetLaunchSpecification) SetSecurityGroups(v []*GroupIdentifier) *SpotFleetLaunchSpecification
    func (s *SpotFleetLaunchSpecification) SetSpotPrice(v string) *SpotFleetLaunchSpecification
    func (s *SpotFleetLaunchSpecification) SetSubnetId(v string) *SpotFleetLaunchSpecification
    func (s *SpotFleetLaunchSpecification) SetUserData(v string) *SpotFleetLaunchSpecification
    func (s *SpotFleetLaunchSpecification) SetWeightedCapacity(v float64) *SpotFleetLaunchSpecification
    func (s SpotFleetLaunchSpecification) String() string
    func (s *SpotFleetLaunchSpecification) Validate() error
type SpotFleetMonitoring
    func (s SpotFleetMonitoring) GoString() string
    func (s *SpotFleetMonitoring) SetEnabled(v bool) *SpotFleetMonitoring
    func (s SpotFleetMonitoring) String() string
type SpotFleetRequestConfig
    func (s SpotFleetRequestConfig) GoString() string
    func (s *SpotFleetRequestConfig) SetActivityStatus(v string) *SpotFleetRequestConfig
    func (s *SpotFleetRequestConfig) SetCreateTime(v time.Time) *SpotFleetRequestConfig
    func (s *SpotFleetRequestConfig) SetSpotFleetRequestConfig(v *SpotFleetRequestConfigData) *SpotFleetRequestConfig
    func (s *SpotFleetRequestConfig) SetSpotFleetRequestId(v string) *SpotFleetRequestConfig
    func (s *SpotFleetRequestConfig) SetSpotFleetRequestState(v string) *SpotFleetRequestConfig
    func (s SpotFleetRequestConfig) String() string
type SpotFleetRequestConfigData
    func (s SpotFleetRequestConfigData) GoString() string
    func (s *SpotFleetRequestConfigData) SetAllocationStrategy(v string) *SpotFleetRequestConfigData
    func (s *SpotFleetRequestConfigData) SetClientToken(v string) *SpotFleetRequestConfigData
    func (s *SpotFleetRequestConfigData) SetExcessCapacityTerminationPolicy(v string) *SpotFleetRequestConfigData
    func (s *SpotFleetRequestConfigData) SetFulfilledCapacity(v float64) *SpotFleetRequestConfigData
    func (s *SpotFleetRequestConfigData) SetIamFleetRole(v string) *SpotFleetRequestConfigData
    func (s *SpotFleetRequestConfigData) SetLaunchSpecifications(v []*SpotFleetLaunchSpecification) *SpotFleetRequestConfigData
    func (s *SpotFleetRequestConfigData) SetReplaceUnhealthyInstances(v bool) *SpotFleetRequestConfigData
    func (s *SpotFleetRequestConfigData) SetSpotPrice(v string) *SpotFleetRequestConfigData
    func (s *SpotFleetRequestConfigData) SetTargetCapacity(v int64) *SpotFleetRequestConfigData
    func (s *SpotFleetRequestConfigData) SetTerminateInstancesWithExpiration(v bool) *SpotFleetRequestConfigData
    func (s *SpotFleetRequestConfigData) SetType(v string) *SpotFleetRequestConfigData
    func (s *SpotFleetRequestConfigData) SetValidFrom(v time.Time) *SpotFleetRequestConfigData
    func (s *SpotFleetRequestConfigData) SetValidUntil(v time.Time) *SpotFleetRequestConfigData
    func (s SpotFleetRequestConfigData) String() string
    func (s *SpotFleetRequestConfigData) Validate() error
type SpotInstanceRequest
    func (s SpotInstanceRequest) GoString() string
    func (s *SpotInstanceRequest) SetActualBlockHourlyPrice(v string) *SpotInstanceRequest
    func (s *SpotInstanceRequest) SetAvailabilityZoneGroup(v string) *SpotInstanceRequest
    func (s *SpotInstanceRequest) SetBlockDurationMinutes(v int64) *SpotInstanceRequest
    func (s *SpotInstanceRequest) SetCreateTime(v time.Time) *SpotInstanceRequest
    func (s *SpotInstanceRequest) SetFault(v *SpotInstanceStateFault) *SpotInstanceRequest
    func (s *SpotInstanceRequest) SetInstanceId(v string) *SpotInstanceRequest
    func (s *SpotInstanceRequest) SetLaunchGroup(v string) *SpotInstanceRequest
    func (s *SpotInstanceRequest) SetLaunchSpecification(v *LaunchSpecification) *SpotInstanceRequest
    func (s *SpotInstanceRequest) SetLaunchedAvailabilityZone(v string) *SpotInstanceRequest
    func (s *SpotInstanceRequest) SetProductDescription(v string) *SpotInstanceRequest
    func (s *SpotInstanceRequest) SetSpotInstanceRequestId(v string) *SpotInstanceRequest
    func (s *SpotInstanceRequest) SetSpotPrice(v string) *SpotInstanceRequest
    func (s *SpotInstanceRequest) SetState(v string) *SpotInstanceRequest
    func (s *SpotInstanceRequest) SetStatus(v *SpotInstanceStatus) *SpotInstanceRequest
    func (s *SpotInstanceRequest) SetTags(v []*Tag) *SpotInstanceRequest
    func (s *SpotInstanceRequest) SetType(v string) *SpotInstanceRequest
    func (s *SpotInstanceRequest) SetValidFrom(v time.Time) *SpotInstanceRequest
    func (s *SpotInstanceRequest) SetValidUntil(v time.Time) *SpotInstanceRequest
    func (s SpotInstanceRequest) String() string
type SpotInstanceStateFault
    func (s SpotInstanceStateFault) GoString() string
    func (s *SpotInstanceStateFault) SetCode(v string) *SpotInstanceStateFault
    func (s *SpotInstanceStateFault) SetMessage(v string) *SpotInstanceStateFault
    func (s SpotInstanceStateFault) String() string
type SpotInstanceStatus
    func (s SpotInstanceStatus) GoString() string
    func (s *SpotInstanceStatus) SetCode(v string) *SpotInstanceStatus
    func (s *SpotInstanceStatus) SetMessage(v string) *SpotInstanceStatus
    func (s *SpotInstanceStatus) SetUpdateTime(v time.Time) *SpotInstanceStatus
    func (s SpotInstanceStatus) String() string
type SpotPlacement
    func (s SpotPlacement) GoString() string
    func (s *SpotPlacement) SetAvailabilityZone(v string) *SpotPlacement
    func (s *SpotPlacement) SetGroupName(v string) *SpotPlacement
    func (s *SpotPlacement) SetTenancy(v string) *SpotPlacement
    func (s SpotPlacement) String() string
type SpotPrice
    func (s SpotPrice) GoString() string
    func (s *SpotPrice) SetAvailabilityZone(v string) *SpotPrice
    func (s *SpotPrice) SetInstanceType(v string) *SpotPrice
    func (s *SpotPrice) SetProductDescription(v string) *SpotPrice
    func (s *SpotPrice) SetSpotPrice(v string) *SpotPrice
    func (s *SpotPrice) SetTimestamp(v time.Time) *SpotPrice
    func (s SpotPrice) String() string
type StaleIpPermission
    func (s StaleIpPermission) GoString() string
    func (s *StaleIpPermission) SetFromPort(v int64) *StaleIpPermission
    func (s *StaleIpPermission) SetIpProtocol(v string) *StaleIpPermission
    func (s *StaleIpPermission) SetIpRanges(v []*string) *StaleIpPermission
    func (s *StaleIpPermission) SetPrefixListIds(v []*string) *StaleIpPermission
    func (s *StaleIpPermission) SetToPort(v int64) *StaleIpPermission
    func (s *StaleIpPermission) SetUserIdGroupPairs(v []*UserIdGroupPair) *StaleIpPermission
    func (s StaleIpPermission) String() string
type StaleSecurityGroup
    func (s StaleSecurityGroup) GoString() string
    func (s *StaleSecurityGroup) SetDescription(v string) *StaleSecurityGroup
    func (s *StaleSecurityGroup) SetGroupId(v string) *StaleSecurityGroup
    func (s *StaleSecurityGroup) SetGroupName(v string) *StaleSecurityGroup
    func (s *StaleSecurityGroup) SetStaleIpPermissions(v []*StaleIpPermission) *StaleSecurityGroup
    func (s *StaleSecurityGroup) SetStaleIpPermissionsEgress(v []*StaleIpPermission) *StaleSecurityGroup
    func (s *StaleSecurityGroup) SetVpcId(v string) *StaleSecurityGroup
    func (s StaleSecurityGroup) String() string
type StartInstancesInput
    func (s StartInstancesInput) GoString() string
    func (s *StartInstancesInput) SetAdditionalInfo(v string) *StartInstancesInput
    func (s *StartInstancesInput) SetDryRun(v bool) *StartInstancesInput
    func (s *StartInstancesInput) SetInstanceIds(v []*string) *StartInstancesInput
    func (s StartInstancesInput) String() string
    func (s *StartInstancesInput) Validate() error
type StartInstancesOutput
    func (s StartInstancesOutput) GoString() string
    func (s *StartInstancesOutput) SetStartingInstances(v []*InstanceStateChange) *StartInstancesOutput
    func (s StartInstancesOutput) String() string
type StateReason
    func (s StateReason) GoString() string
    func (s *StateReason) SetCode(v string) *StateReason
    func (s *StateReason) SetMessage(v string) *StateReason
    func (s StateReason) String() string
type StopInstancesInput
    func (s StopInstancesInput) GoString() string
    func (s *StopInstancesInput) SetDryRun(v bool) *StopInstancesInput
    func (s *StopInstancesInput) SetForce(v bool) *StopInstancesInput
    func (s *StopInstancesInput) SetInstanceIds(v []*string) *StopInstancesInput
    func (s StopInstancesInput) String() string
    func (s *StopInstancesInput) Validate() error
type StopInstancesOutput
    func (s StopInstancesOutput) GoString() string
    func (s *StopInstancesOutput) SetStoppingInstances(v []*InstanceStateChange) *StopInstancesOutput
    func (s StopInstancesOutput) String() string
type Storage
    func (s Storage) GoString() string
    func (s *Storage) SetS3(v *S3Storage) *Storage
    func (s Storage) String() string
type StorageLocation
    func (s StorageLocation) GoString() string
    func (s *StorageLocation) SetBucket(v string) *StorageLocation
    func (s *StorageLocation) SetKey(v string) *StorageLocation
    func (s StorageLocation) String() string
type Subnet
    func (s Subnet) GoString() string
    func (s *Subnet) SetAssignIpv6AddressOnCreation(v bool) *Subnet
    func (s *Subnet) SetAvailabilityZone(v string) *Subnet
    func (s *Subnet) SetAvailableIpAddressCount(v int64) *Subnet
    func (s *Subnet) SetCidrBlock(v string) *Subnet
    func (s *Subnet) SetDefaultForAz(v bool) *Subnet
    func (s *Subnet) SetIpv6CidrBlockAssociationSet(v []*SubnetIpv6CidrBlockAssociation) *Subnet
    func (s *Subnet) SetMapPublicIpOnLaunch(v bool) *Subnet
    func (s *Subnet) SetState(v string) *Subnet
    func (s *Subnet) SetSubnetId(v string) *Subnet
    func (s *Subnet) SetTags(v []*Tag) *Subnet
    func (s *Subnet) SetVpcId(v string) *Subnet
    func (s Subnet) String() string
type SubnetCidrBlockState
    func (s SubnetCidrBlockState) GoString() string
    func (s *SubnetCidrBlockState) SetState(v string) *SubnetCidrBlockState
    func (s *SubnetCidrBlockState) SetStatusMessage(v string) *SubnetCidrBlockState
    func (s SubnetCidrBlockState) String() string
type SubnetIpv6CidrBlockAssociation
    func (s SubnetIpv6CidrBlockAssociation) GoString() string
    func (s *SubnetIpv6CidrBlockAssociation) SetAssociationId(v string) *SubnetIpv6CidrBlockAssociation
    func (s *SubnetIpv6CidrBlockAssociation) SetIpv6CidrBlock(v string) *SubnetIpv6CidrBlockAssociation
    func (s *SubnetIpv6CidrBlockAssociation) SetIpv6CidrBlockState(v *SubnetCidrBlockState) *SubnetIpv6CidrBlockAssociation
    func (s SubnetIpv6CidrBlockAssociation) String() string
type Tag
    func (s Tag) GoString() string
    func (s *Tag) SetKey(v string) *Tag
    func (s *Tag) SetValue(v string) *Tag
    func (s Tag) String() string
type TagDescription
    func (s TagDescription) GoString() string
    func (s *TagDescription) SetKey(v string) *TagDescription
    func (s *TagDescription) SetResourceId(v string) *TagDescription
    func (s *TagDescription) SetResourceType(v string) *TagDescription
    func (s *TagDescription) SetValue(v string) *TagDescription
    func (s TagDescription) String() string
type TagSpecification
    func (s TagSpecification) GoString() string
    func (s *TagSpecification) SetResourceType(v string) *TagSpecification
    func (s *TagSpecification) SetTags(v []*Tag) *TagSpecification
    func (s TagSpecification) String() string
type TargetConfiguration
    func (s TargetConfiguration) GoString() string
    func (s *TargetConfiguration) SetInstanceCount(v int64) *TargetConfiguration
    func (s *TargetConfiguration) SetOfferingId(v string) *TargetConfiguration
    func (s TargetConfiguration) String() string
type TargetConfigurationRequest
    func (s TargetConfigurationRequest) GoString() string
    func (s *TargetConfigurationRequest) SetInstanceCount(v int64) *TargetConfigurationRequest
    func (s *TargetConfigurationRequest) SetOfferingId(v string) *TargetConfigurationRequest
    func (s TargetConfigurationRequest) String() string
    func (s *TargetConfigurationRequest) Validate() error
type TargetReservationValue
    func (s TargetReservationValue) GoString() string
    func (s *TargetReservationValue) SetReservationValue(v *ReservationValue) *TargetReservationValue
    func (s *TargetReservationValue) SetTargetConfiguration(v *TargetConfiguration) *TargetReservationValue
    func (s TargetReservationValue) String() string
type TerminateInstancesInput
    func (s TerminateInstancesInput) GoString() string
    func (s *TerminateInstancesInput) SetDryRun(v bool) *TerminateInstancesInput
    func (s *TerminateInstancesInput) SetInstanceIds(v []*string) *TerminateInstancesInput
    func (s TerminateInstancesInput) String() string
    func (s *TerminateInstancesInput) Validate() error
type TerminateInstancesOutput
    func (s TerminateInstancesOutput) GoString() string
    func (s *TerminateInstancesOutput) SetTerminatingInstances(v []*InstanceStateChange) *TerminateInstancesOutput
    func (s TerminateInstancesOutput) String() string
type UnassignIpv6AddressesInput
    func (s UnassignIpv6AddressesInput) GoString() string
    func (s *UnassignIpv6AddressesInput) SetIpv6Addresses(v []*string) *UnassignIpv6AddressesInput
    func (s *UnassignIpv6AddressesInput) SetNetworkInterfaceId(v string) *UnassignIpv6AddressesInput
    func (s UnassignIpv6AddressesInput) String() string
    func (s *UnassignIpv6AddressesInput) Validate() error
type UnassignIpv6AddressesOutput
    func (s UnassignIpv6AddressesOutput) GoString() string
    func (s *UnassignIpv6AddressesOutput) SetNetworkInterfaceId(v string) *UnassignIpv6AddressesOutput
    func (s *UnassignIpv6AddressesOutput) SetUnassignedIpv6Addresses(v []*string) *UnassignIpv6AddressesOutput
    func (s UnassignIpv6AddressesOutput) String() string
type UnassignPrivateIpAddressesInput
    func (s UnassignPrivateIpAddressesInput) GoString() string
    func (s *UnassignPrivateIpAddressesInput) SetNetworkInterfaceId(v string) *UnassignPrivateIpAddressesInput
    func (s *UnassignPrivateIpAddressesInput) SetPrivateIpAddresses(v []*string) *UnassignPrivateIpAddressesInput
    func (s UnassignPrivateIpAddressesInput) String() string
    func (s *UnassignPrivateIpAddressesInput) Validate() error
type UnassignPrivateIpAddressesOutput
    func (s UnassignPrivateIpAddressesOutput) GoString() string
    func (s UnassignPrivateIpAddressesOutput) String() string
type UnmonitorInstancesInput
    func (s UnmonitorInstancesInput) GoString() string
    func (s *UnmonitorInstancesInput) SetDryRun(v bool) *UnmonitorInstancesInput
    func (s *UnmonitorInstancesInput) SetInstanceIds(v []*string) *UnmonitorInstancesInput
    func (s UnmonitorInstancesInput) String() string
    func (s *UnmonitorInstancesInput) Validate() error
type UnmonitorInstancesOutput
    func (s UnmonitorInstancesOutput) GoString() string
    func (s *UnmonitorInstancesOutput) SetInstanceMonitorings(v []*InstanceMonitoring) *UnmonitorInstancesOutput
    func (s UnmonitorInstancesOutput) String() string
type UnsuccessfulItem
    func (s UnsuccessfulItem) GoString() string
    func (s *UnsuccessfulItem) SetError(v *UnsuccessfulItemError) *UnsuccessfulItem
    func (s *UnsuccessfulItem) SetResourceId(v string) *UnsuccessfulItem
    func (s UnsuccessfulItem) String() string
type UnsuccessfulItemError
    func (s UnsuccessfulItemError) GoString() string
    func (s *UnsuccessfulItemError) SetCode(v string) *UnsuccessfulItemError
    func (s *UnsuccessfulItemError) SetMessage(v string) *UnsuccessfulItemError
    func (s UnsuccessfulItemError) String() string
type UserBucket
    func (s UserBucket) GoString() string
    func (s *UserBucket) SetS3Bucket(v string) *UserBucket
    func (s *UserBucket) SetS3Key(v string) *UserBucket
    func (s UserBucket) String() string
type UserBucketDetails
    func (s UserBucketDetails) GoString() string
    func (s *UserBucketDetails) SetS3Bucket(v string) *UserBucketDetails
    func (s *UserBucketDetails) SetS3Key(v string) *UserBucketDetails
    func (s UserBucketDetails) String() string
type UserData
    func (s UserData) GoString() string
    func (s *UserData) SetData(v string) *UserData
    func (s UserData) String() string
type UserIdGroupPair
    func (s UserIdGroupPair) GoString() string
    func (s *UserIdGroupPair) SetGroupId(v string) *UserIdGroupPair
    func (s *UserIdGroupPair) SetGroupName(v string) *UserIdGroupPair
    func (s *UserIdGroupPair) SetPeeringStatus(v string) *UserIdGroupPair
    func (s *UserIdGroupPair) SetUserId(v string) *UserIdGroupPair
    func (s *UserIdGroupPair) SetVpcId(v string) *UserIdGroupPair
    func (s *UserIdGroupPair) SetVpcPeeringConnectionId(v string) *UserIdGroupPair
    func (s UserIdGroupPair) String() string
type VgwTelemetry
    func (s VgwTelemetry) GoString() string
    func (s *VgwTelemetry) SetAcceptedRouteCount(v int64) *VgwTelemetry
    func (s *VgwTelemetry) SetLastStatusChange(v time.Time) *VgwTelemetry
    func (s *VgwTelemetry) SetOutsideIpAddress(v string) *VgwTelemetry
    func (s *VgwTelemetry) SetStatus(v string) *VgwTelemetry
    func (s *VgwTelemetry) SetStatusMessage(v string) *VgwTelemetry
    func (s VgwTelemetry) String() string
type Volume
    func (s Volume) GoString() string
    func (s *Volume) SetAttachments(v []*VolumeAttachment) *Volume
    func (s *Volume) SetAvailabilityZone(v string) *Volume
    func (s *Volume) SetCreateTime(v time.Time) *Volume
    func (s *Volume) SetEncrypted(v bool) *Volume
    func (s *Volume) SetIops(v int64) *Volume
    func (s *Volume) SetKmsKeyId(v string) *Volume
    func (s *Volume) SetSize(v int64) *Volume
    func (s *Volume) SetSnapshotId(v string) *Volume
    func (s *Volume) SetState(v string) *Volume
    func (s *Volume) SetTags(v []*Tag) *Volume
    func (s *Volume) SetVolumeId(v string) *Volume
    func (s *Volume) SetVolumeType(v string) *Volume
    func (s Volume) String() string
type VolumeAttachment
    func (s VolumeAttachment) GoString() string
    func (s *VolumeAttachment) SetAttachTime(v time.Time) *VolumeAttachment
    func (s *VolumeAttachment) SetDeleteOnTermination(v bool) *VolumeAttachment
    func (s *VolumeAttachment) SetDevice(v string) *VolumeAttachment
    func (s *VolumeAttachment) SetInstanceId(v string) *VolumeAttachment
    func (s *VolumeAttachment) SetState(v string) *VolumeAttachment
    func (s *VolumeAttachment) SetVolumeId(v string) *VolumeAttachment
    func (s VolumeAttachment) String() string
type VolumeDetail
    func (s VolumeDetail) GoString() string
    func (s *VolumeDetail) SetSize(v int64) *VolumeDetail
    func (s VolumeDetail) String() string
    func (s *VolumeDetail) Validate() error
type VolumeModification
    func (s VolumeModification) GoString() string
    func (s *VolumeModification) SetEndTime(v time.Time) *VolumeModification
    func (s *VolumeModification) SetModificationState(v string) *VolumeModification
    func (s *VolumeModification) SetOriginalIops(v int64) *VolumeModification
    func (s *VolumeModification) SetOriginalSize(v int64) *VolumeModification
    func (s *VolumeModification) SetOriginalVolumeType(v string) *VolumeModification
    func (s *VolumeModification) SetProgress(v int64) *VolumeModification
    func (s *VolumeModification) SetStartTime(v time.Time) *VolumeModification
    func (s *VolumeModification) SetStatusMessage(v string) *VolumeModification
    func (s *VolumeModification) SetTargetIops(v int64) *VolumeModification
    func (s *VolumeModification) SetTargetSize(v int64) *VolumeModification
    func (s *VolumeModification) SetTargetVolumeType(v string) *VolumeModification
    func (s *VolumeModification) SetVolumeId(v string) *VolumeModification
    func (s VolumeModification) String() string
type VolumeStatusAction
    func (s VolumeStatusAction) GoString() string
    func (s *VolumeStatusAction) SetCode(v string) *VolumeStatusAction
    func (s *VolumeStatusAction) SetDescription(v string) *VolumeStatusAction
    func (s *VolumeStatusAction) SetEventId(v string) *VolumeStatusAction
    func (s *VolumeStatusAction) SetEventType(v string) *VolumeStatusAction
    func (s VolumeStatusAction) String() string
type VolumeStatusDetails
    func (s VolumeStatusDetails) GoString() string
    func (s *VolumeStatusDetails) SetName(v string) *VolumeStatusDetails
    func (s *VolumeStatusDetails) SetStatus(v string) *VolumeStatusDetails
    func (s VolumeStatusDetails) String() string
type VolumeStatusEvent
    func (s VolumeStatusEvent) GoString() string
    func (s *VolumeStatusEvent) SetDescription(v string) *VolumeStatusEvent
    func (s *VolumeStatusEvent) SetEventId(v string) *VolumeStatusEvent
    func (s *VolumeStatusEvent) SetEventType(v string) *VolumeStatusEvent
    func (s *VolumeStatusEvent) SetNotAfter(v time.Time) *VolumeStatusEvent
    func (s *VolumeStatusEvent) SetNotBefore(v time.Time) *VolumeStatusEvent
    func (s VolumeStatusEvent) String() string
type VolumeStatusInfo
    func (s VolumeStatusInfo) GoString() string
    func (s *VolumeStatusInfo) SetDetails(v []*VolumeStatusDetails) *VolumeStatusInfo
    func (s *VolumeStatusInfo) SetStatus(v string) *VolumeStatusInfo
    func (s VolumeStatusInfo) String() string
type VolumeStatusItem
    func (s VolumeStatusItem) GoString() string
    func (s *VolumeStatusItem) SetActions(v []*VolumeStatusAction) *VolumeStatusItem
    func (s *VolumeStatusItem) SetAvailabilityZone(v string) *VolumeStatusItem
    func (s *VolumeStatusItem) SetEvents(v []*VolumeStatusEvent) *VolumeStatusItem
    func (s *VolumeStatusItem) SetVolumeId(v string) *VolumeStatusItem
    func (s *VolumeStatusItem) SetVolumeStatus(v *VolumeStatusInfo) *VolumeStatusItem
    func (s VolumeStatusItem) String() string
type Vpc
    func (s Vpc) GoString() string
    func (s *Vpc) SetCidrBlock(v string) *Vpc
    func (s *Vpc) SetDhcpOptionsId(v string) *Vpc
    func (s *Vpc) SetInstanceTenancy(v string) *Vpc
    func (s *Vpc) SetIpv6CidrBlockAssociationSet(v []*VpcIpv6CidrBlockAssociation) *Vpc
    func (s *Vpc) SetIsDefault(v bool) *Vpc
    func (s *Vpc) SetState(v string) *Vpc
    func (s *Vpc) SetTags(v []*Tag) *Vpc
    func (s *Vpc) SetVpcId(v string) *Vpc
    func (s Vpc) String() string
type VpcAttachment
    func (s VpcAttachment) GoString() string
    func (s *VpcAttachment) SetState(v string) *VpcAttachment
    func (s *VpcAttachment) SetVpcId(v string) *VpcAttachment
    func (s VpcAttachment) String() string
type VpcCidrBlockState
    func (s VpcCidrBlockState) GoString() string
    func (s *VpcCidrBlockState) SetState(v string) *VpcCidrBlockState
    func (s *VpcCidrBlockState) SetStatusMessage(v string) *VpcCidrBlockState
    func (s VpcCidrBlockState) String() string
type VpcClassicLink
    func (s VpcClassicLink) GoString() string
    func (s *VpcClassicLink) SetClassicLinkEnabled(v bool) *VpcClassicLink
    func (s *VpcClassicLink) SetTags(v []*Tag) *VpcClassicLink
    func (s *VpcClassicLink) SetVpcId(v string) *VpcClassicLink
    func (s VpcClassicLink) String() string
type VpcEndpoint
    func (s VpcEndpoint) GoString() string
    func (s *VpcEndpoint) SetCreationTimestamp(v time.Time) *VpcEndpoint
    func (s *VpcEndpoint) SetPolicyDocument(v string) *VpcEndpoint
    func (s *VpcEndpoint) SetRouteTableIds(v []*string) *VpcEndpoint
    func (s *VpcEndpoint) SetServiceName(v string) *VpcEndpoint
    func (s *VpcEndpoint) SetState(v string) *VpcEndpoint
    func (s *VpcEndpoint) SetVpcEndpointId(v string) *VpcEndpoint
    func (s *VpcEndpoint) SetVpcId(v string) *VpcEndpoint
    func (s VpcEndpoint) String() string
type VpcIpv6CidrBlockAssociation
    func (s VpcIpv6CidrBlockAssociation) GoString() string
    func (s *VpcIpv6CidrBlockAssociation) SetAssociationId(v string) *VpcIpv6CidrBlockAssociation
    func (s *VpcIpv6CidrBlockAssociation) SetIpv6CidrBlock(v string) *VpcIpv6CidrBlockAssociation
    func (s *VpcIpv6CidrBlockAssociation) SetIpv6CidrBlockState(v *VpcCidrBlockState) *VpcIpv6CidrBlockAssociation
    func (s VpcIpv6CidrBlockAssociation) String() string
type VpcPeeringConnection
    func (s VpcPeeringConnection) GoString() string
    func (s *VpcPeeringConnection) SetAccepterVpcInfo(v *VpcPeeringConnectionVpcInfo) *VpcPeeringConnection
    func (s *VpcPeeringConnection) SetExpirationTime(v time.Time) *VpcPeeringConnection
    func (s *VpcPeeringConnection) SetRequesterVpcInfo(v *VpcPeeringConnectionVpcInfo) *VpcPeeringConnection
    func (s *VpcPeeringConnection) SetStatus(v *VpcPeeringConnectionStateReason) *VpcPeeringConnection
    func (s *VpcPeeringConnection) SetTags(v []*Tag) *VpcPeeringConnection
    func (s *VpcPeeringConnection) SetVpcPeeringConnectionId(v string) *VpcPeeringConnection
    func (s VpcPeeringConnection) String() string
type VpcPeeringConnectionOptionsDescription
    func (s VpcPeeringConnectionOptionsDescription) GoString() string
    func (s *VpcPeeringConnectionOptionsDescription) SetAllowDnsResolutionFromRemoteVpc(v bool) *VpcPeeringConnectionOptionsDescription
    func (s *VpcPeeringConnectionOptionsDescription) SetAllowEgressFromLocalClassicLinkToRemoteVpc(v bool) *VpcPeeringConnectionOptionsDescription
    func (s *VpcPeeringConnectionOptionsDescription) SetAllowEgressFromLocalVpcToRemoteClassicLink(v bool) *VpcPeeringConnectionOptionsDescription
    func (s VpcPeeringConnectionOptionsDescription) String() string
type VpcPeeringConnectionStateReason
    func (s VpcPeeringConnectionStateReason) GoString() string
    func (s *VpcPeeringConnectionStateReason) SetCode(v string) *VpcPeeringConnectionStateReason
    func (s *VpcPeeringConnectionStateReason) SetMessage(v string) *VpcPeeringConnectionStateReason
    func (s VpcPeeringConnectionStateReason) String() string
type VpcPeeringConnectionVpcInfo
    func (s VpcPeeringConnectionVpcInfo) GoString() string
    func (s *VpcPeeringConnectionVpcInfo) SetCidrBlock(v string) *VpcPeeringConnectionVpcInfo
    func (s *VpcPeeringConnectionVpcInfo) SetIpv6CidrBlockSet(v []*Ipv6CidrBlock) *VpcPeeringConnectionVpcInfo
    func (s *VpcPeeringConnectionVpcInfo) SetOwnerId(v string) *VpcPeeringConnectionVpcInfo
    func (s *VpcPeeringConnectionVpcInfo) SetPeeringOptions(v *VpcPeeringConnectionOptionsDescription) *VpcPeeringConnectionVpcInfo
    func (s *VpcPeeringConnectionVpcInfo) SetVpcId(v string) *VpcPeeringConnectionVpcInfo
    func (s VpcPeeringConnectionVpcInfo) String() string
type VpnConnection
    func (s VpnConnection) GoString() string
    func (s *VpnConnection) SetCustomerGatewayConfiguration(v string) *VpnConnection
    func (s *VpnConnection) SetCustomerGatewayId(v string) *VpnConnection
    func (s *VpnConnection) SetOptions(v *VpnConnectionOptions) *VpnConnection
    func (s *VpnConnection) SetRoutes(v []*VpnStaticRoute) *VpnConnection
    func (s *VpnConnection) SetState(v string) *VpnConnection
    func (s *VpnConnection) SetTags(v []*Tag) *VpnConnection
    func (s *VpnConnection) SetType(v string) *VpnConnection
    func (s *VpnConnection) SetVgwTelemetry(v []*VgwTelemetry) *VpnConnection
    func (s *VpnConnection) SetVpnConnectionId(v string) *VpnConnection
    func (s *VpnConnection) SetVpnGatewayId(v string) *VpnConnection
    func (s VpnConnection) String() string
type VpnConnectionOptions
    func (s VpnConnectionOptions) GoString() string
    func (s *VpnConnectionOptions) SetStaticRoutesOnly(v bool) *VpnConnectionOptions
    func (s VpnConnectionOptions) String() string
type VpnConnectionOptionsSpecification
    func (s VpnConnectionOptionsSpecification) GoString() string
    func (s *VpnConnectionOptionsSpecification) SetStaticRoutesOnly(v bool) *VpnConnectionOptionsSpecification
    func (s VpnConnectionOptionsSpecification) String() string
type VpnGateway
    func (s VpnGateway) GoString() string
    func (s *VpnGateway) SetAvailabilityZone(v string) *VpnGateway
    func (s *VpnGateway) SetState(v string) *VpnGateway
    func (s *VpnGateway) SetTags(v []*Tag) *VpnGateway
    func (s *VpnGateway) SetType(v string) *VpnGateway
    func (s *VpnGateway) SetVpcAttachments(v []*VpcAttachment) *VpnGateway
    func (s *VpnGateway) SetVpnGatewayId(v string) *VpnGateway
    func (s VpnGateway) String() string
type VpnStaticRoute
    func (s VpnStaticRoute) GoString() string
    func (s *VpnStaticRoute) SetDestinationCidrBlock(v string) *VpnStaticRoute
    func (s *VpnStaticRoute) SetSource(v string) *VpnStaticRoute
    func (s *VpnStaticRoute) SetState(v string) *VpnStaticRoute
    func (s VpnStaticRoute) String() string

Examples

EC2.AllocateAddress (Shared00)
EC2.AllocateAddress (Shared01)
EC2.AssignPrivateIpAddresses (Shared00)
EC2.AssignPrivateIpAddresses (Shared01)
EC2.AssociateAddress (Shared00)
EC2.AssociateAddress (Shared01)
EC2.AssociateAddress (Shared02)
EC2.AssociateDhcpOptions (Shared00)
EC2.AssociateDhcpOptions (Shared01)
EC2.AssociateRouteTable (Shared00)
EC2.AttachInternetGateway (Shared00)
EC2.AttachNetworkInterface (Shared00)
EC2.AttachVolume (Shared00)
EC2.CancelSpotFleetRequests (Shared00)
EC2.CancelSpotFleetRequests (Shared01)
EC2.CancelSpotInstanceRequests (Shared00)
EC2.ConfirmProductInstance (Shared00)
EC2.CopySnapshot (Shared00)
EC2.CreateCustomerGateway (Shared00)
EC2.CreateDhcpOptions (Shared00)
EC2.CreateInternetGateway (Shared00)
EC2.CreateKeyPair (Shared00)
EC2.CreateNatGateway (Shared00)
EC2.CreateNetworkAclEntry (Shared00)
EC2.CreateNetworkAcl (Shared00)
EC2.CreateNetworkInterface (Shared00)
EC2.CreatePlacementGroup (Shared00)
EC2.CreateRouteTable (Shared00)
EC2.CreateRoute (Shared00)
EC2.CreateSnapshot (Shared00)
EC2.CreateSpotDatafeedSubscription (Shared00)
EC2.CreateSubnet (Shared00)
EC2.CreateTags (Shared00)
EC2.CreateVolume (Shared00)
EC2.CreateVolume (Shared01)
EC2.CreateVpc (Shared00)
EC2.DeleteCustomerGateway (Shared00)
EC2.DeleteDhcpOptions (Shared00)
EC2.DeleteInternetGateway (Shared00)
EC2.DeleteKeyPair (Shared00)
EC2.DeleteNatGateway (Shared00)
EC2.DeleteNetworkAclEntry (Shared00)
EC2.DeleteNetworkAcl (Shared00)
EC2.DeleteNetworkInterface (Shared00)
EC2.DeletePlacementGroup (Shared00)
EC2.DeleteRouteTable (Shared00)
EC2.DeleteRoute (Shared00)
EC2.DeleteSnapshot (Shared00)
EC2.DeleteSpotDatafeedSubscription (Shared00)
EC2.DeleteSubnet (Shared00)
EC2.DeleteTags (Shared00)
EC2.DeleteVolume (Shared00)
EC2.DeleteVpc (Shared00)
EC2.DescribeAccountAttributes (Shared00)
EC2.DescribeAccountAttributes (Shared01)
EC2.DescribeAddresses (Shared00)
EC2.DescribeAddresses (Shared01)
EC2.DescribeAddresses (Shared02)
EC2.DescribeAvailabilityZones (Shared00)
EC2.DescribeCustomerGateways (Shared00)
EC2.DescribeDhcpOptions (Shared00)
EC2.DescribeInstanceAttribute (Shared00)
EC2.DescribeInstanceAttribute (Shared01)
EC2.DescribeInstanceAttribute (Shared02)
EC2.DescribeInternetGateways (Shared00)
EC2.DescribeKeyPairs (Shared00)
EC2.DescribeMovingAddresses (Shared00)
EC2.DescribeNatGateways (Shared00)
EC2.DescribeNetworkAcls (Shared00)
EC2.DescribeNetworkInterfaceAttribute (Shared00)
EC2.DescribeNetworkInterfaceAttribute (Shared01)
EC2.DescribeNetworkInterfaceAttribute (Shared02)
EC2.DescribeNetworkInterfaceAttribute (Shared03)
EC2.DescribeNetworkInterfaces (Shared00)
EC2.DescribeRegions (Shared00)
EC2.DescribeRouteTables (Shared00)
EC2.DescribeScheduledInstanceAvailability (Shared00)
EC2.DescribeScheduledInstances (Shared00)
EC2.DescribeSnapshotAttribute (Shared00)
EC2.DescribeSnapshots (Shared00)
EC2.DescribeSnapshots (Shared01)
EC2.DescribeSpotDatafeedSubscription (Shared00)
EC2.DescribeSpotFleetInstances (Shared00)
EC2.DescribeSpotFleetRequestHistory (Shared00)
EC2.DescribeSpotFleetRequests (Shared00)
EC2.DescribeSpotInstanceRequests (Shared00)
EC2.DescribeSpotPriceHistory (Shared00)
EC2.DescribeSubnets (Shared00)
EC2.DescribeTags (Shared00)
EC2.DescribeVolumeAttribute (Shared00)
EC2.DescribeVolumeStatus (Shared00)
EC2.DescribeVolumeStatus (Shared01)
EC2.DescribeVolumes (Shared00)
EC2.DescribeVolumes (Shared01)
EC2.DescribeVpcAttribute (Shared00)
EC2.DescribeVpcAttribute (Shared01)
EC2.DescribeVpcs (Shared00)
EC2.DetachInternetGateway (Shared00)
EC2.DetachNetworkInterface (Shared00)
EC2.DetachVolume (Shared00)
EC2.DisableVgwRoutePropagation (Shared00)
EC2.DisassociateAddress (Shared00)
EC2.DisassociateAddress (Shared01)
EC2.DisassociateRouteTable (Shared00)
EC2.EnableVgwRoutePropagation (Shared00)
EC2.EnableVolumeIO (Shared00)
EC2.ModifyNetworkInterfaceAttribute (Shared00)
EC2.ModifyNetworkInterfaceAttribute (Shared01)
EC2.ModifyNetworkInterfaceAttribute (Shared02)
EC2.ModifyNetworkInterfaceAttribute (Shared03)
EC2.ModifySnapshotAttribute (Shared00)
EC2.ModifySnapshotAttribute (Shared01)
EC2.ModifySpotFleetRequest (Shared00)
EC2.ModifySpotFleetRequest (Shared01)
EC2.ModifySubnetAttribute (Shared00)
EC2.ModifyVolumeAttribute (Shared00)
EC2.ModifyVpcAttribute (Shared00)
EC2.ModifyVpcAttribute (Shared01)
EC2.MoveAddressToVpc (Shared00)
EC2.PurchaseScheduledInstances (Shared00)
EC2.ReleaseAddress (Shared00)
EC2.ReleaseAddress (Shared01)
EC2.ReplaceNetworkAclAssociation (Shared00)
EC2.ReplaceNetworkAclEntry (Shared00)
EC2.ReplaceRouteTableAssociation (Shared00)
EC2.ReplaceRoute (Shared00)
EC2.RequestSpotFleet (Shared00)
EC2.RequestSpotFleet (Shared01)
EC2.RequestSpotFleet (Shared02)
EC2.RequestSpotFleet (Shared03)
EC2.RequestSpotInstances (Shared00)
EC2.RequestSpotInstances (Shared01)
EC2.ResetSnapshotAttribute (Shared00)
EC2.RestoreAddressToClassic (Shared00)
EC2.RunScheduledInstances (Shared00)
EC2.RunScheduledInstances (Shared01)
EC2.UnassignPrivateIpAddresses (Shared00)

Package files

api.go customizations.go doc.go errors.go service.go waiters.go

Constants

const (
    // AccountAttributeNameSupportedPlatforms is a AccountAttributeName enum value
    AccountAttributeNameSupportedPlatforms = "supported-platforms"

    // AccountAttributeNameDefaultVpc is a AccountAttributeName enum value
    AccountAttributeNameDefaultVpc = "default-vpc"
)
const (
    // ActivityStatusError is a ActivityStatus enum value
    ActivityStatusError = "error"

    // ActivityStatusPendingFulfillment is a ActivityStatus enum value
    ActivityStatusPendingFulfillment = "pending_fulfillment"

    // ActivityStatusPendingTermination is a ActivityStatus enum value
    ActivityStatusPendingTermination = "pending_termination"

    // ActivityStatusFulfilled is a ActivityStatus enum value
    ActivityStatusFulfilled = "fulfilled"
)
const (
    // AffinityDefault is a Affinity enum value
    AffinityDefault = "default"

    // AffinityHost is a Affinity enum value
    AffinityHost = "host"
)
const (
    // AllocationStateAvailable is a AllocationState enum value
    AllocationStateAvailable = "available"

    // AllocationStateUnderAssessment is a AllocationState enum value
    AllocationStateUnderAssessment = "under-assessment"

    // AllocationStatePermanentFailure is a AllocationState enum value
    AllocationStatePermanentFailure = "permanent-failure"

    // AllocationStateReleased is a AllocationState enum value
    AllocationStateReleased = "released"

    // AllocationStateReleasedPermanentFailure is a AllocationState enum value
    AllocationStateReleasedPermanentFailure = "released-permanent-failure"
)
const (
    // AllocationStrategyLowestPrice is a AllocationStrategy enum value
    AllocationStrategyLowestPrice = "lowestPrice"

    // AllocationStrategyDiversified is a AllocationStrategy enum value
    AllocationStrategyDiversified = "diversified"
)
const (
    // ArchitectureValuesI386 is a ArchitectureValues enum value
    ArchitectureValuesI386 = "i386"

    // ArchitectureValuesX8664 is a ArchitectureValues enum value
    ArchitectureValuesX8664 = "x86_64"
)
const (
    // AttachmentStatusAttaching is a AttachmentStatus enum value
    AttachmentStatusAttaching = "attaching"

    // AttachmentStatusAttached is a AttachmentStatus enum value
    AttachmentStatusAttached = "attached"

    // AttachmentStatusDetaching is a AttachmentStatus enum value
    AttachmentStatusDetaching = "detaching"

    // AttachmentStatusDetached is a AttachmentStatus enum value
    AttachmentStatusDetached = "detached"
)
const (
    // AutoPlacementOn is a AutoPlacement enum value
    AutoPlacementOn = "on"

    // AutoPlacementOff is a AutoPlacement enum value
    AutoPlacementOff = "off"
)
const (
    // AvailabilityZoneStateAvailable is a AvailabilityZoneState enum value
    AvailabilityZoneStateAvailable = "available"

    // AvailabilityZoneStateInformation is a AvailabilityZoneState enum value
    AvailabilityZoneStateInformation = "information"

    // AvailabilityZoneStateImpaired is a AvailabilityZoneState enum value
    AvailabilityZoneStateImpaired = "impaired"

    // AvailabilityZoneStateUnavailable is a AvailabilityZoneState enum value
    AvailabilityZoneStateUnavailable = "unavailable"
)
const (
    // BatchStateSubmitted is a BatchState enum value
    BatchStateSubmitted = "submitted"

    // BatchStateActive is a BatchState enum value
    BatchStateActive = "active"

    // BatchStateCancelled is a BatchState enum value
    BatchStateCancelled = "cancelled"

    // BatchStateFailed is a BatchState enum value
    BatchStateFailed = "failed"

    // BatchStateCancelledRunning is a BatchState enum value
    BatchStateCancelledRunning = "cancelled_running"

    // BatchStateCancelledTerminating is a BatchState enum value
    BatchStateCancelledTerminating = "cancelled_terminating"

    // BatchStateModifying is a BatchState enum value
    BatchStateModifying = "modifying"
)
const (
    // BundleTaskStatePending is a BundleTaskState enum value
    BundleTaskStatePending = "pending"

    // BundleTaskStateWaitingForShutdown is a BundleTaskState enum value
    BundleTaskStateWaitingForShutdown = "waiting-for-shutdown"

    // BundleTaskStateBundling is a BundleTaskState enum value
    BundleTaskStateBundling = "bundling"

    // BundleTaskStateStoring is a BundleTaskState enum value
    BundleTaskStateStoring = "storing"

    // BundleTaskStateCancelling is a BundleTaskState enum value
    BundleTaskStateCancelling = "cancelling"

    // BundleTaskStateComplete is a BundleTaskState enum value
    BundleTaskStateComplete = "complete"

    // BundleTaskStateFailed is a BundleTaskState enum value
    BundleTaskStateFailed = "failed"
)
const (
    // CancelBatchErrorCodeFleetRequestIdDoesNotExist is a CancelBatchErrorCode enum value
    CancelBatchErrorCodeFleetRequestIdDoesNotExist = "fleetRequestIdDoesNotExist"

    // CancelBatchErrorCodeFleetRequestIdMalformed is a CancelBatchErrorCode enum value
    CancelBatchErrorCodeFleetRequestIdMalformed = "fleetRequestIdMalformed"

    // CancelBatchErrorCodeFleetRequestNotInCancellableState is a CancelBatchErrorCode enum value
    CancelBatchErrorCodeFleetRequestNotInCancellableState = "fleetRequestNotInCancellableState"

    // CancelBatchErrorCodeUnexpectedError is a CancelBatchErrorCode enum value
    CancelBatchErrorCodeUnexpectedError = "unexpectedError"
)
const (
    // CancelSpotInstanceRequestStateActive is a CancelSpotInstanceRequestState enum value
    CancelSpotInstanceRequestStateActive = "active"

    // CancelSpotInstanceRequestStateOpen is a CancelSpotInstanceRequestState enum value
    CancelSpotInstanceRequestStateOpen = "open"

    // CancelSpotInstanceRequestStateClosed is a CancelSpotInstanceRequestState enum value
    CancelSpotInstanceRequestStateClosed = "closed"

    // CancelSpotInstanceRequestStateCancelled is a CancelSpotInstanceRequestState enum value
    CancelSpotInstanceRequestStateCancelled = "cancelled"

    // CancelSpotInstanceRequestStateCompleted is a CancelSpotInstanceRequestState enum value
    CancelSpotInstanceRequestStateCompleted = "completed"
)
const (
    // ConversionTaskStateActive is a ConversionTaskState enum value
    ConversionTaskStateActive = "active"

    // ConversionTaskStateCancelling is a ConversionTaskState enum value
    ConversionTaskStateCancelling = "cancelling"

    // ConversionTaskStateCancelled is a ConversionTaskState enum value
    ConversionTaskStateCancelled = "cancelled"

    // ConversionTaskStateCompleted is a ConversionTaskState enum value
    ConversionTaskStateCompleted = "completed"
)
const (
    // DatafeedSubscriptionStateActive is a DatafeedSubscriptionState enum value
    DatafeedSubscriptionStateActive = "Active"

    // DatafeedSubscriptionStateInactive is a DatafeedSubscriptionState enum value
    DatafeedSubscriptionStateInactive = "Inactive"
)
const (
    // DeviceTypeEbs is a DeviceType enum value
    DeviceTypeEbs = "ebs"

    // DeviceTypeInstanceStore is a DeviceType enum value
    DeviceTypeInstanceStore = "instance-store"
)
const (
    // DiskImageFormatVmdk is a DiskImageFormat enum value
    DiskImageFormatVmdk = "VMDK"

    // DiskImageFormatRaw is a DiskImageFormat enum value
    DiskImageFormatRaw = "RAW"

    // DiskImageFormatVhd is a DiskImageFormat enum value
    DiskImageFormatVhd = "VHD"
)
const (
    // DomainTypeVpc is a DomainType enum value
    DomainTypeVpc = "vpc"

    // DomainTypeStandard is a DomainType enum value
    DomainTypeStandard = "standard"
)
const (
    // EventCodeInstanceReboot is a EventCode enum value
    EventCodeInstanceReboot = "instance-reboot"

    // EventCodeSystemReboot is a EventCode enum value
    EventCodeSystemReboot = "system-reboot"

    // EventCodeSystemMaintenance is a EventCode enum value
    EventCodeSystemMaintenance = "system-maintenance"

    // EventCodeInstanceRetirement is a EventCode enum value
    EventCodeInstanceRetirement = "instance-retirement"

    // EventCodeInstanceStop is a EventCode enum value
    EventCodeInstanceStop = "instance-stop"
)
const (
    // EventTypeInstanceChange is a EventType enum value
    EventTypeInstanceChange = "instanceChange"

    // EventTypeFleetRequestChange is a EventType enum value
    EventTypeFleetRequestChange = "fleetRequestChange"

    // EventTypeError is a EventType enum value
    EventTypeError = "error"
)
const (
    // ExcessCapacityTerminationPolicyNoTermination is a ExcessCapacityTerminationPolicy enum value
    ExcessCapacityTerminationPolicyNoTermination = "noTermination"

    // ExcessCapacityTerminationPolicyDefault is a ExcessCapacityTerminationPolicy enum value
    ExcessCapacityTerminationPolicyDefault = "default"
)
const (
    // ExportEnvironmentCitrix is a ExportEnvironment enum value
    ExportEnvironmentCitrix = "citrix"

    // ExportEnvironmentVmware is a ExportEnvironment enum value
    ExportEnvironmentVmware = "vmware"

    // ExportEnvironmentMicrosoft is a ExportEnvironment enum value
    ExportEnvironmentMicrosoft = "microsoft"
)
const (
    // ExportTaskStateActive is a ExportTaskState enum value
    ExportTaskStateActive = "active"

    // ExportTaskStateCancelling is a ExportTaskState enum value
    ExportTaskStateCancelling = "cancelling"

    // ExportTaskStateCancelled is a ExportTaskState enum value
    ExportTaskStateCancelled = "cancelled"

    // ExportTaskStateCompleted is a ExportTaskState enum value
    ExportTaskStateCompleted = "completed"
)
const (
    // FleetTypeRequest is a FleetType enum value
    FleetTypeRequest = "request"

    // FleetTypeMaintain is a FleetType enum value
    FleetTypeMaintain = "maintain"
)
const (
    // FlowLogsResourceTypeVpc is a FlowLogsResourceType enum value
    FlowLogsResourceTypeVpc = "VPC"

    // FlowLogsResourceTypeSubnet is a FlowLogsResourceType enum value
    FlowLogsResourceTypeSubnet = "Subnet"

    // FlowLogsResourceTypeNetworkInterface is a FlowLogsResourceType enum value
    FlowLogsResourceTypeNetworkInterface = "NetworkInterface"
)
const (
    // FpgaImageStateCodePending is a FpgaImageStateCode enum value
    FpgaImageStateCodePending = "pending"

    // FpgaImageStateCodeFailed is a FpgaImageStateCode enum value
    FpgaImageStateCodeFailed = "failed"

    // FpgaImageStateCodeAvailable is a FpgaImageStateCode enum value
    FpgaImageStateCodeAvailable = "available"

    // FpgaImageStateCodeUnavailable is a FpgaImageStateCode enum value
    FpgaImageStateCodeUnavailable = "unavailable"
)
const (
    // HostTenancyDedicated is a HostTenancy enum value
    HostTenancyDedicated = "dedicated"

    // HostTenancyHost is a HostTenancy enum value
    HostTenancyHost = "host"
)
const (
    // HypervisorTypeOvm is a HypervisorType enum value
    HypervisorTypeOvm = "ovm"

    // HypervisorTypeXen is a HypervisorType enum value
    HypervisorTypeXen = "xen"
)
const (
    // IamInstanceProfileAssociationStateAssociating is a IamInstanceProfileAssociationState enum value
    IamInstanceProfileAssociationStateAssociating = "associating"

    // IamInstanceProfileAssociationStateAssociated is a IamInstanceProfileAssociationState enum value
    IamInstanceProfileAssociationStateAssociated = "associated"

    // IamInstanceProfileAssociationStateDisassociating is a IamInstanceProfileAssociationState enum value
    IamInstanceProfileAssociationStateDisassociating = "disassociating"

    // IamInstanceProfileAssociationStateDisassociated is a IamInstanceProfileAssociationState enum value
    IamInstanceProfileAssociationStateDisassociated = "disassociated"
)
const (
    // ImageAttributeNameDescription is a ImageAttributeName enum value
    ImageAttributeNameDescription = "description"

    // ImageAttributeNameKernel is a ImageAttributeName enum value
    ImageAttributeNameKernel = "kernel"

    // ImageAttributeNameRamdisk is a ImageAttributeName enum value
    ImageAttributeNameRamdisk = "ramdisk"

    // ImageAttributeNameLaunchPermission is a ImageAttributeName enum value
    ImageAttributeNameLaunchPermission = "launchPermission"

    // ImageAttributeNameProductCodes is a ImageAttributeName enum value
    ImageAttributeNameProductCodes = "productCodes"

    // ImageAttributeNameBlockDeviceMapping is a ImageAttributeName enum value
    ImageAttributeNameBlockDeviceMapping = "blockDeviceMapping"

    // ImageAttributeNameSriovNetSupport is a ImageAttributeName enum value
    ImageAttributeNameSriovNetSupport = "sriovNetSupport"
)
const (
    // ImageStatePending is a ImageState enum value
    ImageStatePending = "pending"

    // ImageStateAvailable is a ImageState enum value
    ImageStateAvailable = "available"

    // ImageStateInvalid is a ImageState enum value
    ImageStateInvalid = "invalid"

    // ImageStateDeregistered is a ImageState enum value
    ImageStateDeregistered = "deregistered"

    // ImageStateTransient is a ImageState enum value
    ImageStateTransient = "transient"

    // ImageStateFailed is a ImageState enum value
    ImageStateFailed = "failed"

    // ImageStateError is a ImageState enum value
    ImageStateError = "error"
)
const (
    // ImageTypeValuesMachine is a ImageTypeValues enum value
    ImageTypeValuesMachine = "machine"

    // ImageTypeValuesKernel is a ImageTypeValues enum value
    ImageTypeValuesKernel = "kernel"

    // ImageTypeValuesRamdisk is a ImageTypeValues enum value
    ImageTypeValuesRamdisk = "ramdisk"
)
const (
    // InstanceAttributeNameInstanceType is a InstanceAttributeName enum value
    InstanceAttributeNameInstanceType = "instanceType"

    // InstanceAttributeNameKernel is a InstanceAttributeName enum value
    InstanceAttributeNameKernel = "kernel"

    // InstanceAttributeNameRamdisk is a InstanceAttributeName enum value
    InstanceAttributeNameRamdisk = "ramdisk"

    // InstanceAttributeNameUserData is a InstanceAttributeName enum value
    InstanceAttributeNameUserData = "userData"

    // InstanceAttributeNameDisableApiTermination is a InstanceAttributeName enum value
    InstanceAttributeNameDisableApiTermination = "disableApiTermination"

    // InstanceAttributeNameInstanceInitiatedShutdownBehavior is a InstanceAttributeName enum value
    InstanceAttributeNameInstanceInitiatedShutdownBehavior = "instanceInitiatedShutdownBehavior"

    // InstanceAttributeNameRootDeviceName is a InstanceAttributeName enum value
    InstanceAttributeNameRootDeviceName = "rootDeviceName"

    // InstanceAttributeNameBlockDeviceMapping is a InstanceAttributeName enum value
    InstanceAttributeNameBlockDeviceMapping = "blockDeviceMapping"

    // InstanceAttributeNameProductCodes is a InstanceAttributeName enum value
    InstanceAttributeNameProductCodes = "productCodes"

    // InstanceAttributeNameSourceDestCheck is a InstanceAttributeName enum value
    InstanceAttributeNameSourceDestCheck = "sourceDestCheck"

    // InstanceAttributeNameGroupSet is a InstanceAttributeName enum value
    InstanceAttributeNameGroupSet = "groupSet"

    // InstanceAttributeNameEbsOptimized is a InstanceAttributeName enum value
    InstanceAttributeNameEbsOptimized = "ebsOptimized"

    // InstanceAttributeNameSriovNetSupport is a InstanceAttributeName enum value
    InstanceAttributeNameSriovNetSupport = "sriovNetSupport"

    // InstanceAttributeNameEnaSupport is a InstanceAttributeName enum value
    InstanceAttributeNameEnaSupport = "enaSupport"
)
const (
    // InstanceHealthStatusHealthy is a InstanceHealthStatus enum value
    InstanceHealthStatusHealthy = "healthy"

    // InstanceHealthStatusUnhealthy is a InstanceHealthStatus enum value
    InstanceHealthStatusUnhealthy = "unhealthy"
)
const (
    // InstanceLifecycleTypeSpot is a InstanceLifecycleType enum value
    InstanceLifecycleTypeSpot = "spot"

    // InstanceLifecycleTypeScheduled is a InstanceLifecycleType enum value
    InstanceLifecycleTypeScheduled = "scheduled"
)
const (
    // InstanceStateNamePending is a InstanceStateName enum value
    InstanceStateNamePending = "pending"

    // InstanceStateNameRunning is a InstanceStateName enum value
    InstanceStateNameRunning = "running"

    // InstanceStateNameShuttingDown is a InstanceStateName enum value
    InstanceStateNameShuttingDown = "shutting-down"

    // InstanceStateNameTerminated is a InstanceStateName enum value
    InstanceStateNameTerminated = "terminated"

    // InstanceStateNameStopping is a InstanceStateName enum value
    InstanceStateNameStopping = "stopping"

    // InstanceStateNameStopped is a InstanceStateName enum value
    InstanceStateNameStopped = "stopped"
)
const (
    // InstanceTypeT1Micro is a InstanceType enum value
    InstanceTypeT1Micro = "t1.micro"

    // InstanceTypeT2Nano is a InstanceType enum value
    InstanceTypeT2Nano = "t2.nano"

    // InstanceTypeT2Micro is a InstanceType enum value
    InstanceTypeT2Micro = "t2.micro"

    // InstanceTypeT2Small is a InstanceType enum value
    InstanceTypeT2Small = "t2.small"

    // InstanceTypeT2Medium is a InstanceType enum value
    InstanceTypeT2Medium = "t2.medium"

    // InstanceTypeT2Large is a InstanceType enum value
    InstanceTypeT2Large = "t2.large"

    // InstanceTypeT2Xlarge is a InstanceType enum value
    InstanceTypeT2Xlarge = "t2.xlarge"

    // InstanceTypeT22xlarge is a InstanceType enum value
    InstanceTypeT22xlarge = "t2.2xlarge"

    // InstanceTypeM1Small is a InstanceType enum value
    InstanceTypeM1Small = "m1.small"

    // InstanceTypeM1Medium is a InstanceType enum value
    InstanceTypeM1Medium = "m1.medium"

    // InstanceTypeM1Large is a InstanceType enum value
    InstanceTypeM1Large = "m1.large"

    // InstanceTypeM1Xlarge is a InstanceType enum value
    InstanceTypeM1Xlarge = "m1.xlarge"

    // InstanceTypeM3Medium is a InstanceType enum value
    InstanceTypeM3Medium = "m3.medium"

    // InstanceTypeM3Large is a InstanceType enum value
    InstanceTypeM3Large = "m3.large"

    // InstanceTypeM3Xlarge is a InstanceType enum value
    InstanceTypeM3Xlarge = "m3.xlarge"

    // InstanceTypeM32xlarge is a InstanceType enum value
    InstanceTypeM32xlarge = "m3.2xlarge"

    // InstanceTypeM4Large is a InstanceType enum value
    InstanceTypeM4Large = "m4.large"

    // InstanceTypeM4Xlarge is a InstanceType enum value
    InstanceTypeM4Xlarge = "m4.xlarge"

    // InstanceTypeM42xlarge is a InstanceType enum value
    InstanceTypeM42xlarge = "m4.2xlarge"

    // InstanceTypeM44xlarge is a InstanceType enum value
    InstanceTypeM44xlarge = "m4.4xlarge"

    // InstanceTypeM410xlarge is a InstanceType enum value
    InstanceTypeM410xlarge = "m4.10xlarge"

    // InstanceTypeM416xlarge is a InstanceType enum value
    InstanceTypeM416xlarge = "m4.16xlarge"

    // InstanceTypeM2Xlarge is a InstanceType enum value
    InstanceTypeM2Xlarge = "m2.xlarge"

    // InstanceTypeM22xlarge is a InstanceType enum value
    InstanceTypeM22xlarge = "m2.2xlarge"

    // InstanceTypeM24xlarge is a InstanceType enum value
    InstanceTypeM24xlarge = "m2.4xlarge"

    // InstanceTypeCr18xlarge is a InstanceType enum value
    InstanceTypeCr18xlarge = "cr1.8xlarge"

    // InstanceTypeR3Large is a InstanceType enum value
    InstanceTypeR3Large = "r3.large"

    // InstanceTypeR3Xlarge is a InstanceType enum value
    InstanceTypeR3Xlarge = "r3.xlarge"

    // InstanceTypeR32xlarge is a InstanceType enum value
    InstanceTypeR32xlarge = "r3.2xlarge"

    // InstanceTypeR34xlarge is a InstanceType enum value
    InstanceTypeR34xlarge = "r3.4xlarge"

    // InstanceTypeR38xlarge is a InstanceType enum value
    InstanceTypeR38xlarge = "r3.8xlarge"

    // InstanceTypeR4Large is a InstanceType enum value
    InstanceTypeR4Large = "r4.large"

    // InstanceTypeR4Xlarge is a InstanceType enum value
    InstanceTypeR4Xlarge = "r4.xlarge"

    // InstanceTypeR42xlarge is a InstanceType enum value
    InstanceTypeR42xlarge = "r4.2xlarge"

    // InstanceTypeR44xlarge is a InstanceType enum value
    InstanceTypeR44xlarge = "r4.4xlarge"

    // InstanceTypeR48xlarge is a InstanceType enum value
    InstanceTypeR48xlarge = "r4.8xlarge"

    // InstanceTypeR416xlarge is a InstanceType enum value
    InstanceTypeR416xlarge = "r4.16xlarge"

    // InstanceTypeX116xlarge is a InstanceType enum value
    InstanceTypeX116xlarge = "x1.16xlarge"

    // InstanceTypeX132xlarge is a InstanceType enum value
    InstanceTypeX132xlarge = "x1.32xlarge"

    // InstanceTypeI2Xlarge is a InstanceType enum value
    InstanceTypeI2Xlarge = "i2.xlarge"

    // InstanceTypeI22xlarge is a InstanceType enum value
    InstanceTypeI22xlarge = "i2.2xlarge"

    // InstanceTypeI24xlarge is a InstanceType enum value
    InstanceTypeI24xlarge = "i2.4xlarge"

    // InstanceTypeI28xlarge is a InstanceType enum value
    InstanceTypeI28xlarge = "i2.8xlarge"

    // InstanceTypeI3Large is a InstanceType enum value
    InstanceTypeI3Large = "i3.large"

    // InstanceTypeI3Xlarge is a InstanceType enum value
    InstanceTypeI3Xlarge = "i3.xlarge"

    // InstanceTypeI32xlarge is a InstanceType enum value
    InstanceTypeI32xlarge = "i3.2xlarge"

    // InstanceTypeI34xlarge is a InstanceType enum value
    InstanceTypeI34xlarge = "i3.4xlarge"

    // InstanceTypeI38xlarge is a InstanceType enum value
    InstanceTypeI38xlarge = "i3.8xlarge"

    // InstanceTypeI316xlarge is a InstanceType enum value
    InstanceTypeI316xlarge = "i3.16xlarge"

    // InstanceTypeHi14xlarge is a InstanceType enum value
    InstanceTypeHi14xlarge = "hi1.4xlarge"

    // InstanceTypeHs18xlarge is a InstanceType enum value
    InstanceTypeHs18xlarge = "hs1.8xlarge"

    // InstanceTypeC1Medium is a InstanceType enum value
    InstanceTypeC1Medium = "c1.medium"

    // InstanceTypeC1Xlarge is a InstanceType enum value
    InstanceTypeC1Xlarge = "c1.xlarge"

    // InstanceTypeC3Large is a InstanceType enum value
    InstanceTypeC3Large = "c3.large"

    // InstanceTypeC3Xlarge is a InstanceType enum value
    InstanceTypeC3Xlarge = "c3.xlarge"

    // InstanceTypeC32xlarge is a InstanceType enum value
    InstanceTypeC32xlarge = "c3.2xlarge"

    // InstanceTypeC34xlarge is a InstanceType enum value
    InstanceTypeC34xlarge = "c3.4xlarge"

    // InstanceTypeC38xlarge is a InstanceType enum value
    InstanceTypeC38xlarge = "c3.8xlarge"

    // InstanceTypeC4Large is a InstanceType enum value
    InstanceTypeC4Large = "c4.large"

    // InstanceTypeC4Xlarge is a InstanceType enum value
    InstanceTypeC4Xlarge = "c4.xlarge"

    // InstanceTypeC42xlarge is a InstanceType enum value
    InstanceTypeC42xlarge = "c4.2xlarge"

    // InstanceTypeC44xlarge is a InstanceType enum value
    InstanceTypeC44xlarge = "c4.4xlarge"

    // InstanceTypeC48xlarge is a InstanceType enum value
    InstanceTypeC48xlarge = "c4.8xlarge"

    // InstanceTypeCc14xlarge is a InstanceType enum value
    InstanceTypeCc14xlarge = "cc1.4xlarge"

    // InstanceTypeCc28xlarge is a InstanceType enum value
    InstanceTypeCc28xlarge = "cc2.8xlarge"

    // InstanceTypeG22xlarge is a InstanceType enum value
    InstanceTypeG22xlarge = "g2.2xlarge"

    // InstanceTypeG28xlarge is a InstanceType enum value
    InstanceTypeG28xlarge = "g2.8xlarge"

    // InstanceTypeCg14xlarge is a InstanceType enum value
    InstanceTypeCg14xlarge = "cg1.4xlarge"

    // InstanceTypeP2Xlarge is a InstanceType enum value
    InstanceTypeP2Xlarge = "p2.xlarge"

    // InstanceTypeP28xlarge is a InstanceType enum value
    InstanceTypeP28xlarge = "p2.8xlarge"

    // InstanceTypeP216xlarge is a InstanceType enum value
    InstanceTypeP216xlarge = "p2.16xlarge"

    // InstanceTypeD2Xlarge is a InstanceType enum value
    InstanceTypeD2Xlarge = "d2.xlarge"

    // InstanceTypeD22xlarge is a InstanceType enum value
    InstanceTypeD22xlarge = "d2.2xlarge"

    // InstanceTypeD24xlarge is a InstanceType enum value
    InstanceTypeD24xlarge = "d2.4xlarge"

    // InstanceTypeD28xlarge is a InstanceType enum value
    InstanceTypeD28xlarge = "d2.8xlarge"

    // InstanceTypeF12xlarge is a InstanceType enum value
    InstanceTypeF12xlarge = "f1.2xlarge"

    // InstanceTypeF116xlarge is a InstanceType enum value
    InstanceTypeF116xlarge = "f1.16xlarge"
)
const (
    // ListingStateAvailable is a ListingState enum value
    ListingStateAvailable = "available"

    // ListingStateSold is a ListingState enum value
    ListingStateSold = "sold"

    // ListingStateCancelled is a ListingState enum value
    ListingStateCancelled = "cancelled"

    // ListingStatePending is a ListingState enum value
    ListingStatePending = "pending"
)
const (
    // ListingStatusActive is a ListingStatus enum value
    ListingStatusActive = "active"

    // ListingStatusPending is a ListingStatus enum value
    ListingStatusPending = "pending"

    // ListingStatusCancelled is a ListingStatus enum value
    ListingStatusCancelled = "cancelled"

    // ListingStatusClosed is a ListingStatus enum value
    ListingStatusClosed = "closed"
)
const (
    // MonitoringStateDisabled is a MonitoringState enum value
    MonitoringStateDisabled = "disabled"

    // MonitoringStateDisabling is a MonitoringState enum value
    MonitoringStateDisabling = "disabling"

    // MonitoringStateEnabled is a MonitoringState enum value
    MonitoringStateEnabled = "enabled"

    // MonitoringStatePending is a MonitoringState enum value
    MonitoringStatePending = "pending"
)
const (
    // MoveStatusMovingToVpc is a MoveStatus enum value
    MoveStatusMovingToVpc = "movingToVpc"

    // MoveStatusRestoringToClassic is a MoveStatus enum value
    MoveStatusRestoringToClassic = "restoringToClassic"
)
const (
    // NatGatewayStatePending is a NatGatewayState enum value
    NatGatewayStatePending = "pending"

    // NatGatewayStateFailed is a NatGatewayState enum value
    NatGatewayStateFailed = "failed"

    // NatGatewayStateAvailable is a NatGatewayState enum value
    NatGatewayStateAvailable = "available"

    // NatGatewayStateDeleting is a NatGatewayState enum value
    NatGatewayStateDeleting = "deleting"

    // NatGatewayStateDeleted is a NatGatewayState enum value
    NatGatewayStateDeleted = "deleted"
)
const (
    // NetworkInterfaceAttributeDescription is a NetworkInterfaceAttribute enum value
    NetworkInterfaceAttributeDescription = "description"

    // NetworkInterfaceAttributeGroupSet is a NetworkInterfaceAttribute enum value
    NetworkInterfaceAttributeGroupSet = "groupSet"

    // NetworkInterfaceAttributeSourceDestCheck is a NetworkInterfaceAttribute enum value
    NetworkInterfaceAttributeSourceDestCheck = "sourceDestCheck"

    // NetworkInterfaceAttributeAttachment is a NetworkInterfaceAttribute enum value
    NetworkInterfaceAttributeAttachment = "attachment"
)
const (
    // NetworkInterfaceStatusAvailable is a NetworkInterfaceStatus enum value
    NetworkInterfaceStatusAvailable = "available"

    // NetworkInterfaceStatusAttaching is a NetworkInterfaceStatus enum value
    NetworkInterfaceStatusAttaching = "attaching"

    // NetworkInterfaceStatusInUse is a NetworkInterfaceStatus enum value
    NetworkInterfaceStatusInUse = "in-use"

    // NetworkInterfaceStatusDetaching is a NetworkInterfaceStatus enum value
    NetworkInterfaceStatusDetaching = "detaching"
)
const (
    // NetworkInterfaceTypeInterface is a NetworkInterfaceType enum value
    NetworkInterfaceTypeInterface = "interface"

    // NetworkInterfaceTypeNatGateway is a NetworkInterfaceType enum value
    NetworkInterfaceTypeNatGateway = "natGateway"
)
const (
    // OfferingClassTypeStandard is a OfferingClassType enum value
    OfferingClassTypeStandard = "standard"

    // OfferingClassTypeConvertible is a OfferingClassType enum value
    OfferingClassTypeConvertible = "convertible"
)
const (
    // OfferingTypeValuesHeavyUtilization is a OfferingTypeValues enum value
    OfferingTypeValuesHeavyUtilization = "Heavy Utilization"

    // OfferingTypeValuesMediumUtilization is a OfferingTypeValues enum value
    OfferingTypeValuesMediumUtilization = "Medium Utilization"

    // OfferingTypeValuesLightUtilization is a OfferingTypeValues enum value
    OfferingTypeValuesLightUtilization = "Light Utilization"

    // OfferingTypeValuesNoUpfront is a OfferingTypeValues enum value
    OfferingTypeValuesNoUpfront = "No Upfront"

    // OfferingTypeValuesPartialUpfront is a OfferingTypeValues enum value
    OfferingTypeValuesPartialUpfront = "Partial Upfront"

    // OfferingTypeValuesAllUpfront is a OfferingTypeValues enum value
    OfferingTypeValuesAllUpfront = "All Upfront"
)
const (
    // OperationTypeAdd is a OperationType enum value
    OperationTypeAdd = "add"

    // OperationTypeRemove is a OperationType enum value
    OperationTypeRemove = "remove"
)
const (
    // PaymentOptionAllUpfront is a PaymentOption enum value
    PaymentOptionAllUpfront = "AllUpfront"

    // PaymentOptionPartialUpfront is a PaymentOption enum value
    PaymentOptionPartialUpfront = "PartialUpfront"

    // PaymentOptionNoUpfront is a PaymentOption enum value
    PaymentOptionNoUpfront = "NoUpfront"
)
const (
    // PlacementGroupStatePending is a PlacementGroupState enum value
    PlacementGroupStatePending = "pending"

    // PlacementGroupStateAvailable is a PlacementGroupState enum value
    PlacementGroupStateAvailable = "available"

    // PlacementGroupStateDeleting is a PlacementGroupState enum value
    PlacementGroupStateDeleting = "deleting"

    // PlacementGroupStateDeleted is a PlacementGroupState enum value
    PlacementGroupStateDeleted = "deleted"
)
const (
    // ProductCodeValuesDevpay is a ProductCodeValues enum value
    ProductCodeValuesDevpay = "devpay"

    // ProductCodeValuesMarketplace is a ProductCodeValues enum value
    ProductCodeValuesMarketplace = "marketplace"
)
const (
    // RIProductDescriptionLinuxUnix is a RIProductDescription enum value
    RIProductDescriptionLinuxUnix = "Linux/UNIX"

    // RIProductDescriptionLinuxUnixamazonVpc is a RIProductDescription enum value
    RIProductDescriptionLinuxUnixamazonVpc = "Linux/UNIX (Amazon VPC)"

    // RIProductDescriptionWindows is a RIProductDescription enum value
    RIProductDescriptionWindows = "Windows"

    // RIProductDescriptionWindowsAmazonVpc is a RIProductDescription enum value
    RIProductDescriptionWindowsAmazonVpc = "Windows (Amazon VPC)"
)
const (
    // ReportInstanceReasonCodesInstanceStuckInState is a ReportInstanceReasonCodes enum value
    ReportInstanceReasonCodesInstanceStuckInState = "instance-stuck-in-state"

    // ReportInstanceReasonCodesUnresponsive is a ReportInstanceReasonCodes enum value
    ReportInstanceReasonCodesUnresponsive = "unresponsive"

    // ReportInstanceReasonCodesNotAcceptingCredentials is a ReportInstanceReasonCodes enum value
    ReportInstanceReasonCodesNotAcceptingCredentials = "not-accepting-credentials"

    // ReportInstanceReasonCodesPasswordNotAvailable is a ReportInstanceReasonCodes enum value
    ReportInstanceReasonCodesPasswordNotAvailable = "password-not-available"

    // ReportInstanceReasonCodesPerformanceNetwork is a ReportInstanceReasonCodes enum value
    ReportInstanceReasonCodesPerformanceNetwork = "performance-network"

    // ReportInstanceReasonCodesPerformanceInstanceStore is a ReportInstanceReasonCodes enum value
    ReportInstanceReasonCodesPerformanceInstanceStore = "performance-instance-store"

    // ReportInstanceReasonCodesPerformanceEbsVolume is a ReportInstanceReasonCodes enum value
    ReportInstanceReasonCodesPerformanceEbsVolume = "performance-ebs-volume"

    // ReportInstanceReasonCodesPerformanceOther is a ReportInstanceReasonCodes enum value
    ReportInstanceReasonCodesPerformanceOther = "performance-other"

    // ReportInstanceReasonCodesOther is a ReportInstanceReasonCodes enum value
    ReportInstanceReasonCodesOther = "other"
)
const (
    // ReportStatusTypeOk is a ReportStatusType enum value
    ReportStatusTypeOk = "ok"

    // ReportStatusTypeImpaired is a ReportStatusType enum value
    ReportStatusTypeImpaired = "impaired"
)
const (
    // ReservationStatePaymentPending is a ReservationState enum value
    ReservationStatePaymentPending = "payment-pending"

    // ReservationStatePaymentFailed is a ReservationState enum value
    ReservationStatePaymentFailed = "payment-failed"

    // ReservationStateActive is a ReservationState enum value
    ReservationStateActive = "active"

    // ReservationStateRetired is a ReservationState enum value
    ReservationStateRetired = "retired"
)
const (
    // ReservedInstanceStatePaymentPending is a ReservedInstanceState enum value
    ReservedInstanceStatePaymentPending = "payment-pending"

    // ReservedInstanceStateActive is a ReservedInstanceState enum value
    ReservedInstanceStateActive = "active"

    // ReservedInstanceStatePaymentFailed is a ReservedInstanceState enum value
    ReservedInstanceStatePaymentFailed = "payment-failed"

    // ReservedInstanceStateRetired is a ReservedInstanceState enum value
    ReservedInstanceStateRetired = "retired"
)
const (
    // ResourceTypeCustomerGateway is a ResourceType enum value
    ResourceTypeCustomerGateway = "customer-gateway"

    // ResourceTypeDhcpOptions is a ResourceType enum value
    ResourceTypeDhcpOptions = "dhcp-options"

    // ResourceTypeImage is a ResourceType enum value
    ResourceTypeImage = "image"

    // ResourceTypeInstance is a ResourceType enum value
    ResourceTypeInstance = "instance"

    // ResourceTypeInternetGateway is a ResourceType enum value
    ResourceTypeInternetGateway = "internet-gateway"

    // ResourceTypeNetworkAcl is a ResourceType enum value
    ResourceTypeNetworkAcl = "network-acl"

    // ResourceTypeNetworkInterface is a ResourceType enum value
    ResourceTypeNetworkInterface = "network-interface"

    // ResourceTypeReservedInstances is a ResourceType enum value
    ResourceTypeReservedInstances = "reserved-instances"

    // ResourceTypeRouteTable is a ResourceType enum value
    ResourceTypeRouteTable = "route-table"

    // ResourceTypeSnapshot is a ResourceType enum value
    ResourceTypeSnapshot = "snapshot"

    // ResourceTypeSpotInstancesRequest is a ResourceType enum value
    ResourceTypeSpotInstancesRequest = "spot-instances-request"

    // ResourceTypeSubnet is a ResourceType enum value
    ResourceTypeSubnet = "subnet"

    // ResourceTypeSecurityGroup is a ResourceType enum value
    ResourceTypeSecurityGroup = "security-group"

    // ResourceTypeVolume is a ResourceType enum value
    ResourceTypeVolume = "volume"

    // ResourceTypeVpc is a ResourceType enum value
    ResourceTypeVpc = "vpc"

    // ResourceTypeVpnConnection is a ResourceType enum value
    ResourceTypeVpnConnection = "vpn-connection"

    // ResourceTypeVpnGateway is a ResourceType enum value
    ResourceTypeVpnGateway = "vpn-gateway"
)
const (
    // RouteOriginCreateRouteTable is a RouteOrigin enum value
    RouteOriginCreateRouteTable = "CreateRouteTable"

    // RouteOriginCreateRoute is a RouteOrigin enum value
    RouteOriginCreateRoute = "CreateRoute"

    // RouteOriginEnableVgwRoutePropagation is a RouteOrigin enum value
    RouteOriginEnableVgwRoutePropagation = "EnableVgwRoutePropagation"
)
const (
    // RouteStateActive is a RouteState enum value
    RouteStateActive = "active"

    // RouteStateBlackhole is a RouteState enum value
    RouteStateBlackhole = "blackhole"
)
const (
    // RuleActionAllow is a RuleAction enum value
    RuleActionAllow = "allow"

    // RuleActionDeny is a RuleAction enum value
    RuleActionDeny = "deny"
)
const (
    // ShutdownBehaviorStop is a ShutdownBehavior enum value
    ShutdownBehaviorStop = "stop"

    // ShutdownBehaviorTerminate is a ShutdownBehavior enum value
    ShutdownBehaviorTerminate = "terminate"
)
const (
    // SnapshotAttributeNameProductCodes is a SnapshotAttributeName enum value
    SnapshotAttributeNameProductCodes = "productCodes"

    // SnapshotAttributeNameCreateVolumePermission is a SnapshotAttributeName enum value
    SnapshotAttributeNameCreateVolumePermission = "createVolumePermission"
)
const (
    // SnapshotStatePending is a SnapshotState enum value
    SnapshotStatePending = "pending"

    // SnapshotStateCompleted is a SnapshotState enum value
    SnapshotStateCompleted = "completed"

    // SnapshotStateError is a SnapshotState enum value
    SnapshotStateError = "error"
)
const (
    // SpotInstanceStateOpen is a SpotInstanceState enum value
    SpotInstanceStateOpen = "open"

    // SpotInstanceStateActive is a SpotInstanceState enum value
    SpotInstanceStateActive = "active"

    // SpotInstanceStateClosed is a SpotInstanceState enum value
    SpotInstanceStateClosed = "closed"

    // SpotInstanceStateCancelled is a SpotInstanceState enum value
    SpotInstanceStateCancelled = "cancelled"

    // SpotInstanceStateFailed is a SpotInstanceState enum value
    SpotInstanceStateFailed = "failed"
)
const (
    // SpotInstanceTypeOneTime is a SpotInstanceType enum value
    SpotInstanceTypeOneTime = "one-time"

    // SpotInstanceTypePersistent is a SpotInstanceType enum value
    SpotInstanceTypePersistent = "persistent"
)
const (
    // StatePending is a State enum value
    StatePending = "Pending"

    // StateAvailable is a State enum value
    StateAvailable = "Available"

    // StateDeleting is a State enum value
    StateDeleting = "Deleting"

    // StateDeleted is a State enum value
    StateDeleted = "Deleted"
)
const (
    // StatusMoveInProgress is a Status enum value
    StatusMoveInProgress = "MoveInProgress"

    // StatusInVpc is a Status enum value
    StatusInVpc = "InVpc"

    // StatusInClassic is a Status enum value
    StatusInClassic = "InClassic"
)
const (
    // StatusTypePassed is a StatusType enum value
    StatusTypePassed = "passed"

    // StatusTypeFailed is a StatusType enum value
    StatusTypeFailed = "failed"

    // StatusTypeInsufficientData is a StatusType enum value
    StatusTypeInsufficientData = "insufficient-data"

    // StatusTypeInitializing is a StatusType enum value
    StatusTypeInitializing = "initializing"
)
const (
    // SubnetCidrBlockStateCodeAssociating is a SubnetCidrBlockStateCode enum value
    SubnetCidrBlockStateCodeAssociating = "associating"

    // SubnetCidrBlockStateCodeAssociated is a SubnetCidrBlockStateCode enum value
    SubnetCidrBlockStateCodeAssociated = "associated"

    // SubnetCidrBlockStateCodeDisassociating is a SubnetCidrBlockStateCode enum value
    SubnetCidrBlockStateCodeDisassociating = "disassociating"

    // SubnetCidrBlockStateCodeDisassociated is a SubnetCidrBlockStateCode enum value
    SubnetCidrBlockStateCodeDisassociated = "disassociated"

    // SubnetCidrBlockStateCodeFailing is a SubnetCidrBlockStateCode enum value
    SubnetCidrBlockStateCodeFailing = "failing"

    // SubnetCidrBlockStateCodeFailed is a SubnetCidrBlockStateCode enum value
    SubnetCidrBlockStateCodeFailed = "failed"
)
const (
    // SubnetStatePending is a SubnetState enum value
    SubnetStatePending = "pending"

    // SubnetStateAvailable is a SubnetState enum value
    SubnetStateAvailable = "available"
)
const (
    // SummaryStatusOk is a SummaryStatus enum value
    SummaryStatusOk = "ok"

    // SummaryStatusImpaired is a SummaryStatus enum value
    SummaryStatusImpaired = "impaired"

    // SummaryStatusInsufficientData is a SummaryStatus enum value
    SummaryStatusInsufficientData = "insufficient-data"

    // SummaryStatusNotApplicable is a SummaryStatus enum value
    SummaryStatusNotApplicable = "not-applicable"

    // SummaryStatusInitializing is a SummaryStatus enum value
    SummaryStatusInitializing = "initializing"
)
const (
    // TelemetryStatusUp is a TelemetryStatus enum value
    TelemetryStatusUp = "UP"

    // TelemetryStatusDown is a TelemetryStatus enum value
    TelemetryStatusDown = "DOWN"
)
const (
    // TenancyDefault is a Tenancy enum value
    TenancyDefault = "default"

    // TenancyDedicated is a Tenancy enum value
    TenancyDedicated = "dedicated"

    // TenancyHost is a Tenancy enum value
    TenancyHost = "host"
)
const (
    // TrafficTypeAccept is a TrafficType enum value
    TrafficTypeAccept = "ACCEPT"

    // TrafficTypeReject is a TrafficType enum value
    TrafficTypeReject = "REJECT"

    // TrafficTypeAll is a TrafficType enum value
    TrafficTypeAll = "ALL"
)
const (
    // VirtualizationTypeHvm is a VirtualizationType enum value
    VirtualizationTypeHvm = "hvm"

    // VirtualizationTypeParavirtual is a VirtualizationType enum value
    VirtualizationTypeParavirtual = "paravirtual"
)
const (
    // VolumeAttachmentStateAttaching is a VolumeAttachmentState enum value
    VolumeAttachmentStateAttaching = "attaching"

    // VolumeAttachmentStateAttached is a VolumeAttachmentState enum value
    VolumeAttachmentStateAttached = "attached"

    // VolumeAttachmentStateDetaching is a VolumeAttachmentState enum value
    VolumeAttachmentStateDetaching = "detaching"

    // VolumeAttachmentStateDetached is a VolumeAttachmentState enum value
    VolumeAttachmentStateDetached = "detached"
)
const (
    // VolumeAttributeNameAutoEnableIo is a VolumeAttributeName enum value
    VolumeAttributeNameAutoEnableIo = "autoEnableIO"

    // VolumeAttributeNameProductCodes is a VolumeAttributeName enum value
    VolumeAttributeNameProductCodes = "productCodes"
)
const (
    // VolumeModificationStateModifying is a VolumeModificationState enum value
    VolumeModificationStateModifying = "modifying"

    // VolumeModificationStateOptimizing is a VolumeModificationState enum value
    VolumeModificationStateOptimizing = "optimizing"

    // VolumeModificationStateCompleted is a VolumeModificationState enum value
    VolumeModificationStateCompleted = "completed"

    // VolumeModificationStateFailed is a VolumeModificationState enum value
    VolumeModificationStateFailed = "failed"
)
const (
    // VolumeStateCreating is a VolumeState enum value
    VolumeStateCreating = "creating"

    // VolumeStateAvailable is a VolumeState enum value
    VolumeStateAvailable = "available"

    // VolumeStateInUse is a VolumeState enum value
    VolumeStateInUse = "in-use"

    // VolumeStateDeleting is a VolumeState enum value
    VolumeStateDeleting = "deleting"

    // VolumeStateDeleted is a VolumeState enum value
    VolumeStateDeleted = "deleted"

    // VolumeStateError is a VolumeState enum value
    VolumeStateError = "error"
)
const (
    // VolumeStatusInfoStatusOk is a VolumeStatusInfoStatus enum value
    VolumeStatusInfoStatusOk = "ok"

    // VolumeStatusInfoStatusImpaired is a VolumeStatusInfoStatus enum value
    VolumeStatusInfoStatusImpaired = "impaired"

    // VolumeStatusInfoStatusInsufficientData is a VolumeStatusInfoStatus enum value
    VolumeStatusInfoStatusInsufficientData = "insufficient-data"
)
const (
    // VolumeStatusNameIoEnabled is a VolumeStatusName enum value
    VolumeStatusNameIoEnabled = "io-enabled"

    // VolumeStatusNameIoPerformance is a VolumeStatusName enum value
    VolumeStatusNameIoPerformance = "io-performance"
)
const (
    // VolumeTypeStandard is a VolumeType enum value
    VolumeTypeStandard = "standard"

    // VolumeTypeIo1 is a VolumeType enum value
    VolumeTypeIo1 = "io1"

    // VolumeTypeGp2 is a VolumeType enum value
    VolumeTypeGp2 = "gp2"

    // VolumeTypeSc1 is a VolumeType enum value
    VolumeTypeSc1 = "sc1"

    // VolumeTypeSt1 is a VolumeType enum value
    VolumeTypeSt1 = "st1"
)
const (
    // VpcAttributeNameEnableDnsSupport is a VpcAttributeName enum value
    VpcAttributeNameEnableDnsSupport = "enableDnsSupport"

    // VpcAttributeNameEnableDnsHostnames is a VpcAttributeName enum value
    VpcAttributeNameEnableDnsHostnames = "enableDnsHostnames"
)
const (
    // VpcCidrBlockStateCodeAssociating is a VpcCidrBlockStateCode enum value
    VpcCidrBlockStateCodeAssociating = "associating"

    // VpcCidrBlockStateCodeAssociated is a VpcCidrBlockStateCode enum value
    VpcCidrBlockStateCodeAssociated = "associated"

    // VpcCidrBlockStateCodeDisassociating is a VpcCidrBlockStateCode enum value
    VpcCidrBlockStateCodeDisassociating = "disassociating"

    // VpcCidrBlockStateCodeDisassociated is a VpcCidrBlockStateCode enum value
    VpcCidrBlockStateCodeDisassociated = "disassociated"

    // VpcCidrBlockStateCodeFailing is a VpcCidrBlockStateCode enum value
    VpcCidrBlockStateCodeFailing = "failing"

    // VpcCidrBlockStateCodeFailed is a VpcCidrBlockStateCode enum value
    VpcCidrBlockStateCodeFailed = "failed"
)
const (
    // VpcPeeringConnectionStateReasonCodeInitiatingRequest is a VpcPeeringConnectionStateReasonCode enum value
    VpcPeeringConnectionStateReasonCodeInitiatingRequest = "initiating-request"

    // VpcPeeringConnectionStateReasonCodePendingAcceptance is a VpcPeeringConnectionStateReasonCode enum value
    VpcPeeringConnectionStateReasonCodePendingAcceptance = "pending-acceptance"

    // VpcPeeringConnectionStateReasonCodeActive is a VpcPeeringConnectionStateReasonCode enum value
    VpcPeeringConnectionStateReasonCodeActive = "active"

    // VpcPeeringConnectionStateReasonCodeDeleted is a VpcPeeringConnectionStateReasonCode enum value
    VpcPeeringConnectionStateReasonCodeDeleted = "deleted"

    // VpcPeeringConnectionStateReasonCodeRejected is a VpcPeeringConnectionStateReasonCode enum value
    VpcPeeringConnectionStateReasonCodeRejected = "rejected"

    // VpcPeeringConnectionStateReasonCodeFailed is a VpcPeeringConnectionStateReasonCode enum value
    VpcPeeringConnectionStateReasonCodeFailed = "failed"

    // VpcPeeringConnectionStateReasonCodeExpired is a VpcPeeringConnectionStateReasonCode enum value
    VpcPeeringConnectionStateReasonCodeExpired = "expired"

    // VpcPeeringConnectionStateReasonCodeProvisioning is a VpcPeeringConnectionStateReasonCode enum value
    VpcPeeringConnectionStateReasonCodeProvisioning = "provisioning"

    // VpcPeeringConnectionStateReasonCodeDeleting is a VpcPeeringConnectionStateReasonCode enum value
    VpcPeeringConnectionStateReasonCodeDeleting = "deleting"
)
const (
    // VpcStatePending is a VpcState enum value
    VpcStatePending = "pending"

    // VpcStateAvailable is a VpcState enum value
    VpcStateAvailable = "available"
)
const (
    // VpnStatePending is a VpnState enum value
    VpnStatePending = "pending"

    // VpnStateAvailable is a VpnState enum value
    VpnStateAvailable = "available"

    // VpnStateDeleting is a VpnState enum value
    VpnStateDeleting = "deleting"

    // VpnStateDeleted is a VpnState enum value
    VpnStateDeleted = "deleted"
)
const (
    // ScopeAvailabilityZone is a scope enum value
    ScopeAvailabilityZone = "Availability Zone"

    // ScopeRegion is a scope enum value
    ScopeRegion = "Region"
)

Service information constants

const (
    ServiceName = "ec2"       // Service endpoint prefix API calls made to.
    EndpointsID = ServiceName // Service ID for Regions and Endpoints metadata.
)
const (
    // ContainerFormatOva is a ContainerFormat enum value
    ContainerFormatOva = "ova"
)
const (
    // CurrencyCodeValuesUsd is a CurrencyCodeValues enum value
    CurrencyCodeValuesUsd = "USD"
)
const (
    // GatewayTypeIpsec1 is a GatewayType enum value
    GatewayTypeIpsec1 = "ipsec.1"
)
const (
    // PermissionGroupAll is a PermissionGroup enum value
    PermissionGroupAll = "all"
)
const (
    // PlacementStrategyCluster is a PlacementStrategy enum value
    PlacementStrategyCluster = "cluster"
)
const (
    // PlatformValuesWindows is a PlatformValues enum value
    PlatformValuesWindows = "Windows"
)
const (
    // RecurringChargeFrequencyHourly is a RecurringChargeFrequency enum value
    RecurringChargeFrequencyHourly = "Hourly"
)
const (
    // ResetImageAttributeNameLaunchPermission is a ResetImageAttributeName enum value
    ResetImageAttributeNameLaunchPermission = "launchPermission"
)
const (
    // StatusNameReachability is a StatusName enum value
    StatusNameReachability = "reachability"
)
const (
    // VpnStaticRouteSourceStatic is a VpnStaticRouteSource enum value
    VpnStaticRouteSourceStatic = "Static"
)

type AcceptReservedInstancesExchangeQuoteInput

Contains the parameters for accepting the quote. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AcceptReservedInstancesExchangeQuoteRequest

type AcceptReservedInstancesExchangeQuoteInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `type:"boolean"`

    // The IDs of the Convertible Reserved Instances to exchange for other Convertible
    // Reserved Instances of the same or higher value.
    //
    // ReservedInstanceIds is a required field
    ReservedInstanceIds []*string `locationName:"ReservedInstanceId" locationNameList:"ReservedInstanceId" type:"list" required:"true"`

    // The configurations of the Convertible Reserved Instance offerings that you
    // are purchasing in this exchange.
    TargetConfigurations []*TargetConfigurationRequest `locationName:"TargetConfiguration" locationNameList:"TargetConfigurationRequest" type:"list"`
    // contains filtered or unexported fields
}

func (AcceptReservedInstancesExchangeQuoteInput) GoString

func (s AcceptReservedInstancesExchangeQuoteInput) GoString() string

GoString returns the string representation

func (*AcceptReservedInstancesExchangeQuoteInput) SetDryRun

func (s *AcceptReservedInstancesExchangeQuoteInput) SetDryRun(v bool) *AcceptReservedInstancesExchangeQuoteInput

SetDryRun sets the DryRun field's value.

func (*AcceptReservedInstancesExchangeQuoteInput) SetReservedInstanceIds

func (s *AcceptReservedInstancesExchangeQuoteInput) SetReservedInstanceIds(v []*string) *AcceptReservedInstancesExchangeQuoteInput

SetReservedInstanceIds sets the ReservedInstanceIds field's value.

func (*AcceptReservedInstancesExchangeQuoteInput) SetTargetConfigurations

func (s *AcceptReservedInstancesExchangeQuoteInput) SetTargetConfigurations(v []*TargetConfigurationRequest) *AcceptReservedInstancesExchangeQuoteInput

SetTargetConfigurations sets the TargetConfigurations field's value.

func (AcceptReservedInstancesExchangeQuoteInput) String

func (s AcceptReservedInstancesExchangeQuoteInput) String() string

String returns the string representation

func (*AcceptReservedInstancesExchangeQuoteInput) Validate

func (s *AcceptReservedInstancesExchangeQuoteInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type AcceptReservedInstancesExchangeQuoteOutput

The result of the exchange and whether it was successful. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AcceptReservedInstancesExchangeQuoteResult

type AcceptReservedInstancesExchangeQuoteOutput struct {

    // The ID of the successful exchange.
    ExchangeId *string `locationName:"exchangeId" type:"string"`
    // contains filtered or unexported fields
}

func (AcceptReservedInstancesExchangeQuoteOutput) GoString

func (s AcceptReservedInstancesExchangeQuoteOutput) GoString() string

GoString returns the string representation

func (*AcceptReservedInstancesExchangeQuoteOutput) SetExchangeId

func (s *AcceptReservedInstancesExchangeQuoteOutput) SetExchangeId(v string) *AcceptReservedInstancesExchangeQuoteOutput

SetExchangeId sets the ExchangeId field's value.

func (AcceptReservedInstancesExchangeQuoteOutput) String

func (s AcceptReservedInstancesExchangeQuoteOutput) String() string

String returns the string representation

type AcceptVpcPeeringConnectionInput

Contains the parameters for AcceptVpcPeeringConnection. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AcceptVpcPeeringConnectionRequest

type AcceptVpcPeeringConnectionInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the VPC peering connection.
    VpcPeeringConnectionId *string `locationName:"vpcPeeringConnectionId" type:"string"`
    // contains filtered or unexported fields
}

func (AcceptVpcPeeringConnectionInput) GoString

func (s AcceptVpcPeeringConnectionInput) GoString() string

GoString returns the string representation

func (*AcceptVpcPeeringConnectionInput) SetDryRun

func (s *AcceptVpcPeeringConnectionInput) SetDryRun(v bool) *AcceptVpcPeeringConnectionInput

SetDryRun sets the DryRun field's value.

func (*AcceptVpcPeeringConnectionInput) SetVpcPeeringConnectionId

func (s *AcceptVpcPeeringConnectionInput) SetVpcPeeringConnectionId(v string) *AcceptVpcPeeringConnectionInput

SetVpcPeeringConnectionId sets the VpcPeeringConnectionId field's value.

func (AcceptVpcPeeringConnectionInput) String

func (s AcceptVpcPeeringConnectionInput) String() string

String returns the string representation

type AcceptVpcPeeringConnectionOutput

Contains the output of AcceptVpcPeeringConnection. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AcceptVpcPeeringConnectionResult

type AcceptVpcPeeringConnectionOutput struct {

    // Information about the VPC peering connection.
    VpcPeeringConnection *VpcPeeringConnection `locationName:"vpcPeeringConnection" type:"structure"`
    // contains filtered or unexported fields
}

func (AcceptVpcPeeringConnectionOutput) GoString

func (s AcceptVpcPeeringConnectionOutput) GoString() string

GoString returns the string representation

func (*AcceptVpcPeeringConnectionOutput) SetVpcPeeringConnection

func (s *AcceptVpcPeeringConnectionOutput) SetVpcPeeringConnection(v *VpcPeeringConnection) *AcceptVpcPeeringConnectionOutput

SetVpcPeeringConnection sets the VpcPeeringConnection field's value.

func (AcceptVpcPeeringConnectionOutput) String

func (s AcceptVpcPeeringConnectionOutput) String() string

String returns the string representation

type AccountAttribute

Describes an account attribute. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AccountAttribute

type AccountAttribute struct {

    // The name of the account attribute.
    AttributeName *string `locationName:"attributeName" type:"string"`

    // One or more values for the account attribute.
    AttributeValues []*AccountAttributeValue `locationName:"attributeValueSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (AccountAttribute) GoString

func (s AccountAttribute) GoString() string

GoString returns the string representation

func (*AccountAttribute) SetAttributeName

func (s *AccountAttribute) SetAttributeName(v string) *AccountAttribute

SetAttributeName sets the AttributeName field's value.

func (*AccountAttribute) SetAttributeValues

func (s *AccountAttribute) SetAttributeValues(v []*AccountAttributeValue) *AccountAttribute

SetAttributeValues sets the AttributeValues field's value.

func (AccountAttribute) String

func (s AccountAttribute) String() string

String returns the string representation

type AccountAttributeValue

Describes a value of an account attribute. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AccountAttributeValue

type AccountAttributeValue struct {

    // The value of the attribute.
    AttributeValue *string `locationName:"attributeValue" type:"string"`
    // contains filtered or unexported fields
}

func (AccountAttributeValue) GoString

func (s AccountAttributeValue) GoString() string

GoString returns the string representation

func (*AccountAttributeValue) SetAttributeValue

func (s *AccountAttributeValue) SetAttributeValue(v string) *AccountAttributeValue

SetAttributeValue sets the AttributeValue field's value.

func (AccountAttributeValue) String

func (s AccountAttributeValue) String() string

String returns the string representation

type ActiveInstance

Describes a running instance in a Spot fleet. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ActiveInstance

type ActiveInstance struct {

    // The health status of the instance. If the status of either the instance status
    // check or the system status check is impaired, the health status of the instance
    // is unhealthy. Otherwise, the health status is healthy.
    InstanceHealth *string `locationName:"instanceHealth" type:"string" enum:"InstanceHealthStatus"`

    // The ID of the instance.
    InstanceId *string `locationName:"instanceId" type:"string"`

    // The instance type.
    InstanceType *string `locationName:"instanceType" type:"string"`

    // The ID of the Spot instance request.
    SpotInstanceRequestId *string `locationName:"spotInstanceRequestId" type:"string"`
    // contains filtered or unexported fields
}

func (ActiveInstance) GoString

func (s ActiveInstance) GoString() string

GoString returns the string representation

func (*ActiveInstance) SetInstanceHealth

func (s *ActiveInstance) SetInstanceHealth(v string) *ActiveInstance

SetInstanceHealth sets the InstanceHealth field's value.

func (*ActiveInstance) SetInstanceId

func (s *ActiveInstance) SetInstanceId(v string) *ActiveInstance

SetInstanceId sets the InstanceId field's value.

func (*ActiveInstance) SetInstanceType

func (s *ActiveInstance) SetInstanceType(v string) *ActiveInstance

SetInstanceType sets the InstanceType field's value.

func (*ActiveInstance) SetSpotInstanceRequestId

func (s *ActiveInstance) SetSpotInstanceRequestId(v string) *ActiveInstance

SetSpotInstanceRequestId sets the SpotInstanceRequestId field's value.

func (ActiveInstance) String

func (s ActiveInstance) String() string

String returns the string representation

type Address

Describes an Elastic IP address. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Address

type Address struct {

    // The ID representing the allocation of the address for use with EC2-VPC.
    AllocationId *string `locationName:"allocationId" type:"string"`

    // The ID representing the association of the address with an instance in a
    // VPC.
    AssociationId *string `locationName:"associationId" type:"string"`

    // Indicates whether this Elastic IP address is for use with instances in EC2-Classic
    // (standard) or instances in a VPC (vpc).
    Domain *string `locationName:"domain" type:"string" enum:"DomainType"`

    // The ID of the instance that the address is associated with (if any).
    InstanceId *string `locationName:"instanceId" type:"string"`

    // The ID of the network interface.
    NetworkInterfaceId *string `locationName:"networkInterfaceId" type:"string"`

    // The ID of the AWS account that owns the network interface.
    NetworkInterfaceOwnerId *string `locationName:"networkInterfaceOwnerId" type:"string"`

    // The private IP address associated with the Elastic IP address.
    PrivateIpAddress *string `locationName:"privateIpAddress" type:"string"`

    // The Elastic IP address.
    PublicIp *string `locationName:"publicIp" type:"string"`
    // contains filtered or unexported fields
}

func (Address) GoString

func (s Address) GoString() string

GoString returns the string representation

func (*Address) SetAllocationId

func (s *Address) SetAllocationId(v string) *Address

SetAllocationId sets the AllocationId field's value.

func (*Address) SetAssociationId

func (s *Address) SetAssociationId(v string) *Address

SetAssociationId sets the AssociationId field's value.

func (*Address) SetDomain

func (s *Address) SetDomain(v string) *Address

SetDomain sets the Domain field's value.

func (*Address) SetInstanceId

func (s *Address) SetInstanceId(v string) *Address

SetInstanceId sets the InstanceId field's value.

func (*Address) SetNetworkInterfaceId

func (s *Address) SetNetworkInterfaceId(v string) *Address

SetNetworkInterfaceId sets the NetworkInterfaceId field's value.

func (*Address) SetNetworkInterfaceOwnerId

func (s *Address) SetNetworkInterfaceOwnerId(v string) *Address

SetNetworkInterfaceOwnerId sets the NetworkInterfaceOwnerId field's value.

func (*Address) SetPrivateIpAddress

func (s *Address) SetPrivateIpAddress(v string) *Address

SetPrivateIpAddress sets the PrivateIpAddress field's value.

func (*Address) SetPublicIp

func (s *Address) SetPublicIp(v string) *Address

SetPublicIp sets the PublicIp field's value.

func (Address) String

func (s Address) String() string

String returns the string representation

type AllocateAddressInput

Contains the parameters for AllocateAddress. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AllocateAddressRequest

type AllocateAddressInput struct {

    // Set to vpc to allocate the address for use with instances in a VPC.
    //
    // Default: The address is for use with instances in EC2-Classic.
    Domain *string `type:"string" enum:"DomainType"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`
    // contains filtered or unexported fields
}

func (AllocateAddressInput) GoString

func (s AllocateAddressInput) GoString() string

GoString returns the string representation

func (*AllocateAddressInput) SetDomain

func (s *AllocateAddressInput) SetDomain(v string) *AllocateAddressInput

SetDomain sets the Domain field's value.

func (*AllocateAddressInput) SetDryRun

func (s *AllocateAddressInput) SetDryRun(v bool) *AllocateAddressInput

SetDryRun sets the DryRun field's value.

func (AllocateAddressInput) String

func (s AllocateAddressInput) String() string

String returns the string representation

type AllocateAddressOutput

Contains the output of AllocateAddress. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AllocateAddressResult

type AllocateAddressOutput struct {

    // [EC2-VPC] The ID that AWS assigns to represent the allocation of the Elastic
    // IP address for use with instances in a VPC.
    AllocationId *string `locationName:"allocationId" type:"string"`

    // Indicates whether this Elastic IP address is for use with instances in EC2-Classic
    // (standard) or instances in a VPC (vpc).
    Domain *string `locationName:"domain" type:"string" enum:"DomainType"`

    // The Elastic IP address.
    PublicIp *string `locationName:"publicIp" type:"string"`
    // contains filtered or unexported fields
}

func (AllocateAddressOutput) GoString

func (s AllocateAddressOutput) GoString() string

GoString returns the string representation

func (*AllocateAddressOutput) SetAllocationId

func (s *AllocateAddressOutput) SetAllocationId(v string) *AllocateAddressOutput

SetAllocationId sets the AllocationId field's value.

func (*AllocateAddressOutput) SetDomain

func (s *AllocateAddressOutput) SetDomain(v string) *AllocateAddressOutput

SetDomain sets the Domain field's value.

func (*AllocateAddressOutput) SetPublicIp

func (s *AllocateAddressOutput) SetPublicIp(v string) *AllocateAddressOutput

SetPublicIp sets the PublicIp field's value.

func (AllocateAddressOutput) String

func (s AllocateAddressOutput) String() string

String returns the string representation

type AllocateHostsInput

Contains the parameters for AllocateHosts. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AllocateHostsRequest

type AllocateHostsInput struct {

    // This is enabled by default. This property allows instances to be automatically
    // placed onto available Dedicated Hosts, when you are launching instances without
    // specifying a host ID.
    //
    // Default: Enabled
    AutoPlacement *string `locationName:"autoPlacement" type:"string" enum:"AutoPlacement"`

    // The Availability Zone for the Dedicated Hosts.
    //
    // AvailabilityZone is a required field
    AvailabilityZone *string `locationName:"availabilityZone" type:"string" required:"true"`

    // Unique, case-sensitive identifier you provide to ensure idempotency of the
    // request. For more information, see How to Ensure Idempotency (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Run_Instance_Idempotency.html)
    // in the Amazon Elastic Compute Cloud User Guide.
    ClientToken *string `locationName:"clientToken" type:"string"`

    // Specify the instance type that you want your Dedicated Hosts to be configured
    // for. When you specify the instance type, that is the only instance type that
    // you can launch onto that host.
    //
    // InstanceType is a required field
    InstanceType *string `locationName:"instanceType" type:"string" required:"true"`

    // The number of Dedicated Hosts you want to allocate to your account with these
    // parameters.
    //
    // Quantity is a required field
    Quantity *int64 `locationName:"quantity" type:"integer" required:"true"`
    // contains filtered or unexported fields
}

func (AllocateHostsInput) GoString

func (s AllocateHostsInput) GoString() string

GoString returns the string representation

func (*AllocateHostsInput) SetAutoPlacement

func (s *AllocateHostsInput) SetAutoPlacement(v string) *AllocateHostsInput

SetAutoPlacement sets the AutoPlacement field's value.

func (*AllocateHostsInput) SetAvailabilityZone

func (s *AllocateHostsInput) SetAvailabilityZone(v string) *AllocateHostsInput

SetAvailabilityZone sets the AvailabilityZone field's value.

func (*AllocateHostsInput) SetClientToken

func (s *AllocateHostsInput) SetClientToken(v string) *AllocateHostsInput

SetClientToken sets the ClientToken field's value.

func (*AllocateHostsInput) SetInstanceType

func (s *AllocateHostsInput) SetInstanceType(v string) *AllocateHostsInput

SetInstanceType sets the InstanceType field's value.

func (*AllocateHostsInput) SetQuantity

func (s *AllocateHostsInput) SetQuantity(v int64) *AllocateHostsInput

SetQuantity sets the Quantity field's value.

func (AllocateHostsInput) String

func (s AllocateHostsInput) String() string

String returns the string representation

func (*AllocateHostsInput) Validate

func (s *AllocateHostsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type AllocateHostsOutput

Contains the output of AllocateHosts. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AllocateHostsResult

type AllocateHostsOutput struct {

    // The ID of the allocated Dedicated Host. This is used when you want to launch
    // an instance onto a specific host.
    HostIds []*string `locationName:"hostIdSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (AllocateHostsOutput) GoString

func (s AllocateHostsOutput) GoString() string

GoString returns the string representation

func (*AllocateHostsOutput) SetHostIds

func (s *AllocateHostsOutput) SetHostIds(v []*string) *AllocateHostsOutput

SetHostIds sets the HostIds field's value.

func (AllocateHostsOutput) String

func (s AllocateHostsOutput) String() string

String returns the string representation

type AssignIpv6AddressesInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssignIpv6AddressesRequest

type AssignIpv6AddressesInput struct {

    // The number of IPv6 addresses to assign to the network interface. Amazon EC2
    // automatically selects the IPv6 addresses from the subnet range. You can't
    // use this option if specifying specific IPv6 addresses.
    Ipv6AddressCount *int64 `locationName:"ipv6AddressCount" type:"integer"`

    // One or more specific IPv6 addresses to be assigned to the network interface.
    // You can't use this option if you're specifying a number of IPv6 addresses.
    Ipv6Addresses []*string `locationName:"ipv6Addresses" locationNameList:"item" type:"list"`

    // The ID of the network interface.
    //
    // NetworkInterfaceId is a required field
    NetworkInterfaceId *string `locationName:"networkInterfaceId" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (AssignIpv6AddressesInput) GoString

func (s AssignIpv6AddressesInput) GoString() string

GoString returns the string representation

func (*AssignIpv6AddressesInput) SetIpv6AddressCount

func (s *AssignIpv6AddressesInput) SetIpv6AddressCount(v int64) *AssignIpv6AddressesInput

SetIpv6AddressCount sets the Ipv6AddressCount field's value.

func (*AssignIpv6AddressesInput) SetIpv6Addresses

func (s *AssignIpv6AddressesInput) SetIpv6Addresses(v []*string) *AssignIpv6AddressesInput

SetIpv6Addresses sets the Ipv6Addresses field's value.

func (*AssignIpv6AddressesInput) SetNetworkInterfaceId

func (s *AssignIpv6AddressesInput) SetNetworkInterfaceId(v string) *AssignIpv6AddressesInput

SetNetworkInterfaceId sets the NetworkInterfaceId field's value.

func (AssignIpv6AddressesInput) String

func (s AssignIpv6AddressesInput) String() string

String returns the string representation

func (*AssignIpv6AddressesInput) Validate

func (s *AssignIpv6AddressesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type AssignIpv6AddressesOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssignIpv6AddressesResult

type AssignIpv6AddressesOutput struct {

    // The IPv6 addresses assigned to the network interface.
    AssignedIpv6Addresses []*string `locationName:"assignedIpv6Addresses" locationNameList:"item" type:"list"`

    // The ID of the network interface.
    NetworkInterfaceId *string `locationName:"networkInterfaceId" type:"string"`
    // contains filtered or unexported fields
}

func (AssignIpv6AddressesOutput) GoString

func (s AssignIpv6AddressesOutput) GoString() string

GoString returns the string representation

func (*AssignIpv6AddressesOutput) SetAssignedIpv6Addresses

func (s *AssignIpv6AddressesOutput) SetAssignedIpv6Addresses(v []*string) *AssignIpv6AddressesOutput

SetAssignedIpv6Addresses sets the AssignedIpv6Addresses field's value.

func (*AssignIpv6AddressesOutput) SetNetworkInterfaceId

func (s *AssignIpv6AddressesOutput) SetNetworkInterfaceId(v string) *AssignIpv6AddressesOutput

SetNetworkInterfaceId sets the NetworkInterfaceId field's value.

func (AssignIpv6AddressesOutput) String

func (s AssignIpv6AddressesOutput) String() string

String returns the string representation

type AssignPrivateIpAddressesInput

Contains the parameters for AssignPrivateIpAddresses. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssignPrivateIpAddressesRequest

type AssignPrivateIpAddressesInput struct {

    // Indicates whether to allow an IP address that is already assigned to another
    // network interface or instance to be reassigned to the specified network interface.
    AllowReassignment *bool `locationName:"allowReassignment" type:"boolean"`

    // The ID of the network interface.
    //
    // NetworkInterfaceId is a required field
    NetworkInterfaceId *string `locationName:"networkInterfaceId" type:"string" required:"true"`

    // One or more IP addresses to be assigned as a secondary private IP address
    // to the network interface. You can't specify this parameter when also specifying
    // a number of secondary IP addresses.
    //
    // If you don't specify an IP address, Amazon EC2 automatically selects an IP
    // address within the subnet range.
    PrivateIpAddresses []*string `locationName:"privateIpAddress" locationNameList:"PrivateIpAddress" type:"list"`

    // The number of secondary IP addresses to assign to the network interface.
    // You can't specify this parameter when also specifying private IP addresses.
    SecondaryPrivateIpAddressCount *int64 `locationName:"secondaryPrivateIpAddressCount" type:"integer"`
    // contains filtered or unexported fields
}

func (AssignPrivateIpAddressesInput) GoString

func (s AssignPrivateIpAddressesInput) GoString() string

GoString returns the string representation

func (*AssignPrivateIpAddressesInput) SetAllowReassignment

func (s *AssignPrivateIpAddressesInput) SetAllowReassignment(v bool) *AssignPrivateIpAddressesInput

SetAllowReassignment sets the AllowReassignment field's value.

func (*AssignPrivateIpAddressesInput) SetNetworkInterfaceId

func (s *AssignPrivateIpAddressesInput) SetNetworkInterfaceId(v string) *AssignPrivateIpAddressesInput

SetNetworkInterfaceId sets the NetworkInterfaceId field's value.

func (*AssignPrivateIpAddressesInput) SetPrivateIpAddresses

func (s *AssignPrivateIpAddressesInput) SetPrivateIpAddresses(v []*string) *AssignPrivateIpAddressesInput

SetPrivateIpAddresses sets the PrivateIpAddresses field's value.

func (*AssignPrivateIpAddressesInput) SetSecondaryPrivateIpAddressCount

func (s *AssignPrivateIpAddressesInput) SetSecondaryPrivateIpAddressCount(v int64) *AssignPrivateIpAddressesInput

SetSecondaryPrivateIpAddressCount sets the SecondaryPrivateIpAddressCount field's value.

func (AssignPrivateIpAddressesInput) String

func (s AssignPrivateIpAddressesInput) String() string

String returns the string representation

func (*AssignPrivateIpAddressesInput) Validate

func (s *AssignPrivateIpAddressesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type AssignPrivateIpAddressesOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssignPrivateIpAddressesOutput

type AssignPrivateIpAddressesOutput struct {
    // contains filtered or unexported fields
}

func (AssignPrivateIpAddressesOutput) GoString

func (s AssignPrivateIpAddressesOutput) GoString() string

GoString returns the string representation

func (AssignPrivateIpAddressesOutput) String

func (s AssignPrivateIpAddressesOutput) String() string

String returns the string representation

type AssociateAddressInput

Contains the parameters for AssociateAddress. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssociateAddressRequest

type AssociateAddressInput struct {

    // [EC2-VPC] The allocation ID. This is required for EC2-VPC.
    AllocationId *string `type:"string"`

    // [EC2-VPC] For a VPC in an EC2-Classic account, specify true to allow an Elastic
    // IP address that is already associated with an instance or network interface
    // to be reassociated with the specified instance or network interface. Otherwise,
    // the operation fails. In a VPC in an EC2-VPC-only account, reassociation is
    // automatic, therefore you can specify false to ensure the operation fails
    // if the Elastic IP address is already associated with another resource.
    AllowReassociation *bool `locationName:"allowReassociation" type:"boolean"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the instance. This is required for EC2-Classic. For EC2-VPC, you
    // can specify either the instance ID or the network interface ID, but not both.
    // The operation fails if you specify an instance ID unless exactly one network
    // interface is attached.
    InstanceId *string `type:"string"`

    // [EC2-VPC] The ID of the network interface. If the instance has more than
    // one network interface, you must specify a network interface ID.
    NetworkInterfaceId *string `locationName:"networkInterfaceId" type:"string"`

    // [EC2-VPC] The primary or secondary private IP address to associate with the
    // Elastic IP address. If no private IP address is specified, the Elastic IP
    // address is associated with the primary private IP address.
    PrivateIpAddress *string `locationName:"privateIpAddress" type:"string"`

    // The Elastic IP address. This is required for EC2-Classic.
    PublicIp *string `type:"string"`
    // contains filtered or unexported fields
}

func (AssociateAddressInput) GoString

func (s AssociateAddressInput) GoString() string

GoString returns the string representation

func (*AssociateAddressInput) SetAllocationId

func (s *AssociateAddressInput) SetAllocationId(v string) *AssociateAddressInput

SetAllocationId sets the AllocationId field's value.

func (*AssociateAddressInput) SetAllowReassociation

func (s *AssociateAddressInput) SetAllowReassociation(v bool) *AssociateAddressInput

SetAllowReassociation sets the AllowReassociation field's value.

func (*AssociateAddressInput) SetDryRun

func (s *AssociateAddressInput) SetDryRun(v bool) *AssociateAddressInput

SetDryRun sets the DryRun field's value.

func (*AssociateAddressInput) SetInstanceId

func (s *AssociateAddressInput) SetInstanceId(v string) *AssociateAddressInput

SetInstanceId sets the InstanceId field's value.

func (*AssociateAddressInput) SetNetworkInterfaceId

func (s *AssociateAddressInput) SetNetworkInterfaceId(v string) *AssociateAddressInput

SetNetworkInterfaceId sets the NetworkInterfaceId field's value.

func (*AssociateAddressInput) SetPrivateIpAddress

func (s *AssociateAddressInput) SetPrivateIpAddress(v string) *AssociateAddressInput

SetPrivateIpAddress sets the PrivateIpAddress field's value.

func (*AssociateAddressInput) SetPublicIp

func (s *AssociateAddressInput) SetPublicIp(v string) *AssociateAddressInput

SetPublicIp sets the PublicIp field's value.

func (AssociateAddressInput) String

func (s AssociateAddressInput) String() string

String returns the string representation

type AssociateAddressOutput

Contains the output of AssociateAddress. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssociateAddressResult

type AssociateAddressOutput struct {

    // [EC2-VPC] The ID that represents the association of the Elastic IP address
    // with an instance.
    AssociationId *string `locationName:"associationId" type:"string"`
    // contains filtered or unexported fields
}

func (AssociateAddressOutput) GoString

func (s AssociateAddressOutput) GoString() string

GoString returns the string representation

func (*AssociateAddressOutput) SetAssociationId

func (s *AssociateAddressOutput) SetAssociationId(v string) *AssociateAddressOutput

SetAssociationId sets the AssociationId field's value.

func (AssociateAddressOutput) String

func (s AssociateAddressOutput) String() string

String returns the string representation

type AssociateDhcpOptionsInput

Contains the parameters for AssociateDhcpOptions. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssociateDhcpOptionsRequest

type AssociateDhcpOptionsInput struct {

    // The ID of the DHCP options set, or default to associate no DHCP options with
    // the VPC.
    //
    // DhcpOptionsId is a required field
    DhcpOptionsId *string `type:"string" required:"true"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the VPC.
    //
    // VpcId is a required field
    VpcId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (AssociateDhcpOptionsInput) GoString

func (s AssociateDhcpOptionsInput) GoString() string

GoString returns the string representation

func (*AssociateDhcpOptionsInput) SetDhcpOptionsId

func (s *AssociateDhcpOptionsInput) SetDhcpOptionsId(v string) *AssociateDhcpOptionsInput

SetDhcpOptionsId sets the DhcpOptionsId field's value.

func (*AssociateDhcpOptionsInput) SetDryRun

func (s *AssociateDhcpOptionsInput) SetDryRun(v bool) *AssociateDhcpOptionsInput

SetDryRun sets the DryRun field's value.

func (*AssociateDhcpOptionsInput) SetVpcId

func (s *AssociateDhcpOptionsInput) SetVpcId(v string) *AssociateDhcpOptionsInput

SetVpcId sets the VpcId field's value.

func (AssociateDhcpOptionsInput) String

func (s AssociateDhcpOptionsInput) String() string

String returns the string representation

func (*AssociateDhcpOptionsInput) Validate

func (s *AssociateDhcpOptionsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type AssociateDhcpOptionsOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssociateDhcpOptionsOutput

type AssociateDhcpOptionsOutput struct {
    // contains filtered or unexported fields
}

func (AssociateDhcpOptionsOutput) GoString

func (s AssociateDhcpOptionsOutput) GoString() string

GoString returns the string representation

func (AssociateDhcpOptionsOutput) String

func (s AssociateDhcpOptionsOutput) String() string

String returns the string representation

type AssociateIamInstanceProfileInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssociateIamInstanceProfileRequest

type AssociateIamInstanceProfileInput struct {

    // The IAM instance profile.
    //
    // IamInstanceProfile is a required field
    IamInstanceProfile *IamInstanceProfileSpecification `type:"structure" required:"true"`

    // The ID of the instance.
    //
    // InstanceId is a required field
    InstanceId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (AssociateIamInstanceProfileInput) GoString

func (s AssociateIamInstanceProfileInput) GoString() string

GoString returns the string representation

func (*AssociateIamInstanceProfileInput) SetIamInstanceProfile

func (s *AssociateIamInstanceProfileInput) SetIamInstanceProfile(v *IamInstanceProfileSpecification) *AssociateIamInstanceProfileInput

SetIamInstanceProfile sets the IamInstanceProfile field's value.

func (*AssociateIamInstanceProfileInput) SetInstanceId

func (s *AssociateIamInstanceProfileInput) SetInstanceId(v string) *AssociateIamInstanceProfileInput

SetInstanceId sets the InstanceId field's value.

func (AssociateIamInstanceProfileInput) String

func (s AssociateIamInstanceProfileInput) String() string

String returns the string representation

func (*AssociateIamInstanceProfileInput) Validate

func (s *AssociateIamInstanceProfileInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type AssociateIamInstanceProfileOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssociateIamInstanceProfileResult

type AssociateIamInstanceProfileOutput struct {

    // Information about the IAM instance profile association.
    IamInstanceProfileAssociation *IamInstanceProfileAssociation `locationName:"iamInstanceProfileAssociation" type:"structure"`
    // contains filtered or unexported fields
}

func (AssociateIamInstanceProfileOutput) GoString

func (s AssociateIamInstanceProfileOutput) GoString() string

GoString returns the string representation

func (*AssociateIamInstanceProfileOutput) SetIamInstanceProfileAssociation

func (s *AssociateIamInstanceProfileOutput) SetIamInstanceProfileAssociation(v *IamInstanceProfileAssociation) *AssociateIamInstanceProfileOutput

SetIamInstanceProfileAssociation sets the IamInstanceProfileAssociation field's value.

func (AssociateIamInstanceProfileOutput) String

func (s AssociateIamInstanceProfileOutput) String() string

String returns the string representation

type AssociateRouteTableInput

Contains the parameters for AssociateRouteTable. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssociateRouteTableRequest

type AssociateRouteTableInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the route table.
    //
    // RouteTableId is a required field
    RouteTableId *string `locationName:"routeTableId" type:"string" required:"true"`

    // The ID of the subnet.
    //
    // SubnetId is a required field
    SubnetId *string `locationName:"subnetId" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (AssociateRouteTableInput) GoString

func (s AssociateRouteTableInput) GoString() string

GoString returns the string representation

func (*AssociateRouteTableInput) SetDryRun

func (s *AssociateRouteTableInput) SetDryRun(v bool) *AssociateRouteTableInput

SetDryRun sets the DryRun field's value.

func (*AssociateRouteTableInput) SetRouteTableId

func (s *AssociateRouteTableInput) SetRouteTableId(v string) *AssociateRouteTableInput

SetRouteTableId sets the RouteTableId field's value.

func (*AssociateRouteTableInput) SetSubnetId

func (s *AssociateRouteTableInput) SetSubnetId(v string) *AssociateRouteTableInput

SetSubnetId sets the SubnetId field's value.

func (AssociateRouteTableInput) String

func (s AssociateRouteTableInput) String() string

String returns the string representation

func (*AssociateRouteTableInput) Validate

func (s *AssociateRouteTableInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type AssociateRouteTableOutput

Contains the output of AssociateRouteTable. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssociateRouteTableResult

type AssociateRouteTableOutput struct {

    // The route table association ID (needed to disassociate the route table).
    AssociationId *string `locationName:"associationId" type:"string"`
    // contains filtered or unexported fields
}

func (AssociateRouteTableOutput) GoString

func (s AssociateRouteTableOutput) GoString() string

GoString returns the string representation

func (*AssociateRouteTableOutput) SetAssociationId

func (s *AssociateRouteTableOutput) SetAssociationId(v string) *AssociateRouteTableOutput

SetAssociationId sets the AssociationId field's value.

func (AssociateRouteTableOutput) String

func (s AssociateRouteTableOutput) String() string

String returns the string representation

type AssociateSubnetCidrBlockInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssociateSubnetCidrBlockRequest

type AssociateSubnetCidrBlockInput struct {

    // The IPv6 CIDR block for your subnet. The subnet must have a /64 prefix length.
    //
    // Ipv6CidrBlock is a required field
    Ipv6CidrBlock *string `locationName:"ipv6CidrBlock" type:"string" required:"true"`

    // The ID of your subnet.
    //
    // SubnetId is a required field
    SubnetId *string `locationName:"subnetId" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (AssociateSubnetCidrBlockInput) GoString

func (s AssociateSubnetCidrBlockInput) GoString() string

GoString returns the string representation

func (*AssociateSubnetCidrBlockInput) SetIpv6CidrBlock

func (s *AssociateSubnetCidrBlockInput) SetIpv6CidrBlock(v string) *AssociateSubnetCidrBlockInput

SetIpv6CidrBlock sets the Ipv6CidrBlock field's value.

func (*AssociateSubnetCidrBlockInput) SetSubnetId

func (s *AssociateSubnetCidrBlockInput) SetSubnetId(v string) *AssociateSubnetCidrBlockInput

SetSubnetId sets the SubnetId field's value.

func (AssociateSubnetCidrBlockInput) String

func (s AssociateSubnetCidrBlockInput) String() string

String returns the string representation

func (*AssociateSubnetCidrBlockInput) Validate

func (s *AssociateSubnetCidrBlockInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type AssociateSubnetCidrBlockOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssociateSubnetCidrBlockResult

type AssociateSubnetCidrBlockOutput struct {

    // Information about the IPv6 CIDR block association.
    Ipv6CidrBlockAssociation *SubnetIpv6CidrBlockAssociation `locationName:"ipv6CidrBlockAssociation" type:"structure"`

    // The ID of the subnet.
    SubnetId *string `locationName:"subnetId" type:"string"`
    // contains filtered or unexported fields
}

func (AssociateSubnetCidrBlockOutput) GoString

func (s AssociateSubnetCidrBlockOutput) GoString() string

GoString returns the string representation

func (*AssociateSubnetCidrBlockOutput) SetIpv6CidrBlockAssociation

func (s *AssociateSubnetCidrBlockOutput) SetIpv6CidrBlockAssociation(v *SubnetIpv6CidrBlockAssociation) *AssociateSubnetCidrBlockOutput

SetIpv6CidrBlockAssociation sets the Ipv6CidrBlockAssociation field's value.

func (*AssociateSubnetCidrBlockOutput) SetSubnetId

func (s *AssociateSubnetCidrBlockOutput) SetSubnetId(v string) *AssociateSubnetCidrBlockOutput

SetSubnetId sets the SubnetId field's value.

func (AssociateSubnetCidrBlockOutput) String

func (s AssociateSubnetCidrBlockOutput) String() string

String returns the string representation

type AssociateVpcCidrBlockInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssociateVpcCidrBlockRequest

type AssociateVpcCidrBlockInput struct {

    // Requests an Amazon-provided IPv6 CIDR block with a /56 prefix length for
    // the VPC. You cannot specify the range of IPv6 addresses, or the size of the
    // CIDR block.
    AmazonProvidedIpv6CidrBlock *bool `locationName:"amazonProvidedIpv6CidrBlock" type:"boolean"`

    // The ID of the VPC.
    //
    // VpcId is a required field
    VpcId *string `locationName:"vpcId" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (AssociateVpcCidrBlockInput) GoString

func (s AssociateVpcCidrBlockInput) GoString() string

GoString returns the string representation

func (*AssociateVpcCidrBlockInput) SetAmazonProvidedIpv6CidrBlock

func (s *AssociateVpcCidrBlockInput) SetAmazonProvidedIpv6CidrBlock(v bool) *AssociateVpcCidrBlockInput

SetAmazonProvidedIpv6CidrBlock sets the AmazonProvidedIpv6CidrBlock field's value.

func (*AssociateVpcCidrBlockInput) SetVpcId

func (s *AssociateVpcCidrBlockInput) SetVpcId(v string) *AssociateVpcCidrBlockInput

SetVpcId sets the VpcId field's value.

func (AssociateVpcCidrBlockInput) String

func (s AssociateVpcCidrBlockInput) String() string

String returns the string representation

func (*AssociateVpcCidrBlockInput) Validate

func (s *AssociateVpcCidrBlockInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type AssociateVpcCidrBlockOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssociateVpcCidrBlockResult

type AssociateVpcCidrBlockOutput struct {

    // Information about the IPv6 CIDR block association.
    Ipv6CidrBlockAssociation *VpcIpv6CidrBlockAssociation `locationName:"ipv6CidrBlockAssociation" type:"structure"`

    // The ID of the VPC.
    VpcId *string `locationName:"vpcId" type:"string"`
    // contains filtered or unexported fields
}

func (AssociateVpcCidrBlockOutput) GoString

func (s AssociateVpcCidrBlockOutput) GoString() string

GoString returns the string representation

func (*AssociateVpcCidrBlockOutput) SetIpv6CidrBlockAssociation

func (s *AssociateVpcCidrBlockOutput) SetIpv6CidrBlockAssociation(v *VpcIpv6CidrBlockAssociation) *AssociateVpcCidrBlockOutput

SetIpv6CidrBlockAssociation sets the Ipv6CidrBlockAssociation field's value.

func (*AssociateVpcCidrBlockOutput) SetVpcId

func (s *AssociateVpcCidrBlockOutput) SetVpcId(v string) *AssociateVpcCidrBlockOutput

SetVpcId sets the VpcId field's value.

func (AssociateVpcCidrBlockOutput) String

func (s AssociateVpcCidrBlockOutput) String() string

String returns the string representation

type AttachClassicLinkVpcInput

Contains the parameters for AttachClassicLinkVpc. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AttachClassicLinkVpcRequest

type AttachClassicLinkVpcInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of one or more of the VPC's security groups. You cannot specify security
    // groups from a different VPC.
    //
    // Groups is a required field
    Groups []*string `locationName:"SecurityGroupId" locationNameList:"groupId" type:"list" required:"true"`

    // The ID of an EC2-Classic instance to link to the ClassicLink-enabled VPC.
    //
    // InstanceId is a required field
    InstanceId *string `locationName:"instanceId" type:"string" required:"true"`

    // The ID of a ClassicLink-enabled VPC.
    //
    // VpcId is a required field
    VpcId *string `locationName:"vpcId" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (AttachClassicLinkVpcInput) GoString

func (s AttachClassicLinkVpcInput) GoString() string

GoString returns the string representation

func (*AttachClassicLinkVpcInput) SetDryRun

func (s *AttachClassicLinkVpcInput) SetDryRun(v bool) *AttachClassicLinkVpcInput

SetDryRun sets the DryRun field's value.

func (*AttachClassicLinkVpcInput) SetGroups

func (s *AttachClassicLinkVpcInput) SetGroups(v []*string) *AttachClassicLinkVpcInput

SetGroups sets the Groups field's value.

func (*AttachClassicLinkVpcInput) SetInstanceId

func (s *AttachClassicLinkVpcInput) SetInstanceId(v string) *AttachClassicLinkVpcInput

SetInstanceId sets the InstanceId field's value.

func (*AttachClassicLinkVpcInput) SetVpcId

func (s *AttachClassicLinkVpcInput) SetVpcId(v string) *AttachClassicLinkVpcInput

SetVpcId sets the VpcId field's value.

func (AttachClassicLinkVpcInput) String

func (s AttachClassicLinkVpcInput) String() string

String returns the string representation

func (*AttachClassicLinkVpcInput) Validate

func (s *AttachClassicLinkVpcInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type AttachClassicLinkVpcOutput

Contains the output of AttachClassicLinkVpc. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AttachClassicLinkVpcResult

type AttachClassicLinkVpcOutput struct {

    // Returns true if the request succeeds; otherwise, it returns an error.
    Return *bool `locationName:"return" type:"boolean"`
    // contains filtered or unexported fields
}

func (AttachClassicLinkVpcOutput) GoString

func (s AttachClassicLinkVpcOutput) GoString() string

GoString returns the string representation

func (*AttachClassicLinkVpcOutput) SetReturn

func (s *AttachClassicLinkVpcOutput) SetReturn(v bool) *AttachClassicLinkVpcOutput

SetReturn sets the Return field's value.

func (AttachClassicLinkVpcOutput) String

func (s AttachClassicLinkVpcOutput) String() string

String returns the string representation

type AttachInternetGatewayInput

Contains the parameters for AttachInternetGateway. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AttachInternetGatewayRequest

type AttachInternetGatewayInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the Internet gateway.
    //
    // InternetGatewayId is a required field
    InternetGatewayId *string `locationName:"internetGatewayId" type:"string" required:"true"`

    // The ID of the VPC.
    //
    // VpcId is a required field
    VpcId *string `locationName:"vpcId" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (AttachInternetGatewayInput) GoString

func (s AttachInternetGatewayInput) GoString() string

GoString returns the string representation

func (*AttachInternetGatewayInput) SetDryRun

func (s *AttachInternetGatewayInput) SetDryRun(v bool) *AttachInternetGatewayInput

SetDryRun sets the DryRun field's value.

func (*AttachInternetGatewayInput) SetInternetGatewayId

func (s *AttachInternetGatewayInput) SetInternetGatewayId(v string) *AttachInternetGatewayInput

SetInternetGatewayId sets the InternetGatewayId field's value.

func (*AttachInternetGatewayInput) SetVpcId

func (s *AttachInternetGatewayInput) SetVpcId(v string) *AttachInternetGatewayInput

SetVpcId sets the VpcId field's value.

func (AttachInternetGatewayInput) String

func (s AttachInternetGatewayInput) String() string

String returns the string representation

func (*AttachInternetGatewayInput) Validate

func (s *AttachInternetGatewayInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type AttachInternetGatewayOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AttachInternetGatewayOutput

type AttachInternetGatewayOutput struct {
    // contains filtered or unexported fields
}

func (AttachInternetGatewayOutput) GoString

func (s AttachInternetGatewayOutput) GoString() string

GoString returns the string representation

func (AttachInternetGatewayOutput) String

func (s AttachInternetGatewayOutput) String() string

String returns the string representation

type AttachNetworkInterfaceInput

Contains the parameters for AttachNetworkInterface. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AttachNetworkInterfaceRequest

type AttachNetworkInterfaceInput struct {

    // The index of the device for the network interface attachment.
    //
    // DeviceIndex is a required field
    DeviceIndex *int64 `locationName:"deviceIndex" type:"integer" required:"true"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the instance.
    //
    // InstanceId is a required field
    InstanceId *string `locationName:"instanceId" type:"string" required:"true"`

    // The ID of the network interface.
    //
    // NetworkInterfaceId is a required field
    NetworkInterfaceId *string `locationName:"networkInterfaceId" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (AttachNetworkInterfaceInput) GoString

func (s AttachNetworkInterfaceInput) GoString() string

GoString returns the string representation

func (*AttachNetworkInterfaceInput) SetDeviceIndex

func (s *AttachNetworkInterfaceInput) SetDeviceIndex(v int64) *AttachNetworkInterfaceInput

SetDeviceIndex sets the DeviceIndex field's value.

func (*AttachNetworkInterfaceInput) SetDryRun

func (s *AttachNetworkInterfaceInput) SetDryRun(v bool) *AttachNetworkInterfaceInput

SetDryRun sets the DryRun field's value.

func (*AttachNetworkInterfaceInput) SetInstanceId

func (s *AttachNetworkInterfaceInput) SetInstanceId(v string) *AttachNetworkInterfaceInput

SetInstanceId sets the InstanceId field's value.

func (*AttachNetworkInterfaceInput) SetNetworkInterfaceId

func (s *AttachNetworkInterfaceInput) SetNetworkInterfaceId(v string) *AttachNetworkInterfaceInput

SetNetworkInterfaceId sets the NetworkInterfaceId field's value.

func (AttachNetworkInterfaceInput) String

func (s AttachNetworkInterfaceInput) String() string

String returns the string representation

func (*AttachNetworkInterfaceInput) Validate

func (s *AttachNetworkInterfaceInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type AttachNetworkInterfaceOutput

Contains the output of AttachNetworkInterface. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AttachNetworkInterfaceResult

type AttachNetworkInterfaceOutput struct {

    // The ID of the network interface attachment.
    AttachmentId *string `locationName:"attachmentId" type:"string"`
    // contains filtered or unexported fields
}

func (AttachNetworkInterfaceOutput) GoString

func (s AttachNetworkInterfaceOutput) GoString() string

GoString returns the string representation

func (*AttachNetworkInterfaceOutput) SetAttachmentId

func (s *AttachNetworkInterfaceOutput) SetAttachmentId(v string) *AttachNetworkInterfaceOutput

SetAttachmentId sets the AttachmentId field's value.

func (AttachNetworkInterfaceOutput) String

func (s AttachNetworkInterfaceOutput) String() string

String returns the string representation

type AttachVolumeInput

Contains the parameters for AttachVolume. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AttachVolumeRequest

type AttachVolumeInput struct {

    // The device name to expose to the instance (for example, /dev/sdh or xvdh).
    //
    // Device is a required field
    Device *string `type:"string" required:"true"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the instance.
    //
    // InstanceId is a required field
    InstanceId *string `type:"string" required:"true"`

    // The ID of the EBS volume. The volume and instance must be within the same
    // Availability Zone.
    //
    // VolumeId is a required field
    VolumeId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (AttachVolumeInput) GoString

func (s AttachVolumeInput) GoString() string

GoString returns the string representation

func (*AttachVolumeInput) SetDevice

func (s *AttachVolumeInput) SetDevice(v string) *AttachVolumeInput

SetDevice sets the Device field's value.

func (*AttachVolumeInput) SetDryRun

func (s *AttachVolumeInput) SetDryRun(v bool) *AttachVolumeInput

SetDryRun sets the DryRun field's value.

func (*AttachVolumeInput) SetInstanceId

func (s *AttachVolumeInput) SetInstanceId(v string) *AttachVolumeInput

SetInstanceId sets the InstanceId field's value.

func (*AttachVolumeInput) SetVolumeId

func (s *AttachVolumeInput) SetVolumeId(v string) *AttachVolumeInput

SetVolumeId sets the VolumeId field's value.

func (AttachVolumeInput) String

func (s AttachVolumeInput) String() string

String returns the string representation

func (*AttachVolumeInput) Validate

func (s *AttachVolumeInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type AttachVpnGatewayInput

Contains the parameters for AttachVpnGateway. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AttachVpnGatewayRequest

type AttachVpnGatewayInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the VPC.
    //
    // VpcId is a required field
    VpcId *string `type:"string" required:"true"`

    // The ID of the virtual private gateway.
    //
    // VpnGatewayId is a required field
    VpnGatewayId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (AttachVpnGatewayInput) GoString

func (s AttachVpnGatewayInput) GoString() string

GoString returns the string representation

func (*AttachVpnGatewayInput) SetDryRun

func (s *AttachVpnGatewayInput) SetDryRun(v bool) *AttachVpnGatewayInput

SetDryRun sets the DryRun field's value.

func (*AttachVpnGatewayInput) SetVpcId

func (s *AttachVpnGatewayInput) SetVpcId(v string) *AttachVpnGatewayInput

SetVpcId sets the VpcId field's value.

func (*AttachVpnGatewayInput) SetVpnGatewayId

func (s *AttachVpnGatewayInput) SetVpnGatewayId(v string) *AttachVpnGatewayInput

SetVpnGatewayId sets the VpnGatewayId field's value.

func (AttachVpnGatewayInput) String

func (s AttachVpnGatewayInput) String() string

String returns the string representation

func (*AttachVpnGatewayInput) Validate

func (s *AttachVpnGatewayInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type AttachVpnGatewayOutput

Contains the output of AttachVpnGateway. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AttachVpnGatewayResult

type AttachVpnGatewayOutput struct {

    // Information about the attachment.
    VpcAttachment *VpcAttachment `locationName:"attachment" type:"structure"`
    // contains filtered or unexported fields
}

func (AttachVpnGatewayOutput) GoString

func (s AttachVpnGatewayOutput) GoString() string

GoString returns the string representation

func (*AttachVpnGatewayOutput) SetVpcAttachment

func (s *AttachVpnGatewayOutput) SetVpcAttachment(v *VpcAttachment) *AttachVpnGatewayOutput

SetVpcAttachment sets the VpcAttachment field's value.

func (AttachVpnGatewayOutput) String

func (s AttachVpnGatewayOutput) String() string

String returns the string representation

type AttributeBooleanValue

Describes a value for a resource attribute that is a Boolean value. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AttributeBooleanValue

type AttributeBooleanValue struct {

    // The attribute value. The valid values are true or false.
    Value *bool `locationName:"value" type:"boolean"`
    // contains filtered or unexported fields
}

func (AttributeBooleanValue) GoString

func (s AttributeBooleanValue) GoString() string

GoString returns the string representation

func (*AttributeBooleanValue) SetValue

func (s *AttributeBooleanValue) SetValue(v bool) *AttributeBooleanValue

SetValue sets the Value field's value.

func (AttributeBooleanValue) String

func (s AttributeBooleanValue) String() string

String returns the string representation

type AttributeValue

Describes a value for a resource attribute that is a String. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AttributeValue

type AttributeValue struct {

    // The attribute value. Note that the value is case-sensitive.
    Value *string `locationName:"value" type:"string"`
    // contains filtered or unexported fields
}

func (AttributeValue) GoString

func (s AttributeValue) GoString() string

GoString returns the string representation

func (*AttributeValue) SetValue

func (s *AttributeValue) SetValue(v string) *AttributeValue

SetValue sets the Value field's value.

func (AttributeValue) String

func (s AttributeValue) String() string

String returns the string representation

type AuthorizeSecurityGroupEgressInput

Contains the parameters for AuthorizeSecurityGroupEgress. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AuthorizeSecurityGroupEgressRequest

type AuthorizeSecurityGroupEgressInput struct {

    // The CIDR IPv4 address range. We recommend that you specify the CIDR range
    // in a set of IP permissions instead.
    CidrIp *string `locationName:"cidrIp" type:"string"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The start of port range for the TCP and UDP protocols, or an ICMP type number.
    // We recommend that you specify the port range in a set of IP permissions instead.
    FromPort *int64 `locationName:"fromPort" type:"integer"`

    // The ID of the security group.
    //
    // GroupId is a required field
    GroupId *string `locationName:"groupId" type:"string" required:"true"`

    // A set of IP permissions. You can't specify a destination security group and
    // a CIDR IP address range.
    IpPermissions []*IpPermission `locationName:"ipPermissions" locationNameList:"item" type:"list"`

    // The IP protocol name or number. We recommend that you specify the protocol
    // in a set of IP permissions instead.
    IpProtocol *string `locationName:"ipProtocol" type:"string"`

    // The name of a destination security group. To authorize outbound access to
    // a destination security group, we recommend that you use a set of IP permissions
    // instead.
    SourceSecurityGroupName *string `locationName:"sourceSecurityGroupName" type:"string"`

    // The AWS account number for a destination security group. To authorize outbound
    // access to a destination security group, we recommend that you use a set of
    // IP permissions instead.
    SourceSecurityGroupOwnerId *string `locationName:"sourceSecurityGroupOwnerId" type:"string"`

    // The end of port range for the TCP and UDP protocols, or an ICMP type number.
    // We recommend that you specify the port range in a set of IP permissions instead.
    ToPort *int64 `locationName:"toPort" type:"integer"`
    // contains filtered or unexported fields
}

func (AuthorizeSecurityGroupEgressInput) GoString

func (s AuthorizeSecurityGroupEgressInput) GoString() string

GoString returns the string representation

func (*AuthorizeSecurityGroupEgressInput) SetCidrIp

func (s *AuthorizeSecurityGroupEgressInput) SetCidrIp(v string) *AuthorizeSecurityGroupEgressInput

SetCidrIp sets the CidrIp field's value.

func (*AuthorizeSecurityGroupEgressInput) SetDryRun

func (s *AuthorizeSecurityGroupEgressInput) SetDryRun(v bool) *AuthorizeSecurityGroupEgressInput

SetDryRun sets the DryRun field's value.

func (*AuthorizeSecurityGroupEgressInput) SetFromPort

func (s *AuthorizeSecurityGroupEgressInput) SetFromPort(v int64) *AuthorizeSecurityGroupEgressInput

SetFromPort sets the FromPort field's value.

func (*AuthorizeSecurityGroupEgressInput) SetGroupId

func (s *AuthorizeSecurityGroupEgressInput) SetGroupId(v string) *AuthorizeSecurityGroupEgressInput

SetGroupId sets the GroupId field's value.

func (*AuthorizeSecurityGroupEgressInput) SetIpPermissions

func (s *AuthorizeSecurityGroupEgressInput) SetIpPermissions(v []*IpPermission) *AuthorizeSecurityGroupEgressInput

SetIpPermissions sets the IpPermissions field's value.

func (*AuthorizeSecurityGroupEgressInput) SetIpProtocol

func (s *AuthorizeSecurityGroupEgressInput) SetIpProtocol(v string) *AuthorizeSecurityGroupEgressInput

SetIpProtocol sets the IpProtocol field's value.

func (*AuthorizeSecurityGroupEgressInput) SetSourceSecurityGroupName

func (s *AuthorizeSecurityGroupEgressInput) SetSourceSecurityGroupName(v string) *AuthorizeSecurityGroupEgressInput

SetSourceSecurityGroupName sets the SourceSecurityGroupName field's value.

func (*AuthorizeSecurityGroupEgressInput) SetSourceSecurityGroupOwnerId

func (s *AuthorizeSecurityGroupEgressInput) SetSourceSecurityGroupOwnerId(v string) *AuthorizeSecurityGroupEgressInput

SetSourceSecurityGroupOwnerId sets the SourceSecurityGroupOwnerId field's value.

func (*AuthorizeSecurityGroupEgressInput) SetToPort

func (s *AuthorizeSecurityGroupEgressInput) SetToPort(v int64) *AuthorizeSecurityGroupEgressInput

SetToPort sets the ToPort field's value.

func (AuthorizeSecurityGroupEgressInput) String

func (s AuthorizeSecurityGroupEgressInput) String() string

String returns the string representation

func (*AuthorizeSecurityGroupEgressInput) Validate

func (s *AuthorizeSecurityGroupEgressInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type AuthorizeSecurityGroupEgressOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AuthorizeSecurityGroupEgressOutput

type AuthorizeSecurityGroupEgressOutput struct {
    // contains filtered or unexported fields
}

func (AuthorizeSecurityGroupEgressOutput) GoString

func (s AuthorizeSecurityGroupEgressOutput) GoString() string

GoString returns the string representation

func (AuthorizeSecurityGroupEgressOutput) String

func (s AuthorizeSecurityGroupEgressOutput) String() string

String returns the string representation

type AuthorizeSecurityGroupIngressInput

Contains the parameters for AuthorizeSecurityGroupIngress. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AuthorizeSecurityGroupIngressRequest

type AuthorizeSecurityGroupIngressInput struct {

    // The CIDR IPv4 address range. You can't specify this parameter when specifying
    // a source security group.
    CidrIp *string `type:"string"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The start of port range for the TCP and UDP protocols, or an ICMP/ICMPv6
    // type number. For the ICMP/ICMPv6 type number, use -1 to specify all types.
    FromPort *int64 `type:"integer"`

    // The ID of the security group. Required for a nondefault VPC.
    GroupId *string `type:"string"`

    // [EC2-Classic, default VPC] The name of the security group.
    GroupName *string `type:"string"`

    // A set of IP permissions. Can be used to specify multiple rules in a single
    // command.
    IpPermissions []*IpPermission `locationNameList:"item" type:"list"`

    // The IP protocol name (tcp, udp, icmp) or number (see Protocol Numbers (http://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml)).
    // (VPC only) Use -1 to specify all protocols. If you specify -1, or a protocol
    // number other than tcp, udp, icmp, or 58 (ICMPv6), traffic on all ports is
    // allowed, regardless of any ports you specify. For tcp, udp, and icmp, you
    // must specify a port range. For protocol 58 (ICMPv6), you can optionally specify
    // a port range; if you don't, traffic for all types and codes is allowed.
    IpProtocol *string `type:"string"`

    // [EC2-Classic, default VPC] The name of the source security group. You can't
    // specify this parameter in combination with the following parameters: the
    // CIDR IP address range, the start of the port range, the IP protocol, and
    // the end of the port range. Creates rules that grant full ICMP, UDP, and TCP
    // access. To create a rule with a specific IP protocol and port range, use
    // a set of IP permissions instead. For EC2-VPC, the source security group must
    // be in the same VPC.
    SourceSecurityGroupName *string `type:"string"`

    // [EC2-Classic] The AWS account number for the source security group, if the
    // source security group is in a different account. You can't specify this parameter
    // in combination with the following parameters: the CIDR IP address range,
    // the IP protocol, the start of the port range, and the end of the port range.
    // Creates rules that grant full ICMP, UDP, and TCP access. To create a rule
    // with a specific IP protocol and port range, use a set of IP permissions instead.
    SourceSecurityGroupOwnerId *string `type:"string"`

    // The end of port range for the TCP and UDP protocols, or an ICMP/ICMPv6 code
    // number. For the ICMP/ICMPv6 code number, use -1 to specify all codes.
    ToPort *int64 `type:"integer"`
    // contains filtered or unexported fields
}

func (AuthorizeSecurityGroupIngressInput) GoString

func (s AuthorizeSecurityGroupIngressInput) GoString() string

GoString returns the string representation

func (*AuthorizeSecurityGroupIngressInput) SetCidrIp

func (s *AuthorizeSecurityGroupIngressInput) SetCidrIp(v string) *AuthorizeSecurityGroupIngressInput

SetCidrIp sets the CidrIp field's value.

func (*AuthorizeSecurityGroupIngressInput) SetDryRun

func (s *AuthorizeSecurityGroupIngressInput) SetDryRun(v bool) *AuthorizeSecurityGroupIngressInput

SetDryRun sets the DryRun field's value.

func (*AuthorizeSecurityGroupIngressInput) SetFromPort

func (s *AuthorizeSecurityGroupIngressInput) SetFromPort(v int64) *AuthorizeSecurityGroupIngressInput

SetFromPort sets the FromPort field's value.

func (*AuthorizeSecurityGroupIngressInput) SetGroupId

func (s *AuthorizeSecurityGroupIngressInput) SetGroupId(v string) *AuthorizeSecurityGroupIngressInput

SetGroupId sets the GroupId field's value.

func (*AuthorizeSecurityGroupIngressInput) SetGroupName

func (s *AuthorizeSecurityGroupIngressInput) SetGroupName(v string) *AuthorizeSecurityGroupIngressInput

SetGroupName sets the GroupName field's value.

func (*AuthorizeSecurityGroupIngressInput) SetIpPermissions

func (s *AuthorizeSecurityGroupIngressInput) SetIpPermissions(v []*IpPermission) *AuthorizeSecurityGroupIngressInput

SetIpPermissions sets the IpPermissions field's value.

func (*AuthorizeSecurityGroupIngressInput) SetIpProtocol

func (s *AuthorizeSecurityGroupIngressInput) SetIpProtocol(v string) *AuthorizeSecurityGroupIngressInput

SetIpProtocol sets the IpProtocol field's value.

func (*AuthorizeSecurityGroupIngressInput) SetSourceSecurityGroupName

func (s *AuthorizeSecurityGroupIngressInput) SetSourceSecurityGroupName(v string) *AuthorizeSecurityGroupIngressInput

SetSourceSecurityGroupName sets the SourceSecurityGroupName field's value.

func (*AuthorizeSecurityGroupIngressInput) SetSourceSecurityGroupOwnerId

func (s *AuthorizeSecurityGroupIngressInput) SetSourceSecurityGroupOwnerId(v string) *AuthorizeSecurityGroupIngressInput

SetSourceSecurityGroupOwnerId sets the SourceSecurityGroupOwnerId field's value.

func (*AuthorizeSecurityGroupIngressInput) SetToPort

func (s *AuthorizeSecurityGroupIngressInput) SetToPort(v int64) *AuthorizeSecurityGroupIngressInput

SetToPort sets the ToPort field's value.

func (AuthorizeSecurityGroupIngressInput) String

func (s AuthorizeSecurityGroupIngressInput) String() string

String returns the string representation

type AuthorizeSecurityGroupIngressOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AuthorizeSecurityGroupIngressOutput

type AuthorizeSecurityGroupIngressOutput struct {
    // contains filtered or unexported fields
}

func (AuthorizeSecurityGroupIngressOutput) GoString

func (s AuthorizeSecurityGroupIngressOutput) GoString() string

GoString returns the string representation

func (AuthorizeSecurityGroupIngressOutput) String

func (s AuthorizeSecurityGroupIngressOutput) String() string

String returns the string representation

type AvailabilityZone

Describes an Availability Zone. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AvailabilityZone

type AvailabilityZone struct {

    // Any messages about the Availability Zone.
    Messages []*AvailabilityZoneMessage `locationName:"messageSet" locationNameList:"item" type:"list"`

    // The name of the region.
    RegionName *string `locationName:"regionName" type:"string"`

    // The state of the Availability Zone.
    State *string `locationName:"zoneState" type:"string" enum:"AvailabilityZoneState"`

    // The name of the Availability Zone.
    ZoneName *string `locationName:"zoneName" type:"string"`
    // contains filtered or unexported fields
}

func (AvailabilityZone) GoString

func (s AvailabilityZone) GoString() string

GoString returns the string representation

func (*AvailabilityZone) SetMessages

func (s *AvailabilityZone) SetMessages(v []*AvailabilityZoneMessage) *AvailabilityZone

SetMessages sets the Messages field's value.

func (*AvailabilityZone) SetRegionName

func (s *AvailabilityZone) SetRegionName(v string) *AvailabilityZone

SetRegionName sets the RegionName field's value.

func (*AvailabilityZone) SetState

func (s *AvailabilityZone) SetState(v string) *AvailabilityZone

SetState sets the State field's value.

func (*AvailabilityZone) SetZoneName

func (s *AvailabilityZone) SetZoneName(v string) *AvailabilityZone

SetZoneName sets the ZoneName field's value.

func (AvailabilityZone) String

func (s AvailabilityZone) String() string

String returns the string representation

type AvailabilityZoneMessage

Describes a message about an Availability Zone. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AvailabilityZoneMessage

type AvailabilityZoneMessage struct {

    // The message about the Availability Zone.
    Message *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

func (AvailabilityZoneMessage) GoString

func (s AvailabilityZoneMessage) GoString() string

GoString returns the string representation

func (*AvailabilityZoneMessage) SetMessage

func (s *AvailabilityZoneMessage) SetMessage(v string) *AvailabilityZoneMessage

SetMessage sets the Message field's value.

func (AvailabilityZoneMessage) String

func (s AvailabilityZoneMessage) String() string

String returns the string representation

type AvailableCapacity

The capacity information for instances launched onto the Dedicated Host. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AvailableCapacity

type AvailableCapacity struct {

    // The total number of instances that the Dedicated Host supports.
    AvailableInstanceCapacity []*InstanceCapacity `locationName:"availableInstanceCapacity" locationNameList:"item" type:"list"`

    // The number of vCPUs available on the Dedicated Host.
    AvailableVCpus *int64 `locationName:"availableVCpus" type:"integer"`
    // contains filtered or unexported fields
}

func (AvailableCapacity) GoString

func (s AvailableCapacity) GoString() string

GoString returns the string representation

func (*AvailableCapacity) SetAvailableInstanceCapacity

func (s *AvailableCapacity) SetAvailableInstanceCapacity(v []*InstanceCapacity) *AvailableCapacity

SetAvailableInstanceCapacity sets the AvailableInstanceCapacity field's value.

func (*AvailableCapacity) SetAvailableVCpus

func (s *AvailableCapacity) SetAvailableVCpus(v int64) *AvailableCapacity

SetAvailableVCpus sets the AvailableVCpus field's value.

func (AvailableCapacity) String

func (s AvailableCapacity) String() string

String returns the string representation

type BlobAttributeValue

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/BlobAttributeValue

type BlobAttributeValue struct {

    // Value is automatically base64 encoded/decoded by the SDK.
    Value []byte `locationName:"value" type:"blob"`
    // contains filtered or unexported fields
}

func (BlobAttributeValue) GoString

func (s BlobAttributeValue) GoString() string

GoString returns the string representation

func (*BlobAttributeValue) SetValue

func (s *BlobAttributeValue) SetValue(v []byte) *BlobAttributeValue

SetValue sets the Value field's value.

func (BlobAttributeValue) String

func (s BlobAttributeValue) String() string

String returns the string representation

type BlockDeviceMapping

Describes a block device mapping. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/BlockDeviceMapping

type BlockDeviceMapping struct {

    // The device name exposed to the instance (for example, /dev/sdh or xvdh).
    DeviceName *string `locationName:"deviceName" type:"string"`

    // Parameters used to automatically set up EBS volumes when the instance is
    // launched.
    Ebs *EbsBlockDevice `locationName:"ebs" type:"structure"`

    // Suppresses the specified device included in the block device mapping of the
    // AMI.
    NoDevice *string `locationName:"noDevice" type:"string"`

    // The virtual device name (ephemeralN). Instance store volumes are numbered
    // starting from 0. An instance type with 2 available instance store volumes
    // can specify mappings for ephemeral0 and ephemeral1.The number of available
    // instance store volumes depends on the instance type. After you connect to
    // the instance, you must mount the volume.
    //
    // Constraints: For M3 instances, you must specify instance store volumes in
    // the block device mapping for the instance. When you launch an M3 instance,
    // we ignore any instance store volumes specified in the block device mapping
    // for the AMI.
    VirtualName *string `locationName:"virtualName" type:"string"`
    // contains filtered or unexported fields
}

func (BlockDeviceMapping) GoString

func (s BlockDeviceMapping) GoString() string

GoString returns the string representation

func (*BlockDeviceMapping) SetDeviceName

func (s *BlockDeviceMapping) SetDeviceName(v string) *BlockDeviceMapping

SetDeviceName sets the DeviceName field's value.

func (*BlockDeviceMapping) SetEbs

func (s *BlockDeviceMapping) SetEbs(v *EbsBlockDevice) *BlockDeviceMapping

SetEbs sets the Ebs field's value.

func (*BlockDeviceMapping) SetNoDevice

func (s *BlockDeviceMapping) SetNoDevice(v string) *BlockDeviceMapping

SetNoDevice sets the NoDevice field's value.

func (*BlockDeviceMapping) SetVirtualName

func (s *BlockDeviceMapping) SetVirtualName(v string) *BlockDeviceMapping

SetVirtualName sets the VirtualName field's value.

func (BlockDeviceMapping) String

func (s BlockDeviceMapping) String() string

String returns the string representation

type BundleInstanceInput

Contains the parameters for BundleInstance. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/BundleInstanceRequest

type BundleInstanceInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the instance to bundle.
    //
    // Type: String
    //
    // Default: None
    //
    // Required: Yes
    //
    // InstanceId is a required field
    InstanceId *string `type:"string" required:"true"`

    // The bucket in which to store the AMI. You can specify a bucket that you already
    // own or a new bucket that Amazon EC2 creates on your behalf. If you specify
    // a bucket that belongs to someone else, Amazon EC2 returns an error.
    //
    // Storage is a required field
    Storage *Storage `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (BundleInstanceInput) GoString

func (s BundleInstanceInput) GoString() string

GoString returns the string representation

func (*BundleInstanceInput) SetDryRun

func (s *BundleInstanceInput) SetDryRun(v bool) *BundleInstanceInput

SetDryRun sets the DryRun field's value.

func (*BundleInstanceInput) SetInstanceId

func (s *BundleInstanceInput) SetInstanceId(v string) *BundleInstanceInput

SetInstanceId sets the InstanceId field's value.

func (*BundleInstanceInput) SetStorage

func (s *BundleInstanceInput) SetStorage(v *Storage) *BundleInstanceInput

SetStorage sets the Storage field's value.

func (BundleInstanceInput) String

func (s BundleInstanceInput) String() string

String returns the string representation

func (*BundleInstanceInput) Validate

func (s *BundleInstanceInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type BundleInstanceOutput

Contains the output of BundleInstance. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/BundleInstanceResult

type BundleInstanceOutput struct {

    // Information about the bundle task.
    BundleTask *BundleTask `locationName:"bundleInstanceTask" type:"structure"`
    // contains filtered or unexported fields
}

func (BundleInstanceOutput) GoString

func (s BundleInstanceOutput) GoString() string

GoString returns the string representation

func (*BundleInstanceOutput) SetBundleTask

func (s *BundleInstanceOutput) SetBundleTask(v *BundleTask) *BundleInstanceOutput

SetBundleTask sets the BundleTask field's value.

func (BundleInstanceOutput) String

func (s BundleInstanceOutput) String() string

String returns the string representation

type BundleTask

Describes a bundle task. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/BundleTask

type BundleTask struct {

    // The ID of the bundle task.
    BundleId *string `locationName:"bundleId" type:"string"`

    // If the task fails, a description of the error.
    BundleTaskError *BundleTaskError `locationName:"error" type:"structure"`

    // The ID of the instance associated with this bundle task.
    InstanceId *string `locationName:"instanceId" type:"string"`

    // The level of task completion, as a percent (for example, 20%).
    Progress *string `locationName:"progress" type:"string"`

    // The time this task started.
    StartTime *time.Time `locationName:"startTime" type:"timestamp" timestampFormat:"iso8601"`

    // The state of the task.
    State *string `locationName:"state" type:"string" enum:"BundleTaskState"`

    // The Amazon S3 storage locations.
    Storage *Storage `locationName:"storage" type:"structure"`

    // The time of the most recent update for the task.
    UpdateTime *time.Time `locationName:"updateTime" type:"timestamp" timestampFormat:"iso8601"`
    // contains filtered or unexported fields
}

func (BundleTask) GoString

func (s BundleTask) GoString() string

GoString returns the string representation

func (*BundleTask) SetBundleId

func (s *BundleTask) SetBundleId(v string) *BundleTask

SetBundleId sets the BundleId field's value.

func (*BundleTask) SetBundleTaskError

func (s *BundleTask) SetBundleTaskError(v *BundleTaskError) *BundleTask

SetBundleTaskError sets the BundleTaskError field's value.

func (*BundleTask) SetInstanceId

func (s *BundleTask) SetInstanceId(v string) *BundleTask

SetInstanceId sets the InstanceId field's value.

func (*BundleTask) SetProgress

func (s *BundleTask) SetProgress(v string) *BundleTask

SetProgress sets the Progress field's value.

func (*BundleTask) SetStartTime

func (s *BundleTask) SetStartTime(v time.Time) *BundleTask

SetStartTime sets the StartTime field's value.

func (*BundleTask) SetState

func (s *BundleTask) SetState(v string) *BundleTask

SetState sets the State field's value.

func (*BundleTask) SetStorage

func (s *BundleTask) SetStorage(v *Storage) *BundleTask

SetStorage sets the Storage field's value.

func (*BundleTask) SetUpdateTime

func (s *BundleTask) SetUpdateTime(v time.Time) *BundleTask

SetUpdateTime sets the UpdateTime field's value.

func (BundleTask) String

func (s BundleTask) String() string

String returns the string representation

type BundleTaskError

Describes an error for BundleInstance. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/BundleTaskError

type BundleTaskError struct {

    // The error code.
    Code *string `locationName:"code" type:"string"`

    // The error message.
    Message *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

func (BundleTaskError) GoString

func (s BundleTaskError) GoString() string

GoString returns the string representation

func (*BundleTaskError) SetCode

func (s *BundleTaskError) SetCode(v string) *BundleTaskError

SetCode sets the Code field's value.

func (*BundleTaskError) SetMessage

func (s *BundleTaskError) SetMessage(v string) *BundleTaskError

SetMessage sets the Message field's value.

func (BundleTaskError) String

func (s BundleTaskError) String() string

String returns the string representation

type CancelBundleTaskInput

Contains the parameters for CancelBundleTask. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CancelBundleTaskRequest

type CancelBundleTaskInput struct {

    // The ID of the bundle task.
    //
    // BundleId is a required field
    BundleId *string `type:"string" required:"true"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`
    // contains filtered or unexported fields
}

func (CancelBundleTaskInput) GoString

func (s CancelBundleTaskInput) GoString() string

GoString returns the string representation

func (*CancelBundleTaskInput) SetBundleId

func (s *CancelBundleTaskInput) SetBundleId(v string) *CancelBundleTaskInput

SetBundleId sets the BundleId field's value.

func (*CancelBundleTaskInput) SetDryRun

func (s *CancelBundleTaskInput) SetDryRun(v bool) *CancelBundleTaskInput

SetDryRun sets the DryRun field's value.

func (CancelBundleTaskInput) String

func (s CancelBundleTaskInput) String() string

String returns the string representation

func (*CancelBundleTaskInput) Validate

func (s *CancelBundleTaskInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CancelBundleTaskOutput

Contains the output of CancelBundleTask. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CancelBundleTaskResult

type CancelBundleTaskOutput struct {

    // Information about the bundle task.
    BundleTask *BundleTask `locationName:"bundleInstanceTask" type:"structure"`
    // contains filtered or unexported fields
}

func (CancelBundleTaskOutput) GoString

func (s CancelBundleTaskOutput) GoString() string

GoString returns the string representation

func (*CancelBundleTaskOutput) SetBundleTask

func (s *CancelBundleTaskOutput) SetBundleTask(v *BundleTask) *CancelBundleTaskOutput

SetBundleTask sets the BundleTask field's value.

func (CancelBundleTaskOutput) String

func (s CancelBundleTaskOutput) String() string

String returns the string representation

type CancelConversionTaskInput

Contains the parameters for CancelConversionTask. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CancelConversionRequest

type CancelConversionTaskInput struct {

    // The ID of the conversion task.
    //
    // ConversionTaskId is a required field
    ConversionTaskId *string `locationName:"conversionTaskId" type:"string" required:"true"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The reason for canceling the conversion task.
    ReasonMessage *string `locationName:"reasonMessage" type:"string"`
    // contains filtered or unexported fields
}

func (CancelConversionTaskInput) GoString

func (s CancelConversionTaskInput) GoString() string

GoString returns the string representation

func (*CancelConversionTaskInput) SetConversionTaskId

func (s *CancelConversionTaskInput) SetConversionTaskId(v string) *CancelConversionTaskInput

SetConversionTaskId sets the ConversionTaskId field's value.

func (*CancelConversionTaskInput) SetDryRun

func (s *CancelConversionTaskInput) SetDryRun(v bool) *CancelConversionTaskInput

SetDryRun sets the DryRun field's value.

func (*CancelConversionTaskInput) SetReasonMessage

func (s *CancelConversionTaskInput) SetReasonMessage(v string) *CancelConversionTaskInput

SetReasonMessage sets the ReasonMessage field's value.

func (CancelConversionTaskInput) String

func (s CancelConversionTaskInput) String() string

String returns the string representation

func (*CancelConversionTaskInput) Validate

func (s *CancelConversionTaskInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CancelConversionTaskOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CancelConversionTaskOutput

type CancelConversionTaskOutput struct {
    // contains filtered or unexported fields
}

func (CancelConversionTaskOutput) GoString

func (s CancelConversionTaskOutput) GoString() string

GoString returns the string representation

func (CancelConversionTaskOutput) String

func (s CancelConversionTaskOutput) String() string

String returns the string representation

type CancelExportTaskInput

Contains the parameters for CancelExportTask. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CancelExportTaskRequest

type CancelExportTaskInput struct {

    // The ID of the export task. This is the ID returned by CreateInstanceExportTask.
    //
    // ExportTaskId is a required field
    ExportTaskId *string `locationName:"exportTaskId" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (CancelExportTaskInput) GoString

func (s CancelExportTaskInput) GoString() string

GoString returns the string representation

func (*CancelExportTaskInput) SetExportTaskId

func (s *CancelExportTaskInput) SetExportTaskId(v string) *CancelExportTaskInput

SetExportTaskId sets the ExportTaskId field's value.

func (CancelExportTaskInput) String

func (s CancelExportTaskInput) String() string

String returns the string representation

func (*CancelExportTaskInput) Validate

func (s *CancelExportTaskInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CancelExportTaskOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CancelExportTaskOutput

type CancelExportTaskOutput struct {
    // contains filtered or unexported fields
}

func (CancelExportTaskOutput) GoString

func (s CancelExportTaskOutput) GoString() string

GoString returns the string representation

func (CancelExportTaskOutput) String

func (s CancelExportTaskOutput) String() string

String returns the string representation

type CancelImportTaskInput

Contains the parameters for CancelImportTask. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CancelImportTaskRequest

type CancelImportTaskInput struct {

    // The reason for canceling the task.
    CancelReason *string `type:"string"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `type:"boolean"`

    // The ID of the import image or import snapshot task to be canceled.
    ImportTaskId *string `type:"string"`
    // contains filtered or unexported fields
}

func (CancelImportTaskInput) GoString

func (s CancelImportTaskInput) GoString() string

GoString returns the string representation

func (*CancelImportTaskInput) SetCancelReason

func (s *CancelImportTaskInput) SetCancelReason(v string) *CancelImportTaskInput

SetCancelReason sets the CancelReason field's value.

func (*CancelImportTaskInput) SetDryRun

func (s *CancelImportTaskInput) SetDryRun(v bool) *CancelImportTaskInput

SetDryRun sets the DryRun field's value.

func (*CancelImportTaskInput) SetImportTaskId

func (s *CancelImportTaskInput) SetImportTaskId(v string) *CancelImportTaskInput

SetImportTaskId sets the ImportTaskId field's value.

func (CancelImportTaskInput) String

func (s CancelImportTaskInput) String() string

String returns the string representation

type CancelImportTaskOutput

Contains the output for CancelImportTask. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CancelImportTaskResult

type CancelImportTaskOutput struct {

    // The ID of the task being canceled.
    ImportTaskId *string `locationName:"importTaskId" type:"string"`

    // The current state of the task being canceled.
    PreviousState *string `locationName:"previousState" type:"string"`

    // The current state of the task being canceled.
    State *string `locationName:"state" type:"string"`
    // contains filtered or unexported fields
}

func (CancelImportTaskOutput) GoString

func (s CancelImportTaskOutput) GoString() string

GoString returns the string representation

func (*CancelImportTaskOutput) SetImportTaskId

func (s *CancelImportTaskOutput) SetImportTaskId(v string) *CancelImportTaskOutput

SetImportTaskId sets the ImportTaskId field's value.

func (*CancelImportTaskOutput) SetPreviousState

func (s *CancelImportTaskOutput) SetPreviousState(v string) *CancelImportTaskOutput

SetPreviousState sets the PreviousState field's value.

func (*CancelImportTaskOutput) SetState

func (s *CancelImportTaskOutput) SetState(v string) *CancelImportTaskOutput

SetState sets the State field's value.

func (CancelImportTaskOutput) String

func (s CancelImportTaskOutput) String() string

String returns the string representation

type CancelReservedInstancesListingInput

Contains the parameters for CancelReservedInstancesListing. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CancelReservedInstancesListingRequest

type CancelReservedInstancesListingInput struct {

    // The ID of the Reserved Instance listing.
    //
    // ReservedInstancesListingId is a required field
    ReservedInstancesListingId *string `locationName:"reservedInstancesListingId" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (CancelReservedInstancesListingInput) GoString

func (s CancelReservedInstancesListingInput) GoString() string

GoString returns the string representation

func (*CancelReservedInstancesListingInput) SetReservedInstancesListingId

func (s *CancelReservedInstancesListingInput) SetReservedInstancesListingId(v string) *CancelReservedInstancesListingInput

SetReservedInstancesListingId sets the ReservedInstancesListingId field's value.

func (CancelReservedInstancesListingInput) String

func (s CancelReservedInstancesListingInput) String() string

String returns the string representation

func (*CancelReservedInstancesListingInput) Validate

func (s *CancelReservedInstancesListingInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CancelReservedInstancesListingOutput

Contains the output of CancelReservedInstancesListing. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CancelReservedInstancesListingResult

type CancelReservedInstancesListingOutput struct {

    // The Reserved Instance listing.
    ReservedInstancesListings []*ReservedInstancesListing `locationName:"reservedInstancesListingsSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (CancelReservedInstancesListingOutput) GoString

func (s CancelReservedInstancesListingOutput) GoString() string

GoString returns the string representation

func (*CancelReservedInstancesListingOutput) SetReservedInstancesListings

func (s *CancelReservedInstancesListingOutput) SetReservedInstancesListings(v []*ReservedInstancesListing) *CancelReservedInstancesListingOutput

SetReservedInstancesListings sets the ReservedInstancesListings field's value.

func (CancelReservedInstancesListingOutput) String

func (s CancelReservedInstancesListingOutput) String() string

String returns the string representation

type CancelSpotFleetRequestsError

Describes a Spot fleet error. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CancelSpotFleetRequestsError

type CancelSpotFleetRequestsError struct {

    // The error code.
    //
    // Code is a required field
    Code *string `locationName:"code" type:"string" required:"true" enum:"CancelBatchErrorCode"`

    // The description for the error code.
    //
    // Message is a required field
    Message *string `locationName:"message" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (CancelSpotFleetRequestsError) GoString

func (s CancelSpotFleetRequestsError) GoString() string

GoString returns the string representation

func (*CancelSpotFleetRequestsError) SetCode

func (s *CancelSpotFleetRequestsError) SetCode(v string) *CancelSpotFleetRequestsError

SetCode sets the Code field's value.

func (*CancelSpotFleetRequestsError) SetMessage

func (s *CancelSpotFleetRequestsError) SetMessage(v string) *CancelSpotFleetRequestsError

SetMessage sets the Message field's value.

func (CancelSpotFleetRequestsError) String

func (s CancelSpotFleetRequestsError) String() string

String returns the string representation

type CancelSpotFleetRequestsErrorItem

Describes a Spot fleet request that was not successfully canceled. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CancelSpotFleetRequestsErrorItem

type CancelSpotFleetRequestsErrorItem struct {

    // The error.
    //
    // Error is a required field
    Error *CancelSpotFleetRequestsError `locationName:"error" type:"structure" required:"true"`

    // The ID of the Spot fleet request.
    //
    // SpotFleetRequestId is a required field
    SpotFleetRequestId *string `locationName:"spotFleetRequestId" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (CancelSpotFleetRequestsErrorItem) GoString

func (s CancelSpotFleetRequestsErrorItem) GoString() string

GoString returns the string representation

func (*CancelSpotFleetRequestsErrorItem) SetError

func (s *CancelSpotFleetRequestsErrorItem) SetError(v *CancelSpotFleetRequestsError) *CancelSpotFleetRequestsErrorItem

SetError sets the Error field's value.

func (*CancelSpotFleetRequestsErrorItem) SetSpotFleetRequestId

func (s *CancelSpotFleetRequestsErrorItem) SetSpotFleetRequestId(v string) *CancelSpotFleetRequestsErrorItem

SetSpotFleetRequestId sets the SpotFleetRequestId field's value.

func (CancelSpotFleetRequestsErrorItem) String

func (s CancelSpotFleetRequestsErrorItem) String() string

String returns the string representation

type CancelSpotFleetRequestsInput

Contains the parameters for CancelSpotFleetRequests. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CancelSpotFleetRequestsRequest

type CancelSpotFleetRequestsInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The IDs of the Spot fleet requests.
    //
    // SpotFleetRequestIds is a required field
    SpotFleetRequestIds []*string `locationName:"spotFleetRequestId" locationNameList:"item" type:"list" required:"true"`

    // Indicates whether to terminate instances for a Spot fleet request if it is
    // canceled successfully.
    //
    // TerminateInstances is a required field
    TerminateInstances *bool `locationName:"terminateInstances" type:"boolean" required:"true"`
    // contains filtered or unexported fields
}

func (CancelSpotFleetRequestsInput) GoString

func (s CancelSpotFleetRequestsInput) GoString() string

GoString returns the string representation

func (*CancelSpotFleetRequestsInput) SetDryRun

func (s *CancelSpotFleetRequestsInput) SetDryRun(v bool) *CancelSpotFleetRequestsInput

SetDryRun sets the DryRun field's value.

func (*CancelSpotFleetRequestsInput) SetSpotFleetRequestIds

func (s *CancelSpotFleetRequestsInput) SetSpotFleetRequestIds(v []*string) *CancelSpotFleetRequestsInput

SetSpotFleetRequestIds sets the SpotFleetRequestIds field's value.

func (*CancelSpotFleetRequestsInput) SetTerminateInstances

func (s *CancelSpotFleetRequestsInput) SetTerminateInstances(v bool) *CancelSpotFleetRequestsInput

SetTerminateInstances sets the TerminateInstances field's value.

func (CancelSpotFleetRequestsInput) String

func (s CancelSpotFleetRequestsInput) String() string

String returns the string representation

func (*CancelSpotFleetRequestsInput) Validate

func (s *CancelSpotFleetRequestsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CancelSpotFleetRequestsOutput

Contains the output of CancelSpotFleetRequests. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CancelSpotFleetRequestsResponse

type CancelSpotFleetRequestsOutput struct {

    // Information about the Spot fleet requests that are successfully canceled.
    SuccessfulFleetRequests []*CancelSpotFleetRequestsSuccessItem `locationName:"successfulFleetRequestSet" locationNameList:"item" type:"list"`

    // Information about the Spot fleet requests that are not successfully canceled.
    UnsuccessfulFleetRequests []*CancelSpotFleetRequestsErrorItem `locationName:"unsuccessfulFleetRequestSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (CancelSpotFleetRequestsOutput) GoString

func (s CancelSpotFleetRequestsOutput) GoString() string

GoString returns the string representation

func (*CancelSpotFleetRequestsOutput) SetSuccessfulFleetRequests

func (s *CancelSpotFleetRequestsOutput) SetSuccessfulFleetRequests(v []*CancelSpotFleetRequestsSuccessItem) *CancelSpotFleetRequestsOutput

SetSuccessfulFleetRequests sets the SuccessfulFleetRequests field's value.

func (*CancelSpotFleetRequestsOutput) SetUnsuccessfulFleetRequests

func (s *CancelSpotFleetRequestsOutput) SetUnsuccessfulFleetRequests(v []*CancelSpotFleetRequestsErrorItem) *CancelSpotFleetRequestsOutput

SetUnsuccessfulFleetRequests sets the UnsuccessfulFleetRequests field's value.

func (CancelSpotFleetRequestsOutput) String

func (s CancelSpotFleetRequestsOutput) String() string

String returns the string representation

type CancelSpotFleetRequestsSuccessItem

Describes a Spot fleet request that was successfully canceled. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CancelSpotFleetRequestsSuccessItem

type CancelSpotFleetRequestsSuccessItem struct {

    // The current state of the Spot fleet request.
    //
    // CurrentSpotFleetRequestState is a required field
    CurrentSpotFleetRequestState *string `locationName:"currentSpotFleetRequestState" type:"string" required:"true" enum:"BatchState"`

    // The previous state of the Spot fleet request.
    //
    // PreviousSpotFleetRequestState is a required field
    PreviousSpotFleetRequestState *string `locationName:"previousSpotFleetRequestState" type:"string" required:"true" enum:"BatchState"`

    // The ID of the Spot fleet request.
    //
    // SpotFleetRequestId is a required field
    SpotFleetRequestId *string `locationName:"spotFleetRequestId" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (CancelSpotFleetRequestsSuccessItem) GoString

func (s CancelSpotFleetRequestsSuccessItem) GoString() string

GoString returns the string representation

func (*CancelSpotFleetRequestsSuccessItem) SetCurrentSpotFleetRequestState

func (s *CancelSpotFleetRequestsSuccessItem) SetCurrentSpotFleetRequestState(v string) *CancelSpotFleetRequestsSuccessItem

SetCurrentSpotFleetRequestState sets the CurrentSpotFleetRequestState field's value.

func (*CancelSpotFleetRequestsSuccessItem) SetPreviousSpotFleetRequestState

func (s *CancelSpotFleetRequestsSuccessItem) SetPreviousSpotFleetRequestState(v string) *CancelSpotFleetRequestsSuccessItem

SetPreviousSpotFleetRequestState sets the PreviousSpotFleetRequestState field's value.

func (*CancelSpotFleetRequestsSuccessItem) SetSpotFleetRequestId

func (s *CancelSpotFleetRequestsSuccessItem) SetSpotFleetRequestId(v string) *CancelSpotFleetRequestsSuccessItem

SetSpotFleetRequestId sets the SpotFleetRequestId field's value.

func (CancelSpotFleetRequestsSuccessItem) String

func (s CancelSpotFleetRequestsSuccessItem) String() string

String returns the string representation

type CancelSpotInstanceRequestsInput

Contains the parameters for CancelSpotInstanceRequests. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CancelSpotInstanceRequestsRequest

type CancelSpotInstanceRequestsInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // One or more Spot instance request IDs.
    //
    // SpotInstanceRequestIds is a required field
    SpotInstanceRequestIds []*string `locationName:"SpotInstanceRequestId" locationNameList:"SpotInstanceRequestId" type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (CancelSpotInstanceRequestsInput) GoString

func (s CancelSpotInstanceRequestsInput) GoString() string

GoString returns the string representation

func (*CancelSpotInstanceRequestsInput) SetDryRun

func (s *CancelSpotInstanceRequestsInput) SetDryRun(v bool) *CancelSpotInstanceRequestsInput

SetDryRun sets the DryRun field's value.

func (*CancelSpotInstanceRequestsInput) SetSpotInstanceRequestIds

func (s *CancelSpotInstanceRequestsInput) SetSpotInstanceRequestIds(v []*string) *CancelSpotInstanceRequestsInput

SetSpotInstanceRequestIds sets the SpotInstanceRequestIds field's value.

func (CancelSpotInstanceRequestsInput) String

func (s CancelSpotInstanceRequestsInput) String() string

String returns the string representation

func (*CancelSpotInstanceRequestsInput) Validate

func (s *CancelSpotInstanceRequestsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CancelSpotInstanceRequestsOutput

Contains the output of CancelSpotInstanceRequests. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CancelSpotInstanceRequestsResult

type CancelSpotInstanceRequestsOutput struct {

    // One or more Spot instance requests.
    CancelledSpotInstanceRequests []*CancelledSpotInstanceRequest `locationName:"spotInstanceRequestSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (CancelSpotInstanceRequestsOutput) GoString

func (s CancelSpotInstanceRequestsOutput) GoString() string

GoString returns the string representation

func (*CancelSpotInstanceRequestsOutput) SetCancelledSpotInstanceRequests

func (s *CancelSpotInstanceRequestsOutput) SetCancelledSpotInstanceRequests(v []*CancelledSpotInstanceRequest) *CancelSpotInstanceRequestsOutput

SetCancelledSpotInstanceRequests sets the CancelledSpotInstanceRequests field's value.

func (CancelSpotInstanceRequestsOutput) String

func (s CancelSpotInstanceRequestsOutput) String() string

String returns the string representation

type CancelledSpotInstanceRequest

Describes a request to cancel a Spot instance. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CancelledSpotInstanceRequest

type CancelledSpotInstanceRequest struct {

    // The ID of the Spot instance request.
    SpotInstanceRequestId *string `locationName:"spotInstanceRequestId" type:"string"`

    // The state of the Spot instance request.
    State *string `locationName:"state" type:"string" enum:"CancelSpotInstanceRequestState"`
    // contains filtered or unexported fields
}

func (CancelledSpotInstanceRequest) GoString

func (s CancelledSpotInstanceRequest) GoString() string

GoString returns the string representation

func (*CancelledSpotInstanceRequest) SetSpotInstanceRequestId

func (s *CancelledSpotInstanceRequest) SetSpotInstanceRequestId(v string) *CancelledSpotInstanceRequest

SetSpotInstanceRequestId sets the SpotInstanceRequestId field's value.

func (*CancelledSpotInstanceRequest) SetState

func (s *CancelledSpotInstanceRequest) SetState(v string) *CancelledSpotInstanceRequest

SetState sets the State field's value.

func (CancelledSpotInstanceRequest) String

func (s CancelledSpotInstanceRequest) String() string

String returns the string representation

type ClassicLinkDnsSupport

Describes the ClassicLink DNS support status of a VPC. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ClassicLinkDnsSupport

type ClassicLinkDnsSupport struct {

    // Indicates whether ClassicLink DNS support is enabled for the VPC.
    ClassicLinkDnsSupported *bool `locationName:"classicLinkDnsSupported" type:"boolean"`

    // The ID of the VPC.
    VpcId *string `locationName:"vpcId" type:"string"`
    // contains filtered or unexported fields
}

func (ClassicLinkDnsSupport) GoString

func (s ClassicLinkDnsSupport) GoString() string

GoString returns the string representation

func (*ClassicLinkDnsSupport) SetClassicLinkDnsSupported

func (s *ClassicLinkDnsSupport) SetClassicLinkDnsSupported(v bool) *ClassicLinkDnsSupport

SetClassicLinkDnsSupported sets the ClassicLinkDnsSupported field's value.

func (*ClassicLinkDnsSupport) SetVpcId

func (s *ClassicLinkDnsSupport) SetVpcId(v string) *ClassicLinkDnsSupport

SetVpcId sets the VpcId field's value.

func (ClassicLinkDnsSupport) String

func (s ClassicLinkDnsSupport) String() string

String returns the string representation

type ClassicLinkInstance

Describes a linked EC2-Classic instance. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ClassicLinkInstance

type ClassicLinkInstance struct {

    // A list of security groups.
    Groups []*GroupIdentifier `locationName:"groupSet" locationNameList:"item" type:"list"`

    // The ID of the instance.
    InstanceId *string `locationName:"instanceId" type:"string"`

    // Any tags assigned to the instance.
    Tags []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"`

    // The ID of the VPC.
    VpcId *string `locationName:"vpcId" type:"string"`
    // contains filtered or unexported fields
}

func (ClassicLinkInstance) GoString

func (s ClassicLinkInstance) GoString() string

GoString returns the string representation

func (*ClassicLinkInstance) SetGroups

func (s *ClassicLinkInstance) SetGroups(v []*GroupIdentifier) *ClassicLinkInstance

SetGroups sets the Groups field's value.

func (*ClassicLinkInstance) SetInstanceId

func (s *ClassicLinkInstance) SetInstanceId(v string) *ClassicLinkInstance

SetInstanceId sets the InstanceId field's value.

func (*ClassicLinkInstance) SetTags

func (s *ClassicLinkInstance) SetTags(v []*Tag) *ClassicLinkInstance

SetTags sets the Tags field's value.

func (*ClassicLinkInstance) SetVpcId

func (s *ClassicLinkInstance) SetVpcId(v string) *ClassicLinkInstance

SetVpcId sets the VpcId field's value.

func (ClassicLinkInstance) String

func (s ClassicLinkInstance) String() string

String returns the string representation

type ClientData

Describes the client-specific data. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ClientData

type ClientData struct {

    // A user-defined comment about the disk upload.
    Comment *string `type:"string"`

    // The time that the disk upload ends.
    UploadEnd *time.Time `type:"timestamp" timestampFormat:"iso8601"`

    // The size of the uploaded disk image, in GiB.
    UploadSize *float64 `type:"double"`

    // The time that the disk upload starts.
    UploadStart *time.Time `type:"timestamp" timestampFormat:"iso8601"`
    // contains filtered or unexported fields
}

func (ClientData) GoString

func (s ClientData) GoString() string

GoString returns the string representation

func (*ClientData) SetComment

func (s *ClientData) SetComment(v string) *ClientData

SetComment sets the Comment field's value.

func (*ClientData) SetUploadEnd

func (s *ClientData) SetUploadEnd(v time.Time) *ClientData

SetUploadEnd sets the UploadEnd field's value.

func (*ClientData) SetUploadSize

func (s *ClientData) SetUploadSize(v float64) *ClientData

SetUploadSize sets the UploadSize field's value.

func (*ClientData) SetUploadStart

func (s *ClientData) SetUploadStart(v time.Time) *ClientData

SetUploadStart sets the UploadStart field's value.

func (ClientData) String

func (s ClientData) String() string

String returns the string representation

type ConfirmProductInstanceInput

Contains the parameters for ConfirmProductInstance. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ConfirmProductInstanceRequest

type ConfirmProductInstanceInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the instance.
    //
    // InstanceId is a required field
    InstanceId *string `type:"string" required:"true"`

    // The product code. This must be a product code that you own.
    //
    // ProductCode is a required field
    ProductCode *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (ConfirmProductInstanceInput) GoString

func (s ConfirmProductInstanceInput) GoString() string

GoString returns the string representation

func (*ConfirmProductInstanceInput) SetDryRun

func (s *ConfirmProductInstanceInput) SetDryRun(v bool) *ConfirmProductInstanceInput

SetDryRun sets the DryRun field's value.

func (*ConfirmProductInstanceInput) SetInstanceId

func (s *ConfirmProductInstanceInput) SetInstanceId(v string) *ConfirmProductInstanceInput

SetInstanceId sets the InstanceId field's value.

func (*ConfirmProductInstanceInput) SetProductCode

func (s *ConfirmProductInstanceInput) SetProductCode(v string) *ConfirmProductInstanceInput

SetProductCode sets the ProductCode field's value.

func (ConfirmProductInstanceInput) String

func (s ConfirmProductInstanceInput) String() string

String returns the string representation

func (*ConfirmProductInstanceInput) Validate

func (s *ConfirmProductInstanceInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ConfirmProductInstanceOutput

Contains the output of ConfirmProductInstance. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ConfirmProductInstanceResult

type ConfirmProductInstanceOutput struct {

    // The AWS account ID of the instance owner. This is only present if the product
    // code is attached to the instance.
    OwnerId *string `locationName:"ownerId" type:"string"`

    // The return value of the request. Returns true if the specified product code
    // is owned by the requester and associated with the specified instance.
    Return *bool `locationName:"return" type:"boolean"`
    // contains filtered or unexported fields
}

func (ConfirmProductInstanceOutput) GoString

func (s ConfirmProductInstanceOutput) GoString() string

GoString returns the string representation

func (*ConfirmProductInstanceOutput) SetOwnerId

func (s *ConfirmProductInstanceOutput) SetOwnerId(v string) *ConfirmProductInstanceOutput

SetOwnerId sets the OwnerId field's value.

func (*ConfirmProductInstanceOutput) SetReturn

func (s *ConfirmProductInstanceOutput) SetReturn(v bool) *ConfirmProductInstanceOutput

SetReturn sets the Return field's value.

func (ConfirmProductInstanceOutput) String

func (s ConfirmProductInstanceOutput) String() string

String returns the string representation

type ConversionTask

Describes a conversion task. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ConversionTask

type ConversionTask struct {

    // The ID of the conversion task.
    //
    // ConversionTaskId is a required field
    ConversionTaskId *string `locationName:"conversionTaskId" type:"string" required:"true"`

    // The time when the task expires. If the upload isn't complete before the expiration
    // time, we automatically cancel the task.
    ExpirationTime *string `locationName:"expirationTime" type:"string"`

    // If the task is for importing an instance, this contains information about
    // the import instance task.
    ImportInstance *ImportInstanceTaskDetails `locationName:"importInstance" type:"structure"`

    // If the task is for importing a volume, this contains information about the
    // import volume task.
    ImportVolume *ImportVolumeTaskDetails `locationName:"importVolume" type:"structure"`

    // The state of the conversion task.
    //
    // State is a required field
    State *string `locationName:"state" type:"string" required:"true" enum:"ConversionTaskState"`

    // The status message related to the conversion task.
    StatusMessage *string `locationName:"statusMessage" type:"string"`

    // Any tags assigned to the task.
    Tags []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (ConversionTask) GoString

func (s ConversionTask) GoString() string

GoString returns the string representation

func (*ConversionTask) SetConversionTaskId

func (s *ConversionTask) SetConversionTaskId(v string) *ConversionTask

SetConversionTaskId sets the ConversionTaskId field's value.

func (*ConversionTask) SetExpirationTime

func (s *ConversionTask) SetExpirationTime(v string) *ConversionTask

SetExpirationTime sets the ExpirationTime field's value.

func (*ConversionTask) SetImportInstance

func (s *ConversionTask) SetImportInstance(v *ImportInstanceTaskDetails) *ConversionTask

SetImportInstance sets the ImportInstance field's value.

func (*ConversionTask) SetImportVolume

func (s *ConversionTask) SetImportVolume(v *ImportVolumeTaskDetails) *ConversionTask

SetImportVolume sets the ImportVolume field's value.

func (*ConversionTask) SetState

func (s *ConversionTask) SetState(v string) *ConversionTask

SetState sets the State field's value.

func (*ConversionTask) SetStatusMessage

func (s *ConversionTask) SetStatusMessage(v string) *ConversionTask

SetStatusMessage sets the StatusMessage field's value.

func (*ConversionTask) SetTags

func (s *ConversionTask) SetTags(v []*Tag) *ConversionTask

SetTags sets the Tags field's value.

func (ConversionTask) String

func (s ConversionTask) String() string

String returns the string representation

type CopyImageInput

Contains the parameters for CopyImage. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CopyImageRequest

type CopyImageInput struct {

    // Unique, case-sensitive identifier you provide to ensure idempotency of the
    // request. For more information, see How to Ensure Idempotency (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Run_Instance_Idempotency.html)
    // in the Amazon Elastic Compute Cloud User Guide.
    ClientToken *string `type:"string"`

    // A description for the new AMI in the destination region.
    Description *string `type:"string"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // Specifies whether the destination snapshots of the copied image should be
    // encrypted. The default CMK for EBS is used unless a non-default AWS Key Management
    // Service (AWS KMS) CMK is specified with KmsKeyId. For more information, see
    // Amazon EBS Encryption (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html)
    // in the Amazon Elastic Compute Cloud User Guide.
    Encrypted *bool `locationName:"encrypted" type:"boolean"`

    // The full ARN of the AWS Key Management Service (AWS KMS) CMK to use when
    // encrypting the snapshots of an image during a copy operation. This parameter
    // is only required if you want to use a non-default CMK; if this parameter
    // is not specified, the default CMK for EBS is used. The ARN contains the arn:aws:kms
    // namespace, followed by the region of the CMK, the AWS account ID of the CMK
    // owner, the key namespace, and then the CMK ID. For example, arn:aws:kms:us-east-1:012345678910:key/abcd1234-a123-456a-a12b-a123b4cd56ef.
    // The specified CMK must exist in the region that the snapshot is being copied
    // to. If a KmsKeyId is specified, the Encrypted flag must also be set.
    KmsKeyId *string `locationName:"kmsKeyId" type:"string"`

    // The name of the new AMI in the destination region.
    //
    // Name is a required field
    Name *string `type:"string" required:"true"`

    // The ID of the AMI to copy.
    //
    // SourceImageId is a required field
    SourceImageId *string `type:"string" required:"true"`

    // The name of the region that contains the AMI to copy.
    //
    // SourceRegion is a required field
    SourceRegion *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (CopyImageInput) GoString

func (s CopyImageInput) GoString() string

GoString returns the string representation

func (*CopyImageInput) SetClientToken

func (s *CopyImageInput) SetClientToken(v string) *CopyImageInput

SetClientToken sets the ClientToken field's value.

func (*CopyImageInput) SetDescription

func (s *CopyImageInput) SetDescription(v string) *CopyImageInput

SetDescription sets the Description field's value.

func (*CopyImageInput) SetDryRun

func (s *CopyImageInput) SetDryRun(v bool) *CopyImageInput

SetDryRun sets the DryRun field's value.

func (*CopyImageInput) SetEncrypted

func (s *CopyImageInput) SetEncrypted(v bool) *CopyImageInput

SetEncrypted sets the Encrypted field's value.

func (*CopyImageInput) SetKmsKeyId

func (s *CopyImageInput) SetKmsKeyId(v string) *CopyImageInput

SetKmsKeyId sets the KmsKeyId field's value.

func (*CopyImageInput) SetName

func (s *CopyImageInput) SetName(v string) *CopyImageInput

SetName sets the Name field's value.

func (*CopyImageInput) SetSourceImageId

func (s *CopyImageInput) SetSourceImageId(v string) *CopyImageInput

SetSourceImageId sets the SourceImageId field's value.

func (*CopyImageInput) SetSourceRegion

func (s *CopyImageInput) SetSourceRegion(v string) *CopyImageInput

SetSourceRegion sets the SourceRegion field's value.

func (CopyImageInput) String

func (s CopyImageInput) String() string

String returns the string representation

func (*CopyImageInput) Validate

func (s *CopyImageInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CopyImageOutput

Contains the output of CopyImage. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CopyImageResult

type CopyImageOutput struct {

    // The ID of the new AMI.
    ImageId *string `locationName:"imageId" type:"string"`
    // contains filtered or unexported fields
}

func (CopyImageOutput) GoString

func (s CopyImageOutput) GoString() string

GoString returns the string representation

func (*CopyImageOutput) SetImageId

func (s *CopyImageOutput) SetImageId(v string) *CopyImageOutput

SetImageId sets the ImageId field's value.

func (CopyImageOutput) String

func (s CopyImageOutput) String() string

String returns the string representation

type CopySnapshotInput

Contains the parameters for CopySnapshot. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CopySnapshotRequest

type CopySnapshotInput struct {

    // A description for the EBS snapshot.
    Description *string `type:"string"`

    // The destination region to use in the PresignedUrl parameter of a snapshot
    // copy operation. This parameter is only valid for specifying the destination
    // region in a PresignedUrl parameter, where it is required.
    //
    // CopySnapshot sends the snapshot copy to the regional endpoint that you send
    // the HTTP request to, such as ec2.us-east-1.amazonaws.com (in the AWS CLI,
    // this is specified with the --region parameter or the default region in your
    // AWS configuration file).
    DestinationRegion *string `locationName:"destinationRegion" type:"string"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // Specifies whether the destination snapshot should be encrypted. You can encrypt
    // a copy of an unencrypted snapshot using this flag, but you cannot use it
    // to create an unencrypted copy from an encrypted snapshot. Your default CMK
    // for EBS is used unless a non-default AWS Key Management Service (AWS KMS)
    // CMK is specified with KmsKeyId. For more information, see Amazon EBS Encryption
    // (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html) in
    // the Amazon Elastic Compute Cloud User Guide.
    Encrypted *bool `locationName:"encrypted" type:"boolean"`

    // The full ARN of the AWS Key Management Service (AWS KMS) CMK to use when
    // creating the snapshot copy. This parameter is only required if you want to
    // use a non-default CMK; if this parameter is not specified, the default CMK
    // for EBS is used. The ARN contains the arn:aws:kms namespace, followed by
    // the region of the CMK, the AWS account ID of the CMK owner, the key namespace,
    // and then the CMK ID. For example, arn:aws:kms:us-east-1:012345678910:key/abcd1234-a123-456a-a12b-a123b4cd56ef.
    // The specified CMK must exist in the region that the snapshot is being copied
    // to. If a KmsKeyId is specified, the Encrypted flag must also be set.
    KmsKeyId *string `locationName:"kmsKeyId" type:"string"`

    // The pre-signed URL that facilitates copying an encrypted snapshot. This parameter
    // is only required when copying an encrypted snapshot with the Amazon EC2 Query
    // API; it is available as an optional parameter in all other cases. The PresignedUrl
    // should use the snapshot source endpoint, the CopySnapshot action, and include
    // the SourceRegion, SourceSnapshotId, and DestinationRegion parameters. The
    // PresignedUrl must be signed using AWS Signature Version 4. Because EBS snapshots
    // are stored in Amazon S3, the signing algorithm for this parameter uses the
    // same logic that is described in Authenticating Requests by Using Query Parameters
    // (AWS Signature Version 4) (http://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html)
    // in the Amazon Simple Storage Service API Reference. An invalid or improperly
    // signed PresignedUrl will cause the copy operation to fail asynchronously,
    // and the snapshot will move to an error state.
    PresignedUrl *string `locationName:"presignedUrl" type:"string"`

    // The ID of the region that contains the snapshot to be copied.
    //
    // SourceRegion is a required field
    SourceRegion *string `type:"string" required:"true"`

    // The ID of the EBS snapshot to copy.
    //
    // SourceSnapshotId is a required field
    SourceSnapshotId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (CopySnapshotInput) GoString

func (s CopySnapshotInput) GoString() string

GoString returns the string representation

func (*CopySnapshotInput) SetDescription

func (s *CopySnapshotInput) SetDescription(v string) *CopySnapshotInput

SetDescription sets the Description field's value.

func (*CopySnapshotInput) SetDestinationRegion

func (s *CopySnapshotInput) SetDestinationRegion(v string) *CopySnapshotInput

SetDestinationRegion sets the DestinationRegion field's value.

func (*CopySnapshotInput) SetDryRun

func (s *CopySnapshotInput) SetDryRun(v bool) *CopySnapshotInput

SetDryRun sets the DryRun field's value.

func (*CopySnapshotInput) SetEncrypted

func (s *CopySnapshotInput) SetEncrypted(v bool) *CopySnapshotInput

SetEncrypted sets the Encrypted field's value.

func (*CopySnapshotInput) SetKmsKeyId

func (s *CopySnapshotInput) SetKmsKeyId(v string) *CopySnapshotInput

SetKmsKeyId sets the KmsKeyId field's value.

func (*CopySnapshotInput) SetPresignedUrl

func (s *CopySnapshotInput) SetPresignedUrl(v string) *CopySnapshotInput

SetPresignedUrl sets the PresignedUrl field's value.

func (*CopySnapshotInput) SetSourceRegion

func (s *CopySnapshotInput) SetSourceRegion(v string) *CopySnapshotInput

SetSourceRegion sets the SourceRegion field's value.

func (*CopySnapshotInput) SetSourceSnapshotId

func (s *CopySnapshotInput) SetSourceSnapshotId(v string) *CopySnapshotInput

SetSourceSnapshotId sets the SourceSnapshotId field's value.

func (CopySnapshotInput) String

func (s CopySnapshotInput) String() string

String returns the string representation

func (*CopySnapshotInput) Validate

func (s *CopySnapshotInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CopySnapshotOutput

Contains the output of CopySnapshot. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CopySnapshotResult

type CopySnapshotOutput struct {

    // The ID of the new snapshot.
    SnapshotId *string `locationName:"snapshotId" type:"string"`
    // contains filtered or unexported fields
}

func (CopySnapshotOutput) GoString

func (s CopySnapshotOutput) GoString() string

GoString returns the string representation

func (*CopySnapshotOutput) SetSnapshotId

func (s *CopySnapshotOutput) SetSnapshotId(v string) *CopySnapshotOutput

SetSnapshotId sets the SnapshotId field's value.

func (CopySnapshotOutput) String

func (s CopySnapshotOutput) String() string

String returns the string representation

type CreateCustomerGatewayInput

Contains the parameters for CreateCustomerGateway. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateCustomerGatewayRequest

type CreateCustomerGatewayInput struct {

    // For devices that support BGP, the customer gateway's BGP ASN.
    //
    // Default: 65000
    //
    // BgpAsn is a required field
    BgpAsn *int64 `type:"integer" required:"true"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The Internet-routable IP address for the customer gateway's outside interface.
    // The address must be static.
    //
    // PublicIp is a required field
    PublicIp *string `locationName:"IpAddress" type:"string" required:"true"`

    // The type of VPN connection that this customer gateway supports (ipsec.1).
    //
    // Type is a required field
    Type *string `type:"string" required:"true" enum:"GatewayType"`
    // contains filtered or unexported fields
}

func (CreateCustomerGatewayInput) GoString

func (s CreateCustomerGatewayInput) GoString() string

GoString returns the string representation

func (*CreateCustomerGatewayInput) SetBgpAsn

func (s *CreateCustomerGatewayInput) SetBgpAsn(v int64) *CreateCustomerGatewayInput

SetBgpAsn sets the BgpAsn field's value.

func (*CreateCustomerGatewayInput) SetDryRun

func (s *CreateCustomerGatewayInput) SetDryRun(v bool) *CreateCustomerGatewayInput

SetDryRun sets the DryRun field's value.

func (*CreateCustomerGatewayInput) SetPublicIp

func (s *CreateCustomerGatewayInput) SetPublicIp(v string) *CreateCustomerGatewayInput

SetPublicIp sets the PublicIp field's value.

func (*CreateCustomerGatewayInput) SetType

func (s *CreateCustomerGatewayInput) SetType(v string) *CreateCustomerGatewayInput

SetType sets the Type field's value.

func (CreateCustomerGatewayInput) String

func (s CreateCustomerGatewayInput) String() string

String returns the string representation

func (*CreateCustomerGatewayInput) Validate

func (s *CreateCustomerGatewayInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateCustomerGatewayOutput

Contains the output of CreateCustomerGateway. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateCustomerGatewayResult

type CreateCustomerGatewayOutput struct {

    // Information about the customer gateway.
    CustomerGateway *CustomerGateway `locationName:"customerGateway" type:"structure"`
    // contains filtered or unexported fields
}

func (CreateCustomerGatewayOutput) GoString

func (s CreateCustomerGatewayOutput) GoString() string

GoString returns the string representation

func (*CreateCustomerGatewayOutput) SetCustomerGateway

func (s *CreateCustomerGatewayOutput) SetCustomerGateway(v *CustomerGateway) *CreateCustomerGatewayOutput

SetCustomerGateway sets the CustomerGateway field's value.

func (CreateCustomerGatewayOutput) String

func (s CreateCustomerGatewayOutput) String() string

String returns the string representation

type CreateDhcpOptionsInput

Contains the parameters for CreateDhcpOptions. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateDhcpOptionsRequest

type CreateDhcpOptionsInput struct {

    // A DHCP configuration option.
    //
    // DhcpConfigurations is a required field
    DhcpConfigurations []*NewDhcpConfiguration `locationName:"dhcpConfiguration" locationNameList:"item" type:"list" required:"true"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`
    // contains filtered or unexported fields
}

func (CreateDhcpOptionsInput) GoString

func (s CreateDhcpOptionsInput) GoString() string

GoString returns the string representation

func (*CreateDhcpOptionsInput) SetDhcpConfigurations

func (s *CreateDhcpOptionsInput) SetDhcpConfigurations(v []*NewDhcpConfiguration) *CreateDhcpOptionsInput

SetDhcpConfigurations sets the DhcpConfigurations field's value.

func (*CreateDhcpOptionsInput) SetDryRun

func (s *CreateDhcpOptionsInput) SetDryRun(v bool) *CreateDhcpOptionsInput

SetDryRun sets the DryRun field's value.

func (CreateDhcpOptionsInput) String

func (s CreateDhcpOptionsInput) String() string

String returns the string representation

func (*CreateDhcpOptionsInput) Validate

func (s *CreateDhcpOptionsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateDhcpOptionsOutput

Contains the output of CreateDhcpOptions. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateDhcpOptionsResult

type CreateDhcpOptionsOutput struct {

    // A set of DHCP options.
    DhcpOptions *DhcpOptions `locationName:"dhcpOptions" type:"structure"`
    // contains filtered or unexported fields
}

func (CreateDhcpOptionsOutput) GoString

func (s CreateDhcpOptionsOutput) GoString() string

GoString returns the string representation

func (*CreateDhcpOptionsOutput) SetDhcpOptions

func (s *CreateDhcpOptionsOutput) SetDhcpOptions(v *DhcpOptions) *CreateDhcpOptionsOutput

SetDhcpOptions sets the DhcpOptions field's value.

func (CreateDhcpOptionsOutput) String

func (s CreateDhcpOptionsOutput) String() string

String returns the string representation

type CreateEgressOnlyInternetGatewayInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateEgressOnlyInternetGatewayRequest

type CreateEgressOnlyInternetGatewayInput struct {

    // Unique, case-sensitive identifier you provide to ensure the idempotency of
    // the request. For more information, see How to Ensure Idempotency (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Run_Instance_Idempotency.html).
    ClientToken *string `type:"string"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `type:"boolean"`

    // The ID of the VPC for which to create the egress-only Internet gateway.
    //
    // VpcId is a required field
    VpcId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (CreateEgressOnlyInternetGatewayInput) GoString

func (s CreateEgressOnlyInternetGatewayInput) GoString() string

GoString returns the string representation

func (*CreateEgressOnlyInternetGatewayInput) SetClientToken

func (s *CreateEgressOnlyInternetGatewayInput) SetClientToken(v string) *CreateEgressOnlyInternetGatewayInput

SetClientToken sets the ClientToken field's value.

func (*CreateEgressOnlyInternetGatewayInput) SetDryRun

func (s *CreateEgressOnlyInternetGatewayInput) SetDryRun(v bool) *CreateEgressOnlyInternetGatewayInput

SetDryRun sets the DryRun field's value.

func (*CreateEgressOnlyInternetGatewayInput) SetVpcId

func (s *CreateEgressOnlyInternetGatewayInput) SetVpcId(v string) *CreateEgressOnlyInternetGatewayInput

SetVpcId sets the VpcId field's value.

func (CreateEgressOnlyInternetGatewayInput) String

func (s CreateEgressOnlyInternetGatewayInput) String() string

String returns the string representation

func (*CreateEgressOnlyInternetGatewayInput) Validate

func (s *CreateEgressOnlyInternetGatewayInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateEgressOnlyInternetGatewayOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateEgressOnlyInternetGatewayResult

type CreateEgressOnlyInternetGatewayOutput struct {

    // Unique, case-sensitive identifier you provide to ensure the idempotency of
    // the request.
    ClientToken *string `locationName:"clientToken" type:"string"`

    // Information about the egress-only Internet gateway.
    EgressOnlyInternetGateway *EgressOnlyInternetGateway `locationName:"egressOnlyInternetGateway" type:"structure"`
    // contains filtered or unexported fields
}

func (CreateEgressOnlyInternetGatewayOutput) GoString

func (s CreateEgressOnlyInternetGatewayOutput) GoString() string

GoString returns the string representation

func (*CreateEgressOnlyInternetGatewayOutput) SetClientToken

func (s *CreateEgressOnlyInternetGatewayOutput) SetClientToken(v string) *CreateEgressOnlyInternetGatewayOutput

SetClientToken sets the ClientToken field's value.

func (*CreateEgressOnlyInternetGatewayOutput) SetEgressOnlyInternetGateway

func (s *CreateEgressOnlyInternetGatewayOutput) SetEgressOnlyInternetGateway(v *EgressOnlyInternetGateway) *CreateEgressOnlyInternetGatewayOutput

SetEgressOnlyInternetGateway sets the EgressOnlyInternetGateway field's value.

func (CreateEgressOnlyInternetGatewayOutput) String

func (s CreateEgressOnlyInternetGatewayOutput) String() string

String returns the string representation

type CreateFlowLogsInput

Contains the parameters for CreateFlowLogs. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateFlowLogsRequest

type CreateFlowLogsInput struct {

    // Unique, case-sensitive identifier you provide to ensure the idempotency of
    // the request. For more information, see How to Ensure Idempotency (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Run_Instance_Idempotency.html).
    ClientToken *string `type:"string"`

    // The ARN for the IAM role that's used to post flow logs to a CloudWatch Logs
    // log group.
    //
    // DeliverLogsPermissionArn is a required field
    DeliverLogsPermissionArn *string `type:"string" required:"true"`

    // The name of the CloudWatch log group.
    //
    // LogGroupName is a required field
    LogGroupName *string `type:"string" required:"true"`

    // One or more subnet, network interface, or VPC IDs.
    //
    // Constraints: Maximum of 1000 resources
    //
    // ResourceIds is a required field
    ResourceIds []*string `locationName:"ResourceId" locationNameList:"item" type:"list" required:"true"`

    // The type of resource on which to create the flow log.
    //
    // ResourceType is a required field
    ResourceType *string `type:"string" required:"true" enum:"FlowLogsResourceType"`

    // The type of traffic to log.
    //
    // TrafficType is a required field
    TrafficType *string `type:"string" required:"true" enum:"TrafficType"`
    // contains filtered or unexported fields
}

func (CreateFlowLogsInput) GoString

func (s CreateFlowLogsInput) GoString() string

GoString returns the string representation

func (*CreateFlowLogsInput) SetClientToken

func (s *CreateFlowLogsInput) SetClientToken(v string) *CreateFlowLogsInput

SetClientToken sets the ClientToken field's value.

func (*CreateFlowLogsInput) SetDeliverLogsPermissionArn

func (s *CreateFlowLogsInput) SetDeliverLogsPermissionArn(v string) *CreateFlowLogsInput

SetDeliverLogsPermissionArn sets the DeliverLogsPermissionArn field's value.

func (*CreateFlowLogsInput) SetLogGroupName

func (s *CreateFlowLogsInput) SetLogGroupName(v string) *CreateFlowLogsInput

SetLogGroupName sets the LogGroupName field's value.

func (*CreateFlowLogsInput) SetResourceIds

func (s *CreateFlowLogsInput) SetResourceIds(v []*string) *CreateFlowLogsInput

SetResourceIds sets the ResourceIds field's value.

func (*CreateFlowLogsInput) SetResourceType

func (s *CreateFlowLogsInput) SetResourceType(v string) *CreateFlowLogsInput

SetResourceType sets the ResourceType field's value.

func (*CreateFlowLogsInput) SetTrafficType

func (s *CreateFlowLogsInput) SetTrafficType(v string) *CreateFlowLogsInput

SetTrafficType sets the TrafficType field's value.

func (CreateFlowLogsInput) String

func (s CreateFlowLogsInput) String() string

String returns the string representation

func (*CreateFlowLogsInput) Validate

func (s *CreateFlowLogsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateFlowLogsOutput

Contains the output of CreateFlowLogs. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateFlowLogsResult

type CreateFlowLogsOutput struct {

    // Unique, case-sensitive identifier you provide to ensure the idempotency of
    // the request.
    ClientToken *string `locationName:"clientToken" type:"string"`

    // The IDs of the flow logs.
    FlowLogIds []*string `locationName:"flowLogIdSet" locationNameList:"item" type:"list"`

    // Information about the flow logs that could not be created successfully.
    Unsuccessful []*UnsuccessfulItem `locationName:"unsuccessful" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (CreateFlowLogsOutput) GoString

func (s CreateFlowLogsOutput) GoString() string

GoString returns the string representation

func (*CreateFlowLogsOutput) SetClientToken

func (s *CreateFlowLogsOutput) SetClientToken(v string) *CreateFlowLogsOutput

SetClientToken sets the ClientToken field's value.

func (*CreateFlowLogsOutput) SetFlowLogIds

func (s *CreateFlowLogsOutput) SetFlowLogIds(v []*string) *CreateFlowLogsOutput

SetFlowLogIds sets the FlowLogIds field's value.

func (*CreateFlowLogsOutput) SetUnsuccessful

func (s *CreateFlowLogsOutput) SetUnsuccessful(v []*UnsuccessfulItem) *CreateFlowLogsOutput

SetUnsuccessful sets the Unsuccessful field's value.

func (CreateFlowLogsOutput) String

func (s CreateFlowLogsOutput) String() string

String returns the string representation

type CreateFpgaImageInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateFpgaImageRequest

type CreateFpgaImageInput struct {

    // Unique, case-sensitive identifier that you provide to ensure the idempotency
    // of the request. For more information, see Ensuring Idempotency (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Run_Instance_Idempotency.html).
    ClientToken *string `type:"string"`

    // A description for the AFI.
    Description *string `type:"string"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `type:"boolean"`

    // The location of the encrypted design checkpoint in Amazon S3. The input must
    // be a tarball.
    //
    // InputStorageLocation is a required field
    InputStorageLocation *StorageLocation `type:"structure" required:"true"`

    // The location in Amazon S3 for the output logs.
    LogsStorageLocation *StorageLocation `type:"structure"`

    // A name for the AFI.
    Name *string `type:"string"`
    // contains filtered or unexported fields
}

func (CreateFpgaImageInput) GoString

func (s CreateFpgaImageInput) GoString() string

GoString returns the string representation

func (*CreateFpgaImageInput) SetClientToken

func (s *CreateFpgaImageInput) SetClientToken(v string) *CreateFpgaImageInput

SetClientToken sets the ClientToken field's value.

func (*CreateFpgaImageInput) SetDescription

func (s *CreateFpgaImageInput) SetDescription(v string) *CreateFpgaImageInput

SetDescription sets the Description field's value.

func (*CreateFpgaImageInput) SetDryRun

func (s *CreateFpgaImageInput) SetDryRun(v bool) *CreateFpgaImageInput

SetDryRun sets the DryRun field's value.

func (*CreateFpgaImageInput) SetInputStorageLocation

func (s *CreateFpgaImageInput) SetInputStorageLocation(v *StorageLocation) *CreateFpgaImageInput

SetInputStorageLocation sets the InputStorageLocation field's value.

func (*CreateFpgaImageInput) SetLogsStorageLocation

func (s *CreateFpgaImageInput) SetLogsStorageLocation(v *StorageLocation) *CreateFpgaImageInput

SetLogsStorageLocation sets the LogsStorageLocation field's value.

func (*CreateFpgaImageInput) SetName

func (s *CreateFpgaImageInput) SetName(v string) *CreateFpgaImageInput

SetName sets the Name field's value.

func (CreateFpgaImageInput) String

func (s CreateFpgaImageInput) String() string

String returns the string representation

func (*CreateFpgaImageInput) Validate

func (s *CreateFpgaImageInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateFpgaImageOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateFpgaImageResult

type CreateFpgaImageOutput struct {

    // The global FPGA image identifier (AGFI ID).
    FpgaImageGlobalId *string `locationName:"fpgaImageGlobalId" type:"string"`

    // The FPGA image identifier (AFI ID).
    FpgaImageId *string `locationName:"fpgaImageId" type:"string"`
    // contains filtered or unexported fields
}

func (CreateFpgaImageOutput) GoString

func (s CreateFpgaImageOutput) GoString() string

GoString returns the string representation

func (*CreateFpgaImageOutput) SetFpgaImageGlobalId

func (s *CreateFpgaImageOutput) SetFpgaImageGlobalId(v string) *CreateFpgaImageOutput

SetFpgaImageGlobalId sets the FpgaImageGlobalId field's value.

func (*CreateFpgaImageOutput) SetFpgaImageId

func (s *CreateFpgaImageOutput) SetFpgaImageId(v string) *CreateFpgaImageOutput

SetFpgaImageId sets the FpgaImageId field's value.

func (CreateFpgaImageOutput) String

func (s CreateFpgaImageOutput) String() string

String returns the string representation

type CreateImageInput

Contains the parameters for CreateImage. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateImageRequest

type CreateImageInput struct {

    // Information about one or more block device mappings.
    BlockDeviceMappings []*BlockDeviceMapping `locationName:"blockDeviceMapping" locationNameList:"BlockDeviceMapping" type:"list"`

    // A description for the new image.
    Description *string `locationName:"description" type:"string"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the instance.
    //
    // InstanceId is a required field
    InstanceId *string `locationName:"instanceId" type:"string" required:"true"`

    // A name for the new image.
    //
    // Constraints: 3-128 alphanumeric characters, parentheses (()), square brackets
    // ([]), spaces ( ), periods (.), slashes (/), dashes (-), single quotes ('),
    // at-signs (@), or underscores(_)
    //
    // Name is a required field
    Name *string `locationName:"name" type:"string" required:"true"`

    // By default, Amazon EC2 attempts to shut down and reboot the instance before
    // creating the image. If the 'No Reboot' option is set, Amazon EC2 doesn't
    // shut down the instance before creating the image. When this option is used,
    // file system integrity on the created image can't be guaranteed.
    NoReboot *bool `locationName:"noReboot" type:"boolean"`
    // contains filtered or unexported fields
}

func (CreateImageInput) GoString

func (s CreateImageInput) GoString() string

GoString returns the string representation

func (*CreateImageInput) SetBlockDeviceMappings

func (s *CreateImageInput) SetBlockDeviceMappings(v []*BlockDeviceMapping) *CreateImageInput

SetBlockDeviceMappings sets the BlockDeviceMappings field's value.

func (*CreateImageInput) SetDescription

func (s *CreateImageInput) SetDescription(v string) *CreateImageInput

SetDescription sets the Description field's value.

func (*CreateImageInput) SetDryRun

func (s *CreateImageInput) SetDryRun(v bool) *CreateImageInput

SetDryRun sets the DryRun field's value.

func (*CreateImageInput) SetInstanceId

func (s *CreateImageInput) SetInstanceId(v string) *CreateImageInput

SetInstanceId sets the InstanceId field's value.

func (*CreateImageInput) SetName

func (s *CreateImageInput) SetName(v string) *CreateImageInput

SetName sets the Name field's value.

func (*CreateImageInput) SetNoReboot

func (s *CreateImageInput) SetNoReboot(v bool) *CreateImageInput

SetNoReboot sets the NoReboot field's value.

func (CreateImageInput) String

func (s CreateImageInput) String() string

String returns the string representation

func (*CreateImageInput) Validate

func (s *CreateImageInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateImageOutput

Contains the output of CreateImage. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateImageResult

type CreateImageOutput struct {

    // The ID of the new AMI.
    ImageId *string `locationName:"imageId" type:"string"`
    // contains filtered or unexported fields
}

func (CreateImageOutput) GoString

func (s CreateImageOutput) GoString() string

GoString returns the string representation

func (*CreateImageOutput) SetImageId

func (s *CreateImageOutput) SetImageId(v string) *CreateImageOutput

SetImageId sets the ImageId field's value.

func (CreateImageOutput) String

func (s CreateImageOutput) String() string

String returns the string representation

type CreateInstanceExportTaskInput

Contains the parameters for CreateInstanceExportTask. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateInstanceExportTaskRequest

type CreateInstanceExportTaskInput struct {

    // A description for the conversion task or the resource being exported. The
    // maximum length is 255 bytes.
    Description *string `locationName:"description" type:"string"`

    // The format and location for an instance export task.
    ExportToS3Task *ExportToS3TaskSpecification `locationName:"exportToS3" type:"structure"`

    // The ID of the instance.
    //
    // InstanceId is a required field
    InstanceId *string `locationName:"instanceId" type:"string" required:"true"`

    // The target virtualization environment.
    TargetEnvironment *string `locationName:"targetEnvironment" type:"string" enum:"ExportEnvironment"`
    // contains filtered or unexported fields
}

func (CreateInstanceExportTaskInput) GoString

func (s CreateInstanceExportTaskInput) GoString() string

GoString returns the string representation

func (*CreateInstanceExportTaskInput) SetDescription

func (s *CreateInstanceExportTaskInput) SetDescription(v string) *CreateInstanceExportTaskInput

SetDescription sets the Description field's value.

func (*CreateInstanceExportTaskInput) SetExportToS3Task

func (s *CreateInstanceExportTaskInput) SetExportToS3Task(v *ExportToS3TaskSpecification) *CreateInstanceExportTaskInput

SetExportToS3Task sets the ExportToS3Task field's value.

func (*CreateInstanceExportTaskInput) SetInstanceId

func (s *CreateInstanceExportTaskInput) SetInstanceId(v string) *CreateInstanceExportTaskInput

SetInstanceId sets the InstanceId field's value.

func (*CreateInstanceExportTaskInput) SetTargetEnvironment

func (s *CreateInstanceExportTaskInput) SetTargetEnvironment(v string) *CreateInstanceExportTaskInput

SetTargetEnvironment sets the TargetEnvironment field's value.

func (CreateInstanceExportTaskInput) String

func (s CreateInstanceExportTaskInput) String() string

String returns the string representation

func (*CreateInstanceExportTaskInput) Validate

func (s *CreateInstanceExportTaskInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateInstanceExportTaskOutput

Contains the output for CreateInstanceExportTask. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateInstanceExportTaskResult

type CreateInstanceExportTaskOutput struct {

    // Information about the instance export task.
    ExportTask *ExportTask `locationName:"exportTask" type:"structure"`
    // contains filtered or unexported fields
}

func (CreateInstanceExportTaskOutput) GoString

func (s CreateInstanceExportTaskOutput) GoString() string

GoString returns the string representation

func (*CreateInstanceExportTaskOutput) SetExportTask

func (s *CreateInstanceExportTaskOutput) SetExportTask(v *ExportTask) *CreateInstanceExportTaskOutput

SetExportTask sets the ExportTask field's value.

func (CreateInstanceExportTaskOutput) String

func (s CreateInstanceExportTaskOutput) String() string

String returns the string representation

type CreateInternetGatewayInput

Contains the parameters for CreateInternetGateway. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateInternetGatewayRequest

type CreateInternetGatewayInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`
    // contains filtered or unexported fields
}

func (CreateInternetGatewayInput) GoString

func (s CreateInternetGatewayInput) GoString() string

GoString returns the string representation

func (*CreateInternetGatewayInput) SetDryRun

func (s *CreateInternetGatewayInput) SetDryRun(v bool) *CreateInternetGatewayInput

SetDryRun sets the DryRun field's value.

func (CreateInternetGatewayInput) String

func (s CreateInternetGatewayInput) String() string

String returns the string representation

type CreateInternetGatewayOutput

Contains the output of CreateInternetGateway. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateInternetGatewayResult

type CreateInternetGatewayOutput struct {

    // Information about the Internet gateway.
    InternetGateway *InternetGateway `locationName:"internetGateway" type:"structure"`
    // contains filtered or unexported fields
}

func (CreateInternetGatewayOutput) GoString

func (s CreateInternetGatewayOutput) GoString() string

GoString returns the string representation

func (*CreateInternetGatewayOutput) SetInternetGateway

func (s *CreateInternetGatewayOutput) SetInternetGateway(v *InternetGateway) *CreateInternetGatewayOutput

SetInternetGateway sets the InternetGateway field's value.

func (CreateInternetGatewayOutput) String

func (s CreateInternetGatewayOutput) String() string

String returns the string representation

type CreateKeyPairInput

Contains the parameters for CreateKeyPair. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateKeyPairRequest

type CreateKeyPairInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // A unique name for the key pair.
    //
    // Constraints: Up to 255 ASCII characters
    //
    // KeyName is a required field
    KeyName *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (CreateKeyPairInput) GoString

func (s CreateKeyPairInput) GoString() string

GoString returns the string representation

func (*CreateKeyPairInput) SetDryRun

func (s *CreateKeyPairInput) SetDryRun(v bool) *CreateKeyPairInput

SetDryRun sets the DryRun field's value.

func (*CreateKeyPairInput) SetKeyName

func (s *CreateKeyPairInput) SetKeyName(v string) *CreateKeyPairInput

SetKeyName sets the KeyName field's value.

func (CreateKeyPairInput) String

func (s CreateKeyPairInput) String() string

String returns the string representation

func (*CreateKeyPairInput) Validate

func (s *CreateKeyPairInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateKeyPairOutput

Describes a key pair. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/KeyPair

type CreateKeyPairOutput struct {

    // The SHA-1 digest of the DER encoded private key.
    KeyFingerprint *string `locationName:"keyFingerprint" type:"string"`

    // An unencrypted PEM encoded RSA private key.
    KeyMaterial *string `locationName:"keyMaterial" type:"string"`

    // The name of the key pair.
    KeyName *string `locationName:"keyName" type:"string"`
    // contains filtered or unexported fields
}

func (CreateKeyPairOutput) GoString

func (s CreateKeyPairOutput) GoString() string

GoString returns the string representation

func (*CreateKeyPairOutput) SetKeyFingerprint

func (s *CreateKeyPairOutput) SetKeyFingerprint(v string) *CreateKeyPairOutput

SetKeyFingerprint sets the KeyFingerprint field's value.

func (*CreateKeyPairOutput) SetKeyMaterial

func (s *CreateKeyPairOutput) SetKeyMaterial(v string) *CreateKeyPairOutput

SetKeyMaterial sets the KeyMaterial field's value.

func (*CreateKeyPairOutput) SetKeyName

func (s *CreateKeyPairOutput) SetKeyName(v string) *CreateKeyPairOutput

SetKeyName sets the KeyName field's value.

func (CreateKeyPairOutput) String

func (s CreateKeyPairOutput) String() string

String returns the string representation

type CreateNatGatewayInput

Contains the parameters for CreateNatGateway. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateNatGatewayRequest

type CreateNatGatewayInput struct {

    // The allocation ID of an Elastic IP address to associate with the NAT gateway.
    // If the Elastic IP address is associated with another resource, you must first
    // disassociate it.
    //
    // AllocationId is a required field
    AllocationId *string `type:"string" required:"true"`

    // Unique, case-sensitive identifier you provide to ensure the idempotency of
    // the request. For more information, see How to Ensure Idempotency (http://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html).
    //
    // Constraint: Maximum 64 ASCII characters.
    ClientToken *string `type:"string"`

    // The subnet in which to create the NAT gateway.
    //
    // SubnetId is a required field
    SubnetId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (CreateNatGatewayInput) GoString

func (s CreateNatGatewayInput) GoString() string

GoString returns the string representation

func (*CreateNatGatewayInput) SetAllocationId

func (s *CreateNatGatewayInput) SetAllocationId(v string) *CreateNatGatewayInput

SetAllocationId sets the AllocationId field's value.

func (*CreateNatGatewayInput) SetClientToken

func (s *CreateNatGatewayInput) SetClientToken(v string) *CreateNatGatewayInput

SetClientToken sets the ClientToken field's value.

func (*CreateNatGatewayInput) SetSubnetId

func (s *CreateNatGatewayInput) SetSubnetId(v string) *CreateNatGatewayInput

SetSubnetId sets the SubnetId field's value.

func (CreateNatGatewayInput) String

func (s CreateNatGatewayInput) String() string

String returns the string representation

func (*CreateNatGatewayInput) Validate

func (s *CreateNatGatewayInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateNatGatewayOutput

Contains the output of CreateNatGateway. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateNatGatewayResult

type CreateNatGatewayOutput struct {

    // Unique, case-sensitive identifier to ensure the idempotency of the request.
    // Only returned if a client token was provided in the request.
    ClientToken *string `locationName:"clientToken" type:"string"`

    // Information about the NAT gateway.
    NatGateway *NatGateway `locationName:"natGateway" type:"structure"`
    // contains filtered or unexported fields
}

func (CreateNatGatewayOutput) GoString

func (s CreateNatGatewayOutput) GoString() string

GoString returns the string representation

func (*CreateNatGatewayOutput) SetClientToken

func (s *CreateNatGatewayOutput) SetClientToken(v string) *CreateNatGatewayOutput

SetClientToken sets the ClientToken field's value.

func (*CreateNatGatewayOutput) SetNatGateway

func (s *CreateNatGatewayOutput) SetNatGateway(v *NatGateway) *CreateNatGatewayOutput

SetNatGateway sets the NatGateway field's value.

func (CreateNatGatewayOutput) String

func (s CreateNatGatewayOutput) String() string

String returns the string representation

type CreateNetworkAclEntryInput

Contains the parameters for CreateNetworkAclEntry. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateNetworkAclEntryRequest

type CreateNetworkAclEntryInput struct {

    // The IPv4 network range to allow or deny, in CIDR notation (for example 172.16.0.0/24).
    CidrBlock *string `locationName:"cidrBlock" type:"string"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // Indicates whether this is an egress rule (rule is applied to traffic leaving
    // the subnet).
    //
    // Egress is a required field
    Egress *bool `locationName:"egress" type:"boolean" required:"true"`

    // ICMP protocol: The ICMP or ICMPv6 type and code. Required if specifying the
    // ICMP protocol, or protocol 58 (ICMPv6) with an IPv6 CIDR block.
    IcmpTypeCode *IcmpTypeCode `locationName:"Icmp" type:"structure"`

    // The IPv6 network range to allow or deny, in CIDR notation (for example 2001:db8:1234:1a00::/64).
    Ipv6CidrBlock *string `locationName:"ipv6CidrBlock" type:"string"`

    // The ID of the network ACL.
    //
    // NetworkAclId is a required field
    NetworkAclId *string `locationName:"networkAclId" type:"string" required:"true"`

    // TCP or UDP protocols: The range of ports the rule applies to.
    PortRange *PortRange `locationName:"portRange" type:"structure"`

    // The protocol. A value of -1 or all means all protocols. If you specify all,
    // -1, or a protocol number other than tcp, udp, or icmp, traffic on all ports
    // is allowed, regardless of any ports or ICMP types or codes you specify. If
    // you specify protocol 58 (ICMPv6) and specify an IPv4 CIDR block, traffic
    // for all ICMP types and codes allowed, regardless of any that you specify.
    // If you specify protocol 58 (ICMPv6) and specify an IPv6 CIDR block, you must
    // specify an ICMP type and code.
    //
    // Protocol is a required field
    Protocol *string `locationName:"protocol" type:"string" required:"true"`

    // Indicates whether to allow or deny the traffic that matches the rule.
    //
    // RuleAction is a required field
    RuleAction *string `locationName:"ruleAction" type:"string" required:"true" enum:"RuleAction"`

    // The rule number for the entry (for example, 100). ACL entries are processed
    // in ascending order by rule number.
    //
    // Constraints: Positive integer from 1 to 32766. The range 32767 to 65535 is
    // reserved for internal use.
    //
    // RuleNumber is a required field
    RuleNumber *int64 `locationName:"ruleNumber" type:"integer" required:"true"`
    // contains filtered or unexported fields
}

func (CreateNetworkAclEntryInput) GoString

func (s CreateNetworkAclEntryInput) GoString() string

GoString returns the string representation

func (*CreateNetworkAclEntryInput) SetCidrBlock

func (s *CreateNetworkAclEntryInput) SetCidrBlock(v string) *CreateNetworkAclEntryInput

SetCidrBlock sets the CidrBlock field's value.

func (*CreateNetworkAclEntryInput) SetDryRun

func (s *CreateNetworkAclEntryInput) SetDryRun(v bool) *CreateNetworkAclEntryInput

SetDryRun sets the DryRun field's value.

func (*CreateNetworkAclEntryInput) SetEgress

func (s *CreateNetworkAclEntryInput) SetEgress(v bool) *CreateNetworkAclEntryInput

SetEgress sets the Egress field's value.

func (*CreateNetworkAclEntryInput) SetIcmpTypeCode

func (s *CreateNetworkAclEntryInput) SetIcmpTypeCode(v *IcmpTypeCode) *CreateNetworkAclEntryInput

SetIcmpTypeCode sets the IcmpTypeCode field's value.

func (*CreateNetworkAclEntryInput) SetIpv6CidrBlock

func (s *CreateNetworkAclEntryInput) SetIpv6CidrBlock(v string) *CreateNetworkAclEntryInput

SetIpv6CidrBlock sets the Ipv6CidrBlock field's value.

func (*CreateNetworkAclEntryInput) SetNetworkAclId

func (s *CreateNetworkAclEntryInput) SetNetworkAclId(v string) *CreateNetworkAclEntryInput

SetNetworkAclId sets the NetworkAclId field's value.

func (*CreateNetworkAclEntryInput) SetPortRange

func (s *CreateNetworkAclEntryInput) SetPortRange(v *PortRange) *CreateNetworkAclEntryInput

SetPortRange sets the PortRange field's value.

func (*CreateNetworkAclEntryInput) SetProtocol

func (s *CreateNetworkAclEntryInput) SetProtocol(v string) *CreateNetworkAclEntryInput

SetProtocol sets the Protocol field's value.

func (*CreateNetworkAclEntryInput) SetRuleAction

func (s *CreateNetworkAclEntryInput) SetRuleAction(v string) *CreateNetworkAclEntryInput

SetRuleAction sets the RuleAction field's value.

func (*CreateNetworkAclEntryInput) SetRuleNumber

func (s *CreateNetworkAclEntryInput) SetRuleNumber(v int64) *CreateNetworkAclEntryInput

SetRuleNumber sets the RuleNumber field's value.

func (CreateNetworkAclEntryInput) String

func (s CreateNetworkAclEntryInput) String() string

String returns the string representation

func (*CreateNetworkAclEntryInput) Validate

func (s *CreateNetworkAclEntryInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateNetworkAclEntryOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateNetworkAclEntryOutput

type CreateNetworkAclEntryOutput struct {
    // contains filtered or unexported fields
}

func (CreateNetworkAclEntryOutput) GoString

func (s CreateNetworkAclEntryOutput) GoString() string

GoString returns the string representation

func (CreateNetworkAclEntryOutput) String

func (s CreateNetworkAclEntryOutput) String() string

String returns the string representation

type CreateNetworkAclInput

Contains the parameters for CreateNetworkAcl. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateNetworkAclRequest

type CreateNetworkAclInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the VPC.
    //
    // VpcId is a required field
    VpcId *string `locationName:"vpcId" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (CreateNetworkAclInput) GoString

func (s CreateNetworkAclInput) GoString() string

GoString returns the string representation

func (*CreateNetworkAclInput) SetDryRun

func (s *CreateNetworkAclInput) SetDryRun(v bool) *CreateNetworkAclInput

SetDryRun sets the DryRun field's value.

func (*CreateNetworkAclInput) SetVpcId

func (s *CreateNetworkAclInput) SetVpcId(v string) *CreateNetworkAclInput

SetVpcId sets the VpcId field's value.

func (CreateNetworkAclInput) String

func (s CreateNetworkAclInput) String() string

String returns the string representation

func (*CreateNetworkAclInput) Validate

func (s *CreateNetworkAclInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateNetworkAclOutput

Contains the output of CreateNetworkAcl. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateNetworkAclResult

type CreateNetworkAclOutput struct {

    // Information about the network ACL.
    NetworkAcl *NetworkAcl `locationName:"networkAcl" type:"structure"`
    // contains filtered or unexported fields
}

func (CreateNetworkAclOutput) GoString

func (s CreateNetworkAclOutput) GoString() string

GoString returns the string representation

func (*CreateNetworkAclOutput) SetNetworkAcl

func (s *CreateNetworkAclOutput) SetNetworkAcl(v *NetworkAcl) *CreateNetworkAclOutput

SetNetworkAcl sets the NetworkAcl field's value.

func (CreateNetworkAclOutput) String

func (s CreateNetworkAclOutput) String() string

String returns the string representation

type CreateNetworkInterfaceInput

Contains the parameters for CreateNetworkInterface. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateNetworkInterfaceRequest

type CreateNetworkInterfaceInput struct {

    // A description for the network interface.
    Description *string `locationName:"description" type:"string"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The IDs of one or more security groups.
    Groups []*string `locationName:"SecurityGroupId" locationNameList:"SecurityGroupId" type:"list"`

    // The number of IPv6 addresses to assign to a network interface. Amazon EC2
    // automatically selects the IPv6 addresses from the subnet range. You can't
    // use this option if specifying specific IPv6 addresses. If your subnet has
    // the AssignIpv6AddressOnCreation attribute set to true, you can specify 0
    // to override this setting.
    Ipv6AddressCount *int64 `locationName:"ipv6AddressCount" type:"integer"`

    // One or more specific IPv6 addresses from the IPv6 CIDR block range of your
    // subnet. You can't use this option if you're specifying a number of IPv6 addresses.
    Ipv6Addresses []*InstanceIpv6Address `locationName:"ipv6Addresses" locationNameList:"item" type:"list"`

    // The primary private IPv4 address of the network interface. If you don't specify
    // an IPv4 address, Amazon EC2 selects one for you from the subnet's IPv4 CIDR
    // range. If you specify an IP address, you cannot indicate any IP addresses
    // specified in privateIpAddresses as primary (only one IP address can be designated
    // as primary).
    PrivateIpAddress *string `locationName:"privateIpAddress" type:"string"`

    // One or more private IPv4 addresses.
    PrivateIpAddresses []*PrivateIpAddressSpecification `locationName:"privateIpAddresses" locationNameList:"item" type:"list"`

    // The number of secondary private IPv4 addresses to assign to a network interface.
    // When you specify a number of secondary IPv4 addresses, Amazon EC2 selects
    // these IP addresses within the subnet's IPv4 CIDR range. You can't specify
    // this option and specify more than one private IP address using privateIpAddresses.
    //
    // The number of IP addresses you can assign to a network interface varies by
    // instance type. For more information, see IP Addresses Per ENI Per Instance
    // Type (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-eni.html#AvailableIpPerENI)
    // in the Amazon Virtual Private Cloud User Guide.
    SecondaryPrivateIpAddressCount *int64 `locationName:"secondaryPrivateIpAddressCount" type:"integer"`

    // The ID of the subnet to associate with the network interface.
    //
    // SubnetId is a required field
    SubnetId *string `locationName:"subnetId" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (CreateNetworkInterfaceInput) GoString

func (s CreateNetworkInterfaceInput) GoString() string

GoString returns the string representation

func (*CreateNetworkInterfaceInput) SetDescription

func (s *CreateNetworkInterfaceInput) SetDescription(v string) *CreateNetworkInterfaceInput

SetDescription sets the Description field's value.

func (*CreateNetworkInterfaceInput) SetDryRun

func (s *CreateNetworkInterfaceInput) SetDryRun(v bool) *CreateNetworkInterfaceInput

SetDryRun sets the DryRun field's value.

func (*CreateNetworkInterfaceInput) SetGroups

func (s *CreateNetworkInterfaceInput) SetGroups(v []*string) *CreateNetworkInterfaceInput

SetGroups sets the Groups field's value.

func (*CreateNetworkInterfaceInput) SetIpv6AddressCount

func (s *CreateNetworkInterfaceInput) SetIpv6AddressCount(v int64) *CreateNetworkInterfaceInput

SetIpv6AddressCount sets the Ipv6AddressCount field's value.

func (*CreateNetworkInterfaceInput) SetIpv6Addresses

func (s *CreateNetworkInterfaceInput) SetIpv6Addresses(v []*InstanceIpv6Address) *CreateNetworkInterfaceInput

SetIpv6Addresses sets the Ipv6Addresses field's value.

func (*CreateNetworkInterfaceInput) SetPrivateIpAddress

func (s *CreateNetworkInterfaceInput) SetPrivateIpAddress(v string) *CreateNetworkInterfaceInput

SetPrivateIpAddress sets the PrivateIpAddress field's value.

func (*CreateNetworkInterfaceInput) SetPrivateIpAddresses

func (s *CreateNetworkInterfaceInput) SetPrivateIpAddresses(v []*PrivateIpAddressSpecification) *CreateNetworkInterfaceInput

SetPrivateIpAddresses sets the PrivateIpAddresses field's value.

func (*CreateNetworkInterfaceInput) SetSecondaryPrivateIpAddressCount

func (s *CreateNetworkInterfaceInput) SetSecondaryPrivateIpAddressCount(v int64) *CreateNetworkInterfaceInput

SetSecondaryPrivateIpAddressCount sets the SecondaryPrivateIpAddressCount field's value.

func (*CreateNetworkInterfaceInput) SetSubnetId

func (s *CreateNetworkInterfaceInput) SetSubnetId(v string) *CreateNetworkInterfaceInput

SetSubnetId sets the SubnetId field's value.

func (CreateNetworkInterfaceInput) String

func (s CreateNetworkInterfaceInput) String() string

String returns the string representation

func (*CreateNetworkInterfaceInput) Validate

func (s *CreateNetworkInterfaceInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateNetworkInterfaceOutput

Contains the output of CreateNetworkInterface. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateNetworkInterfaceResult

type CreateNetworkInterfaceOutput struct {

    // Information about the network interface.
    NetworkInterface *NetworkInterface `locationName:"networkInterface" type:"structure"`
    // contains filtered or unexported fields
}

func (CreateNetworkInterfaceOutput) GoString

func (s CreateNetworkInterfaceOutput) GoString() string

GoString returns the string representation

func (*CreateNetworkInterfaceOutput) SetNetworkInterface

func (s *CreateNetworkInterfaceOutput) SetNetworkInterface(v *NetworkInterface) *CreateNetworkInterfaceOutput

SetNetworkInterface sets the NetworkInterface field's value.

func (CreateNetworkInterfaceOutput) String

func (s CreateNetworkInterfaceOutput) String() string

String returns the string representation

type CreatePlacementGroupInput

Contains the parameters for CreatePlacementGroup. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreatePlacementGroupRequest

type CreatePlacementGroupInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // A name for the placement group.
    //
    // Constraints: Up to 255 ASCII characters
    //
    // GroupName is a required field
    GroupName *string `locationName:"groupName" type:"string" required:"true"`

    // The placement strategy.
    //
    // Strategy is a required field
    Strategy *string `locationName:"strategy" type:"string" required:"true" enum:"PlacementStrategy"`
    // contains filtered or unexported fields
}

func (CreatePlacementGroupInput) GoString

func (s CreatePlacementGroupInput) GoString() string

GoString returns the string representation

func (*CreatePlacementGroupInput) SetDryRun

func (s *CreatePlacementGroupInput) SetDryRun(v bool) *CreatePlacementGroupInput

SetDryRun sets the DryRun field's value.

func (*CreatePlacementGroupInput) SetGroupName

func (s *CreatePlacementGroupInput) SetGroupName(v string) *CreatePlacementGroupInput

SetGroupName sets the GroupName field's value.

func (*CreatePlacementGroupInput) SetStrategy

func (s *CreatePlacementGroupInput) SetStrategy(v string) *CreatePlacementGroupInput

SetStrategy sets the Strategy field's value.

func (CreatePlacementGroupInput) String

func (s CreatePlacementGroupInput) String() string

String returns the string representation

func (*CreatePlacementGroupInput) Validate

func (s *CreatePlacementGroupInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreatePlacementGroupOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreatePlacementGroupOutput

type CreatePlacementGroupOutput struct {
    // contains filtered or unexported fields
}

func (CreatePlacementGroupOutput) GoString

func (s CreatePlacementGroupOutput) GoString() string

GoString returns the string representation

func (CreatePlacementGroupOutput) String

func (s CreatePlacementGroupOutput) String() string

String returns the string representation

type CreateReservedInstancesListingInput

Contains the parameters for CreateReservedInstancesListing. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateReservedInstancesListingRequest

type CreateReservedInstancesListingInput struct {

    // Unique, case-sensitive identifier you provide to ensure idempotency of your
    // listings. This helps avoid duplicate listings. For more information, see
    // Ensuring Idempotency (http://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html).
    //
    // ClientToken is a required field
    ClientToken *string `locationName:"clientToken" type:"string" required:"true"`

    // The number of instances that are a part of a Reserved Instance account to
    // be listed in the Reserved Instance Marketplace. This number should be less
    // than or equal to the instance count associated with the Reserved Instance
    // ID specified in this call.
    //
    // InstanceCount is a required field
    InstanceCount *int64 `locationName:"instanceCount" type:"integer" required:"true"`

    // A list specifying the price of the Standard Reserved Instance for each month
    // remaining in the Reserved Instance term.
    //
    // PriceSchedules is a required field
    PriceSchedules []*PriceScheduleSpecification `locationName:"priceSchedules" locationNameList:"item" type:"list" required:"true"`

    // The ID of the active Standard Reserved Instance.
    //
    // ReservedInstancesId is a required field
    ReservedInstancesId *string `locationName:"reservedInstancesId" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (CreateReservedInstancesListingInput) GoString

func (s CreateReservedInstancesListingInput) GoString() string

GoString returns the string representation

func (*CreateReservedInstancesListingInput) SetClientToken

func (s *CreateReservedInstancesListingInput) SetClientToken(v string) *CreateReservedInstancesListingInput

SetClientToken sets the ClientToken field's value.

func (*CreateReservedInstancesListingInput) SetInstanceCount

func (s *CreateReservedInstancesListingInput) SetInstanceCount(v int64) *CreateReservedInstancesListingInput

SetInstanceCount sets the InstanceCount field's value.

func (*CreateReservedInstancesListingInput) SetPriceSchedules

func (s *CreateReservedInstancesListingInput) SetPriceSchedules(v []*PriceScheduleSpecification) *CreateReservedInstancesListingInput

SetPriceSchedules sets the PriceSchedules field's value.

func (*CreateReservedInstancesListingInput) SetReservedInstancesId

func (s *CreateReservedInstancesListingInput) SetReservedInstancesId(v string) *CreateReservedInstancesListingInput

SetReservedInstancesId sets the ReservedInstancesId field's value.

func (CreateReservedInstancesListingInput) String

func (s CreateReservedInstancesListingInput) String() string

String returns the string representation

func (*CreateReservedInstancesListingInput) Validate

func (s *CreateReservedInstancesListingInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateReservedInstancesListingOutput

Contains the output of CreateReservedInstancesListing. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateReservedInstancesListingResult

type CreateReservedInstancesListingOutput struct {

    // Information about the Standard Reserved Instance listing.
    ReservedInstancesListings []*ReservedInstancesListing `locationName:"reservedInstancesListingsSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (CreateReservedInstancesListingOutput) GoString

func (s CreateReservedInstancesListingOutput) GoString() string

GoString returns the string representation

func (*CreateReservedInstancesListingOutput) SetReservedInstancesListings

func (s *CreateReservedInstancesListingOutput) SetReservedInstancesListings(v []*ReservedInstancesListing) *CreateReservedInstancesListingOutput

SetReservedInstancesListings sets the ReservedInstancesListings field's value.

func (CreateReservedInstancesListingOutput) String

func (s CreateReservedInstancesListingOutput) String() string

String returns the string representation

type CreateRouteInput

Contains the parameters for CreateRoute. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateRouteRequest

type CreateRouteInput struct {

    // The IPv4 CIDR address block used for the destination match. Routing decisions
    // are based on the most specific match.
    DestinationCidrBlock *string `locationName:"destinationCidrBlock" type:"string"`

    // The IPv6 CIDR block used for the destination match. Routing decisions are
    // based on the most specific match.
    DestinationIpv6CidrBlock *string `locationName:"destinationIpv6CidrBlock" type:"string"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // [IPv6 traffic only] The ID of an egress-only Internet gateway.
    EgressOnlyInternetGatewayId *string `locationName:"egressOnlyInternetGatewayId" type:"string"`

    // The ID of an Internet gateway or virtual private gateway attached to your
    // VPC.
    GatewayId *string `locationName:"gatewayId" type:"string"`

    // The ID of a NAT instance in your VPC. The operation fails if you specify
    // an instance ID unless exactly one network interface is attached.
    InstanceId *string `locationName:"instanceId" type:"string"`

    // [IPv4 traffic only] The ID of a NAT gateway.
    NatGatewayId *string `locationName:"natGatewayId" type:"string"`

    // The ID of a network interface.
    NetworkInterfaceId *string `locationName:"networkInterfaceId" type:"string"`

    // The ID of the route table for the route.
    //
    // RouteTableId is a required field
    RouteTableId *string `locationName:"routeTableId" type:"string" required:"true"`

    // The ID of a VPC peering connection.
    VpcPeeringConnectionId *string `locationName:"vpcPeeringConnectionId" type:"string"`
    // contains filtered or unexported fields
}

func (CreateRouteInput) GoString

func (s CreateRouteInput) GoString() string

GoString returns the string representation

func (*CreateRouteInput) SetDestinationCidrBlock

func (s *CreateRouteInput) SetDestinationCidrBlock(v string) *CreateRouteInput

SetDestinationCidrBlock sets the DestinationCidrBlock field's value.

func (*CreateRouteInput) SetDestinationIpv6CidrBlock

func (s *CreateRouteInput) SetDestinationIpv6CidrBlock(v string) *CreateRouteInput

SetDestinationIpv6CidrBlock sets the DestinationIpv6CidrBlock field's value.

func (*CreateRouteInput) SetDryRun

func (s *CreateRouteInput) SetDryRun(v bool) *CreateRouteInput

SetDryRun sets the DryRun field's value.

func (*CreateRouteInput) SetEgressOnlyInternetGatewayId

func (s *CreateRouteInput) SetEgressOnlyInternetGatewayId(v string) *CreateRouteInput

SetEgressOnlyInternetGatewayId sets the EgressOnlyInternetGatewayId field's value.

func (*CreateRouteInput) SetGatewayId

func (s *CreateRouteInput) SetGatewayId(v string) *CreateRouteInput

SetGatewayId sets the GatewayId field's value.

func (*CreateRouteInput) SetInstanceId

func (s *CreateRouteInput) SetInstanceId(v string) *CreateRouteInput

SetInstanceId sets the InstanceId field's value.

func (*CreateRouteInput) SetNatGatewayId

func (s *CreateRouteInput) SetNatGatewayId(v string) *CreateRouteInput

SetNatGatewayId sets the NatGatewayId field's value.

func (*CreateRouteInput) SetNetworkInterfaceId

func (s *CreateRouteInput) SetNetworkInterfaceId(v string) *CreateRouteInput

SetNetworkInterfaceId sets the NetworkInterfaceId field's value.

func (*CreateRouteInput) SetRouteTableId

func (s *CreateRouteInput) SetRouteTableId(v string) *CreateRouteInput

SetRouteTableId sets the RouteTableId field's value.

func (*CreateRouteInput) SetVpcPeeringConnectionId

func (s *CreateRouteInput) SetVpcPeeringConnectionId(v string) *CreateRouteInput

SetVpcPeeringConnectionId sets the VpcPeeringConnectionId field's value.

func (CreateRouteInput) String

func (s CreateRouteInput) String() string

String returns the string representation

func (*CreateRouteInput) Validate

func (s *CreateRouteInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateRouteOutput

Contains the output of CreateRoute. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateRouteResult

type CreateRouteOutput struct {

    // Returns true if the request succeeds; otherwise, it returns an error.
    Return *bool `locationName:"return" type:"boolean"`
    // contains filtered or unexported fields
}

func (CreateRouteOutput) GoString

func (s CreateRouteOutput) GoString() string

GoString returns the string representation

func (*CreateRouteOutput) SetReturn

func (s *CreateRouteOutput) SetReturn(v bool) *CreateRouteOutput

SetReturn sets the Return field's value.

func (CreateRouteOutput) String

func (s CreateRouteOutput) String() string

String returns the string representation

type CreateRouteTableInput

Contains the parameters for CreateRouteTable. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateRouteTableRequest

type CreateRouteTableInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the VPC.
    //
    // VpcId is a required field
    VpcId *string `locationName:"vpcId" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (CreateRouteTableInput) GoString

func (s CreateRouteTableInput) GoString() string

GoString returns the string representation

func (*CreateRouteTableInput) SetDryRun

func (s *CreateRouteTableInput) SetDryRun(v bool) *CreateRouteTableInput

SetDryRun sets the DryRun field's value.

func (*CreateRouteTableInput) SetVpcId

func (s *CreateRouteTableInput) SetVpcId(v string) *CreateRouteTableInput

SetVpcId sets the VpcId field's value.

func (CreateRouteTableInput) String

func (s CreateRouteTableInput) String() string

String returns the string representation

func (*CreateRouteTableInput) Validate

func (s *CreateRouteTableInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateRouteTableOutput

Contains the output of CreateRouteTable. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateRouteTableResult

type CreateRouteTableOutput struct {

    // Information about the route table.
    RouteTable *RouteTable `locationName:"routeTable" type:"structure"`
    // contains filtered or unexported fields
}

func (CreateRouteTableOutput) GoString

func (s CreateRouteTableOutput) GoString() string

GoString returns the string representation

func (*CreateRouteTableOutput) SetRouteTable

func (s *CreateRouteTableOutput) SetRouteTable(v *RouteTable) *CreateRouteTableOutput

SetRouteTable sets the RouteTable field's value.

func (CreateRouteTableOutput) String

func (s CreateRouteTableOutput) String() string

String returns the string representation

type CreateSecurityGroupInput

Contains the parameters for CreateSecurityGroup. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateSecurityGroupRequest

type CreateSecurityGroupInput struct {

    // A description for the security group. This is informational only.
    //
    // Constraints: Up to 255 characters in length
    //
    // Constraints for EC2-Classic: ASCII characters
    //
    // Constraints for EC2-VPC: a-z, A-Z, 0-9, spaces, and ._-:/()#,@[]+=&;{}!$*
    //
    // Description is a required field
    Description *string `locationName:"GroupDescription" type:"string" required:"true"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The name of the security group.
    //
    // Constraints: Up to 255 characters in length
    //
    // Constraints for EC2-Classic: ASCII characters
    //
    // Constraints for EC2-VPC: a-z, A-Z, 0-9, spaces, and ._-:/()#,@[]+=&;{}!$*
    //
    // GroupName is a required field
    GroupName *string `type:"string" required:"true"`

    // [EC2-VPC] The ID of the VPC. Required for EC2-VPC.
    VpcId *string `type:"string"`
    // contains filtered or unexported fields
}

func (CreateSecurityGroupInput) GoString

func (s CreateSecurityGroupInput) GoString() string

GoString returns the string representation

func (*CreateSecurityGroupInput) SetDescription

func (s *CreateSecurityGroupInput) SetDescription(v string) *CreateSecurityGroupInput

SetDescription sets the Description field's value.

func (*CreateSecurityGroupInput) SetDryRun

func (s *CreateSecurityGroupInput) SetDryRun(v bool) *CreateSecurityGroupInput

SetDryRun sets the DryRun field's value.

func (*CreateSecurityGroupInput) SetGroupName

func (s *CreateSecurityGroupInput) SetGroupName(v string) *CreateSecurityGroupInput

SetGroupName sets the GroupName field's value.

func (*CreateSecurityGroupInput) SetVpcId

func (s *CreateSecurityGroupInput) SetVpcId(v string) *CreateSecurityGroupInput

SetVpcId sets the VpcId field's value.

func (CreateSecurityGroupInput) String

func (s CreateSecurityGroupInput) String() string

String returns the string representation

func (*CreateSecurityGroupInput) Validate

func (s *CreateSecurityGroupInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateSecurityGroupOutput

Contains the output of CreateSecurityGroup. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateSecurityGroupResult

type CreateSecurityGroupOutput struct {

    // The ID of the security group.
    GroupId *string `locationName:"groupId" type:"string"`
    // contains filtered or unexported fields
}

func (CreateSecurityGroupOutput) GoString

func (s CreateSecurityGroupOutput) GoString() string

GoString returns the string representation

func (*CreateSecurityGroupOutput) SetGroupId

func (s *CreateSecurityGroupOutput) SetGroupId(v string) *CreateSecurityGroupOutput

SetGroupId sets the GroupId field's value.

func (CreateSecurityGroupOutput) String

func (s CreateSecurityGroupOutput) String() string

String returns the string representation

type CreateSnapshotInput

Contains the parameters for CreateSnapshot. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateSnapshotRequest

type CreateSnapshotInput struct {

    // A description for the snapshot.
    Description *string `type:"string"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the EBS volume.
    //
    // VolumeId is a required field
    VolumeId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (CreateSnapshotInput) GoString

func (s CreateSnapshotInput) GoString() string

GoString returns the string representation

func (*CreateSnapshotInput) SetDescription

func (s *CreateSnapshotInput) SetDescription(v string) *CreateSnapshotInput

SetDescription sets the Description field's value.

func (*CreateSnapshotInput) SetDryRun

func (s *CreateSnapshotInput) SetDryRun(v bool) *CreateSnapshotInput

SetDryRun sets the DryRun field's value.

func (*CreateSnapshotInput) SetVolumeId

func (s *CreateSnapshotInput) SetVolumeId(v string) *CreateSnapshotInput

SetVolumeId sets the VolumeId field's value.

func (CreateSnapshotInput) String

func (s CreateSnapshotInput) String() string

String returns the string representation

func (*CreateSnapshotInput) Validate

func (s *CreateSnapshotInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateSpotDatafeedSubscriptionInput

Contains the parameters for CreateSpotDatafeedSubscription. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateSpotDatafeedSubscriptionRequest

type CreateSpotDatafeedSubscriptionInput struct {

    // The Amazon S3 bucket in which to store the Spot instance data feed.
    //
    // Bucket is a required field
    Bucket *string `locationName:"bucket" type:"string" required:"true"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // A prefix for the data feed file names.
    Prefix *string `locationName:"prefix" type:"string"`
    // contains filtered or unexported fields
}

func (CreateSpotDatafeedSubscriptionInput) GoString

func (s CreateSpotDatafeedSubscriptionInput) GoString() string

GoString returns the string representation

func (*CreateSpotDatafeedSubscriptionInput) SetBucket

func (s *CreateSpotDatafeedSubscriptionInput) SetBucket(v string) *CreateSpotDatafeedSubscriptionInput

SetBucket sets the Bucket field's value.

func (*CreateSpotDatafeedSubscriptionInput) SetDryRun

func (s *CreateSpotDatafeedSubscriptionInput) SetDryRun(v bool) *CreateSpotDatafeedSubscriptionInput

SetDryRun sets the DryRun field's value.

func (*CreateSpotDatafeedSubscriptionInput) SetPrefix

func (s *CreateSpotDatafeedSubscriptionInput) SetPrefix(v string) *CreateSpotDatafeedSubscriptionInput

SetPrefix sets the Prefix field's value.

func (CreateSpotDatafeedSubscriptionInput) String

func (s CreateSpotDatafeedSubscriptionInput) String() string

String returns the string representation

func (*CreateSpotDatafeedSubscriptionInput) Validate

func (s *CreateSpotDatafeedSubscriptionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateSpotDatafeedSubscriptionOutput

Contains the output of CreateSpotDatafeedSubscription. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateSpotDatafeedSubscriptionResult

type CreateSpotDatafeedSubscriptionOutput struct {

    // The Spot instance data feed subscription.
    SpotDatafeedSubscription *SpotDatafeedSubscription `locationName:"spotDatafeedSubscription" type:"structure"`
    // contains filtered or unexported fields
}

func (CreateSpotDatafeedSubscriptionOutput) GoString

func (s CreateSpotDatafeedSubscriptionOutput) GoString() string

GoString returns the string representation

func (*CreateSpotDatafeedSubscriptionOutput) SetSpotDatafeedSubscription

func (s *CreateSpotDatafeedSubscriptionOutput) SetSpotDatafeedSubscription(v *SpotDatafeedSubscription) *CreateSpotDatafeedSubscriptionOutput

SetSpotDatafeedSubscription sets the SpotDatafeedSubscription field's value.

func (CreateSpotDatafeedSubscriptionOutput) String

func (s CreateSpotDatafeedSubscriptionOutput) String() string

String returns the string representation

type CreateSubnetInput

Contains the parameters for CreateSubnet. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateSubnetRequest

type CreateSubnetInput struct {

    // The Availability Zone for the subnet.
    //
    // Default: AWS selects one for you. If you create more than one subnet in your
    // VPC, we may not necessarily select a different zone for each subnet.
    AvailabilityZone *string `type:"string"`

    // The IPv4 network range for the subnet, in CIDR notation. For example, 10.0.0.0/24.
    //
    // CidrBlock is a required field
    CidrBlock *string `type:"string" required:"true"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The IPv6 network range for the subnet, in CIDR notation. The subnet size
    // must use a /64 prefix length.
    Ipv6CidrBlock *string `type:"string"`

    // The ID of the VPC.
    //
    // VpcId is a required field
    VpcId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (CreateSubnetInput) GoString

func (s CreateSubnetInput) GoString() string

GoString returns the string representation

func (*CreateSubnetInput) SetAvailabilityZone

func (s *CreateSubnetInput) SetAvailabilityZone(v string) *CreateSubnetInput

SetAvailabilityZone sets the AvailabilityZone field's value.

func (*CreateSubnetInput) SetCidrBlock

func (s *CreateSubnetInput) SetCidrBlock(v string) *CreateSubnetInput

SetCidrBlock sets the CidrBlock field's value.

func (*CreateSubnetInput) SetDryRun

func (s *CreateSubnetInput) SetDryRun(v bool) *CreateSubnetInput

SetDryRun sets the DryRun field's value.

func (*CreateSubnetInput) SetIpv6CidrBlock

func (s *CreateSubnetInput) SetIpv6CidrBlock(v string) *CreateSubnetInput

SetIpv6CidrBlock sets the Ipv6CidrBlock field's value.

func (*CreateSubnetInput) SetVpcId

func (s *CreateSubnetInput) SetVpcId(v string) *CreateSubnetInput

SetVpcId sets the VpcId field's value.

func (CreateSubnetInput) String

func (s CreateSubnetInput) String() string

String returns the string representation

func (*CreateSubnetInput) Validate

func (s *CreateSubnetInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateSubnetOutput

Contains the output of CreateSubnet. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateSubnetResult

type CreateSubnetOutput struct {

    // Information about the subnet.
    Subnet *Subnet `locationName:"subnet" type:"structure"`
    // contains filtered or unexported fields
}

func (CreateSubnetOutput) GoString

func (s CreateSubnetOutput) GoString() string

GoString returns the string representation

func (*CreateSubnetOutput) SetSubnet

func (s *CreateSubnetOutput) SetSubnet(v *Subnet) *CreateSubnetOutput

SetSubnet sets the Subnet field's value.

func (CreateSubnetOutput) String

func (s CreateSubnetOutput) String() string

String returns the string representation

type CreateTagsInput

Contains the parameters for CreateTags. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateTagsRequest

type CreateTagsInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The IDs of one or more resources to tag. For example, ami-1a2b3c4d.
    //
    // Resources is a required field
    Resources []*string `locationName:"ResourceId" type:"list" required:"true"`

    // One or more tags. The value parameter is required, but if you don't want
    // the tag to have a value, specify the parameter with no value, and we set
    // the value to an empty string.
    //
    // Tags is a required field
    Tags []*Tag `locationName:"Tag" locationNameList:"item" type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (CreateTagsInput) GoString

func (s CreateTagsInput) GoString() string

GoString returns the string representation

func (*CreateTagsInput) SetDryRun

func (s *CreateTagsInput) SetDryRun(v bool) *CreateTagsInput

SetDryRun sets the DryRun field's value.

func (*CreateTagsInput) SetResources

func (s *CreateTagsInput) SetResources(v []*string) *CreateTagsInput

SetResources sets the Resources field's value.

func (*CreateTagsInput) SetTags

func (s *CreateTagsInput) SetTags(v []*Tag) *CreateTagsInput

SetTags sets the Tags field's value.

func (CreateTagsInput) String

func (s CreateTagsInput) String() string

String returns the string representation

func (*CreateTagsInput) Validate

func (s *CreateTagsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateTagsOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateTagsOutput

type CreateTagsOutput struct {
    // contains filtered or unexported fields
}

func (CreateTagsOutput) GoString

func (s CreateTagsOutput) GoString() string

GoString returns the string representation

func (CreateTagsOutput) String

func (s CreateTagsOutput) String() string

String returns the string representation

type CreateVolumeInput

Contains the parameters for CreateVolume. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVolumeRequest

type CreateVolumeInput struct {

    // The Availability Zone in which to create the volume. Use DescribeAvailabilityZones
    // to list the Availability Zones that are currently available to you.
    //
    // AvailabilityZone is a required field
    AvailabilityZone *string `type:"string" required:"true"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // Specifies whether the volume should be encrypted. Encrypted Amazon EBS volumes
    // may only be attached to instances that support Amazon EBS encryption. Volumes
    // that are created from encrypted snapshots are automatically encrypted. There
    // is no way to create an encrypted volume from an unencrypted snapshot or vice
    // versa. If your AMI uses encrypted volumes, you can only launch it on supported
    // instance types. For more information, see Amazon EBS Encryption (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html)
    // in the Amazon Elastic Compute Cloud User Guide.
    Encrypted *bool `locationName:"encrypted" type:"boolean"`

    // Only valid for Provisioned IOPS SSD volumes. The number of I/O operations
    // per second (IOPS) to provision for the volume, with a maximum ratio of 50
    // IOPS/GiB.
    //
    // Constraint: Range is 100 to 20000 for Provisioned IOPS SSD volumes
    Iops *int64 `type:"integer"`

    // The full ARN of the AWS Key Management Service (AWS KMS) customer master
    // key (CMK) to use when creating the encrypted volume. This parameter is only
    // required if you want to use a non-default CMK; if this parameter is not specified,
    // the default CMK for EBS is used. The ARN contains the arn:aws:kms namespace,
    // followed by the region of the CMK, the AWS account ID of the CMK owner, the
    // key namespace, and then the CMK ID. For example, arn:aws:kms:us-east-1:012345678910:key/abcd1234-a123-456a-a12b-a123b4cd56ef.
    // If a KmsKeyId is specified, the Encrypted flag must also be set.
    KmsKeyId *string `type:"string"`

    // The size of the volume, in GiBs.
    //
    // Constraints: 1-16384 for gp2, 4-16384 for io1, 500-16384 for st1, 500-16384
    // for sc1, and 1-1024 for standard. If you specify a snapshot, the volume size
    // must be equal to or larger than the snapshot size.
    //
    // Default: If you're creating the volume from a snapshot and don't specify
    // a volume size, the default is the snapshot size.
    Size *int64 `type:"integer"`

    // The snapshot from which to create the volume.
    SnapshotId *string `type:"string"`

    // The tags to apply to the volume during creation.
    TagSpecifications []*TagSpecification `locationName:"TagSpecification" locationNameList:"item" type:"list"`

    // The volume type. This can be gp2 for General Purpose SSD, io1 for Provisioned
    // IOPS SSD, st1 for Throughput Optimized HDD, sc1 for Cold HDD, or standard
    // for Magnetic volumes.
    //
    // Default: standard
    VolumeType *string `type:"string" enum:"VolumeType"`
    // contains filtered or unexported fields
}

func (CreateVolumeInput) GoString

func (s CreateVolumeInput) GoString() string

GoString returns the string representation

func (*CreateVolumeInput) SetAvailabilityZone

func (s *CreateVolumeInput) SetAvailabilityZone(v string) *CreateVolumeInput

SetAvailabilityZone sets the AvailabilityZone field's value.

func (*CreateVolumeInput) SetDryRun

func (s *CreateVolumeInput) SetDryRun(v bool) *CreateVolumeInput

SetDryRun sets the DryRun field's value.

func (*CreateVolumeInput) SetEncrypted

func (s *CreateVolumeInput) SetEncrypted(v bool) *CreateVolumeInput

SetEncrypted sets the Encrypted field's value.

func (*CreateVolumeInput) SetIops

func (s *CreateVolumeInput) SetIops(v int64) *CreateVolumeInput

SetIops sets the Iops field's value.

func (*CreateVolumeInput) SetKmsKeyId

func (s *CreateVolumeInput) SetKmsKeyId(v string) *CreateVolumeInput

SetKmsKeyId sets the KmsKeyId field's value.

func (*CreateVolumeInput) SetSize

func (s *CreateVolumeInput) SetSize(v int64) *CreateVolumeInput

SetSize sets the Size field's value.

func (*CreateVolumeInput) SetSnapshotId

func (s *CreateVolumeInput) SetSnapshotId(v string) *CreateVolumeInput

SetSnapshotId sets the SnapshotId field's value.

func (*CreateVolumeInput) SetTagSpecifications

func (s *CreateVolumeInput) SetTagSpecifications(v []*TagSpecification) *CreateVolumeInput

SetTagSpecifications sets the TagSpecifications field's value.

func (*CreateVolumeInput) SetVolumeType

func (s *CreateVolumeInput) SetVolumeType(v string) *CreateVolumeInput

SetVolumeType sets the VolumeType field's value.

func (CreateVolumeInput) String

func (s CreateVolumeInput) String() string

String returns the string representation

func (*CreateVolumeInput) Validate

func (s *CreateVolumeInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateVolumePermission

Describes the user or group to be added or removed from the permissions for a volume. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVolumePermission

type CreateVolumePermission struct {

    // The specific group that is to be added or removed from a volume's list of
    // create volume permissions.
    Group *string `locationName:"group" type:"string" enum:"PermissionGroup"`

    // The specific AWS account ID that is to be added or removed from a volume's
    // list of create volume permissions.
    UserId *string `locationName:"userId" type:"string"`
    // contains filtered or unexported fields
}

func (CreateVolumePermission) GoString

func (s CreateVolumePermission) GoString() string

GoString returns the string representation

func (*CreateVolumePermission) SetGroup

func (s *CreateVolumePermission) SetGroup(v string) *CreateVolumePermission

SetGroup sets the Group field's value.

func (*CreateVolumePermission) SetUserId

func (s *CreateVolumePermission) SetUserId(v string) *CreateVolumePermission

SetUserId sets the UserId field's value.

func (CreateVolumePermission) String

func (s CreateVolumePermission) String() string

String returns the string representation

type CreateVolumePermissionModifications

Describes modifications to the permissions for a volume. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVolumePermissionModifications

type CreateVolumePermissionModifications struct {

    // Adds a specific AWS account ID or group to a volume's list of create volume
    // permissions.
    Add []*CreateVolumePermission `locationNameList:"item" type:"list"`

    // Removes a specific AWS account ID or group from a volume's list of create
    // volume permissions.
    Remove []*CreateVolumePermission `locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (CreateVolumePermissionModifications) GoString

func (s CreateVolumePermissionModifications) GoString() string

GoString returns the string representation

func (*CreateVolumePermissionModifications) SetAdd

func (s *CreateVolumePermissionModifications) SetAdd(v []*CreateVolumePermission) *CreateVolumePermissionModifications

SetAdd sets the Add field's value.

func (*CreateVolumePermissionModifications) SetRemove

func (s *CreateVolumePermissionModifications) SetRemove(v []*CreateVolumePermission) *CreateVolumePermissionModifications

SetRemove sets the Remove field's value.

func (CreateVolumePermissionModifications) String

func (s CreateVolumePermissionModifications) String() string

String returns the string representation

type CreateVpcEndpointInput

Contains the parameters for CreateVpcEndpoint. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVpcEndpointRequest

type CreateVpcEndpointInput struct {

    // Unique, case-sensitive identifier you provide to ensure the idempotency of
    // the request. For more information, see How to Ensure Idempotency (http://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html).
    ClientToken *string `type:"string"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `type:"boolean"`

    // A policy to attach to the endpoint that controls access to the service. The
    // policy must be in valid JSON format. If this parameter is not specified,
    // we attach a default policy that allows full access to the service.
    PolicyDocument *string `type:"string"`

    // One or more route table IDs.
    RouteTableIds []*string `locationName:"RouteTableId" locationNameList:"item" type:"list"`

    // The AWS service name, in the form com.amazonaws.region.service. To get a
    // list of available services, use the DescribeVpcEndpointServices request.
    //
    // ServiceName is a required field
    ServiceName *string `type:"string" required:"true"`

    // The ID of the VPC in which the endpoint will be used.
    //
    // VpcId is a required field
    VpcId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (CreateVpcEndpointInput) GoString

func (s CreateVpcEndpointInput) GoString() string

GoString returns the string representation

func (*CreateVpcEndpointInput) SetClientToken

func (s *CreateVpcEndpointInput) SetClientToken(v string) *CreateVpcEndpointInput

SetClientToken sets the ClientToken field's value.

func (*CreateVpcEndpointInput) SetDryRun

func (s *CreateVpcEndpointInput) SetDryRun(v bool) *CreateVpcEndpointInput

SetDryRun sets the DryRun field's value.

func (*CreateVpcEndpointInput) SetPolicyDocument

func (s *CreateVpcEndpointInput) SetPolicyDocument(v string) *CreateVpcEndpointInput

SetPolicyDocument sets the PolicyDocument field's value.

func (*CreateVpcEndpointInput) SetRouteTableIds

func (s *CreateVpcEndpointInput) SetRouteTableIds(v []*string) *CreateVpcEndpointInput

SetRouteTableIds sets the RouteTableIds field's value.

func (*CreateVpcEndpointInput) SetServiceName

func (s *CreateVpcEndpointInput) SetServiceName(v string) *CreateVpcEndpointInput

SetServiceName sets the ServiceName field's value.

func (*CreateVpcEndpointInput) SetVpcId

func (s *CreateVpcEndpointInput) SetVpcId(v string) *CreateVpcEndpointInput

SetVpcId sets the VpcId field's value.

func (CreateVpcEndpointInput) String

func (s CreateVpcEndpointInput) String() string

String returns the string representation

func (*CreateVpcEndpointInput) Validate

func (s *CreateVpcEndpointInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateVpcEndpointOutput

Contains the output of CreateVpcEndpoint. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVpcEndpointResult

type CreateVpcEndpointOutput struct {

    // Unique, case-sensitive identifier you provide to ensure the idempotency of
    // the request.
    ClientToken *string `locationName:"clientToken" type:"string"`

    // Information about the endpoint.
    VpcEndpoint *VpcEndpoint `locationName:"vpcEndpoint" type:"structure"`
    // contains filtered or unexported fields
}

func (CreateVpcEndpointOutput) GoString

func (s CreateVpcEndpointOutput) GoString() string

GoString returns the string representation

func (*CreateVpcEndpointOutput) SetClientToken

func (s *CreateVpcEndpointOutput) SetClientToken(v string) *CreateVpcEndpointOutput

SetClientToken sets the ClientToken field's value.

func (*CreateVpcEndpointOutput) SetVpcEndpoint

func (s *CreateVpcEndpointOutput) SetVpcEndpoint(v *VpcEndpoint) *CreateVpcEndpointOutput

SetVpcEndpoint sets the VpcEndpoint field's value.

func (CreateVpcEndpointOutput) String

func (s CreateVpcEndpointOutput) String() string

String returns the string representation

type CreateVpcInput

Contains the parameters for CreateVpc. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVpcRequest

type CreateVpcInput struct {

    // Requests an Amazon-provided IPv6 CIDR block with a /56 prefix length for
    // the VPC. You cannot specify the range of IP addresses, or the size of the
    // CIDR block.
    AmazonProvidedIpv6CidrBlock *bool `locationName:"amazonProvidedIpv6CidrBlock" type:"boolean"`

    // The IPv4 network range for the VPC, in CIDR notation. For example, 10.0.0.0/16.
    //
    // CidrBlock is a required field
    CidrBlock *string `type:"string" required:"true"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The tenancy options for instances launched into the VPC. For default, instances
    // are launched with shared tenancy by default. You can launch instances with
    // any tenancy into a shared tenancy VPC. For dedicated, instances are launched
    // as dedicated tenancy instances by default. You can only launch instances
    // with a tenancy of dedicated or host into a dedicated tenancy VPC.
    //
    // Important: The host value cannot be used with this parameter. Use the default
    // or dedicated values only.
    //
    // Default: default
    InstanceTenancy *string `locationName:"instanceTenancy" type:"string" enum:"Tenancy"`
    // contains filtered or unexported fields
}

func (CreateVpcInput) GoString

func (s CreateVpcInput) GoString() string

GoString returns the string representation

func (*CreateVpcInput) SetAmazonProvidedIpv6CidrBlock

func (s *CreateVpcInput) SetAmazonProvidedIpv6CidrBlock(v bool) *CreateVpcInput

SetAmazonProvidedIpv6CidrBlock sets the AmazonProvidedIpv6CidrBlock field's value.

func (*CreateVpcInput) SetCidrBlock

func (s *CreateVpcInput) SetCidrBlock(v string) *CreateVpcInput

SetCidrBlock sets the CidrBlock field's value.

func (*CreateVpcInput) SetDryRun

func (s *CreateVpcInput) SetDryRun(v bool) *CreateVpcInput

SetDryRun sets the DryRun field's value.

func (*CreateVpcInput) SetInstanceTenancy

func (s *CreateVpcInput) SetInstanceTenancy(v string) *CreateVpcInput

SetInstanceTenancy sets the InstanceTenancy field's value.

func (CreateVpcInput) String

func (s CreateVpcInput) String() string

String returns the string representation

func (*CreateVpcInput) Validate

func (s *CreateVpcInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateVpcOutput

Contains the output of CreateVpc. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVpcResult

type CreateVpcOutput struct {

    // Information about the VPC.
    Vpc *Vpc `locationName:"vpc" type:"structure"`
    // contains filtered or unexported fields
}

func (CreateVpcOutput) GoString

func (s CreateVpcOutput) GoString() string

GoString returns the string representation

func (*CreateVpcOutput) SetVpc

func (s *CreateVpcOutput) SetVpc(v *Vpc) *CreateVpcOutput

SetVpc sets the Vpc field's value.

func (CreateVpcOutput) String

func (s CreateVpcOutput) String() string

String returns the string representation

type CreateVpcPeeringConnectionInput

Contains the parameters for CreateVpcPeeringConnection. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVpcPeeringConnectionRequest

type CreateVpcPeeringConnectionInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The AWS account ID of the owner of the peer VPC.
    //
    // Default: Your AWS account ID
    PeerOwnerId *string `locationName:"peerOwnerId" type:"string"`

    // The ID of the VPC with which you are creating the VPC peering connection.
    PeerVpcId *string `locationName:"peerVpcId" type:"string"`

    // The ID of the requester VPC.
    VpcId *string `locationName:"vpcId" type:"string"`
    // contains filtered or unexported fields
}

func (CreateVpcPeeringConnectionInput) GoString

func (s CreateVpcPeeringConnectionInput) GoString() string

GoString returns the string representation

func (*CreateVpcPeeringConnectionInput) SetDryRun

func (s *CreateVpcPeeringConnectionInput) SetDryRun(v bool) *CreateVpcPeeringConnectionInput

SetDryRun sets the DryRun field's value.

func (*CreateVpcPeeringConnectionInput) SetPeerOwnerId

func (s *CreateVpcPeeringConnectionInput) SetPeerOwnerId(v string) *CreateVpcPeeringConnectionInput

SetPeerOwnerId sets the PeerOwnerId field's value.

func (*CreateVpcPeeringConnectionInput) SetPeerVpcId

func (s *CreateVpcPeeringConnectionInput) SetPeerVpcId(v string) *CreateVpcPeeringConnectionInput

SetPeerVpcId sets the PeerVpcId field's value.

func (*CreateVpcPeeringConnectionInput) SetVpcId

func (s *CreateVpcPeeringConnectionInput) SetVpcId(v string) *CreateVpcPeeringConnectionInput

SetVpcId sets the VpcId field's value.

func (CreateVpcPeeringConnectionInput) String

func (s CreateVpcPeeringConnectionInput) String() string

String returns the string representation

type CreateVpcPeeringConnectionOutput

Contains the output of CreateVpcPeeringConnection. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVpcPeeringConnectionResult

type CreateVpcPeeringConnectionOutput struct {

    // Information about the VPC peering connection.
    VpcPeeringConnection *VpcPeeringConnection `locationName:"vpcPeeringConnection" type:"structure"`
    // contains filtered or unexported fields
}

func (CreateVpcPeeringConnectionOutput) GoString

func (s CreateVpcPeeringConnectionOutput) GoString() string

GoString returns the string representation

func (*CreateVpcPeeringConnectionOutput) SetVpcPeeringConnection

func (s *CreateVpcPeeringConnectionOutput) SetVpcPeeringConnection(v *VpcPeeringConnection) *CreateVpcPeeringConnectionOutput

SetVpcPeeringConnection sets the VpcPeeringConnection field's value.

func (CreateVpcPeeringConnectionOutput) String

func (s CreateVpcPeeringConnectionOutput) String() string

String returns the string representation

type CreateVpnConnectionInput

Contains the parameters for CreateVpnConnection. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVpnConnectionRequest

type CreateVpnConnectionInput struct {

    // The ID of the customer gateway.
    //
    // CustomerGatewayId is a required field
    CustomerGatewayId *string `type:"string" required:"true"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // Indicates whether the VPN connection requires static routes. If you are creating
    // a VPN connection for a device that does not support BGP, you must specify
    // true.
    //
    // Default: false
    Options *VpnConnectionOptionsSpecification `locationName:"options" type:"structure"`

    // The type of VPN connection (ipsec.1).
    //
    // Type is a required field
    Type *string `type:"string" required:"true"`

    // The ID of the virtual private gateway.
    //
    // VpnGatewayId is a required field
    VpnGatewayId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (CreateVpnConnectionInput) GoString

func (s CreateVpnConnectionInput) GoString() string

GoString returns the string representation

func (*CreateVpnConnectionInput) SetCustomerGatewayId

func (s *CreateVpnConnectionInput) SetCustomerGatewayId(v string) *CreateVpnConnectionInput

SetCustomerGatewayId sets the CustomerGatewayId field's value.

func (*CreateVpnConnectionInput) SetDryRun

func (s *CreateVpnConnectionInput) SetDryRun(v bool) *CreateVpnConnectionInput

SetDryRun sets the DryRun field's value.

func (*CreateVpnConnectionInput) SetOptions

func (s *CreateVpnConnectionInput) SetOptions(v *VpnConnectionOptionsSpecification) *CreateVpnConnectionInput

SetOptions sets the Options field's value.

func (*CreateVpnConnectionInput) SetType

func (s *CreateVpnConnectionInput) SetType(v string) *CreateVpnConnectionInput

SetType sets the Type field's value.

func (*CreateVpnConnectionInput) SetVpnGatewayId

func (s *CreateVpnConnectionInput) SetVpnGatewayId(v string) *CreateVpnConnectionInput

SetVpnGatewayId sets the VpnGatewayId field's value.

func (CreateVpnConnectionInput) String

func (s CreateVpnConnectionInput) String() string

String returns the string representation

func (*CreateVpnConnectionInput) Validate

func (s *CreateVpnConnectionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateVpnConnectionOutput

Contains the output of CreateVpnConnection. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVpnConnectionResult

type CreateVpnConnectionOutput struct {

    // Information about the VPN connection.
    VpnConnection *VpnConnection `locationName:"vpnConnection" type:"structure"`
    // contains filtered or unexported fields
}

func (CreateVpnConnectionOutput) GoString

func (s CreateVpnConnectionOutput) GoString() string

GoString returns the string representation

func (*CreateVpnConnectionOutput) SetVpnConnection

func (s *CreateVpnConnectionOutput) SetVpnConnection(v *VpnConnection) *CreateVpnConnectionOutput

SetVpnConnection sets the VpnConnection field's value.

func (CreateVpnConnectionOutput) String

func (s CreateVpnConnectionOutput) String() string

String returns the string representation

type CreateVpnConnectionRouteInput

Contains the parameters for CreateVpnConnectionRoute. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVpnConnectionRouteRequest

type CreateVpnConnectionRouteInput struct {

    // The CIDR block associated with the local subnet of the customer network.
    //
    // DestinationCidrBlock is a required field
    DestinationCidrBlock *string `type:"string" required:"true"`

    // The ID of the VPN connection.
    //
    // VpnConnectionId is a required field
    VpnConnectionId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (CreateVpnConnectionRouteInput) GoString

func (s CreateVpnConnectionRouteInput) GoString() string

GoString returns the string representation

func (*CreateVpnConnectionRouteInput) SetDestinationCidrBlock

func (s *CreateVpnConnectionRouteInput) SetDestinationCidrBlock(v string) *CreateVpnConnectionRouteInput

SetDestinationCidrBlock sets the DestinationCidrBlock field's value.

func (*CreateVpnConnectionRouteInput) SetVpnConnectionId

func (s *CreateVpnConnectionRouteInput) SetVpnConnectionId(v string) *CreateVpnConnectionRouteInput

SetVpnConnectionId sets the VpnConnectionId field's value.

func (CreateVpnConnectionRouteInput) String

func (s CreateVpnConnectionRouteInput) String() string

String returns the string representation

func (*CreateVpnConnectionRouteInput) Validate

func (s *CreateVpnConnectionRouteInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateVpnConnectionRouteOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVpnConnectionRouteOutput

type CreateVpnConnectionRouteOutput struct {
    // contains filtered or unexported fields
}

func (CreateVpnConnectionRouteOutput) GoString

func (s CreateVpnConnectionRouteOutput) GoString() string

GoString returns the string representation

func (CreateVpnConnectionRouteOutput) String

func (s CreateVpnConnectionRouteOutput) String() string

String returns the string representation

type CreateVpnGatewayInput

Contains the parameters for CreateVpnGateway. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVpnGatewayRequest

type CreateVpnGatewayInput struct {

    // The Availability Zone for the virtual private gateway.
    AvailabilityZone *string `type:"string"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The type of VPN connection this virtual private gateway supports.
    //
    // Type is a required field
    Type *string `type:"string" required:"true" enum:"GatewayType"`
    // contains filtered or unexported fields
}

func (CreateVpnGatewayInput) GoString

func (s CreateVpnGatewayInput) GoString() string

GoString returns the string representation

func (*CreateVpnGatewayInput) SetAvailabilityZone

func (s *CreateVpnGatewayInput) SetAvailabilityZone(v string) *CreateVpnGatewayInput

SetAvailabilityZone sets the AvailabilityZone field's value.

func (*CreateVpnGatewayInput) SetDryRun

func (s *CreateVpnGatewayInput) SetDryRun(v bool) *CreateVpnGatewayInput

SetDryRun sets the DryRun field's value.

func (*CreateVpnGatewayInput) SetType

func (s *CreateVpnGatewayInput) SetType(v string) *CreateVpnGatewayInput

SetType sets the Type field's value.

func (CreateVpnGatewayInput) String

func (s CreateVpnGatewayInput) String() string

String returns the string representation

func (*CreateVpnGatewayInput) Validate

func (s *CreateVpnGatewayInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateVpnGatewayOutput

Contains the output of CreateVpnGateway. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVpnGatewayResult

type CreateVpnGatewayOutput struct {

    // Information about the virtual private gateway.
    VpnGateway *VpnGateway `locationName:"vpnGateway" type:"structure"`
    // contains filtered or unexported fields
}

func (CreateVpnGatewayOutput) GoString

func (s CreateVpnGatewayOutput) GoString() string

GoString returns the string representation

func (*CreateVpnGatewayOutput) SetVpnGateway

func (s *CreateVpnGatewayOutput) SetVpnGateway(v *VpnGateway) *CreateVpnGatewayOutput

SetVpnGateway sets the VpnGateway field's value.

func (CreateVpnGatewayOutput) String

func (s CreateVpnGatewayOutput) String() string

String returns the string representation

type CustomerGateway

Describes a customer gateway. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CustomerGateway

type CustomerGateway struct {

    // The customer gateway's Border Gateway Protocol (BGP) Autonomous System Number
    // (ASN).
    BgpAsn *string `locationName:"bgpAsn" type:"string"`

    // The ID of the customer gateway.
    CustomerGatewayId *string `locationName:"customerGatewayId" type:"string"`

    // The Internet-routable IP address of the customer gateway's outside interface.
    IpAddress *string `locationName:"ipAddress" type:"string"`

    // The current state of the customer gateway (pending | available | deleting
    // | deleted).
    State *string `locationName:"state" type:"string"`

    // Any tags assigned to the customer gateway.
    Tags []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"`

    // The type of VPN connection the customer gateway supports (ipsec.1).
    Type *string `locationName:"type" type:"string"`
    // contains filtered or unexported fields
}

func (CustomerGateway) GoString

func (s CustomerGateway) GoString() string

GoString returns the string representation

func (*CustomerGateway) SetBgpAsn

func (s *CustomerGateway) SetBgpAsn(v string) *CustomerGateway

SetBgpAsn sets the BgpAsn field's value.

func (*CustomerGateway) SetCustomerGatewayId

func (s *CustomerGateway) SetCustomerGatewayId(v string) *CustomerGateway

SetCustomerGatewayId sets the CustomerGatewayId field's value.

func (*CustomerGateway) SetIpAddress

func (s *CustomerGateway) SetIpAddress(v string) *CustomerGateway

SetIpAddress sets the IpAddress field's value.

func (*CustomerGateway) SetState

func (s *CustomerGateway) SetState(v string) *CustomerGateway

SetState sets the State field's value.

func (*CustomerGateway) SetTags

func (s *CustomerGateway) SetTags(v []*Tag) *CustomerGateway

SetTags sets the Tags field's value.

func (*CustomerGateway) SetType

func (s *CustomerGateway) SetType(v string) *CustomerGateway

SetType sets the Type field's value.

func (CustomerGateway) String

func (s CustomerGateway) String() string

String returns the string representation

type DeleteCustomerGatewayInput

Contains the parameters for DeleteCustomerGateway. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteCustomerGatewayRequest

type DeleteCustomerGatewayInput struct {

    // The ID of the customer gateway.
    //
    // CustomerGatewayId is a required field
    CustomerGatewayId *string `type:"string" required:"true"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`
    // contains filtered or unexported fields
}

func (DeleteCustomerGatewayInput) GoString

func (s DeleteCustomerGatewayInput) GoString() string

GoString returns the string representation

func (*DeleteCustomerGatewayInput) SetCustomerGatewayId

func (s *DeleteCustomerGatewayInput) SetCustomerGatewayId(v string) *DeleteCustomerGatewayInput

SetCustomerGatewayId sets the CustomerGatewayId field's value.

func (*DeleteCustomerGatewayInput) SetDryRun

func (s *DeleteCustomerGatewayInput) SetDryRun(v bool) *DeleteCustomerGatewayInput

SetDryRun sets the DryRun field's value.

func (DeleteCustomerGatewayInput) String

func (s DeleteCustomerGatewayInput) String() string

String returns the string representation

func (*DeleteCustomerGatewayInput) Validate

func (s *DeleteCustomerGatewayInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteCustomerGatewayOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteCustomerGatewayOutput

type DeleteCustomerGatewayOutput struct {
    // contains filtered or unexported fields
}

func (DeleteCustomerGatewayOutput) GoString

func (s DeleteCustomerGatewayOutput) GoString() string

GoString returns the string representation

func (DeleteCustomerGatewayOutput) String

func (s DeleteCustomerGatewayOutput) String() string

String returns the string representation

type DeleteDhcpOptionsInput

Contains the parameters for DeleteDhcpOptions. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteDhcpOptionsRequest

type DeleteDhcpOptionsInput struct {

    // The ID of the DHCP options set.
    //
    // DhcpOptionsId is a required field
    DhcpOptionsId *string `type:"string" required:"true"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`
    // contains filtered or unexported fields
}

func (DeleteDhcpOptionsInput) GoString

func (s DeleteDhcpOptionsInput) GoString() string

GoString returns the string representation

func (*DeleteDhcpOptionsInput) SetDhcpOptionsId

func (s *DeleteDhcpOptionsInput) SetDhcpOptionsId(v string) *DeleteDhcpOptionsInput

SetDhcpOptionsId sets the DhcpOptionsId field's value.

func (*DeleteDhcpOptionsInput) SetDryRun

func (s *DeleteDhcpOptionsInput) SetDryRun(v bool) *DeleteDhcpOptionsInput

SetDryRun sets the DryRun field's value.

func (DeleteDhcpOptionsInput) String

func (s DeleteDhcpOptionsInput) String() string

String returns the string representation

func (*DeleteDhcpOptionsInput) Validate

func (s *DeleteDhcpOptionsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteDhcpOptionsOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteDhcpOptionsOutput

type DeleteDhcpOptionsOutput struct {
    // contains filtered or unexported fields
}

func (DeleteDhcpOptionsOutput) GoString

func (s DeleteDhcpOptionsOutput) GoString() string

GoString returns the string representation

func (DeleteDhcpOptionsOutput) String

func (s DeleteDhcpOptionsOutput) String() string

String returns the string representation

type DeleteEgressOnlyInternetGatewayInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteEgressOnlyInternetGatewayRequest

type DeleteEgressOnlyInternetGatewayInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `type:"boolean"`

    // The ID of the egress-only Internet gateway.
    //
    // EgressOnlyInternetGatewayId is a required field
    EgressOnlyInternetGatewayId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteEgressOnlyInternetGatewayInput) GoString

func (s DeleteEgressOnlyInternetGatewayInput) GoString() string

GoString returns the string representation

func (*DeleteEgressOnlyInternetGatewayInput) SetDryRun

func (s *DeleteEgressOnlyInternetGatewayInput) SetDryRun(v bool) *DeleteEgressOnlyInternetGatewayInput

SetDryRun sets the DryRun field's value.

func (*DeleteEgressOnlyInternetGatewayInput) SetEgressOnlyInternetGatewayId

func (s *DeleteEgressOnlyInternetGatewayInput) SetEgressOnlyInternetGatewayId(v string) *DeleteEgressOnlyInternetGatewayInput

SetEgressOnlyInternetGatewayId sets the EgressOnlyInternetGatewayId field's value.

func (DeleteEgressOnlyInternetGatewayInput) String

func (s DeleteEgressOnlyInternetGatewayInput) String() string

String returns the string representation

func (*DeleteEgressOnlyInternetGatewayInput) Validate

func (s *DeleteEgressOnlyInternetGatewayInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteEgressOnlyInternetGatewayOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteEgressOnlyInternetGatewayResult

type DeleteEgressOnlyInternetGatewayOutput struct {

    // Returns true if the request succeeds; otherwise, it returns an error.
    ReturnCode *bool `locationName:"returnCode" type:"boolean"`
    // contains filtered or unexported fields
}

func (DeleteEgressOnlyInternetGatewayOutput) GoString

func (s DeleteEgressOnlyInternetGatewayOutput) GoString() string

GoString returns the string representation

func (*DeleteEgressOnlyInternetGatewayOutput) SetReturnCode

func (s *DeleteEgressOnlyInternetGatewayOutput) SetReturnCode(v bool) *DeleteEgressOnlyInternetGatewayOutput

SetReturnCode sets the ReturnCode field's value.

func (DeleteEgressOnlyInternetGatewayOutput) String

func (s DeleteEgressOnlyInternetGatewayOutput) String() string

String returns the string representation

type DeleteFlowLogsInput

Contains the parameters for DeleteFlowLogs. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteFlowLogsRequest

type DeleteFlowLogsInput struct {

    // One or more flow log IDs.
    //
    // FlowLogIds is a required field
    FlowLogIds []*string `locationName:"FlowLogId" locationNameList:"item" type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteFlowLogsInput) GoString

func (s DeleteFlowLogsInput) GoString() string

GoString returns the string representation

func (*DeleteFlowLogsInput) SetFlowLogIds

func (s *DeleteFlowLogsInput) SetFlowLogIds(v []*string) *DeleteFlowLogsInput

SetFlowLogIds sets the FlowLogIds field's value.

func (DeleteFlowLogsInput) String

func (s DeleteFlowLogsInput) String() string

String returns the string representation

func (*DeleteFlowLogsInput) Validate

func (s *DeleteFlowLogsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteFlowLogsOutput

Contains the output of DeleteFlowLogs. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteFlowLogsResult

type DeleteFlowLogsOutput struct {

    // Information about the flow logs that could not be deleted successfully.
    Unsuccessful []*UnsuccessfulItem `locationName:"unsuccessful" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DeleteFlowLogsOutput) GoString

func (s DeleteFlowLogsOutput) GoString() string

GoString returns the string representation

func (*DeleteFlowLogsOutput) SetUnsuccessful

func (s *DeleteFlowLogsOutput) SetUnsuccessful(v []*UnsuccessfulItem) *DeleteFlowLogsOutput

SetUnsuccessful sets the Unsuccessful field's value.

func (DeleteFlowLogsOutput) String

func (s DeleteFlowLogsOutput) String() string

String returns the string representation

type DeleteInternetGatewayInput

Contains the parameters for DeleteInternetGateway. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteInternetGatewayRequest

type DeleteInternetGatewayInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the Internet gateway.
    //
    // InternetGatewayId is a required field
    InternetGatewayId *string `locationName:"internetGatewayId" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteInternetGatewayInput) GoString

func (s DeleteInternetGatewayInput) GoString() string

GoString returns the string representation

func (*DeleteInternetGatewayInput) SetDryRun

func (s *DeleteInternetGatewayInput) SetDryRun(v bool) *DeleteInternetGatewayInput

SetDryRun sets the DryRun field's value.

func (*DeleteInternetGatewayInput) SetInternetGatewayId

func (s *DeleteInternetGatewayInput) SetInternetGatewayId(v string) *DeleteInternetGatewayInput

SetInternetGatewayId sets the InternetGatewayId field's value.

func (DeleteInternetGatewayInput) String

func (s DeleteInternetGatewayInput) String() string

String returns the string representation

func (*DeleteInternetGatewayInput) Validate

func (s *DeleteInternetGatewayInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteInternetGatewayOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteInternetGatewayOutput

type DeleteInternetGatewayOutput struct {
    // contains filtered or unexported fields
}

func (DeleteInternetGatewayOutput) GoString

func (s DeleteInternetGatewayOutput) GoString() string

GoString returns the string representation

func (DeleteInternetGatewayOutput) String

func (s DeleteInternetGatewayOutput) String() string

String returns the string representation

type DeleteKeyPairInput

Contains the parameters for DeleteKeyPair. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteKeyPairRequest

type DeleteKeyPairInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The name of the key pair.
    //
    // KeyName is a required field
    KeyName *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteKeyPairInput) GoString

func (s DeleteKeyPairInput) GoString() string

GoString returns the string representation

func (*DeleteKeyPairInput) SetDryRun

func (s *DeleteKeyPairInput) SetDryRun(v bool) *DeleteKeyPairInput

SetDryRun sets the DryRun field's value.

func (*DeleteKeyPairInput) SetKeyName

func (s *DeleteKeyPairInput) SetKeyName(v string) *DeleteKeyPairInput

SetKeyName sets the KeyName field's value.

func (DeleteKeyPairInput) String

func (s DeleteKeyPairInput) String() string

String returns the string representation

func (*DeleteKeyPairInput) Validate

func (s *DeleteKeyPairInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteKeyPairOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteKeyPairOutput

type DeleteKeyPairOutput struct {
    // contains filtered or unexported fields
}

func (DeleteKeyPairOutput) GoString

func (s DeleteKeyPairOutput) GoString() string

GoString returns the string representation

func (DeleteKeyPairOutput) String

func (s DeleteKeyPairOutput) String() string

String returns the string representation

type DeleteNatGatewayInput

Contains the parameters for DeleteNatGateway. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteNatGatewayRequest

type DeleteNatGatewayInput struct {

    // The ID of the NAT gateway.
    //
    // NatGatewayId is a required field
    NatGatewayId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteNatGatewayInput) GoString

func (s DeleteNatGatewayInput) GoString() string

GoString returns the string representation

func (*DeleteNatGatewayInput) SetNatGatewayId

func (s *DeleteNatGatewayInput) SetNatGatewayId(v string) *DeleteNatGatewayInput

SetNatGatewayId sets the NatGatewayId field's value.

func (DeleteNatGatewayInput) String

func (s DeleteNatGatewayInput) String() string

String returns the string representation

func (*DeleteNatGatewayInput) Validate

func (s *DeleteNatGatewayInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteNatGatewayOutput

Contains the output of DeleteNatGateway. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteNatGatewayResult

type DeleteNatGatewayOutput struct {

    // The ID of the NAT gateway.
    NatGatewayId *string `locationName:"natGatewayId" type:"string"`
    // contains filtered or unexported fields
}

func (DeleteNatGatewayOutput) GoString

func (s DeleteNatGatewayOutput) GoString() string

GoString returns the string representation

func (*DeleteNatGatewayOutput) SetNatGatewayId

func (s *DeleteNatGatewayOutput) SetNatGatewayId(v string) *DeleteNatGatewayOutput

SetNatGatewayId sets the NatGatewayId field's value.

func (DeleteNatGatewayOutput) String

func (s DeleteNatGatewayOutput) String() string

String returns the string representation

type DeleteNetworkAclEntryInput

Contains the parameters for DeleteNetworkAclEntry. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteNetworkAclEntryRequest

type DeleteNetworkAclEntryInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // Indicates whether the rule is an egress rule.
    //
    // Egress is a required field
    Egress *bool `locationName:"egress" type:"boolean" required:"true"`

    // The ID of the network ACL.
    //
    // NetworkAclId is a required field
    NetworkAclId *string `locationName:"networkAclId" type:"string" required:"true"`

    // The rule number of the entry to delete.
    //
    // RuleNumber is a required field
    RuleNumber *int64 `locationName:"ruleNumber" type:"integer" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteNetworkAclEntryInput) GoString

func (s DeleteNetworkAclEntryInput) GoString() string

GoString returns the string representation

func (*DeleteNetworkAclEntryInput) SetDryRun

func (s *DeleteNetworkAclEntryInput) SetDryRun(v bool) *DeleteNetworkAclEntryInput

SetDryRun sets the DryRun field's value.

func (*DeleteNetworkAclEntryInput) SetEgress

func (s *DeleteNetworkAclEntryInput) SetEgress(v bool) *DeleteNetworkAclEntryInput

SetEgress sets the Egress field's value.

func (*DeleteNetworkAclEntryInput) SetNetworkAclId

func (s *DeleteNetworkAclEntryInput) SetNetworkAclId(v string) *DeleteNetworkAclEntryInput

SetNetworkAclId sets the NetworkAclId field's value.

func (*DeleteNetworkAclEntryInput) SetRuleNumber

func (s *DeleteNetworkAclEntryInput) SetRuleNumber(v int64) *DeleteNetworkAclEntryInput

SetRuleNumber sets the RuleNumber field's value.

func (DeleteNetworkAclEntryInput) String

func (s DeleteNetworkAclEntryInput) String() string

String returns the string representation

func (*DeleteNetworkAclEntryInput) Validate

func (s *DeleteNetworkAclEntryInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteNetworkAclEntryOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteNetworkAclEntryOutput

type DeleteNetworkAclEntryOutput struct {
    // contains filtered or unexported fields
}

func (DeleteNetworkAclEntryOutput) GoString

func (s DeleteNetworkAclEntryOutput) GoString() string

GoString returns the string representation

func (DeleteNetworkAclEntryOutput) String

func (s DeleteNetworkAclEntryOutput) String() string

String returns the string representation

type DeleteNetworkAclInput

Contains the parameters for DeleteNetworkAcl. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteNetworkAclRequest

type DeleteNetworkAclInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the network ACL.
    //
    // NetworkAclId is a required field
    NetworkAclId *string `locationName:"networkAclId" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteNetworkAclInput) GoString

func (s DeleteNetworkAclInput) GoString() string

GoString returns the string representation

func (*DeleteNetworkAclInput) SetDryRun

func (s *DeleteNetworkAclInput) SetDryRun(v bool) *DeleteNetworkAclInput

SetDryRun sets the DryRun field's value.

func (*DeleteNetworkAclInput) SetNetworkAclId

func (s *DeleteNetworkAclInput) SetNetworkAclId(v string) *DeleteNetworkAclInput

SetNetworkAclId sets the NetworkAclId field's value.

func (DeleteNetworkAclInput) String

func (s DeleteNetworkAclInput) String() string

String returns the string representation

func (*DeleteNetworkAclInput) Validate

func (s *DeleteNetworkAclInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteNetworkAclOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteNetworkAclOutput

type DeleteNetworkAclOutput struct {
    // contains filtered or unexported fields
}

func (DeleteNetworkAclOutput) GoString

func (s DeleteNetworkAclOutput) GoString() string

GoString returns the string representation

func (DeleteNetworkAclOutput) String

func (s DeleteNetworkAclOutput) String() string

String returns the string representation

type DeleteNetworkInterfaceInput

Contains the parameters for DeleteNetworkInterface. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteNetworkInterfaceRequest

type DeleteNetworkInterfaceInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the network interface.
    //
    // NetworkInterfaceId is a required field
    NetworkInterfaceId *string `locationName:"networkInterfaceId" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteNetworkInterfaceInput) GoString

func (s DeleteNetworkInterfaceInput) GoString() string

GoString returns the string representation

func (*DeleteNetworkInterfaceInput) SetDryRun

func (s *DeleteNetworkInterfaceInput) SetDryRun(v bool) *DeleteNetworkInterfaceInput

SetDryRun sets the DryRun field's value.

func (*DeleteNetworkInterfaceInput) SetNetworkInterfaceId

func (s *DeleteNetworkInterfaceInput) SetNetworkInterfaceId(v string) *DeleteNetworkInterfaceInput

SetNetworkInterfaceId sets the NetworkInterfaceId field's value.

func (DeleteNetworkInterfaceInput) String

func (s DeleteNetworkInterfaceInput) String() string

String returns the string representation

func (*DeleteNetworkInterfaceInput) Validate

func (s *DeleteNetworkInterfaceInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteNetworkInterfaceOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteNetworkInterfaceOutput

type DeleteNetworkInterfaceOutput struct {
    // contains filtered or unexported fields
}

func (DeleteNetworkInterfaceOutput) GoString

func (s DeleteNetworkInterfaceOutput) GoString() string

GoString returns the string representation

func (DeleteNetworkInterfaceOutput) String

func (s DeleteNetworkInterfaceOutput) String() string

String returns the string representation

type DeletePlacementGroupInput

Contains the parameters for DeletePlacementGroup. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeletePlacementGroupRequest

type DeletePlacementGroupInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The name of the placement group.
    //
    // GroupName is a required field
    GroupName *string `locationName:"groupName" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeletePlacementGroupInput) GoString

func (s DeletePlacementGroupInput) GoString() string

GoString returns the string representation

func (*DeletePlacementGroupInput) SetDryRun

func (s *DeletePlacementGroupInput) SetDryRun(v bool) *DeletePlacementGroupInput

SetDryRun sets the DryRun field's value.

func (*DeletePlacementGroupInput) SetGroupName

func (s *DeletePlacementGroupInput) SetGroupName(v string) *DeletePlacementGroupInput

SetGroupName sets the GroupName field's value.

func (DeletePlacementGroupInput) String

func (s DeletePlacementGroupInput) String() string

String returns the string representation

func (*DeletePlacementGroupInput) Validate

func (s *DeletePlacementGroupInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeletePlacementGroupOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeletePlacementGroupOutput

type DeletePlacementGroupOutput struct {
    // contains filtered or unexported fields
}

func (DeletePlacementGroupOutput) GoString

func (s DeletePlacementGroupOutput) GoString() string

GoString returns the string representation

func (DeletePlacementGroupOutput) String

func (s DeletePlacementGroupOutput) String() string

String returns the string representation

type DeleteRouteInput

Contains the parameters for DeleteRoute. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteRouteRequest

type DeleteRouteInput struct {

    // The IPv4 CIDR range for the route. The value you specify must match the CIDR
    // for the route exactly.
    DestinationCidrBlock *string `locationName:"destinationCidrBlock" type:"string"`

    // The IPv6 CIDR range for the route. The value you specify must match the CIDR
    // for the route exactly.
    DestinationIpv6CidrBlock *string `locationName:"destinationIpv6CidrBlock" type:"string"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the route table.
    //
    // RouteTableId is a required field
    RouteTableId *string `locationName:"routeTableId" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteRouteInput) GoString

func (s DeleteRouteInput) GoString() string

GoString returns the string representation

func (*DeleteRouteInput) SetDestinationCidrBlock

func (s *DeleteRouteInput) SetDestinationCidrBlock(v string) *DeleteRouteInput

SetDestinationCidrBlock sets the DestinationCidrBlock field's value.

func (*DeleteRouteInput) SetDestinationIpv6CidrBlock

func (s *DeleteRouteInput) SetDestinationIpv6CidrBlock(v string) *DeleteRouteInput

SetDestinationIpv6CidrBlock sets the DestinationIpv6CidrBlock field's value.

func (*DeleteRouteInput) SetDryRun

func (s *DeleteRouteInput) SetDryRun(v bool) *DeleteRouteInput

SetDryRun sets the DryRun field's value.

func (*DeleteRouteInput) SetRouteTableId

func (s *DeleteRouteInput) SetRouteTableId(v string) *DeleteRouteInput

SetRouteTableId sets the RouteTableId field's value.

func (DeleteRouteInput) String

func (s DeleteRouteInput) String() string

String returns the string representation

func (*DeleteRouteInput) Validate

func (s *DeleteRouteInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteRouteOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteRouteOutput

type DeleteRouteOutput struct {
    // contains filtered or unexported fields
}

func (DeleteRouteOutput) GoString

func (s DeleteRouteOutput) GoString() string

GoString returns the string representation

func (DeleteRouteOutput) String

func (s DeleteRouteOutput) String() string

String returns the string representation

type DeleteRouteTableInput

Contains the parameters for DeleteRouteTable. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteRouteTableRequest

type DeleteRouteTableInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the route table.
    //
    // RouteTableId is a required field
    RouteTableId *string `locationName:"routeTableId" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteRouteTableInput) GoString

func (s DeleteRouteTableInput) GoString() string

GoString returns the string representation

func (*DeleteRouteTableInput) SetDryRun

func (s *DeleteRouteTableInput) SetDryRun(v bool) *DeleteRouteTableInput

SetDryRun sets the DryRun field's value.

func (*DeleteRouteTableInput) SetRouteTableId

func (s *DeleteRouteTableInput) SetRouteTableId(v string) *DeleteRouteTableInput

SetRouteTableId sets the RouteTableId field's value.

func (DeleteRouteTableInput) String

func (s DeleteRouteTableInput) String() string

String returns the string representation

func (*DeleteRouteTableInput) Validate

func (s *DeleteRouteTableInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteRouteTableOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteRouteTableOutput

type DeleteRouteTableOutput struct {
    // contains filtered or unexported fields
}

func (DeleteRouteTableOutput) GoString

func (s DeleteRouteTableOutput) GoString() string

GoString returns the string representation

func (DeleteRouteTableOutput) String

func (s DeleteRouteTableOutput) String() string

String returns the string representation

type DeleteSecurityGroupInput

Contains the parameters for DeleteSecurityGroup. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteSecurityGroupRequest

type DeleteSecurityGroupInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the security group. Required for a nondefault VPC.
    GroupId *string `type:"string"`

    // [EC2-Classic, default VPC] The name of the security group. You can specify
    // either the security group name or the security group ID.
    GroupName *string `type:"string"`
    // contains filtered or unexported fields
}

func (DeleteSecurityGroupInput) GoString

func (s DeleteSecurityGroupInput) GoString() string

GoString returns the string representation

func (*DeleteSecurityGroupInput) SetDryRun

func (s *DeleteSecurityGroupInput) SetDryRun(v bool) *DeleteSecurityGroupInput

SetDryRun sets the DryRun field's value.

func (*DeleteSecurityGroupInput) SetGroupId

func (s *DeleteSecurityGroupInput) SetGroupId(v string) *DeleteSecurityGroupInput

SetGroupId sets the GroupId field's value.

func (*DeleteSecurityGroupInput) SetGroupName

func (s *DeleteSecurityGroupInput) SetGroupName(v string) *DeleteSecurityGroupInput

SetGroupName sets the GroupName field's value.

func (DeleteSecurityGroupInput) String

func (s DeleteSecurityGroupInput) String() string

String returns the string representation

type DeleteSecurityGroupOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteSecurityGroupOutput

type DeleteSecurityGroupOutput struct {
    // contains filtered or unexported fields
}

func (DeleteSecurityGroupOutput) GoString

func (s DeleteSecurityGroupOutput) GoString() string

GoString returns the string representation

func (DeleteSecurityGroupOutput) String

func (s DeleteSecurityGroupOutput) String() string

String returns the string representation

type DeleteSnapshotInput

Contains the parameters for DeleteSnapshot. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteSnapshotRequest

type DeleteSnapshotInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the EBS snapshot.
    //
    // SnapshotId is a required field
    SnapshotId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteSnapshotInput) GoString

func (s DeleteSnapshotInput) GoString() string

GoString returns the string representation

func (*DeleteSnapshotInput) SetDryRun

func (s *DeleteSnapshotInput) SetDryRun(v bool) *DeleteSnapshotInput

SetDryRun sets the DryRun field's value.

func (*DeleteSnapshotInput) SetSnapshotId

func (s *DeleteSnapshotInput) SetSnapshotId(v string) *DeleteSnapshotInput

SetSnapshotId sets the SnapshotId field's value.

func (DeleteSnapshotInput) String

func (s DeleteSnapshotInput) String() string

String returns the string representation

func (*DeleteSnapshotInput) Validate

func (s *DeleteSnapshotInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteSnapshotOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteSnapshotOutput

type DeleteSnapshotOutput struct {
    // contains filtered or unexported fields
}

func (DeleteSnapshotOutput) GoString

func (s DeleteSnapshotOutput) GoString() string

GoString returns the string representation

func (DeleteSnapshotOutput) String

func (s DeleteSnapshotOutput) String() string

String returns the string representation

type DeleteSpotDatafeedSubscriptionInput

Contains the parameters for DeleteSpotDatafeedSubscription. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteSpotDatafeedSubscriptionRequest

type DeleteSpotDatafeedSubscriptionInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`
    // contains filtered or unexported fields
}

func (DeleteSpotDatafeedSubscriptionInput) GoString

func (s DeleteSpotDatafeedSubscriptionInput) GoString() string

GoString returns the string representation

func (*DeleteSpotDatafeedSubscriptionInput) SetDryRun

func (s *DeleteSpotDatafeedSubscriptionInput) SetDryRun(v bool) *DeleteSpotDatafeedSubscriptionInput

SetDryRun sets the DryRun field's value.

func (DeleteSpotDatafeedSubscriptionInput) String

func (s DeleteSpotDatafeedSubscriptionInput) String() string

String returns the string representation

type DeleteSpotDatafeedSubscriptionOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteSpotDatafeedSubscriptionOutput

type DeleteSpotDatafeedSubscriptionOutput struct {
    // contains filtered or unexported fields
}

func (DeleteSpotDatafeedSubscriptionOutput) GoString

func (s DeleteSpotDatafeedSubscriptionOutput) GoString() string

GoString returns the string representation

func (DeleteSpotDatafeedSubscriptionOutput) String

func (s DeleteSpotDatafeedSubscriptionOutput) String() string

String returns the string representation

type DeleteSubnetInput

Contains the parameters for DeleteSubnet. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteSubnetRequest

type DeleteSubnetInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the subnet.
    //
    // SubnetId is a required field
    SubnetId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteSubnetInput) GoString

func (s DeleteSubnetInput) GoString() string

GoString returns the string representation

func (*DeleteSubnetInput) SetDryRun

func (s *DeleteSubnetInput) SetDryRun(v bool) *DeleteSubnetInput

SetDryRun sets the DryRun field's value.

func (*DeleteSubnetInput) SetSubnetId

func (s *DeleteSubnetInput) SetSubnetId(v string) *DeleteSubnetInput

SetSubnetId sets the SubnetId field's value.

func (DeleteSubnetInput) String

func (s DeleteSubnetInput) String() string

String returns the string representation

func (*DeleteSubnetInput) Validate

func (s *DeleteSubnetInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteSubnetOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteSubnetOutput

type DeleteSubnetOutput struct {
    // contains filtered or unexported fields
}

func (DeleteSubnetOutput) GoString

func (s DeleteSubnetOutput) GoString() string

GoString returns the string representation

func (DeleteSubnetOutput) String

func (s DeleteSubnetOutput) String() string

String returns the string representation

type DeleteTagsInput

Contains the parameters for DeleteTags. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteTagsRequest

type DeleteTagsInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the resource. For example, ami-1a2b3c4d. You can specify more than
    // one resource ID.
    //
    // Resources is a required field
    Resources []*string `locationName:"resourceId" type:"list" required:"true"`

    // One or more tags to delete. If you omit the value parameter, we delete the
    // tag regardless of its value. If you specify this parameter with an empty
    // string as the value, we delete the key only if its value is an empty string.
    Tags []*Tag `locationName:"tag" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DeleteTagsInput) GoString

func (s DeleteTagsInput) GoString() string

GoString returns the string representation

func (*DeleteTagsInput) SetDryRun

func (s *DeleteTagsInput) SetDryRun(v bool) *DeleteTagsInput

SetDryRun sets the DryRun field's value.

func (*DeleteTagsInput) SetResources

func (s *DeleteTagsInput) SetResources(v []*string) *DeleteTagsInput

SetResources sets the Resources field's value.

func (*DeleteTagsInput) SetTags

func (s *DeleteTagsInput) SetTags(v []*Tag) *DeleteTagsInput

SetTags sets the Tags field's value.

func (DeleteTagsInput) String

func (s DeleteTagsInput) String() string

String returns the string representation

func (*DeleteTagsInput) Validate

func (s *DeleteTagsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteTagsOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteTagsOutput

type DeleteTagsOutput struct {
    // contains filtered or unexported fields
}

func (DeleteTagsOutput) GoString

func (s DeleteTagsOutput) GoString() string

GoString returns the string representation

func (DeleteTagsOutput) String

func (s DeleteTagsOutput) String() string

String returns the string representation

type DeleteVolumeInput

Contains the parameters for DeleteVolume. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteVolumeRequest

type DeleteVolumeInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the volume.
    //
    // VolumeId is a required field
    VolumeId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteVolumeInput) GoString

func (s DeleteVolumeInput) GoString() string

GoString returns the string representation

func (*DeleteVolumeInput) SetDryRun

func (s *DeleteVolumeInput) SetDryRun(v bool) *DeleteVolumeInput

SetDryRun sets the DryRun field's value.

func (*DeleteVolumeInput) SetVolumeId

func (s *DeleteVolumeInput) SetVolumeId(v string) *DeleteVolumeInput

SetVolumeId sets the VolumeId field's value.

func (DeleteVolumeInput) String

func (s DeleteVolumeInput) String() string

String returns the string representation

func (*DeleteVolumeInput) Validate

func (s *DeleteVolumeInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteVolumeOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteVolumeOutput

type DeleteVolumeOutput struct {
    // contains filtered or unexported fields
}

func (DeleteVolumeOutput) GoString

func (s DeleteVolumeOutput) GoString() string

GoString returns the string representation

func (DeleteVolumeOutput) String

func (s DeleteVolumeOutput) String() string

String returns the string representation

type DeleteVpcEndpointsInput

Contains the parameters for DeleteVpcEndpoints. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteVpcEndpointsRequest

type DeleteVpcEndpointsInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `type:"boolean"`

    // One or more endpoint IDs.
    //
    // VpcEndpointIds is a required field
    VpcEndpointIds []*string `locationName:"VpcEndpointId" locationNameList:"item" type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteVpcEndpointsInput) GoString

func (s DeleteVpcEndpointsInput) GoString() string

GoString returns the string representation

func (*DeleteVpcEndpointsInput) SetDryRun

func (s *DeleteVpcEndpointsInput) SetDryRun(v bool) *DeleteVpcEndpointsInput

SetDryRun sets the DryRun field's value.

func (*DeleteVpcEndpointsInput) SetVpcEndpointIds

func (s *DeleteVpcEndpointsInput) SetVpcEndpointIds(v []*string) *DeleteVpcEndpointsInput

SetVpcEndpointIds sets the VpcEndpointIds field's value.

func (DeleteVpcEndpointsInput) String

func (s DeleteVpcEndpointsInput) String() string

String returns the string representation

func (*DeleteVpcEndpointsInput) Validate

func (s *DeleteVpcEndpointsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteVpcEndpointsOutput

Contains the output of DeleteVpcEndpoints. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteVpcEndpointsResult

type DeleteVpcEndpointsOutput struct {

    // Information about the endpoints that were not successfully deleted.
    Unsuccessful []*UnsuccessfulItem `locationName:"unsuccessful" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DeleteVpcEndpointsOutput) GoString

func (s DeleteVpcEndpointsOutput) GoString() string

GoString returns the string representation

func (*DeleteVpcEndpointsOutput) SetUnsuccessful

func (s *DeleteVpcEndpointsOutput) SetUnsuccessful(v []*UnsuccessfulItem) *DeleteVpcEndpointsOutput

SetUnsuccessful sets the Unsuccessful field's value.

func (DeleteVpcEndpointsOutput) String

func (s DeleteVpcEndpointsOutput) String() string

String returns the string representation

type DeleteVpcInput

Contains the parameters for DeleteVpc. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteVpcRequest

type DeleteVpcInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the VPC.
    //
    // VpcId is a required field
    VpcId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteVpcInput) GoString

func (s DeleteVpcInput) GoString() string

GoString returns the string representation

func (*DeleteVpcInput) SetDryRun

func (s *DeleteVpcInput) SetDryRun(v bool) *DeleteVpcInput

SetDryRun sets the DryRun field's value.

func (*DeleteVpcInput) SetVpcId

func (s *DeleteVpcInput) SetVpcId(v string) *DeleteVpcInput

SetVpcId sets the VpcId field's value.

func (DeleteVpcInput) String

func (s DeleteVpcInput) String() string

String returns the string representation

func (*DeleteVpcInput) Validate

func (s *DeleteVpcInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteVpcOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteVpcOutput

type DeleteVpcOutput struct {
    // contains filtered or unexported fields
}

func (DeleteVpcOutput) GoString

func (s DeleteVpcOutput) GoString() string

GoString returns the string representation

func (DeleteVpcOutput) String

func (s DeleteVpcOutput) String() string

String returns the string representation

type DeleteVpcPeeringConnectionInput

Contains the parameters for DeleteVpcPeeringConnection. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteVpcPeeringConnectionRequest

type DeleteVpcPeeringConnectionInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the VPC peering connection.
    //
    // VpcPeeringConnectionId is a required field
    VpcPeeringConnectionId *string `locationName:"vpcPeeringConnectionId" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteVpcPeeringConnectionInput) GoString

func (s DeleteVpcPeeringConnectionInput) GoString() string

GoString returns the string representation

func (*DeleteVpcPeeringConnectionInput) SetDryRun

func (s *DeleteVpcPeeringConnectionInput) SetDryRun(v bool) *DeleteVpcPeeringConnectionInput

SetDryRun sets the DryRun field's value.

func (*DeleteVpcPeeringConnectionInput) SetVpcPeeringConnectionId

func (s *DeleteVpcPeeringConnectionInput) SetVpcPeeringConnectionId(v string) *DeleteVpcPeeringConnectionInput

SetVpcPeeringConnectionId sets the VpcPeeringConnectionId field's value.

func (DeleteVpcPeeringConnectionInput) String

func (s DeleteVpcPeeringConnectionInput) String() string

String returns the string representation

func (*DeleteVpcPeeringConnectionInput) Validate

func (s *DeleteVpcPeeringConnectionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteVpcPeeringConnectionOutput

Contains the output of DeleteVpcPeeringConnection. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteVpcPeeringConnectionResult

type DeleteVpcPeeringConnectionOutput struct {

    // Returns true if the request succeeds; otherwise, it returns an error.
    Return *bool `locationName:"return" type:"boolean"`
    // contains filtered or unexported fields
}

func (DeleteVpcPeeringConnectionOutput) GoString

func (s DeleteVpcPeeringConnectionOutput) GoString() string

GoString returns the string representation

func (*DeleteVpcPeeringConnectionOutput) SetReturn

func (s *DeleteVpcPeeringConnectionOutput) SetReturn(v bool) *DeleteVpcPeeringConnectionOutput

SetReturn sets the Return field's value.

func (DeleteVpcPeeringConnectionOutput) String

func (s DeleteVpcPeeringConnectionOutput) String() string

String returns the string representation

type DeleteVpnConnectionInput

Contains the parameters for DeleteVpnConnection. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteVpnConnectionRequest

type DeleteVpnConnectionInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the VPN connection.
    //
    // VpnConnectionId is a required field
    VpnConnectionId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteVpnConnectionInput) GoString

func (s DeleteVpnConnectionInput) GoString() string

GoString returns the string representation

func (*DeleteVpnConnectionInput) SetDryRun

func (s *DeleteVpnConnectionInput) SetDryRun(v bool) *DeleteVpnConnectionInput

SetDryRun sets the DryRun field's value.

func (*DeleteVpnConnectionInput) SetVpnConnectionId

func (s *DeleteVpnConnectionInput) SetVpnConnectionId(v string) *DeleteVpnConnectionInput

SetVpnConnectionId sets the VpnConnectionId field's value.

func (DeleteVpnConnectionInput) String

func (s DeleteVpnConnectionInput) String() string

String returns the string representation

func (*DeleteVpnConnectionInput) Validate

func (s *DeleteVpnConnectionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteVpnConnectionOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteVpnConnectionOutput

type DeleteVpnConnectionOutput struct {
    // contains filtered or unexported fields
}

func (DeleteVpnConnectionOutput) GoString

func (s DeleteVpnConnectionOutput) GoString() string

GoString returns the string representation

func (DeleteVpnConnectionOutput) String

func (s DeleteVpnConnectionOutput) String() string

String returns the string representation

type DeleteVpnConnectionRouteInput

Contains the parameters for DeleteVpnConnectionRoute. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteVpnConnectionRouteRequest

type DeleteVpnConnectionRouteInput struct {

    // The CIDR block associated with the local subnet of the customer network.
    //
    // DestinationCidrBlock is a required field
    DestinationCidrBlock *string `type:"string" required:"true"`

    // The ID of the VPN connection.
    //
    // VpnConnectionId is a required field
    VpnConnectionId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteVpnConnectionRouteInput) GoString

func (s DeleteVpnConnectionRouteInput) GoString() string

GoString returns the string representation

func (*DeleteVpnConnectionRouteInput) SetDestinationCidrBlock

func (s *DeleteVpnConnectionRouteInput) SetDestinationCidrBlock(v string) *DeleteVpnConnectionRouteInput

SetDestinationCidrBlock sets the DestinationCidrBlock field's value.

func (*DeleteVpnConnectionRouteInput) SetVpnConnectionId

func (s *DeleteVpnConnectionRouteInput) SetVpnConnectionId(v string) *DeleteVpnConnectionRouteInput

SetVpnConnectionId sets the VpnConnectionId field's value.

func (DeleteVpnConnectionRouteInput) String

func (s DeleteVpnConnectionRouteInput) String() string

String returns the string representation

func (*DeleteVpnConnectionRouteInput) Validate

func (s *DeleteVpnConnectionRouteInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteVpnConnectionRouteOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteVpnConnectionRouteOutput

type DeleteVpnConnectionRouteOutput struct {
    // contains filtered or unexported fields
}

func (DeleteVpnConnectionRouteOutput) GoString

func (s DeleteVpnConnectionRouteOutput) GoString() string

GoString returns the string representation

func (DeleteVpnConnectionRouteOutput) String

func (s DeleteVpnConnectionRouteOutput) String() string

String returns the string representation

type DeleteVpnGatewayInput

Contains the parameters for DeleteVpnGateway. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteVpnGatewayRequest

type DeleteVpnGatewayInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the virtual private gateway.
    //
    // VpnGatewayId is a required field
    VpnGatewayId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteVpnGatewayInput) GoString

func (s DeleteVpnGatewayInput) GoString() string

GoString returns the string representation

func (*DeleteVpnGatewayInput) SetDryRun

func (s *DeleteVpnGatewayInput) SetDryRun(v bool) *DeleteVpnGatewayInput

SetDryRun sets the DryRun field's value.

func (*DeleteVpnGatewayInput) SetVpnGatewayId

func (s *DeleteVpnGatewayInput) SetVpnGatewayId(v string) *DeleteVpnGatewayInput

SetVpnGatewayId sets the VpnGatewayId field's value.

func (DeleteVpnGatewayInput) String

func (s DeleteVpnGatewayInput) String() string

String returns the string representation

func (*DeleteVpnGatewayInput) Validate

func (s *DeleteVpnGatewayInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteVpnGatewayOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteVpnGatewayOutput

type DeleteVpnGatewayOutput struct {
    // contains filtered or unexported fields
}

func (DeleteVpnGatewayOutput) GoString

func (s DeleteVpnGatewayOutput) GoString() string

GoString returns the string representation

func (DeleteVpnGatewayOutput) String

func (s DeleteVpnGatewayOutput) String() string

String returns the string representation

type DeregisterImageInput

Contains the parameters for DeregisterImage. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeregisterImageRequest

type DeregisterImageInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the AMI.
    //
    // ImageId is a required field
    ImageId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeregisterImageInput) GoString

func (s DeregisterImageInput) GoString() string

GoString returns the string representation

func (*DeregisterImageInput) SetDryRun

func (s *DeregisterImageInput) SetDryRun(v bool) *DeregisterImageInput

SetDryRun sets the DryRun field's value.

func (*DeregisterImageInput) SetImageId

func (s *DeregisterImageInput) SetImageId(v string) *DeregisterImageInput

SetImageId sets the ImageId field's value.

func (DeregisterImageInput) String

func (s DeregisterImageInput) String() string

String returns the string representation

func (*DeregisterImageInput) Validate

func (s *DeregisterImageInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeregisterImageOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeregisterImageOutput

type DeregisterImageOutput struct {
    // contains filtered or unexported fields
}

func (DeregisterImageOutput) GoString

func (s DeregisterImageOutput) GoString() string

GoString returns the string representation

func (DeregisterImageOutput) String

func (s DeregisterImageOutput) String() string

String returns the string representation

type DescribeAccountAttributesInput

Contains the parameters for DescribeAccountAttributes. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeAccountAttributesRequest

type DescribeAccountAttributesInput struct {

    // One or more account attribute names.
    AttributeNames []*string `locationName:"attributeName" locationNameList:"attributeName" type:"list"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`
    // contains filtered or unexported fields
}

func (DescribeAccountAttributesInput) GoString

func (s DescribeAccountAttributesInput) GoString() string

GoString returns the string representation

func (*DescribeAccountAttributesInput) SetAttributeNames

func (s *DescribeAccountAttributesInput) SetAttributeNames(v []*string) *DescribeAccountAttributesInput

SetAttributeNames sets the AttributeNames field's value.

func (*DescribeAccountAttributesInput) SetDryRun

func (s *DescribeAccountAttributesInput) SetDryRun(v bool) *DescribeAccountAttributesInput

SetDryRun sets the DryRun field's value.

func (DescribeAccountAttributesInput) String

func (s DescribeAccountAttributesInput) String() string

String returns the string representation

type DescribeAccountAttributesOutput

Contains the output of DescribeAccountAttributes. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeAccountAttributesResult

type DescribeAccountAttributesOutput struct {

    // Information about one or more account attributes.
    AccountAttributes []*AccountAttribute `locationName:"accountAttributeSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeAccountAttributesOutput) GoString

func (s DescribeAccountAttributesOutput) GoString() string

GoString returns the string representation

func (*DescribeAccountAttributesOutput) SetAccountAttributes

func (s *DescribeAccountAttributesOutput) SetAccountAttributes(v []*AccountAttribute) *DescribeAccountAttributesOutput

SetAccountAttributes sets the AccountAttributes field's value.

func (DescribeAccountAttributesOutput) String

func (s DescribeAccountAttributesOutput) String() string

String returns the string representation

type DescribeAddressesInput

Contains the parameters for DescribeAddresses. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeAddressesRequest

type DescribeAddressesInput struct {

    // [EC2-VPC] One or more allocation IDs.
    //
    // Default: Describes all your Elastic IP addresses.
    AllocationIds []*string `locationName:"AllocationId" locationNameList:"AllocationId" type:"list"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // One or more filters. Filter names and values are case-sensitive.
    //
    //    * allocation-id - [EC2-VPC] The allocation ID for the address.
    //
    //    * association-id - [EC2-VPC] The association ID for the address.
    //
    //    * domain - Indicates whether the address is for use in EC2-Classic (standard)
    //    or in a VPC (vpc).
    //
    //    * instance-id - The ID of the instance the address is associated with,
    //    if any.
    //
    //    * network-interface-id - [EC2-VPC] The ID of the network interface that
    //    the address is associated with, if any.
    //
    //    * network-interface-owner-id - The AWS account ID of the owner.
    //
    //    * private-ip-address - [EC2-VPC] The private IP address associated with
    //    the Elastic IP address.
    //
    //    * public-ip - The Elastic IP address.
    Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"`

    // [EC2-Classic] One or more Elastic IP addresses.
    //
    // Default: Describes all your Elastic IP addresses.
    PublicIps []*string `locationName:"PublicIp" locationNameList:"PublicIp" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeAddressesInput) GoString

func (s DescribeAddressesInput) GoString() string

GoString returns the string representation

func (*DescribeAddressesInput) SetAllocationIds

func (s *DescribeAddressesInput) SetAllocationIds(v []*string) *DescribeAddressesInput

SetAllocationIds sets the AllocationIds field's value.

func (*DescribeAddressesInput) SetDryRun

func (s *DescribeAddressesInput) SetDryRun(v bool) *DescribeAddressesInput

SetDryRun sets the DryRun field's value.

func (*DescribeAddressesInput) SetFilters

func (s *DescribeAddressesInput) SetFilters(v []*Filter) *DescribeAddressesInput

SetFilters sets the Filters field's value.

func (*DescribeAddressesInput) SetPublicIps

func (s *DescribeAddressesInput) SetPublicIps(v []*string) *DescribeAddressesInput

SetPublicIps sets the PublicIps field's value.

func (DescribeAddressesInput) String

func (s DescribeAddressesInput) String() string

String returns the string representation

type DescribeAddressesOutput

Contains the output of DescribeAddresses. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeAddressesResult

type DescribeAddressesOutput struct {

    // Information about one or more Elastic IP addresses.
    Addresses []*Address `locationName:"addressesSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeAddressesOutput) GoString

func (s DescribeAddressesOutput) GoString() string

GoString returns the string representation

func (*DescribeAddressesOutput) SetAddresses

func (s *DescribeAddressesOutput) SetAddresses(v []*Address) *DescribeAddressesOutput

SetAddresses sets the Addresses field's value.

func (DescribeAddressesOutput) String

func (s DescribeAddressesOutput) String() string

String returns the string representation

type DescribeAvailabilityZonesInput

Contains the parameters for DescribeAvailabilityZones. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeAvailabilityZonesRequest

type DescribeAvailabilityZonesInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // One or more filters.
    //
    //    * message - Information about the Availability Zone.
    //
    //    * region-name - The name of the region for the Availability Zone (for
    //    example, us-east-1).
    //
    //    * state - The state of the Availability Zone (available | information
    //    | impaired | unavailable).
    //
    //    * zone-name - The name of the Availability Zone (for example, us-east-1a).
    Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"`

    // The names of one or more Availability Zones.
    ZoneNames []*string `locationName:"ZoneName" locationNameList:"ZoneName" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeAvailabilityZonesInput) GoString

func (s DescribeAvailabilityZonesInput) GoString() string

GoString returns the string representation

func (*DescribeAvailabilityZonesInput) SetDryRun

func (s *DescribeAvailabilityZonesInput) SetDryRun(v bool) *DescribeAvailabilityZonesInput

SetDryRun sets the DryRun field's value.

func (*DescribeAvailabilityZonesInput) SetFilters

func (s *DescribeAvailabilityZonesInput) SetFilters(v []*Filter) *DescribeAvailabilityZonesInput

SetFilters sets the Filters field's value.

func (*DescribeAvailabilityZonesInput) SetZoneNames

func (s *DescribeAvailabilityZonesInput) SetZoneNames(v []*string) *DescribeAvailabilityZonesInput

SetZoneNames sets the ZoneNames field's value.

func (DescribeAvailabilityZonesInput) String

func (s DescribeAvailabilityZonesInput) String() string

String returns the string representation

type DescribeAvailabilityZonesOutput

Contains the output of DescribeAvailabiltyZones. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeAvailabilityZonesResult

type DescribeAvailabilityZonesOutput struct {

    // Information about one or more Availability Zones.
    AvailabilityZones []*AvailabilityZone `locationName:"availabilityZoneInfo" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeAvailabilityZonesOutput) GoString

func (s DescribeAvailabilityZonesOutput) GoString() string

GoString returns the string representation

func (*DescribeAvailabilityZonesOutput) SetAvailabilityZones

func (s *DescribeAvailabilityZonesOutput) SetAvailabilityZones(v []*AvailabilityZone) *DescribeAvailabilityZonesOutput

SetAvailabilityZones sets the AvailabilityZones field's value.

func (DescribeAvailabilityZonesOutput) String

func (s DescribeAvailabilityZonesOutput) String() string

String returns the string representation

type DescribeBundleTasksInput

Contains the parameters for DescribeBundleTasks. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeBundleTasksRequest

type DescribeBundleTasksInput struct {

    // One or more bundle task IDs.
    //
    // Default: Describes all your bundle tasks.
    BundleIds []*string `locationName:"BundleId" locationNameList:"BundleId" type:"list"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // One or more filters.
    //
    //    * bundle-id - The ID of the bundle task.
    //
    //    * error-code - If the task failed, the error code returned.
    //
    //    * error-message - If the task failed, the error message returned.
    //
    //    * instance-id - The ID of the instance.
    //
    //    * progress - The level of task completion, as a percentage (for example,
    //    20%).
    //
    //    * s3-bucket - The Amazon S3 bucket to store the AMI.
    //
    //    * s3-prefix - The beginning of the AMI name.
    //
    //    * start-time - The time the task started (for example, 2013-09-15T17:15:20.000Z).
    //
    //    * state - The state of the task (pending | waiting-for-shutdown | bundling
    //    | storing | cancelling | complete | failed).
    //
    //    * update-time - The time of the most recent update for the task.
    Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeBundleTasksInput) GoString

func (s DescribeBundleTasksInput) GoString() string

GoString returns the string representation

func (*DescribeBundleTasksInput) SetBundleIds

func (s *DescribeBundleTasksInput) SetBundleIds(v []*string) *DescribeBundleTasksInput

SetBundleIds sets the BundleIds field's value.

func (*DescribeBundleTasksInput) SetDryRun

func (s *DescribeBundleTasksInput) SetDryRun(v bool) *DescribeBundleTasksInput

SetDryRun sets the DryRun field's value.

func (*DescribeBundleTasksInput) SetFilters

func (s *DescribeBundleTasksInput) SetFilters(v []*Filter) *DescribeBundleTasksInput

SetFilters sets the Filters field's value.

func (DescribeBundleTasksInput) String

func (s DescribeBundleTasksInput) String() string

String returns the string representation

type DescribeBundleTasksOutput

Contains the output of DescribeBundleTasks. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeBundleTasksResult

type DescribeBundleTasksOutput struct {

    // Information about one or more bundle tasks.
    BundleTasks []*BundleTask `locationName:"bundleInstanceTasksSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeBundleTasksOutput) GoString

func (s DescribeBundleTasksOutput) GoString() string

GoString returns the string representation

func (*DescribeBundleTasksOutput) SetBundleTasks

func (s *DescribeBundleTasksOutput) SetBundleTasks(v []*BundleTask) *DescribeBundleTasksOutput

SetBundleTasks sets the BundleTasks field's value.

func (DescribeBundleTasksOutput) String

func (s DescribeBundleTasksOutput) String() string

String returns the string representation

type DescribeClassicLinkInstancesInput

Contains the parameters for DescribeClassicLinkInstances. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeClassicLinkInstancesRequest

type DescribeClassicLinkInstancesInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // One or more filters.
    //
    //    * group-id - The ID of a VPC security group that's associated with the
    //    instance.
    //
    //    * instance-id - The ID of the instance.
    //
    //    * tag:key=value - The key/value combination of a tag assigned to the resource.
    //
    //    * tag-key - The key of a tag assigned to the resource. This filter is
    //    independent of the tag-value filter. For example, if you use both the
    //    filter "tag-key=Purpose" and the filter "tag-value=X", you get any resources
    //    assigned both the tag key Purpose (regardless of what the tag's value
    //    is), and the tag value X (regardless of what the tag's key is). If you
    //    want to list only resources where Purpose is X, see the tag:key=value
    //    filter.
    //
    //    * tag-value - The value of a tag assigned to the resource. This filter
    //    is independent of the tag-key filter.
    //
    //    * vpc-id - The ID of the VPC that the instance is linked to.
    Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"`

    // One or more instance IDs. Must be instances linked to a VPC through ClassicLink.
    InstanceIds []*string `locationName:"InstanceId" locationNameList:"InstanceId" type:"list"`

    // The maximum number of results to return for the request in a single page.
    // The remaining results of the initial request can be seen by sending another
    // request with the returned NextToken value. This value can be between 5 and
    // 1000; if MaxResults is given a value larger than 1000, only 1000 results
    // are returned. You cannot specify this parameter and the instance IDs parameter
    // in the same request.
    //
    // Constraint: If the value is greater than 1000, we return only 1000 items.
    MaxResults *int64 `locationName:"maxResults" type:"integer"`

    // The token to retrieve the next page of results.
    NextToken *string `locationName:"nextToken" type:"string"`
    // contains filtered or unexported fields
}

func (DescribeClassicLinkInstancesInput) GoString

func (s DescribeClassicLinkInstancesInput) GoString() string

GoString returns the string representation

func (*DescribeClassicLinkInstancesInput) SetDryRun

func (s *DescribeClassicLinkInstancesInput) SetDryRun(v bool) *DescribeClassicLinkInstancesInput

SetDryRun sets the DryRun field's value.

func (*DescribeClassicLinkInstancesInput) SetFilters

func (s *DescribeClassicLinkInstancesInput) SetFilters(v []*Filter) *DescribeClassicLinkInstancesInput

SetFilters sets the Filters field's value.

func (*DescribeClassicLinkInstancesInput) SetInstanceIds

func (s *DescribeClassicLinkInstancesInput) SetInstanceIds(v []*string) *DescribeClassicLinkInstancesInput

SetInstanceIds sets the InstanceIds field's value.

func (*DescribeClassicLinkInstancesInput) SetMaxResults

func (s *DescribeClassicLinkInstancesInput) SetMaxResults(v int64) *DescribeClassicLinkInstancesInput

SetMaxResults sets the MaxResults field's value.

func (*DescribeClassicLinkInstancesInput) SetNextToken

func (s *DescribeClassicLinkInstancesInput) SetNextToken(v string) *DescribeClassicLinkInstancesInput

SetNextToken sets the NextToken field's value.

func (DescribeClassicLinkInstancesInput) String

func (s DescribeClassicLinkInstancesInput) String() string

String returns the string representation

type DescribeClassicLinkInstancesOutput

Contains the output of DescribeClassicLinkInstances. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeClassicLinkInstancesResult

type DescribeClassicLinkInstancesOutput struct {

    // Information about one or more linked EC2-Classic instances.
    Instances []*ClassicLinkInstance `locationName:"instancesSet" locationNameList:"item" type:"list"`

    // The token to use to retrieve the next page of results. This value is null
    // when there are no more results to return.
    NextToken *string `locationName:"nextToken" type:"string"`
    // contains filtered or unexported fields
}

func (DescribeClassicLinkInstancesOutput) GoString

func (s DescribeClassicLinkInstancesOutput) GoString() string

GoString returns the string representation

func (*DescribeClassicLinkInstancesOutput) SetInstances

func (s *DescribeClassicLinkInstancesOutput) SetInstances(v []*ClassicLinkInstance) *DescribeClassicLinkInstancesOutput

SetInstances sets the Instances field's value.

func (*DescribeClassicLinkInstancesOutput) SetNextToken

func (s *DescribeClassicLinkInstancesOutput) SetNextToken(v string) *DescribeClassicLinkInstancesOutput

SetNextToken sets the NextToken field's value.

func (DescribeClassicLinkInstancesOutput) String

func (s DescribeClassicLinkInstancesOutput) String() string

String returns the string representation

type DescribeConversionTasksInput

Contains the parameters for DescribeConversionTasks. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeConversionTasksRequest

type DescribeConversionTasksInput struct {

    // One or more conversion task IDs.
    ConversionTaskIds []*string `locationName:"conversionTaskId" locationNameList:"item" type:"list"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`
    // contains filtered or unexported fields
}

func (DescribeConversionTasksInput) GoString

func (s DescribeConversionTasksInput) GoString() string

GoString returns the string representation

func (*DescribeConversionTasksInput) SetConversionTaskIds

func (s *DescribeConversionTasksInput) SetConversionTaskIds(v []*string) *DescribeConversionTasksInput

SetConversionTaskIds sets the ConversionTaskIds field's value.

func (*DescribeConversionTasksInput) SetDryRun

func (s *DescribeConversionTasksInput) SetDryRun(v bool) *DescribeConversionTasksInput

SetDryRun sets the DryRun field's value.

func (DescribeConversionTasksInput) String

func (s DescribeConversionTasksInput) String() string

String returns the string representation

type DescribeConversionTasksOutput

Contains the output for DescribeConversionTasks. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeConversionTasksResult

type DescribeConversionTasksOutput struct {

    // Information about the conversion tasks.
    ConversionTasks []*ConversionTask `locationName:"conversionTasks" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeConversionTasksOutput) GoString

func (s DescribeConversionTasksOutput) GoString() string

GoString returns the string representation

func (*DescribeConversionTasksOutput) SetConversionTasks

func (s *DescribeConversionTasksOutput) SetConversionTasks(v []*ConversionTask) *DescribeConversionTasksOutput

SetConversionTasks sets the ConversionTasks field's value.

func (DescribeConversionTasksOutput) String

func (s DescribeConversionTasksOutput) String() string

String returns the string representation

type DescribeCustomerGatewaysInput

Contains the parameters for DescribeCustomerGateways. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeCustomerGatewaysRequest

type DescribeCustomerGatewaysInput struct {

    // One or more customer gateway IDs.
    //
    // Default: Describes all your customer gateways.
    CustomerGatewayIds []*string `locationName:"CustomerGatewayId" locationNameList:"CustomerGatewayId" type:"list"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // One or more filters.
    //
    //    * bgp-asn - The customer gateway's Border Gateway Protocol (BGP) Autonomous
    //    System Number (ASN).
    //
    //    * customer-gateway-id - The ID of the customer gateway.
    //
    //    * ip-address - The IP address of the customer gateway's Internet-routable
    //    external interface.
    //
    //    * state - The state of the customer gateway (pending | available | deleting
    //    | deleted).
    //
    //    * type - The type of customer gateway. Currently, the only supported type
    //    is ipsec.1.
    //
    //    * tag:key=value - The key/value combination of a tag assigned to the resource.
    //    Specify the key of the tag in the filter name and the value of the tag
    //    in the filter value. For example, for the tag Purpose=X, specify tag:Purpose
    //    for the filter name and X for the filter value.
    //
    //    * tag-key - The key of a tag assigned to the resource. This filter is
    //    independent of the tag-value filter. For example, if you use both the
    //    filter "tag-key=Purpose" and the filter "tag-value=X", you get any resources
    //    assigned both the tag key Purpose (regardless of what the tag's value
    //    is), and the tag value X (regardless of what the tag's key is). If you
    //    want to list only resources where Purpose is X, see the tag:key=value
    //    filter.
    //
    //    * tag-value - The value of a tag assigned to the resource. This filter
    //    is independent of the tag-key filter.
    Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeCustomerGatewaysInput) GoString

func (s DescribeCustomerGatewaysInput) GoString() string

GoString returns the string representation

func (*DescribeCustomerGatewaysInput) SetCustomerGatewayIds

func (s *DescribeCustomerGatewaysInput) SetCustomerGatewayIds(v []*string) *DescribeCustomerGatewaysInput

SetCustomerGatewayIds sets the CustomerGatewayIds field's value.

func (*DescribeCustomerGatewaysInput) SetDryRun

func (s *DescribeCustomerGatewaysInput) SetDryRun(v bool) *DescribeCustomerGatewaysInput

SetDryRun sets the DryRun field's value.

func (*DescribeCustomerGatewaysInput) SetFilters

func (s *DescribeCustomerGatewaysInput) SetFilters(v []*Filter) *DescribeCustomerGatewaysInput

SetFilters sets the Filters field's value.

func (DescribeCustomerGatewaysInput) String

func (s DescribeCustomerGatewaysInput) String() string

String returns the string representation

type DescribeCustomerGatewaysOutput

Contains the output of DescribeCustomerGateways. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeCustomerGatewaysResult

type DescribeCustomerGatewaysOutput struct {

    // Information about one or more customer gateways.
    CustomerGateways []*CustomerGateway `locationName:"customerGatewaySet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeCustomerGatewaysOutput) GoString

func (s DescribeCustomerGatewaysOutput) GoString() string

GoString returns the string representation

func (*DescribeCustomerGatewaysOutput) SetCustomerGateways

func (s *DescribeCustomerGatewaysOutput) SetCustomerGateways(v []*CustomerGateway) *DescribeCustomerGatewaysOutput

SetCustomerGateways sets the CustomerGateways field's value.

func (DescribeCustomerGatewaysOutput) String

func (s DescribeCustomerGatewaysOutput) String() string

String returns the string representation

type DescribeDhcpOptionsInput

Contains the parameters for DescribeDhcpOptions. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeDhcpOptionsRequest

type DescribeDhcpOptionsInput struct {

    // The IDs of one or more DHCP options sets.
    //
    // Default: Describes all your DHCP options sets.
    DhcpOptionsIds []*string `locationName:"DhcpOptionsId" locationNameList:"DhcpOptionsId" type:"list"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // One or more filters.
    //
    //    * dhcp-options-id - The ID of a set of DHCP options.
    //
    //    * key - The key for one of the options (for example, domain-name).
    //
    //    * value - The value for one of the options.
    //
    //    * tag:key=value - The key/value combination of a tag assigned to the resource.
    //    Specify the key of the tag in the filter name and the value of the tag
    //    in the filter value. For example, for the tag Purpose=X, specify tag:Purpose
    //    for the filter name and X for the filter value.
    //
    //    * tag-key - The key of a tag assigned to the resource. This filter is
    //    independent of the tag-value filter. For example, if you use both the
    //    filter "tag-key=Purpose" and the filter "tag-value=X", you get any resources
    //    assigned both the tag key Purpose (regardless of what the tag's value
    //    is), and the tag value X (regardless of what the tag's key is). If you
    //    want to list only resources where Purpose is X, see the tag:key=value
    //    filter.
    //
    //    * tag-value - The value of a tag assigned to the resource. This filter
    //    is independent of the tag-key filter.
    Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeDhcpOptionsInput) GoString

func (s DescribeDhcpOptionsInput) GoString() string

GoString returns the string representation

func (*DescribeDhcpOptionsInput) SetDhcpOptionsIds

func (s *DescribeDhcpOptionsInput) SetDhcpOptionsIds(v []*string) *DescribeDhcpOptionsInput

SetDhcpOptionsIds sets the DhcpOptionsIds field's value.

func (*DescribeDhcpOptionsInput) SetDryRun

func (s *DescribeDhcpOptionsInput) SetDryRun(v bool) *DescribeDhcpOptionsInput

SetDryRun sets the DryRun field's value.

func (*DescribeDhcpOptionsInput) SetFilters

func (s *DescribeDhcpOptionsInput) SetFilters(v []*Filter) *DescribeDhcpOptionsInput

SetFilters sets the Filters field's value.

func (DescribeDhcpOptionsInput) String

func (s DescribeDhcpOptionsInput) String() string

String returns the string representation

type DescribeDhcpOptionsOutput

Contains the output of DescribeDhcpOptions. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeDhcpOptionsResult

type DescribeDhcpOptionsOutput struct {

    // Information about one or more DHCP options sets.
    DhcpOptions []*DhcpOptions `locationName:"dhcpOptionsSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeDhcpOptionsOutput) GoString

func (s DescribeDhcpOptionsOutput) GoString() string

GoString returns the string representation

func (*DescribeDhcpOptionsOutput) SetDhcpOptions

func (s *DescribeDhcpOptionsOutput) SetDhcpOptions(v []*DhcpOptions) *DescribeDhcpOptionsOutput

SetDhcpOptions sets the DhcpOptions field's value.

func (DescribeDhcpOptionsOutput) String

func (s DescribeDhcpOptionsOutput) String() string

String returns the string representation

type DescribeEgressOnlyInternetGatewaysInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeEgressOnlyInternetGatewaysRequest

type DescribeEgressOnlyInternetGatewaysInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `type:"boolean"`

    // One or more egress-only Internet gateway IDs.
    EgressOnlyInternetGatewayIds []*string `locationName:"EgressOnlyInternetGatewayId" locationNameList:"item" type:"list"`

    // The maximum number of results to return for the request in a single page.
    // The remaining results can be seen by sending another request with the returned
    // NextToken value. This value can be between 5 and 1000; if MaxResults is given
    // a value larger than 1000, only 1000 results are returned.
    MaxResults *int64 `type:"integer"`

    // The token to retrieve the next page of results.
    NextToken *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeEgressOnlyInternetGatewaysInput) GoString

func (s DescribeEgressOnlyInternetGatewaysInput) GoString() string

GoString returns the string representation

func (*DescribeEgressOnlyInternetGatewaysInput) SetDryRun

func (s *DescribeEgressOnlyInternetGatewaysInput) SetDryRun(v bool) *DescribeEgressOnlyInternetGatewaysInput

SetDryRun sets the DryRun field's value.

func (*DescribeEgressOnlyInternetGatewaysInput) SetEgressOnlyInternetGatewayIds

func (s *DescribeEgressOnlyInternetGatewaysInput) SetEgressOnlyInternetGatewayIds(v []*string) *DescribeEgressOnlyInternetGatewaysInput

SetEgressOnlyInternetGatewayIds sets the EgressOnlyInternetGatewayIds field's value.

func (*DescribeEgressOnlyInternetGatewaysInput) SetMaxResults

func (s *DescribeEgressOnlyInternetGatewaysInput) SetMaxResults(v int64) *DescribeEgressOnlyInternetGatewaysInput

SetMaxResults sets the MaxResults field's value.

func (*DescribeEgressOnlyInternetGatewaysInput) SetNextToken

func (s *DescribeEgressOnlyInternetGatewaysInput) SetNextToken(v string) *DescribeEgressOnlyInternetGatewaysInput

SetNextToken sets the NextToken field's value.

func (DescribeEgressOnlyInternetGatewaysInput) String

func (s DescribeEgressOnlyInternetGatewaysInput) String() string

String returns the string representation

type DescribeEgressOnlyInternetGatewaysOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeEgressOnlyInternetGatewaysResult

type DescribeEgressOnlyInternetGatewaysOutput struct {

    // Information about the egress-only Internet gateways.
    EgressOnlyInternetGateways []*EgressOnlyInternetGateway `locationName:"egressOnlyInternetGatewaySet" locationNameList:"item" type:"list"`

    // The token to use to retrieve the next page of results.
    NextToken *string `locationName:"nextToken" type:"string"`
    // contains filtered or unexported fields
}

func (DescribeEgressOnlyInternetGatewaysOutput) GoString

func (s DescribeEgressOnlyInternetGatewaysOutput) GoString() string

GoString returns the string representation

func (*DescribeEgressOnlyInternetGatewaysOutput) SetEgressOnlyInternetGateways

func (s *DescribeEgressOnlyInternetGatewaysOutput) SetEgressOnlyInternetGateways(v []*EgressOnlyInternetGateway) *DescribeEgressOnlyInternetGatewaysOutput

SetEgressOnlyInternetGateways sets the EgressOnlyInternetGateways field's value.

func (*DescribeEgressOnlyInternetGatewaysOutput) SetNextToken

func (s *DescribeEgressOnlyInternetGatewaysOutput) SetNextToken(v string) *DescribeEgressOnlyInternetGatewaysOutput

SetNextToken sets the NextToken field's value.

func (DescribeEgressOnlyInternetGatewaysOutput) String

func (s DescribeEgressOnlyInternetGatewaysOutput) String() string

String returns the string representation

type DescribeExportTasksInput

Contains the parameters for DescribeExportTasks. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeExportTasksRequest

type DescribeExportTasksInput struct {

    // One or more export task IDs.
    ExportTaskIds []*string `locationName:"exportTaskId" locationNameList:"ExportTaskId" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeExportTasksInput) GoString

func (s DescribeExportTasksInput) GoString() string

GoString returns the string representation

func (*DescribeExportTasksInput) SetExportTaskIds

func (s *DescribeExportTasksInput) SetExportTaskIds(v []*string) *DescribeExportTasksInput

SetExportTaskIds sets the ExportTaskIds field's value.

func (DescribeExportTasksInput) String

func (s DescribeExportTasksInput) String() string

String returns the string representation

type DescribeExportTasksOutput

Contains the output for DescribeExportTasks. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeExportTasksResult

type DescribeExportTasksOutput struct {

    // Information about the export tasks.
    ExportTasks []*ExportTask `locationName:"exportTaskSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeExportTasksOutput) GoString

func (s DescribeExportTasksOutput) GoString() string

GoString returns the string representation

func (*DescribeExportTasksOutput) SetExportTasks

func (s *DescribeExportTasksOutput) SetExportTasks(v []*ExportTask) *DescribeExportTasksOutput

SetExportTasks sets the ExportTasks field's value.

func (DescribeExportTasksOutput) String

func (s DescribeExportTasksOutput) String() string

String returns the string representation

type DescribeFlowLogsInput

Contains the parameters for DescribeFlowLogs. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeFlowLogsRequest

type DescribeFlowLogsInput struct {

    // One or more filters.
    //
    //    * deliver-log-status - The status of the logs delivery (SUCCESS | FAILED).
    //
    //    * flow-log-id - The ID of the flow log.
    //
    //    * log-group-name - The name of the log group.
    //
    //    * resource-id - The ID of the VPC, subnet, or network interface.
    //
    //    * traffic-type - The type of traffic (ACCEPT | REJECT | ALL)
    Filter []*Filter `locationNameList:"Filter" type:"list"`

    // One or more flow log IDs.
    FlowLogIds []*string `locationName:"FlowLogId" locationNameList:"item" type:"list"`

    // The maximum number of results to return for the request in a single page.
    // The remaining results can be seen by sending another request with the returned
    // NextToken value. This value can be between 5 and 1000; if MaxResults is given
    // a value larger than 1000, only 1000 results are returned. You cannot specify
    // this parameter and the flow log IDs parameter in the same request.
    MaxResults *int64 `type:"integer"`

    // The token to retrieve the next page of results.
    NextToken *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeFlowLogsInput) GoString

func (s DescribeFlowLogsInput) GoString() string

GoString returns the string representation

func (*DescribeFlowLogsInput) SetFilter

func (s *DescribeFlowLogsInput) SetFilter(v []*Filter) *DescribeFlowLogsInput

SetFilter sets the Filter field's value.

func (*DescribeFlowLogsInput) SetFlowLogIds

func (s *DescribeFlowLogsInput) SetFlowLogIds(v []*string) *DescribeFlowLogsInput

SetFlowLogIds sets the FlowLogIds field's value.

func (*DescribeFlowLogsInput) SetMaxResults

func (s *DescribeFlowLogsInput) SetMaxResults(v int64) *DescribeFlowLogsInput

SetMaxResults sets the MaxResults field's value.

func (*DescribeFlowLogsInput) SetNextToken

func (s *DescribeFlowLogsInput) SetNextToken(v string) *DescribeFlowLogsInput

SetNextToken sets the NextToken field's value.

func (DescribeFlowLogsInput) String

func (s DescribeFlowLogsInput) String() string

String returns the string representation

type DescribeFlowLogsOutput

Contains the output of DescribeFlowLogs. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeFlowLogsResult

type DescribeFlowLogsOutput struct {

    // Information about the flow logs.
    FlowLogs []*FlowLog `locationName:"flowLogSet" locationNameList:"item" type:"list"`

    // The token to use to retrieve the next page of results. This value is null
    // when there are no more results to return.
    NextToken *string `locationName:"nextToken" type:"string"`
    // contains filtered or unexported fields
}

func (DescribeFlowLogsOutput) GoString

func (s DescribeFlowLogsOutput) GoString() string

GoString returns the string representation

func (*DescribeFlowLogsOutput) SetFlowLogs

func (s *DescribeFlowLogsOutput) SetFlowLogs(v []*FlowLog) *DescribeFlowLogsOutput

SetFlowLogs sets the FlowLogs field's value.

func (*DescribeFlowLogsOutput) SetNextToken

func (s *DescribeFlowLogsOutput) SetNextToken(v string) *DescribeFlowLogsOutput

SetNextToken sets the NextToken field's value.

func (DescribeFlowLogsOutput) String

func (s DescribeFlowLogsOutput) String() string

String returns the string representation

type DescribeFpgaImagesInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeFpgaImagesRequest

type DescribeFpgaImagesInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `type:"boolean"`

    // One or more filters.
    //
    //    * create-time - The creation time of the AFI.
    //
    //    * fpga-image-id - The FPGA image identifier (AFI ID).
    //
    //    * fpga-image-global-id - The global FPGA image identifier (AGFI ID).
    //
    //    * name - The name of the AFI.
    //
    //    * owner-id - The AWS account ID of the AFI owner.
    //
    //    * product-code - The product code.
    //
    //    * shell-version - The version of the AWS Shell that was used to create
    //    the bitstream.
    //
    //    * state - The state of the AFI (pending | failed | available | unavailable).
    //
    //    * tag:key=value - The key/value combination of a tag assigned to the resource.
    //    Specify the key of the tag in the filter name and the value of the tag
    //    in the filter value. For example, for the tag Purpose=X, specify tag:Purpose
    //    for the filter name and X for the filter value.
    //
    //    * tag-key - The key of a tag assigned to the resource. This filter is
    //    independent of the tag-value filter. For example, if you use both the
    //    filter "tag-key=Purpose" and the filter "tag-value=X", you get any resources
    //    assigned both the tag key Purpose (regardless of what the tag's value
    //    is), and the tag value X (regardless of what the tag's key is). If you
    //    want to list only resources where Purpose is X, see the tag:key=value
    //    filter.
    //
    //    * tag-value - The value of a tag assigned to the resource. This filter
    //    is independent of the tag-key filter.
    //
    //    * update-time - The time of the most recent update.
    Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"`

    // One or more AFI IDs.
    FpgaImageIds []*string `locationName:"FpgaImageId" locationNameList:"item" type:"list"`

    // The maximum number of results to return in a single call.
    MaxResults *int64 `min:"5" type:"integer"`

    // The token to retrieve the next page of results.
    NextToken *string `min:"1" type:"string"`

    // Filters the AFI by owner. Specify an AWS account ID, self (owner is the sender
    // of the request), or an AWS owner alias (valid values are amazon | aws-marketplace).
    Owners []*string `locationName:"Owner" locationNameList:"Owner" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeFpgaImagesInput) GoString

func (s DescribeFpgaImagesInput) GoString() string

GoString returns the string representation

func (*DescribeFpgaImagesInput) SetDryRun

func (s *DescribeFpgaImagesInput) SetDryRun(v bool) *DescribeFpgaImagesInput

SetDryRun sets the DryRun field's value.

func (*DescribeFpgaImagesInput) SetFilters

func (s *DescribeFpgaImagesInput) SetFilters(v []*Filter) *DescribeFpgaImagesInput

SetFilters sets the Filters field's value.

func (*DescribeFpgaImagesInput) SetFpgaImageIds

func (s *DescribeFpgaImagesInput) SetFpgaImageIds(v []*string) *DescribeFpgaImagesInput

SetFpgaImageIds sets the FpgaImageIds field's value.

func (*DescribeFpgaImagesInput) SetMaxResults

func (s *DescribeFpgaImagesInput) SetMaxResults(v int64) *DescribeFpgaImagesInput

SetMaxResults sets the MaxResults field's value.

func (*DescribeFpgaImagesInput) SetNextToken

func (s *DescribeFpgaImagesInput) SetNextToken(v string) *DescribeFpgaImagesInput

SetNextToken sets the NextToken field's value.

func (*DescribeFpgaImagesInput) SetOwners

func (s *DescribeFpgaImagesInput) SetOwners(v []*string) *DescribeFpgaImagesInput

SetOwners sets the Owners field's value.

func (DescribeFpgaImagesInput) String

func (s DescribeFpgaImagesInput) String() string

String returns the string representation

func (*DescribeFpgaImagesInput) Validate

func (s *DescribeFpgaImagesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeFpgaImagesOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeFpgaImagesResult

type DescribeFpgaImagesOutput struct {

    // Information about one or more FPGA images.
    FpgaImages []*FpgaImage `locationName:"fpgaImageSet" locationNameList:"item" type:"list"`

    // The token to use to retrieve the next page of results. This value is null
    // when there are no more results to return.
    NextToken *string `locationName:"nextToken" min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (DescribeFpgaImagesOutput) GoString

func (s DescribeFpgaImagesOutput) GoString() string

GoString returns the string representation

func (*DescribeFpgaImagesOutput) SetFpgaImages

func (s *DescribeFpgaImagesOutput) SetFpgaImages(v []*FpgaImage) *DescribeFpgaImagesOutput

SetFpgaImages sets the FpgaImages field's value.

func (*DescribeFpgaImagesOutput) SetNextToken

func (s *DescribeFpgaImagesOutput) SetNextToken(v string) *DescribeFpgaImagesOutput

SetNextToken sets the NextToken field's value.

func (DescribeFpgaImagesOutput) String

func (s DescribeFpgaImagesOutput) String() string

String returns the string representation

type DescribeHostReservationOfferingsInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeHostReservationOfferingsRequest

type DescribeHostReservationOfferingsInput struct {

    // One or more filters.
    //
    //    * instance-family - The instance family of the offering (e.g., m4).
    //
    //    * payment-option - The payment option (NoUpfront | PartialUpfront | AllUpfront).
    Filter []*Filter `locationNameList:"Filter" type:"list"`

    // This is the maximum duration of the reservation you'd like to purchase, specified
    // in seconds. Reservations are available in one-year and three-year terms.
    // The number of seconds specified must be the number of seconds in a year (365x24x60x60)
    // times one of the supported durations (1 or 3). For example, specify 94608000
    // for three years.
    MaxDuration *int64 `type:"integer"`

    // The maximum number of results to return for the request in a single page.
    // The remaining results can be seen by sending another request with the returned
    // nextToken value. This value can be between 5 and 500; if maxResults is given
    // a larger value than 500, you will receive an error.
    MaxResults *int64 `type:"integer"`

    // This is the minimum duration of the reservation you'd like to purchase, specified
    // in seconds. Reservations are available in one-year and three-year terms.
    // The number of seconds specified must be the number of seconds in a year (365x24x60x60)
    // times one of the supported durations (1 or 3). For example, specify 31536000
    // for one year.
    MinDuration *int64 `type:"integer"`

    // The token to use to retrieve the next page of results.
    NextToken *string `type:"string"`

    // The ID of the reservation offering.
    OfferingId *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeHostReservationOfferingsInput) GoString

func (s DescribeHostReservationOfferingsInput) GoString() string

GoString returns the string representation

func (*DescribeHostReservationOfferingsInput) SetFilter

func (s *DescribeHostReservationOfferingsInput) SetFilter(v []*Filter) *DescribeHostReservationOfferingsInput

SetFilter sets the Filter field's value.

func (*DescribeHostReservationOfferingsInput) SetMaxDuration

func (s *DescribeHostReservationOfferingsInput) SetMaxDuration(v int64) *DescribeHostReservationOfferingsInput

SetMaxDuration sets the MaxDuration field's value.

func (*DescribeHostReservationOfferingsInput) SetMaxResults

func (s *DescribeHostReservationOfferingsInput) SetMaxResults(v int64) *DescribeHostReservationOfferingsInput

SetMaxResults sets the MaxResults field's value.

func (*DescribeHostReservationOfferingsInput) SetMinDuration

func (s *DescribeHostReservationOfferingsInput) SetMinDuration(v int64) *DescribeHostReservationOfferingsInput

SetMinDuration sets the MinDuration field's value.

func (*DescribeHostReservationOfferingsInput) SetNextToken

func (s *DescribeHostReservationOfferingsInput) SetNextToken(v string) *DescribeHostReservationOfferingsInput

SetNextToken sets the NextToken field's value.

func (*DescribeHostReservationOfferingsInput) SetOfferingId

func (s *DescribeHostReservationOfferingsInput) SetOfferingId(v string) *DescribeHostReservationOfferingsInput

SetOfferingId sets the OfferingId field's value.

func (DescribeHostReservationOfferingsInput) String

func (s DescribeHostReservationOfferingsInput) String() string

String returns the string representation

type DescribeHostReservationOfferingsOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeHostReservationOfferingsResult

type DescribeHostReservationOfferingsOutput struct {

    // The token to use to retrieve the next page of results. This value is null
    // when there are no more results to return.
    NextToken *string `locationName:"nextToken" type:"string"`

    // Information about the offerings.
    OfferingSet []*HostOffering `locationName:"offeringSet" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeHostReservationOfferingsOutput) GoString

func (s DescribeHostReservationOfferingsOutput) GoString() string

GoString returns the string representation

func (*DescribeHostReservationOfferingsOutput) SetNextToken

func (s *DescribeHostReservationOfferingsOutput) SetNextToken(v string) *DescribeHostReservationOfferingsOutput

SetNextToken sets the NextToken field's value.

func (*DescribeHostReservationOfferingsOutput) SetOfferingSet

func (s *DescribeHostReservationOfferingsOutput) SetOfferingSet(v []*HostOffering) *DescribeHostReservationOfferingsOutput

SetOfferingSet sets the OfferingSet field's value.

func (DescribeHostReservationOfferingsOutput) String

func (s DescribeHostReservationOfferingsOutput) String() string

String returns the string representation

type DescribeHostReservationsInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeHostReservationsRequest

type DescribeHostReservationsInput struct {

    // One or more filters.
    //
    //    * instance-family - The instance family (e.g., m4).
    //
    //    * payment-option - The payment option (NoUpfront | PartialUpfront | AllUpfront).
    //
    //    * state - The state of the reservation (payment-pending | payment-failed
    //    | active | retired).
    Filter []*Filter `locationNameList:"Filter" type:"list"`

    // One or more host reservation IDs.
    HostReservationIdSet []*string `locationNameList:"item" type:"list"`

    // The maximum number of results to return for the request in a single page.
    // The remaining results can be seen by sending another request with the returned
    // nextToken value. This value can be between 5 and 500; if maxResults is given
    // a larger value than 500, you will receive an error.
    MaxResults *int64 `type:"integer"`

    // The token to use to retrieve the next page of results.
    NextToken *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeHostReservationsInput) GoString

func (s DescribeHostReservationsInput) GoString() string

GoString returns the string representation

func (*DescribeHostReservationsInput) SetFilter

func (s *DescribeHostReservationsInput) SetFilter(v []*Filter) *DescribeHostReservationsInput

SetFilter sets the Filter field's value.

func (*DescribeHostReservationsInput) SetHostReservationIdSet

func (s *DescribeHostReservationsInput) SetHostReservationIdSet(v []*string) *DescribeHostReservationsInput

SetHostReservationIdSet sets the HostReservationIdSet field's value.

func (*DescribeHostReservationsInput) SetMaxResults

func (s *DescribeHostReservationsInput) SetMaxResults(v int64) *DescribeHostReservationsInput

SetMaxResults sets the MaxResults field's value.

func (*DescribeHostReservationsInput) SetNextToken

func (s *DescribeHostReservationsInput) SetNextToken(v string) *DescribeHostReservationsInput

SetNextToken sets the NextToken field's value.

func (DescribeHostReservationsInput) String

func (s DescribeHostReservationsInput) String() string

String returns the string representation

type DescribeHostReservationsOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeHostReservationsResult

type DescribeHostReservationsOutput struct {

    // Details about the reservation's configuration.
    HostReservationSet []*HostReservation `locationName:"hostReservationSet" type:"list"`

    // The token to use to retrieve the next page of results. This value is null
    // when there are no more results to return.
    NextToken *string `locationName:"nextToken" type:"string"`
    // contains filtered or unexported fields
}

func (DescribeHostReservationsOutput) GoString

func (s DescribeHostReservationsOutput) GoString() string

GoString returns the string representation

func (*DescribeHostReservationsOutput) SetHostReservationSet

func (s *DescribeHostReservationsOutput) SetHostReservationSet(v []*HostReservation) *DescribeHostReservationsOutput

SetHostReservationSet sets the HostReservationSet field's value.

func (*DescribeHostReservationsOutput) SetNextToken

func (s *DescribeHostReservationsOutput) SetNextToken(v string) *DescribeHostReservationsOutput

SetNextToken sets the NextToken field's value.

func (DescribeHostReservationsOutput) String

func (s DescribeHostReservationsOutput) String() string

String returns the string representation

type DescribeHostsInput

Contains the parameters for DescribeHosts. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeHostsRequest

type DescribeHostsInput struct {

    // One or more filters.
    //
    //    * instance-type - The instance type size that the Dedicated Host is configured
    //    to support.
    //
    //    * auto-placement - Whether auto-placement is enabled or disabled (on |
    //    off).
    //
    //    * host-reservation-id - The ID of the reservation assigned to this host.
    //
    //    * client-token - The idempotency token you provided when you launched
    //    the instance
    //
    //    * state- The allocation state of the Dedicated Host (available | under-assessment
    //    | permanent-failure | released | released-permanent-failure).
    //
    //    * availability-zone - The Availability Zone of the host.
    Filter []*Filter `locationName:"filter" locationNameList:"Filter" type:"list"`

    // The IDs of the Dedicated Hosts. The IDs are used for targeted instance launches.
    HostIds []*string `locationName:"hostId" locationNameList:"item" type:"list"`

    // The maximum number of results to return for the request in a single page.
    // The remaining results can be seen by sending another request with the returned
    // nextToken value. This value can be between 5 and 500; if maxResults is given
    // a larger value than 500, you will receive an error. You cannot specify this
    // parameter and the host IDs parameter in the same request.
    MaxResults *int64 `locationName:"maxResults" type:"integer"`

    // The token to retrieve the next page of results.
    NextToken *string `locationName:"nextToken" type:"string"`
    // contains filtered or unexported fields
}

func (DescribeHostsInput) GoString

func (s DescribeHostsInput) GoString() string

GoString returns the string representation

func (*DescribeHostsInput) SetFilter

func (s *DescribeHostsInput) SetFilter(v []*Filter) *DescribeHostsInput

SetFilter sets the Filter field's value.

func (*DescribeHostsInput) SetHostIds

func (s *DescribeHostsInput) SetHostIds(v []*string) *DescribeHostsInput

SetHostIds sets the HostIds field's value.

func (*DescribeHostsInput) SetMaxResults

func (s *DescribeHostsInput) SetMaxResults(v int64) *DescribeHostsInput

SetMaxResults sets the MaxResults field's value.

func (*DescribeHostsInput) SetNextToken

func (s *DescribeHostsInput) SetNextToken(v string) *DescribeHostsInput

SetNextToken sets the NextToken field's value.

func (DescribeHostsInput) String

func (s DescribeHostsInput) String() string

String returns the string representation

type DescribeHostsOutput

Contains the output of DescribeHosts. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeHostsResult

type DescribeHostsOutput struct {

    // Information about the Dedicated Hosts.
    Hosts []*Host `locationName:"hostSet" locationNameList:"item" type:"list"`

    // The token to use to retrieve the next page of results. This value is null
    // when there are no more results to return.
    NextToken *string `locationName:"nextToken" type:"string"`
    // contains filtered or unexported fields
}

func (DescribeHostsOutput) GoString

func (s DescribeHostsOutput) GoString() string

GoString returns the string representation

func (*DescribeHostsOutput) SetHosts

func (s *DescribeHostsOutput) SetHosts(v []*Host) *DescribeHostsOutput

SetHosts sets the Hosts field's value.

func (*DescribeHostsOutput) SetNextToken

func (s *DescribeHostsOutput) SetNextToken(v string) *DescribeHostsOutput

SetNextToken sets the NextToken field's value.

func (DescribeHostsOutput) String

func (s DescribeHostsOutput) String() string

String returns the string representation

type DescribeIamInstanceProfileAssociationsInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeIamInstanceProfileAssociationsRequest

type DescribeIamInstanceProfileAssociationsInput struct {

    // One or more IAM instance profile associations.
    AssociationIds []*string `locationName:"AssociationId" locationNameList:"AssociationId" type:"list"`

    // One or more filters.
    //
    //    * instance-id - The ID of the instance.
    //
    //    * state - The state of the association (associating | associated | disassociating
    //    | disassociated).
    Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"`

    // The maximum number of results to return in a single call. To retrieve the
    // remaining results, make another call with the returned NextToken value.
    MaxResults *int64 `min:"5" type:"integer"`

    // The token to request the next page of results.
    NextToken *string `min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (DescribeIamInstanceProfileAssociationsInput) GoString

func (s DescribeIamInstanceProfileAssociationsInput) GoString() string

GoString returns the string representation

func (*DescribeIamInstanceProfileAssociationsInput) SetAssociationIds

func (s *DescribeIamInstanceProfileAssociationsInput) SetAssociationIds(v []*string) *DescribeIamInstanceProfileAssociationsInput

SetAssociationIds sets the AssociationIds field's value.

func (*DescribeIamInstanceProfileAssociationsInput) SetFilters

func (s *DescribeIamInstanceProfileAssociationsInput) SetFilters(v []*Filter) *DescribeIamInstanceProfileAssociationsInput

SetFilters sets the Filters field's value.

func (*DescribeIamInstanceProfileAssociationsInput) SetMaxResults

func (s *DescribeIamInstanceProfileAssociationsInput) SetMaxResults(v int64) *DescribeIamInstanceProfileAssociationsInput

SetMaxResults sets the MaxResults field's value.

func (*DescribeIamInstanceProfileAssociationsInput) SetNextToken

func (s *DescribeIamInstanceProfileAssociationsInput) SetNextToken(v string) *DescribeIamInstanceProfileAssociationsInput

SetNextToken sets the NextToken field's value.

func (DescribeIamInstanceProfileAssociationsInput) String

func (s DescribeIamInstanceProfileAssociationsInput) String() string

String returns the string representation

func (*DescribeIamInstanceProfileAssociationsInput) Validate

func (s *DescribeIamInstanceProfileAssociationsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeIamInstanceProfileAssociationsOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeIamInstanceProfileAssociationsResult

type DescribeIamInstanceProfileAssociationsOutput struct {

    // Information about one or more IAM instance profile associations.
    IamInstanceProfileAssociations []*IamInstanceProfileAssociation `locationName:"iamInstanceProfileAssociationSet" locationNameList:"item" type:"list"`

    // The token to use to retrieve the next page of results. This value is null
    // when there are no more results to return.
    NextToken *string `locationName:"nextToken" min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (DescribeIamInstanceProfileAssociationsOutput) GoString

func (s DescribeIamInstanceProfileAssociationsOutput) GoString() string

GoString returns the string representation

func (*DescribeIamInstanceProfileAssociationsOutput) SetIamInstanceProfileAssociations

func (s *DescribeIamInstanceProfileAssociationsOutput) SetIamInstanceProfileAssociations(v []*IamInstanceProfileAssociation) *DescribeIamInstanceProfileAssociationsOutput

SetIamInstanceProfileAssociations sets the IamInstanceProfileAssociations field's value.

func (*DescribeIamInstanceProfileAssociationsOutput) SetNextToken

func (s *DescribeIamInstanceProfileAssociationsOutput) SetNextToken(v string) *DescribeIamInstanceProfileAssociationsOutput

SetNextToken sets the NextToken field's value.

func (DescribeIamInstanceProfileAssociationsOutput) String

func (s DescribeIamInstanceProfileAssociationsOutput) String() string

String returns the string representation

type DescribeIdFormatInput

Contains the parameters for DescribeIdFormat. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeIdFormatRequest

type DescribeIdFormatInput struct {

    // The type of resource: instance | reservation | snapshot | volume
    Resource *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeIdFormatInput) GoString

func (s DescribeIdFormatInput) GoString() string

GoString returns the string representation

func (*DescribeIdFormatInput) SetResource

func (s *DescribeIdFormatInput) SetResource(v string) *DescribeIdFormatInput

SetResource sets the Resource field's value.

func (DescribeIdFormatInput) String

func (s DescribeIdFormatInput) String() string

String returns the string representation

type DescribeIdFormatOutput

Contains the output of DescribeIdFormat. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeIdFormatResult

type DescribeIdFormatOutput struct {

    // Information about the ID format for the resource.
    Statuses []*IdFormat `locationName:"statusSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeIdFormatOutput) GoString

func (s DescribeIdFormatOutput) GoString() string

GoString returns the string representation

func (*DescribeIdFormatOutput) SetStatuses

func (s *DescribeIdFormatOutput) SetStatuses(v []*IdFormat) *DescribeIdFormatOutput

SetStatuses sets the Statuses field's value.

func (DescribeIdFormatOutput) String

func (s DescribeIdFormatOutput) String() string

String returns the string representation

type DescribeIdentityIdFormatInput

Contains the parameters for DescribeIdentityIdFormat. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeIdentityIdFormatRequest

type DescribeIdentityIdFormatInput struct {

    // The ARN of the principal, which can be an IAM role, IAM user, or the root
    // user.
    //
    // PrincipalArn is a required field
    PrincipalArn *string `locationName:"principalArn" type:"string" required:"true"`

    // The type of resource: instance | reservation | snapshot | volume
    Resource *string `locationName:"resource" type:"string"`
    // contains filtered or unexported fields
}

func (DescribeIdentityIdFormatInput) GoString

func (s DescribeIdentityIdFormatInput) GoString() string

GoString returns the string representation

func (*DescribeIdentityIdFormatInput) SetPrincipalArn

func (s *DescribeIdentityIdFormatInput) SetPrincipalArn(v string) *DescribeIdentityIdFormatInput

SetPrincipalArn sets the PrincipalArn field's value.

func (*DescribeIdentityIdFormatInput) SetResource

func (s *DescribeIdentityIdFormatInput) SetResource(v string) *DescribeIdentityIdFormatInput

SetResource sets the Resource field's value.

func (DescribeIdentityIdFormatInput) String

func (s DescribeIdentityIdFormatInput) String() string

String returns the string representation

func (*DescribeIdentityIdFormatInput) Validate

func (s *DescribeIdentityIdFormatInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeIdentityIdFormatOutput

Contains the output of DescribeIdentityIdFormat. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeIdentityIdFormatResult

type DescribeIdentityIdFormatOutput struct {

    // Information about the ID format for the resources.
    Statuses []*IdFormat `locationName:"statusSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeIdentityIdFormatOutput) GoString

func (s DescribeIdentityIdFormatOutput) GoString() string

GoString returns the string representation

func (*DescribeIdentityIdFormatOutput) SetStatuses

func (s *DescribeIdentityIdFormatOutput) SetStatuses(v []*IdFormat) *DescribeIdentityIdFormatOutput

SetStatuses sets the Statuses field's value.

func (DescribeIdentityIdFormatOutput) String

func (s DescribeIdentityIdFormatOutput) String() string

String returns the string representation

type DescribeImageAttributeInput

Contains the parameters for DescribeImageAttribute. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeImageAttributeRequest

type DescribeImageAttributeInput struct {

    // The AMI attribute.
    //
    // Note: Depending on your account privileges, the blockDeviceMapping attribute
    // may return a Client.AuthFailure error. If this happens, use DescribeImages
    // to get information about the block device mapping for the AMI.
    //
    // Attribute is a required field
    Attribute *string `type:"string" required:"true" enum:"ImageAttributeName"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the AMI.
    //
    // ImageId is a required field
    ImageId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DescribeImageAttributeInput) GoString

func (s DescribeImageAttributeInput) GoString() string

GoString returns the string representation

func (*DescribeImageAttributeInput) SetAttribute

func (s *DescribeImageAttributeInput) SetAttribute(v string) *DescribeImageAttributeInput

SetAttribute sets the Attribute field's value.

func (*DescribeImageAttributeInput) SetDryRun

func (s *DescribeImageAttributeInput) SetDryRun(v bool) *DescribeImageAttributeInput

SetDryRun sets the DryRun field's value.

func (*DescribeImageAttributeInput) SetImageId

func (s *DescribeImageAttributeInput) SetImageId(v string) *DescribeImageAttributeInput

SetImageId sets the ImageId field's value.

func (DescribeImageAttributeInput) String

func (s DescribeImageAttributeInput) String() string

String returns the string representation

func (*DescribeImageAttributeInput) Validate

func (s *DescribeImageAttributeInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeImageAttributeOutput

Describes an image attribute. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ImageAttribute

type DescribeImageAttributeOutput struct {

    // One or more block device mapping entries.
    BlockDeviceMappings []*BlockDeviceMapping `locationName:"blockDeviceMapping" locationNameList:"item" type:"list"`

    // A description for the AMI.
    Description *AttributeValue `locationName:"description" type:"structure"`

    // The ID of the AMI.
    ImageId *string `locationName:"imageId" type:"string"`

    // The kernel ID.
    KernelId *AttributeValue `locationName:"kernel" type:"structure"`

    // One or more launch permissions.
    LaunchPermissions []*LaunchPermission `locationName:"launchPermission" locationNameList:"item" type:"list"`

    // One or more product codes.
    ProductCodes []*ProductCode `locationName:"productCodes" locationNameList:"item" type:"list"`

    // The RAM disk ID.
    RamdiskId *AttributeValue `locationName:"ramdisk" type:"structure"`

    // Indicates whether enhanced networking with the Intel 82599 Virtual Function
    // interface is enabled.
    SriovNetSupport *AttributeValue `locationName:"sriovNetSupport" type:"structure"`
    // contains filtered or unexported fields
}

func (DescribeImageAttributeOutput) GoString

func (s DescribeImageAttributeOutput) GoString() string

GoString returns the string representation

func (*DescribeImageAttributeOutput) SetBlockDeviceMappings

func (s *DescribeImageAttributeOutput) SetBlockDeviceMappings(v []*BlockDeviceMapping) *DescribeImageAttributeOutput

SetBlockDeviceMappings sets the BlockDeviceMappings field's value.

func (*DescribeImageAttributeOutput) SetDescription

func (s *DescribeImageAttributeOutput) SetDescription(v *AttributeValue) *DescribeImageAttributeOutput

SetDescription sets the Description field's value.

func (*DescribeImageAttributeOutput) SetImageId

func (s *DescribeImageAttributeOutput) SetImageId(v string) *DescribeImageAttributeOutput

SetImageId sets the ImageId field's value.

func (*DescribeImageAttributeOutput) SetKernelId

func (s *DescribeImageAttributeOutput) SetKernelId(v *AttributeValue) *DescribeImageAttributeOutput

SetKernelId sets the KernelId field's value.

func (*DescribeImageAttributeOutput) SetLaunchPermissions

func (s *DescribeImageAttributeOutput) SetLaunchPermissions(v []*LaunchPermission) *DescribeImageAttributeOutput

SetLaunchPermissions sets the LaunchPermissions field's value.

func (*DescribeImageAttributeOutput) SetProductCodes

func (s *DescribeImageAttributeOutput) SetProductCodes(v []*ProductCode) *DescribeImageAttributeOutput

SetProductCodes sets the ProductCodes field's value.

func (*DescribeImageAttributeOutput) SetRamdiskId

func (s *DescribeImageAttributeOutput) SetRamdiskId(v *AttributeValue) *DescribeImageAttributeOutput

SetRamdiskId sets the RamdiskId field's value.

func (*DescribeImageAttributeOutput) SetSriovNetSupport

func (s *DescribeImageAttributeOutput) SetSriovNetSupport(v *AttributeValue) *DescribeImageAttributeOutput

SetSriovNetSupport sets the SriovNetSupport field's value.

func (DescribeImageAttributeOutput) String

func (s DescribeImageAttributeOutput) String() string

String returns the string representation

type DescribeImagesInput

Contains the parameters for DescribeImages. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeImagesRequest

type DescribeImagesInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // Scopes the images by users with explicit launch permissions. Specify an AWS
    // account ID, self (the sender of the request), or all (public AMIs).
    ExecutableUsers []*string `locationName:"ExecutableBy" locationNameList:"ExecutableBy" type:"list"`

    // One or more filters.
    //
    //    * architecture - The image architecture (i386 | x86_64).
    //
    //    * block-device-mapping.delete-on-termination - A Boolean value that indicates
    //    whether the Amazon EBS volume is deleted on instance termination.
    //
    //    * block-device-mapping.device-name - The device name for the EBS volume
    //    (for example, /dev/sdh).
    //
    //    * block-device-mapping.snapshot-id - The ID of the snapshot used for the
    //    EBS volume.
    //
    //    * block-device-mapping.volume-size - The volume size of the EBS volume,
    //    in GiB.
    //
    //    * block-device-mapping.volume-type - The volume type of the EBS volume
    //    (gp2 | io1 | st1 | sc1 | standard).
    //
    //    * description - The description of the image (provided during image creation).
    //
    //    * ena-support - A Boolean that indicates whether enhanced networking with
    //    ENA is enabled.
    //
    //    * hypervisor - The hypervisor type (ovm | xen).
    //
    //    * image-id - The ID of the image.
    //
    //    * image-type - The image type (machine | kernel | ramdisk).
    //
    //    * is-public - A Boolean that indicates whether the image is public.
    //
    //    * kernel-id - The kernel ID.
    //
    //    * manifest-location - The location of the image manifest.
    //
    //    * name - The name of the AMI (provided during image creation).
    //
    //    * owner-alias - String value from an Amazon-maintained list (amazon |
    //    aws-marketplace | microsoft) of snapshot owners. Not to be confused with
    //    the user-configured AWS account alias, which is set from the IAM console.
    //
    //    * owner-id - The AWS account ID of the image owner.
    //
    //    * platform - The platform. To only list Windows-based AMIs, use windows.
    //
    //    * product-code - The product code.
    //
    //    * product-code.type - The type of the product code (devpay | marketplace).
    //
    //    * ramdisk-id - The RAM disk ID.
    //
    //    * root-device-name - The name of the root device volume (for example,
    //    /dev/sda1).
    //
    //    * root-device-type - The type of the root device volume (ebs | instance-store).
    //
    //    * state - The state of the image (available | pending | failed).
    //
    //    * state-reason-code - The reason code for the state change.
    //
    //    * state-reason-message - The message for the state change.
    //
    //    * tag:key=value - The key/value combination of a tag assigned to the resource.
    //    Specify the key of the tag in the filter name and the value of the tag
    //    in the filter value. For example, for the tag Purpose=X, specify tag:Purpose
    //    for the filter name and X for the filter value.
    //
    //    * tag-key - The key of a tag assigned to the resource. This filter is
    //    independent of the tag-value filter. For example, if you use both the
    //    filter "tag-key=Purpose" and the filter "tag-value=X", you get any resources
    //    assigned both the tag key Purpose (regardless of what the tag's value
    //    is), and the tag value X (regardless of what the tag's key is). If you
    //    want to list only resources where Purpose is X, see the tag:key=value
    //    filter.
    //
    //    * tag-value - The value of a tag assigned to the resource. This filter
    //    is independent of the tag-key filter.
    //
    //    * virtualization-type - The virtualization type (paravirtual | hvm).
    Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"`

    // One or more image IDs.
    //
    // Default: Describes all images available to you.
    ImageIds []*string `locationName:"ImageId" locationNameList:"ImageId" type:"list"`

    // Filters the images by the owner. Specify an AWS account ID, self (owner is
    // the sender of the request), or an AWS owner alias (valid values are amazon
    // | aws-marketplace | microsoft). Omitting this option returns all images for
    // which you have launch permissions, regardless of ownership.
    Owners []*string `locationName:"Owner" locationNameList:"Owner" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeImagesInput) GoString

func (s DescribeImagesInput) GoString() string

GoString returns the string representation

func (*DescribeImagesInput) SetDryRun

func (s *DescribeImagesInput) SetDryRun(v bool) *DescribeImagesInput

SetDryRun sets the DryRun field's value.

func (*DescribeImagesInput) SetExecutableUsers

func (s *DescribeImagesInput) SetExecutableUsers(v []*string) *DescribeImagesInput

SetExecutableUsers sets the ExecutableUsers field's value.

func (*DescribeImagesInput) SetFilters

func (s *DescribeImagesInput) SetFilters(v []*Filter) *DescribeImagesInput

SetFilters sets the Filters field's value.

func (*DescribeImagesInput) SetImageIds

func (s *DescribeImagesInput) SetImageIds(v []*string) *DescribeImagesInput

SetImageIds sets the ImageIds field's value.

func (*DescribeImagesInput) SetOwners

func (s *DescribeImagesInput) SetOwners(v []*string) *DescribeImagesInput

SetOwners sets the Owners field's value.

func (DescribeImagesInput) String

func (s DescribeImagesInput) String() string

String returns the string representation

type DescribeImagesOutput

Contains the output of DescribeImages. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeImagesResult

type DescribeImagesOutput struct {

    // Information about one or more images.
    Images []*Image `locationName:"imagesSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeImagesOutput) GoString

func (s DescribeImagesOutput) GoString() string

GoString returns the string representation

func (*DescribeImagesOutput) SetImages

func (s *DescribeImagesOutput) SetImages(v []*Image) *DescribeImagesOutput

SetImages sets the Images field's value.

func (DescribeImagesOutput) String

func (s DescribeImagesOutput) String() string

String returns the string representation

type DescribeImportImageTasksInput

Contains the parameters for DescribeImportImageTasks. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeImportImageTasksRequest

type DescribeImportImageTasksInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `type:"boolean"`

    // Filter tasks using the task-state filter and one of the following values:
    // active, completed, deleting, deleted.
    Filters []*Filter `locationNameList:"Filter" type:"list"`

    // A list of import image task IDs.
    ImportTaskIds []*string `locationName:"ImportTaskId" locationNameList:"ImportTaskId" type:"list"`

    // The maximum number of results to return in a single call. To retrieve the
    // remaining results, make another call with the returned NextToken value.
    MaxResults *int64 `type:"integer"`

    // A token that indicates the next page of results.
    NextToken *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeImportImageTasksInput) GoString

func (s DescribeImportImageTasksInput) GoString() string

GoString returns the string representation

func (*DescribeImportImageTasksInput) SetDryRun

func (s *DescribeImportImageTasksInput) SetDryRun(v bool) *DescribeImportImageTasksInput

SetDryRun sets the DryRun field's value.

func (*DescribeImportImageTasksInput) SetFilters

func (s *DescribeImportImageTasksInput) SetFilters(v []*Filter) *DescribeImportImageTasksInput

SetFilters sets the Filters field's value.

func (*DescribeImportImageTasksInput) SetImportTaskIds

func (s *DescribeImportImageTasksInput) SetImportTaskIds(v []*string) *DescribeImportImageTasksInput

SetImportTaskIds sets the ImportTaskIds field's value.

func (*DescribeImportImageTasksInput) SetMaxResults

func (s *DescribeImportImageTasksInput) SetMaxResults(v int64) *DescribeImportImageTasksInput

SetMaxResults sets the MaxResults field's value.

func (*DescribeImportImageTasksInput) SetNextToken

func (s *DescribeImportImageTasksInput) SetNextToken(v string) *DescribeImportImageTasksInput

SetNextToken sets the NextToken field's value.

func (DescribeImportImageTasksInput) String

func (s DescribeImportImageTasksInput) String() string

String returns the string representation

type DescribeImportImageTasksOutput

Contains the output for DescribeImportImageTasks. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeImportImageTasksResult

type DescribeImportImageTasksOutput struct {

    // A list of zero or more import image tasks that are currently active or were
    // completed or canceled in the previous 7 days.
    ImportImageTasks []*ImportImageTask `locationName:"importImageTaskSet" locationNameList:"item" type:"list"`

    // The token to use to get the next page of results. This value is null when
    // there are no more results to return.
    NextToken *string `locationName:"nextToken" type:"string"`
    // contains filtered or unexported fields
}

func (DescribeImportImageTasksOutput) GoString

func (s DescribeImportImageTasksOutput) GoString() string

GoString returns the string representation

func (*DescribeImportImageTasksOutput) SetImportImageTasks

func (s *DescribeImportImageTasksOutput) SetImportImageTasks(v []*ImportImageTask) *DescribeImportImageTasksOutput

SetImportImageTasks sets the ImportImageTasks field's value.

func (*DescribeImportImageTasksOutput) SetNextToken

func (s *DescribeImportImageTasksOutput) SetNextToken(v string) *DescribeImportImageTasksOutput

SetNextToken sets the NextToken field's value.

func (DescribeImportImageTasksOutput) String

func (s DescribeImportImageTasksOutput) String() string

String returns the string representation

type DescribeImportSnapshotTasksInput

Contains the parameters for DescribeImportSnapshotTasks. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeImportSnapshotTasksRequest

type DescribeImportSnapshotTasksInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `type:"boolean"`

    // One or more filters.
    Filters []*Filter `locationNameList:"Filter" type:"list"`

    // A list of import snapshot task IDs.
    ImportTaskIds []*string `locationName:"ImportTaskId" locationNameList:"ImportTaskId" type:"list"`

    // The maximum number of results to return in a single call. To retrieve the
    // remaining results, make another call with the returned NextToken value.
    MaxResults *int64 `type:"integer"`

    // A token that indicates the next page of results.
    NextToken *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeImportSnapshotTasksInput) GoString

func (s DescribeImportSnapshotTasksInput) GoString() string

GoString returns the string representation

func (*DescribeImportSnapshotTasksInput) SetDryRun

func (s *DescribeImportSnapshotTasksInput) SetDryRun(v bool) *DescribeImportSnapshotTasksInput

SetDryRun sets the DryRun field's value.

func (*DescribeImportSnapshotTasksInput) SetFilters

func (s *DescribeImportSnapshotTasksInput) SetFilters(v []*Filter) *DescribeImportSnapshotTasksInput

SetFilters sets the Filters field's value.

func (*DescribeImportSnapshotTasksInput) SetImportTaskIds

func (s *DescribeImportSnapshotTasksInput) SetImportTaskIds(v []*string) *DescribeImportSnapshotTasksInput

SetImportTaskIds sets the ImportTaskIds field's value.

func (*DescribeImportSnapshotTasksInput) SetMaxResults

func (s *DescribeImportSnapshotTasksInput) SetMaxResults(v int64) *DescribeImportSnapshotTasksInput

SetMaxResults sets the MaxResults field's value.

func (*DescribeImportSnapshotTasksInput) SetNextToken

func (s *DescribeImportSnapshotTasksInput) SetNextToken(v string) *DescribeImportSnapshotTasksInput

SetNextToken sets the NextToken field's value.

func (DescribeImportSnapshotTasksInput) String

func (s DescribeImportSnapshotTasksInput) String() string

String returns the string representation

type DescribeImportSnapshotTasksOutput

Contains the output for DescribeImportSnapshotTasks. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeImportSnapshotTasksResult

type DescribeImportSnapshotTasksOutput struct {

    // A list of zero or more import snapshot tasks that are currently active or
    // were completed or canceled in the previous 7 days.
    ImportSnapshotTasks []*ImportSnapshotTask `locationName:"importSnapshotTaskSet" locationNameList:"item" type:"list"`

    // The token to use to get the next page of results. This value is null when
    // there are no more results to return.
    NextToken *string `locationName:"nextToken" type:"string"`
    // contains filtered or unexported fields
}

func (DescribeImportSnapshotTasksOutput) GoString

func (s DescribeImportSnapshotTasksOutput) GoString() string

GoString returns the string representation

func (*DescribeImportSnapshotTasksOutput) SetImportSnapshotTasks

func (s *DescribeImportSnapshotTasksOutput) SetImportSnapshotTasks(v []*ImportSnapshotTask) *DescribeImportSnapshotTasksOutput

SetImportSnapshotTasks sets the ImportSnapshotTasks field's value.

func (*DescribeImportSnapshotTasksOutput) SetNextToken

func (s *DescribeImportSnapshotTasksOutput) SetNextToken(v string) *DescribeImportSnapshotTasksOutput

SetNextToken sets the NextToken field's value.

func (DescribeImportSnapshotTasksOutput) String

func (s DescribeImportSnapshotTasksOutput) String() string

String returns the string representation

type DescribeInstanceAttributeInput

Contains the parameters for DescribeInstanceAttribute. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeInstanceAttributeRequest

type DescribeInstanceAttributeInput struct {

    // The instance attribute.
    //
    // Note: The enaSupport attribute is not supported at this time.
    //
    // Attribute is a required field
    Attribute *string `locationName:"attribute" type:"string" required:"true" enum:"InstanceAttributeName"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the instance.
    //
    // InstanceId is a required field
    InstanceId *string `locationName:"instanceId" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DescribeInstanceAttributeInput) GoString

func (s DescribeInstanceAttributeInput) GoString() string

GoString returns the string representation

func (*DescribeInstanceAttributeInput) SetAttribute

func (s *DescribeInstanceAttributeInput) SetAttribute(v string) *DescribeInstanceAttributeInput

SetAttribute sets the Attribute field's value.

func (*DescribeInstanceAttributeInput) SetDryRun

func (s *DescribeInstanceAttributeInput) SetDryRun(v bool) *DescribeInstanceAttributeInput

SetDryRun sets the DryRun field's value.

func (*DescribeInstanceAttributeInput) SetInstanceId

func (s *DescribeInstanceAttributeInput) SetInstanceId(v string) *DescribeInstanceAttributeInput

SetInstanceId sets the InstanceId field's value.

func (DescribeInstanceAttributeInput) String

func (s DescribeInstanceAttributeInput) String() string

String returns the string representation

func (*DescribeInstanceAttributeInput) Validate

func (s *DescribeInstanceAttributeInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeInstanceAttributeOutput

Describes an instance attribute. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceAttribute

type DescribeInstanceAttributeOutput struct {

    // The block device mapping of the instance.
    BlockDeviceMappings []*InstanceBlockDeviceMapping `locationName:"blockDeviceMapping" locationNameList:"item" type:"list"`

    // If the value is true, you can't terminate the instance through the Amazon
    // EC2 console, CLI, or API; otherwise, you can.
    DisableApiTermination *AttributeBooleanValue `locationName:"disableApiTermination" type:"structure"`

    // Indicates whether the instance is optimized for EBS I/O.
    EbsOptimized *AttributeBooleanValue `locationName:"ebsOptimized" type:"structure"`

    // Indicates whether enhanced networking with ENA is enabled.
    EnaSupport *AttributeBooleanValue `locationName:"enaSupport" type:"structure"`

    // The security groups associated with the instance.
    Groups []*GroupIdentifier `locationName:"groupSet" locationNameList:"item" type:"list"`

    // The ID of the instance.
    InstanceId *string `locationName:"instanceId" type:"string"`

    // Indicates whether an instance stops or terminates when you initiate shutdown
    // from the instance (using the operating system command for system shutdown).
    InstanceInitiatedShutdownBehavior *AttributeValue `locationName:"instanceInitiatedShutdownBehavior" type:"structure"`

    // The instance type.
    InstanceType *AttributeValue `locationName:"instanceType" type:"structure"`

    // The kernel ID.
    KernelId *AttributeValue `locationName:"kernel" type:"structure"`

    // A list of product codes.
    ProductCodes []*ProductCode `locationName:"productCodes" locationNameList:"item" type:"list"`

    // The RAM disk ID.
    RamdiskId *AttributeValue `locationName:"ramdisk" type:"structure"`

    // The name of the root device (for example, /dev/sda1 or /dev/xvda).
    RootDeviceName *AttributeValue `locationName:"rootDeviceName" type:"structure"`

    // Indicates whether source/destination checking is enabled. A value of true
    // means checking is enabled, and false means checking is disabled. This value
    // must be false for a NAT instance to perform NAT.
    SourceDestCheck *AttributeBooleanValue `locationName:"sourceDestCheck" type:"structure"`

    // Indicates whether enhanced networking with the Intel 82599 Virtual Function
    // interface is enabled.
    SriovNetSupport *AttributeValue `locationName:"sriovNetSupport" type:"structure"`

    // The user data.
    UserData *AttributeValue `locationName:"userData" type:"structure"`
    // contains filtered or unexported fields
}

func (DescribeInstanceAttributeOutput) GoString

func (s DescribeInstanceAttributeOutput) GoString() string

GoString returns the string representation

func (*DescribeInstanceAttributeOutput) SetBlockDeviceMappings

func (s *DescribeInstanceAttributeOutput) SetBlockDeviceMappings(v []*InstanceBlockDeviceMapping) *DescribeInstanceAttributeOutput

SetBlockDeviceMappings sets the BlockDeviceMappings field's value.

func (*DescribeInstanceAttributeOutput) SetDisableApiTermination

func (s *DescribeInstanceAttributeOutput) SetDisableApiTermination(v *AttributeBooleanValue) *DescribeInstanceAttributeOutput

SetDisableApiTermination sets the DisableApiTermination field's value.

func (*DescribeInstanceAttributeOutput) SetEbsOptimized

func (s *DescribeInstanceAttributeOutput) SetEbsOptimized(v *AttributeBooleanValue) *DescribeInstanceAttributeOutput

SetEbsOptimized sets the EbsOptimized field's value.

func (*DescribeInstanceAttributeOutput) SetEnaSupport

func (s *DescribeInstanceAttributeOutput) SetEnaSupport(v *AttributeBooleanValue) *DescribeInstanceAttributeOutput

SetEnaSupport sets the EnaSupport field's value.

func (*DescribeInstanceAttributeOutput) SetGroups

func (s *DescribeInstanceAttributeOutput) SetGroups(v []*GroupIdentifier) *DescribeInstanceAttributeOutput

SetGroups sets the Groups field's value.

func (*DescribeInstanceAttributeOutput) SetInstanceId

func (s *DescribeInstanceAttributeOutput) SetInstanceId(v string) *DescribeInstanceAttributeOutput

SetInstanceId sets the InstanceId field's value.

func (*DescribeInstanceAttributeOutput) SetInstanceInitiatedShutdownBehavior

func (s *DescribeInstanceAttributeOutput) SetInstanceInitiatedShutdownBehavior(v *AttributeValue) *DescribeInstanceAttributeOutput

SetInstanceInitiatedShutdownBehavior sets the InstanceInitiatedShutdownBehavior field's value.

func (*DescribeInstanceAttributeOutput) SetInstanceType

func (s *DescribeInstanceAttributeOutput) SetInstanceType(v *AttributeValue) *DescribeInstanceAttributeOutput

SetInstanceType sets the InstanceType field's value.

func (*DescribeInstanceAttributeOutput) SetKernelId

func (s *DescribeInstanceAttributeOutput) SetKernelId(v *AttributeValue) *DescribeInstanceAttributeOutput

SetKernelId sets the KernelId field's value.

func (*DescribeInstanceAttributeOutput) SetProductCodes

func (s *DescribeInstanceAttributeOutput) SetProductCodes(v []*ProductCode) *DescribeInstanceAttributeOutput

SetProductCodes sets the ProductCodes field's value.

func (*DescribeInstanceAttributeOutput) SetRamdiskId

func (s *DescribeInstanceAttributeOutput) SetRamdiskId(v *AttributeValue) *DescribeInstanceAttributeOutput

SetRamdiskId sets the RamdiskId field's value.

func (*DescribeInstanceAttributeOutput) SetRootDeviceName

func (s *DescribeInstanceAttributeOutput) SetRootDeviceName(v *AttributeValue) *DescribeInstanceAttributeOutput

SetRootDeviceName sets the RootDeviceName field's value.

func (*DescribeInstanceAttributeOutput) SetSourceDestCheck

func (s *DescribeInstanceAttributeOutput) SetSourceDestCheck(v *AttributeBooleanValue) *DescribeInstanceAttributeOutput

SetSourceDestCheck sets the SourceDestCheck field's value.

func (*DescribeInstanceAttributeOutput) SetSriovNetSupport

func (s *DescribeInstanceAttributeOutput) SetSriovNetSupport(v *AttributeValue) *DescribeInstanceAttributeOutput

SetSriovNetSupport sets the SriovNetSupport field's value.

func (*DescribeInstanceAttributeOutput) SetUserData

func (s *DescribeInstanceAttributeOutput) SetUserData(v *AttributeValue) *DescribeInstanceAttributeOutput

SetUserData sets the UserData field's value.

func (DescribeInstanceAttributeOutput) String

func (s DescribeInstanceAttributeOutput) String() string

String returns the string representation

type DescribeInstanceStatusInput

Contains the parameters for DescribeInstanceStatus. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeInstanceStatusRequest

type DescribeInstanceStatusInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // One or more filters.
    //
    //    * availability-zone - The Availability Zone of the instance.
    //
    //    * event.code - The code for the scheduled event (instance-reboot | system-reboot
    //    | system-maintenance | instance-retirement | instance-stop).
    //
    //    * event.description - A description of the event.
    //
    //    * event.not-after - The latest end time for the scheduled event (for example,
    //    2014-09-15T17:15:20.000Z).
    //
    //    * event.not-before - The earliest start time for the scheduled event (for
    //    example, 2014-09-15T17:15:20.000Z).
    //
    //    * instance-state-code - The code for the instance state, as a 16-bit unsigned
    //    integer. The high byte is an opaque internal value and should be ignored.
    //    The low byte is set based on the state represented. The valid values are
    //    0 (pending), 16 (running), 32 (shutting-down), 48 (terminated), 64 (stopping),
    //    and 80 (stopped).
    //
    //    * instance-state-name - The state of the instance (pending | running |
    //    shutting-down | terminated | stopping | stopped).
    //
    //    * instance-status.reachability - Filters on instance status where the
    //    name is reachability (passed | failed | initializing | insufficient-data).
    //
    //    * instance-status.status - The status of the instance (ok | impaired |
    //    initializing | insufficient-data | not-applicable).
    //
    //    * system-status.reachability - Filters on system status where the name
    //    is reachability (passed | failed | initializing | insufficient-data).
    //
    //    * system-status.status - The system status of the instance (ok | impaired
    //    | initializing | insufficient-data | not-applicable).
    Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"`

    // When true, includes the health status for all instances. When false, includes
    // the health status for running instances only.
    //
    // Default: false
    IncludeAllInstances *bool `locationName:"includeAllInstances" type:"boolean"`

    // One or more instance IDs.
    //
    // Default: Describes all your instances.
    //
    // Constraints: Maximum 100 explicitly specified instance IDs.
    InstanceIds []*string `locationName:"InstanceId" locationNameList:"InstanceId" type:"list"`

    // The maximum number of results to return in a single call. To retrieve the
    // remaining results, make another call with the returned NextToken value. This
    // value can be between 5 and 1000. You cannot specify this parameter and the
    // instance IDs parameter in the same call.
    MaxResults *int64 `type:"integer"`

    // The token to retrieve the next page of results.
    NextToken *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeInstanceStatusInput) GoString

func (s DescribeInstanceStatusInput) GoString() string

GoString returns the string representation

func (*DescribeInstanceStatusInput) SetDryRun

func (s *DescribeInstanceStatusInput) SetDryRun(v bool) *DescribeInstanceStatusInput

SetDryRun sets the DryRun field's value.

func (*DescribeInstanceStatusInput) SetFilters

func (s *DescribeInstanceStatusInput) SetFilters(v []*Filter) *DescribeInstanceStatusInput

SetFilters sets the Filters field's value.

func (*DescribeInstanceStatusInput) SetIncludeAllInstances

func (s *DescribeInstanceStatusInput) SetIncludeAllInstances(v bool) *DescribeInstanceStatusInput

SetIncludeAllInstances sets the IncludeAllInstances field's value.

func (*DescribeInstanceStatusInput) SetInstanceIds

func (s *DescribeInstanceStatusInput) SetInstanceIds(v []*string) *DescribeInstanceStatusInput

SetInstanceIds sets the InstanceIds field's value.

func (*DescribeInstanceStatusInput) SetMaxResults

func (s *DescribeInstanceStatusInput) SetMaxResults(v int64) *DescribeInstanceStatusInput

SetMaxResults sets the MaxResults field's value.

func (*DescribeInstanceStatusInput) SetNextToken

func (s *DescribeInstanceStatusInput) SetNextToken(v string) *DescribeInstanceStatusInput

SetNextToken sets the NextToken field's value.

func (DescribeInstanceStatusInput) String

func (s DescribeInstanceStatusInput) String() string

String returns the string representation

type DescribeInstanceStatusOutput

Contains the output of DescribeInstanceStatus. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeInstanceStatusResult

type DescribeInstanceStatusOutput struct {

    // One or more instance status descriptions.
    InstanceStatuses []*InstanceStatus `locationName:"instanceStatusSet" locationNameList:"item" type:"list"`

    // The token to use to retrieve the next page of results. This value is null
    // when there are no more results to return.
    NextToken *string `locationName:"nextToken" type:"string"`
    // contains filtered or unexported fields
}

func (DescribeInstanceStatusOutput) GoString

func (s DescribeInstanceStatusOutput) GoString() string

GoString returns the string representation

func (*DescribeInstanceStatusOutput) SetInstanceStatuses

func (s *DescribeInstanceStatusOutput) SetInstanceStatuses(v []*InstanceStatus) *DescribeInstanceStatusOutput

SetInstanceStatuses sets the InstanceStatuses field's value.

func (*DescribeInstanceStatusOutput) SetNextToken

func (s *DescribeInstanceStatusOutput) SetNextToken(v string) *DescribeInstanceStatusOutput

SetNextToken sets the NextToken field's value.

func (DescribeInstanceStatusOutput) String

func (s DescribeInstanceStatusOutput) String() string

String returns the string representation

type DescribeInstancesInput

Contains the parameters for DescribeInstances. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeInstancesRequest

type DescribeInstancesInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // One or more filters.
    //
    //    * affinity - The affinity setting for an instance running on a Dedicated
    //    Host (default | host).
    //
    //    * architecture - The instance architecture (i386 | x86_64).
    //
    //    * availability-zone - The Availability Zone of the instance.
    //
    //    * block-device-mapping.attach-time - The attach time for an EBS volume
    //    mapped to the instance, for example, 2010-09-15T17:15:20.000Z.
    //
    //    * block-device-mapping.delete-on-termination - A Boolean that indicates
    //    whether the EBS volume is deleted on instance termination.
    //
    //    * block-device-mapping.device-name - The device name for the EBS volume
    //    (for example, /dev/sdh or xvdh).
    //
    //    * block-device-mapping.status - The status for the EBS volume (attaching
    //    | attached | detaching | detached).
    //
    //    * block-device-mapping.volume-id - The volume ID of the EBS volume.
    //
    //    * client-token - The idempotency token you provided when you launched
    //    the instance.
    //
    //    * dns-name - The public DNS name of the instance.
    //
    //    * group-id - The ID of the security group for the instance. EC2-Classic
    //    only.
    //
    //    * group-name - The name of the security group for the instance. EC2-Classic
    //    only.
    //
    //    * host-id - The ID of the Dedicated Host on which the instance is running,
    //    if applicable.
    //
    //    * hypervisor - The hypervisor type of the instance (ovm | xen).
    //
    //    * iam-instance-profile.arn - The instance profile associated with the
    //    instance. Specified as an ARN.
    //
    //    * image-id - The ID of the image used to launch the instance.
    //
    //    * instance-id - The ID of the instance.
    //
    //    * instance-lifecycle - Indicates whether this is a Spot Instance or a
    //    Scheduled Instance (spot | scheduled).
    //
    //    * instance-state-code - The state of the instance, as a 16-bit unsigned
    //    integer. The high byte is an opaque internal value and should be ignored.
    //    The low byte is set based on the state represented. The valid values are:
    //    0 (pending), 16 (running), 32 (shutting-down), 48 (terminated), 64 (stopping),
    //    and 80 (stopped).
    //
    //    * instance-state-name - The state of the instance (pending | running |
    //    shutting-down | terminated | stopping | stopped).
    //
    //    * instance-type - The type of instance (for example, t2.micro).
    //
    //    * instance.group-id - The ID of the security group for the instance.
    //
    //    * instance.group-name - The name of the security group for the instance.
    //
    //
    //    * ip-address - The public IPv4 address of the instance.
    //
    //    * kernel-id - The kernel ID.
    //
    //    * key-name - The name of the key pair used when the instance was launched.
    //
    //    * launch-index - When launching multiple instances, this is the index
    //    for the instance in the launch group (for example, 0, 1, 2, and so on).
    //
    //
    //    * launch-time - The time when the instance was launched.
    //
    //    * monitoring-state - Indicates whether detailed monitoring is enabled
    //    (disabled | enabled).
    //
    //    * network-interface.addresses.private-ip-address - The private IPv4 address
    //    associated with the network interface.
    //
    //    * network-interface.addresses.primary - Specifies whether the IPv4 address
    //    of the network interface is the primary private IPv4 address.
    //
    //    * network-interface.addresses.association.public-ip - The ID of the association
    //    of an Elastic IP address (IPv4) with a network interface.
    //
    //    * network-interface.addresses.association.ip-owner-id - The owner ID of
    //    the private IPv4 address associated with the network interface.
    //
    //    * network-interface.association.public-ip - The address of the Elastic
    //    IP address (IPv4) bound to the network interface.
    //
    //    * network-interface.association.ip-owner-id - The owner of the Elastic
    //    IP address (IPv4) associated with the network interface.
    //
    //    * network-interface.association.allocation-id - The allocation ID returned
    //    when you allocated the Elastic IP address (IPv4) for your network interface.
    //
    //    * network-interface.association.association-id - The association ID returned
    //    when the network interface was associated with an IPv4 address.
    //
    //    * network-interface.attachment.attachment-id - The ID of the interface
    //    attachment.
    //
    //    * network-interface.attachment.instance-id - The ID of the instance to
    //    which the network interface is attached.
    //
    //    * network-interface.attachment.instance-owner-id - The owner ID of the
    //    instance to which the network interface is attached.
    //
    //    * network-interface.attachment.device-index - The device index to which
    //    the network interface is attached.
    //
    //    * network-interface.attachment.status - The status of the attachment (attaching
    //    | attached | detaching | detached).
    //
    //    * network-interface.attachment.attach-time - The time that the network
    //    interface was attached to an instance.
    //
    //    * network-interface.attachment.delete-on-termination - Specifies whether
    //    the attachment is deleted when an instance is terminated.
    //
    //    * network-interface.availability-zone - The Availability Zone for the
    //    network interface.
    //
    //    * network-interface.description - The description of the network interface.
    //
    //    * network-interface.group-id - The ID of a security group associated with
    //    the network interface.
    //
    //    * network-interface.group-name - The name of a security group associated
    //    with the network interface.
    //
    //    * network-interface.ipv6-addresses.ipv6-address - The IPv6 address associated
    //    with the network interface.
    //
    //    * network-interface.mac-address - The MAC address of the network interface.
    //
    //    * network-interface.network-interface-id - The ID of the network interface.
    //
    //    * network-interface.owner-id - The ID of the owner of the network interface.
    //
    //    * network-interface.private-dns-name - The private DNS name of the network
    //    interface.
    //
    //    * network-interface.requester-id - The requester ID for the network interface.
    //
    //    * network-interface.requester-managed - Indicates whether the network
    //    interface is being managed by AWS.
    //
    //    * network-interface.status - The status of the network interface (available)
    //    | in-use).
    //
    //    * network-interface.source-dest-check - Whether the network interface
    //    performs source/destination checking. A value of true means checking is
    //    enabled, and false means checking is disabled. The value must be false
    //    for the network interface to perform network address translation (NAT)
    //    in your VPC.
    //
    //    * network-interface.subnet-id - The ID of the subnet for the network interface.
    //
    //    * network-interface.vpc-id - The ID of the VPC for the network interface.
    //
    //    * owner-id - The AWS account ID of the instance owner.
    //
    //    * placement-group-name - The name of the placement group for the instance.
    //
    //    * platform - The platform. Use windows if you have Windows instances;
    //    otherwise, leave blank.
    //
    //    * private-dns-name - The private IPv4 DNS name of the instance.
    //
    //    * private-ip-address - The private IPv4 address of the instance.
    //
    //    * product-code - The product code associated with the AMI used to launch
    //    the instance.
    //
    //    * product-code.type - The type of product code (devpay | marketplace).
    //
    //    * ramdisk-id - The RAM disk ID.
    //
    //    * reason - The reason for the current state of the instance (for example,
    //    shows "User Initiated [date]" when you stop or terminate the instance).
    //    Similar to the state-reason-code filter.
    //
    //    * requester-id - The ID of the entity that launched the instance on your
    //    behalf (for example, AWS Management Console, Auto Scaling, and so on).
    //
    //    * reservation-id - The ID of the instance's reservation. A reservation
    //    ID is created any time you launch an instance. A reservation ID has a
    //    one-to-one relationship with an instance launch request, but can be associated
    //    with more than one instance if you launch multiple instances using the
    //    same launch request. For example, if you launch one instance, you'll get
    //    one reservation ID. If you launch ten instances using the same launch
    //    request, you'll also get one reservation ID.
    //
    //    * root-device-name - The name of the root device for the instance (for
    //    example, /dev/sda1 or /dev/xvda).
    //
    //    * root-device-type - The type of root device that the instance uses (ebs
    //    | instance-store).
    //
    //    * source-dest-check - Indicates whether the instance performs source/destination
    //    checking. A value of true means that checking is enabled, and false means
    //    checking is disabled. The value must be false for the instance to perform
    //    network address translation (NAT) in your VPC.
    //
    //    * spot-instance-request-id - The ID of the Spot instance request.
    //
    //    * state-reason-code - The reason code for the state change.
    //
    //    * state-reason-message - A message that describes the state change.
    //
    //    * subnet-id - The ID of the subnet for the instance.
    //
    //    * tag:key=value - The key/value combination of a tag assigned to the resource.
    //    Specify the key of the tag in the filter name and the value of the tag
    //    in the filter value. For example, for the tag Purpose=X, specify tag:Purpose
    //    for the filter name and X for the filter value.
    //
    //    * tag-key - The key of a tag assigned to the resource. This filter is
    //    independent of the tag-value filter. For example, if you use both the
    //    filter "tag-key=Purpose" and the filter "tag-value=X", you get any resources
    //    assigned both the tag key Purpose (regardless of what the tag's value
    //    is), and the tag value X (regardless of what the tag's key is). If you
    //    want to list only resources where Purpose is X, see the tag:key=value
    //    filter.
    //
    //    * tag-value - The value of a tag assigned to the resource. This filter
    //    is independent of the tag-key filter.
    //
    //    * tenancy - The tenancy of an instance (dedicated | default | host).
    //
    //    * virtualization-type - The virtualization type of the instance (paravirtual
    //    | hvm).
    //
    //    * vpc-id - The ID of the VPC that the instance is running in.
    Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"`

    // One or more instance IDs.
    //
    // Default: Describes all your instances.
    InstanceIds []*string `locationName:"InstanceId" locationNameList:"InstanceId" type:"list"`

    // The maximum number of results to return in a single call. To retrieve the
    // remaining results, make another call with the returned NextToken value. This
    // value can be between 5 and 1000. You cannot specify this parameter and the
    // instance IDs parameter or tag filters in the same call.
    MaxResults *int64 `locationName:"maxResults" type:"integer"`

    // The token to request the next page of results.
    NextToken *string `locationName:"nextToken" type:"string"`
    // contains filtered or unexported fields
}

func (DescribeInstancesInput) GoString

func (s DescribeInstancesInput) GoString() string

GoString returns the string representation

func (*DescribeInstancesInput) SetDryRun

func (s *DescribeInstancesInput) SetDryRun(v bool) *DescribeInstancesInput

SetDryRun sets the DryRun field's value.

func (*DescribeInstancesInput) SetFilters

func (s *DescribeInstancesInput) SetFilters(v []*Filter) *DescribeInstancesInput

SetFilters sets the Filters field's value.

func (*DescribeInstancesInput) SetInstanceIds

func (s *DescribeInstancesInput) SetInstanceIds(v []*string) *DescribeInstancesInput

SetInstanceIds sets the InstanceIds field's value.

func (*DescribeInstancesInput) SetMaxResults

func (s *DescribeInstancesInput) SetMaxResults(v int64) *DescribeInstancesInput

SetMaxResults sets the MaxResults field's value.

func (*DescribeInstancesInput) SetNextToken

func (s *DescribeInstancesInput) SetNextToken(v string) *DescribeInstancesInput

SetNextToken sets the NextToken field's value.

func (DescribeInstancesInput) String

func (s DescribeInstancesInput) String() string

String returns the string representation

type DescribeInstancesOutput

Contains the output of DescribeInstances. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeInstancesResult

type DescribeInstancesOutput struct {

    // The token to use to retrieve the next page of results. This value is null
    // when there are no more results to return.
    NextToken *string `locationName:"nextToken" type:"string"`

    // Zero or more reservations.
    Reservations []*Reservation `locationName:"reservationSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeInstancesOutput) GoString

func (s DescribeInstancesOutput) GoString() string

GoString returns the string representation

func (*DescribeInstancesOutput) SetNextToken

func (s *DescribeInstancesOutput) SetNextToken(v string) *DescribeInstancesOutput

SetNextToken sets the NextToken field's value.

func (*DescribeInstancesOutput) SetReservations

func (s *DescribeInstancesOutput) SetReservations(v []*Reservation) *DescribeInstancesOutput

SetReservations sets the Reservations field's value.

func (DescribeInstancesOutput) String

func (s DescribeInstancesOutput) String() string

String returns the string representation

type DescribeInternetGatewaysInput

Contains the parameters for DescribeInternetGateways. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeInternetGatewaysRequest

type DescribeInternetGatewaysInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // One or more filters.
    //
    //    * attachment.state - The current state of the attachment between the gateway
    //    and the VPC (available). Present only if a VPC is attached.
    //
    //    * attachment.vpc-id - The ID of an attached VPC.
    //
    //    * internet-gateway-id - The ID of the Internet gateway.
    //
    //    * tag:key=value - The key/value combination of a tag assigned to the resource.
    //    Specify the key of the tag in the filter name and the value of the tag
    //    in the filter value. For example, for the tag Purpose=X, specify tag:Purpose
    //    for the filter name and X for the filter value.
    //
    //    * tag-key - The key of a tag assigned to the resource. This filter is
    //    independent of the tag-value filter. For example, if you use both the
    //    filter "tag-key=Purpose" and the filter "tag-value=X", you get any resources
    //    assigned both the tag key Purpose (regardless of what the tag's value
    //    is), and the tag value X (regardless of what the tag's key is). If you
    //    want to list only resources where Purpose is X, see the tag:key=value
    //    filter.
    //
    //    * tag-value - The value of a tag assigned to the resource. This filter
    //    is independent of the tag-key filter.
    Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"`

    // One or more Internet gateway IDs.
    //
    // Default: Describes all your Internet gateways.
    InternetGatewayIds []*string `locationName:"internetGatewayId" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeInternetGatewaysInput) GoString

func (s DescribeInternetGatewaysInput) GoString() string

GoString returns the string representation

func (*DescribeInternetGatewaysInput) SetDryRun

func (s *DescribeInternetGatewaysInput) SetDryRun(v bool) *DescribeInternetGatewaysInput

SetDryRun sets the DryRun field's value.

func (*DescribeInternetGatewaysInput) SetFilters

func (s *DescribeInternetGatewaysInput) SetFilters(v []*Filter) *DescribeInternetGatewaysInput

SetFilters sets the Filters field's value.

func (*DescribeInternetGatewaysInput) SetInternetGatewayIds

func (s *DescribeInternetGatewaysInput) SetInternetGatewayIds(v []*string) *DescribeInternetGatewaysInput

SetInternetGatewayIds sets the InternetGatewayIds field's value.

func (DescribeInternetGatewaysInput) String

func (s DescribeInternetGatewaysInput) String() string

String returns the string representation

type DescribeInternetGatewaysOutput

Contains the output of DescribeInternetGateways. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeInternetGatewaysResult

type DescribeInternetGatewaysOutput struct {

    // Information about one or more Internet gateways.
    InternetGateways []*InternetGateway `locationName:"internetGatewaySet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeInternetGatewaysOutput) GoString

func (s DescribeInternetGatewaysOutput) GoString() string

GoString returns the string representation

func (*DescribeInternetGatewaysOutput) SetInternetGateways

func (s *DescribeInternetGatewaysOutput) SetInternetGateways(v []*InternetGateway) *DescribeInternetGatewaysOutput

SetInternetGateways sets the InternetGateways field's value.

func (DescribeInternetGatewaysOutput) String

func (s DescribeInternetGatewaysOutput) String() string

String returns the string representation

type DescribeKeyPairsInput

Contains the parameters for DescribeKeyPairs. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeKeyPairsRequest

type DescribeKeyPairsInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // One or more filters.
    //
    //    * fingerprint - The fingerprint of the key pair.
    //
    //    * key-name - The name of the key pair.
    Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"`

    // One or more key pair names.
    //
    // Default: Describes all your key pairs.
    KeyNames []*string `locationName:"KeyName" locationNameList:"KeyName" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeKeyPairsInput) GoString

func (s DescribeKeyPairsInput) GoString() string

GoString returns the string representation

func (*DescribeKeyPairsInput) SetDryRun

func (s *DescribeKeyPairsInput) SetDryRun(v bool) *DescribeKeyPairsInput

SetDryRun sets the DryRun field's value.

func (*DescribeKeyPairsInput) SetFilters

func (s *DescribeKeyPairsInput) SetFilters(v []*Filter) *DescribeKeyPairsInput

SetFilters sets the Filters field's value.

func (*DescribeKeyPairsInput) SetKeyNames

func (s *DescribeKeyPairsInput) SetKeyNames(v []*string) *DescribeKeyPairsInput

SetKeyNames sets the KeyNames field's value.

func (DescribeKeyPairsInput) String

func (s DescribeKeyPairsInput) String() string

String returns the string representation

type DescribeKeyPairsOutput

Contains the output of DescribeKeyPairs. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeKeyPairsResult

type DescribeKeyPairsOutput struct {

    // Information about one or more key pairs.
    KeyPairs []*KeyPairInfo `locationName:"keySet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeKeyPairsOutput) GoString

func (s DescribeKeyPairsOutput) GoString() string

GoString returns the string representation

func (*DescribeKeyPairsOutput) SetKeyPairs

func (s *DescribeKeyPairsOutput) SetKeyPairs(v []*KeyPairInfo) *DescribeKeyPairsOutput

SetKeyPairs sets the KeyPairs field's value.

func (DescribeKeyPairsOutput) String

func (s DescribeKeyPairsOutput) String() string

String returns the string representation

type DescribeMovingAddressesInput

Contains the parameters for DescribeMovingAddresses. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeMovingAddressesRequest

type DescribeMovingAddressesInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // One or more filters.
    //
    //    * moving-status - The status of the Elastic IP address (MovingToVpc |
    //    RestoringToClassic).
    Filters []*Filter `locationName:"filter" locationNameList:"Filter" type:"list"`

    // The maximum number of results to return for the request in a single page.
    // The remaining results of the initial request can be seen by sending another
    // request with the returned NextToken value. This value can be between 5 and
    // 1000; if MaxResults is given a value outside of this range, an error is returned.
    //
    // Default: If no value is provided, the default is 1000.
    MaxResults *int64 `locationName:"maxResults" type:"integer"`

    // The token to use to retrieve the next page of results.
    NextToken *string `locationName:"nextToken" type:"string"`

    // One or more Elastic IP addresses.
    PublicIps []*string `locationName:"publicIp" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeMovingAddressesInput) GoString

func (s DescribeMovingAddressesInput) GoString() string

GoString returns the string representation

func (*DescribeMovingAddressesInput) SetDryRun

func (s *DescribeMovingAddressesInput) SetDryRun(v bool) *DescribeMovingAddressesInput

SetDryRun sets the DryRun field's value.

func (*DescribeMovingAddressesInput) SetFilters

func (s *DescribeMovingAddressesInput) SetFilters(v []*Filter) *DescribeMovingAddressesInput

SetFilters sets the Filters field's value.

func (*DescribeMovingAddressesInput) SetMaxResults

func (s *DescribeMovingAddressesInput) SetMaxResults(v int64) *DescribeMovingAddressesInput

SetMaxResults sets the MaxResults field's value.

func (*DescribeMovingAddressesInput) SetNextToken

func (s *DescribeMovingAddressesInput) SetNextToken(v string) *DescribeMovingAddressesInput

SetNextToken sets the NextToken field's value.

func (*DescribeMovingAddressesInput) SetPublicIps

func (s *DescribeMovingAddressesInput) SetPublicIps(v []*string) *DescribeMovingAddressesInput

SetPublicIps sets the PublicIps field's value.

func (DescribeMovingAddressesInput) String

func (s DescribeMovingAddressesInput) String() string

String returns the string representation

type DescribeMovingAddressesOutput

Contains the output of DescribeMovingAddresses. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeMovingAddressesResult

type DescribeMovingAddressesOutput struct {

    // The status for each Elastic IP address.
    MovingAddressStatuses []*MovingAddressStatus `locationName:"movingAddressStatusSet" locationNameList:"item" type:"list"`

    // The token to use to retrieve the next page of results. This value is null
    // when there are no more results to return.
    NextToken *string `locationName:"nextToken" type:"string"`
    // contains filtered or unexported fields
}

func (DescribeMovingAddressesOutput) GoString

func (s DescribeMovingAddressesOutput) GoString() string

GoString returns the string representation

func (*DescribeMovingAddressesOutput) SetMovingAddressStatuses

func (s *DescribeMovingAddressesOutput) SetMovingAddressStatuses(v []*MovingAddressStatus) *DescribeMovingAddressesOutput

SetMovingAddressStatuses sets the MovingAddressStatuses field's value.

func (*DescribeMovingAddressesOutput) SetNextToken

func (s *DescribeMovingAddressesOutput) SetNextToken(v string) *DescribeMovingAddressesOutput

SetNextToken sets the NextToken field's value.

func (DescribeMovingAddressesOutput) String

func (s DescribeMovingAddressesOutput) String() string

String returns the string representation

type DescribeNatGatewaysInput

Contains the parameters for DescribeNatGateways. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeNatGatewaysRequest

type DescribeNatGatewaysInput struct {

    // One or more filters.
    //
    //    * nat-gateway-id - The ID of the NAT gateway.
    //
    //    * state - The state of the NAT gateway (pending | failed | available |
    //    deleting | deleted).
    //
    //    * subnet-id - The ID of the subnet in which the NAT gateway resides.
    //
    //    * vpc-id - The ID of the VPC in which the NAT gateway resides.
    Filter []*Filter `locationNameList:"Filter" type:"list"`

    // The maximum number of items to return for this request. The request returns
    // a token that you can specify in a subsequent call to get the next set of
    // results.
    //
    // Constraint: If the value specified is greater than 1000, we return only 1000
    // items.
    MaxResults *int64 `type:"integer"`

    // One or more NAT gateway IDs.
    NatGatewayIds []*string `locationName:"NatGatewayId" locationNameList:"item" type:"list"`

    // The token to retrieve the next page of results.
    NextToken *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeNatGatewaysInput) GoString

func (s DescribeNatGatewaysInput) GoString() string

GoString returns the string representation

func (*DescribeNatGatewaysInput) SetFilter

func (s *DescribeNatGatewaysInput) SetFilter(v []*Filter) *DescribeNatGatewaysInput

SetFilter sets the Filter field's value.

func (*DescribeNatGatewaysInput) SetMaxResults

func (s *DescribeNatGatewaysInput) SetMaxResults(v int64) *DescribeNatGatewaysInput

SetMaxResults sets the MaxResults field's value.

func (*DescribeNatGatewaysInput) SetNatGatewayIds

func (s *DescribeNatGatewaysInput) SetNatGatewayIds(v []*string) *DescribeNatGatewaysInput

SetNatGatewayIds sets the NatGatewayIds field's value.

func (*DescribeNatGatewaysInput) SetNextToken

func (s *DescribeNatGatewaysInput) SetNextToken(v string) *DescribeNatGatewaysInput

SetNextToken sets the NextToken field's value.

func (DescribeNatGatewaysInput) String

func (s DescribeNatGatewaysInput) String() string

String returns the string representation

type DescribeNatGatewaysOutput

Contains the output of DescribeNatGateways. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeNatGatewaysResult

type DescribeNatGatewaysOutput struct {

    // Information about the NAT gateways.
    NatGateways []*NatGateway `locationName:"natGatewaySet" locationNameList:"item" type:"list"`

    // The token to use to retrieve the next page of results. This value is null
    // when there are no more results to return.
    NextToken *string `locationName:"nextToken" type:"string"`
    // contains filtered or unexported fields
}

func (DescribeNatGatewaysOutput) GoString

func (s DescribeNatGatewaysOutput) GoString() string

GoString returns the string representation

func (*DescribeNatGatewaysOutput) SetNatGateways

func (s *DescribeNatGatewaysOutput) SetNatGateways(v []*NatGateway) *DescribeNatGatewaysOutput

SetNatGateways sets the NatGateways field's value.

func (*DescribeNatGatewaysOutput) SetNextToken

func (s *DescribeNatGatewaysOutput) SetNextToken(v string) *DescribeNatGatewaysOutput

SetNextToken sets the NextToken field's value.

func (DescribeNatGatewaysOutput) String

func (s DescribeNatGatewaysOutput) String() string

String returns the string representation

type DescribeNetworkAclsInput

Contains the parameters for DescribeNetworkAcls. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeNetworkAclsRequest

type DescribeNetworkAclsInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // One or more filters.
    //
    //    * association.association-id - The ID of an association ID for the ACL.
    //
    //    * association.network-acl-id - The ID of the network ACL involved in the
    //    association.
    //
    //    * association.subnet-id - The ID of the subnet involved in the association.
    //
    //    * default - Indicates whether the ACL is the default network ACL for the
    //    VPC.
    //
    //    * entry.cidr - The IPv4 CIDR range specified in the entry.
    //
    //    * entry.egress - Indicates whether the entry applies to egress traffic.
    //
    //    * entry.icmp.code - The ICMP code specified in the entry, if any.
    //
    //    * entry.icmp.type - The ICMP type specified in the entry, if any.
    //
    //    * entry.ipv6-cidr - The IPv6 CIDR range specified in the entry.
    //
    //    * entry.port-range.from - The start of the port range specified in the
    //    entry.
    //
    //    * entry.port-range.to - The end of the port range specified in the entry.
    //
    //
    //    * entry.protocol - The protocol specified in the entry (tcp | udp | icmp
    //    or a protocol number).
    //
    //    * entry.rule-action - Allows or denies the matching traffic (allow | deny).
    //
    //    * entry.rule-number - The number of an entry (in other words, rule) in
    //    the ACL's set of entries.
    //
    //    * network-acl-id - The ID of the network ACL.
    //
    //    * tag:key=value - The key/value combination of a tag assigned to the resource.
    //    Specify the key of the tag in the filter name and the value of the tag
    //    in the filter value. For example, for the tag Purpose=X, specify tag:Purpose
    //    for the filter name and X for the filter value.
    //
    //    * tag-key - The key of a tag assigned to the resource. This filter is
    //    independent of the tag-value filter. For example, if you use both the
    //    filter "tag-key=Purpose" and the filter "tag-value=X", you get any resources
    //    assigned both the tag key Purpose (regardless of what the tag's value
    //    is), and the tag value X (regardless of what the tag's key is). If you
    //    want to list only resources where Purpose is X, see the tag:key=value
    //    filter.
    //
    //    * tag-value - The value of a tag assigned to the resource. This filter
    //    is independent of the tag-key filter.
    //
    //    * vpc-id - The ID of the VPC for the network ACL.
    Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"`

    // One or more network ACL IDs.
    //
    // Default: Describes all your network ACLs.
    NetworkAclIds []*string `locationName:"NetworkAclId" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeNetworkAclsInput) GoString

func (s DescribeNetworkAclsInput) GoString() string

GoString returns the string representation

func (*DescribeNetworkAclsInput) SetDryRun

func (s *DescribeNetworkAclsInput) SetDryRun(v bool) *DescribeNetworkAclsInput

SetDryRun sets the DryRun field's value.

func (*DescribeNetworkAclsInput) SetFilters

func (s *DescribeNetworkAclsInput) SetFilters(v []*Filter) *DescribeNetworkAclsInput

SetFilters sets the Filters field's value.

func (*DescribeNetworkAclsInput) SetNetworkAclIds

func (s *DescribeNetworkAclsInput) SetNetworkAclIds(v []*string) *DescribeNetworkAclsInput

SetNetworkAclIds sets the NetworkAclIds field's value.

func (DescribeNetworkAclsInput) String

func (s DescribeNetworkAclsInput) String() string

String returns the string representation

type DescribeNetworkAclsOutput

Contains the output of DescribeNetworkAcls. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeNetworkAclsResult

type DescribeNetworkAclsOutput struct {

    // Information about one or more network ACLs.
    NetworkAcls []*NetworkAcl `locationName:"networkAclSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeNetworkAclsOutput) GoString

func (s DescribeNetworkAclsOutput) GoString() string

GoString returns the string representation

func (*DescribeNetworkAclsOutput) SetNetworkAcls

func (s *DescribeNetworkAclsOutput) SetNetworkAcls(v []*NetworkAcl) *DescribeNetworkAclsOutput

SetNetworkAcls sets the NetworkAcls field's value.

func (DescribeNetworkAclsOutput) String

func (s DescribeNetworkAclsOutput) String() string

String returns the string representation

type DescribeNetworkInterfaceAttributeInput

Contains the parameters for DescribeNetworkInterfaceAttribute. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeNetworkInterfaceAttributeRequest

type DescribeNetworkInterfaceAttributeInput struct {

    // The attribute of the network interface. This parameter is required.
    Attribute *string `locationName:"attribute" type:"string" enum:"NetworkInterfaceAttribute"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the network interface.
    //
    // NetworkInterfaceId is a required field
    NetworkInterfaceId *string `locationName:"networkInterfaceId" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DescribeNetworkInterfaceAttributeInput) GoString

func (s DescribeNetworkInterfaceAttributeInput) GoString() string

GoString returns the string representation

func (*DescribeNetworkInterfaceAttributeInput) SetAttribute

func (s *DescribeNetworkInterfaceAttributeInput) SetAttribute(v string) *DescribeNetworkInterfaceAttributeInput

SetAttribute sets the Attribute field's value.

func (*DescribeNetworkInterfaceAttributeInput) SetDryRun

func (s *DescribeNetworkInterfaceAttributeInput) SetDryRun(v bool) *DescribeNetworkInterfaceAttributeInput

SetDryRun sets the DryRun field's value.

func (*DescribeNetworkInterfaceAttributeInput) SetNetworkInterfaceId

func (s *DescribeNetworkInterfaceAttributeInput) SetNetworkInterfaceId(v string) *DescribeNetworkInterfaceAttributeInput

SetNetworkInterfaceId sets the NetworkInterfaceId field's value.

func (DescribeNetworkInterfaceAttributeInput) String

func (s DescribeNetworkInterfaceAttributeInput) String() string

String returns the string representation

func (*DescribeNetworkInterfaceAttributeInput) Validate

func (s *DescribeNetworkInterfaceAttributeInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeNetworkInterfaceAttributeOutput

Contains the output of DescribeNetworkInterfaceAttribute. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeNetworkInterfaceAttributeResult

type DescribeNetworkInterfaceAttributeOutput struct {

    // The attachment (if any) of the network interface.
    Attachment *NetworkInterfaceAttachment `locationName:"attachment" type:"structure"`

    // The description of the network interface.
    Description *AttributeValue `locationName:"description" type:"structure"`

    // The security groups associated with the network interface.
    Groups []*GroupIdentifier `locationName:"groupSet" locationNameList:"item" type:"list"`

    // The ID of the network interface.
    NetworkInterfaceId *string `locationName:"networkInterfaceId" type:"string"`

    // Indicates whether source/destination checking is enabled.
    SourceDestCheck *AttributeBooleanValue `locationName:"sourceDestCheck" type:"structure"`
    // contains filtered or unexported fields
}

func (DescribeNetworkInterfaceAttributeOutput) GoString

func (s DescribeNetworkInterfaceAttributeOutput) GoString() string

GoString returns the string representation

func (*DescribeNetworkInterfaceAttributeOutput) SetAttachment

func (s *DescribeNetworkInterfaceAttributeOutput) SetAttachment(v *NetworkInterfaceAttachment) *DescribeNetworkInterfaceAttributeOutput

SetAttachment sets the Attachment field's value.

func (*DescribeNetworkInterfaceAttributeOutput) SetDescription

func (s *DescribeNetworkInterfaceAttributeOutput) SetDescription(v *AttributeValue) *DescribeNetworkInterfaceAttributeOutput

SetDescription sets the Description field's value.

func (*DescribeNetworkInterfaceAttributeOutput) SetGroups

func (s *DescribeNetworkInterfaceAttributeOutput) SetGroups(v []*GroupIdentifier) *DescribeNetworkInterfaceAttributeOutput

SetGroups sets the Groups field's value.

func (*DescribeNetworkInterfaceAttributeOutput) SetNetworkInterfaceId

func (s *DescribeNetworkInterfaceAttributeOutput) SetNetworkInterfaceId(v string) *DescribeNetworkInterfaceAttributeOutput

SetNetworkInterfaceId sets the NetworkInterfaceId field's value.

func (*DescribeNetworkInterfaceAttributeOutput) SetSourceDestCheck

func (s *DescribeNetworkInterfaceAttributeOutput) SetSourceDestCheck(v *AttributeBooleanValue) *DescribeNetworkInterfaceAttributeOutput

SetSourceDestCheck sets the SourceDestCheck field's value.

func (DescribeNetworkInterfaceAttributeOutput) String

func (s DescribeNetworkInterfaceAttributeOutput) String() string

String returns the string representation

type DescribeNetworkInterfacesInput

Contains the parameters for DescribeNetworkInterfaces. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeNetworkInterfacesRequest

type DescribeNetworkInterfacesInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // One or more filters.
    //
    //    * addresses.private-ip-address - The private IPv4 addresses associated
    //    with the network interface.
    //
    //    * addresses.primary - Whether the private IPv4 address is the primary
    //    IP address associated with the network interface.
    //
    //    * addresses.association.public-ip - The association ID returned when the
    //    network interface was associated with the Elastic IP address (IPv4).
    //
    //    * addresses.association.owner-id - The owner ID of the addresses associated
    //    with the network interface.
    //
    //    * association.association-id - The association ID returned when the network
    //    interface was associated with an IPv4 address.
    //
    //    * association.allocation-id - The allocation ID returned when you allocated
    //    the Elastic IP address (IPv4) for your network interface.
    //
    //    * association.ip-owner-id - The owner of the Elastic IP address (IPv4)
    //    associated with the network interface.
    //
    //    * association.public-ip - The address of the Elastic IP address (IPv4)
    //    bound to the network interface.
    //
    //    * association.public-dns-name - The public DNS name for the network interface
    //    (IPv4).
    //
    //    * attachment.attachment-id - The ID of the interface attachment.
    //
    //    * attachment.attach.time - The time that the network interface was attached
    //    to an instance.
    //
    //    * attachment.delete-on-termination - Indicates whether the attachment
    //    is deleted when an instance is terminated.
    //
    //    * attachment.device-index - The device index to which the network interface
    //    is attached.
    //
    //    * attachment.instance-id - The ID of the instance to which the network
    //    interface is attached.
    //
    //    * attachment.instance-owner-id - The owner ID of the instance to which
    //    the network interface is attached.
    //
    //    * attachment.nat-gateway-id - The ID of the NAT gateway to which the network
    //    interface is attached.
    //
    //    * attachment.status - The status of the attachment (attaching | attached
    //    | detaching | detached).
    //
    //    * availability-zone - The Availability Zone of the network interface.
    //
    //    * description - The description of the network interface.
    //
    //    * group-id - The ID of a security group associated with the network interface.
    //
    //    * group-name - The name of a security group associated with the network
    //    interface.
    //
    //    * ipv6-addresses.ipv6-address - An IPv6 address associated with the network
    //    interface.
    //
    //    * mac-address - The MAC address of the network interface.
    //
    //    * network-interface-id - The ID of the network interface.
    //
    //    * owner-id - The AWS account ID of the network interface owner.
    //
    //    * private-ip-address - The private IPv4 address or addresses of the network
    //    interface.
    //
    //    * private-dns-name - The private DNS name of the network interface (IPv4).
    //
    //    * requester-id - The ID of the entity that launched the instance on your
    //    behalf (for example, AWS Management Console, Auto Scaling, and so on).
    //
    //    * requester-managed - Indicates whether the network interface is being
    //    managed by an AWS service (for example, AWS Management Console, Auto Scaling,
    //    and so on).
    //
    //    * source-desk-check - Indicates whether the network interface performs
    //    source/destination checking. A value of true means checking is enabled,
    //    and false means checking is disabled. The value must be false for the
    //    network interface to perform network address translation (NAT) in your
    //    VPC.
    //
    //    * status - The status of the network interface. If the network interface
    //    is not attached to an instance, the status is available; if a network
    //    interface is attached to an instance the status is in-use.
    //
    //    * subnet-id - The ID of the subnet for the network interface.
    //
    //    * tag:key=value - The key/value combination of a tag assigned to the resource.
    //    Specify the key of the tag in the filter name and the value of the tag
    //    in the filter value. For example, for the tag Purpose=X, specify tag:Purpose
    //    for the filter name and X for the filter value.
    //
    //    * tag-key - The key of a tag assigned to the resource. This filter is
    //    independent of the tag-value filter. For example, if you use both the
    //    filter "tag-key=Purpose" and the filter "tag-value=X", you get any resources
    //    assigned both the tag key Purpose (regardless of what the tag's value
    //    is), and the tag value X (regardless of what the tag's key is). If you
    //    want to list only resources where Purpose is X, see the tag:key=value
    //    filter.
    //
    //    * tag-value - The value of a tag assigned to the resource. This filter
    //    is independent of the tag-key filter.
    //
    //    * vpc-id - The ID of the VPC for the network interface.
    Filters []*Filter `locationName:"filter" locationNameList:"Filter" type:"list"`

    // One or more network interface IDs.
    //
    // Default: Describes all your network interfaces.
    NetworkInterfaceIds []*string `locationName:"NetworkInterfaceId" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeNetworkInterfacesInput) GoString

func (s DescribeNetworkInterfacesInput) GoString() string

GoString returns the string representation

func (*DescribeNetworkInterfacesInput) SetDryRun

func (s *DescribeNetworkInterfacesInput) SetDryRun(v bool) *DescribeNetworkInterfacesInput

SetDryRun sets the DryRun field's value.

func (*DescribeNetworkInterfacesInput) SetFilters

func (s *DescribeNetworkInterfacesInput) SetFilters(v []*Filter) *DescribeNetworkInterfacesInput

SetFilters sets the Filters field's value.

func (*DescribeNetworkInterfacesInput) SetNetworkInterfaceIds

func (s *DescribeNetworkInterfacesInput) SetNetworkInterfaceIds(v []*string) *DescribeNetworkInterfacesInput

SetNetworkInterfaceIds sets the NetworkInterfaceIds field's value.

func (DescribeNetworkInterfacesInput) String

func (s DescribeNetworkInterfacesInput) String() string

String returns the string representation

type DescribeNetworkInterfacesOutput

Contains the output of DescribeNetworkInterfaces. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeNetworkInterfacesResult

type DescribeNetworkInterfacesOutput struct {

    // Information about one or more network interfaces.
    NetworkInterfaces []*NetworkInterface `locationName:"networkInterfaceSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeNetworkInterfacesOutput) GoString

func (s DescribeNetworkInterfacesOutput) GoString() string

GoString returns the string representation

func (*DescribeNetworkInterfacesOutput) SetNetworkInterfaces

func (s *DescribeNetworkInterfacesOutput) SetNetworkInterfaces(v []*NetworkInterface) *DescribeNetworkInterfacesOutput

SetNetworkInterfaces sets the NetworkInterfaces field's value.

func (DescribeNetworkInterfacesOutput) String

func (s DescribeNetworkInterfacesOutput) String() string

String returns the string representation

type DescribePlacementGroupsInput

Contains the parameters for DescribePlacementGroups. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribePlacementGroupsRequest

type DescribePlacementGroupsInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // One or more filters.
    //
    //    * group-name - The name of the placement group.
    //
    //    * state - The state of the placement group (pending | available | deleting
    //    | deleted).
    //
    //    * strategy - The strategy of the placement group (cluster).
    Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"`

    // One or more placement group names.
    //
    // Default: Describes all your placement groups, or only those otherwise specified.
    GroupNames []*string `locationName:"groupName" type:"list"`
    // contains filtered or unexported fields
}

func (DescribePlacementGroupsInput) GoString

func (s DescribePlacementGroupsInput) GoString() string

GoString returns the string representation

func (*DescribePlacementGroupsInput) SetDryRun

func (s *DescribePlacementGroupsInput) SetDryRun(v bool) *DescribePlacementGroupsInput

SetDryRun sets the DryRun field's value.

func (*DescribePlacementGroupsInput) SetFilters

func (s *DescribePlacementGroupsInput) SetFilters(v []*Filter) *DescribePlacementGroupsInput

SetFilters sets the Filters field's value.

func (*DescribePlacementGroupsInput) SetGroupNames

func (s *DescribePlacementGroupsInput) SetGroupNames(v []*string) *DescribePlacementGroupsInput

SetGroupNames sets the GroupNames field's value.

func (DescribePlacementGroupsInput) String

func (s DescribePlacementGroupsInput) String() string

String returns the string representation

type DescribePlacementGroupsOutput

Contains the output of DescribePlacementGroups. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribePlacementGroupsResult

type DescribePlacementGroupsOutput struct {

    // One or more placement groups.
    PlacementGroups []*PlacementGroup `locationName:"placementGroupSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribePlacementGroupsOutput) GoString

func (s DescribePlacementGroupsOutput) GoString() string

GoString returns the string representation

func (*DescribePlacementGroupsOutput) SetPlacementGroups

func (s *DescribePlacementGroupsOutput) SetPlacementGroups(v []*PlacementGroup) *DescribePlacementGroupsOutput

SetPlacementGroups sets the PlacementGroups field's value.

func (DescribePlacementGroupsOutput) String

func (s DescribePlacementGroupsOutput) String() string

String returns the string representation

type DescribePrefixListsInput

Contains the parameters for DescribePrefixLists. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribePrefixListsRequest

type DescribePrefixListsInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `type:"boolean"`

    // One or more filters.
    //
    //    * prefix-list-id: The ID of a prefix list.
    //
    //    * prefix-list-name: The name of a prefix list.
    Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"`

    // The maximum number of items to return for this request. The request returns
    // a token that you can specify in a subsequent call to get the next set of
    // results.
    //
    // Constraint: If the value specified is greater than 1000, we return only 1000
    // items.
    MaxResults *int64 `type:"integer"`

    // The token for the next set of items to return. (You received this token from
    // a prior call.)
    NextToken *string `type:"string"`

    // One or more prefix list IDs.
    PrefixListIds []*string `locationName:"PrefixListId" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribePrefixListsInput) GoString

func (s DescribePrefixListsInput) GoString() string

GoString returns the string representation

func (*DescribePrefixListsInput) SetDryRun

func (s *DescribePrefixListsInput) SetDryRun(v bool) *DescribePrefixListsInput

SetDryRun sets the DryRun field's value.

func (*DescribePrefixListsInput) SetFilters

func (s *DescribePrefixListsInput) SetFilters(v []*Filter) *DescribePrefixListsInput

SetFilters sets the Filters field's value.

func (*DescribePrefixListsInput) SetMaxResults

func (s *DescribePrefixListsInput) SetMaxResults(v int64) *DescribePrefixListsInput

SetMaxResults sets the MaxResults field's value.

func (*DescribePrefixListsInput) SetNextToken

func (s *DescribePrefixListsInput) SetNextToken(v string) *DescribePrefixListsInput

SetNextToken sets the NextToken field's value.

func (*DescribePrefixListsInput) SetPrefixListIds

func (s *DescribePrefixListsInput) SetPrefixListIds(v []*string) *DescribePrefixListsInput

SetPrefixListIds sets the PrefixListIds field's value.

func (DescribePrefixListsInput) String

func (s DescribePrefixListsInput) String() string

String returns the string representation

type DescribePrefixListsOutput

Contains the output of DescribePrefixLists. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribePrefixListsResult

type DescribePrefixListsOutput struct {

    // The token to use when requesting the next set of items. If there are no additional
    // items to return, the string is empty.
    NextToken *string `locationName:"nextToken" type:"string"`

    // All available prefix lists.
    PrefixLists []*PrefixList `locationName:"prefixListSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribePrefixListsOutput) GoString

func (s DescribePrefixListsOutput) GoString() string

GoString returns the string representation

func (*DescribePrefixListsOutput) SetNextToken

func (s *DescribePrefixListsOutput) SetNextToken(v string) *DescribePrefixListsOutput

SetNextToken sets the NextToken field's value.

func (*DescribePrefixListsOutput) SetPrefixLists

func (s *DescribePrefixListsOutput) SetPrefixLists(v []*PrefixList) *DescribePrefixListsOutput

SetPrefixLists sets the PrefixLists field's value.

func (DescribePrefixListsOutput) String

func (s DescribePrefixListsOutput) String() string

String returns the string representation

type DescribeRegionsInput

Contains the parameters for DescribeRegions. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeRegionsRequest

type DescribeRegionsInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // One or more filters.
    //
    //    * endpoint - The endpoint of the region (for example, ec2.us-east-1.amazonaws.com).
    //
    //    * region-name - The name of the region (for example, us-east-1).
    Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"`

    // The names of one or more regions.
    RegionNames []*string `locationName:"RegionName" locationNameList:"RegionName" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeRegionsInput) GoString

func (s DescribeRegionsInput) GoString() string

GoString returns the string representation

func (*DescribeRegionsInput) SetDryRun

func (s *DescribeRegionsInput) SetDryRun(v bool) *DescribeRegionsInput

SetDryRun sets the DryRun field's value.

func (*DescribeRegionsInput) SetFilters

func (s *DescribeRegionsInput) SetFilters(v []*Filter) *DescribeRegionsInput

SetFilters sets the Filters field's value.

func (*DescribeRegionsInput) SetRegionNames

func (s *DescribeRegionsInput) SetRegionNames(v []*string) *DescribeRegionsInput

SetRegionNames sets the RegionNames field's value.

func (DescribeRegionsInput) String

func (s DescribeRegionsInput) String() string

String returns the string representation

type DescribeRegionsOutput

Contains the output of DescribeRegions. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeRegionsResult

type DescribeRegionsOutput struct {

    // Information about one or more regions.
    Regions []*Region `locationName:"regionInfo" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeRegionsOutput) GoString

func (s DescribeRegionsOutput) GoString() string

GoString returns the string representation

func (*DescribeRegionsOutput) SetRegions

func (s *DescribeRegionsOutput) SetRegions(v []*Region) *DescribeRegionsOutput

SetRegions sets the Regions field's value.

func (DescribeRegionsOutput) String

func (s DescribeRegionsOutput) String() string

String returns the string representation

type DescribeReservedInstancesInput

Contains the parameters for DescribeReservedInstances. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeReservedInstancesRequest

type DescribeReservedInstancesInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // One or more filters.
    //
    //    * availability-zone - The Availability Zone where the Reserved Instance
    //    can be used.
    //
    //    * duration - The duration of the Reserved Instance (one year or three
    //    years), in seconds (31536000 | 94608000).
    //
    //    * end - The time when the Reserved Instance expires (for example, 2015-08-07T11:54:42.000Z).
    //
    //    * fixed-price - The purchase price of the Reserved Instance (for example,
    //    9800.0).
    //
    //    * instance-type - The instance type that is covered by the reservation.
    //
    //    * scope - The scope of the Reserved Instance (Region or Availability Zone).
    //
    //    * product-description - The Reserved Instance product platform description.
    //    Instances that include (Amazon VPC) in the product platform description
    //    will only be displayed to EC2-Classic account holders and are for use
    //    with Amazon VPC (Linux/UNIX | Linux/UNIX (Amazon VPC) | SUSE Linux | SUSE
    //    Linux (Amazon VPC) | Red Hat Enterprise Linux | Red Hat Enterprise Linux
    //    (Amazon VPC) | Windows | Windows (Amazon VPC) | Windows with SQL Server
    //    Standard | Windows with SQL Server Standard (Amazon VPC) | Windows with
    //    SQL Server Web | Windows with SQL Server Web (Amazon VPC) | Windows with
    //    SQL Server Enterprise | Windows with SQL Server Enterprise (Amazon VPC)).
    //
    //    * reserved-instances-id - The ID of the Reserved Instance.
    //
    //    * start - The time at which the Reserved Instance purchase request was
    //    placed (for example, 2014-08-07T11:54:42.000Z).
    //
    //    * state - The state of the Reserved Instance (payment-pending | active
    //    | payment-failed | retired).
    //
    //    * tag:key=value - The key/value combination of a tag assigned to the resource.
    //    Specify the key of the tag in the filter name and the value of the tag
    //    in the filter value. For example, for the tag Purpose=X, specify tag:Purpose
    //    for the filter name and X for the filter value.
    //
    //    * tag-key - The key of a tag assigned to the resource. This filter is
    //    independent of the tag-value filter. For example, if you use both the
    //    filter "tag-key=Purpose" and the filter "tag-value=X", you get any resources
    //    assigned both the tag key Purpose (regardless of what the tag's value
    //    is), and the tag value X (regardless of what the tag's key is). If you
    //    want to list only resources where Purpose is X, see the tag:key=value
    //    filter.
    //
    //    * tag-value - The value of a tag assigned to the resource. This filter
    //    is independent of the tag-key filter.
    //
    //    * usage-price - The usage price of the Reserved Instance, per hour (for
    //    example, 0.84).
    Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"`

    // Describes whether the Reserved Instance is Standard or Convertible.
    OfferingClass *string `type:"string" enum:"OfferingClassType"`

    // The Reserved Instance offering type. If you are using tools that predate
    // the 2011-11-01 API version, you only have access to the Medium Utilization
    // Reserved Instance offering type.
    OfferingType *string `locationName:"offeringType" type:"string" enum:"OfferingTypeValues"`

    // One or more Reserved Instance IDs.
    //
    // Default: Describes all your Reserved Instances, or only those otherwise specified.
    ReservedInstancesIds []*string `locationName:"ReservedInstancesId" locationNameList:"ReservedInstancesId" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeReservedInstancesInput) GoString

func (s DescribeReservedInstancesInput) GoString() string

GoString returns the string representation

func (*DescribeReservedInstancesInput) SetDryRun

func (s *DescribeReservedInstancesInput) SetDryRun(v bool) *DescribeReservedInstancesInput

SetDryRun sets the DryRun field's value.

func (*DescribeReservedInstancesInput) SetFilters

func (s *DescribeReservedInstancesInput) SetFilters(v []*Filter) *DescribeReservedInstancesInput

SetFilters sets the Filters field's value.

func (*DescribeReservedInstancesInput) SetOfferingClass

func (s *DescribeReservedInstancesInput) SetOfferingClass(v string) *DescribeReservedInstancesInput

SetOfferingClass sets the OfferingClass field's value.

func (*DescribeReservedInstancesInput) SetOfferingType

func (s *DescribeReservedInstancesInput) SetOfferingType(v string) *DescribeReservedInstancesInput

SetOfferingType sets the OfferingType field's value.

func (*DescribeReservedInstancesInput) SetReservedInstancesIds

func (s *DescribeReservedInstancesInput) SetReservedInstancesIds(v []*string) *DescribeReservedInstancesInput

SetReservedInstancesIds sets the ReservedInstancesIds field's value.

func (DescribeReservedInstancesInput) String

func (s DescribeReservedInstancesInput) String() string

String returns the string representation

type DescribeReservedInstancesListingsInput

Contains the parameters for DescribeReservedInstancesListings. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeReservedInstancesListingsRequest

type DescribeReservedInstancesListingsInput struct {

    // One or more filters.
    //
    //    * reserved-instances-id - The ID of the Reserved Instances.
    //
    //    * reserved-instances-listing-id - The ID of the Reserved Instances listing.
    //
    //    * status - The status of the Reserved Instance listing (pending | active
    //    | cancelled | closed).
    //
    //    * status-message - The reason for the status.
    Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"`

    // One or more Reserved Instance IDs.
    ReservedInstancesId *string `locationName:"reservedInstancesId" type:"string"`

    // One or more Reserved Instance listing IDs.
    ReservedInstancesListingId *string `locationName:"reservedInstancesListingId" type:"string"`
    // contains filtered or unexported fields
}

func (DescribeReservedInstancesListingsInput) GoString

func (s DescribeReservedInstancesListingsInput) GoString() string

GoString returns the string representation

func (*DescribeReservedInstancesListingsInput) SetFilters

func (s *DescribeReservedInstancesListingsInput) SetFilters(v []*Filter) *DescribeReservedInstancesListingsInput

SetFilters sets the Filters field's value.

func (*DescribeReservedInstancesListingsInput) SetReservedInstancesId

func (s *DescribeReservedInstancesListingsInput) SetReservedInstancesId(v string) *DescribeReservedInstancesListingsInput

SetReservedInstancesId sets the ReservedInstancesId field's value.

func (*DescribeReservedInstancesListingsInput) SetReservedInstancesListingId

func (s *DescribeReservedInstancesListingsInput) SetReservedInstancesListingId(v string) *DescribeReservedInstancesListingsInput

SetReservedInstancesListingId sets the ReservedInstancesListingId field's value.

func (DescribeReservedInstancesListingsInput) String

func (s DescribeReservedInstancesListingsInput) String() string

String returns the string representation

type DescribeReservedInstancesListingsOutput

Contains the output of DescribeReservedInstancesListings. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeReservedInstancesListingsResult

type DescribeReservedInstancesListingsOutput struct {

    // Information about the Reserved Instance listing.
    ReservedInstancesListings []*ReservedInstancesListing `locationName:"reservedInstancesListingsSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeReservedInstancesListingsOutput) GoString

func (s DescribeReservedInstancesListingsOutput) GoString() string

GoString returns the string representation

func (*DescribeReservedInstancesListingsOutput) SetReservedInstancesListings

func (s *DescribeReservedInstancesListingsOutput) SetReservedInstancesListings(v []*ReservedInstancesListing) *DescribeReservedInstancesListingsOutput

SetReservedInstancesListings sets the ReservedInstancesListings field's value.

func (DescribeReservedInstancesListingsOutput) String

func (s DescribeReservedInstancesListingsOutput) String() string

String returns the string representation

type DescribeReservedInstancesModificationsInput

Contains the parameters for DescribeReservedInstancesModifications. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeReservedInstancesModificationsRequest

type DescribeReservedInstancesModificationsInput struct {

    // One or more filters.
    //
    //    * client-token - The idempotency token for the modification request.
    //
    //    * create-date - The time when the modification request was created.
    //
    //    * effective-date - The time when the modification becomes effective.
    //
    //    * modification-result.reserved-instances-id - The ID for the Reserved
    //    Instances created as part of the modification request. This ID is only
    //    available when the status of the modification is fulfilled.
    //
    //    * modification-result.target-configuration.availability-zone - The Availability
    //    Zone for the new Reserved Instances.
    //
    //    * modification-result.target-configuration.instance-count  - The number
    //    of new Reserved Instances.
    //
    //    * modification-result.target-configuration.instance-type - The instance
    //    type of the new Reserved Instances.
    //
    //    * modification-result.target-configuration.platform - The network platform
    //    of the new Reserved Instances (EC2-Classic | EC2-VPC).
    //
    //    * reserved-instances-id - The ID of the Reserved Instances modified.
    //
    //    * reserved-instances-modification-id - The ID of the modification request.
    //
    //    * status - The status of the Reserved Instances modification request (processing
    //    | fulfilled | failed).
    //
    //    * status-message - The reason for the status.
    //
    //    * update-date - The time when the modification request was last updated.
    Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"`

    // The token to retrieve the next page of results.
    NextToken *string `locationName:"nextToken" type:"string"`

    // IDs for the submitted modification request.
    ReservedInstancesModificationIds []*string `locationName:"ReservedInstancesModificationId" locationNameList:"ReservedInstancesModificationId" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeReservedInstancesModificationsInput) GoString

func (s DescribeReservedInstancesModificationsInput) GoString() string

GoString returns the string representation

func (*DescribeReservedInstancesModificationsInput) SetFilters

func (s *DescribeReservedInstancesModificationsInput) SetFilters(v []*Filter) *DescribeReservedInstancesModificationsInput

SetFilters sets the Filters field's value.

func (*DescribeReservedInstancesModificationsInput) SetNextToken

func (s *DescribeReservedInstancesModificationsInput) SetNextToken(v string) *DescribeReservedInstancesModificationsInput

SetNextToken sets the NextToken field's value.

func (*DescribeReservedInstancesModificationsInput) SetReservedInstancesModificationIds

func (s *DescribeReservedInstancesModificationsInput) SetReservedInstancesModificationIds(v []*string) *DescribeReservedInstancesModificationsInput

SetReservedInstancesModificationIds sets the ReservedInstancesModificationIds field's value.

func (DescribeReservedInstancesModificationsInput) String

func (s DescribeReservedInstancesModificationsInput) String() string

String returns the string representation

type DescribeReservedInstancesModificationsOutput

Contains the output of DescribeReservedInstancesModifications. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeReservedInstancesModificationsResult

type DescribeReservedInstancesModificationsOutput struct {

    // The token to use to retrieve the next page of results. This value is null
    // when there are no more results to return.
    NextToken *string `locationName:"nextToken" type:"string"`

    // The Reserved Instance modification information.
    ReservedInstancesModifications []*ReservedInstancesModification `locationName:"reservedInstancesModificationsSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeReservedInstancesModificationsOutput) GoString

func (s DescribeReservedInstancesModificationsOutput) GoString() string

GoString returns the string representation

func (*DescribeReservedInstancesModificationsOutput) SetNextToken

func (s *DescribeReservedInstancesModificationsOutput) SetNextToken(v string) *DescribeReservedInstancesModificationsOutput

SetNextToken sets the NextToken field's value.

func (*DescribeReservedInstancesModificationsOutput) SetReservedInstancesModifications

func (s *DescribeReservedInstancesModificationsOutput) SetReservedInstancesModifications(v []*ReservedInstancesModification) *DescribeReservedInstancesModificationsOutput

SetReservedInstancesModifications sets the ReservedInstancesModifications field's value.

func (DescribeReservedInstancesModificationsOutput) String

func (s DescribeReservedInstancesModificationsOutput) String() string

String returns the string representation

type DescribeReservedInstancesOfferingsInput

Contains the parameters for DescribeReservedInstancesOfferings. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeReservedInstancesOfferingsRequest

type DescribeReservedInstancesOfferingsInput struct {

    // The Availability Zone in which the Reserved Instance can be used.
    AvailabilityZone *string `type:"string"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // One or more filters.
    //
    //    * availability-zone - The Availability Zone where the Reserved Instance
    //    can be used.
    //
    //    * duration - The duration of the Reserved Instance (for example, one year
    //    or three years), in seconds (31536000 | 94608000).
    //
    //    * fixed-price - The purchase price of the Reserved Instance (for example,
    //    9800.0).
    //
    //    * instance-type - The instance type that is covered by the reservation.
    //
    //    * marketplace - Set to true to show only Reserved Instance Marketplace
    //    offerings. When this filter is not used, which is the default behavior,
    //    all offerings from both AWS and the Reserved Instance Marketplace are
    //    listed.
    //
    //    * product-description - The Reserved Instance product platform description.
    //    Instances that include (Amazon VPC) in the product platform description
    //    will only be displayed to EC2-Classic account holders and are for use
    //    with Amazon VPC. (Linux/UNIX | Linux/UNIX (Amazon VPC) | SUSE Linux |
    //    SUSE Linux (Amazon VPC) | Red Hat Enterprise Linux | Red Hat Enterprise
    //    Linux (Amazon VPC) | Windows | Windows (Amazon VPC) | Windows with SQL
    //    Server Standard | Windows with SQL Server Standard (Amazon VPC) | Windows
    //    with SQL Server Web |  Windows with SQL Server Web (Amazon VPC) | Windows
    //    with SQL Server Enterprise | Windows with SQL Server Enterprise (Amazon
    //    VPC))
    //
    //    * reserved-instances-offering-id - The Reserved Instances offering ID.
    //
    //    * scope - The scope of the Reserved Instance (Availability Zone or Region).
    //
    //    * usage-price - The usage price of the Reserved Instance, per hour (for
    //    example, 0.84).
    Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"`

    // Include Reserved Instance Marketplace offerings in the response.
    IncludeMarketplace *bool `type:"boolean"`

    // The tenancy of the instances covered by the reservation. A Reserved Instance
    // with a tenancy of dedicated is applied to instances that run in a VPC on
    // single-tenant hardware (i.e., Dedicated Instances).
    //
    // Important: The host value cannot be used with this parameter. Use the default
    // or dedicated values only.
    //
    // Default: default
    InstanceTenancy *string `locationName:"instanceTenancy" type:"string" enum:"Tenancy"`

    // The instance type that the reservation will cover (for example, m1.small).
    // For more information, see Instance Types (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html)
    // in the Amazon Elastic Compute Cloud User Guide.
    InstanceType *string `type:"string" enum:"InstanceType"`

    // The maximum duration (in seconds) to filter when searching for offerings.
    //
    // Default: 94608000 (3 years)
    MaxDuration *int64 `type:"long"`

    // The maximum number of instances to filter when searching for offerings.
    //
    // Default: 20
    MaxInstanceCount *int64 `type:"integer"`

    // The maximum number of results to return for the request in a single page.
    // The remaining results of the initial request can be seen by sending another
    // request with the returned NextToken value. The maximum is 100.
    //
    // Default: 100
    MaxResults *int64 `locationName:"maxResults" type:"integer"`

    // The minimum duration (in seconds) to filter when searching for offerings.
    //
    // Default: 2592000 (1 month)
    MinDuration *int64 `type:"long"`

    // The token to retrieve the next page of results.
    NextToken *string `locationName:"nextToken" type:"string"`

    // The offering class of the Reserved Instance. Can be standard or convertible.
    OfferingClass *string `type:"string" enum:"OfferingClassType"`

    // The Reserved Instance offering type. If you are using tools that predate
    // the 2011-11-01 API version, you only have access to the Medium Utilization
    // Reserved Instance offering type.
    OfferingType *string `locationName:"offeringType" type:"string" enum:"OfferingTypeValues"`

    // The Reserved Instance product platform description. Instances that include
    // (Amazon VPC) in the description are for use with Amazon VPC.
    ProductDescription *string `type:"string" enum:"RIProductDescription"`

    // One or more Reserved Instances offering IDs.
    ReservedInstancesOfferingIds []*string `locationName:"ReservedInstancesOfferingId" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeReservedInstancesOfferingsInput) GoString

func (s DescribeReservedInstancesOfferingsInput) GoString() string

GoString returns the string representation

func (*DescribeReservedInstancesOfferingsInput) SetAvailabilityZone

func (s *DescribeReservedInstancesOfferingsInput) SetAvailabilityZone(v string) *DescribeReservedInstancesOfferingsInput

SetAvailabilityZone sets the AvailabilityZone field's value.

func (*DescribeReservedInstancesOfferingsInput) SetDryRun

func (s *DescribeReservedInstancesOfferingsInput) SetDryRun(v bool) *DescribeReservedInstancesOfferingsInput

SetDryRun sets the DryRun field's value.

func (*DescribeReservedInstancesOfferingsInput) SetFilters

func (s *DescribeReservedInstancesOfferingsInput) SetFilters(v []*Filter) *DescribeReservedInstancesOfferingsInput

SetFilters sets the Filters field's value.

func (*DescribeReservedInstancesOfferingsInput) SetIncludeMarketplace

func (s *DescribeReservedInstancesOfferingsInput) SetIncludeMarketplace(v bool) *DescribeReservedInstancesOfferingsInput

SetIncludeMarketplace sets the IncludeMarketplace field's value.

func (*DescribeReservedInstancesOfferingsInput) SetInstanceTenancy

func (s *DescribeReservedInstancesOfferingsInput) SetInstanceTenancy(v string) *DescribeReservedInstancesOfferingsInput

SetInstanceTenancy sets the InstanceTenancy field's value.

func (*DescribeReservedInstancesOfferingsInput) SetInstanceType

func (s *DescribeReservedInstancesOfferingsInput) SetInstanceType(v string) *DescribeReservedInstancesOfferingsInput

SetInstanceType sets the InstanceType field's value.

func (*DescribeReservedInstancesOfferingsInput) SetMaxDuration

func (s *DescribeReservedInstancesOfferingsInput) SetMaxDuration(v int64) *DescribeReservedInstancesOfferingsInput

SetMaxDuration sets the MaxDuration field's value.

func (*DescribeReservedInstancesOfferingsInput) SetMaxInstanceCount

func (s *DescribeReservedInstancesOfferingsInput) SetMaxInstanceCount(v int64) *DescribeReservedInstancesOfferingsInput

SetMaxInstanceCount sets the MaxInstanceCount field's value.

func (*DescribeReservedInstancesOfferingsInput) SetMaxResults

func (s *DescribeReservedInstancesOfferingsInput) SetMaxResults(v int64) *DescribeReservedInstancesOfferingsInput

SetMaxResults sets the MaxResults field's value.

func (*DescribeReservedInstancesOfferingsInput) SetMinDuration

func (s *DescribeReservedInstancesOfferingsInput) SetMinDuration(v int64) *DescribeReservedInstancesOfferingsInput

SetMinDuration sets the MinDuration field's value.

func (*DescribeReservedInstancesOfferingsInput) SetNextToken

func (s *DescribeReservedInstancesOfferingsInput) SetNextToken(v string) *DescribeReservedInstancesOfferingsInput

SetNextToken sets the NextToken field's value.

func (*DescribeReservedInstancesOfferingsInput) SetOfferingClass

func (s *DescribeReservedInstancesOfferingsInput) SetOfferingClass(v string) *DescribeReservedInstancesOfferingsInput

SetOfferingClass sets the OfferingClass field's value.

func (*DescribeReservedInstancesOfferingsInput) SetOfferingType

func (s *DescribeReservedInstancesOfferingsInput) SetOfferingType(v string) *DescribeReservedInstancesOfferingsInput

SetOfferingType sets the OfferingType field's value.

func (*DescribeReservedInstancesOfferingsInput) SetProductDescription

func (s *DescribeReservedInstancesOfferingsInput) SetProductDescription(v string) *DescribeReservedInstancesOfferingsInput

SetProductDescription sets the ProductDescription field's value.

func (*DescribeReservedInstancesOfferingsInput) SetReservedInstancesOfferingIds

func (s *DescribeReservedInstancesOfferingsInput) SetReservedInstancesOfferingIds(v []*string) *DescribeReservedInstancesOfferingsInput

SetReservedInstancesOfferingIds sets the ReservedInstancesOfferingIds field's value.

func (DescribeReservedInstancesOfferingsInput) String

func (s DescribeReservedInstancesOfferingsInput) String() string

String returns the string representation

type DescribeReservedInstancesOfferingsOutput

Contains the output of DescribeReservedInstancesOfferings. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeReservedInstancesOfferingsResult

type DescribeReservedInstancesOfferingsOutput struct {

    // The token to use to retrieve the next page of results. This value is null
    // when there are no more results to return.
    NextToken *string `locationName:"nextToken" type:"string"`

    // A list of Reserved Instances offerings.
    ReservedInstancesOfferings []*ReservedInstancesOffering `locationName:"reservedInstancesOfferingsSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeReservedInstancesOfferingsOutput) GoString

func (s DescribeReservedInstancesOfferingsOutput) GoString() string

GoString returns the string representation

func (*DescribeReservedInstancesOfferingsOutput) SetNextToken

func (s *DescribeReservedInstancesOfferingsOutput) SetNextToken(v string) *DescribeReservedInstancesOfferingsOutput

SetNextToken sets the NextToken field's value.

func (*DescribeReservedInstancesOfferingsOutput) SetReservedInstancesOfferings

func (s *DescribeReservedInstancesOfferingsOutput) SetReservedInstancesOfferings(v []*ReservedInstancesOffering) *DescribeReservedInstancesOfferingsOutput

SetReservedInstancesOfferings sets the ReservedInstancesOfferings field's value.

func (DescribeReservedInstancesOfferingsOutput) String

func (s DescribeReservedInstancesOfferingsOutput) String() string

String returns the string representation

type DescribeReservedInstancesOutput

Contains the output for DescribeReservedInstances. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeReservedInstancesResult

type DescribeReservedInstancesOutput struct {

    // A list of Reserved Instances.
    ReservedInstances []*ReservedInstances `locationName:"reservedInstancesSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeReservedInstancesOutput) GoString

func (s DescribeReservedInstancesOutput) GoString() string

GoString returns the string representation

func (*DescribeReservedInstancesOutput) SetReservedInstances

func (s *DescribeReservedInstancesOutput) SetReservedInstances(v []*ReservedInstances) *DescribeReservedInstancesOutput

SetReservedInstances sets the ReservedInstances field's value.

func (DescribeReservedInstancesOutput) String

func (s DescribeReservedInstancesOutput) String() string

String returns the string representation

type DescribeRouteTablesInput

Contains the parameters for DescribeRouteTables. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeRouteTablesRequest

type DescribeRouteTablesInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // One or more filters.
    //
    //    * association.route-table-association-id - The ID of an association ID
    //    for the route table.
    //
    //    * association.route-table-id - The ID of the route table involved in the
    //    association.
    //
    //    * association.subnet-id - The ID of the subnet involved in the association.
    //
    //    * association.main - Indicates whether the route table is the main route
    //    table for the VPC (true | false). Route tables that do not have an association
    //    ID are not returned in the response.
    //
    //    * route-table-id - The ID of the route table.
    //
    //    * route.destination-cidr-block - The IPv4 CIDR range specified in a route
    //    in the table.
    //
    //    * route.destination-ipv6-cidr-block - The IPv6 CIDR range specified in
    //    a route in the route table.
    //
    //    * route.destination-prefix-list-id - The ID (prefix) of the AWS service
    //    specified in a route in the table.
    //
    //    * route.egress-only-internet-gateway-id - The ID of an egress-only Internet
    //    gateway specified in a route in the route table.
    //
    //    * route.gateway-id - The ID of a gateway specified in a route in the table.
    //
    //    * route.instance-id - The ID of an instance specified in a route in the
    //    table.
    //
    //    * route.nat-gateway-id - The ID of a NAT gateway.
    //
    //    * route.origin - Describes how the route was created. CreateRouteTable
    //    indicates that the route was automatically created when the route table
    //    was created; CreateRoute indicates that the route was manually added to
    //    the route table; EnableVgwRoutePropagation indicates that the route was
    //    propagated by route propagation.
    //
    //    * route.state - The state of a route in the route table (active | blackhole).
    //    The blackhole state indicates that the route's target isn't available
    //    (for example, the specified gateway isn't attached to the VPC, the specified
    //    NAT instance has been terminated, and so on).
    //
    //    * route.vpc-peering-connection-id - The ID of a VPC peering connection
    //    specified in a route in the table.
    //
    //    * tag:key=value - The key/value combination of a tag assigned to the resource.
    //    Specify the key of the tag in the filter name and the value of the tag
    //    in the filter value. For example, for the tag Purpose=X, specify tag:Purpose
    //    for the filter name and X for the filter value.
    //
    //    * tag-key - The key of a tag assigned to the resource. This filter is
    //    independent of the tag-value filter. For example, if you use both the
    //    filter "tag-key=Purpose" and the filter "tag-value=X", you get any resources
    //    assigned both the tag key Purpose (regardless of what the tag's value
    //    is), and the tag value X (regardless of what the tag's key is). If you
    //    want to list only resources where Purpose is X, see the tag:key=value
    //    filter.
    //
    //    * tag-value - The value of a tag assigned to the resource. This filter
    //    is independent of the tag-key filter.
    //
    //    * vpc-id - The ID of the VPC for the route table.
    Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"`

    // One or more route table IDs.
    //
    // Default: Describes all your route tables.
    RouteTableIds []*string `locationName:"RouteTableId" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeRouteTablesInput) GoString

func (s DescribeRouteTablesInput) GoString() string

GoString returns the string representation

func (*DescribeRouteTablesInput) SetDryRun

func (s *DescribeRouteTablesInput) SetDryRun(v bool) *DescribeRouteTablesInput

SetDryRun sets the DryRun field's value.

func (*DescribeRouteTablesInput) SetFilters

func (s *DescribeRouteTablesInput) SetFilters(v []*Filter) *DescribeRouteTablesInput

SetFilters sets the Filters field's value.

func (*DescribeRouteTablesInput) SetRouteTableIds

func (s *DescribeRouteTablesInput) SetRouteTableIds(v []*string) *DescribeRouteTablesInput

SetRouteTableIds sets the RouteTableIds field's value.

func (DescribeRouteTablesInput) String

func (s DescribeRouteTablesInput) String() string

String returns the string representation

type DescribeRouteTablesOutput

Contains the output of DescribeRouteTables. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeRouteTablesResult

type DescribeRouteTablesOutput struct {

    // Information about one or more route tables.
    RouteTables []*RouteTable `locationName:"routeTableSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeRouteTablesOutput) GoString

func (s DescribeRouteTablesOutput) GoString() string

GoString returns the string representation

func (*DescribeRouteTablesOutput) SetRouteTables

func (s *DescribeRouteTablesOutput) SetRouteTables(v []*RouteTable) *DescribeRouteTablesOutput

SetRouteTables sets the RouteTables field's value.

func (DescribeRouteTablesOutput) String

func (s DescribeRouteTablesOutput) String() string

String returns the string representation

type DescribeScheduledInstanceAvailabilityInput

Contains the parameters for DescribeScheduledInstanceAvailability. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeScheduledInstanceAvailabilityRequest

type DescribeScheduledInstanceAvailabilityInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `type:"boolean"`

    // One or more filters.
    //
    //    * availability-zone - The Availability Zone (for example, us-west-2a).
    //
    //    * instance-type - The instance type (for example, c4.large).
    //
    //    * network-platform - The network platform (EC2-Classic or EC2-VPC).
    //
    //    * platform - The platform (Linux/UNIX or Windows).
    Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"`

    // The time period for the first schedule to start.
    //
    // FirstSlotStartTimeRange is a required field
    FirstSlotStartTimeRange *SlotDateTimeRangeRequest `type:"structure" required:"true"`

    // The maximum number of results to return in a single call. This value can
    // be between 5 and 300. The default value is 300. To retrieve the remaining
    // results, make another call with the returned NextToken value.
    MaxResults *int64 `type:"integer"`

    // The maximum available duration, in hours. This value must be greater than
    // MinSlotDurationInHours and less than 1,720.
    MaxSlotDurationInHours *int64 `type:"integer"`

    // The minimum available duration, in hours. The minimum required duration is
    // 1,200 hours per year. For example, the minimum daily schedule is 4 hours,
    // the minimum weekly schedule is 24 hours, and the minimum monthly schedule
    // is 100 hours.
    MinSlotDurationInHours *int64 `type:"integer"`

    // The token for the next set of results.
    NextToken *string `type:"string"`

    // The schedule recurrence.
    //
    // Recurrence is a required field
    Recurrence *ScheduledInstanceRecurrenceRequest `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (DescribeScheduledInstanceAvailabilityInput) GoString

func (s DescribeScheduledInstanceAvailabilityInput) GoString() string

GoString returns the string representation

func (*DescribeScheduledInstanceAvailabilityInput) SetDryRun

func (s *DescribeScheduledInstanceAvailabilityInput) SetDryRun(v bool) *DescribeScheduledInstanceAvailabilityInput

SetDryRun sets the DryRun field's value.

func (*DescribeScheduledInstanceAvailabilityInput) SetFilters

func (s *DescribeScheduledInstanceAvailabilityInput) SetFilters(v []*Filter) *DescribeScheduledInstanceAvailabilityInput

SetFilters sets the Filters field's value.

func (*DescribeScheduledInstanceAvailabilityInput) SetFirstSlotStartTimeRange

func (s *DescribeScheduledInstanceAvailabilityInput) SetFirstSlotStartTimeRange(v *SlotDateTimeRangeRequest) *DescribeScheduledInstanceAvailabilityInput

SetFirstSlotStartTimeRange sets the FirstSlotStartTimeRange field's value.

func (*DescribeScheduledInstanceAvailabilityInput) SetMaxResults

func (s *DescribeScheduledInstanceAvailabilityInput) SetMaxResults(v int64) *DescribeScheduledInstanceAvailabilityInput

SetMaxResults sets the MaxResults field's value.

func (*DescribeScheduledInstanceAvailabilityInput) SetMaxSlotDurationInHours

func (s *DescribeScheduledInstanceAvailabilityInput) SetMaxSlotDurationInHours(v int64) *DescribeScheduledInstanceAvailabilityInput

SetMaxSlotDurationInHours sets the MaxSlotDurationInHours field's value.

func (*DescribeScheduledInstanceAvailabilityInput) SetMinSlotDurationInHours

func (s *DescribeScheduledInstanceAvailabilityInput) SetMinSlotDurationInHours(v int64) *DescribeScheduledInstanceAvailabilityInput

SetMinSlotDurationInHours sets the MinSlotDurationInHours field's value.

func (*DescribeScheduledInstanceAvailabilityInput) SetNextToken

func (s *DescribeScheduledInstanceAvailabilityInput) SetNextToken(v string) *DescribeScheduledInstanceAvailabilityInput

SetNextToken sets the NextToken field's value.

func (*DescribeScheduledInstanceAvailabilityInput) SetRecurrence

func (s *DescribeScheduledInstanceAvailabilityInput) SetRecurrence(v *ScheduledInstanceRecurrenceRequest) *DescribeScheduledInstanceAvailabilityInput

SetRecurrence sets the Recurrence field's value.

func (DescribeScheduledInstanceAvailabilityInput) String

func (s DescribeScheduledInstanceAvailabilityInput) String() string

String returns the string representation

func (*DescribeScheduledInstanceAvailabilityInput) Validate

func (s *DescribeScheduledInstanceAvailabilityInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeScheduledInstanceAvailabilityOutput

Contains the output of DescribeScheduledInstanceAvailability. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeScheduledInstanceAvailabilityResult

type DescribeScheduledInstanceAvailabilityOutput struct {

    // The token required to retrieve the next set of results. This value is null
    // when there are no more results to return.
    NextToken *string `locationName:"nextToken" type:"string"`

    // Information about the available Scheduled Instances.
    ScheduledInstanceAvailabilitySet []*ScheduledInstanceAvailability `locationName:"scheduledInstanceAvailabilitySet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeScheduledInstanceAvailabilityOutput) GoString

func (s DescribeScheduledInstanceAvailabilityOutput) GoString() string

GoString returns the string representation

func (*DescribeScheduledInstanceAvailabilityOutput) SetNextToken

func (s *DescribeScheduledInstanceAvailabilityOutput) SetNextToken(v string) *DescribeScheduledInstanceAvailabilityOutput

SetNextToken sets the NextToken field's value.

func (*DescribeScheduledInstanceAvailabilityOutput) SetScheduledInstanceAvailabilitySet

func (s *DescribeScheduledInstanceAvailabilityOutput) SetScheduledInstanceAvailabilitySet(v []*ScheduledInstanceAvailability) *DescribeScheduledInstanceAvailabilityOutput

SetScheduledInstanceAvailabilitySet sets the ScheduledInstanceAvailabilitySet field's value.

func (DescribeScheduledInstanceAvailabilityOutput) String

func (s DescribeScheduledInstanceAvailabilityOutput) String() string

String returns the string representation

type DescribeScheduledInstancesInput

Contains the parameters for DescribeScheduledInstances. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeScheduledInstancesRequest

type DescribeScheduledInstancesInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `type:"boolean"`

    // One or more filters.
    //
    //    * availability-zone - The Availability Zone (for example, us-west-2a).
    //
    //    * instance-type - The instance type (for example, c4.large).
    //
    //    * network-platform - The network platform (EC2-Classic or EC2-VPC).
    //
    //    * platform - The platform (Linux/UNIX or Windows).
    Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"`

    // The maximum number of results to return in a single call. This value can
    // be between 5 and 300. The default value is 100. To retrieve the remaining
    // results, make another call with the returned NextToken value.
    MaxResults *int64 `type:"integer"`

    // The token for the next set of results.
    NextToken *string `type:"string"`

    // One or more Scheduled Instance IDs.
    ScheduledInstanceIds []*string `locationName:"ScheduledInstanceId" locationNameList:"ScheduledInstanceId" type:"list"`

    // The time period for the first schedule to start.
    SlotStartTimeRange *SlotStartTimeRangeRequest `type:"structure"`
    // contains filtered or unexported fields
}

func (DescribeScheduledInstancesInput) GoString

func (s DescribeScheduledInstancesInput) GoString() string

GoString returns the string representation

func (*DescribeScheduledInstancesInput) SetDryRun

func (s *DescribeScheduledInstancesInput) SetDryRun(v bool) *DescribeScheduledInstancesInput

SetDryRun sets the DryRun field's value.

func (*DescribeScheduledInstancesInput) SetFilters

func (s *DescribeScheduledInstancesInput) SetFilters(v []*Filter) *DescribeScheduledInstancesInput

SetFilters sets the Filters field's value.

func (*DescribeScheduledInstancesInput) SetMaxResults

func (s *DescribeScheduledInstancesInput) SetMaxResults(v int64) *DescribeScheduledInstancesInput

SetMaxResults sets the MaxResults field's value.

func (*DescribeScheduledInstancesInput) SetNextToken

func (s *DescribeScheduledInstancesInput) SetNextToken(v string) *DescribeScheduledInstancesInput

SetNextToken sets the NextToken field's value.

func (*DescribeScheduledInstancesInput) SetScheduledInstanceIds

func (s *DescribeScheduledInstancesInput) SetScheduledInstanceIds(v []*string) *DescribeScheduledInstancesInput

SetScheduledInstanceIds sets the ScheduledInstanceIds field's value.

func (*DescribeScheduledInstancesInput) SetSlotStartTimeRange

func (s *DescribeScheduledInstancesInput) SetSlotStartTimeRange(v *SlotStartTimeRangeRequest) *DescribeScheduledInstancesInput

SetSlotStartTimeRange sets the SlotStartTimeRange field's value.

func (DescribeScheduledInstancesInput) String

func (s DescribeScheduledInstancesInput) String() string

String returns the string representation

type DescribeScheduledInstancesOutput

Contains the output of DescribeScheduledInstances. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeScheduledInstancesResult

type DescribeScheduledInstancesOutput struct {

    // The token required to retrieve the next set of results. This value is null
    // when there are no more results to return.
    NextToken *string `locationName:"nextToken" type:"string"`

    // Information about the Scheduled Instances.
    ScheduledInstanceSet []*ScheduledInstance `locationName:"scheduledInstanceSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeScheduledInstancesOutput) GoString

func (s DescribeScheduledInstancesOutput) GoString() string

GoString returns the string representation

func (*DescribeScheduledInstancesOutput) SetNextToken

func (s *DescribeScheduledInstancesOutput) SetNextToken(v string) *DescribeScheduledInstancesOutput

SetNextToken sets the NextToken field's value.

func (*DescribeScheduledInstancesOutput) SetScheduledInstanceSet

func (s *DescribeScheduledInstancesOutput) SetScheduledInstanceSet(v []*ScheduledInstance) *DescribeScheduledInstancesOutput

SetScheduledInstanceSet sets the ScheduledInstanceSet field's value.

func (DescribeScheduledInstancesOutput) String

func (s DescribeScheduledInstancesOutput) String() string

String returns the string representation

type DescribeSecurityGroupReferencesInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSecurityGroupReferencesRequest

type DescribeSecurityGroupReferencesInput struct {

    // Checks whether you have the required permissions for the operation, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `type:"boolean"`

    // One or more security group IDs in your account.
    //
    // GroupId is a required field
    GroupId []*string `locationNameList:"item" type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (DescribeSecurityGroupReferencesInput) GoString

func (s DescribeSecurityGroupReferencesInput) GoString() string

GoString returns the string representation

func (*DescribeSecurityGroupReferencesInput) SetDryRun

func (s *DescribeSecurityGroupReferencesInput) SetDryRun(v bool) *DescribeSecurityGroupReferencesInput

SetDryRun sets the DryRun field's value.

func (*DescribeSecurityGroupReferencesInput) SetGroupId

func (s *DescribeSecurityGroupReferencesInput) SetGroupId(v []*string) *DescribeSecurityGroupReferencesInput

SetGroupId sets the GroupId field's value.

func (DescribeSecurityGroupReferencesInput) String

func (s DescribeSecurityGroupReferencesInput) String() string

String returns the string representation

func (*DescribeSecurityGroupReferencesInput) Validate

func (s *DescribeSecurityGroupReferencesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeSecurityGroupReferencesOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSecurityGroupReferencesResult

type DescribeSecurityGroupReferencesOutput struct {

    // Information about the VPCs with the referencing security groups.
    SecurityGroupReferenceSet []*SecurityGroupReference `locationName:"securityGroupReferenceSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeSecurityGroupReferencesOutput) GoString

func (s DescribeSecurityGroupReferencesOutput) GoString() string

GoString returns the string representation

func (*DescribeSecurityGroupReferencesOutput) SetSecurityGroupReferenceSet

func (s *DescribeSecurityGroupReferencesOutput) SetSecurityGroupReferenceSet(v []*SecurityGroupReference) *DescribeSecurityGroupReferencesOutput

SetSecurityGroupReferenceSet sets the SecurityGroupReferenceSet field's value.

func (DescribeSecurityGroupReferencesOutput) String

func (s DescribeSecurityGroupReferencesOutput) String() string

String returns the string representation

type DescribeSecurityGroupsInput

Contains the parameters for DescribeSecurityGroups. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSecurityGroupsRequest

type DescribeSecurityGroupsInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // One or more filters. If using multiple filters for rules, the results include
    // security groups for which any combination of rules - not necessarily a single
    // rule - match all filters.
    //
    //    * description - The description of the security group.
    //
    //    * egress.ip-permission.prefix-list-id - The ID (prefix) of the AWS service
    //    to which the security group allows access.
    //
    //    * group-id - The ID of the security group.
    //
    //    * group-name - The name of the security group.
    //
    //    * ip-permission.cidr - An IPv4 CIDR range that has been granted permission
    //    in a security group rule.
    //
    //    * ip-permission.from-port - The start of port range for the TCP and UDP
    //    protocols, or an ICMP type number.
    //
    //    * ip-permission.group-id - The ID of a security group that has been granted
    //    permission.
    //
    //    * ip-permission.group-name - The name of a security group that has been
    //    granted permission.
    //
    //    * ip-permission.ipv6-cidr - An IPv6 CIDR range that has been granted permission
    //    in a security group rule.
    //
    //    * ip-permission.protocol - The IP protocol for the permission (tcp | udp
    //    | icmp or a protocol number).
    //
    //    * ip-permission.to-port - The end of port range for the TCP and UDP protocols,
    //    or an ICMP code.
    //
    //    * ip-permission.user-id - The ID of an AWS account that has been granted
    //    permission.
    //
    //    * owner-id - The AWS account ID of the owner of the security group.
    //
    //    * tag-key - The key of a tag assigned to the security group.
    //
    //    * tag-value - The value of a tag assigned to the security group.
    //
    //    * vpc-id - The ID of the VPC specified when the security group was created.
    Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"`

    // One or more security group IDs. Required for security groups in a nondefault
    // VPC.
    //
    // Default: Describes all your security groups.
    GroupIds []*string `locationName:"GroupId" locationNameList:"groupId" type:"list"`

    // [EC2-Classic and default VPC only] One or more security group names. You
    // can specify either the security group name or the security group ID. For
    // security groups in a nondefault VPC, use the group-name filter to describe
    // security groups by name.
    //
    // Default: Describes all your security groups.
    GroupNames []*string `locationName:"GroupName" locationNameList:"GroupName" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeSecurityGroupsInput) GoString

func (s DescribeSecurityGroupsInput) GoString() string

GoString returns the string representation

func (*DescribeSecurityGroupsInput) SetDryRun

func (s *DescribeSecurityGroupsInput) SetDryRun(v bool) *DescribeSecurityGroupsInput

SetDryRun sets the DryRun field's value.

func (*DescribeSecurityGroupsInput) SetFilters

func (s *DescribeSecurityGroupsInput) SetFilters(v []*Filter) *DescribeSecurityGroupsInput

SetFilters sets the Filters field's value.

func (*DescribeSecurityGroupsInput) SetGroupIds

func (s *DescribeSecurityGroupsInput) SetGroupIds(v []*string) *DescribeSecurityGroupsInput

SetGroupIds sets the GroupIds field's value.

func (*DescribeSecurityGroupsInput) SetGroupNames

func (s *DescribeSecurityGroupsInput) SetGroupNames(v []*string) *DescribeSecurityGroupsInput

SetGroupNames sets the GroupNames field's value.

func (DescribeSecurityGroupsInput) String

func (s DescribeSecurityGroupsInput) String() string

String returns the string representation

type DescribeSecurityGroupsOutput

Contains the output of DescribeSecurityGroups. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSecurityGroupsResult

type DescribeSecurityGroupsOutput struct {

    // Information about one or more security groups.
    SecurityGroups []*SecurityGroup `locationName:"securityGroupInfo" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeSecurityGroupsOutput) GoString

func (s DescribeSecurityGroupsOutput) GoString() string

GoString returns the string representation

func (*DescribeSecurityGroupsOutput) SetSecurityGroups

func (s *DescribeSecurityGroupsOutput) SetSecurityGroups(v []*SecurityGroup) *DescribeSecurityGroupsOutput

SetSecurityGroups sets the SecurityGroups field's value.

func (DescribeSecurityGroupsOutput) String

func (s DescribeSecurityGroupsOutput) String() string

String returns the string representation

type DescribeSnapshotAttributeInput

Contains the parameters for DescribeSnapshotAttribute. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSnapshotAttributeRequest

type DescribeSnapshotAttributeInput struct {

    // The snapshot attribute you would like to view.
    //
    // Attribute is a required field
    Attribute *string `type:"string" required:"true" enum:"SnapshotAttributeName"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the EBS snapshot.
    //
    // SnapshotId is a required field
    SnapshotId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DescribeSnapshotAttributeInput) GoString

func (s DescribeSnapshotAttributeInput) GoString() string

GoString returns the string representation

func (*DescribeSnapshotAttributeInput) SetAttribute

func (s *DescribeSnapshotAttributeInput) SetAttribute(v string) *DescribeSnapshotAttributeInput

SetAttribute sets the Attribute field's value.

func (*DescribeSnapshotAttributeInput) SetDryRun

func (s *DescribeSnapshotAttributeInput) SetDryRun(v bool) *DescribeSnapshotAttributeInput

SetDryRun sets the DryRun field's value.

func (*DescribeSnapshotAttributeInput) SetSnapshotId

func (s *DescribeSnapshotAttributeInput) SetSnapshotId(v string) *DescribeSnapshotAttributeInput

SetSnapshotId sets the SnapshotId field's value.

func (DescribeSnapshotAttributeInput) String

func (s DescribeSnapshotAttributeInput) String() string

String returns the string representation

func (*DescribeSnapshotAttributeInput) Validate

func (s *DescribeSnapshotAttributeInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeSnapshotAttributeOutput

Contains the output of DescribeSnapshotAttribute. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSnapshotAttributeResult

type DescribeSnapshotAttributeOutput struct {

    // A list of permissions for creating volumes from the snapshot.
    CreateVolumePermissions []*CreateVolumePermission `locationName:"createVolumePermission" locationNameList:"item" type:"list"`

    // A list of product codes.
    ProductCodes []*ProductCode `locationName:"productCodes" locationNameList:"item" type:"list"`

    // The ID of the EBS snapshot.
    SnapshotId *string `locationName:"snapshotId" type:"string"`
    // contains filtered or unexported fields
}

func (DescribeSnapshotAttributeOutput) GoString

func (s DescribeSnapshotAttributeOutput) GoString() string

GoString returns the string representation

func (*DescribeSnapshotAttributeOutput) SetCreateVolumePermissions

func (s *DescribeSnapshotAttributeOutput) SetCreateVolumePermissions(v []*CreateVolumePermission) *DescribeSnapshotAttributeOutput

SetCreateVolumePermissions sets the CreateVolumePermissions field's value.

func (*DescribeSnapshotAttributeOutput) SetProductCodes

func (s *DescribeSnapshotAttributeOutput) SetProductCodes(v []*ProductCode) *DescribeSnapshotAttributeOutput

SetProductCodes sets the ProductCodes field's value.

func (*DescribeSnapshotAttributeOutput) SetSnapshotId

func (s *DescribeSnapshotAttributeOutput) SetSnapshotId(v string) *DescribeSnapshotAttributeOutput

SetSnapshotId sets the SnapshotId field's value.

func (DescribeSnapshotAttributeOutput) String

func (s DescribeSnapshotAttributeOutput) String() string

String returns the string representation

type DescribeSnapshotsInput

Contains the parameters for DescribeSnapshots. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSnapshotsRequest

type DescribeSnapshotsInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // One or more filters.
    //
    //    * description - A description of the snapshot.
    //
    //    * owner-alias - Value from an Amazon-maintained list (amazon | aws-marketplace
    //    | microsoft) of snapshot owners. Not to be confused with the user-configured
    //    AWS account alias, which is set from the IAM consolew.
    //
    //    * owner-id - The ID of the AWS account that owns the snapshot.
    //
    //    * progress - The progress of the snapshot, as a percentage (for example,
    //    80%).
    //
    //    * snapshot-id - The snapshot ID.
    //
    //    * start-time - The time stamp when the snapshot was initiated.
    //
    //    * status - The status of the snapshot (pending | completed | error).
    //
    //    * tag:key=value - The key/value combination of a tag assigned to the resource.
    //    Specify the key of the tag in the filter name and the value of the tag
    //    in the filter value. For example, for the tag Purpose=X, specify tag:Purpose
    //    for the filter name and X for the filter value.
    //
    //    * tag-key - The key of a tag assigned to the resource. This filter is
    //    independent of the tag-value filter. For example, if you use both the
    //    filter "tag-key=Purpose" and the filter "tag-value=X", you get any resources
    //    assigned both the tag key Purpose (regardless of what the tag's value
    //    is), and the tag value X (regardless of what the tag's key is). If you
    //    want to list only resources where Purpose is X, see the tag:key=value
    //    filter.
    //
    //    * tag-value - The value of a tag assigned to the resource. This filter
    //    is independent of the tag-key filter.
    //
    //    * volume-id - The ID of the volume the snapshot is for.
    //
    //    * volume-size - The size of the volume, in GiB.
    Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"`

    // The maximum number of snapshot results returned by DescribeSnapshots in paginated
    // output. When this parameter is used, DescribeSnapshots only returns MaxResults
    // results in a single page along with a NextToken response element. The remaining
    // results of the initial request can be seen by sending another DescribeSnapshots
    // request with the returned NextToken value. This value can be between 5 and
    // 1000; if MaxResults is given a value larger than 1000, only 1000 results
    // are returned. If this parameter is not used, then DescribeSnapshots returns
    // all results. You cannot specify this parameter and the snapshot IDs parameter
    // in the same request.
    MaxResults *int64 `type:"integer"`

    // The NextToken value returned from a previous paginated DescribeSnapshots
    // request where MaxResults was used and the results exceeded the value of that
    // parameter. Pagination continues from the end of the previous results that
    // returned the NextToken value. This value is null when there are no more results
    // to return.
    NextToken *string `type:"string"`

    // Returns the snapshots owned by the specified owner. Multiple owners can be
    // specified.
    OwnerIds []*string `locationName:"Owner" locationNameList:"Owner" type:"list"`

    // One or more AWS accounts IDs that can create volumes from the snapshot.
    RestorableByUserIds []*string `locationName:"RestorableBy" type:"list"`

    // One or more snapshot IDs.
    //
    // Default: Describes snapshots for which you have launch permissions.
    SnapshotIds []*string `locationName:"SnapshotId" locationNameList:"SnapshotId" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeSnapshotsInput) GoString

func (s DescribeSnapshotsInput) GoString() string

GoString returns the string representation

func (*DescribeSnapshotsInput) SetDryRun

func (s *DescribeSnapshotsInput) SetDryRun(v bool) *DescribeSnapshotsInput

SetDryRun sets the DryRun field's value.

func (*DescribeSnapshotsInput) SetFilters

func (s *DescribeSnapshotsInput) SetFilters(v []*Filter) *DescribeSnapshotsInput

SetFilters sets the Filters field's value.

func (*DescribeSnapshotsInput) SetMaxResults

func (s *DescribeSnapshotsInput) SetMaxResults(v int64) *DescribeSnapshotsInput

SetMaxResults sets the MaxResults field's value.

func (*DescribeSnapshotsInput) SetNextToken

func (s *DescribeSnapshotsInput) SetNextToken(v string) *DescribeSnapshotsInput

SetNextToken sets the NextToken field's value.

func (*DescribeSnapshotsInput) SetOwnerIds

func (s *DescribeSnapshotsInput) SetOwnerIds(v []*string) *DescribeSnapshotsInput

SetOwnerIds sets the OwnerIds field's value.

func (*DescribeSnapshotsInput) SetRestorableByUserIds

func (s *DescribeSnapshotsInput) SetRestorableByUserIds(v []*string) *DescribeSnapshotsInput

SetRestorableByUserIds sets the RestorableByUserIds field's value.

func (*DescribeSnapshotsInput) SetSnapshotIds

func (s *DescribeSnapshotsInput) SetSnapshotIds(v []*string) *DescribeSnapshotsInput

SetSnapshotIds sets the SnapshotIds field's value.

func (DescribeSnapshotsInput) String

func (s DescribeSnapshotsInput) String() string

String returns the string representation

type DescribeSnapshotsOutput

Contains the output of DescribeSnapshots. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSnapshotsResult

type DescribeSnapshotsOutput struct {

    // The NextToken value to include in a future DescribeSnapshots request. When
    // the results of a DescribeSnapshots request exceed MaxResults, this value
    // can be used to retrieve the next page of results. This value is null when
    // there are no more results to return.
    NextToken *string `locationName:"nextToken" type:"string"`

    // Information about the snapshots.
    Snapshots []*Snapshot `locationName:"snapshotSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeSnapshotsOutput) GoString

func (s DescribeSnapshotsOutput) GoString() string

GoString returns the string representation

func (*DescribeSnapshotsOutput) SetNextToken

func (s *DescribeSnapshotsOutput) SetNextToken(v string) *DescribeSnapshotsOutput

SetNextToken sets the NextToken field's value.

func (*DescribeSnapshotsOutput) SetSnapshots

func (s *DescribeSnapshotsOutput) SetSnapshots(v []*Snapshot) *DescribeSnapshotsOutput

SetSnapshots sets the Snapshots field's value.

func (DescribeSnapshotsOutput) String

func (s DescribeSnapshotsOutput) String() string

String returns the string representation

type DescribeSpotDatafeedSubscriptionInput

Contains the parameters for DescribeSpotDatafeedSubscription. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSpotDatafeedSubscriptionRequest

type DescribeSpotDatafeedSubscriptionInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`
    // contains filtered or unexported fields
}

func (DescribeSpotDatafeedSubscriptionInput) GoString

func (s DescribeSpotDatafeedSubscriptionInput) GoString() string

GoString returns the string representation

func (*DescribeSpotDatafeedSubscriptionInput) SetDryRun

func (s *DescribeSpotDatafeedSubscriptionInput) SetDryRun(v bool) *DescribeSpotDatafeedSubscriptionInput

SetDryRun sets the DryRun field's value.

func (DescribeSpotDatafeedSubscriptionInput) String

func (s DescribeSpotDatafeedSubscriptionInput) String() string

String returns the string representation

type DescribeSpotDatafeedSubscriptionOutput

Contains the output of DescribeSpotDatafeedSubscription. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSpotDatafeedSubscriptionResult

type DescribeSpotDatafeedSubscriptionOutput struct {

    // The Spot instance data feed subscription.
    SpotDatafeedSubscription *SpotDatafeedSubscription `locationName:"spotDatafeedSubscription" type:"structure"`
    // contains filtered or unexported fields
}

func (DescribeSpotDatafeedSubscriptionOutput) GoString

func (s DescribeSpotDatafeedSubscriptionOutput) GoString() string

GoString returns the string representation

func (*DescribeSpotDatafeedSubscriptionOutput) SetSpotDatafeedSubscription

func (s *DescribeSpotDatafeedSubscriptionOutput) SetSpotDatafeedSubscription(v *SpotDatafeedSubscription) *DescribeSpotDatafeedSubscriptionOutput

SetSpotDatafeedSubscription sets the SpotDatafeedSubscription field's value.

func (DescribeSpotDatafeedSubscriptionOutput) String

func (s DescribeSpotDatafeedSubscriptionOutput) String() string

String returns the string representation

type DescribeSpotFleetInstancesInput

Contains the parameters for DescribeSpotFleetInstances. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSpotFleetInstancesRequest

type DescribeSpotFleetInstancesInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The maximum number of results to return in a single call. Specify a value
    // between 1 and 1000. The default value is 1000. To retrieve the remaining
    // results, make another call with the returned NextToken value.
    MaxResults *int64 `locationName:"maxResults" type:"integer"`

    // The token for the next set of results.
    NextToken *string `locationName:"nextToken" type:"string"`

    // The ID of the Spot fleet request.
    //
    // SpotFleetRequestId is a required field
    SpotFleetRequestId *string `locationName:"spotFleetRequestId" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DescribeSpotFleetInstancesInput) GoString

func (s DescribeSpotFleetInstancesInput) GoString() string

GoString returns the string representation

func (*DescribeSpotFleetInstancesInput) SetDryRun

func (s *DescribeSpotFleetInstancesInput) SetDryRun(v bool) *DescribeSpotFleetInstancesInput

SetDryRun sets the DryRun field's value.

func (*DescribeSpotFleetInstancesInput) SetMaxResults

func (s *DescribeSpotFleetInstancesInput) SetMaxResults(v int64) *DescribeSpotFleetInstancesInput

SetMaxResults sets the MaxResults field's value.

func (*DescribeSpotFleetInstancesInput) SetNextToken

func (s *DescribeSpotFleetInstancesInput) SetNextToken(v string) *DescribeSpotFleetInstancesInput

SetNextToken sets the NextToken field's value.

func (*DescribeSpotFleetInstancesInput) SetSpotFleetRequestId

func (s *DescribeSpotFleetInstancesInput) SetSpotFleetRequestId(v string) *DescribeSpotFleetInstancesInput

SetSpotFleetRequestId sets the SpotFleetRequestId field's value.

func (DescribeSpotFleetInstancesInput) String

func (s DescribeSpotFleetInstancesInput) String() string

String returns the string representation

func (*DescribeSpotFleetInstancesInput) Validate

func (s *DescribeSpotFleetInstancesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeSpotFleetInstancesOutput

Contains the output of DescribeSpotFleetInstances. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSpotFleetInstancesResponse

type DescribeSpotFleetInstancesOutput struct {

    // The running instances. Note that this list is refreshed periodically and
    // might be out of date.
    //
    // ActiveInstances is a required field
    ActiveInstances []*ActiveInstance `locationName:"activeInstanceSet" locationNameList:"item" type:"list" required:"true"`

    // The token required to retrieve the next set of results. This value is null
    // when there are no more results to return.
    NextToken *string `locationName:"nextToken" type:"string"`

    // The ID of the Spot fleet request.
    //
    // SpotFleetRequestId is a required field
    SpotFleetRequestId *string `locationName:"spotFleetRequestId" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DescribeSpotFleetInstancesOutput) GoString

func (s DescribeSpotFleetInstancesOutput) GoString() string

GoString returns the string representation

func (*DescribeSpotFleetInstancesOutput) SetActiveInstances

func (s *DescribeSpotFleetInstancesOutput) SetActiveInstances(v []*ActiveInstance) *DescribeSpotFleetInstancesOutput

SetActiveInstances sets the ActiveInstances field's value.

func (*DescribeSpotFleetInstancesOutput) SetNextToken

func (s *DescribeSpotFleetInstancesOutput) SetNextToken(v string) *DescribeSpotFleetInstancesOutput

SetNextToken sets the NextToken field's value.

func (*DescribeSpotFleetInstancesOutput) SetSpotFleetRequestId

func (s *DescribeSpotFleetInstancesOutput) SetSpotFleetRequestId(v string) *DescribeSpotFleetInstancesOutput

SetSpotFleetRequestId sets the SpotFleetRequestId field's value.

func (DescribeSpotFleetInstancesOutput) String

func (s DescribeSpotFleetInstancesOutput) String() string

String returns the string representation

type DescribeSpotFleetRequestHistoryInput

Contains the parameters for DescribeSpotFleetRequestHistory. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSpotFleetRequestHistoryRequest

type DescribeSpotFleetRequestHistoryInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The type of events to describe. By default, all events are described.
    EventType *string `locationName:"eventType" type:"string" enum:"EventType"`

    // The maximum number of results to return in a single call. Specify a value
    // between 1 and 1000. The default value is 1000. To retrieve the remaining
    // results, make another call with the returned NextToken value.
    MaxResults *int64 `locationName:"maxResults" type:"integer"`

    // The token for the next set of results.
    NextToken *string `locationName:"nextToken" type:"string"`

    // The ID of the Spot fleet request.
    //
    // SpotFleetRequestId is a required field
    SpotFleetRequestId *string `locationName:"spotFleetRequestId" type:"string" required:"true"`

    // The starting date and time for the events, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ).
    //
    // StartTime is a required field
    StartTime *time.Time `locationName:"startTime" type:"timestamp" timestampFormat:"iso8601" required:"true"`
    // contains filtered or unexported fields
}

func (DescribeSpotFleetRequestHistoryInput) GoString

func (s DescribeSpotFleetRequestHistoryInput) GoString() string

GoString returns the string representation

func (*DescribeSpotFleetRequestHistoryInput) SetDryRun

func (s *DescribeSpotFleetRequestHistoryInput) SetDryRun(v bool) *DescribeSpotFleetRequestHistoryInput

SetDryRun sets the DryRun field's value.

func (*DescribeSpotFleetRequestHistoryInput) SetEventType

func (s *DescribeSpotFleetRequestHistoryInput) SetEventType(v string) *DescribeSpotFleetRequestHistoryInput

SetEventType sets the EventType field's value.

func (*DescribeSpotFleetRequestHistoryInput) SetMaxResults

func (s *DescribeSpotFleetRequestHistoryInput) SetMaxResults(v int64) *DescribeSpotFleetRequestHistoryInput

SetMaxResults sets the MaxResults field's value.

func (*DescribeSpotFleetRequestHistoryInput) SetNextToken

func (s *DescribeSpotFleetRequestHistoryInput) SetNextToken(v string) *DescribeSpotFleetRequestHistoryInput

SetNextToken sets the NextToken field's value.

func (*DescribeSpotFleetRequestHistoryInput) SetSpotFleetRequestId

func (s *DescribeSpotFleetRequestHistoryInput) SetSpotFleetRequestId(v string) *DescribeSpotFleetRequestHistoryInput

SetSpotFleetRequestId sets the SpotFleetRequestId field's value.

func (*DescribeSpotFleetRequestHistoryInput) SetStartTime

func (s *DescribeSpotFleetRequestHistoryInput) SetStartTime(v time.Time) *DescribeSpotFleetRequestHistoryInput

SetStartTime sets the StartTime field's value.

func (DescribeSpotFleetRequestHistoryInput) String

func (s DescribeSpotFleetRequestHistoryInput) String() string

String returns the string representation

func (*DescribeSpotFleetRequestHistoryInput) Validate

func (s *DescribeSpotFleetRequestHistoryInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeSpotFleetRequestHistoryOutput

Contains the output of DescribeSpotFleetRequestHistory. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSpotFleetRequestHistoryResponse

type DescribeSpotFleetRequestHistoryOutput struct {

    // Information about the events in the history of the Spot fleet request.
    //
    // HistoryRecords is a required field
    HistoryRecords []*HistoryRecord `locationName:"historyRecordSet" locationNameList:"item" type:"list" required:"true"`

    // The last date and time for the events, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ).
    // All records up to this time were retrieved.
    //
    // If nextToken indicates that there are more results, this value is not present.
    //
    // LastEvaluatedTime is a required field
    LastEvaluatedTime *time.Time `locationName:"lastEvaluatedTime" type:"timestamp" timestampFormat:"iso8601" required:"true"`

    // The token required to retrieve the next set of results. This value is null
    // when there are no more results to return.
    NextToken *string `locationName:"nextToken" type:"string"`

    // The ID of the Spot fleet request.
    //
    // SpotFleetRequestId is a required field
    SpotFleetRequestId *string `locationName:"spotFleetRequestId" type:"string" required:"true"`

    // The starting date and time for the events, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ).
    //
    // StartTime is a required field
    StartTime *time.Time `locationName:"startTime" type:"timestamp" timestampFormat:"iso8601" required:"true"`
    // contains filtered or unexported fields
}

func (DescribeSpotFleetRequestHistoryOutput) GoString

func (s DescribeSpotFleetRequestHistoryOutput) GoString() string

GoString returns the string representation

func (*DescribeSpotFleetRequestHistoryOutput) SetHistoryRecords

func (s *DescribeSpotFleetRequestHistoryOutput) SetHistoryRecords(v []*HistoryRecord) *DescribeSpotFleetRequestHistoryOutput

SetHistoryRecords sets the HistoryRecords field's value.

func (*DescribeSpotFleetRequestHistoryOutput) SetLastEvaluatedTime

func (s *DescribeSpotFleetRequestHistoryOutput) SetLastEvaluatedTime(v time.Time) *DescribeSpotFleetRequestHistoryOutput

SetLastEvaluatedTime sets the LastEvaluatedTime field's value.

func (*DescribeSpotFleetRequestHistoryOutput) SetNextToken

func (s *DescribeSpotFleetRequestHistoryOutput) SetNextToken(v string) *DescribeSpotFleetRequestHistoryOutput

SetNextToken sets the NextToken field's value.

func (*DescribeSpotFleetRequestHistoryOutput) SetSpotFleetRequestId

func (s *DescribeSpotFleetRequestHistoryOutput) SetSpotFleetRequestId(v string) *DescribeSpotFleetRequestHistoryOutput

SetSpotFleetRequestId sets the SpotFleetRequestId field's value.

func (*DescribeSpotFleetRequestHistoryOutput) SetStartTime

func (s *DescribeSpotFleetRequestHistoryOutput) SetStartTime(v time.Time) *DescribeSpotFleetRequestHistoryOutput

SetStartTime sets the StartTime field's value.

func (DescribeSpotFleetRequestHistoryOutput) String

func (s DescribeSpotFleetRequestHistoryOutput) String() string

String returns the string representation

type DescribeSpotFleetRequestsInput

Contains the parameters for DescribeSpotFleetRequests. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSpotFleetRequestsRequest

type DescribeSpotFleetRequestsInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The maximum number of results to return in a single call. Specify a value
    // between 1 and 1000. The default value is 1000. To retrieve the remaining
    // results, make another call with the returned NextToken value.
    MaxResults *int64 `locationName:"maxResults" type:"integer"`

    // The token for the next set of results.
    NextToken *string `locationName:"nextToken" type:"string"`

    // The IDs of the Spot fleet requests.
    SpotFleetRequestIds []*string `locationName:"spotFleetRequestId" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeSpotFleetRequestsInput) GoString

func (s DescribeSpotFleetRequestsInput) GoString() string

GoString returns the string representation

func (*DescribeSpotFleetRequestsInput) SetDryRun

func (s *DescribeSpotFleetRequestsInput) SetDryRun(v bool) *DescribeSpotFleetRequestsInput

SetDryRun sets the DryRun field's value.

func (*DescribeSpotFleetRequestsInput) SetMaxResults

func (s *DescribeSpotFleetRequestsInput) SetMaxResults(v int64) *DescribeSpotFleetRequestsInput

SetMaxResults sets the MaxResults field's value.

func (*DescribeSpotFleetRequestsInput) SetNextToken

func (s *DescribeSpotFleetRequestsInput) SetNextToken(v string) *DescribeSpotFleetRequestsInput

SetNextToken sets the NextToken field's value.

func (*DescribeSpotFleetRequestsInput) SetSpotFleetRequestIds

func (s *DescribeSpotFleetRequestsInput) SetSpotFleetRequestIds(v []*string) *DescribeSpotFleetRequestsInput

SetSpotFleetRequestIds sets the SpotFleetRequestIds field's value.

func (DescribeSpotFleetRequestsInput) String

func (s DescribeSpotFleetRequestsInput) String() string

String returns the string representation

type DescribeSpotFleetRequestsOutput

Contains the output of DescribeSpotFleetRequests. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSpotFleetRequestsResponse

type DescribeSpotFleetRequestsOutput struct {

    // The token required to retrieve the next set of results. This value is null
    // when there are no more results to return.
    NextToken *string `locationName:"nextToken" type:"string"`

    // Information about the configuration of your Spot fleet.
    //
    // SpotFleetRequestConfigs is a required field
    SpotFleetRequestConfigs []*SpotFleetRequestConfig `locationName:"spotFleetRequestConfigSet" locationNameList:"item" type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (DescribeSpotFleetRequestsOutput) GoString

func (s DescribeSpotFleetRequestsOutput) GoString() string

GoString returns the string representation

func (*DescribeSpotFleetRequestsOutput) SetNextToken

func (s *DescribeSpotFleetRequestsOutput) SetNextToken(v string) *DescribeSpotFleetRequestsOutput

SetNextToken sets the NextToken field's value.

func (*DescribeSpotFleetRequestsOutput) SetSpotFleetRequestConfigs

func (s *DescribeSpotFleetRequestsOutput) SetSpotFleetRequestConfigs(v []*SpotFleetRequestConfig) *DescribeSpotFleetRequestsOutput

SetSpotFleetRequestConfigs sets the SpotFleetRequestConfigs field's value.

func (DescribeSpotFleetRequestsOutput) String

func (s DescribeSpotFleetRequestsOutput) String() string

String returns the string representation

type DescribeSpotInstanceRequestsInput

Contains the parameters for DescribeSpotInstanceRequests. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSpotInstanceRequestsRequest

type DescribeSpotInstanceRequestsInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // One or more filters.
    //
    //    * availability-zone-group - The Availability Zone group.
    //
    //    * create-time - The time stamp when the Spot instance request was created.
    //
    //    * fault-code - The fault code related to the request.
    //
    //    * fault-message - The fault message related to the request.
    //
    //    * instance-id - The ID of the instance that fulfilled the request.
    //
    //    * launch-group - The Spot instance launch group.
    //
    //    * launch.block-device-mapping.delete-on-termination - Indicates whether
    //    the Amazon EBS volume is deleted on instance termination.
    //
    //    * launch.block-device-mapping.device-name - The device name for the Amazon
    //    EBS volume (for example, /dev/sdh).
    //
    //    * launch.block-device-mapping.snapshot-id - The ID of the snapshot used
    //    for the Amazon EBS volume.
    //
    //    * launch.block-device-mapping.volume-size - The size of the Amazon EBS
    //    volume, in GiB.
    //
    //    * launch.block-device-mapping.volume-type - The type of the Amazon EBS
    //    volume: gp2 for General Purpose SSD, io1 for Provisioned IOPS SSD, st1
    //    for Throughput Optimized HDD, sc1for Cold HDD, or standard for Magnetic.
    //
    //    * launch.group-id - The security group for the instance.
    //
    //    * launch.image-id - The ID of the AMI.
    //
    //    * launch.instance-type - The type of instance (for example, m3.medium).
    //
    //    * launch.kernel-id - The kernel ID.
    //
    //    * launch.key-name - The name of the key pair the instance launched with.
    //
    //    * launch.monitoring-enabled - Whether monitoring is enabled for the Spot
    //    instance.
    //
    //    * launch.ramdisk-id - The RAM disk ID.
    //
    //    * network-interface.network-interface-id - The ID of the network interface.
    //
    //    * network-interface.device-index - The index of the device for the network
    //    interface attachment on the instance.
    //
    //    * network-interface.subnet-id - The ID of the subnet for the instance.
    //
    //    * network-interface.description - A description of the network interface.
    //
    //    * network-interface.private-ip-address - The primary private IP address
    //    of the network interface.
    //
    //    * network-interface.delete-on-termination - Indicates whether the network
    //    interface is deleted when the instance is terminated.
    //
    //    * network-interface.group-id - The ID of the security group associated
    //    with the network interface.
    //
    //    * network-interface.group-name - The name of the security group associated
    //    with the network interface.
    //
    //    * network-interface.addresses.primary - Indicates whether the IP address
    //    is the primary private IP address.
    //
    //    * product-description - The product description associated with the instance
    //    (Linux/UNIX | Windows).
    //
    //    * spot-instance-request-id - The Spot instance request ID.
    //
    //    * spot-price - The maximum hourly price for any Spot instance launched
    //    to fulfill the request.
    //
    //    * state - The state of the Spot instance request (open | active | closed
    //    | cancelled | failed). Spot bid status information can help you track
    //    your Amazon EC2 Spot instance requests. For more information, see Spot
    //    Bid Status (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-bid-status.html)
    //    in the Amazon Elastic Compute Cloud User Guide.
    //
    //    * status-code - The short code describing the most recent evaluation of
    //    your Spot instance request.
    //
    //    * status-message - The message explaining the status of the Spot instance
    //    request.
    //
    //    * tag:key=value - The key/value combination of a tag assigned to the resource.
    //    Specify the key of the tag in the filter name and the value of the tag
    //    in the filter value. For example, for the tag Purpose=X, specify tag:Purpose
    //    for the filter name and X for the filter value.
    //
    //    * tag-key - The key of a tag assigned to the resource. This filter is
    //    independent of the tag-value filter. For example, if you use both the
    //    filter "tag-key=Purpose" and the filter "tag-value=X", you get any resources
    //    assigned both the tag key Purpose (regardless of what the tag's value
    //    is), and the tag value X (regardless of what the tag's key is). If you
    //    want to list only resources where Purpose is X, see the tag:key=value
    //    filter.
    //
    //    * tag-value - The value of a tag assigned to the resource. This filter
    //    is independent of the tag-key filter.
    //
    //    * type - The type of Spot instance request (one-time | persistent).
    //
    //    * launched-availability-zone - The Availability Zone in which the bid
    //    is launched.
    //
    //    * valid-from - The start date of the request.
    //
    //    * valid-until - The end date of the request.
    Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"`

    // One or more Spot instance request IDs.
    SpotInstanceRequestIds []*string `locationName:"SpotInstanceRequestId" locationNameList:"SpotInstanceRequestId" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeSpotInstanceRequestsInput) GoString

func (s DescribeSpotInstanceRequestsInput) GoString() string

GoString returns the string representation

func (*DescribeSpotInstanceRequestsInput) SetDryRun

func (s *DescribeSpotInstanceRequestsInput) SetDryRun(v bool) *DescribeSpotInstanceRequestsInput

SetDryRun sets the DryRun field's value.

func (*DescribeSpotInstanceRequestsInput) SetFilters

func (s *DescribeSpotInstanceRequestsInput) SetFilters(v []*Filter) *DescribeSpotInstanceRequestsInput

SetFilters sets the Filters field's value.

func (*DescribeSpotInstanceRequestsInput) SetSpotInstanceRequestIds

func (s *DescribeSpotInstanceRequestsInput) SetSpotInstanceRequestIds(v []*string) *DescribeSpotInstanceRequestsInput

SetSpotInstanceRequestIds sets the SpotInstanceRequestIds field's value.

func (DescribeSpotInstanceRequestsInput) String

func (s DescribeSpotInstanceRequestsInput) String() string

String returns the string representation

type DescribeSpotInstanceRequestsOutput

Contains the output of DescribeSpotInstanceRequests. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSpotInstanceRequestsResult

type DescribeSpotInstanceRequestsOutput struct {

    // One or more Spot instance requests.
    SpotInstanceRequests []*SpotInstanceRequest `locationName:"spotInstanceRequestSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeSpotInstanceRequestsOutput) GoString

func (s DescribeSpotInstanceRequestsOutput) GoString() string

GoString returns the string representation

func (*DescribeSpotInstanceRequestsOutput) SetSpotInstanceRequests

func (s *DescribeSpotInstanceRequestsOutput) SetSpotInstanceRequests(v []*SpotInstanceRequest) *DescribeSpotInstanceRequestsOutput

SetSpotInstanceRequests sets the SpotInstanceRequests field's value.

func (DescribeSpotInstanceRequestsOutput) String

func (s DescribeSpotInstanceRequestsOutput) String() string

String returns the string representation

type DescribeSpotPriceHistoryInput

Contains the parameters for DescribeSpotPriceHistory. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSpotPriceHistoryRequest

type DescribeSpotPriceHistoryInput struct {

    // Filters the results by the specified Availability Zone.
    AvailabilityZone *string `locationName:"availabilityZone" type:"string"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The date and time, up to the current date, from which to stop retrieving
    // the price history data, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ).
    EndTime *time.Time `locationName:"endTime" type:"timestamp" timestampFormat:"iso8601"`

    // One or more filters.
    //
    //    * availability-zone - The Availability Zone for which prices should be
    //    returned.
    //
    //    * instance-type - The type of instance (for example, m3.medium).
    //
    //    * product-description - The product description for the Spot price (Linux/UNIX
    //    | SUSE Linux | Windows | Linux/UNIX (Amazon VPC) | SUSE Linux (Amazon
    //    VPC) | Windows (Amazon VPC)).
    //
    //    * spot-price - The Spot price. The value must match exactly (or use wildcards;
    //    greater than or less than comparison is not supported).
    //
    //    * timestamp - The timestamp of the Spot price history, in UTC format (for
    //    example, YYYY-MM-DDTHH:MM:SSZ). You can use wildcards (* and ?). Greater
    //    than or less than comparison is not supported.
    Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"`

    // Filters the results by the specified instance types. Note that T2 and HS1
    // instance types are not supported.
    InstanceTypes []*string `locationName:"InstanceType" type:"list"`

    // The maximum number of results to return in a single call. Specify a value
    // between 1 and 1000. The default value is 1000. To retrieve the remaining
    // results, make another call with the returned NextToken value.
    MaxResults *int64 `locationName:"maxResults" type:"integer"`

    // The token for the next set of results.
    NextToken *string `locationName:"nextToken" type:"string"`

    // Filters the results by the specified basic product descriptions.
    ProductDescriptions []*string `locationName:"ProductDescription" type:"list"`

    // The date and time, up to the past 90 days, from which to start retrieving
    // the price history data, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ).
    StartTime *time.Time `locationName:"startTime" type:"timestamp" timestampFormat:"iso8601"`
    // contains filtered or unexported fields
}

func (DescribeSpotPriceHistoryInput) GoString

func (s DescribeSpotPriceHistoryInput) GoString() string

GoString returns the string representation

func (*DescribeSpotPriceHistoryInput) SetAvailabilityZone

func (s *DescribeSpotPriceHistoryInput) SetAvailabilityZone(v string) *DescribeSpotPriceHistoryInput

SetAvailabilityZone sets the AvailabilityZone field's value.

func (*DescribeSpotPriceHistoryInput) SetDryRun

func (s *DescribeSpotPriceHistoryInput) SetDryRun(v bool) *DescribeSpotPriceHistoryInput

SetDryRun sets the DryRun field's value.

func (*DescribeSpotPriceHistoryInput) SetEndTime

func (s *DescribeSpotPriceHistoryInput) SetEndTime(v time.Time) *DescribeSpotPriceHistoryInput

SetEndTime sets the EndTime field's value.

func (*DescribeSpotPriceHistoryInput) SetFilters

func (s *DescribeSpotPriceHistoryInput) SetFilters(v []*Filter) *DescribeSpotPriceHistoryInput

SetFilters sets the Filters field's value.

func (*DescribeSpotPriceHistoryInput) SetInstanceTypes

func (s *DescribeSpotPriceHistoryInput) SetInstanceTypes(v []*string) *DescribeSpotPriceHistoryInput

SetInstanceTypes sets the InstanceTypes field's value.

func (*DescribeSpotPriceHistoryInput) SetMaxResults

func (s *DescribeSpotPriceHistoryInput) SetMaxResults(v int64) *DescribeSpotPriceHistoryInput

SetMaxResults sets the MaxResults field's value.

func (*DescribeSpotPriceHistoryInput) SetNextToken

func (s *DescribeSpotPriceHistoryInput) SetNextToken(v string) *DescribeSpotPriceHistoryInput

SetNextToken sets the NextToken field's value.

func (*DescribeSpotPriceHistoryInput) SetProductDescriptions

func (s *DescribeSpotPriceHistoryInput) SetProductDescriptions(v []*string) *DescribeSpotPriceHistoryInput

SetProductDescriptions sets the ProductDescriptions field's value.

func (*DescribeSpotPriceHistoryInput) SetStartTime

func (s *DescribeSpotPriceHistoryInput) SetStartTime(v time.Time) *DescribeSpotPriceHistoryInput

SetStartTime sets the StartTime field's value.

func (DescribeSpotPriceHistoryInput) String

func (s DescribeSpotPriceHistoryInput) String() string

String returns the string representation

type DescribeSpotPriceHistoryOutput

Contains the output of DescribeSpotPriceHistory. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSpotPriceHistoryResult

type DescribeSpotPriceHistoryOutput struct {

    // The token required to retrieve the next set of results. This value is null
    // when there are no more results to return.
    NextToken *string `locationName:"nextToken" type:"string"`

    // The historical Spot prices.
    SpotPriceHistory []*SpotPrice `locationName:"spotPriceHistorySet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeSpotPriceHistoryOutput) GoString

func (s DescribeSpotPriceHistoryOutput) GoString() string

GoString returns the string representation

func (*DescribeSpotPriceHistoryOutput) SetNextToken

func (s *DescribeSpotPriceHistoryOutput) SetNextToken(v string) *DescribeSpotPriceHistoryOutput

SetNextToken sets the NextToken field's value.

func (*DescribeSpotPriceHistoryOutput) SetSpotPriceHistory

func (s *DescribeSpotPriceHistoryOutput) SetSpotPriceHistory(v []*SpotPrice) *DescribeSpotPriceHistoryOutput

SetSpotPriceHistory sets the SpotPriceHistory field's value.

func (DescribeSpotPriceHistoryOutput) String

func (s DescribeSpotPriceHistoryOutput) String() string

String returns the string representation

type DescribeStaleSecurityGroupsInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeStaleSecurityGroupsRequest

type DescribeStaleSecurityGroupsInput struct {

    // Checks whether you have the required permissions for the operation, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `type:"boolean"`

    // The maximum number of items to return for this request. The request returns
    // a token that you can specify in a subsequent call to get the next set of
    // results.
    MaxResults *int64 `min:"5" type:"integer"`

    // The token for the next set of items to return. (You received this token from
    // a prior call.)
    NextToken *string `min:"1" type:"string"`

    // The ID of the VPC.
    //
    // VpcId is a required field
    VpcId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DescribeStaleSecurityGroupsInput) GoString

func (s DescribeStaleSecurityGroupsInput) GoString() string

GoString returns the string representation

func (*DescribeStaleSecurityGroupsInput) SetDryRun

func (s *DescribeStaleSecurityGroupsInput) SetDryRun(v bool) *DescribeStaleSecurityGroupsInput

SetDryRun sets the DryRun field's value.

func (*DescribeStaleSecurityGroupsInput) SetMaxResults

func (s *DescribeStaleSecurityGroupsInput) SetMaxResults(v int64) *DescribeStaleSecurityGroupsInput

SetMaxResults sets the MaxResults field's value.

func (*DescribeStaleSecurityGroupsInput) SetNextToken

func (s *DescribeStaleSecurityGroupsInput) SetNextToken(v string) *DescribeStaleSecurityGroupsInput

SetNextToken sets the NextToken field's value.

func (*DescribeStaleSecurityGroupsInput) SetVpcId

func (s *DescribeStaleSecurityGroupsInput) SetVpcId(v string) *DescribeStaleSecurityGroupsInput

SetVpcId sets the VpcId field's value.

func (DescribeStaleSecurityGroupsInput) String

func (s DescribeStaleSecurityGroupsInput) String() string

String returns the string representation

func (*DescribeStaleSecurityGroupsInput) Validate

func (s *DescribeStaleSecurityGroupsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeStaleSecurityGroupsOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeStaleSecurityGroupsResult

type DescribeStaleSecurityGroupsOutput struct {

    // The token to use when requesting the next set of items. If there are no additional
    // items to return, the string is empty.
    NextToken *string `locationName:"nextToken" type:"string"`

    // Information about the stale security groups.
    StaleSecurityGroupSet []*StaleSecurityGroup `locationName:"staleSecurityGroupSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeStaleSecurityGroupsOutput) GoString

func (s DescribeStaleSecurityGroupsOutput) GoString() string

GoString returns the string representation

func (*DescribeStaleSecurityGroupsOutput) SetNextToken

func (s *DescribeStaleSecurityGroupsOutput) SetNextToken(v string) *DescribeStaleSecurityGroupsOutput

SetNextToken sets the NextToken field's value.

func (*DescribeStaleSecurityGroupsOutput) SetStaleSecurityGroupSet

func (s *DescribeStaleSecurityGroupsOutput) SetStaleSecurityGroupSet(v []*StaleSecurityGroup) *DescribeStaleSecurityGroupsOutput

SetStaleSecurityGroupSet sets the StaleSecurityGroupSet field's value.

func (DescribeStaleSecurityGroupsOutput) String

func (s DescribeStaleSecurityGroupsOutput) String() string

String returns the string representation

type DescribeSubnetsInput

Contains the parameters for DescribeSubnets. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSubnetsRequest

type DescribeSubnetsInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // One or more filters.
    //
    //    * availabilityZone - The Availability Zone for the subnet. You can also
    //    use availability-zone as the filter name.
    //
    //    * available-ip-address-count - The number of IPv4 addresses in the subnet
    //    that are available.
    //
    //    * cidrBlock - The IPv4 CIDR block of the subnet. The CIDR block you specify
    //    must exactly match the subnet's CIDR block for information to be returned
    //    for the subnet. You can also use cidr or cidr-block as the filter names.
    //
    //    * defaultForAz - Indicates whether this is the default subnet for the
    //    Availability Zone. You can also use default-for-az as the filter name.
    //
    //    * ipv6-cidr-block-association.ipv6-cidr-block - An IPv6 CIDR block associated
    //    with the subnet.
    //
    //    * ipv6-cidr-block-association.association-id - An association ID for an
    //    IPv6 CIDR block associated with the subnet.
    //
    //    * ipv6-cidr-block-association.state - The state of an IPv6 CIDR block
    //    associated with the subnet.
    //
    //    * state - The state of the subnet (pending | available).
    //
    //    * subnet-id - The ID of the subnet.
    //
    //    * tag:key=value - The key/value combination of a tag assigned to the resource.
    //    Specify the key of the tag in the filter name and the value of the tag
    //    in the filter value. For example, for the tag Purpose=X, specify tag:Purpose
    //    for the filter name and X for the filter value.
    //
    //    * tag-key - The key of a tag assigned to the resource. This filter is
    //    independent of the tag-value filter. For example, if you use both the
    //    filter "tag-key=Purpose" and the filter "tag-value=X", you get any resources
    //    assigned both the tag key Purpose (regardless of what the tag's value
    //    is), and the tag value X (regardless of what the tag's key is). If you
    //    want to list only resources where Purpose is X, see the tag:key=value
    //    filter.
    //
    //    * tag-value - The value of a tag assigned to the resource. This filter
    //    is independent of the tag-key filter.
    //
    //    * vpc-id - The ID of the VPC for the subnet.
    Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"`

    // One or more subnet IDs.
    //
    // Default: Describes all your subnets.
    SubnetIds []*string `locationName:"SubnetId" locationNameList:"SubnetId" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeSubnetsInput) GoString

func (s DescribeSubnetsInput) GoString() string

GoString returns the string representation

func (*DescribeSubnetsInput) SetDryRun

func (s *DescribeSubnetsInput) SetDryRun(v bool) *DescribeSubnetsInput

SetDryRun sets the DryRun field's value.

func (*DescribeSubnetsInput) SetFilters

func (s *DescribeSubnetsInput) SetFilters(v []*Filter) *DescribeSubnetsInput

SetFilters sets the Filters field's value.

func (*DescribeSubnetsInput) SetSubnetIds

func (s *DescribeSubnetsInput) SetSubnetIds(v []*string) *DescribeSubnetsInput

SetSubnetIds sets the SubnetIds field's value.

func (DescribeSubnetsInput) String

func (s DescribeSubnetsInput) String() string

String returns the string representation

type DescribeSubnetsOutput

Contains the output of DescribeSubnets. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSubnetsResult

type DescribeSubnetsOutput struct {

    // Information about one or more subnets.
    Subnets []*Subnet `locationName:"subnetSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeSubnetsOutput) GoString

func (s DescribeSubnetsOutput) GoString() string

GoString returns the string representation

func (*DescribeSubnetsOutput) SetSubnets

func (s *DescribeSubnetsOutput) SetSubnets(v []*Subnet) *DescribeSubnetsOutput

SetSubnets sets the Subnets field's value.

func (DescribeSubnetsOutput) String

func (s DescribeSubnetsOutput) String() string

String returns the string representation

type DescribeTagsInput

Contains the parameters for DescribeTags. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeTagsRequest

type DescribeTagsInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // One or more filters.
    //
    //    * key - The tag key.
    //
    //    * resource-id - The resource ID.
    //
    //    * resource-type - The resource type (customer-gateway | dhcp-options |
    //    image | instance | internet-gateway | network-acl | network-interface
    //    | reserved-instances | route-table | security-group | snapshot | spot-instances-request
    //    | subnet | volume | vpc | vpn-connection | vpn-gateway).
    //
    //    * value - The tag value.
    Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"`

    // The maximum number of results to return in a single call. This value can
    // be between 5 and 1000. To retrieve the remaining results, make another call
    // with the returned NextToken value.
    MaxResults *int64 `locationName:"maxResults" type:"integer"`

    // The token to retrieve the next page of results.
    NextToken *string `locationName:"nextToken" type:"string"`
    // contains filtered or unexported fields
}

func (DescribeTagsInput) GoString

func (s DescribeTagsInput) GoString() string

GoString returns the string representation

func (*DescribeTagsInput) SetDryRun

func (s *DescribeTagsInput) SetDryRun(v bool) *DescribeTagsInput

SetDryRun sets the DryRun field's value.

func (*DescribeTagsInput) SetFilters

func (s *DescribeTagsInput) SetFilters(v []*Filter) *DescribeTagsInput

SetFilters sets the Filters field's value.

func (*DescribeTagsInput) SetMaxResults

func (s *DescribeTagsInput) SetMaxResults(v int64) *DescribeTagsInput

SetMaxResults sets the MaxResults field's value.

func (*DescribeTagsInput) SetNextToken

func (s *DescribeTagsInput) SetNextToken(v string) *DescribeTagsInput

SetNextToken sets the NextToken field's value.

func (DescribeTagsInput) String

func (s DescribeTagsInput) String() string

String returns the string representation

type DescribeTagsOutput

Contains the output of DescribeTags. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeTagsResult

type DescribeTagsOutput struct {

    // The token to use to retrieve the next page of results. This value is null
    // when there are no more results to return..
    NextToken *string `locationName:"nextToken" type:"string"`

    // A list of tags.
    Tags []*TagDescription `locationName:"tagSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeTagsOutput) GoString

func (s DescribeTagsOutput) GoString() string

GoString returns the string representation

func (*DescribeTagsOutput) SetNextToken

func (s *DescribeTagsOutput) SetNextToken(v string) *DescribeTagsOutput

SetNextToken sets the NextToken field's value.

func (*DescribeTagsOutput) SetTags

func (s *DescribeTagsOutput) SetTags(v []*TagDescription) *DescribeTagsOutput

SetTags sets the Tags field's value.

func (DescribeTagsOutput) String

func (s DescribeTagsOutput) String() string

String returns the string representation

type DescribeVolumeAttributeInput

Contains the parameters for DescribeVolumeAttribute. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVolumeAttributeRequest

type DescribeVolumeAttributeInput struct {

    // The attribute of the volume. This parameter is required.
    Attribute *string `type:"string" enum:"VolumeAttributeName"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the volume.
    //
    // VolumeId is a required field
    VolumeId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DescribeVolumeAttributeInput) GoString

func (s DescribeVolumeAttributeInput) GoString() string

GoString returns the string representation

func (*DescribeVolumeAttributeInput) SetAttribute

func (s *DescribeVolumeAttributeInput) SetAttribute(v string) *DescribeVolumeAttributeInput

SetAttribute sets the Attribute field's value.

func (*DescribeVolumeAttributeInput) SetDryRun

func (s *DescribeVolumeAttributeInput) SetDryRun(v bool) *DescribeVolumeAttributeInput

SetDryRun sets the DryRun field's value.

func (*DescribeVolumeAttributeInput) SetVolumeId

func (s *DescribeVolumeAttributeInput) SetVolumeId(v string) *DescribeVolumeAttributeInput

SetVolumeId sets the VolumeId field's value.

func (DescribeVolumeAttributeInput) String

func (s DescribeVolumeAttributeInput) String() string

String returns the string representation

func (*DescribeVolumeAttributeInput) Validate

func (s *DescribeVolumeAttributeInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeVolumeAttributeOutput

Contains the output of DescribeVolumeAttribute. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVolumeAttributeResult

type DescribeVolumeAttributeOutput struct {

    // The state of autoEnableIO attribute.
    AutoEnableIO *AttributeBooleanValue `locationName:"autoEnableIO" type:"structure"`

    // A list of product codes.
    ProductCodes []*ProductCode `locationName:"productCodes" locationNameList:"item" type:"list"`

    // The ID of the volume.
    VolumeId *string `locationName:"volumeId" type:"string"`
    // contains filtered or unexported fields
}

func (DescribeVolumeAttributeOutput) GoString

func (s DescribeVolumeAttributeOutput) GoString() string

GoString returns the string representation

func (*DescribeVolumeAttributeOutput) SetAutoEnableIO

func (s *DescribeVolumeAttributeOutput) SetAutoEnableIO(v *AttributeBooleanValue) *DescribeVolumeAttributeOutput

SetAutoEnableIO sets the AutoEnableIO field's value.

func (*DescribeVolumeAttributeOutput) SetProductCodes

func (s *DescribeVolumeAttributeOutput) SetProductCodes(v []*ProductCode) *DescribeVolumeAttributeOutput

SetProductCodes sets the ProductCodes field's value.

func (*DescribeVolumeAttributeOutput) SetVolumeId

func (s *DescribeVolumeAttributeOutput) SetVolumeId(v string) *DescribeVolumeAttributeOutput

SetVolumeId sets the VolumeId field's value.

func (DescribeVolumeAttributeOutput) String

func (s DescribeVolumeAttributeOutput) String() string

String returns the string representation

type DescribeVolumeStatusInput

Contains the parameters for DescribeVolumeStatus. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVolumeStatusRequest

type DescribeVolumeStatusInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // One or more filters.
    //
    //    * action.code - The action code for the event (for example, enable-volume-io).
    //
    //    * action.description - A description of the action.
    //
    //    * action.event-id - The event ID associated with the action.
    //
    //    * availability-zone - The Availability Zone of the instance.
    //
    //    * event.description - A description of the event.
    //
    //    * event.event-id - The event ID.
    //
    //    * event.event-type - The event type (for io-enabled: passed | failed;
    //    for io-performance: io-performance:degraded | io-performance:severely-degraded
    //    | io-performance:stalled).
    //
    //    * event.not-after - The latest end time for the event.
    //
    //    * event.not-before - The earliest start time for the event.
    //
    //    * volume-status.details-name - The cause for volume-status.status (io-enabled
    //    | io-performance).
    //
    //    * volume-status.details-status - The status of volume-status.details-name
    //    (for io-enabled: passed | failed; for io-performance: normal | degraded
    //    | severely-degraded | stalled).
    //
    //    * volume-status.status - The status of the volume (ok | impaired | warning
    //    | insufficient-data).
    Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"`

    // The maximum number of volume results returned by DescribeVolumeStatus in
    // paginated output. When this parameter is used, the request only returns MaxResults
    // results in a single page along with a NextToken response element. The remaining
    // results of the initial request can be seen by sending another request with
    // the returned NextToken value. This value can be between 5 and 1000; if MaxResults
    // is given a value larger than 1000, only 1000 results are returned. If this
    // parameter is not used, then DescribeVolumeStatus returns all results. You
    // cannot specify this parameter and the volume IDs parameter in the same request.
    MaxResults *int64 `type:"integer"`

    // The NextToken value to include in a future DescribeVolumeStatus request.
    // When the results of the request exceed MaxResults, this value can be used
    // to retrieve the next page of results. This value is null when there are no
    // more results to return.
    NextToken *string `type:"string"`

    // One or more volume IDs.
    //
    // Default: Describes all your volumes.
    VolumeIds []*string `locationName:"VolumeId" locationNameList:"VolumeId" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeVolumeStatusInput) GoString

func (s DescribeVolumeStatusInput) GoString() string

GoString returns the string representation

func (*DescribeVolumeStatusInput) SetDryRun

func (s *DescribeVolumeStatusInput) SetDryRun(v bool) *DescribeVolumeStatusInput

SetDryRun sets the DryRun field's value.

func (*DescribeVolumeStatusInput) SetFilters

func (s *DescribeVolumeStatusInput) SetFilters(v []*Filter) *DescribeVolumeStatusInput

SetFilters sets the Filters field's value.

func (*DescribeVolumeStatusInput) SetMaxResults

func (s *DescribeVolumeStatusInput) SetMaxResults(v int64) *DescribeVolumeStatusInput

SetMaxResults sets the MaxResults field's value.

func (*DescribeVolumeStatusInput) SetNextToken

func (s *DescribeVolumeStatusInput) SetNextToken(v string) *DescribeVolumeStatusInput

SetNextToken sets the NextToken field's value.

func (*DescribeVolumeStatusInput) SetVolumeIds

func (s *DescribeVolumeStatusInput) SetVolumeIds(v []*string) *DescribeVolumeStatusInput

SetVolumeIds sets the VolumeIds field's value.

func (DescribeVolumeStatusInput) String

func (s DescribeVolumeStatusInput) String() string

String returns the string representation

type DescribeVolumeStatusOutput

Contains the output of DescribeVolumeStatus. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVolumeStatusResult

type DescribeVolumeStatusOutput struct {

    // The token to use to retrieve the next page of results. This value is null
    // when there are no more results to return.
    NextToken *string `locationName:"nextToken" type:"string"`

    // A list of volumes.
    VolumeStatuses []*VolumeStatusItem `locationName:"volumeStatusSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeVolumeStatusOutput) GoString

func (s DescribeVolumeStatusOutput) GoString() string

GoString returns the string representation

func (*DescribeVolumeStatusOutput) SetNextToken

func (s *DescribeVolumeStatusOutput) SetNextToken(v string) *DescribeVolumeStatusOutput

SetNextToken sets the NextToken field's value.

func (*DescribeVolumeStatusOutput) SetVolumeStatuses

func (s *DescribeVolumeStatusOutput) SetVolumeStatuses(v []*VolumeStatusItem) *DescribeVolumeStatusOutput

SetVolumeStatuses sets the VolumeStatuses field's value.

func (DescribeVolumeStatusOutput) String

func (s DescribeVolumeStatusOutput) String() string

String returns the string representation

type DescribeVolumesInput

Contains the parameters for DescribeVolumes. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVolumesRequest

type DescribeVolumesInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // One or more filters.
    //
    //    * attachment.attach-time - The time stamp when the attachment initiated.
    //
    //    * attachment.delete-on-termination - Whether the volume is deleted on
    //    instance termination.
    //
    //    * attachment.device - The device name that is exposed to the instance
    //    (for example, /dev/sda1).
    //
    //    * attachment.instance-id - The ID of the instance the volume is attached
    //    to.
    //
    //    * attachment.status - The attachment state (attaching | attached | detaching
    //    | detached).
    //
    //    * availability-zone - The Availability Zone in which the volume was created.
    //
    //    * create-time - The time stamp when the volume was created.
    //
    //    * encrypted - The encryption status of the volume.
    //
    //    * size - The size of the volume, in GiB.
    //
    //    * snapshot-id - The snapshot from which the volume was created.
    //
    //    * status - The status of the volume (creating | available | in-use | deleting
    //    | deleted | error).
    //
    //    * tag:key=value - The key/value combination of a tag assigned to the resource.
    //    Specify the key of the tag in the filter name and the value of the tag
    //    in the filter value. For example, for the tag Purpose=X, specify tag:Purpose
    //    for the filter name and X for the filter value.
    //
    //    * tag-key - The key of a tag assigned to the resource. This filter is
    //    independent of the tag-value filter. For example, if you use both the
    //    filter "tag-key=Purpose" and the filter "tag-value=X", you get any resources
    //    assigned both the tag key Purpose (regardless of what the tag's value
    //    is), and the tag value X (regardless of what the tag's key is). If you
    //    want to list only resources where Purpose is X, see the tag:key=value
    //    filter.
    //
    //    * tag-value - The value of a tag assigned to the resource. This filter
    //    is independent of the tag-key filter.
    //
    //    * volume-id - The volume ID.
    //
    //    * volume-type - The Amazon EBS volume type. This can be gp2 for General
    //    Purpose SSD, io1 for Provisioned IOPS SSD, st1 for Throughput Optimized
    //    HDD, sc1 for Cold HDD, or standard for Magnetic volumes.
    Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"`

    // The maximum number of volume results returned by DescribeVolumes in paginated
    // output. When this parameter is used, DescribeVolumes only returns MaxResults
    // results in a single page along with a NextToken response element. The remaining
    // results of the initial request can be seen by sending another DescribeVolumes
    // request with the returned NextToken value. This value can be between 5 and
    // 500; if MaxResults is given a value larger than 500, only 500 results are
    // returned. If this parameter is not used, then DescribeVolumes returns all
    // results. You cannot specify this parameter and the volume IDs parameter in
    // the same request.
    MaxResults *int64 `locationName:"maxResults" type:"integer"`

    // The NextToken value returned from a previous paginated DescribeVolumes request
    // where MaxResults was used and the results exceeded the value of that parameter.
    // Pagination continues from the end of the previous results that returned the
    // NextToken value. This value is null when there are no more results to return.
    NextToken *string `locationName:"nextToken" type:"string"`

    // One or more volume IDs.
    VolumeIds []*string `locationName:"VolumeId" locationNameList:"VolumeId" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeVolumesInput) GoString

func (s DescribeVolumesInput) GoString() string

GoString returns the string representation

func (*DescribeVolumesInput) SetDryRun

func (s *DescribeVolumesInput) SetDryRun(v bool) *DescribeVolumesInput

SetDryRun sets the DryRun field's value.

func (*DescribeVolumesInput) SetFilters

func (s *DescribeVolumesInput) SetFilters(v []*Filter) *DescribeVolumesInput

SetFilters sets the Filters field's value.

func (*DescribeVolumesInput) SetMaxResults

func (s *DescribeVolumesInput) SetMaxResults(v int64) *DescribeVolumesInput

SetMaxResults sets the MaxResults field's value.

func (*DescribeVolumesInput) SetNextToken

func (s *DescribeVolumesInput) SetNextToken(v string) *DescribeVolumesInput

SetNextToken sets the NextToken field's value.

func (*DescribeVolumesInput) SetVolumeIds

func (s *DescribeVolumesInput) SetVolumeIds(v []*string) *DescribeVolumesInput

SetVolumeIds sets the VolumeIds field's value.

func (DescribeVolumesInput) String

func (s DescribeVolumesInput) String() string

String returns the string representation

type DescribeVolumesModificationsInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVolumesModificationsRequest

type DescribeVolumesModificationsInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `type:"boolean"`

    // One or more filters. Supported filters: volume-id, modification-state, target-size,
    // target-iops, target-volume-type, original-size, original-iops, original-volume-type,
    // start-time.
    Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"`

    // The maximum number of results (up to a limit of 500) to be returned in a
    // paginated request.
    MaxResults *int64 `type:"integer"`

    // The nextToken value returned by a previous paginated request.
    NextToken *string `type:"string"`

    // One or more volume IDs for which in-progress modifications will be described.
    VolumeIds []*string `locationName:"VolumeId" locationNameList:"VolumeId" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeVolumesModificationsInput) GoString

func (s DescribeVolumesModificationsInput) GoString() string

GoString returns the string representation

func (*DescribeVolumesModificationsInput) SetDryRun

func (s *DescribeVolumesModificationsInput) SetDryRun(v bool) *DescribeVolumesModificationsInput

SetDryRun sets the DryRun field's value.

func (*DescribeVolumesModificationsInput) SetFilters

func (s *DescribeVolumesModificationsInput) SetFilters(v []*Filter) *DescribeVolumesModificationsInput

SetFilters sets the Filters field's value.

func (*DescribeVolumesModificationsInput) SetMaxResults

func (s *DescribeVolumesModificationsInput) SetMaxResults(v int64) *DescribeVolumesModificationsInput

SetMaxResults sets the MaxResults field's value.

func (*DescribeVolumesModificationsInput) SetNextToken

func (s *DescribeVolumesModificationsInput) SetNextToken(v string) *DescribeVolumesModificationsInput

SetNextToken sets the NextToken field's value.

func (*DescribeVolumesModificationsInput) SetVolumeIds

func (s *DescribeVolumesModificationsInput) SetVolumeIds(v []*string) *DescribeVolumesModificationsInput

SetVolumeIds sets the VolumeIds field's value.

func (DescribeVolumesModificationsInput) String

func (s DescribeVolumesModificationsInput) String() string

String returns the string representation

type DescribeVolumesModificationsOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVolumesModificationsResult

type DescribeVolumesModificationsOutput struct {

    // Token for pagination, null if there are no more results
    NextToken *string `locationName:"nextToken" type:"string"`

    // A list of returned VolumeModification objects.
    VolumesModifications []*VolumeModification `locationName:"volumeModificationSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeVolumesModificationsOutput) GoString

func (s DescribeVolumesModificationsOutput) GoString() string

GoString returns the string representation

func (*DescribeVolumesModificationsOutput) SetNextToken

func (s *DescribeVolumesModificationsOutput) SetNextToken(v string) *DescribeVolumesModificationsOutput

SetNextToken sets the NextToken field's value.

func (*DescribeVolumesModificationsOutput) SetVolumesModifications

func (s *DescribeVolumesModificationsOutput) SetVolumesModifications(v []*VolumeModification) *DescribeVolumesModificationsOutput

SetVolumesModifications sets the VolumesModifications field's value.

func (DescribeVolumesModificationsOutput) String

func (s DescribeVolumesModificationsOutput) String() string

String returns the string representation

type DescribeVolumesOutput

Contains the output of DescribeVolumes. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVolumesResult

type DescribeVolumesOutput struct {

    // The NextToken value to include in a future DescribeVolumes request. When
    // the results of a DescribeVolumes request exceed MaxResults, this value can
    // be used to retrieve the next page of results. This value is null when there
    // are no more results to return.
    NextToken *string `locationName:"nextToken" type:"string"`

    // Information about the volumes.
    Volumes []*Volume `locationName:"volumeSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeVolumesOutput) GoString

func (s DescribeVolumesOutput) GoString() string

GoString returns the string representation

func (*DescribeVolumesOutput) SetNextToken

func (s *DescribeVolumesOutput) SetNextToken(v string) *DescribeVolumesOutput

SetNextToken sets the NextToken field's value.

func (*DescribeVolumesOutput) SetVolumes

func (s *DescribeVolumesOutput) SetVolumes(v []*Volume) *DescribeVolumesOutput

SetVolumes sets the Volumes field's value.

func (DescribeVolumesOutput) String

func (s DescribeVolumesOutput) String() string

String returns the string representation

type DescribeVpcAttributeInput

Contains the parameters for DescribeVpcAttribute. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcAttributeRequest

type DescribeVpcAttributeInput struct {

    // The VPC attribute.
    //
    // Attribute is a required field
    Attribute *string `type:"string" required:"true" enum:"VpcAttributeName"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the VPC.
    //
    // VpcId is a required field
    VpcId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DescribeVpcAttributeInput) GoString

func (s DescribeVpcAttributeInput) GoString() string

GoString returns the string representation

func (*DescribeVpcAttributeInput) SetAttribute

func (s *DescribeVpcAttributeInput) SetAttribute(v string) *DescribeVpcAttributeInput

SetAttribute sets the Attribute field's value.

func (*DescribeVpcAttributeInput) SetDryRun

func (s *DescribeVpcAttributeInput) SetDryRun(v bool) *DescribeVpcAttributeInput

SetDryRun sets the DryRun field's value.

func (*DescribeVpcAttributeInput) SetVpcId

func (s *DescribeVpcAttributeInput) SetVpcId(v string) *DescribeVpcAttributeInput

SetVpcId sets the VpcId field's value.

func (DescribeVpcAttributeInput) String

func (s DescribeVpcAttributeInput) String() string

String returns the string representation

func (*DescribeVpcAttributeInput) Validate

func (s *DescribeVpcAttributeInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeVpcAttributeOutput

Contains the output of DescribeVpcAttribute. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcAttributeResult

type DescribeVpcAttributeOutput struct {

    // Indicates whether the instances launched in the VPC get DNS hostnames. If
    // this attribute is true, instances in the VPC get DNS hostnames; otherwise,
    // they do not.
    EnableDnsHostnames *AttributeBooleanValue `locationName:"enableDnsHostnames" type:"structure"`

    // Indicates whether DNS resolution is enabled for the VPC. If this attribute
    // is true, the Amazon DNS server resolves DNS hostnames for your instances
    // to their corresponding IP addresses; otherwise, it does not.
    EnableDnsSupport *AttributeBooleanValue `locationName:"enableDnsSupport" type:"structure"`

    // The ID of the VPC.
    VpcId *string `locationName:"vpcId" type:"string"`
    // contains filtered or unexported fields
}

func (DescribeVpcAttributeOutput) GoString

func (s DescribeVpcAttributeOutput) GoString() string

GoString returns the string representation

func (*DescribeVpcAttributeOutput) SetEnableDnsHostnames

func (s *DescribeVpcAttributeOutput) SetEnableDnsHostnames(v *AttributeBooleanValue) *DescribeVpcAttributeOutput

SetEnableDnsHostnames sets the EnableDnsHostnames field's value.

func (*DescribeVpcAttributeOutput) SetEnableDnsSupport

func (s *DescribeVpcAttributeOutput) SetEnableDnsSupport(v *AttributeBooleanValue) *DescribeVpcAttributeOutput

SetEnableDnsSupport sets the EnableDnsSupport field's value.

func (*DescribeVpcAttributeOutput) SetVpcId

func (s *DescribeVpcAttributeOutput) SetVpcId(v string) *DescribeVpcAttributeOutput

SetVpcId sets the VpcId field's value.

func (DescribeVpcAttributeOutput) String

func (s DescribeVpcAttributeOutput) String() string

String returns the string representation

type DescribeVpcClassicLinkDnsSupportInput

Contains the parameters for DescribeVpcClassicLinkDnsSupport. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcClassicLinkDnsSupportRequest

type DescribeVpcClassicLinkDnsSupportInput struct {

    // The maximum number of items to return for this request. The request returns
    // a token that you can specify in a subsequent call to get the next set of
    // results.
    MaxResults *int64 `locationName:"maxResults" min:"5" type:"integer"`

    // The token for the next set of items to return. (You received this token from
    // a prior call.)
    NextToken *string `locationName:"nextToken" min:"1" type:"string"`

    // One or more VPC IDs.
    VpcIds []*string `locationNameList:"VpcId" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeVpcClassicLinkDnsSupportInput) GoString

func (s DescribeVpcClassicLinkDnsSupportInput) GoString() string

GoString returns the string representation

func (*DescribeVpcClassicLinkDnsSupportInput) SetMaxResults

func (s *DescribeVpcClassicLinkDnsSupportInput) SetMaxResults(v int64) *DescribeVpcClassicLinkDnsSupportInput

SetMaxResults sets the MaxResults field's value.

func (*DescribeVpcClassicLinkDnsSupportInput) SetNextToken

func (s *DescribeVpcClassicLinkDnsSupportInput) SetNextToken(v string) *DescribeVpcClassicLinkDnsSupportInput

SetNextToken sets the NextToken field's value.

func (*DescribeVpcClassicLinkDnsSupportInput) SetVpcIds

func (s *DescribeVpcClassicLinkDnsSupportInput) SetVpcIds(v []*string) *DescribeVpcClassicLinkDnsSupportInput

SetVpcIds sets the VpcIds field's value.

func (DescribeVpcClassicLinkDnsSupportInput) String

func (s DescribeVpcClassicLinkDnsSupportInput) String() string

String returns the string representation

func (*DescribeVpcClassicLinkDnsSupportInput) Validate

func (s *DescribeVpcClassicLinkDnsSupportInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeVpcClassicLinkDnsSupportOutput

Contains the output of DescribeVpcClassicLinkDnsSupport. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcClassicLinkDnsSupportResult

type DescribeVpcClassicLinkDnsSupportOutput struct {

    // The token to use when requesting the next set of items.
    NextToken *string `locationName:"nextToken" min:"1" type:"string"`

    // Information about the ClassicLink DNS support status of the VPCs.
    Vpcs []*ClassicLinkDnsSupport `locationName:"vpcs" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeVpcClassicLinkDnsSupportOutput) GoString

func (s DescribeVpcClassicLinkDnsSupportOutput) GoString() string

GoString returns the string representation

func (*DescribeVpcClassicLinkDnsSupportOutput) SetNextToken

func (s *DescribeVpcClassicLinkDnsSupportOutput) SetNextToken(v string) *DescribeVpcClassicLinkDnsSupportOutput

SetNextToken sets the NextToken field's value.

func (*DescribeVpcClassicLinkDnsSupportOutput) SetVpcs

func (s *DescribeVpcClassicLinkDnsSupportOutput) SetVpcs(v []*ClassicLinkDnsSupport) *DescribeVpcClassicLinkDnsSupportOutput

SetVpcs sets the Vpcs field's value.

func (DescribeVpcClassicLinkDnsSupportOutput) String

func (s DescribeVpcClassicLinkDnsSupportOutput) String() string

String returns the string representation

type DescribeVpcClassicLinkInput

Contains the parameters for DescribeVpcClassicLink. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcClassicLinkRequest

type DescribeVpcClassicLinkInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // One or more filters.
    //
    //    * is-classic-link-enabled - Whether the VPC is enabled for ClassicLink
    //    (true | false).
    //
    //    * tag:key=value - The key/value combination of a tag assigned to the resource.
    //    Specify the key of the tag in the filter name and the value of the tag
    //    in the filter value. For example, for the tag Purpose=X, specify tag:Purpose
    //    for the filter name and X for the filter value.
    //
    //    * tag-key - The key of a tag assigned to the resource. This filter is
    //    independent of the tag-value filter. For example, if you use both the
    //    filter "tag-key=Purpose" and the filter "tag-value=X", you get any resources
    //    assigned both the tag key Purpose (regardless of what the tag's value
    //    is), and the tag value X (regardless of what the tag's key is). If you
    //    want to list only resources where Purpose is X, see the tag:key=value
    //    filter.
    //
    //    * tag-value - The value of a tag assigned to the resource. This filter
    //    is independent of the tag-key filter.
    Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"`

    // One or more VPCs for which you want to describe the ClassicLink status.
    VpcIds []*string `locationName:"VpcId" locationNameList:"VpcId" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeVpcClassicLinkInput) GoString

func (s DescribeVpcClassicLinkInput) GoString() string

GoString returns the string representation

func (*DescribeVpcClassicLinkInput) SetDryRun

func (s *DescribeVpcClassicLinkInput) SetDryRun(v bool) *DescribeVpcClassicLinkInput

SetDryRun sets the DryRun field's value.

func (*DescribeVpcClassicLinkInput) SetFilters

func (s *DescribeVpcClassicLinkInput) SetFilters(v []*Filter) *DescribeVpcClassicLinkInput

SetFilters sets the Filters field's value.

func (*DescribeVpcClassicLinkInput) SetVpcIds

func (s *DescribeVpcClassicLinkInput) SetVpcIds(v []*string) *DescribeVpcClassicLinkInput

SetVpcIds sets the VpcIds field's value.

func (DescribeVpcClassicLinkInput) String

func (s DescribeVpcClassicLinkInput) String() string

String returns the string representation

type DescribeVpcClassicLinkOutput

Contains the output of DescribeVpcClassicLink. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcClassicLinkResult

type DescribeVpcClassicLinkOutput struct {

    // The ClassicLink status of one or more VPCs.
    Vpcs []*VpcClassicLink `locationName:"vpcSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeVpcClassicLinkOutput) GoString

func (s DescribeVpcClassicLinkOutput) GoString() string

GoString returns the string representation

func (*DescribeVpcClassicLinkOutput) SetVpcs

func (s *DescribeVpcClassicLinkOutput) SetVpcs(v []*VpcClassicLink) *DescribeVpcClassicLinkOutput

SetVpcs sets the Vpcs field's value.

func (DescribeVpcClassicLinkOutput) String

func (s DescribeVpcClassicLinkOutput) String() string

String returns the string representation

type DescribeVpcEndpointServicesInput

Contains the parameters for DescribeVpcEndpointServices. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcEndpointServicesRequest

type DescribeVpcEndpointServicesInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `type:"boolean"`

    // The maximum number of items to return for this request. The request returns
    // a token that you can specify in a subsequent call to get the next set of
    // results.
    //
    // Constraint: If the value is greater than 1000, we return only 1000 items.
    MaxResults *int64 `type:"integer"`

    // The token for the next set of items to return. (You received this token from
    // a prior call.)
    NextToken *string `type:"string"`
    // contains filtered or unexported fields
}

func (DescribeVpcEndpointServicesInput) GoString

func (s DescribeVpcEndpointServicesInput) GoString() string

GoString returns the string representation

func (*DescribeVpcEndpointServicesInput) SetDryRun

func (s *DescribeVpcEndpointServicesInput) SetDryRun(v bool) *DescribeVpcEndpointServicesInput

SetDryRun sets the DryRun field's value.

func (*DescribeVpcEndpointServicesInput) SetMaxResults

func (s *DescribeVpcEndpointServicesInput) SetMaxResults(v int64) *DescribeVpcEndpointServicesInput

SetMaxResults sets the MaxResults field's value.

func (*DescribeVpcEndpointServicesInput) SetNextToken

func (s *DescribeVpcEndpointServicesInput) SetNextToken(v string) *DescribeVpcEndpointServicesInput

SetNextToken sets the NextToken field's value.

func (DescribeVpcEndpointServicesInput) String

func (s DescribeVpcEndpointServicesInput) String() string

String returns the string representation

type DescribeVpcEndpointServicesOutput

Contains the output of DescribeVpcEndpointServices. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcEndpointServicesResult

type DescribeVpcEndpointServicesOutput struct {

    // The token to use when requesting the next set of items. If there are no additional
    // items to return, the string is empty.
    NextToken *string `locationName:"nextToken" type:"string"`

    // A list of supported AWS services.
    ServiceNames []*string `locationName:"serviceNameSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeVpcEndpointServicesOutput) GoString

func (s DescribeVpcEndpointServicesOutput) GoString() string

GoString returns the string representation

func (*DescribeVpcEndpointServicesOutput) SetNextToken

func (s *DescribeVpcEndpointServicesOutput) SetNextToken(v string) *DescribeVpcEndpointServicesOutput

SetNextToken sets the NextToken field's value.

func (*DescribeVpcEndpointServicesOutput) SetServiceNames

func (s *DescribeVpcEndpointServicesOutput) SetServiceNames(v []*string) *DescribeVpcEndpointServicesOutput

SetServiceNames sets the ServiceNames field's value.

func (DescribeVpcEndpointServicesOutput) String

func (s DescribeVpcEndpointServicesOutput) String() string

String returns the string representation

type DescribeVpcEndpointsInput

Contains the parameters for DescribeVpcEndpoints. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcEndpointsRequest

type DescribeVpcEndpointsInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `type:"boolean"`

    // One or more filters.
    //
    //    * service-name: The name of the AWS service.
    //
    //    * vpc-id: The ID of the VPC in which the endpoint resides.
    //
    //    * vpc-endpoint-id: The ID of the endpoint.
    //
    //    * vpc-endpoint-state: The state of the endpoint. (pending | available
    //    | deleting | deleted)
    Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"`

    // The maximum number of items to return for this request. The request returns
    // a token that you can specify in a subsequent call to get the next set of
    // results.
    //
    // Constraint: If the value is greater than 1000, we return only 1000 items.
    MaxResults *int64 `type:"integer"`

    // The token for the next set of items to return. (You received this token from
    // a prior call.)
    NextToken *string `type:"string"`

    // One or more endpoint IDs.
    VpcEndpointIds []*string `locationName:"VpcEndpointId" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeVpcEndpointsInput) GoString

func (s DescribeVpcEndpointsInput) GoString() string

GoString returns the string representation

func (*DescribeVpcEndpointsInput) SetDryRun

func (s *DescribeVpcEndpointsInput) SetDryRun(v bool) *DescribeVpcEndpointsInput

SetDryRun sets the DryRun field's value.

func (*DescribeVpcEndpointsInput) SetFilters

func (s *DescribeVpcEndpointsInput) SetFilters(v []*Filter) *DescribeVpcEndpointsInput

SetFilters sets the Filters field's value.

func (*DescribeVpcEndpointsInput) SetMaxResults

func (s *DescribeVpcEndpointsInput) SetMaxResults(v int64) *DescribeVpcEndpointsInput

SetMaxResults sets the MaxResults field's value.

func (*DescribeVpcEndpointsInput) SetNextToken

func (s *DescribeVpcEndpointsInput) SetNextToken(v string) *DescribeVpcEndpointsInput

SetNextToken sets the NextToken field's value.

func (*DescribeVpcEndpointsInput) SetVpcEndpointIds

func (s *DescribeVpcEndpointsInput) SetVpcEndpointIds(v []*string) *DescribeVpcEndpointsInput

SetVpcEndpointIds sets the VpcEndpointIds field's value.

func (DescribeVpcEndpointsInput) String

func (s DescribeVpcEndpointsInput) String() string

String returns the string representation

type DescribeVpcEndpointsOutput

Contains the output of DescribeVpcEndpoints. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcEndpointsResult

type DescribeVpcEndpointsOutput struct {

    // The token to use when requesting the next set of items. If there are no additional
    // items to return, the string is empty.
    NextToken *string `locationName:"nextToken" type:"string"`

    // Information about the endpoints.
    VpcEndpoints []*VpcEndpoint `locationName:"vpcEndpointSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeVpcEndpointsOutput) GoString

func (s DescribeVpcEndpointsOutput) GoString() string

GoString returns the string representation

func (*DescribeVpcEndpointsOutput) SetNextToken

func (s *DescribeVpcEndpointsOutput) SetNextToken(v string) *DescribeVpcEndpointsOutput

SetNextToken sets the NextToken field's value.

func (*DescribeVpcEndpointsOutput) SetVpcEndpoints

func (s *DescribeVpcEndpointsOutput) SetVpcEndpoints(v []*VpcEndpoint) *DescribeVpcEndpointsOutput

SetVpcEndpoints sets the VpcEndpoints field's value.

func (DescribeVpcEndpointsOutput) String

func (s DescribeVpcEndpointsOutput) String() string

String returns the string representation

type DescribeVpcPeeringConnectionsInput

Contains the parameters for DescribeVpcPeeringConnections. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcPeeringConnectionsRequest

type DescribeVpcPeeringConnectionsInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // One or more filters.
    //
    //    * accepter-vpc-info.cidr-block - The IPv4 CIDR block of the peer VPC.
    //
    //    * accepter-vpc-info.owner-id - The AWS account ID of the owner of the
    //    peer VPC.
    //
    //    * accepter-vpc-info.vpc-id - The ID of the peer VPC.
    //
    //    * expiration-time - The expiration date and time for the VPC peering connection.
    //
    //    * requester-vpc-info.cidr-block - The IPv4 CIDR block of the requester's
    //    VPC.
    //
    //    * requester-vpc-info.owner-id - The AWS account ID of the owner of the
    //    requester VPC.
    //
    //    * requester-vpc-info.vpc-id - The ID of the requester VPC.
    //
    //    * status-code - The status of the VPC peering connection (pending-acceptance
    //    | failed | expired | provisioning | active | deleted | rejected).
    //
    //    * status-message - A message that provides more information about the
    //    status of the VPC peering connection, if applicable.
    //
    //    * tag:key=value - The key/value combination of a tag assigned to the resource.
    //    Specify the key of the tag in the filter name and the value of the tag
    //    in the filter value. For example, for the tag Purpose=X, specify tag:Purpose
    //    for the filter name and X for the filter value.
    //
    //    * tag-key - The key of a tag assigned to the resource. This filter is
    //    independent of the tag-value filter. For example, if you use both the
    //    filter "tag-key=Purpose" and the filter "tag-value=X", you get any resources
    //    assigned both the tag key Purpose (regardless of what the tag's value
    //    is), and the tag value X (regardless of what the tag's key is). If you
    //    want to list only resources where Purpose is X, see the tag:key=value
    //    filter.
    //
    //    * tag-value - The value of a tag assigned to the resource. This filter
    //    is independent of the tag-key filter.
    //
    //    * vpc-peering-connection-id - The ID of the VPC peering connection.
    Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"`

    // One or more VPC peering connection IDs.
    //
    // Default: Describes all your VPC peering connections.
    VpcPeeringConnectionIds []*string `locationName:"VpcPeeringConnectionId" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeVpcPeeringConnectionsInput) GoString

func (s DescribeVpcPeeringConnectionsInput) GoString() string

GoString returns the string representation

func (*DescribeVpcPeeringConnectionsInput) SetDryRun

func (s *DescribeVpcPeeringConnectionsInput) SetDryRun(v bool) *DescribeVpcPeeringConnectionsInput

SetDryRun sets the DryRun field's value.

func (*DescribeVpcPeeringConnectionsInput) SetFilters

func (s *DescribeVpcPeeringConnectionsInput) SetFilters(v []*Filter) *DescribeVpcPeeringConnectionsInput

SetFilters sets the Filters field's value.

func (*DescribeVpcPeeringConnectionsInput) SetVpcPeeringConnectionIds

func (s *DescribeVpcPeeringConnectionsInput) SetVpcPeeringConnectionIds(v []*string) *DescribeVpcPeeringConnectionsInput

SetVpcPeeringConnectionIds sets the VpcPeeringConnectionIds field's value.

func (DescribeVpcPeeringConnectionsInput) String

func (s DescribeVpcPeeringConnectionsInput) String() string

String returns the string representation

type DescribeVpcPeeringConnectionsOutput

Contains the output of DescribeVpcPeeringConnections. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcPeeringConnectionsResult

type DescribeVpcPeeringConnectionsOutput struct {

    // Information about the VPC peering connections.
    VpcPeeringConnections []*VpcPeeringConnection `locationName:"vpcPeeringConnectionSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeVpcPeeringConnectionsOutput) GoString

func (s DescribeVpcPeeringConnectionsOutput) GoString() string

GoString returns the string representation

func (*DescribeVpcPeeringConnectionsOutput) SetVpcPeeringConnections

func (s *DescribeVpcPeeringConnectionsOutput) SetVpcPeeringConnections(v []*VpcPeeringConnection) *DescribeVpcPeeringConnectionsOutput

SetVpcPeeringConnections sets the VpcPeeringConnections field's value.

func (DescribeVpcPeeringConnectionsOutput) String

func (s DescribeVpcPeeringConnectionsOutput) String() string

String returns the string representation

type DescribeVpcsInput

Contains the parameters for DescribeVpcs. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcsRequest

type DescribeVpcsInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // One or more filters.
    //
    //    * cidr - The IPv4 CIDR block of the VPC. The CIDR block you specify must
    //    exactly match the VPC's CIDR block for information to be returned for
    //    the VPC. Must contain the slash followed by one or two digits (for example,
    //    /28).
    //
    //    * dhcp-options-id - The ID of a set of DHCP options.
    //
    //    * ipv6-cidr-block-association.ipv6-cidr-block - An IPv6 CIDR block associated
    //    with the VPC.
    //
    //    * ipv6-cidr-block-association.association-id - The association ID for
    //    an IPv6 CIDR block associated with the VPC.
    //
    //    * ipv6-cidr-block-association.state - The state of an IPv6 CIDR block
    //    associated with the VPC.
    //
    //    * isDefault - Indicates whether the VPC is the default VPC.
    //
    //    * state - The state of the VPC (pending | available).
    //
    //    * tag:key=value - The key/value combination of a tag assigned to the resource.
    //    Specify the key of the tag in the filter name and the value of the tag
    //    in the filter value. For example, for the tag Purpose=X, specify tag:Purpose
    //    for the filter name and X for the filter value.
    //
    //    * tag-key - The key of a tag assigned to the resource. This filter is
    //    independent of the tag-value filter. For example, if you use both the
    //    filter "tag-key=Purpose" and the filter "tag-value=X", you get any resources
    //    assigned both the tag key Purpose (regardless of what the tag's value
    //    is), and the tag value X (regardless of what the tag's key is). If you
    //    want to list only resources where Purpose is X, see the tag:key=value
    //    filter.
    //
    //    * tag-value - The value of a tag assigned to the resource. This filter
    //    is independent of the tag-key filter.
    //
    //    * vpc-id - The ID of the VPC.
    Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"`

    // One or more VPC IDs.
    //
    // Default: Describes all your VPCs.
    VpcIds []*string `locationName:"VpcId" locationNameList:"VpcId" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeVpcsInput) GoString

func (s DescribeVpcsInput) GoString() string

GoString returns the string representation

func (*DescribeVpcsInput) SetDryRun

func (s *DescribeVpcsInput) SetDryRun(v bool) *DescribeVpcsInput

SetDryRun sets the DryRun field's value.

func (*DescribeVpcsInput) SetFilters

func (s *DescribeVpcsInput) SetFilters(v []*Filter) *DescribeVpcsInput

SetFilters sets the Filters field's value.

func (*DescribeVpcsInput) SetVpcIds

func (s *DescribeVpcsInput) SetVpcIds(v []*string) *DescribeVpcsInput

SetVpcIds sets the VpcIds field's value.

func (DescribeVpcsInput) String

func (s DescribeVpcsInput) String() string

String returns the string representation

type DescribeVpcsOutput

Contains the output of DescribeVpcs. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcsResult

type DescribeVpcsOutput struct {

    // Information about one or more VPCs.
    Vpcs []*Vpc `locationName:"vpcSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeVpcsOutput) GoString

func (s DescribeVpcsOutput) GoString() string

GoString returns the string representation

func (*DescribeVpcsOutput) SetVpcs

func (s *DescribeVpcsOutput) SetVpcs(v []*Vpc) *DescribeVpcsOutput

SetVpcs sets the Vpcs field's value.

func (DescribeVpcsOutput) String

func (s DescribeVpcsOutput) String() string

String returns the string representation

type DescribeVpnConnectionsInput

Contains the parameters for DescribeVpnConnections. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpnConnectionsRequest

type DescribeVpnConnectionsInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // One or more filters.
    //
    //    * customer-gateway-configuration - The configuration information for the
    //    customer gateway.
    //
    //    * customer-gateway-id - The ID of a customer gateway associated with the
    //    VPN connection.
    //
    //    * state - The state of the VPN connection (pending | available | deleting
    //    | deleted).
    //
    //    * option.static-routes-only - Indicates whether the connection has static
    //    routes only. Used for devices that do not support Border Gateway Protocol
    //    (BGP).
    //
    //    * route.destination-cidr-block - The destination CIDR block. This corresponds
    //    to the subnet used in a customer data center.
    //
    //    * bgp-asn - The BGP Autonomous System Number (ASN) associated with a BGP
    //    device.
    //
    //    * tag:key=value - The key/value combination of a tag assigned to the resource.
    //    Specify the key of the tag in the filter name and the value of the tag
    //    in the filter value. For example, for the tag Purpose=X, specify tag:Purpose
    //    for the filter name and X for the filter value.
    //
    //    * tag-key - The key of a tag assigned to the resource. This filter is
    //    independent of the tag-value filter. For example, if you use both the
    //    filter "tag-key=Purpose" and the filter "tag-value=X", you get any resources
    //    assigned both the tag key Purpose (regardless of what the tag's value
    //    is), and the tag value X (regardless of what the tag's key is). If you
    //    want to list only resources where Purpose is X, see the tag:key=value
    //    filter.
    //
    //    * tag-value - The value of a tag assigned to the resource. This filter
    //    is independent of the tag-key filter.
    //
    //    * type - The type of VPN connection. Currently the only supported type
    //    is ipsec.1.
    //
    //    * vpn-connection-id - The ID of the VPN connection.
    //
    //    * vpn-gateway-id - The ID of a virtual private gateway associated with
    //    the VPN connection.
    Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"`

    // One or more VPN connection IDs.
    //
    // Default: Describes your VPN connections.
    VpnConnectionIds []*string `locationName:"VpnConnectionId" locationNameList:"VpnConnectionId" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeVpnConnectionsInput) GoString

func (s DescribeVpnConnectionsInput) GoString() string

GoString returns the string representation

func (*DescribeVpnConnectionsInput) SetDryRun

func (s *DescribeVpnConnectionsInput) SetDryRun(v bool) *DescribeVpnConnectionsInput

SetDryRun sets the DryRun field's value.

func (*DescribeVpnConnectionsInput) SetFilters

func (s *DescribeVpnConnectionsInput) SetFilters(v []*Filter) *DescribeVpnConnectionsInput

SetFilters sets the Filters field's value.

func (*DescribeVpnConnectionsInput) SetVpnConnectionIds

func (s *DescribeVpnConnectionsInput) SetVpnConnectionIds(v []*string) *DescribeVpnConnectionsInput

SetVpnConnectionIds sets the VpnConnectionIds field's value.

func (DescribeVpnConnectionsInput) String

func (s DescribeVpnConnectionsInput) String() string

String returns the string representation

type DescribeVpnConnectionsOutput

Contains the output of DescribeVpnConnections. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpnConnectionsResult

type DescribeVpnConnectionsOutput struct {

    // Information about one or more VPN connections.
    VpnConnections []*VpnConnection `locationName:"vpnConnectionSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeVpnConnectionsOutput) GoString

func (s DescribeVpnConnectionsOutput) GoString() string

GoString returns the string representation

func (*DescribeVpnConnectionsOutput) SetVpnConnections

func (s *DescribeVpnConnectionsOutput) SetVpnConnections(v []*VpnConnection) *DescribeVpnConnectionsOutput

SetVpnConnections sets the VpnConnections field's value.

func (DescribeVpnConnectionsOutput) String

func (s DescribeVpnConnectionsOutput) String() string

String returns the string representation

type DescribeVpnGatewaysInput

Contains the parameters for DescribeVpnGateways. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpnGatewaysRequest

type DescribeVpnGatewaysInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // One or more filters.
    //
    //    * attachment.state - The current state of the attachment between the gateway
    //    and the VPC (attaching | attached | detaching | detached).
    //
    //    * attachment.vpc-id - The ID of an attached VPC.
    //
    //    * availability-zone - The Availability Zone for the virtual private gateway
    //    (if applicable).
    //
    //    * state - The state of the virtual private gateway (pending | available
    //    | deleting | deleted).
    //
    //    * tag:key=value - The key/value combination of a tag assigned to the resource.
    //    Specify the key of the tag in the filter name and the value of the tag
    //    in the filter value. For example, for the tag Purpose=X, specify tag:Purpose
    //    for the filter name and X for the filter value.
    //
    //    * tag-key - The key of a tag assigned to the resource. This filter is
    //    independent of the tag-value filter. For example, if you use both the
    //    filter "tag-key=Purpose" and the filter "tag-value=X", you get any resources
    //    assigned both the tag key Purpose (regardless of what the tag's value
    //    is), and the tag value X (regardless of what the tag's key is). If you
    //    want to list only resources where Purpose is X, see the tag:key=value
    //    filter.
    //
    //    * tag-value - The value of a tag assigned to the resource. This filter
    //    is independent of the tag-key filter.
    //
    //    * type - The type of virtual private gateway. Currently the only supported
    //    type is ipsec.1.
    //
    //    * vpn-gateway-id - The ID of the virtual private gateway.
    Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"`

    // One or more virtual private gateway IDs.
    //
    // Default: Describes all your virtual private gateways.
    VpnGatewayIds []*string `locationName:"VpnGatewayId" locationNameList:"VpnGatewayId" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeVpnGatewaysInput) GoString

func (s DescribeVpnGatewaysInput) GoString() string

GoString returns the string representation

func (*DescribeVpnGatewaysInput) SetDryRun

func (s *DescribeVpnGatewaysInput) SetDryRun(v bool) *DescribeVpnGatewaysInput

SetDryRun sets the DryRun field's value.

func (*DescribeVpnGatewaysInput) SetFilters

func (s *DescribeVpnGatewaysInput) SetFilters(v []*Filter) *DescribeVpnGatewaysInput

SetFilters sets the Filters field's value.

func (*DescribeVpnGatewaysInput) SetVpnGatewayIds

func (s *DescribeVpnGatewaysInput) SetVpnGatewayIds(v []*string) *DescribeVpnGatewaysInput

SetVpnGatewayIds sets the VpnGatewayIds field's value.

func (DescribeVpnGatewaysInput) String

func (s DescribeVpnGatewaysInput) String() string

String returns the string representation

type DescribeVpnGatewaysOutput

Contains the output of DescribeVpnGateways. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpnGatewaysResult

type DescribeVpnGatewaysOutput struct {

    // Information about one or more virtual private gateways.
    VpnGateways []*VpnGateway `locationName:"vpnGatewaySet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DescribeVpnGatewaysOutput) GoString

func (s DescribeVpnGatewaysOutput) GoString() string

GoString returns the string representation

func (*DescribeVpnGatewaysOutput) SetVpnGateways

func (s *DescribeVpnGatewaysOutput) SetVpnGateways(v []*VpnGateway) *DescribeVpnGatewaysOutput

SetVpnGateways sets the VpnGateways field's value.

func (DescribeVpnGatewaysOutput) String

func (s DescribeVpnGatewaysOutput) String() string

String returns the string representation

type DetachClassicLinkVpcInput

Contains the parameters for DetachClassicLinkVpc. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DetachClassicLinkVpcRequest

type DetachClassicLinkVpcInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the instance to unlink from the VPC.
    //
    // InstanceId is a required field
    InstanceId *string `locationName:"instanceId" type:"string" required:"true"`

    // The ID of the VPC to which the instance is linked.
    //
    // VpcId is a required field
    VpcId *string `locationName:"vpcId" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DetachClassicLinkVpcInput) GoString

func (s DetachClassicLinkVpcInput) GoString() string

GoString returns the string representation

func (*DetachClassicLinkVpcInput) SetDryRun

func (s *DetachClassicLinkVpcInput) SetDryRun(v bool) *DetachClassicLinkVpcInput

SetDryRun sets the DryRun field's value.

func (*DetachClassicLinkVpcInput) SetInstanceId

func (s *DetachClassicLinkVpcInput) SetInstanceId(v string) *DetachClassicLinkVpcInput

SetInstanceId sets the InstanceId field's value.

func (*DetachClassicLinkVpcInput) SetVpcId

func (s *DetachClassicLinkVpcInput) SetVpcId(v string) *DetachClassicLinkVpcInput

SetVpcId sets the VpcId field's value.

func (DetachClassicLinkVpcInput) String

func (s DetachClassicLinkVpcInput) String() string

String returns the string representation

func (*DetachClassicLinkVpcInput) Validate

func (s *DetachClassicLinkVpcInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DetachClassicLinkVpcOutput

Contains the output of DetachClassicLinkVpc. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DetachClassicLinkVpcResult

type DetachClassicLinkVpcOutput struct {

    // Returns true if the request succeeds; otherwise, it returns an error.
    Return *bool `locationName:"return" type:"boolean"`
    // contains filtered or unexported fields
}

func (DetachClassicLinkVpcOutput) GoString

func (s DetachClassicLinkVpcOutput) GoString() string

GoString returns the string representation

func (*DetachClassicLinkVpcOutput) SetReturn

func (s *DetachClassicLinkVpcOutput) SetReturn(v bool) *DetachClassicLinkVpcOutput

SetReturn sets the Return field's value.

func (DetachClassicLinkVpcOutput) String

func (s DetachClassicLinkVpcOutput) String() string

String returns the string representation

type DetachInternetGatewayInput

Contains the parameters for DetachInternetGateway. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DetachInternetGatewayRequest

type DetachInternetGatewayInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the Internet gateway.
    //
    // InternetGatewayId is a required field
    InternetGatewayId *string `locationName:"internetGatewayId" type:"string" required:"true"`

    // The ID of the VPC.
    //
    // VpcId is a required field
    VpcId *string `locationName:"vpcId" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DetachInternetGatewayInput) GoString

func (s DetachInternetGatewayInput) GoString() string

GoString returns the string representation

func (*DetachInternetGatewayInput) SetDryRun

func (s *DetachInternetGatewayInput) SetDryRun(v bool) *DetachInternetGatewayInput

SetDryRun sets the DryRun field's value.

func (*DetachInternetGatewayInput) SetInternetGatewayId

func (s *DetachInternetGatewayInput) SetInternetGatewayId(v string) *DetachInternetGatewayInput

SetInternetGatewayId sets the InternetGatewayId field's value.

func (*DetachInternetGatewayInput) SetVpcId

func (s *DetachInternetGatewayInput) SetVpcId(v string) *DetachInternetGatewayInput

SetVpcId sets the VpcId field's value.

func (DetachInternetGatewayInput) String

func (s DetachInternetGatewayInput) String() string

String returns the string representation

func (*DetachInternetGatewayInput) Validate

func (s *DetachInternetGatewayInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DetachInternetGatewayOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DetachInternetGatewayOutput

type DetachInternetGatewayOutput struct {
    // contains filtered or unexported fields
}

func (DetachInternetGatewayOutput) GoString

func (s DetachInternetGatewayOutput) GoString() string

GoString returns the string representation

func (DetachInternetGatewayOutput) String

func (s DetachInternetGatewayOutput) String() string

String returns the string representation

type DetachNetworkInterfaceInput

Contains the parameters for DetachNetworkInterface. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DetachNetworkInterfaceRequest

type DetachNetworkInterfaceInput struct {

    // The ID of the attachment.
    //
    // AttachmentId is a required field
    AttachmentId *string `locationName:"attachmentId" type:"string" required:"true"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // Specifies whether to force a detachment.
    Force *bool `locationName:"force" type:"boolean"`
    // contains filtered or unexported fields
}

func (DetachNetworkInterfaceInput) GoString

func (s DetachNetworkInterfaceInput) GoString() string

GoString returns the string representation

func (*DetachNetworkInterfaceInput) SetAttachmentId

func (s *DetachNetworkInterfaceInput) SetAttachmentId(v string) *DetachNetworkInterfaceInput

SetAttachmentId sets the AttachmentId field's value.

func (*DetachNetworkInterfaceInput) SetDryRun

func (s *DetachNetworkInterfaceInput) SetDryRun(v bool) *DetachNetworkInterfaceInput

SetDryRun sets the DryRun field's value.

func (*DetachNetworkInterfaceInput) SetForce

func (s *DetachNetworkInterfaceInput) SetForce(v bool) *DetachNetworkInterfaceInput

SetForce sets the Force field's value.

func (DetachNetworkInterfaceInput) String

func (s DetachNetworkInterfaceInput) String() string

String returns the string representation

func (*DetachNetworkInterfaceInput) Validate

func (s *DetachNetworkInterfaceInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DetachNetworkInterfaceOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DetachNetworkInterfaceOutput

type DetachNetworkInterfaceOutput struct {
    // contains filtered or unexported fields
}

func (DetachNetworkInterfaceOutput) GoString

func (s DetachNetworkInterfaceOutput) GoString() string

GoString returns the string representation

func (DetachNetworkInterfaceOutput) String

func (s DetachNetworkInterfaceOutput) String() string

String returns the string representation

type DetachVolumeInput

Contains the parameters for DetachVolume. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DetachVolumeRequest

type DetachVolumeInput struct {

    // The device name.
    Device *string `type:"string"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // Forces detachment if the previous detachment attempt did not occur cleanly
    // (for example, logging into an instance, unmounting the volume, and detaching
    // normally). This option can lead to data loss or a corrupted file system.
    // Use this option only as a last resort to detach a volume from a failed instance.
    // The instance won't have an opportunity to flush file system caches or file
    // system metadata. If you use this option, you must perform file system check
    // and repair procedures.
    Force *bool `type:"boolean"`

    // The ID of the instance.
    InstanceId *string `type:"string"`

    // The ID of the volume.
    //
    // VolumeId is a required field
    VolumeId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DetachVolumeInput) GoString

func (s DetachVolumeInput) GoString() string

GoString returns the string representation

func (*DetachVolumeInput) SetDevice

func (s *DetachVolumeInput) SetDevice(v string) *DetachVolumeInput

SetDevice sets the Device field's value.

func (*DetachVolumeInput) SetDryRun

func (s *DetachVolumeInput) SetDryRun(v bool) *DetachVolumeInput

SetDryRun sets the DryRun field's value.

func (*DetachVolumeInput) SetForce

func (s *DetachVolumeInput) SetForce(v bool) *DetachVolumeInput

SetForce sets the Force field's value.

func (*DetachVolumeInput) SetInstanceId

func (s *DetachVolumeInput) SetInstanceId(v string) *DetachVolumeInput

SetInstanceId sets the InstanceId field's value.

func (*DetachVolumeInput) SetVolumeId

func (s *DetachVolumeInput) SetVolumeId(v string) *DetachVolumeInput

SetVolumeId sets the VolumeId field's value.

func (DetachVolumeInput) String

func (s DetachVolumeInput) String() string

String returns the string representation

func (*DetachVolumeInput) Validate

func (s *DetachVolumeInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DetachVpnGatewayInput

Contains the parameters for DetachVpnGateway. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DetachVpnGatewayRequest

type DetachVpnGatewayInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the VPC.
    //
    // VpcId is a required field
    VpcId *string `type:"string" required:"true"`

    // The ID of the virtual private gateway.
    //
    // VpnGatewayId is a required field
    VpnGatewayId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DetachVpnGatewayInput) GoString

func (s DetachVpnGatewayInput) GoString() string

GoString returns the string representation

func (*DetachVpnGatewayInput) SetDryRun

func (s *DetachVpnGatewayInput) SetDryRun(v bool) *DetachVpnGatewayInput

SetDryRun sets the DryRun field's value.

func (*DetachVpnGatewayInput) SetVpcId

func (s *DetachVpnGatewayInput) SetVpcId(v string) *DetachVpnGatewayInput

SetVpcId sets the VpcId field's value.

func (*DetachVpnGatewayInput) SetVpnGatewayId

func (s *DetachVpnGatewayInput) SetVpnGatewayId(v string) *DetachVpnGatewayInput

SetVpnGatewayId sets the VpnGatewayId field's value.

func (DetachVpnGatewayInput) String

func (s DetachVpnGatewayInput) String() string

String returns the string representation

func (*DetachVpnGatewayInput) Validate

func (s *DetachVpnGatewayInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DetachVpnGatewayOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DetachVpnGatewayOutput

type DetachVpnGatewayOutput struct {
    // contains filtered or unexported fields
}

func (DetachVpnGatewayOutput) GoString

func (s DetachVpnGatewayOutput) GoString() string

GoString returns the string representation

func (DetachVpnGatewayOutput) String

func (s DetachVpnGatewayOutput) String() string

String returns the string representation

type DhcpConfiguration

Describes a DHCP configuration option. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DhcpConfiguration

type DhcpConfiguration struct {

    // The name of a DHCP option.
    Key *string `locationName:"key" type:"string"`

    // One or more values for the DHCP option.
    Values []*AttributeValue `locationName:"valueSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DhcpConfiguration) GoString

func (s DhcpConfiguration) GoString() string

GoString returns the string representation

func (*DhcpConfiguration) SetKey

func (s *DhcpConfiguration) SetKey(v string) *DhcpConfiguration

SetKey sets the Key field's value.

func (*DhcpConfiguration) SetValues

func (s *DhcpConfiguration) SetValues(v []*AttributeValue) *DhcpConfiguration

SetValues sets the Values field's value.

func (DhcpConfiguration) String

func (s DhcpConfiguration) String() string

String returns the string representation

type DhcpOptions

Describes a set of DHCP options. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DhcpOptions

type DhcpOptions struct {

    // One or more DHCP options in the set.
    DhcpConfigurations []*DhcpConfiguration `locationName:"dhcpConfigurationSet" locationNameList:"item" type:"list"`

    // The ID of the set of DHCP options.
    DhcpOptionsId *string `locationName:"dhcpOptionsId" type:"string"`

    // Any tags assigned to the DHCP options set.
    Tags []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (DhcpOptions) GoString

func (s DhcpOptions) GoString() string

GoString returns the string representation

func (*DhcpOptions) SetDhcpConfigurations

func (s *DhcpOptions) SetDhcpConfigurations(v []*DhcpConfiguration) *DhcpOptions

SetDhcpConfigurations sets the DhcpConfigurations field's value.

func (*DhcpOptions) SetDhcpOptionsId

func (s *DhcpOptions) SetDhcpOptionsId(v string) *DhcpOptions

SetDhcpOptionsId sets the DhcpOptionsId field's value.

func (*DhcpOptions) SetTags

func (s *DhcpOptions) SetTags(v []*Tag) *DhcpOptions

SetTags sets the Tags field's value.

func (DhcpOptions) String

func (s DhcpOptions) String() string

String returns the string representation

type DisableVgwRoutePropagationInput

Contains the parameters for DisableVgwRoutePropagation. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisableVgwRoutePropagationRequest

type DisableVgwRoutePropagationInput struct {

    // The ID of the virtual private gateway.
    //
    // GatewayId is a required field
    GatewayId *string `type:"string" required:"true"`

    // The ID of the route table.
    //
    // RouteTableId is a required field
    RouteTableId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DisableVgwRoutePropagationInput) GoString

func (s DisableVgwRoutePropagationInput) GoString() string

GoString returns the string representation

func (*DisableVgwRoutePropagationInput) SetGatewayId

func (s *DisableVgwRoutePropagationInput) SetGatewayId(v string) *DisableVgwRoutePropagationInput

SetGatewayId sets the GatewayId field's value.

func (*DisableVgwRoutePropagationInput) SetRouteTableId

func (s *DisableVgwRoutePropagationInput) SetRouteTableId(v string) *DisableVgwRoutePropagationInput

SetRouteTableId sets the RouteTableId field's value.

func (DisableVgwRoutePropagationInput) String

func (s DisableVgwRoutePropagationInput) String() string

String returns the string representation

func (*DisableVgwRoutePropagationInput) Validate

func (s *DisableVgwRoutePropagationInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DisableVgwRoutePropagationOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisableVgwRoutePropagationOutput

type DisableVgwRoutePropagationOutput struct {
    // contains filtered or unexported fields
}

func (DisableVgwRoutePropagationOutput) GoString

func (s DisableVgwRoutePropagationOutput) GoString() string

GoString returns the string representation

func (DisableVgwRoutePropagationOutput) String

func (s DisableVgwRoutePropagationOutput) String() string

String returns the string representation

type DisableVpcClassicLinkDnsSupportInput

Contains the parameters for DisableVpcClassicLinkDnsSupport. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisableVpcClassicLinkDnsSupportRequest

type DisableVpcClassicLinkDnsSupportInput struct {

    // The ID of the VPC.
    VpcId *string `type:"string"`
    // contains filtered or unexported fields
}

func (DisableVpcClassicLinkDnsSupportInput) GoString

func (s DisableVpcClassicLinkDnsSupportInput) GoString() string

GoString returns the string representation

func (*DisableVpcClassicLinkDnsSupportInput) SetVpcId

func (s *DisableVpcClassicLinkDnsSupportInput) SetVpcId(v string) *DisableVpcClassicLinkDnsSupportInput

SetVpcId sets the VpcId field's value.

func (DisableVpcClassicLinkDnsSupportInput) String

func (s DisableVpcClassicLinkDnsSupportInput) String() string

String returns the string representation

type DisableVpcClassicLinkDnsSupportOutput

Contains the output of DisableVpcClassicLinkDnsSupport. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisableVpcClassicLinkDnsSupportResult

type DisableVpcClassicLinkDnsSupportOutput struct {

    // Returns true if the request succeeds; otherwise, it returns an error.
    Return *bool `locationName:"return" type:"boolean"`
    // contains filtered or unexported fields
}

func (DisableVpcClassicLinkDnsSupportOutput) GoString

func (s DisableVpcClassicLinkDnsSupportOutput) GoString() string

GoString returns the string representation

func (*DisableVpcClassicLinkDnsSupportOutput) SetReturn

func (s *DisableVpcClassicLinkDnsSupportOutput) SetReturn(v bool) *DisableVpcClassicLinkDnsSupportOutput

SetReturn sets the Return field's value.

func (DisableVpcClassicLinkDnsSupportOutput) String

func (s DisableVpcClassicLinkDnsSupportOutput) String() string

String returns the string representation

type DisableVpcClassicLinkInput

Contains the parameters for DisableVpcClassicLink. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisableVpcClassicLinkRequest

type DisableVpcClassicLinkInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the VPC.
    //
    // VpcId is a required field
    VpcId *string `locationName:"vpcId" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DisableVpcClassicLinkInput) GoString

func (s DisableVpcClassicLinkInput) GoString() string

GoString returns the string representation

func (*DisableVpcClassicLinkInput) SetDryRun

func (s *DisableVpcClassicLinkInput) SetDryRun(v bool) *DisableVpcClassicLinkInput

SetDryRun sets the DryRun field's value.

func (*DisableVpcClassicLinkInput) SetVpcId

func (s *DisableVpcClassicLinkInput) SetVpcId(v string) *DisableVpcClassicLinkInput

SetVpcId sets the VpcId field's value.

func (DisableVpcClassicLinkInput) String

func (s DisableVpcClassicLinkInput) String() string

String returns the string representation

func (*DisableVpcClassicLinkInput) Validate

func (s *DisableVpcClassicLinkInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DisableVpcClassicLinkOutput

Contains the output of DisableVpcClassicLink. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisableVpcClassicLinkResult

type DisableVpcClassicLinkOutput struct {

    // Returns true if the request succeeds; otherwise, it returns an error.
    Return *bool `locationName:"return" type:"boolean"`
    // contains filtered or unexported fields
}

func (DisableVpcClassicLinkOutput) GoString

func (s DisableVpcClassicLinkOutput) GoString() string

GoString returns the string representation

func (*DisableVpcClassicLinkOutput) SetReturn

func (s *DisableVpcClassicLinkOutput) SetReturn(v bool) *DisableVpcClassicLinkOutput

SetReturn sets the Return field's value.

func (DisableVpcClassicLinkOutput) String

func (s DisableVpcClassicLinkOutput) String() string

String returns the string representation

type DisassociateAddressInput

Contains the parameters for DisassociateAddress. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisassociateAddressRequest

type DisassociateAddressInput struct {

    // [EC2-VPC] The association ID. Required for EC2-VPC.
    AssociationId *string `type:"string"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // [EC2-Classic] The Elastic IP address. Required for EC2-Classic.
    PublicIp *string `type:"string"`
    // contains filtered or unexported fields
}

func (DisassociateAddressInput) GoString

func (s DisassociateAddressInput) GoString() string

GoString returns the string representation

func (*DisassociateAddressInput) SetAssociationId

func (s *DisassociateAddressInput) SetAssociationId(v string) *DisassociateAddressInput

SetAssociationId sets the AssociationId field's value.

func (*DisassociateAddressInput) SetDryRun

func (s *DisassociateAddressInput) SetDryRun(v bool) *DisassociateAddressInput

SetDryRun sets the DryRun field's value.

func (*DisassociateAddressInput) SetPublicIp

func (s *DisassociateAddressInput) SetPublicIp(v string) *DisassociateAddressInput

SetPublicIp sets the PublicIp field's value.

func (DisassociateAddressInput) String

func (s DisassociateAddressInput) String() string

String returns the string representation

type DisassociateAddressOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisassociateAddressOutput

type DisassociateAddressOutput struct {
    // contains filtered or unexported fields
}

func (DisassociateAddressOutput) GoString

func (s DisassociateAddressOutput) GoString() string

GoString returns the string representation

func (DisassociateAddressOutput) String

func (s DisassociateAddressOutput) String() string

String returns the string representation

type DisassociateIamInstanceProfileInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisassociateIamInstanceProfileRequest

type DisassociateIamInstanceProfileInput struct {

    // The ID of the IAM instance profile association.
    //
    // AssociationId is a required field
    AssociationId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DisassociateIamInstanceProfileInput) GoString

func (s DisassociateIamInstanceProfileInput) GoString() string

GoString returns the string representation

func (*DisassociateIamInstanceProfileInput) SetAssociationId

func (s *DisassociateIamInstanceProfileInput) SetAssociationId(v string) *DisassociateIamInstanceProfileInput

SetAssociationId sets the AssociationId field's value.

func (DisassociateIamInstanceProfileInput) String

func (s DisassociateIamInstanceProfileInput) String() string

String returns the string representation

func (*DisassociateIamInstanceProfileInput) Validate

func (s *DisassociateIamInstanceProfileInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DisassociateIamInstanceProfileOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisassociateIamInstanceProfileResult

type DisassociateIamInstanceProfileOutput struct {

    // Information about the IAM instance profile association.
    IamInstanceProfileAssociation *IamInstanceProfileAssociation `locationName:"iamInstanceProfileAssociation" type:"structure"`
    // contains filtered or unexported fields
}

func (DisassociateIamInstanceProfileOutput) GoString

func (s DisassociateIamInstanceProfileOutput) GoString() string

GoString returns the string representation

func (*DisassociateIamInstanceProfileOutput) SetIamInstanceProfileAssociation

func (s *DisassociateIamInstanceProfileOutput) SetIamInstanceProfileAssociation(v *IamInstanceProfileAssociation) *DisassociateIamInstanceProfileOutput

SetIamInstanceProfileAssociation sets the IamInstanceProfileAssociation field's value.

func (DisassociateIamInstanceProfileOutput) String

func (s DisassociateIamInstanceProfileOutput) String() string

String returns the string representation

type DisassociateRouteTableInput

Contains the parameters for DisassociateRouteTable. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisassociateRouteTableRequest

type DisassociateRouteTableInput struct {

    // The association ID representing the current association between the route
    // table and subnet.
    //
    // AssociationId is a required field
    AssociationId *string `locationName:"associationId" type:"string" required:"true"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`
    // contains filtered or unexported fields
}

func (DisassociateRouteTableInput) GoString

func (s DisassociateRouteTableInput) GoString() string

GoString returns the string representation

func (*DisassociateRouteTableInput) SetAssociationId

func (s *DisassociateRouteTableInput) SetAssociationId(v string) *DisassociateRouteTableInput

SetAssociationId sets the AssociationId field's value.

func (*DisassociateRouteTableInput) SetDryRun

func (s *DisassociateRouteTableInput) SetDryRun(v bool) *DisassociateRouteTableInput

SetDryRun sets the DryRun field's value.

func (DisassociateRouteTableInput) String

func (s DisassociateRouteTableInput) String() string

String returns the string representation

func (*DisassociateRouteTableInput) Validate

func (s *DisassociateRouteTableInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DisassociateRouteTableOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisassociateRouteTableOutput

type DisassociateRouteTableOutput struct {
    // contains filtered or unexported fields
}

func (DisassociateRouteTableOutput) GoString

func (s DisassociateRouteTableOutput) GoString() string

GoString returns the string representation

func (DisassociateRouteTableOutput) String

func (s DisassociateRouteTableOutput) String() string

String returns the string representation

type DisassociateSubnetCidrBlockInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisassociateSubnetCidrBlockRequest

type DisassociateSubnetCidrBlockInput struct {

    // The association ID for the CIDR block.
    //
    // AssociationId is a required field
    AssociationId *string `locationName:"associationId" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DisassociateSubnetCidrBlockInput) GoString

func (s DisassociateSubnetCidrBlockInput) GoString() string

GoString returns the string representation

func (*DisassociateSubnetCidrBlockInput) SetAssociationId

func (s *DisassociateSubnetCidrBlockInput) SetAssociationId(v string) *DisassociateSubnetCidrBlockInput

SetAssociationId sets the AssociationId field's value.

func (DisassociateSubnetCidrBlockInput) String

func (s DisassociateSubnetCidrBlockInput) String() string

String returns the string representation

func (*DisassociateSubnetCidrBlockInput) Validate

func (s *DisassociateSubnetCidrBlockInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DisassociateSubnetCidrBlockOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisassociateSubnetCidrBlockResult

type DisassociateSubnetCidrBlockOutput struct {

    // Information about the IPv6 CIDR block association.
    Ipv6CidrBlockAssociation *SubnetIpv6CidrBlockAssociation `locationName:"ipv6CidrBlockAssociation" type:"structure"`

    // The ID of the subnet.
    SubnetId *string `locationName:"subnetId" type:"string"`
    // contains filtered or unexported fields
}

func (DisassociateSubnetCidrBlockOutput) GoString

func (s DisassociateSubnetCidrBlockOutput) GoString() string

GoString returns the string representation

func (*DisassociateSubnetCidrBlockOutput) SetIpv6CidrBlockAssociation

func (s *DisassociateSubnetCidrBlockOutput) SetIpv6CidrBlockAssociation(v *SubnetIpv6CidrBlockAssociation) *DisassociateSubnetCidrBlockOutput

SetIpv6CidrBlockAssociation sets the Ipv6CidrBlockAssociation field's value.

func (*DisassociateSubnetCidrBlockOutput) SetSubnetId

func (s *DisassociateSubnetCidrBlockOutput) SetSubnetId(v string) *DisassociateSubnetCidrBlockOutput

SetSubnetId sets the SubnetId field's value.

func (DisassociateSubnetCidrBlockOutput) String

func (s DisassociateSubnetCidrBlockOutput) String() string

String returns the string representation

type DisassociateVpcCidrBlockInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisassociateVpcCidrBlockRequest

type DisassociateVpcCidrBlockInput struct {

    // The association ID for the CIDR block.
    //
    // AssociationId is a required field
    AssociationId *string `locationName:"associationId" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DisassociateVpcCidrBlockInput) GoString

func (s DisassociateVpcCidrBlockInput) GoString() string

GoString returns the string representation

func (*DisassociateVpcCidrBlockInput) SetAssociationId

func (s *DisassociateVpcCidrBlockInput) SetAssociationId(v string) *DisassociateVpcCidrBlockInput

SetAssociationId sets the AssociationId field's value.

func (DisassociateVpcCidrBlockInput) String

func (s DisassociateVpcCidrBlockInput) String() string

String returns the string representation

func (*DisassociateVpcCidrBlockInput) Validate

func (s *DisassociateVpcCidrBlockInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DisassociateVpcCidrBlockOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisassociateVpcCidrBlockResult

type DisassociateVpcCidrBlockOutput struct {

    // Information about the IPv6 CIDR block association.
    Ipv6CidrBlockAssociation *VpcIpv6CidrBlockAssociation `locationName:"ipv6CidrBlockAssociation" type:"structure"`

    // The ID of the VPC.
    VpcId *string `locationName:"vpcId" type:"string"`
    // contains filtered or unexported fields
}

func (DisassociateVpcCidrBlockOutput) GoString

func (s DisassociateVpcCidrBlockOutput) GoString() string

GoString returns the string representation

func (*DisassociateVpcCidrBlockOutput) SetIpv6CidrBlockAssociation

func (s *DisassociateVpcCidrBlockOutput) SetIpv6CidrBlockAssociation(v *VpcIpv6CidrBlockAssociation) *DisassociateVpcCidrBlockOutput

SetIpv6CidrBlockAssociation sets the Ipv6CidrBlockAssociation field's value.

func (*DisassociateVpcCidrBlockOutput) SetVpcId

func (s *DisassociateVpcCidrBlockOutput) SetVpcId(v string) *DisassociateVpcCidrBlockOutput

SetVpcId sets the VpcId field's value.

func (DisassociateVpcCidrBlockOutput) String

func (s DisassociateVpcCidrBlockOutput) String() string

String returns the string representation

type DiskImage

Describes a disk image. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DiskImage

type DiskImage struct {

    // A description of the disk image.
    Description *string `type:"string"`

    // Information about the disk image.
    Image *DiskImageDetail `type:"structure"`

    // Information about the volume.
    Volume *VolumeDetail `type:"structure"`
    // contains filtered or unexported fields
}

func (DiskImage) GoString

func (s DiskImage) GoString() string

GoString returns the string representation

func (*DiskImage) SetDescription

func (s *DiskImage) SetDescription(v string) *DiskImage

SetDescription sets the Description field's value.

func (*DiskImage) SetImage

func (s *DiskImage) SetImage(v *DiskImageDetail) *DiskImage

SetImage sets the Image field's value.

func (*DiskImage) SetVolume

func (s *DiskImage) SetVolume(v *VolumeDetail) *DiskImage

SetVolume sets the Volume field's value.

func (DiskImage) String

func (s DiskImage) String() string

String returns the string representation

func (*DiskImage) Validate

func (s *DiskImage) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DiskImageDescription

Describes a disk image. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DiskImageDescription

type DiskImageDescription struct {

    // The checksum computed for the disk image.
    Checksum *string `locationName:"checksum" type:"string"`

    // The disk image format.
    //
    // Format is a required field
    Format *string `locationName:"format" type:"string" required:"true" enum:"DiskImageFormat"`

    // A presigned URL for the import manifest stored in Amazon S3. For information
    // about creating a presigned URL for an Amazon S3 object, read the "Query String
    // Request Authentication Alternative" section of the Authenticating REST Requests
    // (http://docs.aws.amazon.com/AmazonS3/latest/dev/RESTAuthentication.html)
    // topic in the Amazon Simple Storage Service Developer Guide.
    //
    // For information about the import manifest referenced by this API action,
    // see VM Import Manifest (http://docs.aws.amazon.com/AWSEC2/latest/APIReference/manifest.html).
    //
    // ImportManifestUrl is a required field
    ImportManifestUrl *string `locationName:"importManifestUrl" type:"string" required:"true"`

    // The size of the disk image, in GiB.
    //
    // Size is a required field
    Size *int64 `locationName:"size" type:"long" required:"true"`
    // contains filtered or unexported fields
}

func (DiskImageDescription) GoString

func (s DiskImageDescription) GoString() string

GoString returns the string representation

func (*DiskImageDescription) SetChecksum

func (s *DiskImageDescription) SetChecksum(v string) *DiskImageDescription

SetChecksum sets the Checksum field's value.

func (*DiskImageDescription) SetFormat

func (s *DiskImageDescription) SetFormat(v string) *DiskImageDescription

SetFormat sets the Format field's value.

func (*DiskImageDescription) SetImportManifestUrl

func (s *DiskImageDescription) SetImportManifestUrl(v string) *DiskImageDescription

SetImportManifestUrl sets the ImportManifestUrl field's value.

func (*DiskImageDescription) SetSize

func (s *DiskImageDescription) SetSize(v int64) *DiskImageDescription

SetSize sets the Size field's value.

func (DiskImageDescription) String

func (s DiskImageDescription) String() string

String returns the string representation

type DiskImageDetail

Describes a disk image. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DiskImageDetail

type DiskImageDetail struct {

    // The size of the disk image, in GiB.
    //
    // Bytes is a required field
    Bytes *int64 `locationName:"bytes" type:"long" required:"true"`

    // The disk image format.
    //
    // Format is a required field
    Format *string `locationName:"format" type:"string" required:"true" enum:"DiskImageFormat"`

    // A presigned URL for the import manifest stored in Amazon S3 and presented
    // here as an Amazon S3 presigned URL. For information about creating a presigned
    // URL for an Amazon S3 object, read the "Query String Request Authentication
    // Alternative" section of the Authenticating REST Requests (http://docs.aws.amazon.com/AmazonS3/latest/dev/RESTAuthentication.html)
    // topic in the Amazon Simple Storage Service Developer Guide.
    //
    // For information about the import manifest referenced by this API action,
    // see VM Import Manifest (http://docs.aws.amazon.com/AWSEC2/latest/APIReference/manifest.html).
    //
    // ImportManifestUrl is a required field
    ImportManifestUrl *string `locationName:"importManifestUrl" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DiskImageDetail) GoString

func (s DiskImageDetail) GoString() string

GoString returns the string representation

func (*DiskImageDetail) SetBytes

func (s *DiskImageDetail) SetBytes(v int64) *DiskImageDetail

SetBytes sets the Bytes field's value.

func (*DiskImageDetail) SetFormat

func (s *DiskImageDetail) SetFormat(v string) *DiskImageDetail

SetFormat sets the Format field's value.

func (*DiskImageDetail) SetImportManifestUrl

func (s *DiskImageDetail) SetImportManifestUrl(v string) *DiskImageDetail

SetImportManifestUrl sets the ImportManifestUrl field's value.

func (DiskImageDetail) String

func (s DiskImageDetail) String() string

String returns the string representation

func (*DiskImageDetail) Validate

func (s *DiskImageDetail) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DiskImageVolumeDescription

Describes a disk image volume. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DiskImageVolumeDescription

type DiskImageVolumeDescription struct {

    // The volume identifier.
    //
    // Id is a required field
    Id *string `locationName:"id" type:"string" required:"true"`

    // The size of the volume, in GiB.
    Size *int64 `locationName:"size" type:"long"`
    // contains filtered or unexported fields
}

func (DiskImageVolumeDescription) GoString

func (s DiskImageVolumeDescription) GoString() string

GoString returns the string representation

func (*DiskImageVolumeDescription) SetId

func (s *DiskImageVolumeDescription) SetId(v string) *DiskImageVolumeDescription

SetId sets the Id field's value.

func (*DiskImageVolumeDescription) SetSize

func (s *DiskImageVolumeDescription) SetSize(v int64) *DiskImageVolumeDescription

SetSize sets the Size field's value.

func (DiskImageVolumeDescription) String

func (s DiskImageVolumeDescription) String() string

String returns the string representation

type EC2

EC2 provides the API operation methods for making requests to Amazon Elastic Compute Cloud. See this package's package overview docs for details on the service.

EC2 methods are safe to use concurrently. It is not safe to modify mutate any of the struct's properties though.

type EC2 struct {
    *client.Client
}

func New

func New(p client.ConfigProvider, cfgs ...*aws.Config) *EC2

New creates a new instance of the EC2 client with a session. If additional configuration is needed for the client instance use the optional aws.Config parameter to add your extra config.

Example:

// Create a EC2 client from just a session.
svc := ec2.New(mySession)

// Create a EC2 client with additional configuration
svc := ec2.New(mySession, aws.NewConfig().WithRegion("us-west-2"))

func (*EC2) AcceptReservedInstancesExchangeQuote

func (c *EC2) AcceptReservedInstancesExchangeQuote(input *AcceptReservedInstancesExchangeQuoteInput) (*AcceptReservedInstancesExchangeQuoteOutput, error)

AcceptReservedInstancesExchangeQuote API operation for Amazon Elastic Compute Cloud.

Accepts the Convertible Reserved Instance exchange quote described in the GetReservedInstancesExchangeQuote call.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation AcceptReservedInstancesExchangeQuote for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AcceptReservedInstancesExchangeQuote

func (*EC2) AcceptReservedInstancesExchangeQuoteRequest

func (c *EC2) AcceptReservedInstancesExchangeQuoteRequest(input *AcceptReservedInstancesExchangeQuoteInput) (req *request.Request, output *AcceptReservedInstancesExchangeQuoteOutput)

AcceptReservedInstancesExchangeQuoteRequest generates a "aws/request.Request" representing the client's request for the AcceptReservedInstancesExchangeQuote operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See AcceptReservedInstancesExchangeQuote for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the AcceptReservedInstancesExchangeQuote method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the AcceptReservedInstancesExchangeQuoteRequest method.
req, resp := client.AcceptReservedInstancesExchangeQuoteRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AcceptReservedInstancesExchangeQuote

func (*EC2) AcceptReservedInstancesExchangeQuoteWithContext

func (c *EC2) AcceptReservedInstancesExchangeQuoteWithContext(ctx aws.Context, input *AcceptReservedInstancesExchangeQuoteInput, opts ...request.Option) (*AcceptReservedInstancesExchangeQuoteOutput, error)

AcceptReservedInstancesExchangeQuoteWithContext is the same as AcceptReservedInstancesExchangeQuote with the addition of the ability to pass a context and additional request options.

See AcceptReservedInstancesExchangeQuote for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) AcceptVpcPeeringConnection

func (c *EC2) AcceptVpcPeeringConnection(input *AcceptVpcPeeringConnectionInput) (*AcceptVpcPeeringConnectionOutput, error)

AcceptVpcPeeringConnection API operation for Amazon Elastic Compute Cloud.

Accept a VPC peering connection request. To accept a request, the VPC peering connection must be in the pending-acceptance state, and you must be the owner of the peer VPC. Use DescribeVpcPeeringConnections to view your outstanding VPC peering connection requests.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation AcceptVpcPeeringConnection for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AcceptVpcPeeringConnection

func (*EC2) AcceptVpcPeeringConnectionRequest

func (c *EC2) AcceptVpcPeeringConnectionRequest(input *AcceptVpcPeeringConnectionInput) (req *request.Request, output *AcceptVpcPeeringConnectionOutput)

AcceptVpcPeeringConnectionRequest generates a "aws/request.Request" representing the client's request for the AcceptVpcPeeringConnection operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See AcceptVpcPeeringConnection for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the AcceptVpcPeeringConnection method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the AcceptVpcPeeringConnectionRequest method.
req, resp := client.AcceptVpcPeeringConnectionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AcceptVpcPeeringConnection

func (*EC2) AcceptVpcPeeringConnectionWithContext

func (c *EC2) AcceptVpcPeeringConnectionWithContext(ctx aws.Context, input *AcceptVpcPeeringConnectionInput, opts ...request.Option) (*AcceptVpcPeeringConnectionOutput, error)

AcceptVpcPeeringConnectionWithContext is the same as AcceptVpcPeeringConnection with the addition of the ability to pass a context and additional request options.

See AcceptVpcPeeringConnection for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) AllocateAddress

func (c *EC2) AllocateAddress(input *AllocateAddressInput) (*AllocateAddressOutput, error)

AllocateAddress API operation for Amazon Elastic Compute Cloud.

Acquires an Elastic IP address.

An Elastic IP address is for use either in the EC2-Classic platform or in a VPC. For more information, see Elastic IP Addresses (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation AllocateAddress for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AllocateAddress

Example (Shared00)

To allocate an Elastic IP address for EC2-VPC This example allocates an Elastic IP address to use with an instance in a VPC.

Code:

svc := ec2.New(session.New())
input := &ec2.AllocateAddressInput{
    Domain: aws.String("vpc"),
}

result, err := svc.AllocateAddress(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

Example (Shared01)

To allocate an Elastic IP address for EC2-Classic This example allocates an Elastic IP address to use with an instance in EC2-Classic.

Code:

svc := ec2.New(session.New())
input := &ec2.AllocateAddressInput{}

result, err := svc.AllocateAddress(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) AllocateAddressRequest

func (c *EC2) AllocateAddressRequest(input *AllocateAddressInput) (req *request.Request, output *AllocateAddressOutput)

AllocateAddressRequest generates a "aws/request.Request" representing the client's request for the AllocateAddress operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See AllocateAddress for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the AllocateAddress method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the AllocateAddressRequest method.
req, resp := client.AllocateAddressRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AllocateAddress

func (*EC2) AllocateAddressWithContext

func (c *EC2) AllocateAddressWithContext(ctx aws.Context, input *AllocateAddressInput, opts ...request.Option) (*AllocateAddressOutput, error)

AllocateAddressWithContext is the same as AllocateAddress with the addition of the ability to pass a context and additional request options.

See AllocateAddress for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) AllocateHosts

func (c *EC2) AllocateHosts(input *AllocateHostsInput) (*AllocateHostsOutput, error)

AllocateHosts API operation for Amazon Elastic Compute Cloud.

Allocates a Dedicated Host to your account. At minimum you need to specify the instance size type, Availability Zone, and quantity of hosts you want to allocate.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation AllocateHosts for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AllocateHosts

func (*EC2) AllocateHostsRequest

func (c *EC2) AllocateHostsRequest(input *AllocateHostsInput) (req *request.Request, output *AllocateHostsOutput)

AllocateHostsRequest generates a "aws/request.Request" representing the client's request for the AllocateHosts operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See AllocateHosts for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the AllocateHosts method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the AllocateHostsRequest method.
req, resp := client.AllocateHostsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AllocateHosts

func (*EC2) AllocateHostsWithContext

func (c *EC2) AllocateHostsWithContext(ctx aws.Context, input *AllocateHostsInput, opts ...request.Option) (*AllocateHostsOutput, error)

AllocateHostsWithContext is the same as AllocateHosts with the addition of the ability to pass a context and additional request options.

See AllocateHosts for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) AssignIpv6Addresses

func (c *EC2) AssignIpv6Addresses(input *AssignIpv6AddressesInput) (*AssignIpv6AddressesOutput, error)

AssignIpv6Addresses API operation for Amazon Elastic Compute Cloud.

Assigns one or more IPv6 addresses to the specified network interface. You can specify one or more specific IPv6 addresses, or you can specify the number of IPv6 addresses to be automatically assigned from within the subnet's IPv6 CIDR block range. You can assign as many IPv6 addresses to a network interface as you can assign private IPv4 addresses, and the limit varies per instance type. For information, see IP Addresses Per Network Interface Per Instance Type (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-eni.html#AvailableIpPerENI) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation AssignIpv6Addresses for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssignIpv6Addresses

func (*EC2) AssignIpv6AddressesRequest

func (c *EC2) AssignIpv6AddressesRequest(input *AssignIpv6AddressesInput) (req *request.Request, output *AssignIpv6AddressesOutput)

AssignIpv6AddressesRequest generates a "aws/request.Request" representing the client's request for the AssignIpv6Addresses operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See AssignIpv6Addresses for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the AssignIpv6Addresses method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the AssignIpv6AddressesRequest method.
req, resp := client.AssignIpv6AddressesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssignIpv6Addresses

func (*EC2) AssignIpv6AddressesWithContext

func (c *EC2) AssignIpv6AddressesWithContext(ctx aws.Context, input *AssignIpv6AddressesInput, opts ...request.Option) (*AssignIpv6AddressesOutput, error)

AssignIpv6AddressesWithContext is the same as AssignIpv6Addresses with the addition of the ability to pass a context and additional request options.

See AssignIpv6Addresses for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) AssignPrivateIpAddresses

func (c *EC2) AssignPrivateIpAddresses(input *AssignPrivateIpAddressesInput) (*AssignPrivateIpAddressesOutput, error)

AssignPrivateIpAddresses API operation for Amazon Elastic Compute Cloud.

Assigns one or more secondary private IP addresses to the specified network interface. You can specify one or more specific secondary IP addresses, or you can specify the number of secondary IP addresses to be automatically assigned within the subnet's CIDR block range. The number of secondary IP addresses that you can assign to an instance varies by instance type. For information about instance types, see Instance Types (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html) in the Amazon Elastic Compute Cloud User Guide. For more information about Elastic IP addresses, see Elastic IP Addresses (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html) in the Amazon Elastic Compute Cloud User Guide.

AssignPrivateIpAddresses is available only in EC2-VPC.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation AssignPrivateIpAddresses for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssignPrivateIpAddresses

Example (Shared00)

To assign a specific secondary private IP address to an interface This example assigns the specified secondary private IP address to the specified network interface.

Code:

svc := ec2.New(session.New())
input := &ec2.AssignPrivateIpAddressesInput{
    NetworkInterfaceId: aws.String("eni-e5aa89a3"),
    PrivateIpAddresses: []*string{
        aws.String("10.0.0.82"),
    },
}

result, err := svc.AssignPrivateIpAddresses(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

Example (Shared01)

To assign secondary private IP addresses that Amazon EC2 selects to an interface This example assigns two secondary private IP addresses to the specified network interface. Amazon EC2 automatically assigns these IP addresses from the available IP addresses in the CIDR block range of the subnet the network interface is associated with.

Code:

svc := ec2.New(session.New())
input := &ec2.AssignPrivateIpAddressesInput{
    NetworkInterfaceId:             aws.String("eni-e5aa89a3"),
    SecondaryPrivateIpAddressCount: aws.Int64(2),
}

result, err := svc.AssignPrivateIpAddresses(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) AssignPrivateIpAddressesRequest

func (c *EC2) AssignPrivateIpAddressesRequest(input *AssignPrivateIpAddressesInput) (req *request.Request, output *AssignPrivateIpAddressesOutput)

AssignPrivateIpAddressesRequest generates a "aws/request.Request" representing the client's request for the AssignPrivateIpAddresses operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See AssignPrivateIpAddresses for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the AssignPrivateIpAddresses method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the AssignPrivateIpAddressesRequest method.
req, resp := client.AssignPrivateIpAddressesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssignPrivateIpAddresses

func (*EC2) AssignPrivateIpAddressesWithContext

func (c *EC2) AssignPrivateIpAddressesWithContext(ctx aws.Context, input *AssignPrivateIpAddressesInput, opts ...request.Option) (*AssignPrivateIpAddressesOutput, error)

AssignPrivateIpAddressesWithContext is the same as AssignPrivateIpAddresses with the addition of the ability to pass a context and additional request options.

See AssignPrivateIpAddresses for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) AssociateAddress

func (c *EC2) AssociateAddress(input *AssociateAddressInput) (*AssociateAddressOutput, error)

AssociateAddress API operation for Amazon Elastic Compute Cloud.

Associates an Elastic IP address with an instance or a network interface.

An Elastic IP address is for use in either the EC2-Classic platform or in a VPC. For more information, see Elastic IP Addresses (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html) in the Amazon Elastic Compute Cloud User Guide.

[EC2-Classic, VPC in an EC2-VPC-only account] If the Elastic IP address is already associated with a different instance, it is disassociated from that instance and associated with the specified instance. If you associate an Elastic IP address with an instance that has an existing Elastic IP address, the existing address is disassociated from the instance, but remains allocated to your account.

[VPC in an EC2-Classic account] If you don't specify a private IP address, the Elastic IP address is associated with the primary IP address. If the Elastic IP address is already associated with a different instance or a network interface, you get an error unless you allow reassociation. You cannot associate an Elastic IP address with an instance or network interface that has an existing Elastic IP address.

This is an idempotent operation. If you perform the operation more than once, Amazon EC2 doesn't return an error, and you may be charged for each time the Elastic IP address is remapped to the same instance. For more information, see the Elastic IP Addresses section of Amazon EC2 Pricing (http://aws.amazon.com/ec2/pricing/).

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation AssociateAddress for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssociateAddress

Example (Shared00)

To associate an Elastic IP address in EC2-VPC This example associates the specified Elastic IP address with the specified instance in a VPC.

Code:

svc := ec2.New(session.New())
input := &ec2.AssociateAddressInput{
    AllocationId: aws.String("eipalloc-64d5890a"),
    InstanceId:   aws.String("i-0b263919b6498b123"),
}

result, err := svc.AssociateAddress(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

Example (Shared01)

To associate an Elastic IP address with a network interface This example associates the specified Elastic IP address with the specified network interface.

Code:

svc := ec2.New(session.New())
input := &ec2.AssociateAddressInput{
    AllocationId:       aws.String("eipalloc-64d5890a"),
    NetworkInterfaceId: aws.String("eni-1a2b3c4d"),
}

result, err := svc.AssociateAddress(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

Example (Shared02)

To associate an Elastic IP address in EC2-Classic This example associates an Elastic IP address with an instance in EC2-Classic.

Code:

svc := ec2.New(session.New())
input := &ec2.AssociateAddressInput{
    InstanceId: aws.String("i-07ffe74c7330ebf53"),
    PublicIp:   aws.String("198.51.100.0"),
}

result, err := svc.AssociateAddress(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) AssociateAddressRequest

func (c *EC2) AssociateAddressRequest(input *AssociateAddressInput) (req *request.Request, output *AssociateAddressOutput)

AssociateAddressRequest generates a "aws/request.Request" representing the client's request for the AssociateAddress operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See AssociateAddress for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the AssociateAddress method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the AssociateAddressRequest method.
req, resp := client.AssociateAddressRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssociateAddress

func (*EC2) AssociateAddressWithContext

func (c *EC2) AssociateAddressWithContext(ctx aws.Context, input *AssociateAddressInput, opts ...request.Option) (*AssociateAddressOutput, error)

AssociateAddressWithContext is the same as AssociateAddress with the addition of the ability to pass a context and additional request options.

See AssociateAddress for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) AssociateDhcpOptions

func (c *EC2) AssociateDhcpOptions(input *AssociateDhcpOptionsInput) (*AssociateDhcpOptionsOutput, error)

AssociateDhcpOptions API operation for Amazon Elastic Compute Cloud.

Associates a set of DHCP options (that you've previously created) with the specified VPC, or associates no DHCP options with the VPC.

After you associate the options with the VPC, any existing instances and all new instances that you launch in that VPC use the options. You don't need to restart or relaunch the instances. They automatically pick up the changes within a few hours, depending on how frequently the instance renews its DHCP lease. You can explicitly renew the lease using the operating system on the instance.

For more information, see DHCP Options Sets (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_DHCP_Options.html) in the Amazon Virtual Private Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation AssociateDhcpOptions for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssociateDhcpOptions

Example (Shared00)

To associate a DHCP options set with a VPC This example associates the specified DHCP options set with the specified VPC.

Code:

svc := ec2.New(session.New())
input := &ec2.AssociateDhcpOptionsInput{
    DhcpOptionsId: aws.String("dopt-d9070ebb"),
    VpcId:         aws.String("vpc-a01106c2"),
}

result, err := svc.AssociateDhcpOptions(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

Example (Shared01)

To associate the default DHCP options set with a VPC This example associates the default DHCP options set with the specified VPC.

Code:

svc := ec2.New(session.New())
input := &ec2.AssociateDhcpOptionsInput{
    DhcpOptionsId: aws.String("default"),
    VpcId:         aws.String("vpc-a01106c2"),
}

result, err := svc.AssociateDhcpOptions(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) AssociateDhcpOptionsRequest

func (c *EC2) AssociateDhcpOptionsRequest(input *AssociateDhcpOptionsInput) (req *request.Request, output *AssociateDhcpOptionsOutput)

AssociateDhcpOptionsRequest generates a "aws/request.Request" representing the client's request for the AssociateDhcpOptions operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See AssociateDhcpOptions for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the AssociateDhcpOptions method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the AssociateDhcpOptionsRequest method.
req, resp := client.AssociateDhcpOptionsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssociateDhcpOptions

func (*EC2) AssociateDhcpOptionsWithContext

func (c *EC2) AssociateDhcpOptionsWithContext(ctx aws.Context, input *AssociateDhcpOptionsInput, opts ...request.Option) (*AssociateDhcpOptionsOutput, error)

AssociateDhcpOptionsWithContext is the same as AssociateDhcpOptions with the addition of the ability to pass a context and additional request options.

See AssociateDhcpOptions for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) AssociateIamInstanceProfile

func (c *EC2) AssociateIamInstanceProfile(input *AssociateIamInstanceProfileInput) (*AssociateIamInstanceProfileOutput, error)

AssociateIamInstanceProfile API operation for Amazon Elastic Compute Cloud.

Associates an IAM instance profile with a running or stopped instance. You cannot associate more than one IAM instance profile with an instance.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation AssociateIamInstanceProfile for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssociateIamInstanceProfile

func (*EC2) AssociateIamInstanceProfileRequest

func (c *EC2) AssociateIamInstanceProfileRequest(input *AssociateIamInstanceProfileInput) (req *request.Request, output *AssociateIamInstanceProfileOutput)

AssociateIamInstanceProfileRequest generates a "aws/request.Request" representing the client's request for the AssociateIamInstanceProfile operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See AssociateIamInstanceProfile for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the AssociateIamInstanceProfile method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the AssociateIamInstanceProfileRequest method.
req, resp := client.AssociateIamInstanceProfileRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssociateIamInstanceProfile

func (*EC2) AssociateIamInstanceProfileWithContext

func (c *EC2) AssociateIamInstanceProfileWithContext(ctx aws.Context, input *AssociateIamInstanceProfileInput, opts ...request.Option) (*AssociateIamInstanceProfileOutput, error)

AssociateIamInstanceProfileWithContext is the same as AssociateIamInstanceProfile with the addition of the ability to pass a context and additional request options.

See AssociateIamInstanceProfile for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) AssociateRouteTable

func (c *EC2) AssociateRouteTable(input *AssociateRouteTableInput) (*AssociateRouteTableOutput, error)

AssociateRouteTable API operation for Amazon Elastic Compute Cloud.

Associates a subnet with a route table. The subnet and route table must be in the same VPC. This association causes traffic originating from the subnet to be routed according to the routes in the route table. The action returns an association ID, which you need in order to disassociate the route table from the subnet later. A route table can be associated with multiple subnets.

For more information about route tables, see Route Tables (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_Route_Tables.html) in the Amazon Virtual Private Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation AssociateRouteTable for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssociateRouteTable

Example (Shared00)

To associate a route table with a subnet This example associates the specified route table with the specified subnet.

Code:

svc := ec2.New(session.New())
input := &ec2.AssociateRouteTableInput{
    RouteTableId: aws.String("rtb-22574640"),
    SubnetId:     aws.String("subnet-9d4a7b6"),
}

result, err := svc.AssociateRouteTable(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) AssociateRouteTableRequest

func (c *EC2) AssociateRouteTableRequest(input *AssociateRouteTableInput) (req *request.Request, output *AssociateRouteTableOutput)

AssociateRouteTableRequest generates a "aws/request.Request" representing the client's request for the AssociateRouteTable operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See AssociateRouteTable for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the AssociateRouteTable method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the AssociateRouteTableRequest method.
req, resp := client.AssociateRouteTableRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssociateRouteTable

func (*EC2) AssociateRouteTableWithContext

func (c *EC2) AssociateRouteTableWithContext(ctx aws.Context, input *AssociateRouteTableInput, opts ...request.Option) (*AssociateRouteTableOutput, error)

AssociateRouteTableWithContext is the same as AssociateRouteTable with the addition of the ability to pass a context and additional request options.

See AssociateRouteTable for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) AssociateSubnetCidrBlock

func (c *EC2) AssociateSubnetCidrBlock(input *AssociateSubnetCidrBlockInput) (*AssociateSubnetCidrBlockOutput, error)

AssociateSubnetCidrBlock API operation for Amazon Elastic Compute Cloud.

Associates a CIDR block with your subnet. You can only associate a single IPv6 CIDR block with your subnet. An IPv6 CIDR block must have a prefix length of /64.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation AssociateSubnetCidrBlock for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssociateSubnetCidrBlock

func (*EC2) AssociateSubnetCidrBlockRequest

func (c *EC2) AssociateSubnetCidrBlockRequest(input *AssociateSubnetCidrBlockInput) (req *request.Request, output *AssociateSubnetCidrBlockOutput)

AssociateSubnetCidrBlockRequest generates a "aws/request.Request" representing the client's request for the AssociateSubnetCidrBlock operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See AssociateSubnetCidrBlock for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the AssociateSubnetCidrBlock method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the AssociateSubnetCidrBlockRequest method.
req, resp := client.AssociateSubnetCidrBlockRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssociateSubnetCidrBlock

func (*EC2) AssociateSubnetCidrBlockWithContext

func (c *EC2) AssociateSubnetCidrBlockWithContext(ctx aws.Context, input *AssociateSubnetCidrBlockInput, opts ...request.Option) (*AssociateSubnetCidrBlockOutput, error)

AssociateSubnetCidrBlockWithContext is the same as AssociateSubnetCidrBlock with the addition of the ability to pass a context and additional request options.

See AssociateSubnetCidrBlock for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) AssociateVpcCidrBlock

func (c *EC2) AssociateVpcCidrBlock(input *AssociateVpcCidrBlockInput) (*AssociateVpcCidrBlockOutput, error)

AssociateVpcCidrBlock API operation for Amazon Elastic Compute Cloud.

Associates a CIDR block with your VPC. You can only associate a single Amazon-provided IPv6 CIDR block with your VPC. The IPv6 CIDR block size is fixed at /56.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation AssociateVpcCidrBlock for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssociateVpcCidrBlock

func (*EC2) AssociateVpcCidrBlockRequest

func (c *EC2) AssociateVpcCidrBlockRequest(input *AssociateVpcCidrBlockInput) (req *request.Request, output *AssociateVpcCidrBlockOutput)

AssociateVpcCidrBlockRequest generates a "aws/request.Request" representing the client's request for the AssociateVpcCidrBlock operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See AssociateVpcCidrBlock for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the AssociateVpcCidrBlock method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the AssociateVpcCidrBlockRequest method.
req, resp := client.AssociateVpcCidrBlockRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssociateVpcCidrBlock

func (*EC2) AssociateVpcCidrBlockWithContext

func (c *EC2) AssociateVpcCidrBlockWithContext(ctx aws.Context, input *AssociateVpcCidrBlockInput, opts ...request.Option) (*AssociateVpcCidrBlockOutput, error)

AssociateVpcCidrBlockWithContext is the same as AssociateVpcCidrBlock with the addition of the ability to pass a context and additional request options.

See AssociateVpcCidrBlock for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) AttachClassicLinkVpc

func (c *EC2) AttachClassicLinkVpc(input *AttachClassicLinkVpcInput) (*AttachClassicLinkVpcOutput, error)

AttachClassicLinkVpc API operation for Amazon Elastic Compute Cloud.

Links an EC2-Classic instance to a ClassicLink-enabled VPC through one or more of the VPC's security groups. You cannot link an EC2-Classic instance to more than one VPC at a time. You can only link an instance that's in the running state. An instance is automatically unlinked from a VPC when it's stopped - you can link it to the VPC again when you restart it.

After you've linked an instance, you cannot change the VPC security groups that are associated with it. To change the security groups, you must first unlink the instance, and then link it again.

Linking your instance to a VPC is sometimes referred to as attaching your instance.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation AttachClassicLinkVpc for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AttachClassicLinkVpc

func (*EC2) AttachClassicLinkVpcRequest

func (c *EC2) AttachClassicLinkVpcRequest(input *AttachClassicLinkVpcInput) (req *request.Request, output *AttachClassicLinkVpcOutput)

AttachClassicLinkVpcRequest generates a "aws/request.Request" representing the client's request for the AttachClassicLinkVpc operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See AttachClassicLinkVpc for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the AttachClassicLinkVpc method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the AttachClassicLinkVpcRequest method.
req, resp := client.AttachClassicLinkVpcRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AttachClassicLinkVpc

func (*EC2) AttachClassicLinkVpcWithContext

func (c *EC2) AttachClassicLinkVpcWithContext(ctx aws.Context, input *AttachClassicLinkVpcInput, opts ...request.Option) (*AttachClassicLinkVpcOutput, error)

AttachClassicLinkVpcWithContext is the same as AttachClassicLinkVpc with the addition of the ability to pass a context and additional request options.

See AttachClassicLinkVpc for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) AttachInternetGateway

func (c *EC2) AttachInternetGateway(input *AttachInternetGatewayInput) (*AttachInternetGatewayOutput, error)

AttachInternetGateway API operation for Amazon Elastic Compute Cloud.

Attaches an Internet gateway to a VPC, enabling connectivity between the Internet and the VPC. For more information about your VPC and Internet gateway, see the Amazon Virtual Private Cloud User Guide (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/).

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation AttachInternetGateway for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AttachInternetGateway

Example (Shared00)

To attach an Internet gateway to a VPC This example attaches the specified Internet gateway to the specified VPC.

Code:

svc := ec2.New(session.New())
input := &ec2.AttachInternetGatewayInput{
    InternetGatewayId: aws.String("igw-c0a643a9"),
    VpcId:             aws.String("vpc-a01106c2"),
}

result, err := svc.AttachInternetGateway(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) AttachInternetGatewayRequest

func (c *EC2) AttachInternetGatewayRequest(input *AttachInternetGatewayInput) (req *request.Request, output *AttachInternetGatewayOutput)

AttachInternetGatewayRequest generates a "aws/request.Request" representing the client's request for the AttachInternetGateway operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See AttachInternetGateway for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the AttachInternetGateway method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the AttachInternetGatewayRequest method.
req, resp := client.AttachInternetGatewayRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AttachInternetGateway

func (*EC2) AttachInternetGatewayWithContext

func (c *EC2) AttachInternetGatewayWithContext(ctx aws.Context, input *AttachInternetGatewayInput, opts ...request.Option) (*AttachInternetGatewayOutput, error)

AttachInternetGatewayWithContext is the same as AttachInternetGateway with the addition of the ability to pass a context and additional request options.

See AttachInternetGateway for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) AttachNetworkInterface

func (c *EC2) AttachNetworkInterface(input *AttachNetworkInterfaceInput) (*AttachNetworkInterfaceOutput, error)

AttachNetworkInterface API operation for Amazon Elastic Compute Cloud.

Attaches a network interface to an instance.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation AttachNetworkInterface for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AttachNetworkInterface

Example (Shared00)

To attach a network interface to an instance This example attaches the specified network interface to the specified instance.

Code:

svc := ec2.New(session.New())
input := &ec2.AttachNetworkInterfaceInput{
    DeviceIndex:        aws.Int64(1),
    InstanceId:         aws.String("i-1234567890abcdef0"),
    NetworkInterfaceId: aws.String("eni-e5aa89a3"),
}

result, err := svc.AttachNetworkInterface(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) AttachNetworkInterfaceRequest

func (c *EC2) AttachNetworkInterfaceRequest(input *AttachNetworkInterfaceInput) (req *request.Request, output *AttachNetworkInterfaceOutput)

AttachNetworkInterfaceRequest generates a "aws/request.Request" representing the client's request for the AttachNetworkInterface operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See AttachNetworkInterface for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the AttachNetworkInterface method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the AttachNetworkInterfaceRequest method.
req, resp := client.AttachNetworkInterfaceRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AttachNetworkInterface

func (*EC2) AttachNetworkInterfaceWithContext

func (c *EC2) AttachNetworkInterfaceWithContext(ctx aws.Context, input *AttachNetworkInterfaceInput, opts ...request.Option) (*AttachNetworkInterfaceOutput, error)

AttachNetworkInterfaceWithContext is the same as AttachNetworkInterface with the addition of the ability to pass a context and additional request options.

See AttachNetworkInterface for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) AttachVolume

func (c *EC2) AttachVolume(input *AttachVolumeInput) (*VolumeAttachment, error)

AttachVolume API operation for Amazon Elastic Compute Cloud.

Attaches an EBS volume to a running or stopped instance and exposes it to the instance with the specified device name.

Encrypted EBS volumes may only be attached to instances that support Amazon EBS encryption. For more information, see Amazon EBS Encryption (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html) in the Amazon Elastic Compute Cloud User Guide.

For a list of supported device names, see Attaching an EBS Volume to an Instance (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-attaching-volume.html). Any device names that aren't reserved for instance store volumes can be used for EBS volumes. For more information, see Amazon EC2 Instance Store (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/InstanceStorage.html) in the Amazon Elastic Compute Cloud User Guide.

If a volume has an AWS Marketplace product code:

* The volume can be attached only to a stopped instance.

* AWS Marketplace product codes are copied from the volume to the instance.

* You must be subscribed to the product.

* The instance type and operating system of the instance must support
the product. For example, you can't detach a volume from a Windows instance
and attach it to a Linux instance.

For an overview of the AWS Marketplace, see Introducing AWS Marketplace (https://aws.amazon.com/marketplace/help/200900000).

For more information about EBS volumes, see Attaching Amazon EBS Volumes (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-attaching-volume.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation AttachVolume for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AttachVolume

Example (Shared00)

To attach a volume to an instance This example attaches a volume (``vol-1234567890abcdef0``) to an instance (``i-01474ef662b89480``) as ``/dev/sdf``.

Code:

svc := ec2.New(session.New())
input := &ec2.AttachVolumeInput{
    Device:     aws.String("/dev/sdf"),
    InstanceId: aws.String("i-01474ef662b89480"),
    VolumeId:   aws.String("vol-1234567890abcdef0"),
}

result, err := svc.AttachVolume(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) AttachVolumeRequest

func (c *EC2) AttachVolumeRequest(input *AttachVolumeInput) (req *request.Request, output *VolumeAttachment)

AttachVolumeRequest generates a "aws/request.Request" representing the client's request for the AttachVolume operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See AttachVolume for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the AttachVolume method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the AttachVolumeRequest method.
req, resp := client.AttachVolumeRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AttachVolume

func (*EC2) AttachVolumeWithContext

func (c *EC2) AttachVolumeWithContext(ctx aws.Context, input *AttachVolumeInput, opts ...request.Option) (*VolumeAttachment, error)

AttachVolumeWithContext is the same as AttachVolume with the addition of the ability to pass a context and additional request options.

See AttachVolume for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) AttachVpnGateway

func (c *EC2) AttachVpnGateway(input *AttachVpnGatewayInput) (*AttachVpnGatewayOutput, error)

AttachVpnGateway API operation for Amazon Elastic Compute Cloud.

Attaches a virtual private gateway to a VPC. You can attach one virtual private gateway to one VPC at a time.

For more information, see Adding a Hardware Virtual Private Gateway to Your VPC (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_VPN.html) in the Amazon Virtual Private Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation AttachVpnGateway for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AttachVpnGateway

func (*EC2) AttachVpnGatewayRequest

func (c *EC2) AttachVpnGatewayRequest(input *AttachVpnGatewayInput) (req *request.Request, output *AttachVpnGatewayOutput)

AttachVpnGatewayRequest generates a "aws/request.Request" representing the client's request for the AttachVpnGateway operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See AttachVpnGateway for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the AttachVpnGateway method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the AttachVpnGatewayRequest method.
req, resp := client.AttachVpnGatewayRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AttachVpnGateway

func (*EC2) AttachVpnGatewayWithContext

func (c *EC2) AttachVpnGatewayWithContext(ctx aws.Context, input *AttachVpnGatewayInput, opts ...request.Option) (*AttachVpnGatewayOutput, error)

AttachVpnGatewayWithContext is the same as AttachVpnGateway with the addition of the ability to pass a context and additional request options.

See AttachVpnGateway for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) AuthorizeSecurityGroupEgress

func (c *EC2) AuthorizeSecurityGroupEgress(input *AuthorizeSecurityGroupEgressInput) (*AuthorizeSecurityGroupEgressOutput, error)

AuthorizeSecurityGroupEgress API operation for Amazon Elastic Compute Cloud.

[EC2-VPC only] Adds one or more egress rules to a security group for use with a VPC. Specifically, this action permits instances to send traffic to one or more destination IPv4 or IPv6 CIDR address ranges, or to one or more destination security groups for the same VPC. This action doesn't apply to security groups for use in EC2-Classic. For more information, see Security Groups for Your VPC (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_SecurityGroups.html) in the Amazon Virtual Private Cloud User Guide. For more information about security group limits, see Amazon VPC Limits (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_Appendix_Limits.html).

Each rule consists of the protocol (for example, TCP), plus either a CIDR range or a source group. For the TCP and UDP protocols, you must also specify the destination port or port range. For the ICMP protocol, you must also specify the ICMP type and code. You can use -1 for the type or code to mean all types or all codes.

Rule changes are propagated to affected instances as quickly as possible. However, a small delay might occur.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation AuthorizeSecurityGroupEgress for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AuthorizeSecurityGroupEgress

func (*EC2) AuthorizeSecurityGroupEgressRequest

func (c *EC2) AuthorizeSecurityGroupEgressRequest(input *AuthorizeSecurityGroupEgressInput) (req *request.Request, output *AuthorizeSecurityGroupEgressOutput)

AuthorizeSecurityGroupEgressRequest generates a "aws/request.Request" representing the client's request for the AuthorizeSecurityGroupEgress operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See AuthorizeSecurityGroupEgress for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the AuthorizeSecurityGroupEgress method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the AuthorizeSecurityGroupEgressRequest method.
req, resp := client.AuthorizeSecurityGroupEgressRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AuthorizeSecurityGroupEgress

func (*EC2) AuthorizeSecurityGroupEgressWithContext

func (c *EC2) AuthorizeSecurityGroupEgressWithContext(ctx aws.Context, input *AuthorizeSecurityGroupEgressInput, opts ...request.Option) (*AuthorizeSecurityGroupEgressOutput, error)

AuthorizeSecurityGroupEgressWithContext is the same as AuthorizeSecurityGroupEgress with the addition of the ability to pass a context and additional request options.

See AuthorizeSecurityGroupEgress for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) AuthorizeSecurityGroupIngress

func (c *EC2) AuthorizeSecurityGroupIngress(input *AuthorizeSecurityGroupIngressInput) (*AuthorizeSecurityGroupIngressOutput, error)

AuthorizeSecurityGroupIngress API operation for Amazon Elastic Compute Cloud.

Adds one or more ingress rules to a security group.

Rule changes are propagated to instances within the security group as quickly as possible. However, a small delay might occur.

[EC2-Classic] This action gives one or more IPv4 CIDR address ranges permission to access a security group in your account, or gives one or more security groups (called the source groups) permission to access a security group for your account. A source group can be for your own AWS account, or another. You can have up to 100 rules per group.

[EC2-VPC] This action gives one or more IPv4 or IPv6 CIDR address ranges permission to access a security group in your VPC, or gives one or more other security groups (called the source groups) permission to access a security group for your VPC. The security groups must all be for the same VPC or a peer VPC in a VPC peering connection. For more information about VPC security group limits, see Amazon VPC Limits (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_Appendix_Limits.html).

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation AuthorizeSecurityGroupIngress for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AuthorizeSecurityGroupIngress

func (*EC2) AuthorizeSecurityGroupIngressRequest

func (c *EC2) AuthorizeSecurityGroupIngressRequest(input *AuthorizeSecurityGroupIngressInput) (req *request.Request, output *AuthorizeSecurityGroupIngressOutput)

AuthorizeSecurityGroupIngressRequest generates a "aws/request.Request" representing the client's request for the AuthorizeSecurityGroupIngress operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See AuthorizeSecurityGroupIngress for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the AuthorizeSecurityGroupIngress method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the AuthorizeSecurityGroupIngressRequest method.
req, resp := client.AuthorizeSecurityGroupIngressRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AuthorizeSecurityGroupIngress

func (*EC2) AuthorizeSecurityGroupIngressWithContext

func (c *EC2) AuthorizeSecurityGroupIngressWithContext(ctx aws.Context, input *AuthorizeSecurityGroupIngressInput, opts ...request.Option) (*AuthorizeSecurityGroupIngressOutput, error)

AuthorizeSecurityGroupIngressWithContext is the same as AuthorizeSecurityGroupIngress with the addition of the ability to pass a context and additional request options.

See AuthorizeSecurityGroupIngress for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) BundleInstance

func (c *EC2) BundleInstance(input *BundleInstanceInput) (*BundleInstanceOutput, error)

BundleInstance API operation for Amazon Elastic Compute Cloud.

Bundles an Amazon instance store-backed Windows instance.

During bundling, only the root device volume (C:\) is bundled. Data on other instance store volumes is not preserved.

This action is not applicable for Linux/Unix instances or Windows instances that are backed by Amazon EBS.

For more information, see Creating an Instance Store-Backed Windows AMI (http://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/Creating_InstanceStoreBacked_WinAMI.html).

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation BundleInstance for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/BundleInstance

func (*EC2) BundleInstanceRequest

func (c *EC2) BundleInstanceRequest(input *BundleInstanceInput) (req *request.Request, output *BundleInstanceOutput)

BundleInstanceRequest generates a "aws/request.Request" representing the client's request for the BundleInstance operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See BundleInstance for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the BundleInstance method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the BundleInstanceRequest method.
req, resp := client.BundleInstanceRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/BundleInstance

func (*EC2) BundleInstanceWithContext

func (c *EC2) BundleInstanceWithContext(ctx aws.Context, input *BundleInstanceInput, opts ...request.Option) (*BundleInstanceOutput, error)

BundleInstanceWithContext is the same as BundleInstance with the addition of the ability to pass a context and additional request options.

See BundleInstance for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) CancelBundleTask

func (c *EC2) CancelBundleTask(input *CancelBundleTaskInput) (*CancelBundleTaskOutput, error)

CancelBundleTask API operation for Amazon Elastic Compute Cloud.

Cancels a bundling operation for an instance store-backed Windows instance.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation CancelBundleTask for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CancelBundleTask

func (*EC2) CancelBundleTaskRequest

func (c *EC2) CancelBundleTaskRequest(input *CancelBundleTaskInput) (req *request.Request, output *CancelBundleTaskOutput)

CancelBundleTaskRequest generates a "aws/request.Request" representing the client's request for the CancelBundleTask operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CancelBundleTask for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CancelBundleTask method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CancelBundleTaskRequest method.
req, resp := client.CancelBundleTaskRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CancelBundleTask

func (*EC2) CancelBundleTaskWithContext

func (c *EC2) CancelBundleTaskWithContext(ctx aws.Context, input *CancelBundleTaskInput, opts ...request.Option) (*CancelBundleTaskOutput, error)

CancelBundleTaskWithContext is the same as CancelBundleTask with the addition of the ability to pass a context and additional request options.

See CancelBundleTask for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) CancelConversionTask

func (c *EC2) CancelConversionTask(input *CancelConversionTaskInput) (*CancelConversionTaskOutput, error)

CancelConversionTask API operation for Amazon Elastic Compute Cloud.

Cancels an active conversion task. The task can be the import of an instance or volume. The action removes all artifacts of the conversion, including a partially uploaded volume or instance. If the conversion is complete or is in the process of transferring the final disk image, the command fails and returns an exception.

For more information, see Importing a Virtual Machine Using the Amazon EC2 CLI (http://docs.aws.amazon.com/AWSEC2/latest/CommandLineReference/ec2-cli-vmimport-export.html).

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation CancelConversionTask for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CancelConversionTask

func (*EC2) CancelConversionTaskRequest

func (c *EC2) CancelConversionTaskRequest(input *CancelConversionTaskInput) (req *request.Request, output *CancelConversionTaskOutput)

CancelConversionTaskRequest generates a "aws/request.Request" representing the client's request for the CancelConversionTask operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CancelConversionTask for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CancelConversionTask method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CancelConversionTaskRequest method.
req, resp := client.CancelConversionTaskRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CancelConversionTask

func (*EC2) CancelConversionTaskWithContext

func (c *EC2) CancelConversionTaskWithContext(ctx aws.Context, input *CancelConversionTaskInput, opts ...request.Option) (*CancelConversionTaskOutput, error)

CancelConversionTaskWithContext is the same as CancelConversionTask with the addition of the ability to pass a context and additional request options.

See CancelConversionTask for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) CancelExportTask

func (c *EC2) CancelExportTask(input *CancelExportTaskInput) (*CancelExportTaskOutput, error)

CancelExportTask API operation for Amazon Elastic Compute Cloud.

Cancels an active export task. The request removes all artifacts of the export, including any partially-created Amazon S3 objects. If the export task is complete or is in the process of transferring the final disk image, the command fails and returns an error.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation CancelExportTask for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CancelExportTask

func (*EC2) CancelExportTaskRequest

func (c *EC2) CancelExportTaskRequest(input *CancelExportTaskInput) (req *request.Request, output *CancelExportTaskOutput)

CancelExportTaskRequest generates a "aws/request.Request" representing the client's request for the CancelExportTask operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CancelExportTask for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CancelExportTask method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CancelExportTaskRequest method.
req, resp := client.CancelExportTaskRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CancelExportTask

func (*EC2) CancelExportTaskWithContext

func (c *EC2) CancelExportTaskWithContext(ctx aws.Context, input *CancelExportTaskInput, opts ...request.Option) (*CancelExportTaskOutput, error)

CancelExportTaskWithContext is the same as CancelExportTask with the addition of the ability to pass a context and additional request options.

See CancelExportTask for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) CancelImportTask

func (c *EC2) CancelImportTask(input *CancelImportTaskInput) (*CancelImportTaskOutput, error)

CancelImportTask API operation for Amazon Elastic Compute Cloud.

Cancels an in-process import virtual machine or import snapshot task.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation CancelImportTask for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CancelImportTask

func (*EC2) CancelImportTaskRequest

func (c *EC2) CancelImportTaskRequest(input *CancelImportTaskInput) (req *request.Request, output *CancelImportTaskOutput)

CancelImportTaskRequest generates a "aws/request.Request" representing the client's request for the CancelImportTask operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CancelImportTask for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CancelImportTask method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CancelImportTaskRequest method.
req, resp := client.CancelImportTaskRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CancelImportTask

func (*EC2) CancelImportTaskWithContext

func (c *EC2) CancelImportTaskWithContext(ctx aws.Context, input *CancelImportTaskInput, opts ...request.Option) (*CancelImportTaskOutput, error)

CancelImportTaskWithContext is the same as CancelImportTask with the addition of the ability to pass a context and additional request options.

See CancelImportTask for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) CancelReservedInstancesListing

func (c *EC2) CancelReservedInstancesListing(input *CancelReservedInstancesListingInput) (*CancelReservedInstancesListingOutput, error)

CancelReservedInstancesListing API operation for Amazon Elastic Compute Cloud.

Cancels the specified Reserved Instance listing in the Reserved Instance Marketplace.

For more information, see Reserved Instance Marketplace (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ri-market-general.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation CancelReservedInstancesListing for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CancelReservedInstancesListing

func (*EC2) CancelReservedInstancesListingRequest

func (c *EC2) CancelReservedInstancesListingRequest(input *CancelReservedInstancesListingInput) (req *request.Request, output *CancelReservedInstancesListingOutput)

CancelReservedInstancesListingRequest generates a "aws/request.Request" representing the client's request for the CancelReservedInstancesListing operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CancelReservedInstancesListing for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CancelReservedInstancesListing method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CancelReservedInstancesListingRequest method.
req, resp := client.CancelReservedInstancesListingRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CancelReservedInstancesListing

func (*EC2) CancelReservedInstancesListingWithContext

func (c *EC2) CancelReservedInstancesListingWithContext(ctx aws.Context, input *CancelReservedInstancesListingInput, opts ...request.Option) (*CancelReservedInstancesListingOutput, error)

CancelReservedInstancesListingWithContext is the same as CancelReservedInstancesListing with the addition of the ability to pass a context and additional request options.

See CancelReservedInstancesListing for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) CancelSpotFleetRequests

func (c *EC2) CancelSpotFleetRequests(input *CancelSpotFleetRequestsInput) (*CancelSpotFleetRequestsOutput, error)

CancelSpotFleetRequests API operation for Amazon Elastic Compute Cloud.

Cancels the specified Spot fleet requests.

After you cancel a Spot fleet request, the Spot fleet launches no new Spot instances. You must specify whether the Spot fleet should also terminate its Spot instances. If you terminate the instances, the Spot fleet request enters the cancelled_terminating state. Otherwise, the Spot fleet request enters the cancelled_running state and the instances continue to run until they are interrupted or you terminate them manually.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation CancelSpotFleetRequests for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CancelSpotFleetRequests

Example (Shared00)

To cancel a Spot fleet request This example cancels the specified Spot fleet request and terminates its associated Spot Instances.

Code:

svc := ec2.New(session.New())
input := &ec2.CancelSpotFleetRequestsInput{
    SpotFleetRequestIds: []*string{
        aws.String("sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE"),
    },
    TerminateInstances: aws.Bool(true),
}

result, err := svc.CancelSpotFleetRequests(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

Example (Shared01)

To cancel a Spot fleet request without terminating its Spot Instances This example cancels the specified Spot fleet request without terminating its associated Spot Instances.

Code:

svc := ec2.New(session.New())
input := &ec2.CancelSpotFleetRequestsInput{
    SpotFleetRequestIds: []*string{
        aws.String("sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE"),
    },
    TerminateInstances: aws.Bool(false),
}

result, err := svc.CancelSpotFleetRequests(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) CancelSpotFleetRequestsRequest

func (c *EC2) CancelSpotFleetRequestsRequest(input *CancelSpotFleetRequestsInput) (req *request.Request, output *CancelSpotFleetRequestsOutput)

CancelSpotFleetRequestsRequest generates a "aws/request.Request" representing the client's request for the CancelSpotFleetRequests operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CancelSpotFleetRequests for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CancelSpotFleetRequests method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CancelSpotFleetRequestsRequest method.
req, resp := client.CancelSpotFleetRequestsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CancelSpotFleetRequests

func (*EC2) CancelSpotFleetRequestsWithContext

func (c *EC2) CancelSpotFleetRequestsWithContext(ctx aws.Context, input *CancelSpotFleetRequestsInput, opts ...request.Option) (*CancelSpotFleetRequestsOutput, error)

CancelSpotFleetRequestsWithContext is the same as CancelSpotFleetRequests with the addition of the ability to pass a context and additional request options.

See CancelSpotFleetRequests for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) CancelSpotInstanceRequests

func (c *EC2) CancelSpotInstanceRequests(input *CancelSpotInstanceRequestsInput) (*CancelSpotInstanceRequestsOutput, error)

CancelSpotInstanceRequests API operation for Amazon Elastic Compute Cloud.

Cancels one or more Spot instance requests. Spot instances are instances that Amazon EC2 starts on your behalf when the bid price that you specify exceeds the current Spot price. Amazon EC2 periodically sets the Spot price based on available Spot instance capacity and current Spot instance requests. For more information, see Spot Instance Requests (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-requests.html) in the Amazon Elastic Compute Cloud User Guide.

Canceling a Spot instance request does not terminate running Spot instances associated with the request.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation CancelSpotInstanceRequests for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CancelSpotInstanceRequests

Example (Shared00)

To cancel Spot Instance requests This example cancels a Spot Instance request.

Code:

svc := ec2.New(session.New())
input := &ec2.CancelSpotInstanceRequestsInput{
    SpotInstanceRequestIds: []*string{
        aws.String("sir-08b93456"),
    },
}

result, err := svc.CancelSpotInstanceRequests(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) CancelSpotInstanceRequestsRequest

func (c *EC2) CancelSpotInstanceRequestsRequest(input *CancelSpotInstanceRequestsInput) (req *request.Request, output *CancelSpotInstanceRequestsOutput)

CancelSpotInstanceRequestsRequest generates a "aws/request.Request" representing the client's request for the CancelSpotInstanceRequests operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CancelSpotInstanceRequests for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CancelSpotInstanceRequests method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CancelSpotInstanceRequestsRequest method.
req, resp := client.CancelSpotInstanceRequestsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CancelSpotInstanceRequests

func (*EC2) CancelSpotInstanceRequestsWithContext

func (c *EC2) CancelSpotInstanceRequestsWithContext(ctx aws.Context, input *CancelSpotInstanceRequestsInput, opts ...request.Option) (*CancelSpotInstanceRequestsOutput, error)

CancelSpotInstanceRequestsWithContext is the same as CancelSpotInstanceRequests with the addition of the ability to pass a context and additional request options.

See CancelSpotInstanceRequests for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) ConfirmProductInstance

func (c *EC2) ConfirmProductInstance(input *ConfirmProductInstanceInput) (*ConfirmProductInstanceOutput, error)

ConfirmProductInstance API operation for Amazon Elastic Compute Cloud.

Determines whether a product code is associated with an instance. This action can only be used by the owner of the product code. It is useful when a product code owner needs to verify whether another user's instance is eligible for support.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation ConfirmProductInstance for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ConfirmProductInstance

Example (Shared00)

To confirm the product instance This example determines whether the specified product code is associated with the specified instance.

Code:

svc := ec2.New(session.New())
input := &ec2.ConfirmProductInstanceInput{
    InstanceId:  aws.String("i-1234567890abcdef0"),
    ProductCode: aws.String("774F4FF8"),
}

result, err := svc.ConfirmProductInstance(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) ConfirmProductInstanceRequest

func (c *EC2) ConfirmProductInstanceRequest(input *ConfirmProductInstanceInput) (req *request.Request, output *ConfirmProductInstanceOutput)

ConfirmProductInstanceRequest generates a "aws/request.Request" representing the client's request for the ConfirmProductInstance operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ConfirmProductInstance for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ConfirmProductInstance method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ConfirmProductInstanceRequest method.
req, resp := client.ConfirmProductInstanceRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ConfirmProductInstance

func (*EC2) ConfirmProductInstanceWithContext

func (c *EC2) ConfirmProductInstanceWithContext(ctx aws.Context, input *ConfirmProductInstanceInput, opts ...request.Option) (*ConfirmProductInstanceOutput, error)

ConfirmProductInstanceWithContext is the same as ConfirmProductInstance with the addition of the ability to pass a context and additional request options.

See ConfirmProductInstance for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) CopyImage

func (c *EC2) CopyImage(input *CopyImageInput) (*CopyImageOutput, error)

CopyImage API operation for Amazon Elastic Compute Cloud.

Initiates the copy of an AMI from the specified source region to the current region. You specify the destination region by using its endpoint when making the request.

For more information about the prerequisites and limits when copying an AMI, see Copying an AMI (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/CopyingAMIs.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation CopyImage for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CopyImage

func (*EC2) CopyImageRequest

func (c *EC2) CopyImageRequest(input *CopyImageInput) (req *request.Request, output *CopyImageOutput)

CopyImageRequest generates a "aws/request.Request" representing the client's request for the CopyImage operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CopyImage for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CopyImage method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CopyImageRequest method.
req, resp := client.CopyImageRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CopyImage

func (*EC2) CopyImageWithContext

func (c *EC2) CopyImageWithContext(ctx aws.Context, input *CopyImageInput, opts ...request.Option) (*CopyImageOutput, error)

CopyImageWithContext is the same as CopyImage with the addition of the ability to pass a context and additional request options.

See CopyImage for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) CopySnapshot

func (c *EC2) CopySnapshot(input *CopySnapshotInput) (*CopySnapshotOutput, error)

CopySnapshot API operation for Amazon Elastic Compute Cloud.

Copies a point-in-time snapshot of an EBS volume and stores it in Amazon S3. You can copy the snapshot within the same region or from one region to another. You can use the snapshot to create EBS volumes or Amazon Machine Images (AMIs). The snapshot is copied to the regional endpoint that you send the HTTP request to.

Copies of encrypted EBS snapshots remain encrypted. Copies of unencrypted snapshots remain unencrypted, unless the Encrypted flag is specified during the snapshot copy operation. By default, encrypted snapshot copies use the default AWS Key Management Service (AWS KMS) customer master key (CMK); however, you can specify a non-default CMK with the KmsKeyId parameter.

To copy an encrypted snapshot that has been shared from another account, you must have permissions for the CMK used to encrypt the snapshot.

Snapshots created by the CopySnapshot action have an arbitrary volume ID that should not be used for any purpose.

For more information, see Copying an Amazon EBS Snapshot (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-copy-snapshot.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation CopySnapshot for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CopySnapshot

Example (Shared00)

To copy a snapshot This example copies a snapshot with the snapshot ID of ``snap-066877671789bd71b`` from the ``us-west-2`` region to the ``us-east-1`` region and adds a short description to identify the snapshot.

Code:

svc := ec2.New(session.New())
input := &ec2.CopySnapshotInput{
    Description:       aws.String("This is my copied snapshot."),
    DestinationRegion: aws.String("us-east-1"),
    SourceRegion:      aws.String("us-west-2"),
    SourceSnapshotId:  aws.String("snap-066877671789bd71b"),
}

result, err := svc.CopySnapshot(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) CopySnapshotRequest

func (c *EC2) CopySnapshotRequest(input *CopySnapshotInput) (req *request.Request, output *CopySnapshotOutput)

CopySnapshotRequest generates a "aws/request.Request" representing the client's request for the CopySnapshot operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CopySnapshot for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CopySnapshot method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CopySnapshotRequest method.
req, resp := client.CopySnapshotRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CopySnapshot

func (*EC2) CopySnapshotWithContext

func (c *EC2) CopySnapshotWithContext(ctx aws.Context, input *CopySnapshotInput, opts ...request.Option) (*CopySnapshotOutput, error)

CopySnapshotWithContext is the same as CopySnapshot with the addition of the ability to pass a context and additional request options.

See CopySnapshot for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) CreateCustomerGateway

func (c *EC2) CreateCustomerGateway(input *CreateCustomerGatewayInput) (*CreateCustomerGatewayOutput, error)

CreateCustomerGateway API operation for Amazon Elastic Compute Cloud.

Provides information to AWS about your VPN customer gateway device. The customer gateway is the appliance at your end of the VPN connection. (The device on the AWS side of the VPN connection is the virtual private gateway.) You must provide the Internet-routable IP address of the customer gateway's external interface. The IP address must be static and may be behind a device performing network address translation (NAT).

For devices that use Border Gateway Protocol (BGP), you can also provide the device's BGP Autonomous System Number (ASN). You can use an existing ASN assigned to your network. If you don't have an ASN already, you can use a private ASN (in the 64512 - 65534 range).

Amazon EC2 supports all 2-byte ASN numbers in the range of 1 - 65534, with the exception of 7224, which is reserved in the us-east-1 region, and 9059, which is reserved in the eu-west-1 region.

For more information about VPN customer gateways, see Adding a Hardware Virtual Private Gateway to Your VPC (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_VPN.html) in the Amazon Virtual Private Cloud User Guide.

You cannot create more than one customer gateway with the same VPN type, IP address, and BGP ASN parameter values. If you run an identical request more than one time, the first request creates the customer gateway, and subsequent requests return information about the existing customer gateway. The subsequent requests do not create new customer gateway resources.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation CreateCustomerGateway for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateCustomerGateway

Example (Shared00)

To create a customer gateway This example creates a customer gateway with the specified IP address for its outside interface.

Code:

svc := ec2.New(session.New())
input := &ec2.CreateCustomerGatewayInput{
    BgpAsn:   aws.Int64(65534),
    PublicIp: aws.String("12.1.2.3"),
    Type:     aws.String("ipsec.1"),
}

result, err := svc.CreateCustomerGateway(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) CreateCustomerGatewayRequest

func (c *EC2) CreateCustomerGatewayRequest(input *CreateCustomerGatewayInput) (req *request.Request, output *CreateCustomerGatewayOutput)

CreateCustomerGatewayRequest generates a "aws/request.Request" representing the client's request for the CreateCustomerGateway operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateCustomerGateway for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateCustomerGateway method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateCustomerGatewayRequest method.
req, resp := client.CreateCustomerGatewayRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateCustomerGateway

func (*EC2) CreateCustomerGatewayWithContext

func (c *EC2) CreateCustomerGatewayWithContext(ctx aws.Context, input *CreateCustomerGatewayInput, opts ...request.Option) (*CreateCustomerGatewayOutput, error)

CreateCustomerGatewayWithContext is the same as CreateCustomerGateway with the addition of the ability to pass a context and additional request options.

See CreateCustomerGateway for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) CreateDhcpOptions

func (c *EC2) CreateDhcpOptions(input *CreateDhcpOptionsInput) (*CreateDhcpOptionsOutput, error)

CreateDhcpOptions API operation for Amazon Elastic Compute Cloud.

Creates a set of DHCP options for your VPC. After creating the set, you must associate it with the VPC, causing all existing and new instances that you launch in the VPC to use this set of DHCP options. The following are the individual DHCP options you can specify. For more information about the options, see RFC 2132 (http://www.ietf.org/rfc/rfc2132.txt).

* domain-name-servers - The IP addresses of up to four domain name servers,
or AmazonProvidedDNS. The default DHCP option set specifies AmazonProvidedDNS.
If specifying more than one domain name server, specify the IP addresses
in a single parameter, separated by commas. If you want your instance
to receive a custom DNS hostname as specified in domain-name, you must
set domain-name-servers to a custom DNS server.

* domain-name - If you're using AmazonProvidedDNS in us-east-1, specify
ec2.internal. If you're using AmazonProvidedDNS in another region, specify
region.compute.internal (for example, ap-northeast-1.compute.internal).
Otherwise, specify a domain name (for example, MyCompany.com). This value
is used to complete unqualified DNS hostnames. Important: Some Linux operating
systems accept multiple domain names separated by spaces. However, Windows
and other Linux operating systems treat the value as a single domain,
which results in unexpected behavior. If your DHCP options set is associated
with a VPC that has instances with multiple operating systems, specify
only one domain name.

* ntp-servers - The IP addresses of up to four Network Time Protocol (NTP)
servers.

* netbios-name-servers - The IP addresses of up to four NetBIOS name servers.

* netbios-node-type - The NetBIOS node type (1, 2, 4, or 8). We recommend
that you specify 2 (broadcast and multicast are not currently supported).
For more information about these node types, see RFC 2132 (http://www.ietf.org/rfc/rfc2132.txt).

Your VPC automatically starts out with a set of DHCP options that includes only a DNS server that we provide (AmazonProvidedDNS). If you create a set of options, and if your VPC has an Internet gateway, make sure to set the domain-name-servers option either to AmazonProvidedDNS or to a domain name server of your choice. For more information about DHCP options, see DHCP Options Sets (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_DHCP_Options.html) in the Amazon Virtual Private Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation CreateDhcpOptions for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateDhcpOptions

Example (Shared00)

To create a DHCP options set This example creates a DHCP options set.

Code:

svc := ec2.New(session.New())
input := &ec2.CreateDhcpOptionsInput{
    DhcpConfigurations: []*ec2.NewDhcpConfiguration{
        {
            Key: aws.String("domain-name-servers"),
            Values: []*string{
                aws.String("10.2.5.1"),
                aws.String("10.2.5.2"),
            },
        },
    },
}

result, err := svc.CreateDhcpOptions(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) CreateDhcpOptionsRequest

func (c *EC2) CreateDhcpOptionsRequest(input *CreateDhcpOptionsInput) (req *request.Request, output *CreateDhcpOptionsOutput)

CreateDhcpOptionsRequest generates a "aws/request.Request" representing the client's request for the CreateDhcpOptions operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateDhcpOptions for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateDhcpOptions method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateDhcpOptionsRequest method.
req, resp := client.CreateDhcpOptionsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateDhcpOptions

func (*EC2) CreateDhcpOptionsWithContext

func (c *EC2) CreateDhcpOptionsWithContext(ctx aws.Context, input *CreateDhcpOptionsInput, opts ...request.Option) (*CreateDhcpOptionsOutput, error)

CreateDhcpOptionsWithContext is the same as CreateDhcpOptions with the addition of the ability to pass a context and additional request options.

See CreateDhcpOptions for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) CreateEgressOnlyInternetGateway

func (c *EC2) CreateEgressOnlyInternetGateway(input *CreateEgressOnlyInternetGatewayInput) (*CreateEgressOnlyInternetGatewayOutput, error)

CreateEgressOnlyInternetGateway API operation for Amazon Elastic Compute Cloud.

[IPv6 only] Creates an egress-only Internet gateway for your VPC. An egress-only Internet gateway is used to enable outbound communication over IPv6 from instances in your VPC to the Internet, and prevents hosts outside of your VPC from initiating an IPv6 connection with your instance.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation CreateEgressOnlyInternetGateway for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateEgressOnlyInternetGateway

func (*EC2) CreateEgressOnlyInternetGatewayRequest

func (c *EC2) CreateEgressOnlyInternetGatewayRequest(input *CreateEgressOnlyInternetGatewayInput) (req *request.Request, output *CreateEgressOnlyInternetGatewayOutput)

CreateEgressOnlyInternetGatewayRequest generates a "aws/request.Request" representing the client's request for the CreateEgressOnlyInternetGateway operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateEgressOnlyInternetGateway for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateEgressOnlyInternetGateway method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateEgressOnlyInternetGatewayRequest method.
req, resp := client.CreateEgressOnlyInternetGatewayRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateEgressOnlyInternetGateway

func (*EC2) CreateEgressOnlyInternetGatewayWithContext

func (c *EC2) CreateEgressOnlyInternetGatewayWithContext(ctx aws.Context, input *CreateEgressOnlyInternetGatewayInput, opts ...request.Option) (*CreateEgressOnlyInternetGatewayOutput, error)

CreateEgressOnlyInternetGatewayWithContext is the same as CreateEgressOnlyInternetGateway with the addition of the ability to pass a context and additional request options.

See CreateEgressOnlyInternetGateway for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) CreateFlowLogs

func (c *EC2) CreateFlowLogs(input *CreateFlowLogsInput) (*CreateFlowLogsOutput, error)

CreateFlowLogs API operation for Amazon Elastic Compute Cloud.

Creates one or more flow logs to capture IP traffic for a specific network interface, subnet, or VPC. Flow logs are delivered to a specified log group in Amazon CloudWatch Logs. If you specify a VPC or subnet in the request, a log stream is created in CloudWatch Logs for each network interface in the subnet or VPC. Log streams can include information about accepted and rejected traffic to a network interface. You can view the data in your log streams using Amazon CloudWatch Logs.

In your request, you must also specify an IAM role that has permission to publish logs to CloudWatch Logs.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation CreateFlowLogs for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateFlowLogs

func (*EC2) CreateFlowLogsRequest

func (c *EC2) CreateFlowLogsRequest(input *CreateFlowLogsInput) (req *request.Request, output *CreateFlowLogsOutput)

CreateFlowLogsRequest generates a "aws/request.Request" representing the client's request for the CreateFlowLogs operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateFlowLogs for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateFlowLogs method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateFlowLogsRequest method.
req, resp := client.CreateFlowLogsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateFlowLogs

func (*EC2) CreateFlowLogsWithContext

func (c *EC2) CreateFlowLogsWithContext(ctx aws.Context, input *CreateFlowLogsInput, opts ...request.Option) (*CreateFlowLogsOutput, error)

CreateFlowLogsWithContext is the same as CreateFlowLogs with the addition of the ability to pass a context and additional request options.

See CreateFlowLogs for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) CreateFpgaImage

func (c *EC2) CreateFpgaImage(input *CreateFpgaImageInput) (*CreateFpgaImageOutput, error)

CreateFpgaImage API operation for Amazon Elastic Compute Cloud.

Creates an Amazon FPGA Image (AFI) from the specified design checkpoint (DCP).

The create operation is asynchronous. To verify that the AFI is ready for use, check the output logs.

An AFI contains the FPGA bitstream that is ready to download to an FPGA. You can securely deploy an AFI on one or more FPGA-accelerated instances. For more information, see the AWS FPGA Hardware Development Kit (https://github.com/aws/aws-fpga/).

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation CreateFpgaImage for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateFpgaImage

func (*EC2) CreateFpgaImageRequest

func (c *EC2) CreateFpgaImageRequest(input *CreateFpgaImageInput) (req *request.Request, output *CreateFpgaImageOutput)

CreateFpgaImageRequest generates a "aws/request.Request" representing the client's request for the CreateFpgaImage operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateFpgaImage for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateFpgaImage method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateFpgaImageRequest method.
req, resp := client.CreateFpgaImageRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateFpgaImage

func (*EC2) CreateFpgaImageWithContext

func (c *EC2) CreateFpgaImageWithContext(ctx aws.Context, input *CreateFpgaImageInput, opts ...request.Option) (*CreateFpgaImageOutput, error)

CreateFpgaImageWithContext is the same as CreateFpgaImage with the addition of the ability to pass a context and additional request options.

See CreateFpgaImage for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) CreateImage

func (c *EC2) CreateImage(input *CreateImageInput) (*CreateImageOutput, error)

CreateImage API operation for Amazon Elastic Compute Cloud.

Creates an Amazon EBS-backed AMI from an Amazon EBS-backed instance that is either running or stopped.

If you customized your instance with instance store volumes or EBS volumes in addition to the root device volume, the new AMI contains block device mapping information for those volumes. When you launch an instance from this new AMI, the instance automatically launches with those additional volumes.

For more information, see Creating Amazon EBS-Backed Linux AMIs (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/creating-an-ami-ebs.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation CreateImage for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateImage

func (*EC2) CreateImageRequest

func (c *EC2) CreateImageRequest(input *CreateImageInput) (req *request.Request, output *CreateImageOutput)

CreateImageRequest generates a "aws/request.Request" representing the client's request for the CreateImage operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateImage for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateImage method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateImageRequest method.
req, resp := client.CreateImageRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateImage

func (*EC2) CreateImageWithContext

func (c *EC2) CreateImageWithContext(ctx aws.Context, input *CreateImageInput, opts ...request.Option) (*CreateImageOutput, error)

CreateImageWithContext is the same as CreateImage with the addition of the ability to pass a context and additional request options.

See CreateImage for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) CreateInstanceExportTask

func (c *EC2) CreateInstanceExportTask(input *CreateInstanceExportTaskInput) (*CreateInstanceExportTaskOutput, error)

CreateInstanceExportTask API operation for Amazon Elastic Compute Cloud.

Exports a running or stopped instance to an S3 bucket.

For information about the supported operating systems, image formats, and known limitations for the types of instances you can export, see Exporting an Instance as a VM Using VM Import/Export (http://docs.aws.amazon.com/vm-import/latest/userguide/vmexport.html) in the VM Import/Export User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation CreateInstanceExportTask for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateInstanceExportTask

func (*EC2) CreateInstanceExportTaskRequest

func (c *EC2) CreateInstanceExportTaskRequest(input *CreateInstanceExportTaskInput) (req *request.Request, output *CreateInstanceExportTaskOutput)

CreateInstanceExportTaskRequest generates a "aws/request.Request" representing the client's request for the CreateInstanceExportTask operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateInstanceExportTask for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateInstanceExportTask method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateInstanceExportTaskRequest method.
req, resp := client.CreateInstanceExportTaskRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateInstanceExportTask

func (*EC2) CreateInstanceExportTaskWithContext

func (c *EC2) CreateInstanceExportTaskWithContext(ctx aws.Context, input *CreateInstanceExportTaskInput, opts ...request.Option) (*CreateInstanceExportTaskOutput, error)

CreateInstanceExportTaskWithContext is the same as CreateInstanceExportTask with the addition of the ability to pass a context and additional request options.

See CreateInstanceExportTask for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) CreateInternetGateway

func (c *EC2) CreateInternetGateway(input *CreateInternetGatewayInput) (*CreateInternetGatewayOutput, error)

CreateInternetGateway API operation for Amazon Elastic Compute Cloud.

Creates an Internet gateway for use with a VPC. After creating the Internet gateway, you attach it to a VPC using AttachInternetGateway.

For more information about your VPC and Internet gateway, see the Amazon Virtual Private Cloud User Guide (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/).

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation CreateInternetGateway for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateInternetGateway

Example (Shared00)

To create an Internet gateway This example creates an Internet gateway.

Code:

svc := ec2.New(session.New())
input := &ec2.CreateInternetGatewayInput{}

result, err := svc.CreateInternetGateway(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) CreateInternetGatewayRequest

func (c *EC2) CreateInternetGatewayRequest(input *CreateInternetGatewayInput) (req *request.Request, output *CreateInternetGatewayOutput)

CreateInternetGatewayRequest generates a "aws/request.Request" representing the client's request for the CreateInternetGateway operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateInternetGateway for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateInternetGateway method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateInternetGatewayRequest method.
req, resp := client.CreateInternetGatewayRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateInternetGateway

func (*EC2) CreateInternetGatewayWithContext

func (c *EC2) CreateInternetGatewayWithContext(ctx aws.Context, input *CreateInternetGatewayInput, opts ...request.Option) (*CreateInternetGatewayOutput, error)

CreateInternetGatewayWithContext is the same as CreateInternetGateway with the addition of the ability to pass a context and additional request options.

See CreateInternetGateway for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) CreateKeyPair

func (c *EC2) CreateKeyPair(input *CreateKeyPairInput) (*CreateKeyPairOutput, error)

CreateKeyPair API operation for Amazon Elastic Compute Cloud.

Creates a 2048-bit RSA key pair with the specified name. Amazon EC2 stores the public key and displays the private key for you to save to a file. The private key is returned as an unencrypted PEM encoded PKCS#8 private key. If a key with the specified name already exists, Amazon EC2 returns an error.

You can have up to five thousand key pairs per region.

The key pair returned to you is available only in the region in which you create it. To create a key pair that is available in all regions, use ImportKeyPair.

For more information about key pairs, see Key Pairs (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-key-pairs.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation CreateKeyPair for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateKeyPair

Example (Shared00)

To create a key pair This example creates a key pair named my-key-pair.

Code:

svc := ec2.New(session.New())
input := &ec2.CreateKeyPairInput{
    KeyName: aws.String("my-key-pair"),
}

result, err := svc.CreateKeyPair(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) CreateKeyPairRequest

func (c *EC2) CreateKeyPairRequest(input *CreateKeyPairInput) (req *request.Request, output *CreateKeyPairOutput)

CreateKeyPairRequest generates a "aws/request.Request" representing the client's request for the CreateKeyPair operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateKeyPair for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateKeyPair method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateKeyPairRequest method.
req, resp := client.CreateKeyPairRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateKeyPair

func (*EC2) CreateKeyPairWithContext

func (c *EC2) CreateKeyPairWithContext(ctx aws.Context, input *CreateKeyPairInput, opts ...request.Option) (*CreateKeyPairOutput, error)

CreateKeyPairWithContext is the same as CreateKeyPair with the addition of the ability to pass a context and additional request options.

See CreateKeyPair for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) CreateNatGateway

func (c *EC2) CreateNatGateway(input *CreateNatGatewayInput) (*CreateNatGatewayOutput, error)

CreateNatGateway API operation for Amazon Elastic Compute Cloud.

Creates a NAT gateway in the specified subnet. A NAT gateway can be used to enable instances in a private subnet to connect to the Internet. This action creates a network interface in the specified subnet with a private IP address from the IP address range of the subnet. For more information, see NAT Gateways (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/vpc-nat-gateway.html) in the Amazon Virtual Private Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation CreateNatGateway for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateNatGateway

Example (Shared00)

To create a NAT gateway This example creates a NAT gateway in subnet subnet-1a2b3c4d and associates an Elastic IP address with the allocation ID eipalloc-37fc1a52 with the NAT gateway.

Code:

svc := ec2.New(session.New())
input := &ec2.CreateNatGatewayInput{
    AllocationId: aws.String("eipalloc-37fc1a52"),
    SubnetId:     aws.String("subnet-1a2b3c4d"),
}

result, err := svc.CreateNatGateway(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) CreateNatGatewayRequest

func (c *EC2) CreateNatGatewayRequest(input *CreateNatGatewayInput) (req *request.Request, output *CreateNatGatewayOutput)

CreateNatGatewayRequest generates a "aws/request.Request" representing the client's request for the CreateNatGateway operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateNatGateway for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateNatGateway method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateNatGatewayRequest method.
req, resp := client.CreateNatGatewayRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateNatGateway

func (*EC2) CreateNatGatewayWithContext

func (c *EC2) CreateNatGatewayWithContext(ctx aws.Context, input *CreateNatGatewayInput, opts ...request.Option) (*CreateNatGatewayOutput, error)

CreateNatGatewayWithContext is the same as CreateNatGateway with the addition of the ability to pass a context and additional request options.

See CreateNatGateway for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) CreateNetworkAcl

func (c *EC2) CreateNetworkAcl(input *CreateNetworkAclInput) (*CreateNetworkAclOutput, error)

CreateNetworkAcl API operation for Amazon Elastic Compute Cloud.

Creates a network ACL in a VPC. Network ACLs provide an optional layer of security (in addition to security groups) for the instances in your VPC.

For more information about network ACLs, see Network ACLs (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_ACLs.html) in the Amazon Virtual Private Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation CreateNetworkAcl for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateNetworkAcl

Example (Shared00)

To create a network ACL This example creates a network ACL for the specified VPC.

Code:

svc := ec2.New(session.New())
input := &ec2.CreateNetworkAclInput{
    VpcId: aws.String("vpc-a01106c2"),
}

result, err := svc.CreateNetworkAcl(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) CreateNetworkAclEntry

func (c *EC2) CreateNetworkAclEntry(input *CreateNetworkAclEntryInput) (*CreateNetworkAclEntryOutput, error)

CreateNetworkAclEntry API operation for Amazon Elastic Compute Cloud.

Creates an entry (a rule) in a network ACL with the specified rule number. Each network ACL has a set of numbered ingress rules and a separate set of numbered egress rules. When determining whether a packet should be allowed in or out of a subnet associated with the ACL, we process the entries in the ACL according to the rule numbers, in ascending order. Each network ACL has a set of ingress rules and a separate set of egress rules.

We recommend that you leave room between the rule numbers (for example, 100, 110, 120, ...), and not number them one right after the other (for example, 101, 102, 103, ...). This makes it easier to add a rule between existing ones without having to renumber the rules.

After you add an entry, you can't modify it; you must either replace it, or create an entry and delete the old one.

For more information about network ACLs, see Network ACLs (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_ACLs.html) in the Amazon Virtual Private Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation CreateNetworkAclEntry for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateNetworkAclEntry

Example (Shared00)

To create a network ACL entry This example creates an entry for the specified network ACL. The rule allows ingress traffic from anywhere (0.0.0.0/0) on UDP port 53 (DNS) into any associated subnet.

Code:

svc := ec2.New(session.New())
input := &ec2.CreateNetworkAclEntryInput{
    CidrBlock:    aws.String("0.0.0.0/0"),
    Egress:       aws.Bool(false),
    NetworkAclId: aws.String("acl-5fb85d36"),
    PortRange: &ec2.PortRange{
        From: aws.Int64(53),
        To:   aws.Int64(53),
    },
    Protocol:   aws.String("udp"),
    RuleAction: aws.String("allow"),
    RuleNumber: aws.Int64(100),
}

result, err := svc.CreateNetworkAclEntry(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) CreateNetworkAclEntryRequest

func (c *EC2) CreateNetworkAclEntryRequest(input *CreateNetworkAclEntryInput) (req *request.Request, output *CreateNetworkAclEntryOutput)

CreateNetworkAclEntryRequest generates a "aws/request.Request" representing the client's request for the CreateNetworkAclEntry operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateNetworkAclEntry for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateNetworkAclEntry method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateNetworkAclEntryRequest method.
req, resp := client.CreateNetworkAclEntryRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateNetworkAclEntry

func (*EC2) CreateNetworkAclEntryWithContext

func (c *EC2) CreateNetworkAclEntryWithContext(ctx aws.Context, input *CreateNetworkAclEntryInput, opts ...request.Option) (*CreateNetworkAclEntryOutput, error)

CreateNetworkAclEntryWithContext is the same as CreateNetworkAclEntry with the addition of the ability to pass a context and additional request options.

See CreateNetworkAclEntry for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) CreateNetworkAclRequest

func (c *EC2) CreateNetworkAclRequest(input *CreateNetworkAclInput) (req *request.Request, output *CreateNetworkAclOutput)

CreateNetworkAclRequest generates a "aws/request.Request" representing the client's request for the CreateNetworkAcl operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateNetworkAcl for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateNetworkAcl method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateNetworkAclRequest method.
req, resp := client.CreateNetworkAclRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateNetworkAcl

func (*EC2) CreateNetworkAclWithContext

func (c *EC2) CreateNetworkAclWithContext(ctx aws.Context, input *CreateNetworkAclInput, opts ...request.Option) (*CreateNetworkAclOutput, error)

CreateNetworkAclWithContext is the same as CreateNetworkAcl with the addition of the ability to pass a context and additional request options.

See CreateNetworkAcl for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) CreateNetworkInterface

func (c *EC2) CreateNetworkInterface(input *CreateNetworkInterfaceInput) (*CreateNetworkInterfaceOutput, error)

CreateNetworkInterface API operation for Amazon Elastic Compute Cloud.

Creates a network interface in the specified subnet.

For more information about network interfaces, see Elastic Network Interfaces (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-eni.html) in the Amazon Virtual Private Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation CreateNetworkInterface for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateNetworkInterface

Example (Shared00)

To create a network interface This example creates a network interface for the specified subnet.

Code:

svc := ec2.New(session.New())
input := &ec2.CreateNetworkInterfaceInput{
    Description: aws.String("my network interface"),
    Groups: []*string{
        aws.String("sg-903004f8"),
    },
    PrivateIpAddress: aws.String("10.0.2.17"),
    SubnetId:         aws.String("subnet-9d4a7b6c"),
}

result, err := svc.CreateNetworkInterface(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) CreateNetworkInterfaceRequest

func (c *EC2) CreateNetworkInterfaceRequest(input *CreateNetworkInterfaceInput) (req *request.Request, output *CreateNetworkInterfaceOutput)

CreateNetworkInterfaceRequest generates a "aws/request.Request" representing the client's request for the CreateNetworkInterface operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateNetworkInterface for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateNetworkInterface method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateNetworkInterfaceRequest method.
req, resp := client.CreateNetworkInterfaceRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateNetworkInterface

func (*EC2) CreateNetworkInterfaceWithContext

func (c *EC2) CreateNetworkInterfaceWithContext(ctx aws.Context, input *CreateNetworkInterfaceInput, opts ...request.Option) (*CreateNetworkInterfaceOutput, error)

CreateNetworkInterfaceWithContext is the same as CreateNetworkInterface with the addition of the ability to pass a context and additional request options.

See CreateNetworkInterface for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) CreatePlacementGroup

func (c *EC2) CreatePlacementGroup(input *CreatePlacementGroupInput) (*CreatePlacementGroupOutput, error)

CreatePlacementGroup API operation for Amazon Elastic Compute Cloud.

Creates a placement group that you launch cluster instances into. You must give the group a name that's unique within the scope of your account.

For more information about placement groups and cluster instances, see Cluster Instances (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using_cluster_computing.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation CreatePlacementGroup for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreatePlacementGroup

Example (Shared00)

To create a placement group This example creates a placement group with the specified name.

Code:

svc := ec2.New(session.New())
input := &ec2.CreatePlacementGroupInput{
    GroupName: aws.String("my-cluster"),
    Strategy:  aws.String("cluster"),
}

result, err := svc.CreatePlacementGroup(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) CreatePlacementGroupRequest

func (c *EC2) CreatePlacementGroupRequest(input *CreatePlacementGroupInput) (req *request.Request, output *CreatePlacementGroupOutput)

CreatePlacementGroupRequest generates a "aws/request.Request" representing the client's request for the CreatePlacementGroup operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreatePlacementGroup for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreatePlacementGroup method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreatePlacementGroupRequest method.
req, resp := client.CreatePlacementGroupRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreatePlacementGroup

func (*EC2) CreatePlacementGroupWithContext

func (c *EC2) CreatePlacementGroupWithContext(ctx aws.Context, input *CreatePlacementGroupInput, opts ...request.Option) (*CreatePlacementGroupOutput, error)

CreatePlacementGroupWithContext is the same as CreatePlacementGroup with the addition of the ability to pass a context and additional request options.

See CreatePlacementGroup for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) CreateReservedInstancesListing

func (c *EC2) CreateReservedInstancesListing(input *CreateReservedInstancesListingInput) (*CreateReservedInstancesListingOutput, error)

CreateReservedInstancesListing API operation for Amazon Elastic Compute Cloud.

Creates a listing for Amazon EC2 Standard Reserved Instances to be sold in the Reserved Instance Marketplace. You can submit one Standard Reserved Instance listing at a time. To get a list of your Standard Reserved Instances, you can use the DescribeReservedInstances operation.

Only Standard Reserved Instances with a capacity reservation can be sold in the Reserved Instance Marketplace. Convertible Reserved Instances and Standard Reserved Instances with a regional benefit cannot be sold.

The Reserved Instance Marketplace matches sellers who want to resell Standard Reserved Instance capacity that they no longer need with buyers who want to purchase additional capacity. Reserved Instances bought and sold through the Reserved Instance Marketplace work like any other Reserved Instances.

To sell your Standard Reserved Instances, you must first register as a seller in the Reserved Instance Marketplace. After completing the registration process, you can create a Reserved Instance Marketplace listing of some or all of your Standard Reserved Instances, and specify the upfront price to receive for them. Your Standard Reserved Instance listings then become available for purchase. To view the details of your Standard Reserved Instance listing, you can use the DescribeReservedInstancesListings operation.

For more information, see Reserved Instance Marketplace (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ri-market-general.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation CreateReservedInstancesListing for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateReservedInstancesListing

func (*EC2) CreateReservedInstancesListingRequest

func (c *EC2) CreateReservedInstancesListingRequest(input *CreateReservedInstancesListingInput) (req *request.Request, output *CreateReservedInstancesListingOutput)

CreateReservedInstancesListingRequest generates a "aws/request.Request" representing the client's request for the CreateReservedInstancesListing operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateReservedInstancesListing for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateReservedInstancesListing method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateReservedInstancesListingRequest method.
req, resp := client.CreateReservedInstancesListingRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateReservedInstancesListing

func (*EC2) CreateReservedInstancesListingWithContext

func (c *EC2) CreateReservedInstancesListingWithContext(ctx aws.Context, input *CreateReservedInstancesListingInput, opts ...request.Option) (*CreateReservedInstancesListingOutput, error)

CreateReservedInstancesListingWithContext is the same as CreateReservedInstancesListing with the addition of the ability to pass a context and additional request options.

See CreateReservedInstancesListing for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) CreateRoute

func (c *EC2) CreateRoute(input *CreateRouteInput) (*CreateRouteOutput, error)

CreateRoute API operation for Amazon Elastic Compute Cloud.

Creates a route in a route table within a VPC.

You must specify one of the following targets: Internet gateway or virtual private gateway, NAT instance, NAT gateway, VPC peering connection, network interface, or egress-only Internet gateway.

When determining how to route traffic, we use the route with the most specific match. For example, traffic is destined for the IPv4 address 192.0.2.3, and the route table includes the following two IPv4 routes:

* 192.0.2.0/24 (goes to some target A)

* 192.0.2.0/28 (goes to some target B)

Both routes apply to the traffic destined for 192.0.2.3. However, the second route in the list covers a smaller number of IP addresses and is therefore more specific, so we use that route to determine where to target the traffic.

For more information about route tables, see Route Tables (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_Route_Tables.html) in the Amazon Virtual Private Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation CreateRoute for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateRoute

Example (Shared00)

To create a route This example creates a route for the specified route table. The route matches all traffic (0.0.0.0/0) and routes it to the specified Internet gateway.

Code:

svc := ec2.New(session.New())
input := &ec2.CreateRouteInput{
    DestinationCidrBlock: aws.String("0.0.0.0/0"),
    GatewayId:            aws.String("igw-c0a643a9"),
    RouteTableId:         aws.String("rtb-22574640"),
}

result, err := svc.CreateRoute(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) CreateRouteRequest

func (c *EC2) CreateRouteRequest(input *CreateRouteInput) (req *request.Request, output *CreateRouteOutput)

CreateRouteRequest generates a "aws/request.Request" representing the client's request for the CreateRoute operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateRoute for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateRoute method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateRouteRequest method.
req, resp := client.CreateRouteRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateRoute

func (*EC2) CreateRouteTable

func (c *EC2) CreateRouteTable(input *CreateRouteTableInput) (*CreateRouteTableOutput, error)

CreateRouteTable API operation for Amazon Elastic Compute Cloud.

Creates a route table for the specified VPC. After you create a route table, you can add routes and associate the table with a subnet.

For more information about route tables, see Route Tables (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_Route_Tables.html) in the Amazon Virtual Private Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation CreateRouteTable for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateRouteTable

Example (Shared00)

To create a route table This example creates a route table for the specified VPC.

Code:

svc := ec2.New(session.New())
input := &ec2.CreateRouteTableInput{
    VpcId: aws.String("vpc-a01106c2"),
}

result, err := svc.CreateRouteTable(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) CreateRouteTableRequest

func (c *EC2) CreateRouteTableRequest(input *CreateRouteTableInput) (req *request.Request, output *CreateRouteTableOutput)

CreateRouteTableRequest generates a "aws/request.Request" representing the client's request for the CreateRouteTable operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateRouteTable for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateRouteTable method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateRouteTableRequest method.
req, resp := client.CreateRouteTableRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateRouteTable

func (*EC2) CreateRouteTableWithContext

func (c *EC2) CreateRouteTableWithContext(ctx aws.Context, input *CreateRouteTableInput, opts ...request.Option) (*CreateRouteTableOutput, error)

CreateRouteTableWithContext is the same as CreateRouteTable with the addition of the ability to pass a context and additional request options.

See CreateRouteTable for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) CreateRouteWithContext

func (c *EC2) CreateRouteWithContext(ctx aws.Context, input *CreateRouteInput, opts ...request.Option) (*CreateRouteOutput, error)

CreateRouteWithContext is the same as CreateRoute with the addition of the ability to pass a context and additional request options.

See CreateRoute for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) CreateSecurityGroup

func (c *EC2) CreateSecurityGroup(input *CreateSecurityGroupInput) (*CreateSecurityGroupOutput, error)

CreateSecurityGroup API operation for Amazon Elastic Compute Cloud.

Creates a security group.

A security group is for use with instances either in the EC2-Classic platform or in a specific VPC. For more information, see Amazon EC2 Security Groups (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-network-security.html) in the Amazon Elastic Compute Cloud User Guide and Security Groups for Your VPC (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_SecurityGroups.html) in the Amazon Virtual Private Cloud User Guide.

EC2-Classic: You can have up to 500 security groups.

EC2-VPC: You can create up to 500 security groups per VPC.

When you create a security group, you specify a friendly name of your choice. You can have a security group for use in EC2-Classic with the same name as a security group for use in a VPC. However, you can't have two security groups for use in EC2-Classic with the same name or two security groups for use in a VPC with the same name.

You have a default security group for use in EC2-Classic and a default security group for use in your VPC. If you don't specify a security group when you launch an instance, the instance is launched into the appropriate default security group. A default security group includes a default rule that grants instances unrestricted network access to each other.

You can add or remove rules from your security groups using AuthorizeSecurityGroupIngress, AuthorizeSecurityGroupEgress, RevokeSecurityGroupIngress, and RevokeSecurityGroupEgress.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation CreateSecurityGroup for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateSecurityGroup

func (*EC2) CreateSecurityGroupRequest

func (c *EC2) CreateSecurityGroupRequest(input *CreateSecurityGroupInput) (req *request.Request, output *CreateSecurityGroupOutput)

CreateSecurityGroupRequest generates a "aws/request.Request" representing the client's request for the CreateSecurityGroup operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateSecurityGroup for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateSecurityGroup method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateSecurityGroupRequest method.
req, resp := client.CreateSecurityGroupRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateSecurityGroup

func (*EC2) CreateSecurityGroupWithContext

func (c *EC2) CreateSecurityGroupWithContext(ctx aws.Context, input *CreateSecurityGroupInput, opts ...request.Option) (*CreateSecurityGroupOutput, error)

CreateSecurityGroupWithContext is the same as CreateSecurityGroup with the addition of the ability to pass a context and additional request options.

See CreateSecurityGroup for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) CreateSnapshot

func (c *EC2) CreateSnapshot(input *CreateSnapshotInput) (*Snapshot, error)

CreateSnapshot API operation for Amazon Elastic Compute Cloud.

Creates a snapshot of an EBS volume and stores it in Amazon S3. You can use snapshots for backups, to make copies of EBS volumes, and to save data before shutting down an instance.

When a snapshot is created, any AWS Marketplace product codes that are associated with the source volume are propagated to the snapshot.

You can take a snapshot of an attached volume that is in use. However, snapshots only capture data that has been written to your EBS volume at the time the snapshot command is issued; this may exclude any data that has been cached by any applications or the operating system. If you can pause any file systems on the volume long enough to take a snapshot, your snapshot should be complete. However, if you cannot pause all file writes to the volume, you should unmount the volume from within the instance, issue the snapshot command, and then remount the volume to ensure a consistent and complete snapshot. You may remount and use your volume while the snapshot status is pending.

To create a snapshot for EBS volumes that serve as root devices, you should stop the instance before taking the snapshot.

Snapshots that are taken from encrypted volumes are automatically encrypted. Volumes that are created from encrypted snapshots are also automatically encrypted. Your encrypted volumes and any associated snapshots always remain protected.

For more information, see Amazon Elastic Block Store (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/AmazonEBS.html) and Amazon EBS Encryption (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation CreateSnapshot for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateSnapshot

Example (Shared00)

To create a snapshot This example creates a snapshot of the volume with a volume ID of ``vol-1234567890abcdef0`` and a short description to identify the snapshot.

Code:

svc := ec2.New(session.New())
input := &ec2.CreateSnapshotInput{
    Description: aws.String("This is my root volume snapshot."),
    VolumeId:    aws.String("vol-1234567890abcdef0"),
}

result, err := svc.CreateSnapshot(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) CreateSnapshotRequest

func (c *EC2) CreateSnapshotRequest(input *CreateSnapshotInput) (req *request.Request, output *Snapshot)

CreateSnapshotRequest generates a "aws/request.Request" representing the client's request for the CreateSnapshot operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateSnapshot for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateSnapshot method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateSnapshotRequest method.
req, resp := client.CreateSnapshotRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateSnapshot

func (*EC2) CreateSnapshotWithContext

func (c *EC2) CreateSnapshotWithContext(ctx aws.Context, input *CreateSnapshotInput, opts ...request.Option) (*Snapshot, error)

CreateSnapshotWithContext is the same as CreateSnapshot with the addition of the ability to pass a context and additional request options.

See CreateSnapshot for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) CreateSpotDatafeedSubscription

func (c *EC2) CreateSpotDatafeedSubscription(input *CreateSpotDatafeedSubscriptionInput) (*CreateSpotDatafeedSubscriptionOutput, error)

CreateSpotDatafeedSubscription API operation for Amazon Elastic Compute Cloud.

Creates a data feed for Spot instances, enabling you to view Spot instance usage logs. You can create one data feed per AWS account. For more information, see Spot Instance Data Feed (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-data-feeds.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation CreateSpotDatafeedSubscription for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateSpotDatafeedSubscription

Example (Shared00)

To create a Spot Instance datafeed This example creates a Spot Instance data feed for your AWS account.

Code:

svc := ec2.New(session.New())
input := &ec2.CreateSpotDatafeedSubscriptionInput{
    Bucket: aws.String("my-s3-bucket"),
    Prefix: aws.String("spotdata"),
}

result, err := svc.CreateSpotDatafeedSubscription(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) CreateSpotDatafeedSubscriptionRequest

func (c *EC2) CreateSpotDatafeedSubscriptionRequest(input *CreateSpotDatafeedSubscriptionInput) (req *request.Request, output *CreateSpotDatafeedSubscriptionOutput)

CreateSpotDatafeedSubscriptionRequest generates a "aws/request.Request" representing the client's request for the CreateSpotDatafeedSubscription operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateSpotDatafeedSubscription for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateSpotDatafeedSubscription method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateSpotDatafeedSubscriptionRequest method.
req, resp := client.CreateSpotDatafeedSubscriptionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateSpotDatafeedSubscription

func (*EC2) CreateSpotDatafeedSubscriptionWithContext

func (c *EC2) CreateSpotDatafeedSubscriptionWithContext(ctx aws.Context, input *CreateSpotDatafeedSubscriptionInput, opts ...request.Option) (*CreateSpotDatafeedSubscriptionOutput, error)

CreateSpotDatafeedSubscriptionWithContext is the same as CreateSpotDatafeedSubscription with the addition of the ability to pass a context and additional request options.

See CreateSpotDatafeedSubscription for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) CreateSubnet

func (c *EC2) CreateSubnet(input *CreateSubnetInput) (*CreateSubnetOutput, error)

CreateSubnet API operation for Amazon Elastic Compute Cloud.

Creates a subnet in an existing VPC.

When you create each subnet, you provide the VPC ID and the CIDR block you want for the subnet. After you create a subnet, you can't change its CIDR block. The subnet's IPv4 CIDR block can be the same as the VPC's IPv4 CIDR block (assuming you want only a single subnet in the VPC), or a subset of the VPC's IPv4 CIDR block. If you create more than one subnet in a VPC, the subnets' CIDR blocks must not overlap. The smallest IPv4 subnet (and VPC) you can create uses a /28 netmask (16 IPv4 addresses), and the largest uses a /16 netmask (65,536 IPv4 addresses).

If you've associated an IPv6 CIDR block with your VPC, you can create a subnet with an IPv6 CIDR block that uses a /64 prefix length.

AWS reserves both the first four and the last IPv4 address in each subnet's CIDR block. They're not available for use.

If you add more than one subnet to a VPC, they're set up in a star topology with a logical router in the middle.

If you launch an instance in a VPC using an Amazon EBS-backed AMI, the IP address doesn't change if you stop and restart the instance (unlike a similar instance launched outside a VPC, which gets a new IP address when restarted). It's therefore possible to have a subnet with no running instances (they're all stopped), but no remaining IP addresses available.

For more information about subnets, see Your VPC and Subnets (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_Subnets.html) in the Amazon Virtual Private Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation CreateSubnet for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateSubnet

Example (Shared00)

To create a subnet This example creates a subnet in the specified VPC with the specified CIDR block. We recommend that you let us select an Availability Zone for you.

Code:

svc := ec2.New(session.New())
input := &ec2.CreateSubnetInput{
    CidrBlock: aws.String("10.0.1.0/24"),
    VpcId:     aws.String("vpc-a01106c2"),
}

result, err := svc.CreateSubnet(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) CreateSubnetRequest

func (c *EC2) CreateSubnetRequest(input *CreateSubnetInput) (req *request.Request, output *CreateSubnetOutput)

CreateSubnetRequest generates a "aws/request.Request" representing the client's request for the CreateSubnet operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateSubnet for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateSubnet method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateSubnetRequest method.
req, resp := client.CreateSubnetRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateSubnet

func (*EC2) CreateSubnetWithContext

func (c *EC2) CreateSubnetWithContext(ctx aws.Context, input *CreateSubnetInput, opts ...request.Option) (*CreateSubnetOutput, error)

CreateSubnetWithContext is the same as CreateSubnet with the addition of the ability to pass a context and additional request options.

See CreateSubnet for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) CreateTags

func (c *EC2) CreateTags(input *CreateTagsInput) (*CreateTagsOutput, error)

CreateTags API operation for Amazon Elastic Compute Cloud.

Adds or overwrites one or more tags for the specified Amazon EC2 resource or resources. Each resource can have a maximum of 50 tags. Each tag consists of a key and optional value. Tag keys must be unique per resource.

For more information about tags, see Tagging Your Resources (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html) in the Amazon Elastic Compute Cloud User Guide. For more information about creating IAM policies that control users' access to resources based on tags, see Supported Resource-Level Permissions for Amazon EC2 API Actions (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-supported-iam-actions-resources.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation CreateTags for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateTags

Example (Shared00)

To add a tag to a resource This example adds the tag Stack=production to the specified image, or overwrites an existing tag for the AMI where the tag key is Stack.

Code:

svc := ec2.New(session.New())
input := &ec2.CreateTagsInput{
    Resources: []*string{
        aws.String("ami-78a54011"),
    },
    Tags: []*ec2.Tag{
        {
            Key:   aws.String("Stack"),
            Value: aws.String("production"),
        },
    },
}

result, err := svc.CreateTags(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) CreateTagsRequest

func (c *EC2) CreateTagsRequest(input *CreateTagsInput) (req *request.Request, output *CreateTagsOutput)

CreateTagsRequest generates a "aws/request.Request" representing the client's request for the CreateTags operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateTags for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateTags method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateTagsRequest method.
req, resp := client.CreateTagsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateTags

func (*EC2) CreateTagsWithContext

func (c *EC2) CreateTagsWithContext(ctx aws.Context, input *CreateTagsInput, opts ...request.Option) (*CreateTagsOutput, error)

CreateTagsWithContext is the same as CreateTags with the addition of the ability to pass a context and additional request options.

See CreateTags for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) CreateVolume

func (c *EC2) CreateVolume(input *CreateVolumeInput) (*Volume, error)

CreateVolume API operation for Amazon Elastic Compute Cloud.

Creates an EBS volume that can be attached to an instance in the same Availability Zone. The volume is created in the regional endpoint that you send the HTTP request to. For more information see Regions and Endpoints (http://docs.aws.amazon.com/general/latest/gr/rande.html).

You can create a new empty volume or restore a volume from an EBS snapshot. Any AWS Marketplace product codes from the snapshot are propagated to the volume.

You can create encrypted volumes with the Encrypted parameter. Encrypted volumes may only be attached to instances that support Amazon EBS encryption. Volumes that are created from encrypted snapshots are also automatically encrypted. For more information, see Amazon EBS Encryption (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html) in the Amazon Elastic Compute Cloud User Guide.

You can tag your volumes during creation. For more information, see Tagging Your Amazon EC2 Resources (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html).

For more information, see Creating an Amazon EBS Volume (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-creating-volume.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation CreateVolume for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVolume

Example (Shared00)

To create a new volume This example creates an 80 GiB General Purpose (SSD) volume in the Availability Zone ``us-east-1a``.

Code:

svc := ec2.New(session.New())
input := &ec2.CreateVolumeInput{
    AvailabilityZone: aws.String("us-east-1a"),
    Size:             aws.Int64(80),
    VolumeType:       aws.String("gp2"),
}

result, err := svc.CreateVolume(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

Example (Shared01)

To create a new Provisioned IOPS (SSD) volume from a snapshot This example creates a new Provisioned IOPS (SSD) volume with 1000 provisioned IOPS from a snapshot in the Availability Zone ``us-east-1a``.

Code:

svc := ec2.New(session.New())
input := &ec2.CreateVolumeInput{
    AvailabilityZone: aws.String("us-east-1a"),
    Iops:             aws.Int64(1000),
    SnapshotId:       aws.String("snap-066877671789bd71b"),
    VolumeType:       aws.String("io1"),
}

result, err := svc.CreateVolume(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) CreateVolumeRequest

func (c *EC2) CreateVolumeRequest(input *CreateVolumeInput) (req *request.Request, output *Volume)

CreateVolumeRequest generates a "aws/request.Request" representing the client's request for the CreateVolume operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateVolume for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateVolume method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateVolumeRequest method.
req, resp := client.CreateVolumeRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVolume

func (*EC2) CreateVolumeWithContext

func (c *EC2) CreateVolumeWithContext(ctx aws.Context, input *CreateVolumeInput, opts ...request.Option) (*Volume, error)

CreateVolumeWithContext is the same as CreateVolume with the addition of the ability to pass a context and additional request options.

See CreateVolume for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) CreateVpc

func (c *EC2) CreateVpc(input *CreateVpcInput) (*CreateVpcOutput, error)

CreateVpc API operation for Amazon Elastic Compute Cloud.

Creates a VPC with the specified IPv4 CIDR block. The smallest VPC you can create uses a /28 netmask (16 IPv4 addresses), and the largest uses a /16 netmask (65,536 IPv4 addresses). To help you decide how big to make your VPC, see Your VPC and Subnets (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_Subnets.html) in the Amazon Virtual Private Cloud User Guide.

You can optionally request an Amazon-provided IPv6 CIDR block for the VPC. The IPv6 CIDR block uses a /56 prefix length, and is allocated from Amazon's pool of IPv6 addresses. You cannot choose the IPv6 range for your VPC.

By default, each instance you launch in the VPC has the default DHCP options, which includes only a default DNS server that we provide (AmazonProvidedDNS). For more information about DHCP options, see DHCP Options Sets (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_DHCP_Options.html) in the Amazon Virtual Private Cloud User Guide.

You can specify the instance tenancy value for the VPC when you create it. You can't change this value for the VPC after you create it. For more information, see Dedicated Instances (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/dedicated-instance.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation CreateVpc for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVpc

Example (Shared00)

To create a VPC This example creates a VPC with the specified CIDR block.

Code:

svc := ec2.New(session.New())
input := &ec2.CreateVpcInput{
    CidrBlock: aws.String("10.0.0.0/16"),
}

result, err := svc.CreateVpc(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) CreateVpcEndpoint

func (c *EC2) CreateVpcEndpoint(input *CreateVpcEndpointInput) (*CreateVpcEndpointOutput, error)

CreateVpcEndpoint API operation for Amazon Elastic Compute Cloud.

Creates a VPC endpoint for a specified AWS service. An endpoint enables you to create a private connection between your VPC and another AWS service in your account. You can specify an endpoint policy to attach to the endpoint that will control access to the service from your VPC. You can also specify the VPC route tables that use the endpoint.

Use DescribeVpcEndpointServices to get a list of supported AWS services.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation CreateVpcEndpoint for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVpcEndpoint

func (*EC2) CreateVpcEndpointRequest

func (c *EC2) CreateVpcEndpointRequest(input *CreateVpcEndpointInput) (req *request.Request, output *CreateVpcEndpointOutput)

CreateVpcEndpointRequest generates a "aws/request.Request" representing the client's request for the CreateVpcEndpoint operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateVpcEndpoint for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateVpcEndpoint method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateVpcEndpointRequest method.
req, resp := client.CreateVpcEndpointRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVpcEndpoint

func (*EC2) CreateVpcEndpointWithContext

func (c *EC2) CreateVpcEndpointWithContext(ctx aws.Context, input *CreateVpcEndpointInput, opts ...request.Option) (*CreateVpcEndpointOutput, error)

CreateVpcEndpointWithContext is the same as CreateVpcEndpoint with the addition of the ability to pass a context and additional request options.

See CreateVpcEndpoint for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) CreateVpcPeeringConnection

func (c *EC2) CreateVpcPeeringConnection(input *CreateVpcPeeringConnectionInput) (*CreateVpcPeeringConnectionOutput, error)

CreateVpcPeeringConnection API operation for Amazon Elastic Compute Cloud.

Requests a VPC peering connection between two VPCs: a requester VPC that you own and a peer VPC with which to create the connection. The peer VPC can belong to another AWS account. The requester VPC and peer VPC cannot have overlapping CIDR blocks.

The owner of the peer VPC must accept the peering request to activate the peering connection. The VPC peering connection request expires after 7 days, after which it cannot be accepted or rejected.

If you try to create a VPC peering connection between VPCs that have overlapping CIDR blocks, the VPC peering connection status goes to failed.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation CreateVpcPeeringConnection for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVpcPeeringConnection

func (*EC2) CreateVpcPeeringConnectionRequest

func (c *EC2) CreateVpcPeeringConnectionRequest(input *CreateVpcPeeringConnectionInput) (req *request.Request, output *CreateVpcPeeringConnectionOutput)

CreateVpcPeeringConnectionRequest generates a "aws/request.Request" representing the client's request for the CreateVpcPeeringConnection operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateVpcPeeringConnection for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateVpcPeeringConnection method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateVpcPeeringConnectionRequest method.
req, resp := client.CreateVpcPeeringConnectionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVpcPeeringConnection

func (*EC2) CreateVpcPeeringConnectionWithContext

func (c *EC2) CreateVpcPeeringConnectionWithContext(ctx aws.Context, input *CreateVpcPeeringConnectionInput, opts ...request.Option) (*CreateVpcPeeringConnectionOutput, error)

CreateVpcPeeringConnectionWithContext is the same as CreateVpcPeeringConnection with the addition of the ability to pass a context and additional request options.

See CreateVpcPeeringConnection for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) CreateVpcRequest

func (c *EC2) CreateVpcRequest(input *CreateVpcInput) (req *request.Request, output *CreateVpcOutput)

CreateVpcRequest generates a "aws/request.Request" representing the client's request for the CreateVpc operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateVpc for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateVpc method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateVpcRequest method.
req, resp := client.CreateVpcRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVpc

func (*EC2) CreateVpcWithContext

func (c *EC2) CreateVpcWithContext(ctx aws.Context, input *CreateVpcInput, opts ...request.Option) (*CreateVpcOutput, error)

CreateVpcWithContext is the same as CreateVpc with the addition of the ability to pass a context and additional request options.

See CreateVpc for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) CreateVpnConnection

func (c *EC2) CreateVpnConnection(input *CreateVpnConnectionInput) (*CreateVpnConnectionOutput, error)

CreateVpnConnection API operation for Amazon Elastic Compute Cloud.

Creates a VPN connection between an existing virtual private gateway and a VPN customer gateway. The only supported connection type is ipsec.1.

The response includes information that you need to give to your network administrator to configure your customer gateway.

We strongly recommend that you use HTTPS when calling this operation because the response contains sensitive cryptographic information for configuring your customer gateway.

If you decide to shut down your VPN connection for any reason and later create a new VPN connection, you must reconfigure your customer gateway with the new information returned from this call.

This is an idempotent operation. If you perform the operation more than once, Amazon EC2 doesn't return an error.

For more information about VPN connections, see Adding a Hardware Virtual Private Gateway to Your VPC (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_VPN.html) in the Amazon Virtual Private Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation CreateVpnConnection for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVpnConnection

func (*EC2) CreateVpnConnectionRequest

func (c *EC2) CreateVpnConnectionRequest(input *CreateVpnConnectionInput) (req *request.Request, output *CreateVpnConnectionOutput)

CreateVpnConnectionRequest generates a "aws/request.Request" representing the client's request for the CreateVpnConnection operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateVpnConnection for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateVpnConnection method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateVpnConnectionRequest method.
req, resp := client.CreateVpnConnectionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVpnConnection

func (*EC2) CreateVpnConnectionRoute

func (c *EC2) CreateVpnConnectionRoute(input *CreateVpnConnectionRouteInput) (*CreateVpnConnectionRouteOutput, error)

CreateVpnConnectionRoute API operation for Amazon Elastic Compute Cloud.

Creates a static route associated with a VPN connection between an existing virtual private gateway and a VPN customer gateway. The static route allows traffic to be routed from the virtual private gateway to the VPN customer gateway.

For more information about VPN connections, see Adding a Hardware Virtual Private Gateway to Your VPC (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_VPN.html) in the Amazon Virtual Private Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation CreateVpnConnectionRoute for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVpnConnectionRoute

func (*EC2) CreateVpnConnectionRouteRequest

func (c *EC2) CreateVpnConnectionRouteRequest(input *CreateVpnConnectionRouteInput) (req *request.Request, output *CreateVpnConnectionRouteOutput)

CreateVpnConnectionRouteRequest generates a "aws/request.Request" representing the client's request for the CreateVpnConnectionRoute operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateVpnConnectionRoute for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateVpnConnectionRoute method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateVpnConnectionRouteRequest method.
req, resp := client.CreateVpnConnectionRouteRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVpnConnectionRoute

func (*EC2) CreateVpnConnectionRouteWithContext

func (c *EC2) CreateVpnConnectionRouteWithContext(ctx aws.Context, input *CreateVpnConnectionRouteInput, opts ...request.Option) (*CreateVpnConnectionRouteOutput, error)

CreateVpnConnectionRouteWithContext is the same as CreateVpnConnectionRoute with the addition of the ability to pass a context and additional request options.

See CreateVpnConnectionRoute for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) CreateVpnConnectionWithContext

func (c *EC2) CreateVpnConnectionWithContext(ctx aws.Context, input *CreateVpnConnectionInput, opts ...request.Option) (*CreateVpnConnectionOutput, error)

CreateVpnConnectionWithContext is the same as CreateVpnConnection with the addition of the ability to pass a context and additional request options.

See CreateVpnConnection for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) CreateVpnGateway

func (c *EC2) CreateVpnGateway(input *CreateVpnGatewayInput) (*CreateVpnGatewayOutput, error)

CreateVpnGateway API operation for Amazon Elastic Compute Cloud.

Creates a virtual private gateway. A virtual private gateway is the endpoint on the VPC side of your VPN connection. You can create a virtual private gateway before creating the VPC itself.

For more information about virtual private gateways, see Adding a Hardware Virtual Private Gateway to Your VPC (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_VPN.html) in the Amazon Virtual Private Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation CreateVpnGateway for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVpnGateway

func (*EC2) CreateVpnGatewayRequest

func (c *EC2) CreateVpnGatewayRequest(input *CreateVpnGatewayInput) (req *request.Request, output *CreateVpnGatewayOutput)

CreateVpnGatewayRequest generates a "aws/request.Request" representing the client's request for the CreateVpnGateway operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateVpnGateway for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateVpnGateway method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateVpnGatewayRequest method.
req, resp := client.CreateVpnGatewayRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVpnGateway

func (*EC2) CreateVpnGatewayWithContext

func (c *EC2) CreateVpnGatewayWithContext(ctx aws.Context, input *CreateVpnGatewayInput, opts ...request.Option) (*CreateVpnGatewayOutput, error)

CreateVpnGatewayWithContext is the same as CreateVpnGateway with the addition of the ability to pass a context and additional request options.

See CreateVpnGateway for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DeleteCustomerGateway

func (c *EC2) DeleteCustomerGateway(input *DeleteCustomerGatewayInput) (*DeleteCustomerGatewayOutput, error)

DeleteCustomerGateway API operation for Amazon Elastic Compute Cloud.

Deletes the specified customer gateway. You must delete the VPN connection before you can delete the customer gateway.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DeleteCustomerGateway for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteCustomerGateway

Example (Shared00)

To delete a customer gateway This example deletes the specified customer gateway.

Code:

svc := ec2.New(session.New())
input := &ec2.DeleteCustomerGatewayInput{
    CustomerGatewayId: aws.String("cgw-0e11f167"),
}

result, err := svc.DeleteCustomerGateway(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DeleteCustomerGatewayRequest

func (c *EC2) DeleteCustomerGatewayRequest(input *DeleteCustomerGatewayInput) (req *request.Request, output *DeleteCustomerGatewayOutput)

DeleteCustomerGatewayRequest generates a "aws/request.Request" representing the client's request for the DeleteCustomerGateway operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteCustomerGateway for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteCustomerGateway method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteCustomerGatewayRequest method.
req, resp := client.DeleteCustomerGatewayRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteCustomerGateway

func (*EC2) DeleteCustomerGatewayWithContext

func (c *EC2) DeleteCustomerGatewayWithContext(ctx aws.Context, input *DeleteCustomerGatewayInput, opts ...request.Option) (*DeleteCustomerGatewayOutput, error)

DeleteCustomerGatewayWithContext is the same as DeleteCustomerGateway with the addition of the ability to pass a context and additional request options.

See DeleteCustomerGateway for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DeleteDhcpOptions

func (c *EC2) DeleteDhcpOptions(input *DeleteDhcpOptionsInput) (*DeleteDhcpOptionsOutput, error)

DeleteDhcpOptions API operation for Amazon Elastic Compute Cloud.

Deletes the specified set of DHCP options. You must disassociate the set of DHCP options before you can delete it. You can disassociate the set of DHCP options by associating either a new set of options or the default set of options with the VPC.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DeleteDhcpOptions for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteDhcpOptions

Example (Shared00)

To delete a DHCP options set This example deletes the specified DHCP options set.

Code:

svc := ec2.New(session.New())
input := &ec2.DeleteDhcpOptionsInput{
    DhcpOptionsId: aws.String("dopt-d9070ebb"),
}

result, err := svc.DeleteDhcpOptions(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DeleteDhcpOptionsRequest

func (c *EC2) DeleteDhcpOptionsRequest(input *DeleteDhcpOptionsInput) (req *request.Request, output *DeleteDhcpOptionsOutput)

DeleteDhcpOptionsRequest generates a "aws/request.Request" representing the client's request for the DeleteDhcpOptions operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteDhcpOptions for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteDhcpOptions method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteDhcpOptionsRequest method.
req, resp := client.DeleteDhcpOptionsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteDhcpOptions

func (*EC2) DeleteDhcpOptionsWithContext

func (c *EC2) DeleteDhcpOptionsWithContext(ctx aws.Context, input *DeleteDhcpOptionsInput, opts ...request.Option) (*DeleteDhcpOptionsOutput, error)

DeleteDhcpOptionsWithContext is the same as DeleteDhcpOptions with the addition of the ability to pass a context and additional request options.

See DeleteDhcpOptions for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DeleteEgressOnlyInternetGateway

func (c *EC2) DeleteEgressOnlyInternetGateway(input *DeleteEgressOnlyInternetGatewayInput) (*DeleteEgressOnlyInternetGatewayOutput, error)

DeleteEgressOnlyInternetGateway API operation for Amazon Elastic Compute Cloud.

Deletes an egress-only Internet gateway.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DeleteEgressOnlyInternetGateway for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteEgressOnlyInternetGateway

func (*EC2) DeleteEgressOnlyInternetGatewayRequest

func (c *EC2) DeleteEgressOnlyInternetGatewayRequest(input *DeleteEgressOnlyInternetGatewayInput) (req *request.Request, output *DeleteEgressOnlyInternetGatewayOutput)

DeleteEgressOnlyInternetGatewayRequest generates a "aws/request.Request" representing the client's request for the DeleteEgressOnlyInternetGateway operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteEgressOnlyInternetGateway for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteEgressOnlyInternetGateway method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteEgressOnlyInternetGatewayRequest method.
req, resp := client.DeleteEgressOnlyInternetGatewayRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteEgressOnlyInternetGateway

func (*EC2) DeleteEgressOnlyInternetGatewayWithContext

func (c *EC2) DeleteEgressOnlyInternetGatewayWithContext(ctx aws.Context, input *DeleteEgressOnlyInternetGatewayInput, opts ...request.Option) (*DeleteEgressOnlyInternetGatewayOutput, error)

DeleteEgressOnlyInternetGatewayWithContext is the same as DeleteEgressOnlyInternetGateway with the addition of the ability to pass a context and additional request options.

See DeleteEgressOnlyInternetGateway for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DeleteFlowLogs

func (c *EC2) DeleteFlowLogs(input *DeleteFlowLogsInput) (*DeleteFlowLogsOutput, error)

DeleteFlowLogs API operation for Amazon Elastic Compute Cloud.

Deletes one or more flow logs.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DeleteFlowLogs for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteFlowLogs

func (*EC2) DeleteFlowLogsRequest

func (c *EC2) DeleteFlowLogsRequest(input *DeleteFlowLogsInput) (req *request.Request, output *DeleteFlowLogsOutput)

DeleteFlowLogsRequest generates a "aws/request.Request" representing the client's request for the DeleteFlowLogs operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteFlowLogs for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteFlowLogs method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteFlowLogsRequest method.
req, resp := client.DeleteFlowLogsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteFlowLogs

func (*EC2) DeleteFlowLogsWithContext

func (c *EC2) DeleteFlowLogsWithContext(ctx aws.Context, input *DeleteFlowLogsInput, opts ...request.Option) (*DeleteFlowLogsOutput, error)

DeleteFlowLogsWithContext is the same as DeleteFlowLogs with the addition of the ability to pass a context and additional request options.

See DeleteFlowLogs for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DeleteInternetGateway

func (c *EC2) DeleteInternetGateway(input *DeleteInternetGatewayInput) (*DeleteInternetGatewayOutput, error)

DeleteInternetGateway API operation for Amazon Elastic Compute Cloud.

Deletes the specified Internet gateway. You must detach the Internet gateway from the VPC before you can delete it.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DeleteInternetGateway for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteInternetGateway

Example (Shared00)

To delete an Internet gateway This example deletes the specified Internet gateway.

Code:

svc := ec2.New(session.New())
input := &ec2.DeleteInternetGatewayInput{
    InternetGatewayId: aws.String("igw-c0a643a9"),
}

result, err := svc.DeleteInternetGateway(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DeleteInternetGatewayRequest

func (c *EC2) DeleteInternetGatewayRequest(input *DeleteInternetGatewayInput) (req *request.Request, output *DeleteInternetGatewayOutput)

DeleteInternetGatewayRequest generates a "aws/request.Request" representing the client's request for the DeleteInternetGateway operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteInternetGateway for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteInternetGateway method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteInternetGatewayRequest method.
req, resp := client.DeleteInternetGatewayRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteInternetGateway

func (*EC2) DeleteInternetGatewayWithContext

func (c *EC2) DeleteInternetGatewayWithContext(ctx aws.Context, input *DeleteInternetGatewayInput, opts ...request.Option) (*DeleteInternetGatewayOutput, error)

DeleteInternetGatewayWithContext is the same as DeleteInternetGateway with the addition of the ability to pass a context and additional request options.

See DeleteInternetGateway for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DeleteKeyPair

func (c *EC2) DeleteKeyPair(input *DeleteKeyPairInput) (*DeleteKeyPairOutput, error)

DeleteKeyPair API operation for Amazon Elastic Compute Cloud.

Deletes the specified key pair, by removing the public key from Amazon EC2.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DeleteKeyPair for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteKeyPair

Example (Shared00)

To delete a key pair This example deletes the specified key pair.

Code:

svc := ec2.New(session.New())
input := &ec2.DeleteKeyPairInput{
    KeyName: aws.String("my-key-pair"),
}

result, err := svc.DeleteKeyPair(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DeleteKeyPairRequest

func (c *EC2) DeleteKeyPairRequest(input *DeleteKeyPairInput) (req *request.Request, output *DeleteKeyPairOutput)

DeleteKeyPairRequest generates a "aws/request.Request" representing the client's request for the DeleteKeyPair operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteKeyPair for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteKeyPair method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteKeyPairRequest method.
req, resp := client.DeleteKeyPairRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteKeyPair

func (*EC2) DeleteKeyPairWithContext

func (c *EC2) DeleteKeyPairWithContext(ctx aws.Context, input *DeleteKeyPairInput, opts ...request.Option) (*DeleteKeyPairOutput, error)

DeleteKeyPairWithContext is the same as DeleteKeyPair with the addition of the ability to pass a context and additional request options.

See DeleteKeyPair for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DeleteNatGateway

func (c *EC2) DeleteNatGateway(input *DeleteNatGatewayInput) (*DeleteNatGatewayOutput, error)

DeleteNatGateway API operation for Amazon Elastic Compute Cloud.

Deletes the specified NAT gateway. Deleting a NAT gateway disassociates its Elastic IP address, but does not release the address from your account. Deleting a NAT gateway does not delete any NAT gateway routes in your route tables.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DeleteNatGateway for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteNatGateway

Example (Shared00)

To delete a NAT gateway This example deletes the specified NAT gateway.

Code:

svc := ec2.New(session.New())
input := &ec2.DeleteNatGatewayInput{
    NatGatewayId: aws.String("nat-04ae55e711cec5680"),
}

result, err := svc.DeleteNatGateway(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DeleteNatGatewayRequest

func (c *EC2) DeleteNatGatewayRequest(input *DeleteNatGatewayInput) (req *request.Request, output *DeleteNatGatewayOutput)

DeleteNatGatewayRequest generates a "aws/request.Request" representing the client's request for the DeleteNatGateway operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteNatGateway for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteNatGateway method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteNatGatewayRequest method.
req, resp := client.DeleteNatGatewayRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteNatGateway

func (*EC2) DeleteNatGatewayWithContext

func (c *EC2) DeleteNatGatewayWithContext(ctx aws.Context, input *DeleteNatGatewayInput, opts ...request.Option) (*DeleteNatGatewayOutput, error)

DeleteNatGatewayWithContext is the same as DeleteNatGateway with the addition of the ability to pass a context and additional request options.

See DeleteNatGateway for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DeleteNetworkAcl

func (c *EC2) DeleteNetworkAcl(input *DeleteNetworkAclInput) (*DeleteNetworkAclOutput, error)

DeleteNetworkAcl API operation for Amazon Elastic Compute Cloud.

Deletes the specified network ACL. You can't delete the ACL if it's associated with any subnets. You can't delete the default network ACL.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DeleteNetworkAcl for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteNetworkAcl

Example (Shared00)

To delete a network ACL This example deletes the specified network ACL.

Code:

svc := ec2.New(session.New())
input := &ec2.DeleteNetworkAclInput{
    NetworkAclId: aws.String("acl-5fb85d36"),
}

result, err := svc.DeleteNetworkAcl(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DeleteNetworkAclEntry

func (c *EC2) DeleteNetworkAclEntry(input *DeleteNetworkAclEntryInput) (*DeleteNetworkAclEntryOutput, error)

DeleteNetworkAclEntry API operation for Amazon Elastic Compute Cloud.

Deletes the specified ingress or egress entry (rule) from the specified network ACL.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DeleteNetworkAclEntry for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteNetworkAclEntry

Example (Shared00)

To delete a network ACL entry This example deletes ingress rule number 100 from the specified network ACL.

Code:

svc := ec2.New(session.New())
input := &ec2.DeleteNetworkAclEntryInput{
    Egress:       aws.Bool(true),
    NetworkAclId: aws.String("acl-5fb85d36"),
    RuleNumber:   aws.Int64(100),
}

result, err := svc.DeleteNetworkAclEntry(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DeleteNetworkAclEntryRequest

func (c *EC2) DeleteNetworkAclEntryRequest(input *DeleteNetworkAclEntryInput) (req *request.Request, output *DeleteNetworkAclEntryOutput)

DeleteNetworkAclEntryRequest generates a "aws/request.Request" representing the client's request for the DeleteNetworkAclEntry operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteNetworkAclEntry for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteNetworkAclEntry method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteNetworkAclEntryRequest method.
req, resp := client.DeleteNetworkAclEntryRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteNetworkAclEntry

func (*EC2) DeleteNetworkAclEntryWithContext

func (c *EC2) DeleteNetworkAclEntryWithContext(ctx aws.Context, input *DeleteNetworkAclEntryInput, opts ...request.Option) (*DeleteNetworkAclEntryOutput, error)

DeleteNetworkAclEntryWithContext is the same as DeleteNetworkAclEntry with the addition of the ability to pass a context and additional request options.

See DeleteNetworkAclEntry for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DeleteNetworkAclRequest

func (c *EC2) DeleteNetworkAclRequest(input *DeleteNetworkAclInput) (req *request.Request, output *DeleteNetworkAclOutput)

DeleteNetworkAclRequest generates a "aws/request.Request" representing the client's request for the DeleteNetworkAcl operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteNetworkAcl for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteNetworkAcl method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteNetworkAclRequest method.
req, resp := client.DeleteNetworkAclRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteNetworkAcl

func (*EC2) DeleteNetworkAclWithContext

func (c *EC2) DeleteNetworkAclWithContext(ctx aws.Context, input *DeleteNetworkAclInput, opts ...request.Option) (*DeleteNetworkAclOutput, error)

DeleteNetworkAclWithContext is the same as DeleteNetworkAcl with the addition of the ability to pass a context and additional request options.

See DeleteNetworkAcl for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DeleteNetworkInterface

func (c *EC2) DeleteNetworkInterface(input *DeleteNetworkInterfaceInput) (*DeleteNetworkInterfaceOutput, error)

DeleteNetworkInterface API operation for Amazon Elastic Compute Cloud.

Deletes the specified network interface. You must detach the network interface before you can delete it.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DeleteNetworkInterface for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteNetworkInterface

Example (Shared00)

To delete a network interface This example deletes the specified network interface.

Code:

svc := ec2.New(session.New())
input := &ec2.DeleteNetworkInterfaceInput{
    NetworkInterfaceId: aws.String("eni-e5aa89a3"),
}

result, err := svc.DeleteNetworkInterface(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DeleteNetworkInterfaceRequest

func (c *EC2) DeleteNetworkInterfaceRequest(input *DeleteNetworkInterfaceInput) (req *request.Request, output *DeleteNetworkInterfaceOutput)

DeleteNetworkInterfaceRequest generates a "aws/request.Request" representing the client's request for the DeleteNetworkInterface operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteNetworkInterface for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteNetworkInterface method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteNetworkInterfaceRequest method.
req, resp := client.DeleteNetworkInterfaceRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteNetworkInterface

func (*EC2) DeleteNetworkInterfaceWithContext

func (c *EC2) DeleteNetworkInterfaceWithContext(ctx aws.Context, input *DeleteNetworkInterfaceInput, opts ...request.Option) (*DeleteNetworkInterfaceOutput, error)

DeleteNetworkInterfaceWithContext is the same as DeleteNetworkInterface with the addition of the ability to pass a context and additional request options.

See DeleteNetworkInterface for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DeletePlacementGroup

func (c *EC2) DeletePlacementGroup(input *DeletePlacementGroupInput) (*DeletePlacementGroupOutput, error)

DeletePlacementGroup API operation for Amazon Elastic Compute Cloud.

Deletes the specified placement group. You must terminate all instances in the placement group before you can delete the placement group. For more information about placement groups and cluster instances, see Cluster Instances (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using_cluster_computing.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DeletePlacementGroup for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeletePlacementGroup

Example (Shared00)

To delete a placement group This example deletes the specified placement group.

Code:

svc := ec2.New(session.New())
input := &ec2.DeletePlacementGroupInput{
    GroupName: aws.String("my-cluster"),
}

result, err := svc.DeletePlacementGroup(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DeletePlacementGroupRequest

func (c *EC2) DeletePlacementGroupRequest(input *DeletePlacementGroupInput) (req *request.Request, output *DeletePlacementGroupOutput)

DeletePlacementGroupRequest generates a "aws/request.Request" representing the client's request for the DeletePlacementGroup operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeletePlacementGroup for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeletePlacementGroup method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeletePlacementGroupRequest method.
req, resp := client.DeletePlacementGroupRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeletePlacementGroup

func (*EC2) DeletePlacementGroupWithContext

func (c *EC2) DeletePlacementGroupWithContext(ctx aws.Context, input *DeletePlacementGroupInput, opts ...request.Option) (*DeletePlacementGroupOutput, error)

DeletePlacementGroupWithContext is the same as DeletePlacementGroup with the addition of the ability to pass a context and additional request options.

See DeletePlacementGroup for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DeleteRoute

func (c *EC2) DeleteRoute(input *DeleteRouteInput) (*DeleteRouteOutput, error)

DeleteRoute API operation for Amazon Elastic Compute Cloud.

Deletes the specified route from the specified route table.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DeleteRoute for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteRoute

Example (Shared00)

To delete a route This example deletes the specified route from the specified route table.

Code:

svc := ec2.New(session.New())
input := &ec2.DeleteRouteInput{
    DestinationCidrBlock: aws.String("0.0.0.0/0"),
    RouteTableId:         aws.String("rtb-22574640"),
}

result, err := svc.DeleteRoute(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DeleteRouteRequest

func (c *EC2) DeleteRouteRequest(input *DeleteRouteInput) (req *request.Request, output *DeleteRouteOutput)

DeleteRouteRequest generates a "aws/request.Request" representing the client's request for the DeleteRoute operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteRoute for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteRoute method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteRouteRequest method.
req, resp := client.DeleteRouteRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteRoute

func (*EC2) DeleteRouteTable

func (c *EC2) DeleteRouteTable(input *DeleteRouteTableInput) (*DeleteRouteTableOutput, error)

DeleteRouteTable API operation for Amazon Elastic Compute Cloud.

Deletes the specified route table. You must disassociate the route table from any subnets before you can delete it. You can't delete the main route table.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DeleteRouteTable for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteRouteTable

Example (Shared00)

To delete a route table This example deletes the specified route table.

Code:

svc := ec2.New(session.New())
input := &ec2.DeleteRouteTableInput{
    RouteTableId: aws.String("rtb-22574640"),
}

result, err := svc.DeleteRouteTable(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DeleteRouteTableRequest

func (c *EC2) DeleteRouteTableRequest(input *DeleteRouteTableInput) (req *request.Request, output *DeleteRouteTableOutput)

DeleteRouteTableRequest generates a "aws/request.Request" representing the client's request for the DeleteRouteTable operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteRouteTable for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteRouteTable method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteRouteTableRequest method.
req, resp := client.DeleteRouteTableRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteRouteTable

func (*EC2) DeleteRouteTableWithContext

func (c *EC2) DeleteRouteTableWithContext(ctx aws.Context, input *DeleteRouteTableInput, opts ...request.Option) (*DeleteRouteTableOutput, error)

DeleteRouteTableWithContext is the same as DeleteRouteTable with the addition of the ability to pass a context and additional request options.

See DeleteRouteTable for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DeleteRouteWithContext

func (c *EC2) DeleteRouteWithContext(ctx aws.Context, input *DeleteRouteInput, opts ...request.Option) (*DeleteRouteOutput, error)

DeleteRouteWithContext is the same as DeleteRoute with the addition of the ability to pass a context and additional request options.

See DeleteRoute for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DeleteSecurityGroup

func (c *EC2) DeleteSecurityGroup(input *DeleteSecurityGroupInput) (*DeleteSecurityGroupOutput, error)

DeleteSecurityGroup API operation for Amazon Elastic Compute Cloud.

Deletes a security group.

If you attempt to delete a security group that is associated with an instance, or is referenced by another security group, the operation fails with InvalidGroup.InUse in EC2-Classic or DependencyViolation in EC2-VPC.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DeleteSecurityGroup for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteSecurityGroup

func (*EC2) DeleteSecurityGroupRequest

func (c *EC2) DeleteSecurityGroupRequest(input *DeleteSecurityGroupInput) (req *request.Request, output *DeleteSecurityGroupOutput)

DeleteSecurityGroupRequest generates a "aws/request.Request" representing the client's request for the DeleteSecurityGroup operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteSecurityGroup for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteSecurityGroup method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteSecurityGroupRequest method.
req, resp := client.DeleteSecurityGroupRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteSecurityGroup

func (*EC2) DeleteSecurityGroupWithContext

func (c *EC2) DeleteSecurityGroupWithContext(ctx aws.Context, input *DeleteSecurityGroupInput, opts ...request.Option) (*DeleteSecurityGroupOutput, error)

DeleteSecurityGroupWithContext is the same as DeleteSecurityGroup with the addition of the ability to pass a context and additional request options.

See DeleteSecurityGroup for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DeleteSnapshot

func (c *EC2) DeleteSnapshot(input *DeleteSnapshotInput) (*DeleteSnapshotOutput, error)

DeleteSnapshot API operation for Amazon Elastic Compute Cloud.

Deletes the specified snapshot.

When you make periodic snapshots of a volume, the snapshots are incremental, and only the blocks on the device that have changed since your last snapshot are saved in the new snapshot. When you delete a snapshot, only the data not needed for any other snapshot is removed. So regardless of which prior snapshots have been deleted, all active snapshots will have access to all the information needed to restore the volume.

You cannot delete a snapshot of the root device of an EBS volume used by a registered AMI. You must first de-register the AMI before you can delete the snapshot.

For more information, see Deleting an Amazon EBS Snapshot (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-deleting-snapshot.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DeleteSnapshot for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteSnapshot

Example (Shared00)

To delete a snapshot This example deletes a snapshot with the snapshot ID of ``snap-1234567890abcdef0``. If the command succeeds, no output is returned.

Code:

svc := ec2.New(session.New())
input := &ec2.DeleteSnapshotInput{
    SnapshotId: aws.String("snap-1234567890abcdef0"),
}

result, err := svc.DeleteSnapshot(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DeleteSnapshotRequest

func (c *EC2) DeleteSnapshotRequest(input *DeleteSnapshotInput) (req *request.Request, output *DeleteSnapshotOutput)

DeleteSnapshotRequest generates a "aws/request.Request" representing the client's request for the DeleteSnapshot operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteSnapshot for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteSnapshot method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteSnapshotRequest method.
req, resp := client.DeleteSnapshotRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteSnapshot

func (*EC2) DeleteSnapshotWithContext

func (c *EC2) DeleteSnapshotWithContext(ctx aws.Context, input *DeleteSnapshotInput, opts ...request.Option) (*DeleteSnapshotOutput, error)

DeleteSnapshotWithContext is the same as DeleteSnapshot with the addition of the ability to pass a context and additional request options.

See DeleteSnapshot for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DeleteSpotDatafeedSubscription

func (c *EC2) DeleteSpotDatafeedSubscription(input *DeleteSpotDatafeedSubscriptionInput) (*DeleteSpotDatafeedSubscriptionOutput, error)

DeleteSpotDatafeedSubscription API operation for Amazon Elastic Compute Cloud.

Deletes the data feed for Spot instances.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DeleteSpotDatafeedSubscription for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteSpotDatafeedSubscription

Example (Shared00)

To cancel a Spot Instance data feed subscription This example deletes a Spot data feed subscription for the account.

Code:

svc := ec2.New(session.New())
input := &ec2.DeleteSpotDatafeedSubscriptionInput{}

result, err := svc.DeleteSpotDatafeedSubscription(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DeleteSpotDatafeedSubscriptionRequest

func (c *EC2) DeleteSpotDatafeedSubscriptionRequest(input *DeleteSpotDatafeedSubscriptionInput) (req *request.Request, output *DeleteSpotDatafeedSubscriptionOutput)

DeleteSpotDatafeedSubscriptionRequest generates a "aws/request.Request" representing the client's request for the DeleteSpotDatafeedSubscription operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteSpotDatafeedSubscription for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteSpotDatafeedSubscription method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteSpotDatafeedSubscriptionRequest method.
req, resp := client.DeleteSpotDatafeedSubscriptionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteSpotDatafeedSubscription

func (*EC2) DeleteSpotDatafeedSubscriptionWithContext

func (c *EC2) DeleteSpotDatafeedSubscriptionWithContext(ctx aws.Context, input *DeleteSpotDatafeedSubscriptionInput, opts ...request.Option) (*DeleteSpotDatafeedSubscriptionOutput, error)

DeleteSpotDatafeedSubscriptionWithContext is the same as DeleteSpotDatafeedSubscription with the addition of the ability to pass a context and additional request options.

See DeleteSpotDatafeedSubscription for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DeleteSubnet

func (c *EC2) DeleteSubnet(input *DeleteSubnetInput) (*DeleteSubnetOutput, error)

DeleteSubnet API operation for Amazon Elastic Compute Cloud.

Deletes the specified subnet. You must terminate all running instances in the subnet before you can delete the subnet.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DeleteSubnet for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteSubnet

Example (Shared00)

To delete a subnet This example deletes the specified subnet.

Code:

svc := ec2.New(session.New())
input := &ec2.DeleteSubnetInput{
    SubnetId: aws.String("subnet-9d4a7b6c"),
}

result, err := svc.DeleteSubnet(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DeleteSubnetRequest

func (c *EC2) DeleteSubnetRequest(input *DeleteSubnetInput) (req *request.Request, output *DeleteSubnetOutput)

DeleteSubnetRequest generates a "aws/request.Request" representing the client's request for the DeleteSubnet operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteSubnet for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteSubnet method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteSubnetRequest method.
req, resp := client.DeleteSubnetRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteSubnet

func (*EC2) DeleteSubnetWithContext

func (c *EC2) DeleteSubnetWithContext(ctx aws.Context, input *DeleteSubnetInput, opts ...request.Option) (*DeleteSubnetOutput, error)

DeleteSubnetWithContext is the same as DeleteSubnet with the addition of the ability to pass a context and additional request options.

See DeleteSubnet for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DeleteTags

func (c *EC2) DeleteTags(input *DeleteTagsInput) (*DeleteTagsOutput, error)

DeleteTags API operation for Amazon Elastic Compute Cloud.

Deletes the specified set of tags from the specified set of resources. This call is designed to follow a DescribeTags request.

For more information about tags, see Tagging Your Resources (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DeleteTags for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteTags

Example (Shared00)

To delete a tag from a resource This example deletes the tag Stack=test from the specified image.

Code:

svc := ec2.New(session.New())
input := &ec2.DeleteTagsInput{
    Resources: []*string{
        aws.String("ami-78a54011"),
    },
    Tags: []*ec2.Tag{
        {
            Key:   aws.String("Stack"),
            Value: aws.String("test"),
        },
    },
}

result, err := svc.DeleteTags(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DeleteTagsRequest

func (c *EC2) DeleteTagsRequest(input *DeleteTagsInput) (req *request.Request, output *DeleteTagsOutput)

DeleteTagsRequest generates a "aws/request.Request" representing the client's request for the DeleteTags operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteTags for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteTags method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteTagsRequest method.
req, resp := client.DeleteTagsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteTags

func (*EC2) DeleteTagsWithContext

func (c *EC2) DeleteTagsWithContext(ctx aws.Context, input *DeleteTagsInput, opts ...request.Option) (*DeleteTagsOutput, error)

DeleteTagsWithContext is the same as DeleteTags with the addition of the ability to pass a context and additional request options.

See DeleteTags for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DeleteVolume

func (c *EC2) DeleteVolume(input *DeleteVolumeInput) (*DeleteVolumeOutput, error)

DeleteVolume API operation for Amazon Elastic Compute Cloud.

Deletes the specified EBS volume. The volume must be in the available state (not attached to an instance).

The volume may remain in the deleting state for several minutes.

For more information, see Deleting an Amazon EBS Volume (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-deleting-volume.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DeleteVolume for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteVolume

Example (Shared00)

To delete a volume This example deletes an available volume with the volume ID of ``vol-049df61146c4d7901``. If the command succeeds, no output is returned.

Code:

svc := ec2.New(session.New())
input := &ec2.DeleteVolumeInput{
    VolumeId: aws.String("vol-049df61146c4d7901"),
}

result, err := svc.DeleteVolume(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DeleteVolumeRequest

func (c *EC2) DeleteVolumeRequest(input *DeleteVolumeInput) (req *request.Request, output *DeleteVolumeOutput)

DeleteVolumeRequest generates a "aws/request.Request" representing the client's request for the DeleteVolume operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteVolume for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteVolume method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteVolumeRequest method.
req, resp := client.DeleteVolumeRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteVolume

func (*EC2) DeleteVolumeWithContext

func (c *EC2) DeleteVolumeWithContext(ctx aws.Context, input *DeleteVolumeInput, opts ...request.Option) (*DeleteVolumeOutput, error)

DeleteVolumeWithContext is the same as DeleteVolume with the addition of the ability to pass a context and additional request options.

See DeleteVolume for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DeleteVpc

func (c *EC2) DeleteVpc(input *DeleteVpcInput) (*DeleteVpcOutput, error)

DeleteVpc API operation for Amazon Elastic Compute Cloud.

Deletes the specified VPC. You must detach or delete all gateways and resources that are associated with the VPC before you can delete it. For example, you must terminate all instances running in the VPC, delete all security groups associated with the VPC (except the default one), delete all route tables associated with the VPC (except the default one), and so on.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DeleteVpc for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteVpc

Example (Shared00)

To delete a VPC This example deletes the specified VPC.

Code:

svc := ec2.New(session.New())
input := &ec2.DeleteVpcInput{
    VpcId: aws.String("vpc-a01106c2"),
}

result, err := svc.DeleteVpc(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DeleteVpcEndpoints

func (c *EC2) DeleteVpcEndpoints(input *DeleteVpcEndpointsInput) (*DeleteVpcEndpointsOutput, error)

DeleteVpcEndpoints API operation for Amazon Elastic Compute Cloud.

Deletes one or more specified VPC endpoints. Deleting the endpoint also deletes the endpoint routes in the route tables that were associated with the endpoint.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DeleteVpcEndpoints for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteVpcEndpoints

func (*EC2) DeleteVpcEndpointsRequest

func (c *EC2) DeleteVpcEndpointsRequest(input *DeleteVpcEndpointsInput) (req *request.Request, output *DeleteVpcEndpointsOutput)

DeleteVpcEndpointsRequest generates a "aws/request.Request" representing the client's request for the DeleteVpcEndpoints operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteVpcEndpoints for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteVpcEndpoints method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteVpcEndpointsRequest method.
req, resp := client.DeleteVpcEndpointsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteVpcEndpoints

func (*EC2) DeleteVpcEndpointsWithContext

func (c *EC2) DeleteVpcEndpointsWithContext(ctx aws.Context, input *DeleteVpcEndpointsInput, opts ...request.Option) (*DeleteVpcEndpointsOutput, error)

DeleteVpcEndpointsWithContext is the same as DeleteVpcEndpoints with the addition of the ability to pass a context and additional request options.

See DeleteVpcEndpoints for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DeleteVpcPeeringConnection

func (c *EC2) DeleteVpcPeeringConnection(input *DeleteVpcPeeringConnectionInput) (*DeleteVpcPeeringConnectionOutput, error)

DeleteVpcPeeringConnection API operation for Amazon Elastic Compute Cloud.

Deletes a VPC peering connection. Either the owner of the requester VPC or the owner of the peer VPC can delete the VPC peering connection if it's in the active state. The owner of the requester VPC can delete a VPC peering connection in the pending-acceptance state.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DeleteVpcPeeringConnection for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteVpcPeeringConnection

func (*EC2) DeleteVpcPeeringConnectionRequest

func (c *EC2) DeleteVpcPeeringConnectionRequest(input *DeleteVpcPeeringConnectionInput) (req *request.Request, output *DeleteVpcPeeringConnectionOutput)

DeleteVpcPeeringConnectionRequest generates a "aws/request.Request" representing the client's request for the DeleteVpcPeeringConnection operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteVpcPeeringConnection for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteVpcPeeringConnection method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteVpcPeeringConnectionRequest method.
req, resp := client.DeleteVpcPeeringConnectionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteVpcPeeringConnection

func (*EC2) DeleteVpcPeeringConnectionWithContext

func (c *EC2) DeleteVpcPeeringConnectionWithContext(ctx aws.Context, input *DeleteVpcPeeringConnectionInput, opts ...request.Option) (*DeleteVpcPeeringConnectionOutput, error)

DeleteVpcPeeringConnectionWithContext is the same as DeleteVpcPeeringConnection with the addition of the ability to pass a context and additional request options.

See DeleteVpcPeeringConnection for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DeleteVpcRequest

func (c *EC2) DeleteVpcRequest(input *DeleteVpcInput) (req *request.Request, output *DeleteVpcOutput)

DeleteVpcRequest generates a "aws/request.Request" representing the client's request for the DeleteVpc operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteVpc for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteVpc method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteVpcRequest method.
req, resp := client.DeleteVpcRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteVpc

func (*EC2) DeleteVpcWithContext

func (c *EC2) DeleteVpcWithContext(ctx aws.Context, input *DeleteVpcInput, opts ...request.Option) (*DeleteVpcOutput, error)

DeleteVpcWithContext is the same as DeleteVpc with the addition of the ability to pass a context and additional request options.

See DeleteVpc for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DeleteVpnConnection

func (c *EC2) DeleteVpnConnection(input *DeleteVpnConnectionInput) (*DeleteVpnConnectionOutput, error)

DeleteVpnConnection API operation for Amazon Elastic Compute Cloud.

Deletes the specified VPN connection.

If you're deleting the VPC and its associated components, we recommend that you detach the virtual private gateway from the VPC and delete the VPC before deleting the VPN connection. If you believe that the tunnel credentials for your VPN connection have been compromised, you can delete the VPN connection and create a new one that has new keys, without needing to delete the VPC or virtual private gateway. If you create a new VPN connection, you must reconfigure the customer gateway using the new configuration information returned with the new VPN connection ID.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DeleteVpnConnection for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteVpnConnection

func (*EC2) DeleteVpnConnectionRequest

func (c *EC2) DeleteVpnConnectionRequest(input *DeleteVpnConnectionInput) (req *request.Request, output *DeleteVpnConnectionOutput)

DeleteVpnConnectionRequest generates a "aws/request.Request" representing the client's request for the DeleteVpnConnection operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteVpnConnection for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteVpnConnection method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteVpnConnectionRequest method.
req, resp := client.DeleteVpnConnectionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteVpnConnection

func (*EC2) DeleteVpnConnectionRoute

func (c *EC2) DeleteVpnConnectionRoute(input *DeleteVpnConnectionRouteInput) (*DeleteVpnConnectionRouteOutput, error)

DeleteVpnConnectionRoute API operation for Amazon Elastic Compute Cloud.

Deletes the specified static route associated with a VPN connection between an existing virtual private gateway and a VPN customer gateway. The static route allows traffic to be routed from the virtual private gateway to the VPN customer gateway.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DeleteVpnConnectionRoute for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteVpnConnectionRoute

func (*EC2) DeleteVpnConnectionRouteRequest

func (c *EC2) DeleteVpnConnectionRouteRequest(input *DeleteVpnConnectionRouteInput) (req *request.Request, output *DeleteVpnConnectionRouteOutput)

DeleteVpnConnectionRouteRequest generates a "aws/request.Request" representing the client's request for the DeleteVpnConnectionRoute operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteVpnConnectionRoute for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteVpnConnectionRoute method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteVpnConnectionRouteRequest method.
req, resp := client.DeleteVpnConnectionRouteRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteVpnConnectionRoute

func (*EC2) DeleteVpnConnectionRouteWithContext

func (c *EC2) DeleteVpnConnectionRouteWithContext(ctx aws.Context, input *DeleteVpnConnectionRouteInput, opts ...request.Option) (*DeleteVpnConnectionRouteOutput, error)

DeleteVpnConnectionRouteWithContext is the same as DeleteVpnConnectionRoute with the addition of the ability to pass a context and additional request options.

See DeleteVpnConnectionRoute for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DeleteVpnConnectionWithContext

func (c *EC2) DeleteVpnConnectionWithContext(ctx aws.Context, input *DeleteVpnConnectionInput, opts ...request.Option) (*DeleteVpnConnectionOutput, error)

DeleteVpnConnectionWithContext is the same as DeleteVpnConnection with the addition of the ability to pass a context and additional request options.

See DeleteVpnConnection for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DeleteVpnGateway

func (c *EC2) DeleteVpnGateway(input *DeleteVpnGatewayInput) (*DeleteVpnGatewayOutput, error)

DeleteVpnGateway API operation for Amazon Elastic Compute Cloud.

Deletes the specified virtual private gateway. We recommend that before you delete a virtual private gateway, you detach it from the VPC and delete the VPN connection. Note that you don't need to delete the virtual private gateway if you plan to delete and recreate the VPN connection between your VPC and your network.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DeleteVpnGateway for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteVpnGateway

func (*EC2) DeleteVpnGatewayRequest

func (c *EC2) DeleteVpnGatewayRequest(input *DeleteVpnGatewayInput) (req *request.Request, output *DeleteVpnGatewayOutput)

DeleteVpnGatewayRequest generates a "aws/request.Request" representing the client's request for the DeleteVpnGateway operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteVpnGateway for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteVpnGateway method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteVpnGatewayRequest method.
req, resp := client.DeleteVpnGatewayRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteVpnGateway

func (*EC2) DeleteVpnGatewayWithContext

func (c *EC2) DeleteVpnGatewayWithContext(ctx aws.Context, input *DeleteVpnGatewayInput, opts ...request.Option) (*DeleteVpnGatewayOutput, error)

DeleteVpnGatewayWithContext is the same as DeleteVpnGateway with the addition of the ability to pass a context and additional request options.

See DeleteVpnGateway for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DeregisterImage

func (c *EC2) DeregisterImage(input *DeregisterImageInput) (*DeregisterImageOutput, error)

DeregisterImage API operation for Amazon Elastic Compute Cloud.

Deregisters the specified AMI. After you deregister an AMI, it can't be used to launch new instances.

This command does not delete the AMI.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DeregisterImage for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeregisterImage

func (*EC2) DeregisterImageRequest

func (c *EC2) DeregisterImageRequest(input *DeregisterImageInput) (req *request.Request, output *DeregisterImageOutput)

DeregisterImageRequest generates a "aws/request.Request" representing the client's request for the DeregisterImage operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeregisterImage for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeregisterImage method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeregisterImageRequest method.
req, resp := client.DeregisterImageRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeregisterImage

func (*EC2) DeregisterImageWithContext

func (c *EC2) DeregisterImageWithContext(ctx aws.Context, input *DeregisterImageInput, opts ...request.Option) (*DeregisterImageOutput, error)

DeregisterImageWithContext is the same as DeregisterImage with the addition of the ability to pass a context and additional request options.

See DeregisterImage for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeAccountAttributes

func (c *EC2) DescribeAccountAttributes(input *DescribeAccountAttributesInput) (*DescribeAccountAttributesOutput, error)

DescribeAccountAttributes API operation for Amazon Elastic Compute Cloud.

Describes attributes of your AWS account. The following are the supported account attributes:

* supported-platforms: Indicates whether your account can launch instances
into EC2-Classic and EC2-VPC, or only into EC2-VPC.

* default-vpc: The ID of the default VPC for your account, or none.

* max-instances: The maximum number of On-Demand instances that you can
run.

* vpc-max-security-groups-per-interface: The maximum number of security
groups that you can assign to a network interface.

* max-elastic-ips: The maximum number of Elastic IP addresses that you
can allocate for use with EC2-Classic.

* vpc-max-elastic-ips: The maximum number of Elastic IP addresses that
you can allocate for use with EC2-VPC.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeAccountAttributes for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeAccountAttributes

Example (Shared00)

To describe a single attribute for your AWS account This example describes the supported-platforms attribute for your AWS account.

Code:

svc := ec2.New(session.New())
input := &ec2.DescribeAccountAttributesInput{
    AttributeNames: []*string{
        aws.String("supported-platforms"),
    },
}

result, err := svc.DescribeAccountAttributes(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

Example (Shared01)

To describe all attributes for your AWS account This example describes the attributes for your AWS account.

Code:

svc := ec2.New(session.New())
input := &ec2.DescribeAccountAttributesInput{}

result, err := svc.DescribeAccountAttributes(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DescribeAccountAttributesRequest

func (c *EC2) DescribeAccountAttributesRequest(input *DescribeAccountAttributesInput) (req *request.Request, output *DescribeAccountAttributesOutput)

DescribeAccountAttributesRequest generates a "aws/request.Request" representing the client's request for the DescribeAccountAttributes operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeAccountAttributes for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeAccountAttributes method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeAccountAttributesRequest method.
req, resp := client.DescribeAccountAttributesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeAccountAttributes

func (*EC2) DescribeAccountAttributesWithContext

func (c *EC2) DescribeAccountAttributesWithContext(ctx aws.Context, input *DescribeAccountAttributesInput, opts ...request.Option) (*DescribeAccountAttributesOutput, error)

DescribeAccountAttributesWithContext is the same as DescribeAccountAttributes with the addition of the ability to pass a context and additional request options.

See DescribeAccountAttributes for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeAddresses

func (c *EC2) DescribeAddresses(input *DescribeAddressesInput) (*DescribeAddressesOutput, error)

DescribeAddresses API operation for Amazon Elastic Compute Cloud.

Describes one or more of your Elastic IP addresses.

An Elastic IP address is for use in either the EC2-Classic platform or in a VPC. For more information, see Elastic IP Addresses (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeAddresses for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeAddresses

Example (Shared00)

To describe your Elastic IP addresses This example describes your Elastic IP addresses.

Code:

svc := ec2.New(session.New())
input := &ec2.DescribeAddressesInput{}

result, err := svc.DescribeAddresses(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

Example (Shared01)

To describe your Elastic IP addresses for EC2-VPC This example describes your Elastic IP addresses for use with instances in a VPC.

Code:

svc := ec2.New(session.New())
input := &ec2.DescribeAddressesInput{
    Filters: []*ec2.Filter{
        {
            Name: aws.String("domain"),
            Values: []*string{
                aws.String("vpc"),
            },
        },
    },
}

result, err := svc.DescribeAddresses(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

Example (Shared02)

To describe your Elastic IP addresses for EC2-Classic This example describes your Elastic IP addresses for use with instances in EC2-Classic.

Code:

svc := ec2.New(session.New())
input := &ec2.DescribeAddressesInput{
    Filters: []*ec2.Filter{
        {
            Name: aws.String("domain"),
            Values: []*string{
                aws.String("standard"),
            },
        },
    },
}

result, err := svc.DescribeAddresses(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DescribeAddressesRequest

func (c *EC2) DescribeAddressesRequest(input *DescribeAddressesInput) (req *request.Request, output *DescribeAddressesOutput)

DescribeAddressesRequest generates a "aws/request.Request" representing the client's request for the DescribeAddresses operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeAddresses for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeAddresses method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeAddressesRequest method.
req, resp := client.DescribeAddressesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeAddresses

func (*EC2) DescribeAddressesWithContext

func (c *EC2) DescribeAddressesWithContext(ctx aws.Context, input *DescribeAddressesInput, opts ...request.Option) (*DescribeAddressesOutput, error)

DescribeAddressesWithContext is the same as DescribeAddresses with the addition of the ability to pass a context and additional request options.

See DescribeAddresses for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeAvailabilityZones

func (c *EC2) DescribeAvailabilityZones(input *DescribeAvailabilityZonesInput) (*DescribeAvailabilityZonesOutput, error)

DescribeAvailabilityZones API operation for Amazon Elastic Compute Cloud.

Describes one or more of the Availability Zones that are available to you. The results include zones only for the region you're currently using. If there is an event impacting an Availability Zone, you can use this request to view the state and any provided message for that Availability Zone.

For more information, see Regions and Availability Zones (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeAvailabilityZones for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeAvailabilityZones

Example (Shared00)

To describe your Availability Zones This example describes the Availability Zones that are available to you. The response includes Availability Zones only for the current region.

Code:

svc := ec2.New(session.New())
input := &ec2.DescribeAvailabilityZonesInput{}

result, err := svc.DescribeAvailabilityZones(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DescribeAvailabilityZonesRequest

func (c *EC2) DescribeAvailabilityZonesRequest(input *DescribeAvailabilityZonesInput) (req *request.Request, output *DescribeAvailabilityZonesOutput)

DescribeAvailabilityZonesRequest generates a "aws/request.Request" representing the client's request for the DescribeAvailabilityZones operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeAvailabilityZones for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeAvailabilityZones method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeAvailabilityZonesRequest method.
req, resp := client.DescribeAvailabilityZonesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeAvailabilityZones

func (*EC2) DescribeAvailabilityZonesWithContext

func (c *EC2) DescribeAvailabilityZonesWithContext(ctx aws.Context, input *DescribeAvailabilityZonesInput, opts ...request.Option) (*DescribeAvailabilityZonesOutput, error)

DescribeAvailabilityZonesWithContext is the same as DescribeAvailabilityZones with the addition of the ability to pass a context and additional request options.

See DescribeAvailabilityZones for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeBundleTasks

func (c *EC2) DescribeBundleTasks(input *DescribeBundleTasksInput) (*DescribeBundleTasksOutput, error)

DescribeBundleTasks API operation for Amazon Elastic Compute Cloud.

Describes one or more of your bundling tasks.

Completed bundle tasks are listed for only a limited time. If your bundle task is no longer in the list, you can still register an AMI from it. Just use RegisterImage with the Amazon S3 bucket name and image manifest name you provided to the bundle task.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeBundleTasks for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeBundleTasks

func (*EC2) DescribeBundleTasksRequest

func (c *EC2) DescribeBundleTasksRequest(input *DescribeBundleTasksInput) (req *request.Request, output *DescribeBundleTasksOutput)

DescribeBundleTasksRequest generates a "aws/request.Request" representing the client's request for the DescribeBundleTasks operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeBundleTasks for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeBundleTasks method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeBundleTasksRequest method.
req, resp := client.DescribeBundleTasksRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeBundleTasks

func (*EC2) DescribeBundleTasksWithContext

func (c *EC2) DescribeBundleTasksWithContext(ctx aws.Context, input *DescribeBundleTasksInput, opts ...request.Option) (*DescribeBundleTasksOutput, error)

DescribeBundleTasksWithContext is the same as DescribeBundleTasks with the addition of the ability to pass a context and additional request options.

See DescribeBundleTasks for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeClassicLinkInstances

func (c *EC2) DescribeClassicLinkInstances(input *DescribeClassicLinkInstancesInput) (*DescribeClassicLinkInstancesOutput, error)

DescribeClassicLinkInstances API operation for Amazon Elastic Compute Cloud.

Describes one or more of your linked EC2-Classic instances. This request only returns information about EC2-Classic instances linked to a VPC through ClassicLink; you cannot use this request to return information about other instances.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeClassicLinkInstances for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeClassicLinkInstances

func (*EC2) DescribeClassicLinkInstancesRequest

func (c *EC2) DescribeClassicLinkInstancesRequest(input *DescribeClassicLinkInstancesInput) (req *request.Request, output *DescribeClassicLinkInstancesOutput)

DescribeClassicLinkInstancesRequest generates a "aws/request.Request" representing the client's request for the DescribeClassicLinkInstances operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeClassicLinkInstances for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeClassicLinkInstances method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeClassicLinkInstancesRequest method.
req, resp := client.DescribeClassicLinkInstancesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeClassicLinkInstances

func (*EC2) DescribeClassicLinkInstancesWithContext

func (c *EC2) DescribeClassicLinkInstancesWithContext(ctx aws.Context, input *DescribeClassicLinkInstancesInput, opts ...request.Option) (*DescribeClassicLinkInstancesOutput, error)

DescribeClassicLinkInstancesWithContext is the same as DescribeClassicLinkInstances with the addition of the ability to pass a context and additional request options.

See DescribeClassicLinkInstances for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeConversionTasks

func (c *EC2) DescribeConversionTasks(input *DescribeConversionTasksInput) (*DescribeConversionTasksOutput, error)

DescribeConversionTasks API operation for Amazon Elastic Compute Cloud.

Describes one or more of your conversion tasks. For more information, see the VM Import/Export User Guide (http://docs.aws.amazon.com/vm-import/latest/userguide/).

For information about the import manifest referenced by this API action, see VM Import Manifest (http://docs.aws.amazon.com/AWSEC2/latest/APIReference/manifest.html).

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeConversionTasks for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeConversionTasks

func (*EC2) DescribeConversionTasksRequest

func (c *EC2) DescribeConversionTasksRequest(input *DescribeConversionTasksInput) (req *request.Request, output *DescribeConversionTasksOutput)

DescribeConversionTasksRequest generates a "aws/request.Request" representing the client's request for the DescribeConversionTasks operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeConversionTasks for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeConversionTasks method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeConversionTasksRequest method.
req, resp := client.DescribeConversionTasksRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeConversionTasks

func (*EC2) DescribeConversionTasksWithContext

func (c *EC2) DescribeConversionTasksWithContext(ctx aws.Context, input *DescribeConversionTasksInput, opts ...request.Option) (*DescribeConversionTasksOutput, error)

DescribeConversionTasksWithContext is the same as DescribeConversionTasks with the addition of the ability to pass a context and additional request options.

See DescribeConversionTasks for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeCustomerGateways

func (c *EC2) DescribeCustomerGateways(input *DescribeCustomerGatewaysInput) (*DescribeCustomerGatewaysOutput, error)

DescribeCustomerGateways API operation for Amazon Elastic Compute Cloud.

Describes one or more of your VPN customer gateways.

For more information about VPN customer gateways, see Adding a Hardware Virtual Private Gateway to Your VPC (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_VPN.html) in the Amazon Virtual Private Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeCustomerGateways for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeCustomerGateways

Example (Shared00)

To describe a customer gateway This example describes the specified customer gateway.

Code:

svc := ec2.New(session.New())
input := &ec2.DescribeCustomerGatewaysInput{
    CustomerGatewayIds: []*string{
        aws.String("cgw-0e11f167"),
    },
}

result, err := svc.DescribeCustomerGateways(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DescribeCustomerGatewaysRequest

func (c *EC2) DescribeCustomerGatewaysRequest(input *DescribeCustomerGatewaysInput) (req *request.Request, output *DescribeCustomerGatewaysOutput)

DescribeCustomerGatewaysRequest generates a "aws/request.Request" representing the client's request for the DescribeCustomerGateways operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeCustomerGateways for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeCustomerGateways method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeCustomerGatewaysRequest method.
req, resp := client.DescribeCustomerGatewaysRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeCustomerGateways

func (*EC2) DescribeCustomerGatewaysWithContext

func (c *EC2) DescribeCustomerGatewaysWithContext(ctx aws.Context, input *DescribeCustomerGatewaysInput, opts ...request.Option) (*DescribeCustomerGatewaysOutput, error)

DescribeCustomerGatewaysWithContext is the same as DescribeCustomerGateways with the addition of the ability to pass a context and additional request options.

See DescribeCustomerGateways for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeDhcpOptions

func (c *EC2) DescribeDhcpOptions(input *DescribeDhcpOptionsInput) (*DescribeDhcpOptionsOutput, error)

DescribeDhcpOptions API operation for Amazon Elastic Compute Cloud.

Describes one or more of your DHCP options sets.

For more information about DHCP options sets, see DHCP Options Sets (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_DHCP_Options.html) in the Amazon Virtual Private Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeDhcpOptions for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeDhcpOptions

Example (Shared00)

To describe a DHCP options set This example describes the specified DHCP options set.

Code:

svc := ec2.New(session.New())
input := &ec2.DescribeDhcpOptionsInput{
    DhcpOptionsIds: []*string{
        aws.String("dopt-d9070ebb"),
    },
}

result, err := svc.DescribeDhcpOptions(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DescribeDhcpOptionsRequest

func (c *EC2) DescribeDhcpOptionsRequest(input *DescribeDhcpOptionsInput) (req *request.Request, output *DescribeDhcpOptionsOutput)

DescribeDhcpOptionsRequest generates a "aws/request.Request" representing the client's request for the DescribeDhcpOptions operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeDhcpOptions for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeDhcpOptions method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeDhcpOptionsRequest method.
req, resp := client.DescribeDhcpOptionsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeDhcpOptions

func (*EC2) DescribeDhcpOptionsWithContext

func (c *EC2) DescribeDhcpOptionsWithContext(ctx aws.Context, input *DescribeDhcpOptionsInput, opts ...request.Option) (*DescribeDhcpOptionsOutput, error)

DescribeDhcpOptionsWithContext is the same as DescribeDhcpOptions with the addition of the ability to pass a context and additional request options.

See DescribeDhcpOptions for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeEgressOnlyInternetGateways

func (c *EC2) DescribeEgressOnlyInternetGateways(input *DescribeEgressOnlyInternetGatewaysInput) (*DescribeEgressOnlyInternetGatewaysOutput, error)

DescribeEgressOnlyInternetGateways API operation for Amazon Elastic Compute Cloud.

Describes one or more of your egress-only Internet gateways.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeEgressOnlyInternetGateways for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeEgressOnlyInternetGateways

func (*EC2) DescribeEgressOnlyInternetGatewaysRequest

func (c *EC2) DescribeEgressOnlyInternetGatewaysRequest(input *DescribeEgressOnlyInternetGatewaysInput) (req *request.Request, output *DescribeEgressOnlyInternetGatewaysOutput)

DescribeEgressOnlyInternetGatewaysRequest generates a "aws/request.Request" representing the client's request for the DescribeEgressOnlyInternetGateways operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeEgressOnlyInternetGateways for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeEgressOnlyInternetGateways method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeEgressOnlyInternetGatewaysRequest method.
req, resp := client.DescribeEgressOnlyInternetGatewaysRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeEgressOnlyInternetGateways

func (*EC2) DescribeEgressOnlyInternetGatewaysWithContext

func (c *EC2) DescribeEgressOnlyInternetGatewaysWithContext(ctx aws.Context, input *DescribeEgressOnlyInternetGatewaysInput, opts ...request.Option) (*DescribeEgressOnlyInternetGatewaysOutput, error)

DescribeEgressOnlyInternetGatewaysWithContext is the same as DescribeEgressOnlyInternetGateways with the addition of the ability to pass a context and additional request options.

See DescribeEgressOnlyInternetGateways for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeExportTasks

func (c *EC2) DescribeExportTasks(input *DescribeExportTasksInput) (*DescribeExportTasksOutput, error)

DescribeExportTasks API operation for Amazon Elastic Compute Cloud.

Describes one or more of your export tasks.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeExportTasks for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeExportTasks

func (*EC2) DescribeExportTasksRequest

func (c *EC2) DescribeExportTasksRequest(input *DescribeExportTasksInput) (req *request.Request, output *DescribeExportTasksOutput)

DescribeExportTasksRequest generates a "aws/request.Request" representing the client's request for the DescribeExportTasks operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeExportTasks for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeExportTasks method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeExportTasksRequest method.
req, resp := client.DescribeExportTasksRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeExportTasks

func (*EC2) DescribeExportTasksWithContext

func (c *EC2) DescribeExportTasksWithContext(ctx aws.Context, input *DescribeExportTasksInput, opts ...request.Option) (*DescribeExportTasksOutput, error)

DescribeExportTasksWithContext is the same as DescribeExportTasks with the addition of the ability to pass a context and additional request options.

See DescribeExportTasks for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeFlowLogs

func (c *EC2) DescribeFlowLogs(input *DescribeFlowLogsInput) (*DescribeFlowLogsOutput, error)

DescribeFlowLogs API operation for Amazon Elastic Compute Cloud.

Describes one or more flow logs. To view the information in your flow logs (the log streams for the network interfaces), you must use the CloudWatch Logs console or the CloudWatch Logs API.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeFlowLogs for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeFlowLogs

func (*EC2) DescribeFlowLogsRequest

func (c *EC2) DescribeFlowLogsRequest(input *DescribeFlowLogsInput) (req *request.Request, output *DescribeFlowLogsOutput)

DescribeFlowLogsRequest generates a "aws/request.Request" representing the client's request for the DescribeFlowLogs operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeFlowLogs for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeFlowLogs method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeFlowLogsRequest method.
req, resp := client.DescribeFlowLogsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeFlowLogs

func (*EC2) DescribeFlowLogsWithContext

func (c *EC2) DescribeFlowLogsWithContext(ctx aws.Context, input *DescribeFlowLogsInput, opts ...request.Option) (*DescribeFlowLogsOutput, error)

DescribeFlowLogsWithContext is the same as DescribeFlowLogs with the addition of the ability to pass a context and additional request options.

See DescribeFlowLogs for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeFpgaImages

func (c *EC2) DescribeFpgaImages(input *DescribeFpgaImagesInput) (*DescribeFpgaImagesOutput, error)

DescribeFpgaImages API operation for Amazon Elastic Compute Cloud.

Describes one or more available Amazon FPGA Images (AFIs). These include public AFIs, private AFIs that you own, and AFIs owned by other AWS accounts for which you have load permissions.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeFpgaImages for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeFpgaImages

func (*EC2) DescribeFpgaImagesRequest

func (c *EC2) DescribeFpgaImagesRequest(input *DescribeFpgaImagesInput) (req *request.Request, output *DescribeFpgaImagesOutput)

DescribeFpgaImagesRequest generates a "aws/request.Request" representing the client's request for the DescribeFpgaImages operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeFpgaImages for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeFpgaImages method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeFpgaImagesRequest method.
req, resp := client.DescribeFpgaImagesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeFpgaImages

func (*EC2) DescribeFpgaImagesWithContext

func (c *EC2) DescribeFpgaImagesWithContext(ctx aws.Context, input *DescribeFpgaImagesInput, opts ...request.Option) (*DescribeFpgaImagesOutput, error)

DescribeFpgaImagesWithContext is the same as DescribeFpgaImages with the addition of the ability to pass a context and additional request options.

See DescribeFpgaImages for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeHostReservationOfferings

func (c *EC2) DescribeHostReservationOfferings(input *DescribeHostReservationOfferingsInput) (*DescribeHostReservationOfferingsOutput, error)

DescribeHostReservationOfferings API operation for Amazon Elastic Compute Cloud.

Describes the Dedicated Host Reservations that are available to purchase.

The results describe all the Dedicated Host Reservation offerings, including offerings that may not match the instance family and region of your Dedicated Hosts. When purchasing an offering, ensure that the the instance family and region of the offering matches that of the Dedicated Host/s it will be associated with. For an overview of supported instance types, see Dedicated Hosts Overview (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/dedicated-hosts-overview.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeHostReservationOfferings for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeHostReservationOfferings

func (*EC2) DescribeHostReservationOfferingsRequest

func (c *EC2) DescribeHostReservationOfferingsRequest(input *DescribeHostReservationOfferingsInput) (req *request.Request, output *DescribeHostReservationOfferingsOutput)

DescribeHostReservationOfferingsRequest generates a "aws/request.Request" representing the client's request for the DescribeHostReservationOfferings operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeHostReservationOfferings for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeHostReservationOfferings method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeHostReservationOfferingsRequest method.
req, resp := client.DescribeHostReservationOfferingsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeHostReservationOfferings

func (*EC2) DescribeHostReservationOfferingsWithContext

func (c *EC2) DescribeHostReservationOfferingsWithContext(ctx aws.Context, input *DescribeHostReservationOfferingsInput, opts ...request.Option) (*DescribeHostReservationOfferingsOutput, error)

DescribeHostReservationOfferingsWithContext is the same as DescribeHostReservationOfferings with the addition of the ability to pass a context and additional request options.

See DescribeHostReservationOfferings for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeHostReservations

func (c *EC2) DescribeHostReservations(input *DescribeHostReservationsInput) (*DescribeHostReservationsOutput, error)

DescribeHostReservations API operation for Amazon Elastic Compute Cloud.

Describes Dedicated Host Reservations which are associated with Dedicated Hosts in your account.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeHostReservations for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeHostReservations

func (*EC2) DescribeHostReservationsRequest

func (c *EC2) DescribeHostReservationsRequest(input *DescribeHostReservationsInput) (req *request.Request, output *DescribeHostReservationsOutput)

DescribeHostReservationsRequest generates a "aws/request.Request" representing the client's request for the DescribeHostReservations operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeHostReservations for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeHostReservations method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeHostReservationsRequest method.
req, resp := client.DescribeHostReservationsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeHostReservations

func (*EC2) DescribeHostReservationsWithContext

func (c *EC2) DescribeHostReservationsWithContext(ctx aws.Context, input *DescribeHostReservationsInput, opts ...request.Option) (*DescribeHostReservationsOutput, error)

DescribeHostReservationsWithContext is the same as DescribeHostReservations with the addition of the ability to pass a context and additional request options.

See DescribeHostReservations for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeHosts

func (c *EC2) DescribeHosts(input *DescribeHostsInput) (*DescribeHostsOutput, error)

DescribeHosts API operation for Amazon Elastic Compute Cloud.

Describes one or more of your Dedicated Hosts.

The results describe only the Dedicated Hosts in the region you're currently using. All listed instances consume capacity on your Dedicated Host. Dedicated Hosts that have recently been released will be listed with the state released.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeHosts for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeHosts

func (*EC2) DescribeHostsRequest

func (c *EC2) DescribeHostsRequest(input *DescribeHostsInput) (req *request.Request, output *DescribeHostsOutput)

DescribeHostsRequest generates a "aws/request.Request" representing the client's request for the DescribeHosts operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeHosts for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeHosts method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeHostsRequest method.
req, resp := client.DescribeHostsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeHosts

func (*EC2) DescribeHostsWithContext

func (c *EC2) DescribeHostsWithContext(ctx aws.Context, input *DescribeHostsInput, opts ...request.Option) (*DescribeHostsOutput, error)

DescribeHostsWithContext is the same as DescribeHosts with the addition of the ability to pass a context and additional request options.

See DescribeHosts for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeIamInstanceProfileAssociations

func (c *EC2) DescribeIamInstanceProfileAssociations(input *DescribeIamInstanceProfileAssociationsInput) (*DescribeIamInstanceProfileAssociationsOutput, error)

DescribeIamInstanceProfileAssociations API operation for Amazon Elastic Compute Cloud.

Describes your IAM instance profile associations.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeIamInstanceProfileAssociations for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeIamInstanceProfileAssociations

func (*EC2) DescribeIamInstanceProfileAssociationsRequest

func (c *EC2) DescribeIamInstanceProfileAssociationsRequest(input *DescribeIamInstanceProfileAssociationsInput) (req *request.Request, output *DescribeIamInstanceProfileAssociationsOutput)

DescribeIamInstanceProfileAssociationsRequest generates a "aws/request.Request" representing the client's request for the DescribeIamInstanceProfileAssociations operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeIamInstanceProfileAssociations for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeIamInstanceProfileAssociations method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeIamInstanceProfileAssociationsRequest method.
req, resp := client.DescribeIamInstanceProfileAssociationsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeIamInstanceProfileAssociations

func (*EC2) DescribeIamInstanceProfileAssociationsWithContext

func (c *EC2) DescribeIamInstanceProfileAssociationsWithContext(ctx aws.Context, input *DescribeIamInstanceProfileAssociationsInput, opts ...request.Option) (*DescribeIamInstanceProfileAssociationsOutput, error)

DescribeIamInstanceProfileAssociationsWithContext is the same as DescribeIamInstanceProfileAssociations with the addition of the ability to pass a context and additional request options.

See DescribeIamInstanceProfileAssociations for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeIdFormat

func (c *EC2) DescribeIdFormat(input *DescribeIdFormatInput) (*DescribeIdFormatOutput, error)

DescribeIdFormat API operation for Amazon Elastic Compute Cloud.

Describes the ID format settings for your resources on a per-region basis, for example, to view which resource types are enabled for longer IDs. This request only returns information about resource types whose ID formats can be modified; it does not return information about other resource types.

The following resource types support longer IDs: instance | reservation | snapshot | volume.

These settings apply to the IAM user who makes the request; they do not apply to the entire AWS account. By default, an IAM user defaults to the same settings as the root user, unless they explicitly override the settings by running the ModifyIdFormat command. Resources created with longer IDs are visible to all IAM users, regardless of these settings and provided that they have permission to use the relevant Describe command for the resource type.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeIdFormat for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeIdFormat

func (*EC2) DescribeIdFormatRequest

func (c *EC2) DescribeIdFormatRequest(input *DescribeIdFormatInput) (req *request.Request, output *DescribeIdFormatOutput)

DescribeIdFormatRequest generates a "aws/request.Request" representing the client's request for the DescribeIdFormat operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeIdFormat for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeIdFormat method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeIdFormatRequest method.
req, resp := client.DescribeIdFormatRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeIdFormat

func (*EC2) DescribeIdFormatWithContext

func (c *EC2) DescribeIdFormatWithContext(ctx aws.Context, input *DescribeIdFormatInput, opts ...request.Option) (*DescribeIdFormatOutput, error)

DescribeIdFormatWithContext is the same as DescribeIdFormat with the addition of the ability to pass a context and additional request options.

See DescribeIdFormat for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeIdentityIdFormat

func (c *EC2) DescribeIdentityIdFormat(input *DescribeIdentityIdFormatInput) (*DescribeIdentityIdFormatOutput, error)

DescribeIdentityIdFormat API operation for Amazon Elastic Compute Cloud.

Describes the ID format settings for resources for the specified IAM user, IAM role, or root user. For example, you can view the resource types that are enabled for longer IDs. This request only returns information about resource types whose ID formats can be modified; it does not return information about other resource types. For more information, see Resource IDs (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/resource-ids.html) in the Amazon Elastic Compute Cloud User Guide.

The following resource types support longer IDs: instance | reservation | snapshot | volume.

These settings apply to the principal specified in the request. They do not apply to the principal that makes the request.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeIdentityIdFormat for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeIdentityIdFormat

func (*EC2) DescribeIdentityIdFormatRequest

func (c *EC2) DescribeIdentityIdFormatRequest(input *DescribeIdentityIdFormatInput) (req *request.Request, output *DescribeIdentityIdFormatOutput)

DescribeIdentityIdFormatRequest generates a "aws/request.Request" representing the client's request for the DescribeIdentityIdFormat operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeIdentityIdFormat for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeIdentityIdFormat method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeIdentityIdFormatRequest method.
req, resp := client.DescribeIdentityIdFormatRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeIdentityIdFormat

func (*EC2) DescribeIdentityIdFormatWithContext

func (c *EC2) DescribeIdentityIdFormatWithContext(ctx aws.Context, input *DescribeIdentityIdFormatInput, opts ...request.Option) (*DescribeIdentityIdFormatOutput, error)

DescribeIdentityIdFormatWithContext is the same as DescribeIdentityIdFormat with the addition of the ability to pass a context and additional request options.

See DescribeIdentityIdFormat for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeImageAttribute

func (c *EC2) DescribeImageAttribute(input *DescribeImageAttributeInput) (*DescribeImageAttributeOutput, error)

DescribeImageAttribute API operation for Amazon Elastic Compute Cloud.

Describes the specified attribute of the specified AMI. You can specify only one attribute at a time.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeImageAttribute for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeImageAttribute

func (*EC2) DescribeImageAttributeRequest

func (c *EC2) DescribeImageAttributeRequest(input *DescribeImageAttributeInput) (req *request.Request, output *DescribeImageAttributeOutput)

DescribeImageAttributeRequest generates a "aws/request.Request" representing the client's request for the DescribeImageAttribute operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeImageAttribute for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeImageAttribute method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeImageAttributeRequest method.
req, resp := client.DescribeImageAttributeRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeImageAttribute

func (*EC2) DescribeImageAttributeWithContext

func (c *EC2) DescribeImageAttributeWithContext(ctx aws.Context, input *DescribeImageAttributeInput, opts ...request.Option) (*DescribeImageAttributeOutput, error)

DescribeImageAttributeWithContext is the same as DescribeImageAttribute with the addition of the ability to pass a context and additional request options.

See DescribeImageAttribute for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeImages

func (c *EC2) DescribeImages(input *DescribeImagesInput) (*DescribeImagesOutput, error)

DescribeImages API operation for Amazon Elastic Compute Cloud.

Describes one or more of the images (AMIs, AKIs, and ARIs) available to you. Images available to you include public images, private images that you own, and private images owned by other AWS accounts but for which you have explicit launch permissions.

Deregistered images are included in the returned results for an unspecified interval after deregistration.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeImages for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeImages

func (*EC2) DescribeImagesRequest

func (c *EC2) DescribeImagesRequest(input *DescribeImagesInput) (req *request.Request, output *DescribeImagesOutput)

DescribeImagesRequest generates a "aws/request.Request" representing the client's request for the DescribeImages operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeImages for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeImages method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeImagesRequest method.
req, resp := client.DescribeImagesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeImages

func (*EC2) DescribeImagesWithContext

func (c *EC2) DescribeImagesWithContext(ctx aws.Context, input *DescribeImagesInput, opts ...request.Option) (*DescribeImagesOutput, error)

DescribeImagesWithContext is the same as DescribeImages with the addition of the ability to pass a context and additional request options.

See DescribeImages for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeImportImageTasks

func (c *EC2) DescribeImportImageTasks(input *DescribeImportImageTasksInput) (*DescribeImportImageTasksOutput, error)

DescribeImportImageTasks API operation for Amazon Elastic Compute Cloud.

Displays details about an import virtual machine or import snapshot tasks that are already created.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeImportImageTasks for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeImportImageTasks

func (*EC2) DescribeImportImageTasksRequest

func (c *EC2) DescribeImportImageTasksRequest(input *DescribeImportImageTasksInput) (req *request.Request, output *DescribeImportImageTasksOutput)

DescribeImportImageTasksRequest generates a "aws/request.Request" representing the client's request for the DescribeImportImageTasks operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeImportImageTasks for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeImportImageTasks method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeImportImageTasksRequest method.
req, resp := client.DescribeImportImageTasksRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeImportImageTasks

func (*EC2) DescribeImportImageTasksWithContext

func (c *EC2) DescribeImportImageTasksWithContext(ctx aws.Context, input *DescribeImportImageTasksInput, opts ...request.Option) (*DescribeImportImageTasksOutput, error)

DescribeImportImageTasksWithContext is the same as DescribeImportImageTasks with the addition of the ability to pass a context and additional request options.

See DescribeImportImageTasks for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeImportSnapshotTasks

func (c *EC2) DescribeImportSnapshotTasks(input *DescribeImportSnapshotTasksInput) (*DescribeImportSnapshotTasksOutput, error)

DescribeImportSnapshotTasks API operation for Amazon Elastic Compute Cloud.

Describes your import snapshot tasks.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeImportSnapshotTasks for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeImportSnapshotTasks

func (*EC2) DescribeImportSnapshotTasksRequest

func (c *EC2) DescribeImportSnapshotTasksRequest(input *DescribeImportSnapshotTasksInput) (req *request.Request, output *DescribeImportSnapshotTasksOutput)

DescribeImportSnapshotTasksRequest generates a "aws/request.Request" representing the client's request for the DescribeImportSnapshotTasks operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeImportSnapshotTasks for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeImportSnapshotTasks method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeImportSnapshotTasksRequest method.
req, resp := client.DescribeImportSnapshotTasksRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeImportSnapshotTasks

func (*EC2) DescribeImportSnapshotTasksWithContext

func (c *EC2) DescribeImportSnapshotTasksWithContext(ctx aws.Context, input *DescribeImportSnapshotTasksInput, opts ...request.Option) (*DescribeImportSnapshotTasksOutput, error)

DescribeImportSnapshotTasksWithContext is the same as DescribeImportSnapshotTasks with the addition of the ability to pass a context and additional request options.

See DescribeImportSnapshotTasks for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeInstanceAttribute

func (c *EC2) DescribeInstanceAttribute(input *DescribeInstanceAttributeInput) (*DescribeInstanceAttributeOutput, error)

DescribeInstanceAttribute API operation for Amazon Elastic Compute Cloud.

Describes the specified attribute of the specified instance. You can specify only one attribute at a time. Valid attribute values are: instanceType | kernel | ramdisk | userData | disableApiTermination | instanceInitiatedShutdownBehavior | rootDeviceName | blockDeviceMapping | productCodes | sourceDestCheck | groupSet | ebsOptimized | sriovNetSupport

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeInstanceAttribute for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeInstanceAttribute

Example (Shared00)

To describe the instance type This example describes the instance type of the specified instance.

Code:

svc := ec2.New(session.New())
input := &ec2.DescribeInstanceAttributeInput{
    Attribute:  aws.String("instanceType"),
    InstanceId: aws.String("i-1234567890abcdef0"),
}

result, err := svc.DescribeInstanceAttribute(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

Example (Shared01)

To describe the disableApiTermination attribute This example describes the ``disableApiTermination`` attribute of the specified instance.

Code:

svc := ec2.New(session.New())
input := &ec2.DescribeInstanceAttributeInput{
    Attribute:  aws.String("disableApiTermination"),
    InstanceId: aws.String("i-1234567890abcdef0"),
}

result, err := svc.DescribeInstanceAttribute(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

Example (Shared02)

To describe the block device mapping for an instance This example describes the ``blockDeviceMapping`` attribute of the specified instance.

Code:

svc := ec2.New(session.New())
input := &ec2.DescribeInstanceAttributeInput{
    Attribute:  aws.String("blockDeviceMapping"),
    InstanceId: aws.String("i-1234567890abcdef0"),
}

result, err := svc.DescribeInstanceAttribute(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DescribeInstanceAttributeRequest

func (c *EC2) DescribeInstanceAttributeRequest(input *DescribeInstanceAttributeInput) (req *request.Request, output *DescribeInstanceAttributeOutput)

DescribeInstanceAttributeRequest generates a "aws/request.Request" representing the client's request for the DescribeInstanceAttribute operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeInstanceAttribute for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeInstanceAttribute method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeInstanceAttributeRequest method.
req, resp := client.DescribeInstanceAttributeRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeInstanceAttribute

func (*EC2) DescribeInstanceAttributeWithContext

func (c *EC2) DescribeInstanceAttributeWithContext(ctx aws.Context, input *DescribeInstanceAttributeInput, opts ...request.Option) (*DescribeInstanceAttributeOutput, error)

DescribeInstanceAttributeWithContext is the same as DescribeInstanceAttribute with the addition of the ability to pass a context and additional request options.

See DescribeInstanceAttribute for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeInstanceStatus

func (c *EC2) DescribeInstanceStatus(input *DescribeInstanceStatusInput) (*DescribeInstanceStatusOutput, error)

DescribeInstanceStatus API operation for Amazon Elastic Compute Cloud.

Describes the status of one or more instances. By default, only running instances are described, unless specified otherwise.

Instance status includes the following components:

* Status checks - Amazon EC2 performs status checks on running EC2 instances
to identify hardware and software issues. For more information, see Status
Checks for Your Instances (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/monitoring-system-instance-status-check.html)
and Troubleshooting Instances with Failed Status Checks (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/TroubleshootingInstances.html)
in the Amazon Elastic Compute Cloud User Guide.

* Scheduled events - Amazon EC2 can schedule events (such as reboot, stop,
or terminate) for your instances related to hardware issues, software
updates, or system maintenance. For more information, see Scheduled Events
for Your Instances (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/monitoring-instances-status-check_sched.html)
in the Amazon Elastic Compute Cloud User Guide.

* Instance state - You can manage your instances from the moment you launch
them through their termination. For more information, see Instance Lifecycle
(http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-lifecycle.html)
in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeInstanceStatus for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeInstanceStatus

func (*EC2) DescribeInstanceStatusPages

func (c *EC2) DescribeInstanceStatusPages(input *DescribeInstanceStatusInput, fn func(*DescribeInstanceStatusOutput, bool) bool) error

DescribeInstanceStatusPages iterates over the pages of a DescribeInstanceStatus operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeInstanceStatus method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeInstanceStatus operation.
pageNum := 0
err := client.DescribeInstanceStatusPages(params,
    func(page *DescribeInstanceStatusOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*EC2) DescribeInstanceStatusPagesWithContext

func (c *EC2) DescribeInstanceStatusPagesWithContext(ctx aws.Context, input *DescribeInstanceStatusInput, fn func(*DescribeInstanceStatusOutput, bool) bool, opts ...request.Option) error

DescribeInstanceStatusPagesWithContext same as DescribeInstanceStatusPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeInstanceStatusRequest

func (c *EC2) DescribeInstanceStatusRequest(input *DescribeInstanceStatusInput) (req *request.Request, output *DescribeInstanceStatusOutput)

DescribeInstanceStatusRequest generates a "aws/request.Request" representing the client's request for the DescribeInstanceStatus operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeInstanceStatus for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeInstanceStatus method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeInstanceStatusRequest method.
req, resp := client.DescribeInstanceStatusRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeInstanceStatus

func (*EC2) DescribeInstanceStatusWithContext

func (c *EC2) DescribeInstanceStatusWithContext(ctx aws.Context, input *DescribeInstanceStatusInput, opts ...request.Option) (*DescribeInstanceStatusOutput, error)

DescribeInstanceStatusWithContext is the same as DescribeInstanceStatus with the addition of the ability to pass a context and additional request options.

See DescribeInstanceStatus for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeInstances

func (c *EC2) DescribeInstances(input *DescribeInstancesInput) (*DescribeInstancesOutput, error)

DescribeInstances API operation for Amazon Elastic Compute Cloud.

Describes one or more of your instances.

If you specify one or more instance IDs, Amazon EC2 returns information for those instances. If you do not specify instance IDs, Amazon EC2 returns information for all relevant instances. If you specify an instance ID that is not valid, an error is returned. If you specify an instance that you do not own, it is not included in the returned results.

Recently terminated instances might appear in the returned results. This interval is usually less than one hour.

If you describe instances in the rare case where an Availability Zone is experiencing a service disruption and you specify instance IDs that are in the affected zone, or do not specify any instance IDs at all, the call fails. If you describe instances and specify only instance IDs that are in an unaffected zone, the call works normally.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeInstances for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeInstances

func (*EC2) DescribeInstancesPages

func (c *EC2) DescribeInstancesPages(input *DescribeInstancesInput, fn func(*DescribeInstancesOutput, bool) bool) error

DescribeInstancesPages iterates over the pages of a DescribeInstances operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeInstances method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeInstances operation.
pageNum := 0
err := client.DescribeInstancesPages(params,
    func(page *DescribeInstancesOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*EC2) DescribeInstancesPagesWithContext

func (c *EC2) DescribeInstancesPagesWithContext(ctx aws.Context, input *DescribeInstancesInput, fn func(*DescribeInstancesOutput, bool) bool, opts ...request.Option) error

DescribeInstancesPagesWithContext same as DescribeInstancesPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeInstancesRequest

func (c *EC2) DescribeInstancesRequest(input *DescribeInstancesInput) (req *request.Request, output *DescribeInstancesOutput)

DescribeInstancesRequest generates a "aws/request.Request" representing the client's request for the DescribeInstances operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeInstances for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeInstances method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeInstancesRequest method.
req, resp := client.DescribeInstancesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeInstances

func (*EC2) DescribeInstancesWithContext

func (c *EC2) DescribeInstancesWithContext(ctx aws.Context, input *DescribeInstancesInput, opts ...request.Option) (*DescribeInstancesOutput, error)

DescribeInstancesWithContext is the same as DescribeInstances with the addition of the ability to pass a context and additional request options.

See DescribeInstances for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeInternetGateways

func (c *EC2) DescribeInternetGateways(input *DescribeInternetGatewaysInput) (*DescribeInternetGatewaysOutput, error)

DescribeInternetGateways API operation for Amazon Elastic Compute Cloud.

Describes one or more of your Internet gateways.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeInternetGateways for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeInternetGateways

Example (Shared00)

To describe the Internet gateway for a VPC This example describes the Internet gateway for the specified VPC.

Code:

svc := ec2.New(session.New())
input := &ec2.DescribeInternetGatewaysInput{
    Filters: []*ec2.Filter{
        {
            Name: aws.String("attachment.vpc-id"),
            Values: []*string{
                aws.String("vpc-a01106c2"),
            },
        },
    },
}

result, err := svc.DescribeInternetGateways(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DescribeInternetGatewaysRequest

func (c *EC2) DescribeInternetGatewaysRequest(input *DescribeInternetGatewaysInput) (req *request.Request, output *DescribeInternetGatewaysOutput)

DescribeInternetGatewaysRequest generates a "aws/request.Request" representing the client's request for the DescribeInternetGateways operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeInternetGateways for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeInternetGateways method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeInternetGatewaysRequest method.
req, resp := client.DescribeInternetGatewaysRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeInternetGateways

func (*EC2) DescribeInternetGatewaysWithContext

func (c *EC2) DescribeInternetGatewaysWithContext(ctx aws.Context, input *DescribeInternetGatewaysInput, opts ...request.Option) (*DescribeInternetGatewaysOutput, error)

DescribeInternetGatewaysWithContext is the same as DescribeInternetGateways with the addition of the ability to pass a context and additional request options.

See DescribeInternetGateways for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeKeyPairs

func (c *EC2) DescribeKeyPairs(input *DescribeKeyPairsInput) (*DescribeKeyPairsOutput, error)

DescribeKeyPairs API operation for Amazon Elastic Compute Cloud.

Describes one or more of your key pairs.

For more information about key pairs, see Key Pairs (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-key-pairs.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeKeyPairs for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeKeyPairs

Example (Shared00)

To display a key pair This example displays the fingerprint for the specified key.

Code:

svc := ec2.New(session.New())
input := &ec2.DescribeKeyPairsInput{
    KeyNames: []*string{
        aws.String("my-key-pair"),
    },
}

result, err := svc.DescribeKeyPairs(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DescribeKeyPairsRequest

func (c *EC2) DescribeKeyPairsRequest(input *DescribeKeyPairsInput) (req *request.Request, output *DescribeKeyPairsOutput)

DescribeKeyPairsRequest generates a "aws/request.Request" representing the client's request for the DescribeKeyPairs operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeKeyPairs for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeKeyPairs method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeKeyPairsRequest method.
req, resp := client.DescribeKeyPairsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeKeyPairs

func (*EC2) DescribeKeyPairsWithContext

func (c *EC2) DescribeKeyPairsWithContext(ctx aws.Context, input *DescribeKeyPairsInput, opts ...request.Option) (*DescribeKeyPairsOutput, error)

DescribeKeyPairsWithContext is the same as DescribeKeyPairs with the addition of the ability to pass a context and additional request options.

See DescribeKeyPairs for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeMovingAddresses

func (c *EC2) DescribeMovingAddresses(input *DescribeMovingAddressesInput) (*DescribeMovingAddressesOutput, error)

DescribeMovingAddresses API operation for Amazon Elastic Compute Cloud.

Describes your Elastic IP addresses that are being moved to the EC2-VPC platform, or that are being restored to the EC2-Classic platform. This request does not return information about any other Elastic IP addresses in your account.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeMovingAddresses for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeMovingAddresses

Example (Shared00)

To describe your moving addresses This example describes all of your moving Elastic IP addresses.

Code:

svc := ec2.New(session.New())
input := &ec2.DescribeMovingAddressesInput{}

result, err := svc.DescribeMovingAddresses(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DescribeMovingAddressesRequest

func (c *EC2) DescribeMovingAddressesRequest(input *DescribeMovingAddressesInput) (req *request.Request, output *DescribeMovingAddressesOutput)

DescribeMovingAddressesRequest generates a "aws/request.Request" representing the client's request for the DescribeMovingAddresses operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeMovingAddresses for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeMovingAddresses method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeMovingAddressesRequest method.
req, resp := client.DescribeMovingAddressesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeMovingAddresses

func (*EC2) DescribeMovingAddressesWithContext

func (c *EC2) DescribeMovingAddressesWithContext(ctx aws.Context, input *DescribeMovingAddressesInput, opts ...request.Option) (*DescribeMovingAddressesOutput, error)

DescribeMovingAddressesWithContext is the same as DescribeMovingAddresses with the addition of the ability to pass a context and additional request options.

See DescribeMovingAddresses for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeNatGateways

func (c *EC2) DescribeNatGateways(input *DescribeNatGatewaysInput) (*DescribeNatGatewaysOutput, error)

DescribeNatGateways API operation for Amazon Elastic Compute Cloud.

Describes one or more of the your NAT gateways.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeNatGateways for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeNatGateways

Example (Shared00)

To describe a NAT gateway This example describes the NAT gateway for the specified VPC.

Code:

svc := ec2.New(session.New())
input := &ec2.DescribeNatGatewaysInput{
    Filter: []*ec2.Filter{
        {
            Name: aws.String("vpc-id"),
            Values: []*string{
                aws.String("vpc-1a2b3c4d"),
            },
        },
    },
}

result, err := svc.DescribeNatGateways(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DescribeNatGatewaysPages

func (c *EC2) DescribeNatGatewaysPages(input *DescribeNatGatewaysInput, fn func(*DescribeNatGatewaysOutput, bool) bool) error

DescribeNatGatewaysPages iterates over the pages of a DescribeNatGateways operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeNatGateways method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeNatGateways operation.
pageNum := 0
err := client.DescribeNatGatewaysPages(params,
    func(page *DescribeNatGatewaysOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*EC2) DescribeNatGatewaysPagesWithContext

func (c *EC2) DescribeNatGatewaysPagesWithContext(ctx aws.Context, input *DescribeNatGatewaysInput, fn func(*DescribeNatGatewaysOutput, bool) bool, opts ...request.Option) error

DescribeNatGatewaysPagesWithContext same as DescribeNatGatewaysPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeNatGatewaysRequest

func (c *EC2) DescribeNatGatewaysRequest(input *DescribeNatGatewaysInput) (req *request.Request, output *DescribeNatGatewaysOutput)

DescribeNatGatewaysRequest generates a "aws/request.Request" representing the client's request for the DescribeNatGateways operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeNatGateways for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeNatGateways method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeNatGatewaysRequest method.
req, resp := client.DescribeNatGatewaysRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeNatGateways

func (*EC2) DescribeNatGatewaysWithContext

func (c *EC2) DescribeNatGatewaysWithContext(ctx aws.Context, input *DescribeNatGatewaysInput, opts ...request.Option) (*DescribeNatGatewaysOutput, error)

DescribeNatGatewaysWithContext is the same as DescribeNatGateways with the addition of the ability to pass a context and additional request options.

See DescribeNatGateways for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeNetworkAcls

func (c *EC2) DescribeNetworkAcls(input *DescribeNetworkAclsInput) (*DescribeNetworkAclsOutput, error)

DescribeNetworkAcls API operation for Amazon Elastic Compute Cloud.

Describes one or more of your network ACLs.

For more information about network ACLs, see Network ACLs (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_ACLs.html) in the Amazon Virtual Private Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeNetworkAcls for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeNetworkAcls

Example (Shared00)

To describe a network ACL This example describes the specified network ACL.

Code:

svc := ec2.New(session.New())
input := &ec2.DescribeNetworkAclsInput{
    NetworkAclIds: []*string{
        aws.String("acl-5fb85d36"),
    },
}

result, err := svc.DescribeNetworkAcls(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DescribeNetworkAclsRequest

func (c *EC2) DescribeNetworkAclsRequest(input *DescribeNetworkAclsInput) (req *request.Request, output *DescribeNetworkAclsOutput)

DescribeNetworkAclsRequest generates a "aws/request.Request" representing the client's request for the DescribeNetworkAcls operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeNetworkAcls for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeNetworkAcls method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeNetworkAclsRequest method.
req, resp := client.DescribeNetworkAclsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeNetworkAcls

func (*EC2) DescribeNetworkAclsWithContext

func (c *EC2) DescribeNetworkAclsWithContext(ctx aws.Context, input *DescribeNetworkAclsInput, opts ...request.Option) (*DescribeNetworkAclsOutput, error)

DescribeNetworkAclsWithContext is the same as DescribeNetworkAcls with the addition of the ability to pass a context and additional request options.

See DescribeNetworkAcls for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeNetworkInterfaceAttribute

func (c *EC2) DescribeNetworkInterfaceAttribute(input *DescribeNetworkInterfaceAttributeInput) (*DescribeNetworkInterfaceAttributeOutput, error)

DescribeNetworkInterfaceAttribute API operation for Amazon Elastic Compute Cloud.

Describes a network interface attribute. You can specify only one attribute at a time.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeNetworkInterfaceAttribute for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeNetworkInterfaceAttribute

Example (Shared00)

To describe the attachment attribute of a network interface This example describes the attachment attribute of the specified network interface.

Code:

svc := ec2.New(session.New())
input := &ec2.DescribeNetworkInterfaceAttributeInput{
    Attribute:          aws.String("attachment"),
    NetworkInterfaceId: aws.String("eni-686ea200"),
}

result, err := svc.DescribeNetworkInterfaceAttribute(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

Example (Shared01)

To describe the description attribute of a network interface This example describes the description attribute of the specified network interface.

Code:

svc := ec2.New(session.New())
input := &ec2.DescribeNetworkInterfaceAttributeInput{
    Attribute:          aws.String("description"),
    NetworkInterfaceId: aws.String("eni-686ea200"),
}

result, err := svc.DescribeNetworkInterfaceAttribute(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

Example (Shared02)

To describe the groupSet attribute of a network interface This example describes the groupSet attribute of the specified network interface.

Code:

svc := ec2.New(session.New())
input := &ec2.DescribeNetworkInterfaceAttributeInput{
    Attribute:          aws.String("groupSet"),
    NetworkInterfaceId: aws.String("eni-686ea200"),
}

result, err := svc.DescribeNetworkInterfaceAttribute(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

Example (Shared03)

To describe the sourceDestCheck attribute of a network interface This example describes the sourceDestCheck attribute of the specified network interface.

Code:

svc := ec2.New(session.New())
input := &ec2.DescribeNetworkInterfaceAttributeInput{
    Attribute:          aws.String("sourceDestCheck"),
    NetworkInterfaceId: aws.String("eni-686ea200"),
}

result, err := svc.DescribeNetworkInterfaceAttribute(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DescribeNetworkInterfaceAttributeRequest

func (c *EC2) DescribeNetworkInterfaceAttributeRequest(input *DescribeNetworkInterfaceAttributeInput) (req *request.Request, output *DescribeNetworkInterfaceAttributeOutput)

DescribeNetworkInterfaceAttributeRequest generates a "aws/request.Request" representing the client's request for the DescribeNetworkInterfaceAttribute operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeNetworkInterfaceAttribute for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeNetworkInterfaceAttribute method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeNetworkInterfaceAttributeRequest method.
req, resp := client.DescribeNetworkInterfaceAttributeRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeNetworkInterfaceAttribute

func (*EC2) DescribeNetworkInterfaceAttributeWithContext

func (c *EC2) DescribeNetworkInterfaceAttributeWithContext(ctx aws.Context, input *DescribeNetworkInterfaceAttributeInput, opts ...request.Option) (*DescribeNetworkInterfaceAttributeOutput, error)

DescribeNetworkInterfaceAttributeWithContext is the same as DescribeNetworkInterfaceAttribute with the addition of the ability to pass a context and additional request options.

See DescribeNetworkInterfaceAttribute for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeNetworkInterfaces

func (c *EC2) DescribeNetworkInterfaces(input *DescribeNetworkInterfacesInput) (*DescribeNetworkInterfacesOutput, error)

DescribeNetworkInterfaces API operation for Amazon Elastic Compute Cloud.

Describes one or more of your network interfaces.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeNetworkInterfaces for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeNetworkInterfaces

Example (Shared00)

Code:

svc := ec2.New(session.New())
input := &ec2.DescribeNetworkInterfacesInput{
    NetworkInterfaceIds: []*string{
        aws.String("eni-e5aa89a3"),
    },
}

result, err := svc.DescribeNetworkInterfaces(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DescribeNetworkInterfacesRequest

func (c *EC2) DescribeNetworkInterfacesRequest(input *DescribeNetworkInterfacesInput) (req *request.Request, output *DescribeNetworkInterfacesOutput)

DescribeNetworkInterfacesRequest generates a "aws/request.Request" representing the client's request for the DescribeNetworkInterfaces operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeNetworkInterfaces for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeNetworkInterfaces method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeNetworkInterfacesRequest method.
req, resp := client.DescribeNetworkInterfacesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeNetworkInterfaces

func (*EC2) DescribeNetworkInterfacesWithContext

func (c *EC2) DescribeNetworkInterfacesWithContext(ctx aws.Context, input *DescribeNetworkInterfacesInput, opts ...request.Option) (*DescribeNetworkInterfacesOutput, error)

DescribeNetworkInterfacesWithContext is the same as DescribeNetworkInterfaces with the addition of the ability to pass a context and additional request options.

See DescribeNetworkInterfaces for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribePlacementGroups

func (c *EC2) DescribePlacementGroups(input *DescribePlacementGroupsInput) (*DescribePlacementGroupsOutput, error)

DescribePlacementGroups API operation for Amazon Elastic Compute Cloud.

Describes one or more of your placement groups. For more information about placement groups and cluster instances, see Cluster Instances (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using_cluster_computing.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribePlacementGroups for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribePlacementGroups

func (*EC2) DescribePlacementGroupsRequest

func (c *EC2) DescribePlacementGroupsRequest(input *DescribePlacementGroupsInput) (req *request.Request, output *DescribePlacementGroupsOutput)

DescribePlacementGroupsRequest generates a "aws/request.Request" representing the client's request for the DescribePlacementGroups operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribePlacementGroups for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribePlacementGroups method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribePlacementGroupsRequest method.
req, resp := client.DescribePlacementGroupsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribePlacementGroups

func (*EC2) DescribePlacementGroupsWithContext

func (c *EC2) DescribePlacementGroupsWithContext(ctx aws.Context, input *DescribePlacementGroupsInput, opts ...request.Option) (*DescribePlacementGroupsOutput, error)

DescribePlacementGroupsWithContext is the same as DescribePlacementGroups with the addition of the ability to pass a context and additional request options.

See DescribePlacementGroups for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribePrefixLists

func (c *EC2) DescribePrefixLists(input *DescribePrefixListsInput) (*DescribePrefixListsOutput, error)

DescribePrefixLists API operation for Amazon Elastic Compute Cloud.

Describes available AWS services in a prefix list format, which includes the prefix list name and prefix list ID of the service and the IP address range for the service. A prefix list ID is required for creating an outbound security group rule that allows traffic from a VPC to access an AWS service through a VPC endpoint.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribePrefixLists for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribePrefixLists

func (*EC2) DescribePrefixListsRequest

func (c *EC2) DescribePrefixListsRequest(input *DescribePrefixListsInput) (req *request.Request, output *DescribePrefixListsOutput)

DescribePrefixListsRequest generates a "aws/request.Request" representing the client's request for the DescribePrefixLists operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribePrefixLists for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribePrefixLists method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribePrefixListsRequest method.
req, resp := client.DescribePrefixListsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribePrefixLists

func (*EC2) DescribePrefixListsWithContext

func (c *EC2) DescribePrefixListsWithContext(ctx aws.Context, input *DescribePrefixListsInput, opts ...request.Option) (*DescribePrefixListsOutput, error)

DescribePrefixListsWithContext is the same as DescribePrefixLists with the addition of the ability to pass a context and additional request options.

See DescribePrefixLists for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeRegions

func (c *EC2) DescribeRegions(input *DescribeRegionsInput) (*DescribeRegionsOutput, error)

DescribeRegions API operation for Amazon Elastic Compute Cloud.

Describes one or more regions that are currently available to you.

For a list of the regions supported by Amazon EC2, see Regions and Endpoints (http://docs.aws.amazon.com/general/latest/gr/rande.html#ec2_region).

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeRegions for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeRegions

Example (Shared00)

To describe your regions This example describes all the regions that are available to you.

Code:

svc := ec2.New(session.New())
input := &ec2.DescribeRegionsInput{}

result, err := svc.DescribeRegions(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DescribeRegionsRequest

func (c *EC2) DescribeRegionsRequest(input *DescribeRegionsInput) (req *request.Request, output *DescribeRegionsOutput)

DescribeRegionsRequest generates a "aws/request.Request" representing the client's request for the DescribeRegions operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeRegions for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeRegions method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeRegionsRequest method.
req, resp := client.DescribeRegionsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeRegions

func (*EC2) DescribeRegionsWithContext

func (c *EC2) DescribeRegionsWithContext(ctx aws.Context, input *DescribeRegionsInput, opts ...request.Option) (*DescribeRegionsOutput, error)

DescribeRegionsWithContext is the same as DescribeRegions with the addition of the ability to pass a context and additional request options.

See DescribeRegions for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeReservedInstances

func (c *EC2) DescribeReservedInstances(input *DescribeReservedInstancesInput) (*DescribeReservedInstancesOutput, error)

DescribeReservedInstances API operation for Amazon Elastic Compute Cloud.

Describes one or more of the Reserved Instances that you purchased.

For more information about Reserved Instances, see Reserved Instances (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/concepts-on-demand-reserved-instances.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeReservedInstances for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeReservedInstances

func (*EC2) DescribeReservedInstancesListings

func (c *EC2) DescribeReservedInstancesListings(input *DescribeReservedInstancesListingsInput) (*DescribeReservedInstancesListingsOutput, error)

DescribeReservedInstancesListings API operation for Amazon Elastic Compute Cloud.

Describes your account's Reserved Instance listings in the Reserved Instance Marketplace.

The Reserved Instance Marketplace matches sellers who want to resell Reserved Instance capacity that they no longer need with buyers who want to purchase additional capacity. Reserved Instances bought and sold through the Reserved Instance Marketplace work like any other Reserved Instances.

As a seller, you choose to list some or all of your Reserved Instances, and you specify the upfront price to receive for them. Your Reserved Instances are then listed in the Reserved Instance Marketplace and are available for purchase.

As a buyer, you specify the configuration of the Reserved Instance to purchase, and the Marketplace matches what you're searching for with what's available. The Marketplace first sells the lowest priced Reserved Instances to you, and continues to sell available Reserved Instance listings to you until your demand is met. You are charged based on the total price of all of the listings that you purchase.

For more information, see Reserved Instance Marketplace (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ri-market-general.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeReservedInstancesListings for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeReservedInstancesListings

func (*EC2) DescribeReservedInstancesListingsRequest

func (c *EC2) DescribeReservedInstancesListingsRequest(input *DescribeReservedInstancesListingsInput) (req *request.Request, output *DescribeReservedInstancesListingsOutput)

DescribeReservedInstancesListingsRequest generates a "aws/request.Request" representing the client's request for the DescribeReservedInstancesListings operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeReservedInstancesListings for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeReservedInstancesListings method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeReservedInstancesListingsRequest method.
req, resp := client.DescribeReservedInstancesListingsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeReservedInstancesListings

func (*EC2) DescribeReservedInstancesListingsWithContext

func (c *EC2) DescribeReservedInstancesListingsWithContext(ctx aws.Context, input *DescribeReservedInstancesListingsInput, opts ...request.Option) (*DescribeReservedInstancesListingsOutput, error)

DescribeReservedInstancesListingsWithContext is the same as DescribeReservedInstancesListings with the addition of the ability to pass a context and additional request options.

See DescribeReservedInstancesListings for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeReservedInstancesModifications

func (c *EC2) DescribeReservedInstancesModifications(input *DescribeReservedInstancesModificationsInput) (*DescribeReservedInstancesModificationsOutput, error)

DescribeReservedInstancesModifications API operation for Amazon Elastic Compute Cloud.

Describes the modifications made to your Reserved Instances. If no parameter is specified, information about all your Reserved Instances modification requests is returned. If a modification ID is specified, only information about the specific modification is returned.

For more information, see Modifying Reserved Instances (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ri-modifying.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeReservedInstancesModifications for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeReservedInstancesModifications

func (*EC2) DescribeReservedInstancesModificationsPages

func (c *EC2) DescribeReservedInstancesModificationsPages(input *DescribeReservedInstancesModificationsInput, fn func(*DescribeReservedInstancesModificationsOutput, bool) bool) error

DescribeReservedInstancesModificationsPages iterates over the pages of a DescribeReservedInstancesModifications operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeReservedInstancesModifications method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeReservedInstancesModifications operation.
pageNum := 0
err := client.DescribeReservedInstancesModificationsPages(params,
    func(page *DescribeReservedInstancesModificationsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*EC2) DescribeReservedInstancesModificationsPagesWithContext

func (c *EC2) DescribeReservedInstancesModificationsPagesWithContext(ctx aws.Context, input *DescribeReservedInstancesModificationsInput, fn func(*DescribeReservedInstancesModificationsOutput, bool) bool, opts ...request.Option) error

DescribeReservedInstancesModificationsPagesWithContext same as DescribeReservedInstancesModificationsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeReservedInstancesModificationsRequest

func (c *EC2) DescribeReservedInstancesModificationsRequest(input *DescribeReservedInstancesModificationsInput) (req *request.Request, output *DescribeReservedInstancesModificationsOutput)

DescribeReservedInstancesModificationsRequest generates a "aws/request.Request" representing the client's request for the DescribeReservedInstancesModifications operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeReservedInstancesModifications for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeReservedInstancesModifications method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeReservedInstancesModificationsRequest method.
req, resp := client.DescribeReservedInstancesModificationsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeReservedInstancesModifications

func (*EC2) DescribeReservedInstancesModificationsWithContext

func (c *EC2) DescribeReservedInstancesModificationsWithContext(ctx aws.Context, input *DescribeReservedInstancesModificationsInput, opts ...request.Option) (*DescribeReservedInstancesModificationsOutput, error)

DescribeReservedInstancesModificationsWithContext is the same as DescribeReservedInstancesModifications with the addition of the ability to pass a context and additional request options.

See DescribeReservedInstancesModifications for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeReservedInstancesOfferings

func (c *EC2) DescribeReservedInstancesOfferings(input *DescribeReservedInstancesOfferingsInput) (*DescribeReservedInstancesOfferingsOutput, error)

DescribeReservedInstancesOfferings API operation for Amazon Elastic Compute Cloud.

Describes Reserved Instance offerings that are available for purchase. With Reserved Instances, you purchase the right to launch instances for a period of time. During that time period, you do not receive insufficient capacity errors, and you pay a lower usage rate than the rate charged for On-Demand instances for the actual time used.

If you have listed your own Reserved Instances for sale in the Reserved Instance Marketplace, they will be excluded from these results. This is to ensure that you do not purchase your own Reserved Instances.

For more information, see Reserved Instance Marketplace (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ri-market-general.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeReservedInstancesOfferings for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeReservedInstancesOfferings

func (*EC2) DescribeReservedInstancesOfferingsPages

func (c *EC2) DescribeReservedInstancesOfferingsPages(input *DescribeReservedInstancesOfferingsInput, fn func(*DescribeReservedInstancesOfferingsOutput, bool) bool) error

DescribeReservedInstancesOfferingsPages iterates over the pages of a DescribeReservedInstancesOfferings operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeReservedInstancesOfferings method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeReservedInstancesOfferings operation.
pageNum := 0
err := client.DescribeReservedInstancesOfferingsPages(params,
    func(page *DescribeReservedInstancesOfferingsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*EC2) DescribeReservedInstancesOfferingsPagesWithContext

func (c *EC2) DescribeReservedInstancesOfferingsPagesWithContext(ctx aws.Context, input *DescribeReservedInstancesOfferingsInput, fn func(*DescribeReservedInstancesOfferingsOutput, bool) bool, opts ...request.Option) error

DescribeReservedInstancesOfferingsPagesWithContext same as DescribeReservedInstancesOfferingsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeReservedInstancesOfferingsRequest

func (c *EC2) DescribeReservedInstancesOfferingsRequest(input *DescribeReservedInstancesOfferingsInput) (req *request.Request, output *DescribeReservedInstancesOfferingsOutput)

DescribeReservedInstancesOfferingsRequest generates a "aws/request.Request" representing the client's request for the DescribeReservedInstancesOfferings operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeReservedInstancesOfferings for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeReservedInstancesOfferings method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeReservedInstancesOfferingsRequest method.
req, resp := client.DescribeReservedInstancesOfferingsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeReservedInstancesOfferings

func (*EC2) DescribeReservedInstancesOfferingsWithContext

func (c *EC2) DescribeReservedInstancesOfferingsWithContext(ctx aws.Context, input *DescribeReservedInstancesOfferingsInput, opts ...request.Option) (*DescribeReservedInstancesOfferingsOutput, error)

DescribeReservedInstancesOfferingsWithContext is the same as DescribeReservedInstancesOfferings with the addition of the ability to pass a context and additional request options.

See DescribeReservedInstancesOfferings for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeReservedInstancesRequest

func (c *EC2) DescribeReservedInstancesRequest(input *DescribeReservedInstancesInput) (req *request.Request, output *DescribeReservedInstancesOutput)

DescribeReservedInstancesRequest generates a "aws/request.Request" representing the client's request for the DescribeReservedInstances operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeReservedInstances for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeReservedInstances method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeReservedInstancesRequest method.
req, resp := client.DescribeReservedInstancesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeReservedInstances

func (*EC2) DescribeReservedInstancesWithContext

func (c *EC2) DescribeReservedInstancesWithContext(ctx aws.Context, input *DescribeReservedInstancesInput, opts ...request.Option) (*DescribeReservedInstancesOutput, error)

DescribeReservedInstancesWithContext is the same as DescribeReservedInstances with the addition of the ability to pass a context and additional request options.

See DescribeReservedInstances for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeRouteTables

func (c *EC2) DescribeRouteTables(input *DescribeRouteTablesInput) (*DescribeRouteTablesOutput, error)

DescribeRouteTables API operation for Amazon Elastic Compute Cloud.

Describes one or more of your route tables.

Each subnet in your VPC must be associated with a route table. If a subnet is not explicitly associated with any route table, it is implicitly associated with the main route table. This command does not return the subnet ID for implicit associations.

For more information about route tables, see Route Tables (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_Route_Tables.html) in the Amazon Virtual Private Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeRouteTables for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeRouteTables

Example (Shared00)

To describe a route table This example describes the specified route table.

Code:

svc := ec2.New(session.New())
input := &ec2.DescribeRouteTablesInput{
    RouteTableIds: []*string{
        aws.String("rtb-1f382e7d"),
    },
}

result, err := svc.DescribeRouteTables(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DescribeRouteTablesRequest

func (c *EC2) DescribeRouteTablesRequest(input *DescribeRouteTablesInput) (req *request.Request, output *DescribeRouteTablesOutput)

DescribeRouteTablesRequest generates a "aws/request.Request" representing the client's request for the DescribeRouteTables operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeRouteTables for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeRouteTables method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeRouteTablesRequest method.
req, resp := client.DescribeRouteTablesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeRouteTables

func (*EC2) DescribeRouteTablesWithContext

func (c *EC2) DescribeRouteTablesWithContext(ctx aws.Context, input *DescribeRouteTablesInput, opts ...request.Option) (*DescribeRouteTablesOutput, error)

DescribeRouteTablesWithContext is the same as DescribeRouteTables with the addition of the ability to pass a context and additional request options.

See DescribeRouteTables for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeScheduledInstanceAvailability

func (c *EC2) DescribeScheduledInstanceAvailability(input *DescribeScheduledInstanceAvailabilityInput) (*DescribeScheduledInstanceAvailabilityOutput, error)

DescribeScheduledInstanceAvailability API operation for Amazon Elastic Compute Cloud.

Finds available schedules that meet the specified criteria.

You can search for an available schedule no more than 3 months in advance. You must meet the minimum required duration of 1,200 hours per year. For example, the minimum daily schedule is 4 hours, the minimum weekly schedule is 24 hours, and the minimum monthly schedule is 100 hours.

After you find a schedule that meets your needs, call PurchaseScheduledInstances to purchase Scheduled Instances with that schedule.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeScheduledInstanceAvailability for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeScheduledInstanceAvailability

Example (Shared00)

To describe an available schedule This example describes a schedule that occurs every week on Sunday, starting on the specified date. Note that the output contains a single schedule as an example.

Code:

svc := ec2.New(session.New())
input := &ec2.DescribeScheduledInstanceAvailabilityInput{
    FirstSlotStartTimeRange: &ec2.SlotDateTimeRangeRequest{
        EarliestTime: parseTime("2006-01-02T15:04:05Z", "2016-01-31T00:00:00Z"),
        LatestTime:   parseTime("2006-01-02T15:04:05Z", "2016-01-31T04:00:00Z"),
    },
    Recurrence: &ec2.ScheduledInstanceRecurrenceRequest{
        Frequency: aws.String("Weekly"),
        Interval:  aws.Int64(1),
        OccurrenceDays: []*int64{
            aws.Int64(1),
        },
    },
}

result, err := svc.DescribeScheduledInstanceAvailability(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DescribeScheduledInstanceAvailabilityRequest

func (c *EC2) DescribeScheduledInstanceAvailabilityRequest(input *DescribeScheduledInstanceAvailabilityInput) (req *request.Request, output *DescribeScheduledInstanceAvailabilityOutput)

DescribeScheduledInstanceAvailabilityRequest generates a "aws/request.Request" representing the client's request for the DescribeScheduledInstanceAvailability operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeScheduledInstanceAvailability for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeScheduledInstanceAvailability method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeScheduledInstanceAvailabilityRequest method.
req, resp := client.DescribeScheduledInstanceAvailabilityRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeScheduledInstanceAvailability

func (*EC2) DescribeScheduledInstanceAvailabilityWithContext

func (c *EC2) DescribeScheduledInstanceAvailabilityWithContext(ctx aws.Context, input *DescribeScheduledInstanceAvailabilityInput, opts ...request.Option) (*DescribeScheduledInstanceAvailabilityOutput, error)

DescribeScheduledInstanceAvailabilityWithContext is the same as DescribeScheduledInstanceAvailability with the addition of the ability to pass a context and additional request options.

See DescribeScheduledInstanceAvailability for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeScheduledInstances

func (c *EC2) DescribeScheduledInstances(input *DescribeScheduledInstancesInput) (*DescribeScheduledInstancesOutput, error)

DescribeScheduledInstances API operation for Amazon Elastic Compute Cloud.

Describes one or more of your Scheduled Instances.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeScheduledInstances for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeScheduledInstances

Example (Shared00)

To describe your Scheduled Instances This example describes the specified Scheduled Instance.

Code:

svc := ec2.New(session.New())
input := &ec2.DescribeScheduledInstancesInput{
    ScheduledInstanceIds: []*string{
        aws.String("sci-1234-1234-1234-1234-123456789012"),
    },
}

result, err := svc.DescribeScheduledInstances(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DescribeScheduledInstancesRequest

func (c *EC2) DescribeScheduledInstancesRequest(input *DescribeScheduledInstancesInput) (req *request.Request, output *DescribeScheduledInstancesOutput)

DescribeScheduledInstancesRequest generates a "aws/request.Request" representing the client's request for the DescribeScheduledInstances operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeScheduledInstances for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeScheduledInstances method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeScheduledInstancesRequest method.
req, resp := client.DescribeScheduledInstancesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeScheduledInstances

func (*EC2) DescribeScheduledInstancesWithContext

func (c *EC2) DescribeScheduledInstancesWithContext(ctx aws.Context, input *DescribeScheduledInstancesInput, opts ...request.Option) (*DescribeScheduledInstancesOutput, error)

DescribeScheduledInstancesWithContext is the same as DescribeScheduledInstances with the addition of the ability to pass a context and additional request options.

See DescribeScheduledInstances for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeSecurityGroupReferences

func (c *EC2) DescribeSecurityGroupReferences(input *DescribeSecurityGroupReferencesInput) (*DescribeSecurityGroupReferencesOutput, error)

DescribeSecurityGroupReferences API operation for Amazon Elastic Compute Cloud.

[EC2-VPC only] Describes the VPCs on the other side of a VPC peering connection that are referencing the security groups you've specified in this request.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeSecurityGroupReferences for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSecurityGroupReferences

func (*EC2) DescribeSecurityGroupReferencesRequest

func (c *EC2) DescribeSecurityGroupReferencesRequest(input *DescribeSecurityGroupReferencesInput) (req *request.Request, output *DescribeSecurityGroupReferencesOutput)

DescribeSecurityGroupReferencesRequest generates a "aws/request.Request" representing the client's request for the DescribeSecurityGroupReferences operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeSecurityGroupReferences for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeSecurityGroupReferences method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeSecurityGroupReferencesRequest method.
req, resp := client.DescribeSecurityGroupReferencesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSecurityGroupReferences

func (*EC2) DescribeSecurityGroupReferencesWithContext

func (c *EC2) DescribeSecurityGroupReferencesWithContext(ctx aws.Context, input *DescribeSecurityGroupReferencesInput, opts ...request.Option) (*DescribeSecurityGroupReferencesOutput, error)

DescribeSecurityGroupReferencesWithContext is the same as DescribeSecurityGroupReferences with the addition of the ability to pass a context and additional request options.

See DescribeSecurityGroupReferences for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeSecurityGroups

func (c *EC2) DescribeSecurityGroups(input *DescribeSecurityGroupsInput) (*DescribeSecurityGroupsOutput, error)

DescribeSecurityGroups API operation for Amazon Elastic Compute Cloud.

Describes one or more of your security groups.

A security group is for use with instances either in the EC2-Classic platform or in a specific VPC. For more information, see Amazon EC2 Security Groups (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-network-security.html) in the Amazon Elastic Compute Cloud User Guide and Security Groups for Your VPC (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_SecurityGroups.html) in the Amazon Virtual Private Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeSecurityGroups for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSecurityGroups

func (*EC2) DescribeSecurityGroupsRequest

func (c *EC2) DescribeSecurityGroupsRequest(input *DescribeSecurityGroupsInput) (req *request.Request, output *DescribeSecurityGroupsOutput)

DescribeSecurityGroupsRequest generates a "aws/request.Request" representing the client's request for the DescribeSecurityGroups operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeSecurityGroups for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeSecurityGroups method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeSecurityGroupsRequest method.
req, resp := client.DescribeSecurityGroupsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSecurityGroups

func (*EC2) DescribeSecurityGroupsWithContext

func (c *EC2) DescribeSecurityGroupsWithContext(ctx aws.Context, input *DescribeSecurityGroupsInput, opts ...request.Option) (*DescribeSecurityGroupsOutput, error)

DescribeSecurityGroupsWithContext is the same as DescribeSecurityGroups with the addition of the ability to pass a context and additional request options.

See DescribeSecurityGroups for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeSnapshotAttribute

func (c *EC2) DescribeSnapshotAttribute(input *DescribeSnapshotAttributeInput) (*DescribeSnapshotAttributeOutput, error)

DescribeSnapshotAttribute API operation for Amazon Elastic Compute Cloud.

Describes the specified attribute of the specified snapshot. You can specify only one attribute at a time.

For more information about EBS snapshots, see Amazon EBS Snapshots (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSSnapshots.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeSnapshotAttribute for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSnapshotAttribute

Example (Shared00)

To describe snapshot attributes This example describes the ``createVolumePermission`` attribute on a snapshot with the snapshot ID of ``snap-066877671789bd71b``.

Code:

svc := ec2.New(session.New())
input := &ec2.DescribeSnapshotAttributeInput{
    Attribute:  aws.String("createVolumePermission"),
    SnapshotId: aws.String("snap-066877671789bd71b"),
}

result, err := svc.DescribeSnapshotAttribute(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DescribeSnapshotAttributeRequest

func (c *EC2) DescribeSnapshotAttributeRequest(input *DescribeSnapshotAttributeInput) (req *request.Request, output *DescribeSnapshotAttributeOutput)

DescribeSnapshotAttributeRequest generates a "aws/request.Request" representing the client's request for the DescribeSnapshotAttribute operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeSnapshotAttribute for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeSnapshotAttribute method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeSnapshotAttributeRequest method.
req, resp := client.DescribeSnapshotAttributeRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSnapshotAttribute

func (*EC2) DescribeSnapshotAttributeWithContext

func (c *EC2) DescribeSnapshotAttributeWithContext(ctx aws.Context, input *DescribeSnapshotAttributeInput, opts ...request.Option) (*DescribeSnapshotAttributeOutput, error)

DescribeSnapshotAttributeWithContext is the same as DescribeSnapshotAttribute with the addition of the ability to pass a context and additional request options.

See DescribeSnapshotAttribute for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeSnapshots

func (c *EC2) DescribeSnapshots(input *DescribeSnapshotsInput) (*DescribeSnapshotsOutput, error)

DescribeSnapshots API operation for Amazon Elastic Compute Cloud.

Describes one or more of the EBS snapshots available to you. Available snapshots include public snapshots available for any AWS account to launch, private snapshots that you own, and private snapshots owned by another AWS account but for which you've been given explicit create volume permissions.

The create volume permissions fall into the following categories:

* public: The owner of the snapshot granted create volume permissions
for the snapshot to the all group. All AWS accounts have create volume
permissions for these snapshots.

* explicit: The owner of the snapshot granted create volume permissions
to a specific AWS account.

* implicit: An AWS account has implicit create volume permissions for
all snapshots it owns.

The list of snapshots returned can be modified by specifying snapshot IDs, snapshot owners, or AWS accounts with create volume permissions. If no options are specified, Amazon EC2 returns all snapshots for which you have create volume permissions.

If you specify one or more snapshot IDs, only snapshots that have the specified IDs are returned. If you specify an invalid snapshot ID, an error is returned. If you specify a snapshot ID for which you do not have access, it is not included in the returned results.

If you specify one or more snapshot owners using the OwnerIds option, only snapshots from the specified owners and for which you have access are returned. The results can include the AWS account IDs of the specified owners, amazon for snapshots owned by Amazon, or self for snapshots that you own.

If you specify a list of restorable users, only snapshots with create snapshot permissions for those users are returned. You can specify AWS account IDs (if you own the snapshots), self for snapshots for which you own or have explicit permissions, or all for public snapshots.

If you are describing a long list of snapshots, you can paginate the output to make the list more manageable. The MaxResults parameter sets the maximum number of results returned in a single page. If the list of results exceeds your MaxResults value, then that number of results is returned along with a NextToken value that can be passed to a subsequent DescribeSnapshots request to retrieve the remaining results.

For more information about EBS snapshots, see Amazon EBS Snapshots (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSSnapshots.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeSnapshots for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSnapshots

Example (Shared00)

To describe a snapshot This example describes a snapshot with the snapshot ID of ``snap-1234567890abcdef0``.

Code:

svc := ec2.New(session.New())
input := &ec2.DescribeSnapshotsInput{
    SnapshotIds: []*string{
        aws.String("snap-1234567890abcdef0"),
    },
}

result, err := svc.DescribeSnapshots(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

Example (Shared01)

To describe snapshots using filters This example describes all snapshots owned by the ID 012345678910 that are in the ``pending`` status.

Code:

svc := ec2.New(session.New())
input := &ec2.DescribeSnapshotsInput{
    Filters: []*ec2.Filter{
        {
            Name: aws.String("status"),
            Values: []*string{
                aws.String("pending"),
            },
        },
    },
    OwnerIds: []*string{
        aws.String("012345678910"),
    },
}

result, err := svc.DescribeSnapshots(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DescribeSnapshotsPages

func (c *EC2) DescribeSnapshotsPages(input *DescribeSnapshotsInput, fn func(*DescribeSnapshotsOutput, bool) bool) error

DescribeSnapshotsPages iterates over the pages of a DescribeSnapshots operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeSnapshots method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeSnapshots operation.
pageNum := 0
err := client.DescribeSnapshotsPages(params,
    func(page *DescribeSnapshotsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*EC2) DescribeSnapshotsPagesWithContext

func (c *EC2) DescribeSnapshotsPagesWithContext(ctx aws.Context, input *DescribeSnapshotsInput, fn func(*DescribeSnapshotsOutput, bool) bool, opts ...request.Option) error

DescribeSnapshotsPagesWithContext same as DescribeSnapshotsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeSnapshotsRequest

func (c *EC2) DescribeSnapshotsRequest(input *DescribeSnapshotsInput) (req *request.Request, output *DescribeSnapshotsOutput)

DescribeSnapshotsRequest generates a "aws/request.Request" representing the client's request for the DescribeSnapshots operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeSnapshots for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeSnapshots method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeSnapshotsRequest method.
req, resp := client.DescribeSnapshotsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSnapshots

func (*EC2) DescribeSnapshotsWithContext

func (c *EC2) DescribeSnapshotsWithContext(ctx aws.Context, input *DescribeSnapshotsInput, opts ...request.Option) (*DescribeSnapshotsOutput, error)

DescribeSnapshotsWithContext is the same as DescribeSnapshots with the addition of the ability to pass a context and additional request options.

See DescribeSnapshots for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeSpotDatafeedSubscription

func (c *EC2) DescribeSpotDatafeedSubscription(input *DescribeSpotDatafeedSubscriptionInput) (*DescribeSpotDatafeedSubscriptionOutput, error)

DescribeSpotDatafeedSubscription API operation for Amazon Elastic Compute Cloud.

Describes the data feed for Spot instances. For more information, see Spot Instance Data Feed (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-data-feeds.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeSpotDatafeedSubscription for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSpotDatafeedSubscription

Example (Shared00)

To describe the datafeed for your AWS account This example describes the Spot Instance datafeed subscription for your AWS account.

Code:

svc := ec2.New(session.New())
input := &ec2.DescribeSpotDatafeedSubscriptionInput{}

result, err := svc.DescribeSpotDatafeedSubscription(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DescribeSpotDatafeedSubscriptionRequest

func (c *EC2) DescribeSpotDatafeedSubscriptionRequest(input *DescribeSpotDatafeedSubscriptionInput) (req *request.Request, output *DescribeSpotDatafeedSubscriptionOutput)

DescribeSpotDatafeedSubscriptionRequest generates a "aws/request.Request" representing the client's request for the DescribeSpotDatafeedSubscription operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeSpotDatafeedSubscription for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeSpotDatafeedSubscription method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeSpotDatafeedSubscriptionRequest method.
req, resp := client.DescribeSpotDatafeedSubscriptionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSpotDatafeedSubscription

func (*EC2) DescribeSpotDatafeedSubscriptionWithContext

func (c *EC2) DescribeSpotDatafeedSubscriptionWithContext(ctx aws.Context, input *DescribeSpotDatafeedSubscriptionInput, opts ...request.Option) (*DescribeSpotDatafeedSubscriptionOutput, error)

DescribeSpotDatafeedSubscriptionWithContext is the same as DescribeSpotDatafeedSubscription with the addition of the ability to pass a context and additional request options.

See DescribeSpotDatafeedSubscription for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeSpotFleetInstances

func (c *EC2) DescribeSpotFleetInstances(input *DescribeSpotFleetInstancesInput) (*DescribeSpotFleetInstancesOutput, error)

DescribeSpotFleetInstances API operation for Amazon Elastic Compute Cloud.

Describes the running instances for the specified Spot fleet.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeSpotFleetInstances for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSpotFleetInstances

Example (Shared00)

To describe the Spot Instances associated with a Spot fleet This example lists the Spot Instances associated with the specified Spot fleet.

Code:

svc := ec2.New(session.New())
input := &ec2.DescribeSpotFleetInstancesInput{
    SpotFleetRequestId: aws.String("sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE"),
}

result, err := svc.DescribeSpotFleetInstances(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DescribeSpotFleetInstancesRequest

func (c *EC2) DescribeSpotFleetInstancesRequest(input *DescribeSpotFleetInstancesInput) (req *request.Request, output *DescribeSpotFleetInstancesOutput)

DescribeSpotFleetInstancesRequest generates a "aws/request.Request" representing the client's request for the DescribeSpotFleetInstances operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeSpotFleetInstances for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeSpotFleetInstances method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeSpotFleetInstancesRequest method.
req, resp := client.DescribeSpotFleetInstancesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSpotFleetInstances

func (*EC2) DescribeSpotFleetInstancesWithContext

func (c *EC2) DescribeSpotFleetInstancesWithContext(ctx aws.Context, input *DescribeSpotFleetInstancesInput, opts ...request.Option) (*DescribeSpotFleetInstancesOutput, error)

DescribeSpotFleetInstancesWithContext is the same as DescribeSpotFleetInstances with the addition of the ability to pass a context and additional request options.

See DescribeSpotFleetInstances for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeSpotFleetRequestHistory

func (c *EC2) DescribeSpotFleetRequestHistory(input *DescribeSpotFleetRequestHistoryInput) (*DescribeSpotFleetRequestHistoryOutput, error)

DescribeSpotFleetRequestHistory API operation for Amazon Elastic Compute Cloud.

Describes the events for the specified Spot fleet request during the specified time.

Spot fleet events are delayed by up to 30 seconds before they can be described. This ensures that you can query by the last evaluated time and not miss a recorded event.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeSpotFleetRequestHistory for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSpotFleetRequestHistory

Example (Shared00)

To describe Spot fleet history This example returns the history for the specified Spot fleet starting at the specified time.

Code:

svc := ec2.New(session.New())
input := &ec2.DescribeSpotFleetRequestHistoryInput{
    SpotFleetRequestId: aws.String("sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE"),
    StartTime:          parseTime("2006-01-02T15:04:05Z", "2015-05-26T00:00:00Z"),
}

result, err := svc.DescribeSpotFleetRequestHistory(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DescribeSpotFleetRequestHistoryRequest

func (c *EC2) DescribeSpotFleetRequestHistoryRequest(input *DescribeSpotFleetRequestHistoryInput) (req *request.Request, output *DescribeSpotFleetRequestHistoryOutput)

DescribeSpotFleetRequestHistoryRequest generates a "aws/request.Request" representing the client's request for the DescribeSpotFleetRequestHistory operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeSpotFleetRequestHistory for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeSpotFleetRequestHistory method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeSpotFleetRequestHistoryRequest method.
req, resp := client.DescribeSpotFleetRequestHistoryRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSpotFleetRequestHistory

func (*EC2) DescribeSpotFleetRequestHistoryWithContext

func (c *EC2) DescribeSpotFleetRequestHistoryWithContext(ctx aws.Context, input *DescribeSpotFleetRequestHistoryInput, opts ...request.Option) (*DescribeSpotFleetRequestHistoryOutput, error)

DescribeSpotFleetRequestHistoryWithContext is the same as DescribeSpotFleetRequestHistory with the addition of the ability to pass a context and additional request options.

See DescribeSpotFleetRequestHistory for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeSpotFleetRequests

func (c *EC2) DescribeSpotFleetRequests(input *DescribeSpotFleetRequestsInput) (*DescribeSpotFleetRequestsOutput, error)

DescribeSpotFleetRequests API operation for Amazon Elastic Compute Cloud.

Describes your Spot fleet requests.

Spot fleet requests are deleted 48 hours after they are canceled and their instances are terminated.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeSpotFleetRequests for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSpotFleetRequests

Example (Shared00)

To describe a Spot fleet request This example describes the specified Spot fleet request.

Code:

svc := ec2.New(session.New())
input := &ec2.DescribeSpotFleetRequestsInput{
    SpotFleetRequestIds: []*string{
        aws.String("sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE"),
    },
}

result, err := svc.DescribeSpotFleetRequests(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DescribeSpotFleetRequestsPages

func (c *EC2) DescribeSpotFleetRequestsPages(input *DescribeSpotFleetRequestsInput, fn func(*DescribeSpotFleetRequestsOutput, bool) bool) error

DescribeSpotFleetRequestsPages iterates over the pages of a DescribeSpotFleetRequests operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeSpotFleetRequests method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeSpotFleetRequests operation.
pageNum := 0
err := client.DescribeSpotFleetRequestsPages(params,
    func(page *DescribeSpotFleetRequestsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*EC2) DescribeSpotFleetRequestsPagesWithContext

func (c *EC2) DescribeSpotFleetRequestsPagesWithContext(ctx aws.Context, input *DescribeSpotFleetRequestsInput, fn func(*DescribeSpotFleetRequestsOutput, bool) bool, opts ...request.Option) error

DescribeSpotFleetRequestsPagesWithContext same as DescribeSpotFleetRequestsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeSpotFleetRequestsRequest

func (c *EC2) DescribeSpotFleetRequestsRequest(input *DescribeSpotFleetRequestsInput) (req *request.Request, output *DescribeSpotFleetRequestsOutput)

DescribeSpotFleetRequestsRequest generates a "aws/request.Request" representing the client's request for the DescribeSpotFleetRequests operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeSpotFleetRequests for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeSpotFleetRequests method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeSpotFleetRequestsRequest method.
req, resp := client.DescribeSpotFleetRequestsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSpotFleetRequests

func (*EC2) DescribeSpotFleetRequestsWithContext

func (c *EC2) DescribeSpotFleetRequestsWithContext(ctx aws.Context, input *DescribeSpotFleetRequestsInput, opts ...request.Option) (*DescribeSpotFleetRequestsOutput, error)

DescribeSpotFleetRequestsWithContext is the same as DescribeSpotFleetRequests with the addition of the ability to pass a context and additional request options.

See DescribeSpotFleetRequests for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeSpotInstanceRequests

func (c *EC2) DescribeSpotInstanceRequests(input *DescribeSpotInstanceRequestsInput) (*DescribeSpotInstanceRequestsOutput, error)

DescribeSpotInstanceRequests API operation for Amazon Elastic Compute Cloud.

Describes the Spot instance requests that belong to your account. Spot instances are instances that Amazon EC2 launches when the bid price that you specify exceeds the current Spot price. Amazon EC2 periodically sets the Spot price based on available Spot instance capacity and current Spot instance requests. For more information, see Spot Instance Requests (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-requests.html) in the Amazon Elastic Compute Cloud User Guide.

You can use DescribeSpotInstanceRequests to find a running Spot instance by examining the response. If the status of the Spot instance is fulfilled, the instance ID appears in the response and contains the identifier of the instance. Alternatively, you can use DescribeInstances with a filter to look for instances where the instance lifecycle is spot.

Spot instance requests are deleted 4 hours after they are canceled and their instances are terminated.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeSpotInstanceRequests for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSpotInstanceRequests

Example (Shared00)

To describe a Spot Instance request This example describes the specified Spot Instance request.

Code:

svc := ec2.New(session.New())
input := &ec2.DescribeSpotInstanceRequestsInput{
    SpotInstanceRequestIds: []*string{
        aws.String("sir-08b93456"),
    },
}

result, err := svc.DescribeSpotInstanceRequests(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DescribeSpotInstanceRequestsRequest

func (c *EC2) DescribeSpotInstanceRequestsRequest(input *DescribeSpotInstanceRequestsInput) (req *request.Request, output *DescribeSpotInstanceRequestsOutput)

DescribeSpotInstanceRequestsRequest generates a "aws/request.Request" representing the client's request for the DescribeSpotInstanceRequests operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeSpotInstanceRequests for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeSpotInstanceRequests method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeSpotInstanceRequestsRequest method.
req, resp := client.DescribeSpotInstanceRequestsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSpotInstanceRequests

func (*EC2) DescribeSpotInstanceRequestsWithContext

func (c *EC2) DescribeSpotInstanceRequestsWithContext(ctx aws.Context, input *DescribeSpotInstanceRequestsInput, opts ...request.Option) (*DescribeSpotInstanceRequestsOutput, error)

DescribeSpotInstanceRequestsWithContext is the same as DescribeSpotInstanceRequests with the addition of the ability to pass a context and additional request options.

See DescribeSpotInstanceRequests for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeSpotPriceHistory

func (c *EC2) DescribeSpotPriceHistory(input *DescribeSpotPriceHistoryInput) (*DescribeSpotPriceHistoryOutput, error)

DescribeSpotPriceHistory API operation for Amazon Elastic Compute Cloud.

Describes the Spot price history. For more information, see Spot Instance Pricing History (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-spot-instances-history.html) in the Amazon Elastic Compute Cloud User Guide.

When you specify a start and end time, this operation returns the prices of the instance types within the time range that you specified and the time when the price changed. The price is valid within the time period that you specified; the response merely indicates the last time that the price changed.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeSpotPriceHistory for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSpotPriceHistory

Example (Shared00)

To describe Spot price history for Linux/UNIX (Amazon VPC) This example returns the Spot Price history for m1.xlarge, Linux/UNIX (Amazon VPC) instances for a particular day in January.

Code:

svc := ec2.New(session.New())
input := &ec2.DescribeSpotPriceHistoryInput{
    EndTime: parseTime("2006-01-02T15:04:05Z", "2014-01-06T08:09:10"),
    InstanceTypes: []*string{
        aws.String("m1.xlarge"),
    },
    ProductDescriptions: []*string{
        aws.String("Linux/UNIX (Amazon VPC)"),
    },
    StartTime: parseTime("2006-01-02T15:04:05Z", "2014-01-06T07:08:09"),
}

result, err := svc.DescribeSpotPriceHistory(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DescribeSpotPriceHistoryPages

func (c *EC2) DescribeSpotPriceHistoryPages(input *DescribeSpotPriceHistoryInput, fn func(*DescribeSpotPriceHistoryOutput, bool) bool) error

DescribeSpotPriceHistoryPages iterates over the pages of a DescribeSpotPriceHistory operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeSpotPriceHistory method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeSpotPriceHistory operation.
pageNum := 0
err := client.DescribeSpotPriceHistoryPages(params,
    func(page *DescribeSpotPriceHistoryOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*EC2) DescribeSpotPriceHistoryPagesWithContext

func (c *EC2) DescribeSpotPriceHistoryPagesWithContext(ctx aws.Context, input *DescribeSpotPriceHistoryInput, fn func(*DescribeSpotPriceHistoryOutput, bool) bool, opts ...request.Option) error

DescribeSpotPriceHistoryPagesWithContext same as DescribeSpotPriceHistoryPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeSpotPriceHistoryRequest

func (c *EC2) DescribeSpotPriceHistoryRequest(input *DescribeSpotPriceHistoryInput) (req *request.Request, output *DescribeSpotPriceHistoryOutput)

DescribeSpotPriceHistoryRequest generates a "aws/request.Request" representing the client's request for the DescribeSpotPriceHistory operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeSpotPriceHistory for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeSpotPriceHistory method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeSpotPriceHistoryRequest method.
req, resp := client.DescribeSpotPriceHistoryRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSpotPriceHistory

func (*EC2) DescribeSpotPriceHistoryWithContext

func (c *EC2) DescribeSpotPriceHistoryWithContext(ctx aws.Context, input *DescribeSpotPriceHistoryInput, opts ...request.Option) (*DescribeSpotPriceHistoryOutput, error)

DescribeSpotPriceHistoryWithContext is the same as DescribeSpotPriceHistory with the addition of the ability to pass a context and additional request options.

See DescribeSpotPriceHistory for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeStaleSecurityGroups

func (c *EC2) DescribeStaleSecurityGroups(input *DescribeStaleSecurityGroupsInput) (*DescribeStaleSecurityGroupsOutput, error)

DescribeStaleSecurityGroups API operation for Amazon Elastic Compute Cloud.

[EC2-VPC only] Describes the stale security group rules for security groups in a specified VPC. Rules are stale when they reference a deleted security group in a peer VPC, or a security group in a peer VPC for which the VPC peering connection has been deleted.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeStaleSecurityGroups for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeStaleSecurityGroups

func (*EC2) DescribeStaleSecurityGroupsRequest

func (c *EC2) DescribeStaleSecurityGroupsRequest(input *DescribeStaleSecurityGroupsInput) (req *request.Request, output *DescribeStaleSecurityGroupsOutput)

DescribeStaleSecurityGroupsRequest generates a "aws/request.Request" representing the client's request for the DescribeStaleSecurityGroups operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeStaleSecurityGroups for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeStaleSecurityGroups method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeStaleSecurityGroupsRequest method.
req, resp := client.DescribeStaleSecurityGroupsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeStaleSecurityGroups

func (*EC2) DescribeStaleSecurityGroupsWithContext

func (c *EC2) DescribeStaleSecurityGroupsWithContext(ctx aws.Context, input *DescribeStaleSecurityGroupsInput, opts ...request.Option) (*DescribeStaleSecurityGroupsOutput, error)

DescribeStaleSecurityGroupsWithContext is the same as DescribeStaleSecurityGroups with the addition of the ability to pass a context and additional request options.

See DescribeStaleSecurityGroups for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeSubnets

func (c *EC2) DescribeSubnets(input *DescribeSubnetsInput) (*DescribeSubnetsOutput, error)

DescribeSubnets API operation for Amazon Elastic Compute Cloud.

Describes one or more of your subnets.

For more information about subnets, see Your VPC and Subnets (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_Subnets.html) in the Amazon Virtual Private Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeSubnets for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSubnets

Example (Shared00)

To describe the subnets for a VPC This example describes the subnets for the specified VPC.

Code:

svc := ec2.New(session.New())
input := &ec2.DescribeSubnetsInput{
    Filters: []*ec2.Filter{
        {
            Name: aws.String("vpc-id"),
            Values: []*string{
                aws.String("vpc-a01106c2"),
            },
        },
    },
}

result, err := svc.DescribeSubnets(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DescribeSubnetsRequest

func (c *EC2) DescribeSubnetsRequest(input *DescribeSubnetsInput) (req *request.Request, output *DescribeSubnetsOutput)

DescribeSubnetsRequest generates a "aws/request.Request" representing the client's request for the DescribeSubnets operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeSubnets for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeSubnets method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeSubnetsRequest method.
req, resp := client.DescribeSubnetsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSubnets

func (*EC2) DescribeSubnetsWithContext

func (c *EC2) DescribeSubnetsWithContext(ctx aws.Context, input *DescribeSubnetsInput, opts ...request.Option) (*DescribeSubnetsOutput, error)

DescribeSubnetsWithContext is the same as DescribeSubnets with the addition of the ability to pass a context and additional request options.

See DescribeSubnets for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeTags

func (c *EC2) DescribeTags(input *DescribeTagsInput) (*DescribeTagsOutput, error)

DescribeTags API operation for Amazon Elastic Compute Cloud.

Describes one or more of the tags for your EC2 resources.

For more information about tags, see Tagging Your Resources (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeTags for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeTags

Example (Shared00)

To describe the tags for a single resource This example describes the tags for the specified instance.

Code:

svc := ec2.New(session.New())
input := &ec2.DescribeTagsInput{
    Filters: []*ec2.Filter{
        {
            Name: aws.String("resource-id"),
            Values: []*string{
                aws.String("i-1234567890abcdef8"),
            },
        },
    },
}

result, err := svc.DescribeTags(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DescribeTagsPages

func (c *EC2) DescribeTagsPages(input *DescribeTagsInput, fn func(*DescribeTagsOutput, bool) bool) error

DescribeTagsPages iterates over the pages of a DescribeTags operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeTags method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeTags operation.
pageNum := 0
err := client.DescribeTagsPages(params,
    func(page *DescribeTagsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*EC2) DescribeTagsPagesWithContext

func (c *EC2) DescribeTagsPagesWithContext(ctx aws.Context, input *DescribeTagsInput, fn func(*DescribeTagsOutput, bool) bool, opts ...request.Option) error

DescribeTagsPagesWithContext same as DescribeTagsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeTagsRequest

func (c *EC2) DescribeTagsRequest(input *DescribeTagsInput) (req *request.Request, output *DescribeTagsOutput)

DescribeTagsRequest generates a "aws/request.Request" representing the client's request for the DescribeTags operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeTags for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeTags method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeTagsRequest method.
req, resp := client.DescribeTagsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeTags

func (*EC2) DescribeTagsWithContext

func (c *EC2) DescribeTagsWithContext(ctx aws.Context, input *DescribeTagsInput, opts ...request.Option) (*DescribeTagsOutput, error)

DescribeTagsWithContext is the same as DescribeTags with the addition of the ability to pass a context and additional request options.

See DescribeTags for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeVolumeAttribute

func (c *EC2) DescribeVolumeAttribute(input *DescribeVolumeAttributeInput) (*DescribeVolumeAttributeOutput, error)

DescribeVolumeAttribute API operation for Amazon Elastic Compute Cloud.

Describes the specified attribute of the specified volume. You can specify only one attribute at a time.

For more information about EBS volumes, see Amazon EBS Volumes (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSVolumes.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeVolumeAttribute for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVolumeAttribute

Example (Shared00)

To describe a volume attribute This example describes the ``autoEnableIo`` attribute of the volume with the ID ``vol-049df61146c4d7901``.

Code:

svc := ec2.New(session.New())
input := &ec2.DescribeVolumeAttributeInput{
    Attribute: aws.String("autoEnableIO"),
    VolumeId:  aws.String("vol-049df61146c4d7901"),
}

result, err := svc.DescribeVolumeAttribute(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DescribeVolumeAttributeRequest

func (c *EC2) DescribeVolumeAttributeRequest(input *DescribeVolumeAttributeInput) (req *request.Request, output *DescribeVolumeAttributeOutput)

DescribeVolumeAttributeRequest generates a "aws/request.Request" representing the client's request for the DescribeVolumeAttribute operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeVolumeAttribute for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeVolumeAttribute method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeVolumeAttributeRequest method.
req, resp := client.DescribeVolumeAttributeRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVolumeAttribute

func (*EC2) DescribeVolumeAttributeWithContext

func (c *EC2) DescribeVolumeAttributeWithContext(ctx aws.Context, input *DescribeVolumeAttributeInput, opts ...request.Option) (*DescribeVolumeAttributeOutput, error)

DescribeVolumeAttributeWithContext is the same as DescribeVolumeAttribute with the addition of the ability to pass a context and additional request options.

See DescribeVolumeAttribute for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeVolumeStatus

func (c *EC2) DescribeVolumeStatus(input *DescribeVolumeStatusInput) (*DescribeVolumeStatusOutput, error)

DescribeVolumeStatus API operation for Amazon Elastic Compute Cloud.

Describes the status of the specified volumes. Volume status provides the result of the checks performed on your volumes to determine events that can impair the performance of your volumes. The performance of a volume can be affected if an issue occurs on the volume's underlying host. If the volume's underlying host experiences a power outage or system issue, after the system is restored, there could be data inconsistencies on the volume. Volume events notify you if this occurs. Volume actions notify you if any action needs to be taken in response to the event.

The DescribeVolumeStatus operation provides the following information about the specified volumes:

Status: Reflects the current status of the volume. The possible values are ok, impaired , warning, or insufficient-data. If all checks pass, the overall status of the volume is ok. If the check fails, the overall status is impaired. If the status is insufficient-data, then the checks may still be taking place on your volume at the time. We recommend that you retry the request. For more information on volume status, see Monitoring the Status of Your Volumes (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/monitoring-volume-status.html).

Events: Reflect the cause of a volume status and may require you to take action. For example, if your volume returns an impaired status, then the volume event might be potential-data-inconsistency. This means that your volume has been affected by an issue with the underlying host, has all I/O operations disabled, and may have inconsistent data.

Actions: Reflect the actions you may have to take in response to an event. For example, if the status of the volume is impaired and the volume event shows potential-data-inconsistency, then the action shows enable-volume-io. This means that you may want to enable the I/O operations for the volume by calling the EnableVolumeIO action and then check the volume for data consistency.

Volume status is based on the volume status checks, and does not reflect the volume state. Therefore, volume status does not indicate volumes in the error state (for example, when a volume is incapable of accepting I/O.)

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeVolumeStatus for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVolumeStatus

Example (Shared00)

To describe the status of a single volume This example describes the status for the volume ``vol-1234567890abcdef0``.

Code:

svc := ec2.New(session.New())
input := &ec2.DescribeVolumeStatusInput{
    VolumeIds: []*string{
        aws.String("vol-1234567890abcdef0"),
    },
}

result, err := svc.DescribeVolumeStatus(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

Example (Shared01)

To describe the status of impaired volumes This example describes the status for all volumes that are impaired. In this example output, there are no impaired volumes.

Code:

svc := ec2.New(session.New())
input := &ec2.DescribeVolumeStatusInput{
    Filters: []*ec2.Filter{
        {
            Name: aws.String("volume-status.status"),
            Values: []*string{
                aws.String("impaired"),
            },
        },
    },
}

result, err := svc.DescribeVolumeStatus(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DescribeVolumeStatusPages

func (c *EC2) DescribeVolumeStatusPages(input *DescribeVolumeStatusInput, fn func(*DescribeVolumeStatusOutput, bool) bool) error

DescribeVolumeStatusPages iterates over the pages of a DescribeVolumeStatus operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeVolumeStatus method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeVolumeStatus operation.
pageNum := 0
err := client.DescribeVolumeStatusPages(params,
    func(page *DescribeVolumeStatusOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*EC2) DescribeVolumeStatusPagesWithContext

func (c *EC2) DescribeVolumeStatusPagesWithContext(ctx aws.Context, input *DescribeVolumeStatusInput, fn func(*DescribeVolumeStatusOutput, bool) bool, opts ...request.Option) error

DescribeVolumeStatusPagesWithContext same as DescribeVolumeStatusPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeVolumeStatusRequest

func (c *EC2) DescribeVolumeStatusRequest(input *DescribeVolumeStatusInput) (req *request.Request, output *DescribeVolumeStatusOutput)

DescribeVolumeStatusRequest generates a "aws/request.Request" representing the client's request for the DescribeVolumeStatus operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeVolumeStatus for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeVolumeStatus method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeVolumeStatusRequest method.
req, resp := client.DescribeVolumeStatusRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVolumeStatus

func (*EC2) DescribeVolumeStatusWithContext

func (c *EC2) DescribeVolumeStatusWithContext(ctx aws.Context, input *DescribeVolumeStatusInput, opts ...request.Option) (*DescribeVolumeStatusOutput, error)

DescribeVolumeStatusWithContext is the same as DescribeVolumeStatus with the addition of the ability to pass a context and additional request options.

See DescribeVolumeStatus for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeVolumes

func (c *EC2) DescribeVolumes(input *DescribeVolumesInput) (*DescribeVolumesOutput, error)

DescribeVolumes API operation for Amazon Elastic Compute Cloud.

Describes the specified EBS volumes.

If you are describing a long list of volumes, you can paginate the output to make the list more manageable. The MaxResults parameter sets the maximum number of results returned in a single page. If the list of results exceeds your MaxResults value, then that number of results is returned along with a NextToken value that can be passed to a subsequent DescribeVolumes request to retrieve the remaining results.

For more information about EBS volumes, see Amazon EBS Volumes (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSVolumes.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeVolumes for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVolumes

Example (Shared00)

To describe all volumes This example describes all of your volumes in the default region.

Code:

svc := ec2.New(session.New())
input := &ec2.DescribeVolumesInput{}

result, err := svc.DescribeVolumes(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

Example (Shared01)

To describe volumes that are attached to a specific instance This example describes all volumes that are both attached to the instance with the ID i-1234567890abcdef0 and set to delete when the instance terminates.

Code:

svc := ec2.New(session.New())
input := &ec2.DescribeVolumesInput{
    Filters: []*ec2.Filter{
        {
            Name: aws.String("attachment.instance-id"),
            Values: []*string{
                aws.String("i-1234567890abcdef0"),
            },
        },
        {
            Name: aws.String("attachment.delete-on-termination"),
            Values: []*string{
                aws.String("true"),
            },
        },
    },
}

result, err := svc.DescribeVolumes(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DescribeVolumesModifications

func (c *EC2) DescribeVolumesModifications(input *DescribeVolumesModificationsInput) (*DescribeVolumesModificationsOutput, error)

DescribeVolumesModifications API operation for Amazon Elastic Compute Cloud.

Reports the current modification status of EBS volumes.

Current-generation EBS volumes support modification of attributes including type, size, and (for io1 volumes) IOPS provisioning while either attached to or detached from an instance. Following an action from the API or the console to modify a volume, the status of the modification may be modifying, optimizing, completed, or failed. If a volume has never been modified, then certain elements of the returned VolumeModification objects are null.

You can also use CloudWatch Events to check the status of a modification to an EBS volume. For information about CloudWatch Events, see the Amazon CloudWatch Events User Guide (http://docs.aws.amazon.com/AmazonCloudWatch/latest/events/). For more information, see Monitoring Volume Modifications" (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-expand-volume.html#monitoring_mods).

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeVolumesModifications for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVolumesModifications

func (*EC2) DescribeVolumesModificationsRequest

func (c *EC2) DescribeVolumesModificationsRequest(input *DescribeVolumesModificationsInput) (req *request.Request, output *DescribeVolumesModificationsOutput)

DescribeVolumesModificationsRequest generates a "aws/request.Request" representing the client's request for the DescribeVolumesModifications operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeVolumesModifications for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeVolumesModifications method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeVolumesModificationsRequest method.
req, resp := client.DescribeVolumesModificationsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVolumesModifications

func (*EC2) DescribeVolumesModificationsWithContext

func (c *EC2) DescribeVolumesModificationsWithContext(ctx aws.Context, input *DescribeVolumesModificationsInput, opts ...request.Option) (*DescribeVolumesModificationsOutput, error)

DescribeVolumesModificationsWithContext is the same as DescribeVolumesModifications with the addition of the ability to pass a context and additional request options.

See DescribeVolumesModifications for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeVolumesPages

func (c *EC2) DescribeVolumesPages(input *DescribeVolumesInput, fn func(*DescribeVolumesOutput, bool) bool) error

DescribeVolumesPages iterates over the pages of a DescribeVolumes operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeVolumes method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a DescribeVolumes operation.
pageNum := 0
err := client.DescribeVolumesPages(params,
    func(page *DescribeVolumesOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*EC2) DescribeVolumesPagesWithContext

func (c *EC2) DescribeVolumesPagesWithContext(ctx aws.Context, input *DescribeVolumesInput, fn func(*DescribeVolumesOutput, bool) bool, opts ...request.Option) error

DescribeVolumesPagesWithContext same as DescribeVolumesPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeVolumesRequest

func (c *EC2) DescribeVolumesRequest(input *DescribeVolumesInput) (req *request.Request, output *DescribeVolumesOutput)

DescribeVolumesRequest generates a "aws/request.Request" representing the client's request for the DescribeVolumes operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeVolumes for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeVolumes method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeVolumesRequest method.
req, resp := client.DescribeVolumesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVolumes

func (*EC2) DescribeVolumesWithContext

func (c *EC2) DescribeVolumesWithContext(ctx aws.Context, input *DescribeVolumesInput, opts ...request.Option) (*DescribeVolumesOutput, error)

DescribeVolumesWithContext is the same as DescribeVolumes with the addition of the ability to pass a context and additional request options.

See DescribeVolumes for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeVpcAttribute

func (c *EC2) DescribeVpcAttribute(input *DescribeVpcAttributeInput) (*DescribeVpcAttributeOutput, error)

DescribeVpcAttribute API operation for Amazon Elastic Compute Cloud.

Describes the specified attribute of the specified VPC. You can specify only one attribute at a time.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeVpcAttribute for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcAttribute

Example (Shared00)

To describe the enableDnsSupport attribute This example describes the enableDnsSupport attribute. This attribute indicates whether DNS resolution is enabled for the VPC. If this attribute is true, the Amazon DNS server resolves DNS hostnames for your instances to their corresponding IP addresses; otherwise, it does not.

Code:

svc := ec2.New(session.New())
input := &ec2.DescribeVpcAttributeInput{
    Attribute: aws.String("enableDnsSupport"),
    VpcId:     aws.String("vpc-a01106c2"),
}

result, err := svc.DescribeVpcAttribute(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

Example (Shared01)

To describe the enableDnsHostnames attribute This example describes the enableDnsHostnames attribute. This attribute indicates whether the instances launched in the VPC get DNS hostnames. If this attribute is true, instances in the VPC get DNS hostnames; otherwise, they do not.

Code:

svc := ec2.New(session.New())
input := &ec2.DescribeVpcAttributeInput{
    Attribute: aws.String("enableDnsHostnames"),
    VpcId:     aws.String("vpc-a01106c2"),
}

result, err := svc.DescribeVpcAttribute(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DescribeVpcAttributeRequest

func (c *EC2) DescribeVpcAttributeRequest(input *DescribeVpcAttributeInput) (req *request.Request, output *DescribeVpcAttributeOutput)

DescribeVpcAttributeRequest generates a "aws/request.Request" representing the client's request for the DescribeVpcAttribute operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeVpcAttribute for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeVpcAttribute method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeVpcAttributeRequest method.
req, resp := client.DescribeVpcAttributeRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcAttribute

func (*EC2) DescribeVpcAttributeWithContext

func (c *EC2) DescribeVpcAttributeWithContext(ctx aws.Context, input *DescribeVpcAttributeInput, opts ...request.Option) (*DescribeVpcAttributeOutput, error)

DescribeVpcAttributeWithContext is the same as DescribeVpcAttribute with the addition of the ability to pass a context and additional request options.

See DescribeVpcAttribute for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (c *EC2) DescribeVpcClassicLink(input *DescribeVpcClassicLinkInput) (*DescribeVpcClassicLinkOutput, error)

DescribeVpcClassicLink API operation for Amazon Elastic Compute Cloud.

Describes the ClassicLink status of one or more VPCs.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeVpcClassicLink for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcClassicLink

func (*EC2) DescribeVpcClassicLinkDnsSupport

func (c *EC2) DescribeVpcClassicLinkDnsSupport(input *DescribeVpcClassicLinkDnsSupportInput) (*DescribeVpcClassicLinkDnsSupportOutput, error)

DescribeVpcClassicLinkDnsSupport API operation for Amazon Elastic Compute Cloud.

Describes the ClassicLink DNS support status of one or more VPCs. If enabled, the DNS hostname of a linked EC2-Classic instance resolves to its private IP address when addressed from an instance in the VPC to which it's linked. Similarly, the DNS hostname of an instance in a VPC resolves to its private IP address when addressed from a linked EC2-Classic instance. For more information, see ClassicLink (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-classiclink.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeVpcClassicLinkDnsSupport for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcClassicLinkDnsSupport

func (*EC2) DescribeVpcClassicLinkDnsSupportRequest

func (c *EC2) DescribeVpcClassicLinkDnsSupportRequest(input *DescribeVpcClassicLinkDnsSupportInput) (req *request.Request, output *DescribeVpcClassicLinkDnsSupportOutput)

DescribeVpcClassicLinkDnsSupportRequest generates a "aws/request.Request" representing the client's request for the DescribeVpcClassicLinkDnsSupport operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeVpcClassicLinkDnsSupport for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeVpcClassicLinkDnsSupport method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeVpcClassicLinkDnsSupportRequest method.
req, resp := client.DescribeVpcClassicLinkDnsSupportRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcClassicLinkDnsSupport

func (*EC2) DescribeVpcClassicLinkDnsSupportWithContext

func (c *EC2) DescribeVpcClassicLinkDnsSupportWithContext(ctx aws.Context, input *DescribeVpcClassicLinkDnsSupportInput, opts ...request.Option) (*DescribeVpcClassicLinkDnsSupportOutput, error)

DescribeVpcClassicLinkDnsSupportWithContext is the same as DescribeVpcClassicLinkDnsSupport with the addition of the ability to pass a context and additional request options.

See DescribeVpcClassicLinkDnsSupport for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeVpcClassicLinkRequest

func (c *EC2) DescribeVpcClassicLinkRequest(input *DescribeVpcClassicLinkInput) (req *request.Request, output *DescribeVpcClassicLinkOutput)

DescribeVpcClassicLinkRequest generates a "aws/request.Request" representing the client's request for the DescribeVpcClassicLink operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeVpcClassicLink for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeVpcClassicLink method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeVpcClassicLinkRequest method.
req, resp := client.DescribeVpcClassicLinkRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcClassicLink

func (*EC2) DescribeVpcClassicLinkWithContext

func (c *EC2) DescribeVpcClassicLinkWithContext(ctx aws.Context, input *DescribeVpcClassicLinkInput, opts ...request.Option) (*DescribeVpcClassicLinkOutput, error)

DescribeVpcClassicLinkWithContext is the same as DescribeVpcClassicLink with the addition of the ability to pass a context and additional request options.

See DescribeVpcClassicLink for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeVpcEndpointServices

func (c *EC2) DescribeVpcEndpointServices(input *DescribeVpcEndpointServicesInput) (*DescribeVpcEndpointServicesOutput, error)

DescribeVpcEndpointServices API operation for Amazon Elastic Compute Cloud.

Describes all supported AWS services that can be specified when creating a VPC endpoint.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeVpcEndpointServices for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcEndpointServices

func (*EC2) DescribeVpcEndpointServicesRequest

func (c *EC2) DescribeVpcEndpointServicesRequest(input *DescribeVpcEndpointServicesInput) (req *request.Request, output *DescribeVpcEndpointServicesOutput)

DescribeVpcEndpointServicesRequest generates a "aws/request.Request" representing the client's request for the DescribeVpcEndpointServices operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeVpcEndpointServices for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeVpcEndpointServices method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeVpcEndpointServicesRequest method.
req, resp := client.DescribeVpcEndpointServicesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcEndpointServices

func (*EC2) DescribeVpcEndpointServicesWithContext

func (c *EC2) DescribeVpcEndpointServicesWithContext(ctx aws.Context, input *DescribeVpcEndpointServicesInput, opts ...request.Option) (*DescribeVpcEndpointServicesOutput, error)

DescribeVpcEndpointServicesWithContext is the same as DescribeVpcEndpointServices with the addition of the ability to pass a context and additional request options.

See DescribeVpcEndpointServices for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeVpcEndpoints

func (c *EC2) DescribeVpcEndpoints(input *DescribeVpcEndpointsInput) (*DescribeVpcEndpointsOutput, error)

DescribeVpcEndpoints API operation for Amazon Elastic Compute Cloud.

Describes one or more of your VPC endpoints.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeVpcEndpoints for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcEndpoints

func (*EC2) DescribeVpcEndpointsRequest

func (c *EC2) DescribeVpcEndpointsRequest(input *DescribeVpcEndpointsInput) (req *request.Request, output *DescribeVpcEndpointsOutput)

DescribeVpcEndpointsRequest generates a "aws/request.Request" representing the client's request for the DescribeVpcEndpoints operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeVpcEndpoints for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeVpcEndpoints method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeVpcEndpointsRequest method.
req, resp := client.DescribeVpcEndpointsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcEndpoints

func (*EC2) DescribeVpcEndpointsWithContext

func (c *EC2) DescribeVpcEndpointsWithContext(ctx aws.Context, input *DescribeVpcEndpointsInput, opts ...request.Option) (*DescribeVpcEndpointsOutput, error)

DescribeVpcEndpointsWithContext is the same as DescribeVpcEndpoints with the addition of the ability to pass a context and additional request options.

See DescribeVpcEndpoints for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeVpcPeeringConnections

func (c *EC2) DescribeVpcPeeringConnections(input *DescribeVpcPeeringConnectionsInput) (*DescribeVpcPeeringConnectionsOutput, error)

DescribeVpcPeeringConnections API operation for Amazon Elastic Compute Cloud.

Describes one or more of your VPC peering connections.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeVpcPeeringConnections for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcPeeringConnections

func (*EC2) DescribeVpcPeeringConnectionsRequest

func (c *EC2) DescribeVpcPeeringConnectionsRequest(input *DescribeVpcPeeringConnectionsInput) (req *request.Request, output *DescribeVpcPeeringConnectionsOutput)

DescribeVpcPeeringConnectionsRequest generates a "aws/request.Request" representing the client's request for the DescribeVpcPeeringConnections operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeVpcPeeringConnections for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeVpcPeeringConnections method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeVpcPeeringConnectionsRequest method.
req, resp := client.DescribeVpcPeeringConnectionsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcPeeringConnections

func (*EC2) DescribeVpcPeeringConnectionsWithContext

func (c *EC2) DescribeVpcPeeringConnectionsWithContext(ctx aws.Context, input *DescribeVpcPeeringConnectionsInput, opts ...request.Option) (*DescribeVpcPeeringConnectionsOutput, error)

DescribeVpcPeeringConnectionsWithContext is the same as DescribeVpcPeeringConnections with the addition of the ability to pass a context and additional request options.

See DescribeVpcPeeringConnections for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeVpcs

func (c *EC2) DescribeVpcs(input *DescribeVpcsInput) (*DescribeVpcsOutput, error)

DescribeVpcs API operation for Amazon Elastic Compute Cloud.

Describes one or more of your VPCs.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeVpcs for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcs

Example (Shared00)

To describe a VPC This example describes the specified VPC.

Code:

svc := ec2.New(session.New())
input := &ec2.DescribeVpcsInput{
    VpcIds: []*string{
        aws.String("vpc-a01106c2"),
    },
}

result, err := svc.DescribeVpcs(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DescribeVpcsRequest

func (c *EC2) DescribeVpcsRequest(input *DescribeVpcsInput) (req *request.Request, output *DescribeVpcsOutput)

DescribeVpcsRequest generates a "aws/request.Request" representing the client's request for the DescribeVpcs operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeVpcs for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeVpcs method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeVpcsRequest method.
req, resp := client.DescribeVpcsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcs

func (*EC2) DescribeVpcsWithContext

func (c *EC2) DescribeVpcsWithContext(ctx aws.Context, input *DescribeVpcsInput, opts ...request.Option) (*DescribeVpcsOutput, error)

DescribeVpcsWithContext is the same as DescribeVpcs with the addition of the ability to pass a context and additional request options.

See DescribeVpcs for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeVpnConnections

func (c *EC2) DescribeVpnConnections(input *DescribeVpnConnectionsInput) (*DescribeVpnConnectionsOutput, error)

DescribeVpnConnections API operation for Amazon Elastic Compute Cloud.

Describes one or more of your VPN connections.

For more information about VPN connections, see Adding a Hardware Virtual Private Gateway to Your VPC (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_VPN.html) in the Amazon Virtual Private Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeVpnConnections for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpnConnections

func (*EC2) DescribeVpnConnectionsRequest

func (c *EC2) DescribeVpnConnectionsRequest(input *DescribeVpnConnectionsInput) (req *request.Request, output *DescribeVpnConnectionsOutput)

DescribeVpnConnectionsRequest generates a "aws/request.Request" representing the client's request for the DescribeVpnConnections operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeVpnConnections for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeVpnConnections method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeVpnConnectionsRequest method.
req, resp := client.DescribeVpnConnectionsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpnConnections

func (*EC2) DescribeVpnConnectionsWithContext

func (c *EC2) DescribeVpnConnectionsWithContext(ctx aws.Context, input *DescribeVpnConnectionsInput, opts ...request.Option) (*DescribeVpnConnectionsOutput, error)

DescribeVpnConnectionsWithContext is the same as DescribeVpnConnections with the addition of the ability to pass a context and additional request options.

See DescribeVpnConnections for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DescribeVpnGateways

func (c *EC2) DescribeVpnGateways(input *DescribeVpnGatewaysInput) (*DescribeVpnGatewaysOutput, error)

DescribeVpnGateways API operation for Amazon Elastic Compute Cloud.

Describes one or more of your virtual private gateways.

For more information about virtual private gateways, see Adding an IPsec Hardware VPN to Your VPC (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_VPN.html) in the Amazon Virtual Private Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DescribeVpnGateways for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpnGateways

func (*EC2) DescribeVpnGatewaysRequest

func (c *EC2) DescribeVpnGatewaysRequest(input *DescribeVpnGatewaysInput) (req *request.Request, output *DescribeVpnGatewaysOutput)

DescribeVpnGatewaysRequest generates a "aws/request.Request" representing the client's request for the DescribeVpnGateways operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DescribeVpnGateways for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DescribeVpnGateways method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DescribeVpnGatewaysRequest method.
req, resp := client.DescribeVpnGatewaysRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpnGateways

func (*EC2) DescribeVpnGatewaysWithContext

func (c *EC2) DescribeVpnGatewaysWithContext(ctx aws.Context, input *DescribeVpnGatewaysInput, opts ...request.Option) (*DescribeVpnGatewaysOutput, error)

DescribeVpnGatewaysWithContext is the same as DescribeVpnGateways with the addition of the ability to pass a context and additional request options.

See DescribeVpnGateways for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DetachClassicLinkVpc

func (c *EC2) DetachClassicLinkVpc(input *DetachClassicLinkVpcInput) (*DetachClassicLinkVpcOutput, error)

DetachClassicLinkVpc API operation for Amazon Elastic Compute Cloud.

Unlinks (detaches) a linked EC2-Classic instance from a VPC. After the instance has been unlinked, the VPC security groups are no longer associated with it. An instance is automatically unlinked from a VPC when it's stopped.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DetachClassicLinkVpc for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DetachClassicLinkVpc

func (*EC2) DetachClassicLinkVpcRequest

func (c *EC2) DetachClassicLinkVpcRequest(input *DetachClassicLinkVpcInput) (req *request.Request, output *DetachClassicLinkVpcOutput)

DetachClassicLinkVpcRequest generates a "aws/request.Request" representing the client's request for the DetachClassicLinkVpc operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DetachClassicLinkVpc for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DetachClassicLinkVpc method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DetachClassicLinkVpcRequest method.
req, resp := client.DetachClassicLinkVpcRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DetachClassicLinkVpc

func (*EC2) DetachClassicLinkVpcWithContext

func (c *EC2) DetachClassicLinkVpcWithContext(ctx aws.Context, input *DetachClassicLinkVpcInput, opts ...request.Option) (*DetachClassicLinkVpcOutput, error)

DetachClassicLinkVpcWithContext is the same as DetachClassicLinkVpc with the addition of the ability to pass a context and additional request options.

See DetachClassicLinkVpc for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DetachInternetGateway

func (c *EC2) DetachInternetGateway(input *DetachInternetGatewayInput) (*DetachInternetGatewayOutput, error)

DetachInternetGateway API operation for Amazon Elastic Compute Cloud.

Detaches an Internet gateway from a VPC, disabling connectivity between the Internet and the VPC. The VPC must not contain any running instances with Elastic IP addresses or public IPv4 addresses.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DetachInternetGateway for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DetachInternetGateway

Example (Shared00)

To detach an Internet gateway from a VPC This example detaches the specified Internet gateway from the specified VPC.

Code:

svc := ec2.New(session.New())
input := &ec2.DetachInternetGatewayInput{
    InternetGatewayId: aws.String("igw-c0a643a9"),
    VpcId:             aws.String("vpc-a01106c2"),
}

result, err := svc.DetachInternetGateway(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DetachInternetGatewayRequest

func (c *EC2) DetachInternetGatewayRequest(input *DetachInternetGatewayInput) (req *request.Request, output *DetachInternetGatewayOutput)

DetachInternetGatewayRequest generates a "aws/request.Request" representing the client's request for the DetachInternetGateway operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DetachInternetGateway for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DetachInternetGateway method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DetachInternetGatewayRequest method.
req, resp := client.DetachInternetGatewayRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DetachInternetGateway

func (*EC2) DetachInternetGatewayWithContext

func (c *EC2) DetachInternetGatewayWithContext(ctx aws.Context, input *DetachInternetGatewayInput, opts ...request.Option) (*DetachInternetGatewayOutput, error)

DetachInternetGatewayWithContext is the same as DetachInternetGateway with the addition of the ability to pass a context and additional request options.

See DetachInternetGateway for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DetachNetworkInterface

func (c *EC2) DetachNetworkInterface(input *DetachNetworkInterfaceInput) (*DetachNetworkInterfaceOutput, error)

DetachNetworkInterface API operation for Amazon Elastic Compute Cloud.

Detaches a network interface from an instance.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DetachNetworkInterface for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DetachNetworkInterface

Example (Shared00)

To detach a network interface from an instance This example detaches the specified network interface from its attached instance.

Code:

svc := ec2.New(session.New())
input := &ec2.DetachNetworkInterfaceInput{
    AttachmentId: aws.String("eni-attach-66c4350a"),
}

result, err := svc.DetachNetworkInterface(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DetachNetworkInterfaceRequest

func (c *EC2) DetachNetworkInterfaceRequest(input *DetachNetworkInterfaceInput) (req *request.Request, output *DetachNetworkInterfaceOutput)

DetachNetworkInterfaceRequest generates a "aws/request.Request" representing the client's request for the DetachNetworkInterface operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DetachNetworkInterface for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DetachNetworkInterface method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DetachNetworkInterfaceRequest method.
req, resp := client.DetachNetworkInterfaceRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DetachNetworkInterface

func (*EC2) DetachNetworkInterfaceWithContext

func (c *EC2) DetachNetworkInterfaceWithContext(ctx aws.Context, input *DetachNetworkInterfaceInput, opts ...request.Option) (*DetachNetworkInterfaceOutput, error)

DetachNetworkInterfaceWithContext is the same as DetachNetworkInterface with the addition of the ability to pass a context and additional request options.

See DetachNetworkInterface for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DetachVolume

func (c *EC2) DetachVolume(input *DetachVolumeInput) (*VolumeAttachment, error)

DetachVolume API operation for Amazon Elastic Compute Cloud.

Detaches an EBS volume from an instance. Make sure to unmount any file systems on the device within your operating system before detaching the volume. Failure to do so can result in the volume becoming stuck in the busy state while detaching. If this happens, detachment can be delayed indefinitely until you unmount the volume, force detachment, reboot the instance, or all three. If an EBS volume is the root device of an instance, it can't be detached while the instance is running. To detach the root volume, stop the instance first.

When a volume with an AWS Marketplace product code is detached from an instance, the product code is no longer associated with the instance.

For more information, see Detaching an Amazon EBS Volume (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-detaching-volume.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DetachVolume for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DetachVolume

Example (Shared00)

To detach a volume from an instance This example detaches the volume (``vol-049df61146c4d7901``) from the instance it is attached to.

Code:

svc := ec2.New(session.New())
input := &ec2.DetachVolumeInput{
    VolumeId: aws.String("vol-1234567890abcdef0"),
}

result, err := svc.DetachVolume(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DetachVolumeRequest

func (c *EC2) DetachVolumeRequest(input *DetachVolumeInput) (req *request.Request, output *VolumeAttachment)

DetachVolumeRequest generates a "aws/request.Request" representing the client's request for the DetachVolume operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DetachVolume for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DetachVolume method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DetachVolumeRequest method.
req, resp := client.DetachVolumeRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DetachVolume

func (*EC2) DetachVolumeWithContext

func (c *EC2) DetachVolumeWithContext(ctx aws.Context, input *DetachVolumeInput, opts ...request.Option) (*VolumeAttachment, error)

DetachVolumeWithContext is the same as DetachVolume with the addition of the ability to pass a context and additional request options.

See DetachVolume for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DetachVpnGateway

func (c *EC2) DetachVpnGateway(input *DetachVpnGatewayInput) (*DetachVpnGatewayOutput, error)

DetachVpnGateway API operation for Amazon Elastic Compute Cloud.

Detaches a virtual private gateway from a VPC. You do this if you're planning to turn off the VPC and not use it anymore. You can confirm a virtual private gateway has been completely detached from a VPC by describing the virtual private gateway (any attachments to the virtual private gateway are also described).

You must wait for the attachment's state to switch to detached before you can delete the VPC or attach a different VPC to the virtual private gateway.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DetachVpnGateway for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DetachVpnGateway

func (*EC2) DetachVpnGatewayRequest

func (c *EC2) DetachVpnGatewayRequest(input *DetachVpnGatewayInput) (req *request.Request, output *DetachVpnGatewayOutput)

DetachVpnGatewayRequest generates a "aws/request.Request" representing the client's request for the DetachVpnGateway operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DetachVpnGateway for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DetachVpnGateway method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DetachVpnGatewayRequest method.
req, resp := client.DetachVpnGatewayRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DetachVpnGateway

func (*EC2) DetachVpnGatewayWithContext

func (c *EC2) DetachVpnGatewayWithContext(ctx aws.Context, input *DetachVpnGatewayInput, opts ...request.Option) (*DetachVpnGatewayOutput, error)

DetachVpnGatewayWithContext is the same as DetachVpnGateway with the addition of the ability to pass a context and additional request options.

See DetachVpnGateway for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DisableVgwRoutePropagation

func (c *EC2) DisableVgwRoutePropagation(input *DisableVgwRoutePropagationInput) (*DisableVgwRoutePropagationOutput, error)

DisableVgwRoutePropagation API operation for Amazon Elastic Compute Cloud.

Disables a virtual private gateway (VGW) from propagating routes to a specified route table of a VPC.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DisableVgwRoutePropagation for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisableVgwRoutePropagation

Example (Shared00)

To disable route propagation This example disables the specified virtual private gateway from propagating static routes to the specified route table.

Code:

svc := ec2.New(session.New())
input := &ec2.DisableVgwRoutePropagationInput{
    GatewayId:    aws.String("vgw-9a4cacf3"),
    RouteTableId: aws.String("rtb-22574640"),
}

result, err := svc.DisableVgwRoutePropagation(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DisableVgwRoutePropagationRequest

func (c *EC2) DisableVgwRoutePropagationRequest(input *DisableVgwRoutePropagationInput) (req *request.Request, output *DisableVgwRoutePropagationOutput)

DisableVgwRoutePropagationRequest generates a "aws/request.Request" representing the client's request for the DisableVgwRoutePropagation operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DisableVgwRoutePropagation for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DisableVgwRoutePropagation method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DisableVgwRoutePropagationRequest method.
req, resp := client.DisableVgwRoutePropagationRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisableVgwRoutePropagation

func (*EC2) DisableVgwRoutePropagationWithContext

func (c *EC2) DisableVgwRoutePropagationWithContext(ctx aws.Context, input *DisableVgwRoutePropagationInput, opts ...request.Option) (*DisableVgwRoutePropagationOutput, error)

DisableVgwRoutePropagationWithContext is the same as DisableVgwRoutePropagation with the addition of the ability to pass a context and additional request options.

See DisableVgwRoutePropagation for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (c *EC2) DisableVpcClassicLink(input *DisableVpcClassicLinkInput) (*DisableVpcClassicLinkOutput, error)

DisableVpcClassicLink API operation for Amazon Elastic Compute Cloud.

Disables ClassicLink for a VPC. You cannot disable ClassicLink for a VPC that has EC2-Classic instances linked to it.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DisableVpcClassicLink for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisableVpcClassicLink

func (*EC2) DisableVpcClassicLinkDnsSupport

func (c *EC2) DisableVpcClassicLinkDnsSupport(input *DisableVpcClassicLinkDnsSupportInput) (*DisableVpcClassicLinkDnsSupportOutput, error)

DisableVpcClassicLinkDnsSupport API operation for Amazon Elastic Compute Cloud.

Disables ClassicLink DNS support for a VPC. If disabled, DNS hostnames resolve to public IP addresses when addressed between a linked EC2-Classic instance and instances in the VPC to which it's linked. For more information about ClassicLink, see ClassicLink (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-classiclink.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DisableVpcClassicLinkDnsSupport for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisableVpcClassicLinkDnsSupport

func (*EC2) DisableVpcClassicLinkDnsSupportRequest

func (c *EC2) DisableVpcClassicLinkDnsSupportRequest(input *DisableVpcClassicLinkDnsSupportInput) (req *request.Request, output *DisableVpcClassicLinkDnsSupportOutput)

DisableVpcClassicLinkDnsSupportRequest generates a "aws/request.Request" representing the client's request for the DisableVpcClassicLinkDnsSupport operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DisableVpcClassicLinkDnsSupport for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DisableVpcClassicLinkDnsSupport method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DisableVpcClassicLinkDnsSupportRequest method.
req, resp := client.DisableVpcClassicLinkDnsSupportRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisableVpcClassicLinkDnsSupport

func (*EC2) DisableVpcClassicLinkDnsSupportWithContext

func (c *EC2) DisableVpcClassicLinkDnsSupportWithContext(ctx aws.Context, input *DisableVpcClassicLinkDnsSupportInput, opts ...request.Option) (*DisableVpcClassicLinkDnsSupportOutput, error)

DisableVpcClassicLinkDnsSupportWithContext is the same as DisableVpcClassicLinkDnsSupport with the addition of the ability to pass a context and additional request options.

See DisableVpcClassicLinkDnsSupport for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DisableVpcClassicLinkRequest

func (c *EC2) DisableVpcClassicLinkRequest(input *DisableVpcClassicLinkInput) (req *request.Request, output *DisableVpcClassicLinkOutput)

DisableVpcClassicLinkRequest generates a "aws/request.Request" representing the client's request for the DisableVpcClassicLink operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DisableVpcClassicLink for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DisableVpcClassicLink method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DisableVpcClassicLinkRequest method.
req, resp := client.DisableVpcClassicLinkRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisableVpcClassicLink

func (*EC2) DisableVpcClassicLinkWithContext

func (c *EC2) DisableVpcClassicLinkWithContext(ctx aws.Context, input *DisableVpcClassicLinkInput, opts ...request.Option) (*DisableVpcClassicLinkOutput, error)

DisableVpcClassicLinkWithContext is the same as DisableVpcClassicLink with the addition of the ability to pass a context and additional request options.

See DisableVpcClassicLink for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DisassociateAddress

func (c *EC2) DisassociateAddress(input *DisassociateAddressInput) (*DisassociateAddressOutput, error)

DisassociateAddress API operation for Amazon Elastic Compute Cloud.

Disassociates an Elastic IP address from the instance or network interface it's associated with.

An Elastic IP address is for use in either the EC2-Classic platform or in a VPC. For more information, see Elastic IP Addresses (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html) in the Amazon Elastic Compute Cloud User Guide.

This is an idempotent operation. If you perform the operation more than once, Amazon EC2 doesn't return an error.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DisassociateAddress for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisassociateAddress

Example (Shared00)

To disassociate an Elastic IP address in EC2-VPC This example disassociates an Elastic IP address from an instance in a VPC.

Code:

svc := ec2.New(session.New())
input := &ec2.DisassociateAddressInput{
    AssociationId: aws.String("eipassoc-2bebb745"),
}

result, err := svc.DisassociateAddress(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

Example (Shared01)

To disassociate an Elastic IP addresses in EC2-Classic This example disassociates an Elastic IP address from an instance in EC2-Classic.

Code:

svc := ec2.New(session.New())
input := &ec2.DisassociateAddressInput{
    PublicIp: aws.String("198.51.100.0"),
}

result, err := svc.DisassociateAddress(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DisassociateAddressRequest

func (c *EC2) DisassociateAddressRequest(input *DisassociateAddressInput) (req *request.Request, output *DisassociateAddressOutput)

DisassociateAddressRequest generates a "aws/request.Request" representing the client's request for the DisassociateAddress operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DisassociateAddress for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DisassociateAddress method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DisassociateAddressRequest method.
req, resp := client.DisassociateAddressRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisassociateAddress

func (*EC2) DisassociateAddressWithContext

func (c *EC2) DisassociateAddressWithContext(ctx aws.Context, input *DisassociateAddressInput, opts ...request.Option) (*DisassociateAddressOutput, error)

DisassociateAddressWithContext is the same as DisassociateAddress with the addition of the ability to pass a context and additional request options.

See DisassociateAddress for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DisassociateIamInstanceProfile

func (c *EC2) DisassociateIamInstanceProfile(input *DisassociateIamInstanceProfileInput) (*DisassociateIamInstanceProfileOutput, error)

DisassociateIamInstanceProfile API operation for Amazon Elastic Compute Cloud.

Disassociates an IAM instance profile from a running or stopped instance.

Use DescribeIamInstanceProfileAssociations to get the association ID.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DisassociateIamInstanceProfile for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisassociateIamInstanceProfile

func (*EC2) DisassociateIamInstanceProfileRequest

func (c *EC2) DisassociateIamInstanceProfileRequest(input *DisassociateIamInstanceProfileInput) (req *request.Request, output *DisassociateIamInstanceProfileOutput)

DisassociateIamInstanceProfileRequest generates a "aws/request.Request" representing the client's request for the DisassociateIamInstanceProfile operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DisassociateIamInstanceProfile for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DisassociateIamInstanceProfile method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DisassociateIamInstanceProfileRequest method.
req, resp := client.DisassociateIamInstanceProfileRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisassociateIamInstanceProfile

func (*EC2) DisassociateIamInstanceProfileWithContext

func (c *EC2) DisassociateIamInstanceProfileWithContext(ctx aws.Context, input *DisassociateIamInstanceProfileInput, opts ...request.Option) (*DisassociateIamInstanceProfileOutput, error)

DisassociateIamInstanceProfileWithContext is the same as DisassociateIamInstanceProfile with the addition of the ability to pass a context and additional request options.

See DisassociateIamInstanceProfile for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DisassociateRouteTable

func (c *EC2) DisassociateRouteTable(input *DisassociateRouteTableInput) (*DisassociateRouteTableOutput, error)

DisassociateRouteTable API operation for Amazon Elastic Compute Cloud.

Disassociates a subnet from a route table.

After you perform this action, the subnet no longer uses the routes in the route table. Instead, it uses the routes in the VPC's main route table. For more information about route tables, see Route Tables (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_Route_Tables.html) in the Amazon Virtual Private Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DisassociateRouteTable for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisassociateRouteTable

Example (Shared00)

To disassociate a route table This example disassociates the specified route table from its associated subnet.

Code:

svc := ec2.New(session.New())
input := &ec2.DisassociateRouteTableInput{
    AssociationId: aws.String("rtbassoc-781d0d1a"),
}

result, err := svc.DisassociateRouteTable(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) DisassociateRouteTableRequest

func (c *EC2) DisassociateRouteTableRequest(input *DisassociateRouteTableInput) (req *request.Request, output *DisassociateRouteTableOutput)

DisassociateRouteTableRequest generates a "aws/request.Request" representing the client's request for the DisassociateRouteTable operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DisassociateRouteTable for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DisassociateRouteTable method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DisassociateRouteTableRequest method.
req, resp := client.DisassociateRouteTableRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisassociateRouteTable

func (*EC2) DisassociateRouteTableWithContext

func (c *EC2) DisassociateRouteTableWithContext(ctx aws.Context, input *DisassociateRouteTableInput, opts ...request.Option) (*DisassociateRouteTableOutput, error)

DisassociateRouteTableWithContext is the same as DisassociateRouteTable with the addition of the ability to pass a context and additional request options.

See DisassociateRouteTable for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DisassociateSubnetCidrBlock

func (c *EC2) DisassociateSubnetCidrBlock(input *DisassociateSubnetCidrBlockInput) (*DisassociateSubnetCidrBlockOutput, error)

DisassociateSubnetCidrBlock API operation for Amazon Elastic Compute Cloud.

Disassociates a CIDR block from a subnet. Currently, you can disassociate an IPv6 CIDR block only. You must detach or delete all gateways and resources that are associated with the CIDR block before you can disassociate it.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DisassociateSubnetCidrBlock for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisassociateSubnetCidrBlock

func (*EC2) DisassociateSubnetCidrBlockRequest

func (c *EC2) DisassociateSubnetCidrBlockRequest(input *DisassociateSubnetCidrBlockInput) (req *request.Request, output *DisassociateSubnetCidrBlockOutput)

DisassociateSubnetCidrBlockRequest generates a "aws/request.Request" representing the client's request for the DisassociateSubnetCidrBlock operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DisassociateSubnetCidrBlock for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DisassociateSubnetCidrBlock method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DisassociateSubnetCidrBlockRequest method.
req, resp := client.DisassociateSubnetCidrBlockRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisassociateSubnetCidrBlock

func (*EC2) DisassociateSubnetCidrBlockWithContext

func (c *EC2) DisassociateSubnetCidrBlockWithContext(ctx aws.Context, input *DisassociateSubnetCidrBlockInput, opts ...request.Option) (*DisassociateSubnetCidrBlockOutput, error)

DisassociateSubnetCidrBlockWithContext is the same as DisassociateSubnetCidrBlock with the addition of the ability to pass a context and additional request options.

See DisassociateSubnetCidrBlock for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) DisassociateVpcCidrBlock

func (c *EC2) DisassociateVpcCidrBlock(input *DisassociateVpcCidrBlockInput) (*DisassociateVpcCidrBlockOutput, error)

DisassociateVpcCidrBlock API operation for Amazon Elastic Compute Cloud.

Disassociates a CIDR block from a VPC. Currently, you can disassociate an IPv6 CIDR block only. You must detach or delete all gateways and resources that are associated with the CIDR block before you can disassociate it.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation DisassociateVpcCidrBlock for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisassociateVpcCidrBlock

func (*EC2) DisassociateVpcCidrBlockRequest

func (c *EC2) DisassociateVpcCidrBlockRequest(input *DisassociateVpcCidrBlockInput) (req *request.Request, output *DisassociateVpcCidrBlockOutput)

DisassociateVpcCidrBlockRequest generates a "aws/request.Request" representing the client's request for the DisassociateVpcCidrBlock operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DisassociateVpcCidrBlock for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DisassociateVpcCidrBlock method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DisassociateVpcCidrBlockRequest method.
req, resp := client.DisassociateVpcCidrBlockRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisassociateVpcCidrBlock

func (*EC2) DisassociateVpcCidrBlockWithContext

func (c *EC2) DisassociateVpcCidrBlockWithContext(ctx aws.Context, input *DisassociateVpcCidrBlockInput, opts ...request.Option) (*DisassociateVpcCidrBlockOutput, error)

DisassociateVpcCidrBlockWithContext is the same as DisassociateVpcCidrBlock with the addition of the ability to pass a context and additional request options.

See DisassociateVpcCidrBlock for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) EnableVgwRoutePropagation

func (c *EC2) EnableVgwRoutePropagation(input *EnableVgwRoutePropagationInput) (*EnableVgwRoutePropagationOutput, error)

EnableVgwRoutePropagation API operation for Amazon Elastic Compute Cloud.

Enables a virtual private gateway (VGW) to propagate routes to the specified route table of a VPC.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation EnableVgwRoutePropagation for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EnableVgwRoutePropagation

Example (Shared00)

To enable route propagation This example enables the specified virtual private gateway to propagate static routes to the specified route table.

Code:

svc := ec2.New(session.New())
input := &ec2.EnableVgwRoutePropagationInput{
    GatewayId:    aws.String("vgw-9a4cacf3"),
    RouteTableId: aws.String("rtb-22574640"),
}

result, err := svc.EnableVgwRoutePropagation(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) EnableVgwRoutePropagationRequest

func (c *EC2) EnableVgwRoutePropagationRequest(input *EnableVgwRoutePropagationInput) (req *request.Request, output *EnableVgwRoutePropagationOutput)

EnableVgwRoutePropagationRequest generates a "aws/request.Request" representing the client's request for the EnableVgwRoutePropagation operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See EnableVgwRoutePropagation for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the EnableVgwRoutePropagation method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the EnableVgwRoutePropagationRequest method.
req, resp := client.EnableVgwRoutePropagationRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EnableVgwRoutePropagation

func (*EC2) EnableVgwRoutePropagationWithContext

func (c *EC2) EnableVgwRoutePropagationWithContext(ctx aws.Context, input *EnableVgwRoutePropagationInput, opts ...request.Option) (*EnableVgwRoutePropagationOutput, error)

EnableVgwRoutePropagationWithContext is the same as EnableVgwRoutePropagation with the addition of the ability to pass a context and additional request options.

See EnableVgwRoutePropagation for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) EnableVolumeIO

func (c *EC2) EnableVolumeIO(input *EnableVolumeIOInput) (*EnableVolumeIOOutput, error)

EnableVolumeIO API operation for Amazon Elastic Compute Cloud.

Enables I/O operations for a volume that had I/O operations disabled because the data on the volume was potentially inconsistent.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation EnableVolumeIO for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EnableVolumeIO

Example (Shared00)

To enable I/O for a volume This example enables I/O on volume ``vol-1234567890abcdef0``.

Code:

svc := ec2.New(session.New())
input := &ec2.EnableVolumeIOInput{
    VolumeId: aws.String("vol-1234567890abcdef0"),
}

result, err := svc.EnableVolumeIO(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) EnableVolumeIORequest

func (c *EC2) EnableVolumeIORequest(input *EnableVolumeIOInput) (req *request.Request, output *EnableVolumeIOOutput)

EnableVolumeIORequest generates a "aws/request.Request" representing the client's request for the EnableVolumeIO operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See EnableVolumeIO for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the EnableVolumeIO method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the EnableVolumeIORequest method.
req, resp := client.EnableVolumeIORequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EnableVolumeIO

func (*EC2) EnableVolumeIOWithContext

func (c *EC2) EnableVolumeIOWithContext(ctx aws.Context, input *EnableVolumeIOInput, opts ...request.Option) (*EnableVolumeIOOutput, error)

EnableVolumeIOWithContext is the same as EnableVolumeIO with the addition of the ability to pass a context and additional request options.

See EnableVolumeIO for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (c *EC2) EnableVpcClassicLink(input *EnableVpcClassicLinkInput) (*EnableVpcClassicLinkOutput, error)

EnableVpcClassicLink API operation for Amazon Elastic Compute Cloud.

Enables a VPC for ClassicLink. You can then link EC2-Classic instances to your ClassicLink-enabled VPC to allow communication over private IP addresses. You cannot enable your VPC for ClassicLink if any of your VPC's route tables have existing routes for address ranges within the 10.0.0.0/8 IP address range, excluding local routes for VPCs in the 10.0.0.0/16 and 10.1.0.0/16 IP address ranges. For more information, see ClassicLink (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-classiclink.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation EnableVpcClassicLink for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EnableVpcClassicLink

func (*EC2) EnableVpcClassicLinkDnsSupport

func (c *EC2) EnableVpcClassicLinkDnsSupport(input *EnableVpcClassicLinkDnsSupportInput) (*EnableVpcClassicLinkDnsSupportOutput, error)

EnableVpcClassicLinkDnsSupport API operation for Amazon Elastic Compute Cloud.

Enables a VPC to support DNS hostname resolution for ClassicLink. If enabled, the DNS hostname of a linked EC2-Classic instance resolves to its private IP address when addressed from an instance in the VPC to which it's linked. Similarly, the DNS hostname of an instance in a VPC resolves to its private IP address when addressed from a linked EC2-Classic instance. For more information about ClassicLink, see ClassicLink (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-classiclink.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation EnableVpcClassicLinkDnsSupport for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EnableVpcClassicLinkDnsSupport

func (*EC2) EnableVpcClassicLinkDnsSupportRequest

func (c *EC2) EnableVpcClassicLinkDnsSupportRequest(input *EnableVpcClassicLinkDnsSupportInput) (req *request.Request, output *EnableVpcClassicLinkDnsSupportOutput)

EnableVpcClassicLinkDnsSupportRequest generates a "aws/request.Request" representing the client's request for the EnableVpcClassicLinkDnsSupport operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See EnableVpcClassicLinkDnsSupport for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the EnableVpcClassicLinkDnsSupport method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the EnableVpcClassicLinkDnsSupportRequest method.
req, resp := client.EnableVpcClassicLinkDnsSupportRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EnableVpcClassicLinkDnsSupport

func (*EC2) EnableVpcClassicLinkDnsSupportWithContext

func (c *EC2) EnableVpcClassicLinkDnsSupportWithContext(ctx aws.Context, input *EnableVpcClassicLinkDnsSupportInput, opts ...request.Option) (*EnableVpcClassicLinkDnsSupportOutput, error)

EnableVpcClassicLinkDnsSupportWithContext is the same as EnableVpcClassicLinkDnsSupport with the addition of the ability to pass a context and additional request options.

See EnableVpcClassicLinkDnsSupport for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) EnableVpcClassicLinkRequest

func (c *EC2) EnableVpcClassicLinkRequest(input *EnableVpcClassicLinkInput) (req *request.Request, output *EnableVpcClassicLinkOutput)

EnableVpcClassicLinkRequest generates a "aws/request.Request" representing the client's request for the EnableVpcClassicLink operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See EnableVpcClassicLink for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the EnableVpcClassicLink method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the EnableVpcClassicLinkRequest method.
req, resp := client.EnableVpcClassicLinkRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EnableVpcClassicLink

func (*EC2) EnableVpcClassicLinkWithContext

func (c *EC2) EnableVpcClassicLinkWithContext(ctx aws.Context, input *EnableVpcClassicLinkInput, opts ...request.Option) (*EnableVpcClassicLinkOutput, error)

EnableVpcClassicLinkWithContext is the same as EnableVpcClassicLink with the addition of the ability to pass a context and additional request options.

See EnableVpcClassicLink for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) GetConsoleOutput

func (c *EC2) GetConsoleOutput(input *GetConsoleOutputInput) (*GetConsoleOutputOutput, error)

GetConsoleOutput API operation for Amazon Elastic Compute Cloud.

Gets the console output for the specified instance.

Instances do not have a physical monitor through which you can view their console output. They also lack physical controls that allow you to power up, reboot, or shut them down. To allow these actions, we provide them through the Amazon EC2 API and command line interface.

Instance console output is buffered and posted shortly after instance boot, reboot, and termination. Amazon EC2 preserves the most recent 64 KB output which is available for at least one hour after the most recent post.

For Linux instances, the instance console output displays the exact console output that would normally be displayed on a physical monitor attached to a computer. This output is buffered because the instance produces it and then posts it to a store where the instance's owner can retrieve it.

For Windows instances, the instance console output includes output from the EC2Config service.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation GetConsoleOutput for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetConsoleOutput

func (*EC2) GetConsoleOutputRequest

func (c *EC2) GetConsoleOutputRequest(input *GetConsoleOutputInput) (req *request.Request, output *GetConsoleOutputOutput)

GetConsoleOutputRequest generates a "aws/request.Request" representing the client's request for the GetConsoleOutput operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See GetConsoleOutput for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the GetConsoleOutput method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the GetConsoleOutputRequest method.
req, resp := client.GetConsoleOutputRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetConsoleOutput

func (*EC2) GetConsoleOutputWithContext

func (c *EC2) GetConsoleOutputWithContext(ctx aws.Context, input *GetConsoleOutputInput, opts ...request.Option) (*GetConsoleOutputOutput, error)

GetConsoleOutputWithContext is the same as GetConsoleOutput with the addition of the ability to pass a context and additional request options.

See GetConsoleOutput for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) GetConsoleScreenshot

func (c *EC2) GetConsoleScreenshot(input *GetConsoleScreenshotInput) (*GetConsoleScreenshotOutput, error)

GetConsoleScreenshot API operation for Amazon Elastic Compute Cloud.

Retrieve a JPG-format screenshot of a running instance to help with troubleshooting.

The returned content is Base64-encoded.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation GetConsoleScreenshot for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetConsoleScreenshot

func (*EC2) GetConsoleScreenshotRequest

func (c *EC2) GetConsoleScreenshotRequest(input *GetConsoleScreenshotInput) (req *request.Request, output *GetConsoleScreenshotOutput)

GetConsoleScreenshotRequest generates a "aws/request.Request" representing the client's request for the GetConsoleScreenshot operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See GetConsoleScreenshot for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the GetConsoleScreenshot method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the GetConsoleScreenshotRequest method.
req, resp := client.GetConsoleScreenshotRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetConsoleScreenshot

func (*EC2) GetConsoleScreenshotWithContext

func (c *EC2) GetConsoleScreenshotWithContext(ctx aws.Context, input *GetConsoleScreenshotInput, opts ...request.Option) (*GetConsoleScreenshotOutput, error)

GetConsoleScreenshotWithContext is the same as GetConsoleScreenshot with the addition of the ability to pass a context and additional request options.

See GetConsoleScreenshot for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) GetHostReservationPurchasePreview

func (c *EC2) GetHostReservationPurchasePreview(input *GetHostReservationPurchasePreviewInput) (*GetHostReservationPurchasePreviewOutput, error)

GetHostReservationPurchasePreview API operation for Amazon Elastic Compute Cloud.

Preview a reservation purchase with configurations that match those of your Dedicated Host. You must have active Dedicated Hosts in your account before you purchase a reservation.

This is a preview of the PurchaseHostReservation action and does not result in the offering being purchased.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation GetHostReservationPurchasePreview for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetHostReservationPurchasePreview

func (*EC2) GetHostReservationPurchasePreviewRequest

func (c *EC2) GetHostReservationPurchasePreviewRequest(input *GetHostReservationPurchasePreviewInput) (req *request.Request, output *GetHostReservationPurchasePreviewOutput)

GetHostReservationPurchasePreviewRequest generates a "aws/request.Request" representing the client's request for the GetHostReservationPurchasePreview operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See GetHostReservationPurchasePreview for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the GetHostReservationPurchasePreview method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the GetHostReservationPurchasePreviewRequest method.
req, resp := client.GetHostReservationPurchasePreviewRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetHostReservationPurchasePreview

func (*EC2) GetHostReservationPurchasePreviewWithContext

func (c *EC2) GetHostReservationPurchasePreviewWithContext(ctx aws.Context, input *GetHostReservationPurchasePreviewInput, opts ...request.Option) (*GetHostReservationPurchasePreviewOutput, error)

GetHostReservationPurchasePreviewWithContext is the same as GetHostReservationPurchasePreview with the addition of the ability to pass a context and additional request options.

See GetHostReservationPurchasePreview for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) GetPasswordData

func (c *EC2) GetPasswordData(input *GetPasswordDataInput) (*GetPasswordDataOutput, error)

GetPasswordData API operation for Amazon Elastic Compute Cloud.

Retrieves the encrypted administrator password for an instance running Windows.

The Windows password is generated at boot if the EC2Config service plugin, Ec2SetPassword, is enabled. This usually only happens the first time an AMI is launched, and then Ec2SetPassword is automatically disabled. The password is not generated for rebundled AMIs unless Ec2SetPassword is enabled before bundling.

The password is encrypted using the key pair that you specified when you launched the instance. You must provide the corresponding key pair file.

Password generation and encryption takes a few moments. We recommend that you wait up to 15 minutes after launching an instance before trying to retrieve the generated password.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation GetPasswordData for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetPasswordData

func (*EC2) GetPasswordDataRequest

func (c *EC2) GetPasswordDataRequest(input *GetPasswordDataInput) (req *request.Request, output *GetPasswordDataOutput)

GetPasswordDataRequest generates a "aws/request.Request" representing the client's request for the GetPasswordData operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See GetPasswordData for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the GetPasswordData method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the GetPasswordDataRequest method.
req, resp := client.GetPasswordDataRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetPasswordData

func (*EC2) GetPasswordDataWithContext

func (c *EC2) GetPasswordDataWithContext(ctx aws.Context, input *GetPasswordDataInput, opts ...request.Option) (*GetPasswordDataOutput, error)

GetPasswordDataWithContext is the same as GetPasswordData with the addition of the ability to pass a context and additional request options.

See GetPasswordData for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) GetReservedInstancesExchangeQuote

func (c *EC2) GetReservedInstancesExchangeQuote(input *GetReservedInstancesExchangeQuoteInput) (*GetReservedInstancesExchangeQuoteOutput, error)

GetReservedInstancesExchangeQuote API operation for Amazon Elastic Compute Cloud.

Returns details about the values and term of your specified Convertible Reserved Instances. When a target configuration is specified, it returns information about whether the exchange is valid and can be performed.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation GetReservedInstancesExchangeQuote for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetReservedInstancesExchangeQuote

func (*EC2) GetReservedInstancesExchangeQuoteRequest

func (c *EC2) GetReservedInstancesExchangeQuoteRequest(input *GetReservedInstancesExchangeQuoteInput) (req *request.Request, output *GetReservedInstancesExchangeQuoteOutput)

GetReservedInstancesExchangeQuoteRequest generates a "aws/request.Request" representing the client's request for the GetReservedInstancesExchangeQuote operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See GetReservedInstancesExchangeQuote for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the GetReservedInstancesExchangeQuote method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the GetReservedInstancesExchangeQuoteRequest method.
req, resp := client.GetReservedInstancesExchangeQuoteRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetReservedInstancesExchangeQuote

func (*EC2) GetReservedInstancesExchangeQuoteWithContext

func (c *EC2) GetReservedInstancesExchangeQuoteWithContext(ctx aws.Context, input *GetReservedInstancesExchangeQuoteInput, opts ...request.Option) (*GetReservedInstancesExchangeQuoteOutput, error)

GetReservedInstancesExchangeQuoteWithContext is the same as GetReservedInstancesExchangeQuote with the addition of the ability to pass a context and additional request options.

See GetReservedInstancesExchangeQuote for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) ImportImage

func (c *EC2) ImportImage(input *ImportImageInput) (*ImportImageOutput, error)

ImportImage API operation for Amazon Elastic Compute Cloud.

Import single or multi-volume disk images or EBS snapshots into an Amazon Machine Image (AMI). For more information, see Importing a VM as an Image Using VM Import/Export (http://docs.aws.amazon.com/vm-import/latest/userguide/vmimport-image-import.html) in the VM Import/Export User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation ImportImage for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ImportImage

func (*EC2) ImportImageRequest

func (c *EC2) ImportImageRequest(input *ImportImageInput) (req *request.Request, output *ImportImageOutput)

ImportImageRequest generates a "aws/request.Request" representing the client's request for the ImportImage operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ImportImage for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ImportImage method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ImportImageRequest method.
req, resp := client.ImportImageRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ImportImage

func (*EC2) ImportImageWithContext

func (c *EC2) ImportImageWithContext(ctx aws.Context, input *ImportImageInput, opts ...request.Option) (*ImportImageOutput, error)

ImportImageWithContext is the same as ImportImage with the addition of the ability to pass a context and additional request options.

See ImportImage for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) ImportInstance

func (c *EC2) ImportInstance(input *ImportInstanceInput) (*ImportInstanceOutput, error)

ImportInstance API operation for Amazon Elastic Compute Cloud.

Creates an import instance task using metadata from the specified disk image. ImportInstance only supports single-volume VMs. To import multi-volume VMs, use ImportImage. For more information, see Importing a Virtual Machine Using the Amazon EC2 CLI (http://docs.aws.amazon.com/AWSEC2/latest/CommandLineReference/ec2-cli-vmimport-export.html).

For information about the import manifest referenced by this API action, see VM Import Manifest (http://docs.aws.amazon.com/AWSEC2/latest/APIReference/manifest.html).

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation ImportInstance for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ImportInstance

func (*EC2) ImportInstanceRequest

func (c *EC2) ImportInstanceRequest(input *ImportInstanceInput) (req *request.Request, output *ImportInstanceOutput)

ImportInstanceRequest generates a "aws/request.Request" representing the client's request for the ImportInstance operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ImportInstance for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ImportInstance method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ImportInstanceRequest method.
req, resp := client.ImportInstanceRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ImportInstance

func (*EC2) ImportInstanceWithContext

func (c *EC2) ImportInstanceWithContext(ctx aws.Context, input *ImportInstanceInput, opts ...request.Option) (*ImportInstanceOutput, error)

ImportInstanceWithContext is the same as ImportInstance with the addition of the ability to pass a context and additional request options.

See ImportInstance for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) ImportKeyPair

func (c *EC2) ImportKeyPair(input *ImportKeyPairInput) (*ImportKeyPairOutput, error)

ImportKeyPair API operation for Amazon Elastic Compute Cloud.

Imports the public key from an RSA key pair that you created with a third-party tool. Compare this with CreateKeyPair, in which AWS creates the key pair and gives the keys to you (AWS keeps a copy of the public key). With ImportKeyPair, you create the key pair and give AWS just the public key. The private key is never transferred between you and AWS.

For more information about key pairs, see Key Pairs (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-key-pairs.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation ImportKeyPair for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ImportKeyPair

func (*EC2) ImportKeyPairRequest

func (c *EC2) ImportKeyPairRequest(input *ImportKeyPairInput) (req *request.Request, output *ImportKeyPairOutput)

ImportKeyPairRequest generates a "aws/request.Request" representing the client's request for the ImportKeyPair operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ImportKeyPair for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ImportKeyPair method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ImportKeyPairRequest method.
req, resp := client.ImportKeyPairRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ImportKeyPair

func (*EC2) ImportKeyPairWithContext

func (c *EC2) ImportKeyPairWithContext(ctx aws.Context, input *ImportKeyPairInput, opts ...request.Option) (*ImportKeyPairOutput, error)

ImportKeyPairWithContext is the same as ImportKeyPair with the addition of the ability to pass a context and additional request options.

See ImportKeyPair for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) ImportSnapshot

func (c *EC2) ImportSnapshot(input *ImportSnapshotInput) (*ImportSnapshotOutput, error)

ImportSnapshot API operation for Amazon Elastic Compute Cloud.

Imports a disk into an EBS snapshot.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation ImportSnapshot for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ImportSnapshot

func (*EC2) ImportSnapshotRequest

func (c *EC2) ImportSnapshotRequest(input *ImportSnapshotInput) (req *request.Request, output *ImportSnapshotOutput)

ImportSnapshotRequest generates a "aws/request.Request" representing the client's request for the ImportSnapshot operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ImportSnapshot for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ImportSnapshot method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ImportSnapshotRequest method.
req, resp := client.ImportSnapshotRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ImportSnapshot

func (*EC2) ImportSnapshotWithContext

func (c *EC2) ImportSnapshotWithContext(ctx aws.Context, input *ImportSnapshotInput, opts ...request.Option) (*ImportSnapshotOutput, error)

ImportSnapshotWithContext is the same as ImportSnapshot with the addition of the ability to pass a context and additional request options.

See ImportSnapshot for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) ImportVolume

func (c *EC2) ImportVolume(input *ImportVolumeInput) (*ImportVolumeOutput, error)

ImportVolume API operation for Amazon Elastic Compute Cloud.

Creates an import volume task using metadata from the specified disk image.For more information, see Importing Disks to Amazon EBS (http://docs.aws.amazon.com/AWSEC2/latest/CommandLineReference/importing-your-volumes-into-amazon-ebs.html).

For information about the import manifest referenced by this API action, see VM Import Manifest (http://docs.aws.amazon.com/AWSEC2/latest/APIReference/manifest.html).

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation ImportVolume for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ImportVolume

func (*EC2) ImportVolumeRequest

func (c *EC2) ImportVolumeRequest(input *ImportVolumeInput) (req *request.Request, output *ImportVolumeOutput)

ImportVolumeRequest generates a "aws/request.Request" representing the client's request for the ImportVolume operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ImportVolume for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ImportVolume method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ImportVolumeRequest method.
req, resp := client.ImportVolumeRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ImportVolume

func (*EC2) ImportVolumeWithContext

func (c *EC2) ImportVolumeWithContext(ctx aws.Context, input *ImportVolumeInput, opts ...request.Option) (*ImportVolumeOutput, error)

ImportVolumeWithContext is the same as ImportVolume with the addition of the ability to pass a context and additional request options.

See ImportVolume for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) ModifyHosts

func (c *EC2) ModifyHosts(input *ModifyHostsInput) (*ModifyHostsOutput, error)

ModifyHosts API operation for Amazon Elastic Compute Cloud.

Modify the auto-placement setting of a Dedicated Host. When auto-placement is enabled, AWS will place instances that you launch with a tenancy of host, but without targeting a specific host ID, onto any available Dedicated Host in your account which has auto-placement enabled. When auto-placement is disabled, you need to provide a host ID if you want the instance to launch onto a specific host. If no host ID is provided, the instance will be launched onto a suitable host which has auto-placement enabled.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation ModifyHosts for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyHosts

func (*EC2) ModifyHostsRequest

func (c *EC2) ModifyHostsRequest(input *ModifyHostsInput) (req *request.Request, output *ModifyHostsOutput)

ModifyHostsRequest generates a "aws/request.Request" representing the client's request for the ModifyHosts operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ModifyHosts for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ModifyHosts method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ModifyHostsRequest method.
req, resp := client.ModifyHostsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyHosts

func (*EC2) ModifyHostsWithContext

func (c *EC2) ModifyHostsWithContext(ctx aws.Context, input *ModifyHostsInput, opts ...request.Option) (*ModifyHostsOutput, error)

ModifyHostsWithContext is the same as ModifyHosts with the addition of the ability to pass a context and additional request options.

See ModifyHosts for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) ModifyIdFormat

func (c *EC2) ModifyIdFormat(input *ModifyIdFormatInput) (*ModifyIdFormatOutput, error)

ModifyIdFormat API operation for Amazon Elastic Compute Cloud.

Modifies the ID format for the specified resource on a per-region basis. You can specify that resources should receive longer IDs (17-character IDs) when they are created. The following resource types support longer IDs: instance | reservation | snapshot | volume.

This setting applies to the IAM user who makes the request; it does not apply to the entire AWS account. By default, an IAM user defaults to the same settings as the root user. If you're using this action as the root user, then these settings apply to the entire account, unless an IAM user explicitly overrides these settings for themselves. For more information, see Resource IDs (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/resource-ids.html) in the Amazon Elastic Compute Cloud User Guide.

Resources created with longer IDs are visible to all IAM roles and users, regardless of these settings and provided that they have permission to use the relevant Describe command for the resource type.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation ModifyIdFormat for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyIdFormat

func (*EC2) ModifyIdFormatRequest

func (c *EC2) ModifyIdFormatRequest(input *ModifyIdFormatInput) (req *request.Request, output *ModifyIdFormatOutput)

ModifyIdFormatRequest generates a "aws/request.Request" representing the client's request for the ModifyIdFormat operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ModifyIdFormat for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ModifyIdFormat method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ModifyIdFormatRequest method.
req, resp := client.ModifyIdFormatRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyIdFormat

func (*EC2) ModifyIdFormatWithContext

func (c *EC2) ModifyIdFormatWithContext(ctx aws.Context, input *ModifyIdFormatInput, opts ...request.Option) (*ModifyIdFormatOutput, error)

ModifyIdFormatWithContext is the same as ModifyIdFormat with the addition of the ability to pass a context and additional request options.

See ModifyIdFormat for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) ModifyIdentityIdFormat

func (c *EC2) ModifyIdentityIdFormat(input *ModifyIdentityIdFormatInput) (*ModifyIdentityIdFormatOutput, error)

ModifyIdentityIdFormat API operation for Amazon Elastic Compute Cloud.

Modifies the ID format of a resource for a specified IAM user, IAM role, or the root user for an account; or all IAM users, IAM roles, and the root user for an account. You can specify that resources should receive longer IDs (17-character IDs) when they are created.

The following resource types support longer IDs: instance | reservation | snapshot | volume. For more information, see Resource IDs (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/resource-ids.html) in the Amazon Elastic Compute Cloud User Guide.

This setting applies to the principal specified in the request; it does not apply to the principal that makes the request.

Resources created with longer IDs are visible to all IAM roles and users, regardless of these settings and provided that they have permission to use the relevant Describe command for the resource type.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation ModifyIdentityIdFormat for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyIdentityIdFormat

func (*EC2) ModifyIdentityIdFormatRequest

func (c *EC2) ModifyIdentityIdFormatRequest(input *ModifyIdentityIdFormatInput) (req *request.Request, output *ModifyIdentityIdFormatOutput)

ModifyIdentityIdFormatRequest generates a "aws/request.Request" representing the client's request for the ModifyIdentityIdFormat operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ModifyIdentityIdFormat for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ModifyIdentityIdFormat method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ModifyIdentityIdFormatRequest method.
req, resp := client.ModifyIdentityIdFormatRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyIdentityIdFormat

func (*EC2) ModifyIdentityIdFormatWithContext

func (c *EC2) ModifyIdentityIdFormatWithContext(ctx aws.Context, input *ModifyIdentityIdFormatInput, opts ...request.Option) (*ModifyIdentityIdFormatOutput, error)

ModifyIdentityIdFormatWithContext is the same as ModifyIdentityIdFormat with the addition of the ability to pass a context and additional request options.

See ModifyIdentityIdFormat for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) ModifyImageAttribute

func (c *EC2) ModifyImageAttribute(input *ModifyImageAttributeInput) (*ModifyImageAttributeOutput, error)

ModifyImageAttribute API operation for Amazon Elastic Compute Cloud.

Modifies the specified attribute of the specified AMI. You can specify only one attribute at a time.

AWS Marketplace product codes cannot be modified. Images with an AWS Marketplace product code cannot be made public.

The SriovNetSupport enhanced networking attribute cannot be changed using this command. Instead, enable SriovNetSupport on an instance and create an AMI from the instance. This will result in an image with SriovNetSupport enabled.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation ModifyImageAttribute for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyImageAttribute

func (*EC2) ModifyImageAttributeRequest

func (c *EC2) ModifyImageAttributeRequest(input *ModifyImageAttributeInput) (req *request.Request, output *ModifyImageAttributeOutput)

ModifyImageAttributeRequest generates a "aws/request.Request" representing the client's request for the ModifyImageAttribute operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ModifyImageAttribute for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ModifyImageAttribute method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ModifyImageAttributeRequest method.
req, resp := client.ModifyImageAttributeRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyImageAttribute

func (*EC2) ModifyImageAttributeWithContext

func (c *EC2) ModifyImageAttributeWithContext(ctx aws.Context, input *ModifyImageAttributeInput, opts ...request.Option) (*ModifyImageAttributeOutput, error)

ModifyImageAttributeWithContext is the same as ModifyImageAttribute with the addition of the ability to pass a context and additional request options.

See ModifyImageAttribute for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) ModifyInstanceAttribute

func (c *EC2) ModifyInstanceAttribute(input *ModifyInstanceAttributeInput) (*ModifyInstanceAttributeOutput, error)

ModifyInstanceAttribute API operation for Amazon Elastic Compute Cloud.

Modifies the specified attribute of the specified instance. You can specify only one attribute at a time.

To modify some attributes, the instance must be stopped. For more information, see Modifying Attributes of a Stopped Instance (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_ChangingAttributesWhileInstanceStopped.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation ModifyInstanceAttribute for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyInstanceAttribute

func (*EC2) ModifyInstanceAttributeRequest

func (c *EC2) ModifyInstanceAttributeRequest(input *ModifyInstanceAttributeInput) (req *request.Request, output *ModifyInstanceAttributeOutput)

ModifyInstanceAttributeRequest generates a "aws/request.Request" representing the client's request for the ModifyInstanceAttribute operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ModifyInstanceAttribute for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ModifyInstanceAttribute method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ModifyInstanceAttributeRequest method.
req, resp := client.ModifyInstanceAttributeRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyInstanceAttribute

func (*EC2) ModifyInstanceAttributeWithContext

func (c *EC2) ModifyInstanceAttributeWithContext(ctx aws.Context, input *ModifyInstanceAttributeInput, opts ...request.Option) (*ModifyInstanceAttributeOutput, error)

ModifyInstanceAttributeWithContext is the same as ModifyInstanceAttribute with the addition of the ability to pass a context and additional request options.

See ModifyInstanceAttribute for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) ModifyInstancePlacement

func (c *EC2) ModifyInstancePlacement(input *ModifyInstancePlacementInput) (*ModifyInstancePlacementOutput, error)

ModifyInstancePlacement API operation for Amazon Elastic Compute Cloud.

Set the instance affinity value for a specific stopped instance and modify the instance tenancy setting.

Instance affinity is disabled by default. When instance affinity is host and it is not associated with a specific Dedicated Host, the next time it is launched it will automatically be associated with the host it lands on. This relationship will persist if the instance is stopped/started, or rebooted.

You can modify the host ID associated with a stopped instance. If a stopped instance has a new host ID association, the instance will target that host when restarted.

You can modify the tenancy of a stopped instance with a tenancy of host or dedicated.

Affinity, hostID, and tenancy are not required parameters, but at least one of them must be specified in the request. Affinity and tenancy can be modified in the same request, but tenancy can only be modified on instances that are stopped.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation ModifyInstancePlacement for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyInstancePlacement

func (*EC2) ModifyInstancePlacementRequest

func (c *EC2) ModifyInstancePlacementRequest(input *ModifyInstancePlacementInput) (req *request.Request, output *ModifyInstancePlacementOutput)

ModifyInstancePlacementRequest generates a "aws/request.Request" representing the client's request for the ModifyInstancePlacement operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ModifyInstancePlacement for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ModifyInstancePlacement method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ModifyInstancePlacementRequest method.
req, resp := client.ModifyInstancePlacementRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyInstancePlacement

func (*EC2) ModifyInstancePlacementWithContext

func (c *EC2) ModifyInstancePlacementWithContext(ctx aws.Context, input *ModifyInstancePlacementInput, opts ...request.Option) (*ModifyInstancePlacementOutput, error)

ModifyInstancePlacementWithContext is the same as ModifyInstancePlacement with the addition of the ability to pass a context and additional request options.

See ModifyInstancePlacement for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) ModifyNetworkInterfaceAttribute

func (c *EC2) ModifyNetworkInterfaceAttribute(input *ModifyNetworkInterfaceAttributeInput) (*ModifyNetworkInterfaceAttributeOutput, error)

ModifyNetworkInterfaceAttribute API operation for Amazon Elastic Compute Cloud.

Modifies the specified network interface attribute. You can specify only one attribute at a time.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation ModifyNetworkInterfaceAttribute for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyNetworkInterfaceAttribute

Example (Shared00)

To modify the attachment attribute of a network interface This example modifies the attachment attribute of the specified network interface.

Code:

svc := ec2.New(session.New())
input := &ec2.ModifyNetworkInterfaceAttributeInput{
    Attachment: &ec2.NetworkInterfaceAttachmentChanges{
        AttachmentId:        aws.String("eni-attach-43348162"),
        DeleteOnTermination: aws.Bool(false),
    },
    NetworkInterfaceId: aws.String("eni-686ea200"),
}

result, err := svc.ModifyNetworkInterfaceAttribute(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

Example (Shared01)

To modify the description attribute of a network interface This example modifies the description attribute of the specified network interface.

Code:

svc := ec2.New(session.New())
input := &ec2.ModifyNetworkInterfaceAttributeInput{
    Description: &ec2.AttributeValue{
        Value: aws.String("My description"),
    },
    NetworkInterfaceId: aws.String("eni-686ea200"),
}

result, err := svc.ModifyNetworkInterfaceAttribute(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

Example (Shared02)

To modify the groupSet attribute of a network interface This example command modifies the groupSet attribute of the specified network interface.

Code:

svc := ec2.New(session.New())
input := &ec2.ModifyNetworkInterfaceAttributeInput{
    Groups: []*string{
        aws.String("sg-903004f8"),
        aws.String("sg-1a2b3c4d"),
    },
    NetworkInterfaceId: aws.String("eni-686ea200"),
}

result, err := svc.ModifyNetworkInterfaceAttribute(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

Example (Shared03)

To modify the sourceDestCheck attribute of a network interface This example command modifies the sourceDestCheck attribute of the specified network interface.

Code:

svc := ec2.New(session.New())
input := &ec2.ModifyNetworkInterfaceAttributeInput{
    NetworkInterfaceId: aws.String("eni-686ea200"),
    SourceDestCheck: &ec2.AttributeBooleanValue{
        Value: aws.Bool(false),
    },
}

result, err := svc.ModifyNetworkInterfaceAttribute(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) ModifyNetworkInterfaceAttributeRequest

func (c *EC2) ModifyNetworkInterfaceAttributeRequest(input *ModifyNetworkInterfaceAttributeInput) (req *request.Request, output *ModifyNetworkInterfaceAttributeOutput)

ModifyNetworkInterfaceAttributeRequest generates a "aws/request.Request" representing the client's request for the ModifyNetworkInterfaceAttribute operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ModifyNetworkInterfaceAttribute for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ModifyNetworkInterfaceAttribute method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ModifyNetworkInterfaceAttributeRequest method.
req, resp := client.ModifyNetworkInterfaceAttributeRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyNetworkInterfaceAttribute

func (*EC2) ModifyNetworkInterfaceAttributeWithContext

func (c *EC2) ModifyNetworkInterfaceAttributeWithContext(ctx aws.Context, input *ModifyNetworkInterfaceAttributeInput, opts ...request.Option) (*ModifyNetworkInterfaceAttributeOutput, error)

ModifyNetworkInterfaceAttributeWithContext is the same as ModifyNetworkInterfaceAttribute with the addition of the ability to pass a context and additional request options.

See ModifyNetworkInterfaceAttribute for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) ModifyReservedInstances

func (c *EC2) ModifyReservedInstances(input *ModifyReservedInstancesInput) (*ModifyReservedInstancesOutput, error)

ModifyReservedInstances API operation for Amazon Elastic Compute Cloud.

Modifies the Availability Zone, instance count, instance type, or network platform (EC2-Classic or EC2-VPC) of your Standard Reserved Instances. The Reserved Instances to be modified must be identical, except for Availability Zone, network platform, and instance type.

For more information, see Modifying Reserved Instances (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ri-modifying.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation ModifyReservedInstances for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyReservedInstances

func (*EC2) ModifyReservedInstancesRequest

func (c *EC2) ModifyReservedInstancesRequest(input *ModifyReservedInstancesInput) (req *request.Request, output *ModifyReservedInstancesOutput)

ModifyReservedInstancesRequest generates a "aws/request.Request" representing the client's request for the ModifyReservedInstances operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ModifyReservedInstances for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ModifyReservedInstances method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ModifyReservedInstancesRequest method.
req, resp := client.ModifyReservedInstancesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyReservedInstances

func (*EC2) ModifyReservedInstancesWithContext

func (c *EC2) ModifyReservedInstancesWithContext(ctx aws.Context, input *ModifyReservedInstancesInput, opts ...request.Option) (*ModifyReservedInstancesOutput, error)

ModifyReservedInstancesWithContext is the same as ModifyReservedInstances with the addition of the ability to pass a context and additional request options.

See ModifyReservedInstances for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) ModifySnapshotAttribute

func (c *EC2) ModifySnapshotAttribute(input *ModifySnapshotAttributeInput) (*ModifySnapshotAttributeOutput, error)

ModifySnapshotAttribute API operation for Amazon Elastic Compute Cloud.

Adds or removes permission settings for the specified snapshot. You may add or remove specified AWS account IDs from a snapshot's list of create volume permissions, but you cannot do both in a single API call. If you need to both add and remove account IDs for a snapshot, you must use multiple API calls.

Encrypted snapshots and snapshots with AWS Marketplace product codes cannot be made public. Snapshots encrypted with your default CMK cannot be shared with other accounts.

For more information on modifying snapshot permissions, see Sharing Snapshots (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-modifying-snapshot-permissions.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation ModifySnapshotAttribute for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifySnapshotAttribute

Example (Shared00)

To modify a snapshot attribute This example modifies snapshot ``snap-1234567890abcdef0`` to remove the create volume permission for a user with the account ID ``123456789012``. If the command succeeds, no output is returned.

Code:

svc := ec2.New(session.New())
input := &ec2.ModifySnapshotAttributeInput{
    Attribute:     aws.String("createVolumePermission"),
    OperationType: aws.String("remove"),
    SnapshotId:    aws.String("snap-1234567890abcdef0"),
    UserIds: []*string{
        aws.String("123456789012"),
    },
}

result, err := svc.ModifySnapshotAttribute(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

Example (Shared01)

To make a snapshot public This example makes the snapshot ``snap-1234567890abcdef0`` public.

Code:

svc := ec2.New(session.New())
input := &ec2.ModifySnapshotAttributeInput{
    Attribute: aws.String("createVolumePermission"),
    GroupNames: []*string{
        aws.String("all"),
    },
    OperationType: aws.String("add"),
    SnapshotId:    aws.String("snap-1234567890abcdef0"),
}

result, err := svc.ModifySnapshotAttribute(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) ModifySnapshotAttributeRequest

func (c *EC2) ModifySnapshotAttributeRequest(input *ModifySnapshotAttributeInput) (req *request.Request, output *ModifySnapshotAttributeOutput)

ModifySnapshotAttributeRequest generates a "aws/request.Request" representing the client's request for the ModifySnapshotAttribute operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ModifySnapshotAttribute for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ModifySnapshotAttribute method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ModifySnapshotAttributeRequest method.
req, resp := client.ModifySnapshotAttributeRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifySnapshotAttribute

func (*EC2) ModifySnapshotAttributeWithContext

func (c *EC2) ModifySnapshotAttributeWithContext(ctx aws.Context, input *ModifySnapshotAttributeInput, opts ...request.Option) (*ModifySnapshotAttributeOutput, error)

ModifySnapshotAttributeWithContext is the same as ModifySnapshotAttribute with the addition of the ability to pass a context and additional request options.

See ModifySnapshotAttribute for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) ModifySpotFleetRequest

func (c *EC2) ModifySpotFleetRequest(input *ModifySpotFleetRequestInput) (*ModifySpotFleetRequestOutput, error)

ModifySpotFleetRequest API operation for Amazon Elastic Compute Cloud.

Modifies the specified Spot fleet request.

While the Spot fleet request is being modified, it is in the modifying state.

To scale up your Spot fleet, increase its target capacity. The Spot fleet launches the additional Spot instances according to the allocation strategy for the Spot fleet request. If the allocation strategy is lowestPrice, the Spot fleet launches instances using the Spot pool with the lowest price. If the allocation strategy is diversified, the Spot fleet distributes the instances across the Spot pools.

To scale down your Spot fleet, decrease its target capacity. First, the Spot fleet cancels any open bids that exceed the new target capacity. You can request that the Spot fleet terminate Spot instances until the size of the fleet no longer exceeds the new target capacity. If the allocation strategy is lowestPrice, the Spot fleet terminates the instances with the highest price per unit. If the allocation strategy is diversified, the Spot fleet terminates instances across the Spot pools. Alternatively, you can request that the Spot fleet keep the fleet at its current size, but not replace any Spot instances that are interrupted or that you terminate manually.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation ModifySpotFleetRequest for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifySpotFleetRequest

Example (Shared00)

To increase the target capacity of a Spot fleet request This example increases the target capacity of the specified Spot fleet request.

Code:

svc := ec2.New(session.New())
input := &ec2.ModifySpotFleetRequestInput{
    SpotFleetRequestId: aws.String("sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE"),
    TargetCapacity:     aws.Int64(20),
}

result, err := svc.ModifySpotFleetRequest(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

Example (Shared01)

To decrease the target capacity of a Spot fleet request This example decreases the target capacity of the specified Spot fleet request without terminating any Spot Instances as a result.

Code:

svc := ec2.New(session.New())
input := &ec2.ModifySpotFleetRequestInput{
    ExcessCapacityTerminationPolicy: aws.String("NoTermination "),
    SpotFleetRequestId:              aws.String("sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE"),
    TargetCapacity:                  aws.Int64(10),
}

result, err := svc.ModifySpotFleetRequest(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) ModifySpotFleetRequestRequest

func (c *EC2) ModifySpotFleetRequestRequest(input *ModifySpotFleetRequestInput) (req *request.Request, output *ModifySpotFleetRequestOutput)

ModifySpotFleetRequestRequest generates a "aws/request.Request" representing the client's request for the ModifySpotFleetRequest operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ModifySpotFleetRequest for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ModifySpotFleetRequest method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ModifySpotFleetRequestRequest method.
req, resp := client.ModifySpotFleetRequestRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifySpotFleetRequest

func (*EC2) ModifySpotFleetRequestWithContext

func (c *EC2) ModifySpotFleetRequestWithContext(ctx aws.Context, input *ModifySpotFleetRequestInput, opts ...request.Option) (*ModifySpotFleetRequestOutput, error)

ModifySpotFleetRequestWithContext is the same as ModifySpotFleetRequest with the addition of the ability to pass a context and additional request options.

See ModifySpotFleetRequest for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) ModifySubnetAttribute

func (c *EC2) ModifySubnetAttribute(input *ModifySubnetAttributeInput) (*ModifySubnetAttributeOutput, error)

ModifySubnetAttribute API operation for Amazon Elastic Compute Cloud.

Modifies a subnet attribute. You can only modify one attribute at a time.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation ModifySubnetAttribute for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifySubnetAttribute

Example (Shared00)

To change a subnet's public IP addressing behavior This example modifies the specified subnet so that all instances launched into this subnet are assigned a public IP address.

Code:

svc := ec2.New(session.New())
input := &ec2.ModifySubnetAttributeInput{
    MapPublicIpOnLaunch: &ec2.AttributeBooleanValue{
        Value: aws.Bool(true),
    },
    SubnetId: aws.String("subnet-1a2b3c4d"),
}

result, err := svc.ModifySubnetAttribute(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) ModifySubnetAttributeRequest

func (c *EC2) ModifySubnetAttributeRequest(input *ModifySubnetAttributeInput) (req *request.Request, output *ModifySubnetAttributeOutput)

ModifySubnetAttributeRequest generates a "aws/request.Request" representing the client's request for the ModifySubnetAttribute operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ModifySubnetAttribute for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ModifySubnetAttribute method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ModifySubnetAttributeRequest method.
req, resp := client.ModifySubnetAttributeRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifySubnetAttribute

func (*EC2) ModifySubnetAttributeWithContext

func (c *EC2) ModifySubnetAttributeWithContext(ctx aws.Context, input *ModifySubnetAttributeInput, opts ...request.Option) (*ModifySubnetAttributeOutput, error)

ModifySubnetAttributeWithContext is the same as ModifySubnetAttribute with the addition of the ability to pass a context and additional request options.

See ModifySubnetAttribute for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) ModifyVolume

func (c *EC2) ModifyVolume(input *ModifyVolumeInput) (*ModifyVolumeOutput, error)

ModifyVolume API operation for Amazon Elastic Compute Cloud.

You can modify several parameters of an existing EBS volume, including volume size, volume type, and IOPS capacity. If your EBS volume is attached to a current-generation EC2 instance type, you may be able to apply these changes without stopping the instance or detaching the volume from it. For more information about modifying an EBS volume running Linux, see Modifying the Size, IOPS, or Type of an EBS Volume on Linux (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-expand-volume.html). For more information about modifying an EBS volume running Windows, see Modifying the Size, IOPS, or Type of an EBS Volume on Windows (http://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/ebs-expand-volume.html).

When you complete a resize operation on your volume, you need to extend the volume's file-system size to take advantage of the new storage capacity. For information about extending a Linux file system, see Extending a Linux File System (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-expand-volume.html#recognize-expanded-volume-linux). For information about extending a Windows file system, see Extending a Windows File System (http://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/ebs-expand-volume.html#recognize-expanded-volume-windows).

You can use CloudWatch Events to check the status of a modification to an EBS volume. For information about CloudWatch Events, see the Amazon CloudWatch Events User Guide (http://docs.aws.amazon.com/AmazonCloudWatch/latest/events/). You can also track the status of a modification using the DescribeVolumesModifications API. For information about tracking status changes using either method, see Monitoring Volume Modifications (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-expand-volume.html#monitoring_mods).

With previous-generation instance types, resizing an EBS volume may require detaching and reattaching the volume or stopping and restarting the instance. For more information about modifying an EBS volume running Linux, see Modifying the Size, IOPS, or Type of an EBS Volume on Linux (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-expand-volume.html). For more information about modifying an EBS volume running Windows, see Modifying the Size, IOPS, or Type of an EBS Volume on Windows (http://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/ebs-expand-volume.html).

If you reach the maximum volume modification rate per volume limit, you will need to wait at least six hours before applying further modifications to the affected EBS volume.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation ModifyVolume for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVolume

func (*EC2) ModifyVolumeAttribute

func (c *EC2) ModifyVolumeAttribute(input *ModifyVolumeAttributeInput) (*ModifyVolumeAttributeOutput, error)

ModifyVolumeAttribute API operation for Amazon Elastic Compute Cloud.

Modifies a volume attribute.

By default, all I/O operations for the volume are suspended when the data on the volume is determined to be potentially inconsistent, to prevent undetectable, latent data corruption. The I/O access to the volume can be resumed by first enabling I/O access and then checking the data consistency on your volume.

You can change the default behavior to resume I/O operations. We recommend that you change this only for boot volumes or for volumes that are stateless or disposable.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation ModifyVolumeAttribute for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVolumeAttribute

Example (Shared00)

To modify a volume attribute This example sets the ``autoEnableIo`` attribute of the volume with the ID ``vol-1234567890abcdef0`` to ``true``. If the command succeeds, no output is returned.

Code:

svc := ec2.New(session.New())
input := &ec2.ModifyVolumeAttributeInput{
    AutoEnableIO: &ec2.AttributeBooleanValue{
        Value: aws.Bool(true),
    },
    DryRun:   aws.Bool(true),
    VolumeId: aws.String("vol-1234567890abcdef0"),
}

result, err := svc.ModifyVolumeAttribute(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) ModifyVolumeAttributeRequest

func (c *EC2) ModifyVolumeAttributeRequest(input *ModifyVolumeAttributeInput) (req *request.Request, output *ModifyVolumeAttributeOutput)

ModifyVolumeAttributeRequest generates a "aws/request.Request" representing the client's request for the ModifyVolumeAttribute operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ModifyVolumeAttribute for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ModifyVolumeAttribute method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ModifyVolumeAttributeRequest method.
req, resp := client.ModifyVolumeAttributeRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVolumeAttribute

func (*EC2) ModifyVolumeAttributeWithContext

func (c *EC2) ModifyVolumeAttributeWithContext(ctx aws.Context, input *ModifyVolumeAttributeInput, opts ...request.Option) (*ModifyVolumeAttributeOutput, error)

ModifyVolumeAttributeWithContext is the same as ModifyVolumeAttribute with the addition of the ability to pass a context and additional request options.

See ModifyVolumeAttribute for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) ModifyVolumeRequest

func (c *EC2) ModifyVolumeRequest(input *ModifyVolumeInput) (req *request.Request, output *ModifyVolumeOutput)

ModifyVolumeRequest generates a "aws/request.Request" representing the client's request for the ModifyVolume operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ModifyVolume for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ModifyVolume method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ModifyVolumeRequest method.
req, resp := client.ModifyVolumeRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVolume

func (*EC2) ModifyVolumeWithContext

func (c *EC2) ModifyVolumeWithContext(ctx aws.Context, input *ModifyVolumeInput, opts ...request.Option) (*ModifyVolumeOutput, error)

ModifyVolumeWithContext is the same as ModifyVolume with the addition of the ability to pass a context and additional request options.

See ModifyVolume for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) ModifyVpcAttribute

func (c *EC2) ModifyVpcAttribute(input *ModifyVpcAttributeInput) (*ModifyVpcAttributeOutput, error)

ModifyVpcAttribute API operation for Amazon Elastic Compute Cloud.

Modifies the specified attribute of the specified VPC.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation ModifyVpcAttribute for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVpcAttribute

Example (Shared00)

To modify the enableDnsSupport attribute This example modifies the enableDnsSupport attribute. This attribute indicates whether DNS resolution is enabled for the VPC. If this attribute is true, the Amazon DNS server resolves DNS hostnames for instances in the VPC to their corresponding IP addresses; otherwise, it does not.

Code:

svc := ec2.New(session.New())
input := &ec2.ModifyVpcAttributeInput{
    EnableDnsSupport: &ec2.AttributeBooleanValue{
        Value: aws.Bool(false),
    },
    VpcId: aws.String("vpc-a01106c2"),
}

result, err := svc.ModifyVpcAttribute(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

Example (Shared01)

To modify the enableDnsHostnames attribute This example modifies the enableDnsHostnames attribute. This attribute indicates whether instances launched in the VPC get DNS hostnames. If this attribute is true, instances in the VPC get DNS hostnames; otherwise, they do not.

Code:

svc := ec2.New(session.New())
input := &ec2.ModifyVpcAttributeInput{
    EnableDnsHostnames: &ec2.AttributeBooleanValue{
        Value: aws.Bool(false),
    },
    VpcId: aws.String("vpc-a01106c2"),
}

result, err := svc.ModifyVpcAttribute(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) ModifyVpcAttributeRequest

func (c *EC2) ModifyVpcAttributeRequest(input *ModifyVpcAttributeInput) (req *request.Request, output *ModifyVpcAttributeOutput)

ModifyVpcAttributeRequest generates a "aws/request.Request" representing the client's request for the ModifyVpcAttribute operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ModifyVpcAttribute for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ModifyVpcAttribute method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ModifyVpcAttributeRequest method.
req, resp := client.ModifyVpcAttributeRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVpcAttribute

func (*EC2) ModifyVpcAttributeWithContext

func (c *EC2) ModifyVpcAttributeWithContext(ctx aws.Context, input *ModifyVpcAttributeInput, opts ...request.Option) (*ModifyVpcAttributeOutput, error)

ModifyVpcAttributeWithContext is the same as ModifyVpcAttribute with the addition of the ability to pass a context and additional request options.

See ModifyVpcAttribute for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) ModifyVpcEndpoint

func (c *EC2) ModifyVpcEndpoint(input *ModifyVpcEndpointInput) (*ModifyVpcEndpointOutput, error)

ModifyVpcEndpoint API operation for Amazon Elastic Compute Cloud.

Modifies attributes of a specified VPC endpoint. You can modify the policy associated with the endpoint, and you can add and remove route tables associated with the endpoint.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation ModifyVpcEndpoint for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVpcEndpoint

func (*EC2) ModifyVpcEndpointRequest

func (c *EC2) ModifyVpcEndpointRequest(input *ModifyVpcEndpointInput) (req *request.Request, output *ModifyVpcEndpointOutput)

ModifyVpcEndpointRequest generates a "aws/request.Request" representing the client's request for the ModifyVpcEndpoint operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ModifyVpcEndpoint for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ModifyVpcEndpoint method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ModifyVpcEndpointRequest method.
req, resp := client.ModifyVpcEndpointRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVpcEndpoint

func (*EC2) ModifyVpcEndpointWithContext

func (c *EC2) ModifyVpcEndpointWithContext(ctx aws.Context, input *ModifyVpcEndpointInput, opts ...request.Option) (*ModifyVpcEndpointOutput, error)

ModifyVpcEndpointWithContext is the same as ModifyVpcEndpoint with the addition of the ability to pass a context and additional request options.

See ModifyVpcEndpoint for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) ModifyVpcPeeringConnectionOptions

func (c *EC2) ModifyVpcPeeringConnectionOptions(input *ModifyVpcPeeringConnectionOptionsInput) (*ModifyVpcPeeringConnectionOptionsOutput, error)

ModifyVpcPeeringConnectionOptions API operation for Amazon Elastic Compute Cloud.

Modifies the VPC peering connection options on one side of a VPC peering connection. You can do the following:

* Enable/disable communication over the peering connection between an
EC2-Classic instance that's linked to your VPC (using ClassicLink) and
instances in the peer VPC.

* Enable/disable communication over the peering connection between instances
in your VPC and an EC2-Classic instance that's linked to the peer VPC.

* Enable/disable a local VPC to resolve public DNS hostnames to private
IP addresses when queried from instances in the peer VPC.

If the peered VPCs are in different accounts, each owner must initiate a separate request to modify the peering connection options, depending on whether their VPC was the requester or accepter for the VPC peering connection. If the peered VPCs are in the same account, you can modify the requester and accepter options in the same request. To confirm which VPC is the accepter and requester for a VPC peering connection, use the DescribeVpcPeeringConnections command.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation ModifyVpcPeeringConnectionOptions for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVpcPeeringConnectionOptions

func (*EC2) ModifyVpcPeeringConnectionOptionsRequest

func (c *EC2) ModifyVpcPeeringConnectionOptionsRequest(input *ModifyVpcPeeringConnectionOptionsInput) (req *request.Request, output *ModifyVpcPeeringConnectionOptionsOutput)

ModifyVpcPeeringConnectionOptionsRequest generates a "aws/request.Request" representing the client's request for the ModifyVpcPeeringConnectionOptions operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ModifyVpcPeeringConnectionOptions for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ModifyVpcPeeringConnectionOptions method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ModifyVpcPeeringConnectionOptionsRequest method.
req, resp := client.ModifyVpcPeeringConnectionOptionsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVpcPeeringConnectionOptions

func (*EC2) ModifyVpcPeeringConnectionOptionsWithContext

func (c *EC2) ModifyVpcPeeringConnectionOptionsWithContext(ctx aws.Context, input *ModifyVpcPeeringConnectionOptionsInput, opts ...request.Option) (*ModifyVpcPeeringConnectionOptionsOutput, error)

ModifyVpcPeeringConnectionOptionsWithContext is the same as ModifyVpcPeeringConnectionOptions with the addition of the ability to pass a context and additional request options.

See ModifyVpcPeeringConnectionOptions for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) MonitorInstances

func (c *EC2) MonitorInstances(input *MonitorInstancesInput) (*MonitorInstancesOutput, error)

MonitorInstances API operation for Amazon Elastic Compute Cloud.

Enables detailed monitoring for a running instance. Otherwise, basic monitoring is enabled. For more information, see Monitoring Your Instances and Volumes (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-cloudwatch.html) in the Amazon Elastic Compute Cloud User Guide.

To disable detailed monitoring, see .

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation MonitorInstances for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/MonitorInstances

func (*EC2) MonitorInstancesRequest

func (c *EC2) MonitorInstancesRequest(input *MonitorInstancesInput) (req *request.Request, output *MonitorInstancesOutput)

MonitorInstancesRequest generates a "aws/request.Request" representing the client's request for the MonitorInstances operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See MonitorInstances for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the MonitorInstances method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the MonitorInstancesRequest method.
req, resp := client.MonitorInstancesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/MonitorInstances

func (*EC2) MonitorInstancesWithContext

func (c *EC2) MonitorInstancesWithContext(ctx aws.Context, input *MonitorInstancesInput, opts ...request.Option) (*MonitorInstancesOutput, error)

MonitorInstancesWithContext is the same as MonitorInstances with the addition of the ability to pass a context and additional request options.

See MonitorInstances for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) MoveAddressToVpc

func (c *EC2) MoveAddressToVpc(input *MoveAddressToVpcInput) (*MoveAddressToVpcOutput, error)

MoveAddressToVpc API operation for Amazon Elastic Compute Cloud.

Moves an Elastic IP address from the EC2-Classic platform to the EC2-VPC platform. The Elastic IP address must be allocated to your account for more than 24 hours, and it must not be associated with an instance. After the Elastic IP address is moved, it is no longer available for use in the EC2-Classic platform, unless you move it back using the RestoreAddressToClassic request. You cannot move an Elastic IP address that was originally allocated for use in the EC2-VPC platform to the EC2-Classic platform.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation MoveAddressToVpc for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/MoveAddressToVpc

Example (Shared00)

To move an address to EC2-VPC This example moves the specified Elastic IP address to the EC2-VPC platform.

Code:

svc := ec2.New(session.New())
input := &ec2.MoveAddressToVpcInput{
    PublicIp: aws.String("54.123.4.56"),
}

result, err := svc.MoveAddressToVpc(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) MoveAddressToVpcRequest

func (c *EC2) MoveAddressToVpcRequest(input *MoveAddressToVpcInput) (req *request.Request, output *MoveAddressToVpcOutput)

MoveAddressToVpcRequest generates a "aws/request.Request" representing the client's request for the MoveAddressToVpc operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See MoveAddressToVpc for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the MoveAddressToVpc method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the MoveAddressToVpcRequest method.
req, resp := client.MoveAddressToVpcRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/MoveAddressToVpc

func (*EC2) MoveAddressToVpcWithContext

func (c *EC2) MoveAddressToVpcWithContext(ctx aws.Context, input *MoveAddressToVpcInput, opts ...request.Option) (*MoveAddressToVpcOutput, error)

MoveAddressToVpcWithContext is the same as MoveAddressToVpc with the addition of the ability to pass a context and additional request options.

See MoveAddressToVpc for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) PurchaseHostReservation

func (c *EC2) PurchaseHostReservation(input *PurchaseHostReservationInput) (*PurchaseHostReservationOutput, error)

PurchaseHostReservation API operation for Amazon Elastic Compute Cloud.

Purchase a reservation with configurations that match those of your Dedicated Host. You must have active Dedicated Hosts in your account before you purchase a reservation. This action results in the specified reservation being purchased and charged to your account.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation PurchaseHostReservation for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PurchaseHostReservation

func (*EC2) PurchaseHostReservationRequest

func (c *EC2) PurchaseHostReservationRequest(input *PurchaseHostReservationInput) (req *request.Request, output *PurchaseHostReservationOutput)

PurchaseHostReservationRequest generates a "aws/request.Request" representing the client's request for the PurchaseHostReservation operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See PurchaseHostReservation for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the PurchaseHostReservation method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the PurchaseHostReservationRequest method.
req, resp := client.PurchaseHostReservationRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PurchaseHostReservation

func (*EC2) PurchaseHostReservationWithContext

func (c *EC2) PurchaseHostReservationWithContext(ctx aws.Context, input *PurchaseHostReservationInput, opts ...request.Option) (*PurchaseHostReservationOutput, error)

PurchaseHostReservationWithContext is the same as PurchaseHostReservation with the addition of the ability to pass a context and additional request options.

See PurchaseHostReservation for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) PurchaseReservedInstancesOffering

func (c *EC2) PurchaseReservedInstancesOffering(input *PurchaseReservedInstancesOfferingInput) (*PurchaseReservedInstancesOfferingOutput, error)

PurchaseReservedInstancesOffering API operation for Amazon Elastic Compute Cloud.

Purchases a Reserved Instance for use with your account. With Reserved Instances, you pay a lower hourly rate compared to On-Demand instance pricing.

Use DescribeReservedInstancesOfferings to get a list of Reserved Instance offerings that match your specifications. After you've purchased a Reserved Instance, you can check for your new Reserved Instance with DescribeReservedInstances.

For more information, see Reserved Instances (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/concepts-on-demand-reserved-instances.html) and Reserved Instance Marketplace (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ri-market-general.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation PurchaseReservedInstancesOffering for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PurchaseReservedInstancesOffering

func (*EC2) PurchaseReservedInstancesOfferingRequest

func (c *EC2) PurchaseReservedInstancesOfferingRequest(input *PurchaseReservedInstancesOfferingInput) (req *request.Request, output *PurchaseReservedInstancesOfferingOutput)

PurchaseReservedInstancesOfferingRequest generates a "aws/request.Request" representing the client's request for the PurchaseReservedInstancesOffering operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See PurchaseReservedInstancesOffering for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the PurchaseReservedInstancesOffering method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the PurchaseReservedInstancesOfferingRequest method.
req, resp := client.PurchaseReservedInstancesOfferingRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PurchaseReservedInstancesOffering

func (*EC2) PurchaseReservedInstancesOfferingWithContext

func (c *EC2) PurchaseReservedInstancesOfferingWithContext(ctx aws.Context, input *PurchaseReservedInstancesOfferingInput, opts ...request.Option) (*PurchaseReservedInstancesOfferingOutput, error)

PurchaseReservedInstancesOfferingWithContext is the same as PurchaseReservedInstancesOffering with the addition of the ability to pass a context and additional request options.

See PurchaseReservedInstancesOffering for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) PurchaseScheduledInstances

func (c *EC2) PurchaseScheduledInstances(input *PurchaseScheduledInstancesInput) (*PurchaseScheduledInstancesOutput, error)

PurchaseScheduledInstances API operation for Amazon Elastic Compute Cloud.

Purchases one or more Scheduled Instances with the specified schedule.

Scheduled Instances enable you to purchase Amazon EC2 compute capacity by the hour for a one-year term. Before you can purchase a Scheduled Instance, you must call DescribeScheduledInstanceAvailability to check for available schedules and obtain a purchase token. After you purchase a Scheduled Instance, you must call RunScheduledInstances during each scheduled time period.

After you purchase a Scheduled Instance, you can't cancel, modify, or resell your purchase.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation PurchaseScheduledInstances for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PurchaseScheduledInstances

Example (Shared00)

To purchase a Scheduled Instance This example purchases a Scheduled Instance.

Code:

svc := ec2.New(session.New())
input := &ec2.PurchaseScheduledInstancesInput{
    PurchaseRequests: []*ec2.PurchaseRequest{
        {
            InstanceCount: aws.Int64(1),
            PurchaseToken: aws.String("eyJ2IjoiMSIsInMiOjEsImMiOi..."),
        },
    },
}

result, err := svc.PurchaseScheduledInstances(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) PurchaseScheduledInstancesRequest

func (c *EC2) PurchaseScheduledInstancesRequest(input *PurchaseScheduledInstancesInput) (req *request.Request, output *PurchaseScheduledInstancesOutput)

PurchaseScheduledInstancesRequest generates a "aws/request.Request" representing the client's request for the PurchaseScheduledInstances operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See PurchaseScheduledInstances for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the PurchaseScheduledInstances method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the PurchaseScheduledInstancesRequest method.
req, resp := client.PurchaseScheduledInstancesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PurchaseScheduledInstances

func (*EC2) PurchaseScheduledInstancesWithContext

func (c *EC2) PurchaseScheduledInstancesWithContext(ctx aws.Context, input *PurchaseScheduledInstancesInput, opts ...request.Option) (*PurchaseScheduledInstancesOutput, error)

PurchaseScheduledInstancesWithContext is the same as PurchaseScheduledInstances with the addition of the ability to pass a context and additional request options.

See PurchaseScheduledInstances for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) RebootInstances

func (c *EC2) RebootInstances(input *RebootInstancesInput) (*RebootInstancesOutput, error)

RebootInstances API operation for Amazon Elastic Compute Cloud.

Requests a reboot of one or more instances. This operation is asynchronous; it only queues a request to reboot the specified instances. The operation succeeds if the instances are valid and belong to you. Requests to reboot terminated instances are ignored.

If an instance does not cleanly shut down within four minutes, Amazon EC2 performs a hard reboot.

For more information about troubleshooting, see Getting Console Output and Rebooting Instances (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-console.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation RebootInstances for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RebootInstances

func (*EC2) RebootInstancesRequest

func (c *EC2) RebootInstancesRequest(input *RebootInstancesInput) (req *request.Request, output *RebootInstancesOutput)

RebootInstancesRequest generates a "aws/request.Request" representing the client's request for the RebootInstances operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See RebootInstances for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the RebootInstances method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the RebootInstancesRequest method.
req, resp := client.RebootInstancesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RebootInstances

func (*EC2) RebootInstancesWithContext

func (c *EC2) RebootInstancesWithContext(ctx aws.Context, input *RebootInstancesInput, opts ...request.Option) (*RebootInstancesOutput, error)

RebootInstancesWithContext is the same as RebootInstances with the addition of the ability to pass a context and additional request options.

See RebootInstances for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) RegisterImage

func (c *EC2) RegisterImage(input *RegisterImageInput) (*RegisterImageOutput, error)

RegisterImage API operation for Amazon Elastic Compute Cloud.

Registers an AMI. When you're creating an AMI, this is the final step you must complete before you can launch an instance from the AMI. For more information about creating AMIs, see Creating Your Own AMIs (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/creating-an-ami.html) in the Amazon Elastic Compute Cloud User Guide.

For Amazon EBS-backed instances, CreateImage creates and registers the AMI in a single request, so you don't have to register the AMI yourself.

You can also use RegisterImage to create an Amazon EBS-backed Linux AMI from a snapshot of a root device volume. You specify the snapshot using the block device mapping. For more information, see Launching a Linux Instance from a Backup (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-launch-snapshot.html) in the Amazon Elastic Compute Cloud User Guide.

You can't register an image where a secondary (non-root) snapshot has AWS Marketplace product codes.

Some Linux distributions, such as Red Hat Enterprise Linux (RHEL) and SUSE Linux Enterprise Server (SLES), use the EC2 billing product code associated with an AMI to verify the subscription status for package updates. Creating an AMI from an EBS snapshot does not maintain this billing code, and subsequent instances launched from such an AMI will not be able to connect to package update infrastructure. To create an AMI that must retain billing codes, see CreateImage.

If needed, you can deregister an AMI at any time. Any modifications you make to an AMI backed by an instance store volume invalidates its registration. If you make changes to an image, deregister the previous image and register the new image.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation RegisterImage for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RegisterImage

func (*EC2) RegisterImageRequest

func (c *EC2) RegisterImageRequest(input *RegisterImageInput) (req *request.Request, output *RegisterImageOutput)

RegisterImageRequest generates a "aws/request.Request" representing the client's request for the RegisterImage operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See RegisterImage for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the RegisterImage method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the RegisterImageRequest method.
req, resp := client.RegisterImageRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RegisterImage

func (*EC2) RegisterImageWithContext

func (c *EC2) RegisterImageWithContext(ctx aws.Context, input *RegisterImageInput, opts ...request.Option) (*RegisterImageOutput, error)

RegisterImageWithContext is the same as RegisterImage with the addition of the ability to pass a context and additional request options.

See RegisterImage for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) RejectVpcPeeringConnection

func (c *EC2) RejectVpcPeeringConnection(input *RejectVpcPeeringConnectionInput) (*RejectVpcPeeringConnectionOutput, error)

RejectVpcPeeringConnection API operation for Amazon Elastic Compute Cloud.

Rejects a VPC peering connection request. The VPC peering connection must be in the pending-acceptance state. Use the DescribeVpcPeeringConnections request to view your outstanding VPC peering connection requests. To delete an active VPC peering connection, or to delete a VPC peering connection request that you initiated, use DeleteVpcPeeringConnection.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation RejectVpcPeeringConnection for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RejectVpcPeeringConnection

func (*EC2) RejectVpcPeeringConnectionRequest

func (c *EC2) RejectVpcPeeringConnectionRequest(input *RejectVpcPeeringConnectionInput) (req *request.Request, output *RejectVpcPeeringConnectionOutput)

RejectVpcPeeringConnectionRequest generates a "aws/request.Request" representing the client's request for the RejectVpcPeeringConnection operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See RejectVpcPeeringConnection for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the RejectVpcPeeringConnection method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the RejectVpcPeeringConnectionRequest method.
req, resp := client.RejectVpcPeeringConnectionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RejectVpcPeeringConnection

func (*EC2) RejectVpcPeeringConnectionWithContext

func (c *EC2) RejectVpcPeeringConnectionWithContext(ctx aws.Context, input *RejectVpcPeeringConnectionInput, opts ...request.Option) (*RejectVpcPeeringConnectionOutput, error)

RejectVpcPeeringConnectionWithContext is the same as RejectVpcPeeringConnection with the addition of the ability to pass a context and additional request options.

See RejectVpcPeeringConnection for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) ReleaseAddress

func (c *EC2) ReleaseAddress(input *ReleaseAddressInput) (*ReleaseAddressOutput, error)

ReleaseAddress API operation for Amazon Elastic Compute Cloud.

Releases the specified Elastic IP address.

After releasing an Elastic IP address, it is released to the IP address pool and might be unavailable to you. Be sure to update your DNS records and any servers or devices that communicate with the address. If you attempt to release an Elastic IP address that you already released, you'll get an AuthFailure error if the address is already allocated to another AWS account.

[EC2-Classic, default VPC] Releasing an Elastic IP address automatically disassociates it from any instance that it's associated with. To disassociate an Elastic IP address without releasing it, use DisassociateAddress.

[Nondefault VPC] You must use DisassociateAddress to disassociate the Elastic IP address before you try to release it. Otherwise, Amazon EC2 returns an error (InvalidIPAddress.InUse).

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation ReleaseAddress for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReleaseAddress

Example (Shared00)

To release an Elastic IP address for EC2-VPC This example releases an Elastic IP address for use with instances in a VPC.

Code:

svc := ec2.New(session.New())
input := &ec2.ReleaseAddressInput{
    AllocationId: aws.String("eipalloc-64d5890a"),
}

result, err := svc.ReleaseAddress(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

Example (Shared01)

To release an Elastic IP addresses for EC2-Classic This example releases an Elastic IP address for use with instances in EC2-Classic.

Code:

svc := ec2.New(session.New())
input := &ec2.ReleaseAddressInput{
    PublicIp: aws.String("198.51.100.0"),
}

result, err := svc.ReleaseAddress(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) ReleaseAddressRequest

func (c *EC2) ReleaseAddressRequest(input *ReleaseAddressInput) (req *request.Request, output *ReleaseAddressOutput)

ReleaseAddressRequest generates a "aws/request.Request" representing the client's request for the ReleaseAddress operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ReleaseAddress for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ReleaseAddress method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ReleaseAddressRequest method.
req, resp := client.ReleaseAddressRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReleaseAddress

func (*EC2) ReleaseAddressWithContext

func (c *EC2) ReleaseAddressWithContext(ctx aws.Context, input *ReleaseAddressInput, opts ...request.Option) (*ReleaseAddressOutput, error)

ReleaseAddressWithContext is the same as ReleaseAddress with the addition of the ability to pass a context and additional request options.

See ReleaseAddress for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) ReleaseHosts

func (c *EC2) ReleaseHosts(input *ReleaseHostsInput) (*ReleaseHostsOutput, error)

ReleaseHosts API operation for Amazon Elastic Compute Cloud.

When you no longer want to use an On-Demand Dedicated Host it can be released. On-Demand billing is stopped and the host goes into released state. The host ID of Dedicated Hosts that have been released can no longer be specified in another request, e.g., ModifyHosts. You must stop or terminate all instances on a host before it can be released.

When Dedicated Hosts are released, it make take some time for them to stop counting toward your limit and you may receive capacity errors when trying to allocate new Dedicated hosts. Try waiting a few minutes, and then try again.

Released hosts will still appear in a DescribeHosts response.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation ReleaseHosts for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReleaseHosts

func (*EC2) ReleaseHostsRequest

func (c *EC2) ReleaseHostsRequest(input *ReleaseHostsInput) (req *request.Request, output *ReleaseHostsOutput)

ReleaseHostsRequest generates a "aws/request.Request" representing the client's request for the ReleaseHosts operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ReleaseHosts for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ReleaseHosts method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ReleaseHostsRequest method.
req, resp := client.ReleaseHostsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReleaseHosts

func (*EC2) ReleaseHostsWithContext

func (c *EC2) ReleaseHostsWithContext(ctx aws.Context, input *ReleaseHostsInput, opts ...request.Option) (*ReleaseHostsOutput, error)

ReleaseHostsWithContext is the same as ReleaseHosts with the addition of the ability to pass a context and additional request options.

See ReleaseHosts for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) ReplaceIamInstanceProfileAssociation

func (c *EC2) ReplaceIamInstanceProfileAssociation(input *ReplaceIamInstanceProfileAssociationInput) (*ReplaceIamInstanceProfileAssociationOutput, error)

ReplaceIamInstanceProfileAssociation API operation for Amazon Elastic Compute Cloud.

Replaces an IAM instance profile for the specified running instance. You can use this action to change the IAM instance profile that's associated with an instance without having to disassociate the existing IAM instance profile first.

Use DescribeIamInstanceProfileAssociations to get the association ID.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation ReplaceIamInstanceProfileAssociation for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReplaceIamInstanceProfileAssociation

func (*EC2) ReplaceIamInstanceProfileAssociationRequest

func (c *EC2) ReplaceIamInstanceProfileAssociationRequest(input *ReplaceIamInstanceProfileAssociationInput) (req *request.Request, output *ReplaceIamInstanceProfileAssociationOutput)

ReplaceIamInstanceProfileAssociationRequest generates a "aws/request.Request" representing the client's request for the ReplaceIamInstanceProfileAssociation operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ReplaceIamInstanceProfileAssociation for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ReplaceIamInstanceProfileAssociation method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ReplaceIamInstanceProfileAssociationRequest method.
req, resp := client.ReplaceIamInstanceProfileAssociationRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReplaceIamInstanceProfileAssociation

func (*EC2) ReplaceIamInstanceProfileAssociationWithContext

func (c *EC2) ReplaceIamInstanceProfileAssociationWithContext(ctx aws.Context, input *ReplaceIamInstanceProfileAssociationInput, opts ...request.Option) (*ReplaceIamInstanceProfileAssociationOutput, error)

ReplaceIamInstanceProfileAssociationWithContext is the same as ReplaceIamInstanceProfileAssociation with the addition of the ability to pass a context and additional request options.

See ReplaceIamInstanceProfileAssociation for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) ReplaceNetworkAclAssociation

func (c *EC2) ReplaceNetworkAclAssociation(input *ReplaceNetworkAclAssociationInput) (*ReplaceNetworkAclAssociationOutput, error)

ReplaceNetworkAclAssociation API operation for Amazon Elastic Compute Cloud.

Changes which network ACL a subnet is associated with. By default when you create a subnet, it's automatically associated with the default network ACL. For more information about network ACLs, see Network ACLs (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_ACLs.html) in the Amazon Virtual Private Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation ReplaceNetworkAclAssociation for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReplaceNetworkAclAssociation

Example (Shared00)

To replace the network ACL associated with a subnet This example associates the specified network ACL with the subnet for the specified network ACL association.

Code:

svc := ec2.New(session.New())
input := &ec2.ReplaceNetworkAclAssociationInput{
    AssociationId: aws.String("aclassoc-e5b95c8c"),
    NetworkAclId:  aws.String("acl-5fb85d36"),
}

result, err := svc.ReplaceNetworkAclAssociation(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) ReplaceNetworkAclAssociationRequest

func (c *EC2) ReplaceNetworkAclAssociationRequest(input *ReplaceNetworkAclAssociationInput) (req *request.Request, output *ReplaceNetworkAclAssociationOutput)

ReplaceNetworkAclAssociationRequest generates a "aws/request.Request" representing the client's request for the ReplaceNetworkAclAssociation operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ReplaceNetworkAclAssociation for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ReplaceNetworkAclAssociation method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ReplaceNetworkAclAssociationRequest method.
req, resp := client.ReplaceNetworkAclAssociationRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReplaceNetworkAclAssociation

func (*EC2) ReplaceNetworkAclAssociationWithContext

func (c *EC2) ReplaceNetworkAclAssociationWithContext(ctx aws.Context, input *ReplaceNetworkAclAssociationInput, opts ...request.Option) (*ReplaceNetworkAclAssociationOutput, error)

ReplaceNetworkAclAssociationWithContext is the same as ReplaceNetworkAclAssociation with the addition of the ability to pass a context and additional request options.

See ReplaceNetworkAclAssociation for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) ReplaceNetworkAclEntry

func (c *EC2) ReplaceNetworkAclEntry(input *ReplaceNetworkAclEntryInput) (*ReplaceNetworkAclEntryOutput, error)

ReplaceNetworkAclEntry API operation for Amazon Elastic Compute Cloud.

Replaces an entry (rule) in a network ACL. For more information about network ACLs, see Network ACLs (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_ACLs.html) in the Amazon Virtual Private Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation ReplaceNetworkAclEntry for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReplaceNetworkAclEntry

Example (Shared00)

To replace a network ACL entry This example replaces an entry for the specified network ACL. The new rule 100 allows ingress traffic from 203.0.113.12/24 on UDP port 53 (DNS) into any associated subnet.

Code:

svc := ec2.New(session.New())
input := &ec2.ReplaceNetworkAclEntryInput{
    CidrBlock:    aws.String("203.0.113.12/24"),
    Egress:       aws.Bool(false),
    NetworkAclId: aws.String("acl-5fb85d36"),
    PortRange: &ec2.PortRange{
        From: aws.Int64(53),
        To:   aws.Int64(53),
    },
    Protocol:   aws.String("udp"),
    RuleAction: aws.String("allow"),
    RuleNumber: aws.Int64(100),
}

result, err := svc.ReplaceNetworkAclEntry(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) ReplaceNetworkAclEntryRequest

func (c *EC2) ReplaceNetworkAclEntryRequest(input *ReplaceNetworkAclEntryInput) (req *request.Request, output *ReplaceNetworkAclEntryOutput)

ReplaceNetworkAclEntryRequest generates a "aws/request.Request" representing the client's request for the ReplaceNetworkAclEntry operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ReplaceNetworkAclEntry for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ReplaceNetworkAclEntry method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ReplaceNetworkAclEntryRequest method.
req, resp := client.ReplaceNetworkAclEntryRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReplaceNetworkAclEntry

func (*EC2) ReplaceNetworkAclEntryWithContext

func (c *EC2) ReplaceNetworkAclEntryWithContext(ctx aws.Context, input *ReplaceNetworkAclEntryInput, opts ...request.Option) (*ReplaceNetworkAclEntryOutput, error)

ReplaceNetworkAclEntryWithContext is the same as ReplaceNetworkAclEntry with the addition of the ability to pass a context and additional request options.

See ReplaceNetworkAclEntry for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) ReplaceRoute

func (c *EC2) ReplaceRoute(input *ReplaceRouteInput) (*ReplaceRouteOutput, error)

ReplaceRoute API operation for Amazon Elastic Compute Cloud.

Replaces an existing route within a route table in a VPC. You must provide only one of the following: Internet gateway or virtual private gateway, NAT instance, NAT gateway, VPC peering connection, network interface, or egress-only Internet gateway.

For more information about route tables, see Route Tables (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_Route_Tables.html) in the Amazon Virtual Private Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation ReplaceRoute for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReplaceRoute

Example (Shared00)

To replace a route This example replaces the specified route in the specified table table. The new route matches the specified CIDR and sends the traffic to the specified virtual private gateway.

Code:

svc := ec2.New(session.New())
input := &ec2.ReplaceRouteInput{
    DestinationCidrBlock: aws.String("10.0.0.0/16"),
    GatewayId:            aws.String("vgw-9a4cacf3"),
    RouteTableId:         aws.String("rtb-22574640"),
}

result, err := svc.ReplaceRoute(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) ReplaceRouteRequest

func (c *EC2) ReplaceRouteRequest(input *ReplaceRouteInput) (req *request.Request, output *ReplaceRouteOutput)

ReplaceRouteRequest generates a "aws/request.Request" representing the client's request for the ReplaceRoute operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ReplaceRoute for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ReplaceRoute method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ReplaceRouteRequest method.
req, resp := client.ReplaceRouteRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReplaceRoute

func (*EC2) ReplaceRouteTableAssociation

func (c *EC2) ReplaceRouteTableAssociation(input *ReplaceRouteTableAssociationInput) (*ReplaceRouteTableAssociationOutput, error)

ReplaceRouteTableAssociation API operation for Amazon Elastic Compute Cloud.

Changes the route table associated with a given subnet in a VPC. After the operation completes, the subnet uses the routes in the new route table it's associated with. For more information about route tables, see Route Tables (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_Route_Tables.html) in the Amazon Virtual Private Cloud User Guide.

You can also use ReplaceRouteTableAssociation to change which table is the main route table in the VPC. You just specify the main route table's association ID and the route table to be the new main route table.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation ReplaceRouteTableAssociation for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReplaceRouteTableAssociation

Example (Shared00)

To replace the route table associated with a subnet This example associates the specified route table with the subnet for the specified route table association.

Code:

svc := ec2.New(session.New())
input := &ec2.ReplaceRouteTableAssociationInput{
    AssociationId: aws.String("rtbassoc-781d0d1a"),
    RouteTableId:  aws.String("rtb-22574640"),
}

result, err := svc.ReplaceRouteTableAssociation(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) ReplaceRouteTableAssociationRequest

func (c *EC2) ReplaceRouteTableAssociationRequest(input *ReplaceRouteTableAssociationInput) (req *request.Request, output *ReplaceRouteTableAssociationOutput)

ReplaceRouteTableAssociationRequest generates a "aws/request.Request" representing the client's request for the ReplaceRouteTableAssociation operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ReplaceRouteTableAssociation for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ReplaceRouteTableAssociation method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ReplaceRouteTableAssociationRequest method.
req, resp := client.ReplaceRouteTableAssociationRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReplaceRouteTableAssociation

func (*EC2) ReplaceRouteTableAssociationWithContext

func (c *EC2) ReplaceRouteTableAssociationWithContext(ctx aws.Context, input *ReplaceRouteTableAssociationInput, opts ...request.Option) (*ReplaceRouteTableAssociationOutput, error)

ReplaceRouteTableAssociationWithContext is the same as ReplaceRouteTableAssociation with the addition of the ability to pass a context and additional request options.

See ReplaceRouteTableAssociation for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) ReplaceRouteWithContext

func (c *EC2) ReplaceRouteWithContext(ctx aws.Context, input *ReplaceRouteInput, opts ...request.Option) (*ReplaceRouteOutput, error)

ReplaceRouteWithContext is the same as ReplaceRoute with the addition of the ability to pass a context and additional request options.

See ReplaceRoute for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) ReportInstanceStatus

func (c *EC2) ReportInstanceStatus(input *ReportInstanceStatusInput) (*ReportInstanceStatusOutput, error)

ReportInstanceStatus API operation for Amazon Elastic Compute Cloud.

Submits feedback about the status of an instance. The instance must be in the running state. If your experience with the instance differs from the instance status returned by DescribeInstanceStatus, use ReportInstanceStatus to report your experience with the instance. Amazon EC2 collects this information to improve the accuracy of status checks.

Use of this action does not change the value returned by DescribeInstanceStatus.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation ReportInstanceStatus for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReportInstanceStatus

func (*EC2) ReportInstanceStatusRequest

func (c *EC2) ReportInstanceStatusRequest(input *ReportInstanceStatusInput) (req *request.Request, output *ReportInstanceStatusOutput)

ReportInstanceStatusRequest generates a "aws/request.Request" representing the client's request for the ReportInstanceStatus operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ReportInstanceStatus for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ReportInstanceStatus method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ReportInstanceStatusRequest method.
req, resp := client.ReportInstanceStatusRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReportInstanceStatus

func (*EC2) ReportInstanceStatusWithContext

func (c *EC2) ReportInstanceStatusWithContext(ctx aws.Context, input *ReportInstanceStatusInput, opts ...request.Option) (*ReportInstanceStatusOutput, error)

ReportInstanceStatusWithContext is the same as ReportInstanceStatus with the addition of the ability to pass a context and additional request options.

See ReportInstanceStatus for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) RequestSpotFleet

func (c *EC2) RequestSpotFleet(input *RequestSpotFleetInput) (*RequestSpotFleetOutput, error)

RequestSpotFleet API operation for Amazon Elastic Compute Cloud.

Creates a Spot fleet request.

You can submit a single request that includes multiple launch specifications that vary by instance type, AMI, Availability Zone, or subnet.

By default, the Spot fleet requests Spot instances in the Spot pool where the price per unit is the lowest. Each launch specification can include its own instance weighting that reflects the value of the instance type to your application workload.

Alternatively, you can specify that the Spot fleet distribute the target capacity across the Spot pools included in its launch specifications. By ensuring that the Spot instances in your Spot fleet are in different Spot pools, you can improve the availability of your fleet.

For more information, see Spot Fleet Requests (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-fleet-requests.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation RequestSpotFleet for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RequestSpotFleet

Example (Shared00)

To request a Spot fleet in the subnet with the lowest price This example creates a Spot fleet request with two launch specifications that differ only by subnet. The Spot fleet launches the instances in the specified subnet with the lowest price. If the instances are launched in a default VPC, they receive a public IP address by default. If the instances are launched in a nondefault VPC, they do not receive a public IP address by default. Note that you can't specify different subnets from the same Availability Zone in a Spot fleet request.

Code:

svc := ec2.New(session.New())
input := &ec2.RequestSpotFleetInput{
    SpotFleetRequestConfig: &ec2.SpotFleetRequestConfigData{
        IamFleetRole: aws.String("arn:aws:iam::123456789012:role/my-spot-fleet-role"),
        LaunchSpecifications: []*ec2.SpotFleetLaunchSpecification{
            {
                ImageId:      aws.String("ami-1a2b3c4d"),
                InstanceType: aws.String("m3.medium"),
                KeyName:      aws.String("my-key-pair"),
                SecurityGroups: []*ec2.GroupIdentifier{
                    {
                        GroupId: aws.String("sg-1a2b3c4d"),
                    },
                },
                SubnetId: aws.String("subnet-1a2b3c4d, subnet-3c4d5e6f"),
            },
        },
        SpotPrice:      aws.String("0.04"),
        TargetCapacity: aws.Int64(2),
    },
}

result, err := svc.RequestSpotFleet(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

Example (Shared01)

To request a Spot fleet in the Availability Zone with the lowest price This example creates a Spot fleet request with two launch specifications that differ only by Availability Zone. The Spot fleet launches the instances in the specified Availability Zone with the lowest price. If your account supports EC2-VPC only, Amazon EC2 launches the Spot instances in the default subnet of the Availability Zone. If your account supports EC2-Classic, Amazon EC2 launches the instances in EC2-Classic in the Availability Zone.

Code:

svc := ec2.New(session.New())
input := &ec2.RequestSpotFleetInput{
    SpotFleetRequestConfig: &ec2.SpotFleetRequestConfigData{
        IamFleetRole: aws.String("arn:aws:iam::123456789012:role/my-spot-fleet-role"),
        LaunchSpecifications: []*ec2.SpotFleetLaunchSpecification{
            {
                ImageId:      aws.String("ami-1a2b3c4d"),
                InstanceType: aws.String("m3.medium"),
                KeyName:      aws.String("my-key-pair"),
                SecurityGroups: []*ec2.GroupIdentifier{
                    {
                        GroupId: aws.String("sg-1a2b3c4d"),
                    },
                },
            },
        },
        SpotPrice:      aws.String("0.04"),
        TargetCapacity: aws.Int64(2),
    },
}

result, err := svc.RequestSpotFleet(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

Example (Shared02)

To launch Spot instances in a subnet and assign them public IP addresses This example assigns public addresses to instances launched in a nondefault VPC. Note that when you specify a network interface, you must include the subnet ID and security group ID using the network interface.

Code:

svc := ec2.New(session.New())
input := &ec2.RequestSpotFleetInput{
    SpotFleetRequestConfig: &ec2.SpotFleetRequestConfigData{
        IamFleetRole: aws.String("arn:aws:iam::123456789012:role/my-spot-fleet-role"),
        LaunchSpecifications: []*ec2.SpotFleetLaunchSpecification{
            {
                ImageId:      aws.String("ami-1a2b3c4d"),
                InstanceType: aws.String("m3.medium"),
                KeyName:      aws.String("my-key-pair"),
                NetworkInterfaces: []*ec2.InstanceNetworkInterfaceSpecification{
                    {
                        AssociatePublicIpAddress: aws.Bool(true),
                        DeviceIndex:              aws.Int64(0),
                        Groups: []*string{
                            aws.String("sg-1a2b3c4d"),
                        },
                        SubnetId: aws.String("subnet-1a2b3c4d"),
                    },
                },
            },
        },
        SpotPrice:      aws.String("0.04"),
        TargetCapacity: aws.Int64(2),
    },
}

result, err := svc.RequestSpotFleet(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

Example (Shared03)

To request a Spot fleet using the diversified allocation strategy This example creates a Spot fleet request that launches 30 instances using the diversified allocation strategy. The launch specifications differ by instance type. The Spot fleet distributes the instances across the launch specifications such that there are 10 instances of each type.

Code:

svc := ec2.New(session.New())
input := &ec2.RequestSpotFleetInput{
    SpotFleetRequestConfig: &ec2.SpotFleetRequestConfigData{
        AllocationStrategy: aws.String("diversified"),
        IamFleetRole:       aws.String("arn:aws:iam::123456789012:role/my-spot-fleet-role"),
        LaunchSpecifications: []*ec2.SpotFleetLaunchSpecification{
            {
                ImageId:      aws.String("ami-1a2b3c4d"),
                InstanceType: aws.String("c4.2xlarge"),
                SubnetId:     aws.String("subnet-1a2b3c4d"),
            },
            {
                ImageId:      aws.String("ami-1a2b3c4d"),
                InstanceType: aws.String("m3.2xlarge"),
                SubnetId:     aws.String("subnet-1a2b3c4d"),
            },
            {
                ImageId:      aws.String("ami-1a2b3c4d"),
                InstanceType: aws.String("r3.2xlarge"),
                SubnetId:     aws.String("subnet-1a2b3c4d"),
            },
        },
        SpotPrice:      aws.String("0.70"),
        TargetCapacity: aws.Int64(30),
    },
}

result, err := svc.RequestSpotFleet(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) RequestSpotFleetRequest

func (c *EC2) RequestSpotFleetRequest(input *RequestSpotFleetInput) (req *request.Request, output *RequestSpotFleetOutput)

RequestSpotFleetRequest generates a "aws/request.Request" representing the client's request for the RequestSpotFleet operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See RequestSpotFleet for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the RequestSpotFleet method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the RequestSpotFleetRequest method.
req, resp := client.RequestSpotFleetRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RequestSpotFleet

func (*EC2) RequestSpotFleetWithContext

func (c *EC2) RequestSpotFleetWithContext(ctx aws.Context, input *RequestSpotFleetInput, opts ...request.Option) (*RequestSpotFleetOutput, error)

RequestSpotFleetWithContext is the same as RequestSpotFleet with the addition of the ability to pass a context and additional request options.

See RequestSpotFleet for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) RequestSpotInstances

func (c *EC2) RequestSpotInstances(input *RequestSpotInstancesInput) (*RequestSpotInstancesOutput, error)

RequestSpotInstances API operation for Amazon Elastic Compute Cloud.

Creates a Spot instance request. Spot instances are instances that Amazon EC2 launches when the bid price that you specify exceeds the current Spot price. Amazon EC2 periodically sets the Spot price based on available Spot Instance capacity and current Spot instance requests. For more information, see Spot Instance Requests (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-requests.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation RequestSpotInstances for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RequestSpotInstances

Example (Shared00)

To create a one-time Spot Instance request This example creates a one-time Spot Instance request for five instances in the specified Availability Zone. If your account supports EC2-VPC only, Amazon EC2 launches the instances in the default subnet of the specified Availability Zone. If your account supports EC2-Classic, Amazon EC2 launches the instances in EC2-Classic in the specified Availability Zone.

Code:

svc := ec2.New(session.New())
input := &ec2.RequestSpotInstancesInput{
    InstanceCount: aws.Int64(5),
    LaunchSpecification: &ec2.RequestSpotLaunchSpecification{
        IamInstanceProfile: &ec2.IamInstanceProfileSpecification{
            Arn: aws.String("arn:aws:iam::123456789012:instance-profile/my-iam-role"),
        },
        ImageId:      aws.String("ami-1a2b3c4d"),
        InstanceType: aws.String("m3.medium"),
        KeyName:      aws.String("my-key-pair"),
        Placement: &ec2.SpotPlacement{
            AvailabilityZone: aws.String("us-west-2a"),
        },
        SecurityGroupIds: []*string{
            aws.String("sg-1a2b3c4d"),
        },
    },
    SpotPrice: aws.String("0.03"),
    Type:      aws.String("one-time"),
}

result, err := svc.RequestSpotInstances(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

Example (Shared01)

To create a one-time Spot Instance request This example command creates a one-time Spot Instance request for five instances in the specified subnet. Amazon EC2 launches the instances in the specified subnet. If the VPC is a nondefault VPC, the instances do not receive a public IP address by default.

Code:

svc := ec2.New(session.New())
input := &ec2.RequestSpotInstancesInput{
    InstanceCount: aws.Int64(5),
    LaunchSpecification: &ec2.RequestSpotLaunchSpecification{
        IamInstanceProfile: &ec2.IamInstanceProfileSpecification{
            Arn: aws.String("arn:aws:iam::123456789012:instance-profile/my-iam-role"),
        },
        ImageId:      aws.String("ami-1a2b3c4d"),
        InstanceType: aws.String("m3.medium"),
        SecurityGroupIds: []*string{
            aws.String("sg-1a2b3c4d"),
        },
        SubnetId: aws.String("subnet-1a2b3c4d"),
    },
    SpotPrice: aws.String("0.050"),
    Type:      aws.String("one-time"),
}

result, err := svc.RequestSpotInstances(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) RequestSpotInstancesRequest

func (c *EC2) RequestSpotInstancesRequest(input *RequestSpotInstancesInput) (req *request.Request, output *RequestSpotInstancesOutput)

RequestSpotInstancesRequest generates a "aws/request.Request" representing the client's request for the RequestSpotInstances operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See RequestSpotInstances for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the RequestSpotInstances method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the RequestSpotInstancesRequest method.
req, resp := client.RequestSpotInstancesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RequestSpotInstances

func (*EC2) RequestSpotInstancesWithContext

func (c *EC2) RequestSpotInstancesWithContext(ctx aws.Context, input *RequestSpotInstancesInput, opts ...request.Option) (*RequestSpotInstancesOutput, error)

RequestSpotInstancesWithContext is the same as RequestSpotInstances with the addition of the ability to pass a context and additional request options.

See RequestSpotInstances for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) ResetImageAttribute

func (c *EC2) ResetImageAttribute(input *ResetImageAttributeInput) (*ResetImageAttributeOutput, error)

ResetImageAttribute API operation for Amazon Elastic Compute Cloud.

Resets an attribute of an AMI to its default value.

The productCodes attribute can't be reset.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation ResetImageAttribute for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ResetImageAttribute

func (*EC2) ResetImageAttributeRequest

func (c *EC2) ResetImageAttributeRequest(input *ResetImageAttributeInput) (req *request.Request, output *ResetImageAttributeOutput)

ResetImageAttributeRequest generates a "aws/request.Request" representing the client's request for the ResetImageAttribute operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ResetImageAttribute for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ResetImageAttribute method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ResetImageAttributeRequest method.
req, resp := client.ResetImageAttributeRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ResetImageAttribute

func (*EC2) ResetImageAttributeWithContext

func (c *EC2) ResetImageAttributeWithContext(ctx aws.Context, input *ResetImageAttributeInput, opts ...request.Option) (*ResetImageAttributeOutput, error)

ResetImageAttributeWithContext is the same as ResetImageAttribute with the addition of the ability to pass a context and additional request options.

See ResetImageAttribute for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) ResetInstanceAttribute

func (c *EC2) ResetInstanceAttribute(input *ResetInstanceAttributeInput) (*ResetInstanceAttributeOutput, error)

ResetInstanceAttribute API operation for Amazon Elastic Compute Cloud.

Resets an attribute of an instance to its default value. To reset the kernel or ramdisk, the instance must be in a stopped state. To reset the sourceDestCheck, the instance can be either running or stopped.

The sourceDestCheck attribute controls whether source/destination checking is enabled. The default value is true, which means checking is enabled. This value must be false for a NAT instance to perform NAT. For more information, see NAT Instances (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_NAT_Instance.html) in the Amazon Virtual Private Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation ResetInstanceAttribute for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ResetInstanceAttribute

func (*EC2) ResetInstanceAttributeRequest

func (c *EC2) ResetInstanceAttributeRequest(input *ResetInstanceAttributeInput) (req *request.Request, output *ResetInstanceAttributeOutput)

ResetInstanceAttributeRequest generates a "aws/request.Request" representing the client's request for the ResetInstanceAttribute operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ResetInstanceAttribute for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ResetInstanceAttribute method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ResetInstanceAttributeRequest method.
req, resp := client.ResetInstanceAttributeRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ResetInstanceAttribute

func (*EC2) ResetInstanceAttributeWithContext

func (c *EC2) ResetInstanceAttributeWithContext(ctx aws.Context, input *ResetInstanceAttributeInput, opts ...request.Option) (*ResetInstanceAttributeOutput, error)

ResetInstanceAttributeWithContext is the same as ResetInstanceAttribute with the addition of the ability to pass a context and additional request options.

See ResetInstanceAttribute for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) ResetNetworkInterfaceAttribute

func (c *EC2) ResetNetworkInterfaceAttribute(input *ResetNetworkInterfaceAttributeInput) (*ResetNetworkInterfaceAttributeOutput, error)

ResetNetworkInterfaceAttribute API operation for Amazon Elastic Compute Cloud.

Resets a network interface attribute. You can specify only one attribute at a time.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation ResetNetworkInterfaceAttribute for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ResetNetworkInterfaceAttribute

func (*EC2) ResetNetworkInterfaceAttributeRequest

func (c *EC2) ResetNetworkInterfaceAttributeRequest(input *ResetNetworkInterfaceAttributeInput) (req *request.Request, output *ResetNetworkInterfaceAttributeOutput)

ResetNetworkInterfaceAttributeRequest generates a "aws/request.Request" representing the client's request for the ResetNetworkInterfaceAttribute operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ResetNetworkInterfaceAttribute for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ResetNetworkInterfaceAttribute method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ResetNetworkInterfaceAttributeRequest method.
req, resp := client.ResetNetworkInterfaceAttributeRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ResetNetworkInterfaceAttribute

func (*EC2) ResetNetworkInterfaceAttributeWithContext

func (c *EC2) ResetNetworkInterfaceAttributeWithContext(ctx aws.Context, input *ResetNetworkInterfaceAttributeInput, opts ...request.Option) (*ResetNetworkInterfaceAttributeOutput, error)

ResetNetworkInterfaceAttributeWithContext is the same as ResetNetworkInterfaceAttribute with the addition of the ability to pass a context and additional request options.

See ResetNetworkInterfaceAttribute for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) ResetSnapshotAttribute

func (c *EC2) ResetSnapshotAttribute(input *ResetSnapshotAttributeInput) (*ResetSnapshotAttributeOutput, error)

ResetSnapshotAttribute API operation for Amazon Elastic Compute Cloud.

Resets permission settings for the specified snapshot.

For more information on modifying snapshot permissions, see Sharing Snapshots (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-modifying-snapshot-permissions.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation ResetSnapshotAttribute for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ResetSnapshotAttribute

Example (Shared00)

To reset a snapshot attribute This example resets the create volume permissions for snapshot ``snap-1234567890abcdef0``. If the command succeeds, no output is returned.

Code:

svc := ec2.New(session.New())
input := &ec2.ResetSnapshotAttributeInput{
    Attribute:  aws.String("createVolumePermission"),
    SnapshotId: aws.String("snap-1234567890abcdef0"),
}

result, err := svc.ResetSnapshotAttribute(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) ResetSnapshotAttributeRequest

func (c *EC2) ResetSnapshotAttributeRequest(input *ResetSnapshotAttributeInput) (req *request.Request, output *ResetSnapshotAttributeOutput)

ResetSnapshotAttributeRequest generates a "aws/request.Request" representing the client's request for the ResetSnapshotAttribute operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See ResetSnapshotAttribute for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the ResetSnapshotAttribute method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the ResetSnapshotAttributeRequest method.
req, resp := client.ResetSnapshotAttributeRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ResetSnapshotAttribute

func (*EC2) ResetSnapshotAttributeWithContext

func (c *EC2) ResetSnapshotAttributeWithContext(ctx aws.Context, input *ResetSnapshotAttributeInput, opts ...request.Option) (*ResetSnapshotAttributeOutput, error)

ResetSnapshotAttributeWithContext is the same as ResetSnapshotAttribute with the addition of the ability to pass a context and additional request options.

See ResetSnapshotAttribute for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) RestoreAddressToClassic

func (c *EC2) RestoreAddressToClassic(input *RestoreAddressToClassicInput) (*RestoreAddressToClassicOutput, error)

RestoreAddressToClassic API operation for Amazon Elastic Compute Cloud.

Restores an Elastic IP address that was previously moved to the EC2-VPC platform back to the EC2-Classic platform. You cannot move an Elastic IP address that was originally allocated for use in EC2-VPC. The Elastic IP address must not be associated with an instance or network interface.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation RestoreAddressToClassic for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RestoreAddressToClassic

Example (Shared00)

To restore an address to EC2-Classic This example restores the specified Elastic IP address to the EC2-Classic platform.

Code:

svc := ec2.New(session.New())
input := &ec2.RestoreAddressToClassicInput{
    PublicIp: aws.String("198.51.100.0"),
}

result, err := svc.RestoreAddressToClassic(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) RestoreAddressToClassicRequest

func (c *EC2) RestoreAddressToClassicRequest(input *RestoreAddressToClassicInput) (req *request.Request, output *RestoreAddressToClassicOutput)

RestoreAddressToClassicRequest generates a "aws/request.Request" representing the client's request for the RestoreAddressToClassic operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See RestoreAddressToClassic for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the RestoreAddressToClassic method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the RestoreAddressToClassicRequest method.
req, resp := client.RestoreAddressToClassicRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RestoreAddressToClassic

func (*EC2) RestoreAddressToClassicWithContext

func (c *EC2) RestoreAddressToClassicWithContext(ctx aws.Context, input *RestoreAddressToClassicInput, opts ...request.Option) (*RestoreAddressToClassicOutput, error)

RestoreAddressToClassicWithContext is the same as RestoreAddressToClassic with the addition of the ability to pass a context and additional request options.

See RestoreAddressToClassic for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) RevokeSecurityGroupEgress

func (c *EC2) RevokeSecurityGroupEgress(input *RevokeSecurityGroupEgressInput) (*RevokeSecurityGroupEgressOutput, error)

RevokeSecurityGroupEgress API operation for Amazon Elastic Compute Cloud.

[EC2-VPC only] Removes one or more egress rules from a security group for EC2-VPC. This action doesn't apply to security groups for use in EC2-Classic. The values that you specify in the revoke request (for example, ports) must match the existing rule's values for the rule to be revoked.

Each rule consists of the protocol and the IPv4 or IPv6 CIDR range or source security group. For the TCP and UDP protocols, you must also specify the destination port or range of ports. For the ICMP protocol, you must also specify the ICMP type and code.

Rule changes are propagated to instances within the security group as quickly as possible. However, a small delay might occur.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation RevokeSecurityGroupEgress for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RevokeSecurityGroupEgress

func (*EC2) RevokeSecurityGroupEgressRequest

func (c *EC2) RevokeSecurityGroupEgressRequest(input *RevokeSecurityGroupEgressInput) (req *request.Request, output *RevokeSecurityGroupEgressOutput)

RevokeSecurityGroupEgressRequest generates a "aws/request.Request" representing the client's request for the RevokeSecurityGroupEgress operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See RevokeSecurityGroupEgress for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the RevokeSecurityGroupEgress method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the RevokeSecurityGroupEgressRequest method.
req, resp := client.RevokeSecurityGroupEgressRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RevokeSecurityGroupEgress

func (*EC2) RevokeSecurityGroupEgressWithContext

func (c *EC2) RevokeSecurityGroupEgressWithContext(ctx aws.Context, input *RevokeSecurityGroupEgressInput, opts ...request.Option) (*RevokeSecurityGroupEgressOutput, error)

RevokeSecurityGroupEgressWithContext is the same as RevokeSecurityGroupEgress with the addition of the ability to pass a context and additional request options.

See RevokeSecurityGroupEgress for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) RevokeSecurityGroupIngress

func (c *EC2) RevokeSecurityGroupIngress(input *RevokeSecurityGroupIngressInput) (*RevokeSecurityGroupIngressOutput, error)

RevokeSecurityGroupIngress API operation for Amazon Elastic Compute Cloud.

Removes one or more ingress rules from a security group. The values that you specify in the revoke request (for example, ports) must match the existing rule's values for the rule to be removed.

Each rule consists of the protocol and the CIDR range or source security group. For the TCP and UDP protocols, you must also specify the destination port or range of ports. For the ICMP protocol, you must also specify the ICMP type and code.

Rule changes are propagated to instances within the security group as quickly as possible. However, a small delay might occur.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation RevokeSecurityGroupIngress for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RevokeSecurityGroupIngress

func (*EC2) RevokeSecurityGroupIngressRequest

func (c *EC2) RevokeSecurityGroupIngressRequest(input *RevokeSecurityGroupIngressInput) (req *request.Request, output *RevokeSecurityGroupIngressOutput)

RevokeSecurityGroupIngressRequest generates a "aws/request.Request" representing the client's request for the RevokeSecurityGroupIngress operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See RevokeSecurityGroupIngress for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the RevokeSecurityGroupIngress method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the RevokeSecurityGroupIngressRequest method.
req, resp := client.RevokeSecurityGroupIngressRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RevokeSecurityGroupIngress

func (*EC2) RevokeSecurityGroupIngressWithContext

func (c *EC2) RevokeSecurityGroupIngressWithContext(ctx aws.Context, input *RevokeSecurityGroupIngressInput, opts ...request.Option) (*RevokeSecurityGroupIngressOutput, error)

RevokeSecurityGroupIngressWithContext is the same as RevokeSecurityGroupIngress with the addition of the ability to pass a context and additional request options.

See RevokeSecurityGroupIngress for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) RunInstances

func (c *EC2) RunInstances(input *RunInstancesInput) (*Reservation, error)

RunInstances API operation for Amazon Elastic Compute Cloud.

Launches the specified number of instances using an AMI for which you have permissions.

You can specify a number of options, or leave the default options. The following rules apply:

* [EC2-VPC] If you don't specify a subnet ID, we choose a default subnet
from your default VPC for you. If you don't have a default VPC, you must
specify a subnet ID in the request.

* [EC2-Classic] If don't specify an Availability Zone, we choose one for
you.

* Some instance types must be launched into a VPC. If you do not have
a default VPC, or if you do not specify a subnet ID, the request fails.
For more information, see Instance Types Available Only in a VPC (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-vpc.html#vpc-only-instance-types).

* [EC2-VPC] All instances have a network interface with a primary private
IPv4 address. If you don't specify this address, we choose one from the
IPv4 range of your subnet.

* Not all instance types support IPv6 addresses. For more information,
see Instance Types (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html).

* If you don't specify a security group ID, we use the default security
group. For more information, see Security Groups (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-network-security.html).

* If any of the AMIs have a product code attached for which the user has
not subscribed, the request fails.

To ensure faster instance launches, break up large requests into smaller batches. For example, create 5 separate launch requests for 100 instances each instead of 1 launch request for 500 instances.

An instance is ready for you to use when it's in the running state. You can check the state of your instance using DescribeInstances. You can tag instances and EBS volumes during launch, after launch, or both. For more information, see CreateTags and Tagging Your Amazon EC2 Resources (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html).

Linux instances have access to the public key of the key pair at boot. You can use this key to provide secure access to the instance. Amazon EC2 public images use this feature to provide secure access without passwords. For more information, see Key Pairs (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-key-pairs.html) in the Amazon Elastic Compute Cloud User Guide.

For troubleshooting, see What To Do If An Instance Immediately Terminates (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_InstanceStraightToTerminated.html), and Troubleshooting Connecting to Your Instance (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/TroubleshootingInstancesConnecting.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation RunInstances for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RunInstances

func (*EC2) RunInstancesRequest

func (c *EC2) RunInstancesRequest(input *RunInstancesInput) (req *request.Request, output *Reservation)

RunInstancesRequest generates a "aws/request.Request" representing the client's request for the RunInstances operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See RunInstances for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the RunInstances method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the RunInstancesRequest method.
req, resp := client.RunInstancesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RunInstances

func (*EC2) RunInstancesWithContext

func (c *EC2) RunInstancesWithContext(ctx aws.Context, input *RunInstancesInput, opts ...request.Option) (*Reservation, error)

RunInstancesWithContext is the same as RunInstances with the addition of the ability to pass a context and additional request options.

See RunInstances for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) RunScheduledInstances

func (c *EC2) RunScheduledInstances(input *RunScheduledInstancesInput) (*RunScheduledInstancesOutput, error)

RunScheduledInstances API operation for Amazon Elastic Compute Cloud.

Launches the specified Scheduled Instances.

Before you can launch a Scheduled Instance, you must purchase it and obtain an identifier using PurchaseScheduledInstances.

You must launch a Scheduled Instance during its scheduled time period. You can't stop or reboot a Scheduled Instance, but you can terminate it as needed. If you terminate a Scheduled Instance before the current scheduled time period ends, you can launch it again after a few minutes. For more information, see Scheduled Instances (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-scheduled-instances.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation RunScheduledInstances for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RunScheduledInstances

Example (Shared00)

To launch a Scheduled Instance in a VPC This example launches the specified Scheduled Instance in a VPC.

Code:

svc := ec2.New(session.New())
input := &ec2.RunScheduledInstancesInput{
    InstanceCount: aws.Int64(1),
    LaunchSpecification: &ec2.ScheduledInstancesLaunchSpecification{
        IamInstanceProfile: &ec2.ScheduledInstancesIamInstanceProfile{
            Name: aws.String("my-iam-role"),
        },
        ImageId:      aws.String("ami-12345678"),
        InstanceType: aws.String("c4.large"),
        KeyName:      aws.String("my-key-pair"),
        NetworkInterfaces: []*ec2.ScheduledInstancesNetworkInterface{
            {
                AssociatePublicIpAddress: aws.Bool(true),
                DeviceIndex:              aws.Int64(0),
                Groups: []*string{
                    aws.String("sg-12345678"),
                },
                SubnetId: aws.String("subnet-12345678"),
            },
        },
    },
    ScheduledInstanceId: aws.String("sci-1234-1234-1234-1234-123456789012"),
}

result, err := svc.RunScheduledInstances(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

Example (Shared01)

To launch a Scheduled Instance in EC2-Classic This example launches the specified Scheduled Instance in EC2-Classic.

Code:

svc := ec2.New(session.New())
input := &ec2.RunScheduledInstancesInput{
    InstanceCount: aws.Int64(1),
    LaunchSpecification: &ec2.ScheduledInstancesLaunchSpecification{
        IamInstanceProfile: &ec2.ScheduledInstancesIamInstanceProfile{
            Name: aws.String("my-iam-role"),
        },
        ImageId:      aws.String("ami-12345678"),
        InstanceType: aws.String("c4.large"),
        KeyName:      aws.String("my-key-pair"),
        Placement: &ec2.ScheduledInstancesPlacement{
            AvailabilityZone: aws.String("us-west-2b"),
        },
        SecurityGroupIds: []*string{
            aws.String("sg-12345678"),
        },
    },
    ScheduledInstanceId: aws.String("sci-1234-1234-1234-1234-123456789012"),
}

result, err := svc.RunScheduledInstances(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) RunScheduledInstancesRequest

func (c *EC2) RunScheduledInstancesRequest(input *RunScheduledInstancesInput) (req *request.Request, output *RunScheduledInstancesOutput)

RunScheduledInstancesRequest generates a "aws/request.Request" representing the client's request for the RunScheduledInstances operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See RunScheduledInstances for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the RunScheduledInstances method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the RunScheduledInstancesRequest method.
req, resp := client.RunScheduledInstancesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RunScheduledInstances

func (*EC2) RunScheduledInstancesWithContext

func (c *EC2) RunScheduledInstancesWithContext(ctx aws.Context, input *RunScheduledInstancesInput, opts ...request.Option) (*RunScheduledInstancesOutput, error)

RunScheduledInstancesWithContext is the same as RunScheduledInstances with the addition of the ability to pass a context and additional request options.

See RunScheduledInstances for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) StartInstances

func (c *EC2) StartInstances(input *StartInstancesInput) (*StartInstancesOutput, error)

StartInstances API operation for Amazon Elastic Compute Cloud.

Starts an Amazon EBS-backed AMI that you've previously stopped.

Instances that use Amazon EBS volumes as their root devices can be quickly stopped and started. When an instance is stopped, the compute resources are released and you are not billed for hourly instance usage. However, your root partition Amazon EBS volume remains, continues to persist your data, and you are charged for Amazon EBS volume usage. You can restart your instance at any time. Each time you transition an instance from stopped to started, Amazon EC2 charges a full instance hour, even if transitions happen multiple times within a single hour.

Before stopping an instance, make sure it is in a state from which it can be restarted. Stopping an instance does not preserve data stored in RAM.

Performing this operation on an instance that uses an instance store as its root device returns an error.

For more information, see Stopping Instances (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Stop_Start.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation StartInstances for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/StartInstances

func (*EC2) StartInstancesRequest

func (c *EC2) StartInstancesRequest(input *StartInstancesInput) (req *request.Request, output *StartInstancesOutput)

StartInstancesRequest generates a "aws/request.Request" representing the client's request for the StartInstances operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See StartInstances for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the StartInstances method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the StartInstancesRequest method.
req, resp := client.StartInstancesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/StartInstances

func (*EC2) StartInstancesWithContext

func (c *EC2) StartInstancesWithContext(ctx aws.Context, input *StartInstancesInput, opts ...request.Option) (*StartInstancesOutput, error)

StartInstancesWithContext is the same as StartInstances with the addition of the ability to pass a context and additional request options.

See StartInstances for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) StopInstances

func (c *EC2) StopInstances(input *StopInstancesInput) (*StopInstancesOutput, error)

StopInstances API operation for Amazon Elastic Compute Cloud.

Stops an Amazon EBS-backed instance.

We don't charge hourly usage for a stopped instance, or data transfer fees; however, your root partition Amazon EBS volume remains, continues to persist your data, and you are charged for Amazon EBS volume usage. Each time you transition an instance from stopped to started, Amazon EC2 charges a full instance hour, even if transitions happen multiple times within a single hour.

You can't start or stop Spot instances, and you can't stop instance store-backed instances.

When you stop an instance, we shut it down. You can restart your instance at any time. Before stopping an instance, make sure it is in a state from which it can be restarted. Stopping an instance does not preserve data stored in RAM.

Stopping an instance is different to rebooting or terminating it. For example, when you stop an instance, the root device and any other devices attached to the instance persist. When you terminate an instance, the root device and any other devices attached during the instance launch are automatically deleted. For more information about the differences between rebooting, stopping, and terminating instances, see Instance Lifecycle (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-lifecycle.html) in the Amazon Elastic Compute Cloud User Guide.

When you stop an instance, we attempt to shut it down forcibly after a short while. If your instance appears stuck in the stopping state after a period of time, there may be an issue with the underlying host computer. For more information, see Troubleshooting Stopping Your Instance (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/TroubleshootingInstancesStopping.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation StopInstances for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/StopInstances

func (*EC2) StopInstancesRequest

func (c *EC2) StopInstancesRequest(input *StopInstancesInput) (req *request.Request, output *StopInstancesOutput)

StopInstancesRequest generates a "aws/request.Request" representing the client's request for the StopInstances operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See StopInstances for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the StopInstances method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the StopInstancesRequest method.
req, resp := client.StopInstancesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/StopInstances

func (*EC2) StopInstancesWithContext

func (c *EC2) StopInstancesWithContext(ctx aws.Context, input *StopInstancesInput, opts ...request.Option) (*StopInstancesOutput, error)

StopInstancesWithContext is the same as StopInstances with the addition of the ability to pass a context and additional request options.

See StopInstances for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) TerminateInstances

func (c *EC2) TerminateInstances(input *TerminateInstancesInput) (*TerminateInstancesOutput, error)

TerminateInstances API operation for Amazon Elastic Compute Cloud.

Shuts down one or more instances. This operation is idempotent; if you terminate an instance more than once, each call succeeds.

If you specify multiple instances and the request fails (for example, because of a single incorrect instance ID), none of the instances are terminated.

Terminated instances remain visible after termination (for approximately one hour).

By default, Amazon EC2 deletes all EBS volumes that were attached when the instance launched. Volumes attached after instance launch continue running.

You can stop, start, and terminate EBS-backed instances. You can only terminate instance store-backed instances. What happens to an instance differs if you stop it or terminate it. For example, when you stop an instance, the root device and any other devices attached to the instance persist. When you terminate an instance, any attached EBS volumes with the DeleteOnTermination block device mapping parameter set to true are automatically deleted. For more information about the differences between stopping and terminating instances, see Instance Lifecycle (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-lifecycle.html) in the Amazon Elastic Compute Cloud User Guide.

For more information about troubleshooting, see Troubleshooting Terminating Your Instance (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/TroubleshootingInstancesShuttingDown.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation TerminateInstances for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/TerminateInstances

func (*EC2) TerminateInstancesRequest

func (c *EC2) TerminateInstancesRequest(input *TerminateInstancesInput) (req *request.Request, output *TerminateInstancesOutput)

TerminateInstancesRequest generates a "aws/request.Request" representing the client's request for the TerminateInstances operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See TerminateInstances for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the TerminateInstances method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the TerminateInstancesRequest method.
req, resp := client.TerminateInstancesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/TerminateInstances

func (*EC2) TerminateInstancesWithContext

func (c *EC2) TerminateInstancesWithContext(ctx aws.Context, input *TerminateInstancesInput, opts ...request.Option) (*TerminateInstancesOutput, error)

TerminateInstancesWithContext is the same as TerminateInstances with the addition of the ability to pass a context and additional request options.

See TerminateInstances for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) UnassignIpv6Addresses

func (c *EC2) UnassignIpv6Addresses(input *UnassignIpv6AddressesInput) (*UnassignIpv6AddressesOutput, error)

UnassignIpv6Addresses API operation for Amazon Elastic Compute Cloud.

Unassigns one or more IPv6 addresses from a network interface.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation UnassignIpv6Addresses for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/UnassignIpv6Addresses

func (*EC2) UnassignIpv6AddressesRequest

func (c *EC2) UnassignIpv6AddressesRequest(input *UnassignIpv6AddressesInput) (req *request.Request, output *UnassignIpv6AddressesOutput)

UnassignIpv6AddressesRequest generates a "aws/request.Request" representing the client's request for the UnassignIpv6Addresses operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See UnassignIpv6Addresses for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the UnassignIpv6Addresses method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the UnassignIpv6AddressesRequest method.
req, resp := client.UnassignIpv6AddressesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/UnassignIpv6Addresses

func (*EC2) UnassignIpv6AddressesWithContext

func (c *EC2) UnassignIpv6AddressesWithContext(ctx aws.Context, input *UnassignIpv6AddressesInput, opts ...request.Option) (*UnassignIpv6AddressesOutput, error)

UnassignIpv6AddressesWithContext is the same as UnassignIpv6Addresses with the addition of the ability to pass a context and additional request options.

See UnassignIpv6Addresses for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) UnassignPrivateIpAddresses

func (c *EC2) UnassignPrivateIpAddresses(input *UnassignPrivateIpAddressesInput) (*UnassignPrivateIpAddressesOutput, error)

UnassignPrivateIpAddresses API operation for Amazon Elastic Compute Cloud.

Unassigns one or more secondary private IP addresses from a network interface.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation UnassignPrivateIpAddresses for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/UnassignPrivateIpAddresses

Example (Shared00)

To unassign a secondary private IP address from a network interface This example unassigns the specified private IP address from the specified network interface.

Code:

svc := ec2.New(session.New())
input := &ec2.UnassignPrivateIpAddressesInput{
    NetworkInterfaceId: aws.String("eni-e5aa89a3"),
    PrivateIpAddresses: []*string{
        aws.String("10.0.0.82"),
    },
}

result, err := svc.UnassignPrivateIpAddresses(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*EC2) UnassignPrivateIpAddressesRequest

func (c *EC2) UnassignPrivateIpAddressesRequest(input *UnassignPrivateIpAddressesInput) (req *request.Request, output *UnassignPrivateIpAddressesOutput)

UnassignPrivateIpAddressesRequest generates a "aws/request.Request" representing the client's request for the UnassignPrivateIpAddresses operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See UnassignPrivateIpAddresses for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the UnassignPrivateIpAddresses method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the UnassignPrivateIpAddressesRequest method.
req, resp := client.UnassignPrivateIpAddressesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/UnassignPrivateIpAddresses

func (*EC2) UnassignPrivateIpAddressesWithContext

func (c *EC2) UnassignPrivateIpAddressesWithContext(ctx aws.Context, input *UnassignPrivateIpAddressesInput, opts ...request.Option) (*UnassignPrivateIpAddressesOutput, error)

UnassignPrivateIpAddressesWithContext is the same as UnassignPrivateIpAddresses with the addition of the ability to pass a context and additional request options.

See UnassignPrivateIpAddresses for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) UnmonitorInstances

func (c *EC2) UnmonitorInstances(input *UnmonitorInstancesInput) (*UnmonitorInstancesOutput, error)

UnmonitorInstances API operation for Amazon Elastic Compute Cloud.

Disables detailed monitoring for a running instance. For more information, see Monitoring Your Instances and Volumes (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-cloudwatch.html) in the Amazon Elastic Compute Cloud User Guide.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Elastic Compute Cloud's API operation UnmonitorInstances for usage and error information. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/UnmonitorInstances

func (*EC2) UnmonitorInstancesRequest

func (c *EC2) UnmonitorInstancesRequest(input *UnmonitorInstancesInput) (req *request.Request, output *UnmonitorInstancesOutput)

UnmonitorInstancesRequest generates a "aws/request.Request" representing the client's request for the UnmonitorInstances operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See UnmonitorInstances for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the UnmonitorInstances method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the UnmonitorInstancesRequest method.
req, resp := client.UnmonitorInstancesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/UnmonitorInstances

func (*EC2) UnmonitorInstancesWithContext

func (c *EC2) UnmonitorInstancesWithContext(ctx aws.Context, input *UnmonitorInstancesInput, opts ...request.Option) (*UnmonitorInstancesOutput, error)

UnmonitorInstancesWithContext is the same as UnmonitorInstances with the addition of the ability to pass a context and additional request options.

See UnmonitorInstances for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) WaitUntilBundleTaskComplete

func (c *EC2) WaitUntilBundleTaskComplete(input *DescribeBundleTasksInput) error

WaitUntilBundleTaskComplete uses the Amazon EC2 API operation DescribeBundleTasks to wait for a condition to be met before returning. If the condition is not meet within the max attempt window an error will be returned.

func (*EC2) WaitUntilBundleTaskCompleteWithContext

func (c *EC2) WaitUntilBundleTaskCompleteWithContext(ctx aws.Context, input *DescribeBundleTasksInput, opts ...request.WaiterOption) error

WaitUntilBundleTaskCompleteWithContext is an extended version of WaitUntilBundleTaskComplete. With the support for passing in a context and options to configure the Waiter and the underlying request options.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) WaitUntilConversionTaskCancelled

func (c *EC2) WaitUntilConversionTaskCancelled(input *DescribeConversionTasksInput) error

WaitUntilConversionTaskCancelled uses the Amazon EC2 API operation DescribeConversionTasks to wait for a condition to be met before returning. If the condition is not meet within the max attempt window an error will be returned.

func (*EC2) WaitUntilConversionTaskCancelledWithContext

func (c *EC2) WaitUntilConversionTaskCancelledWithContext(ctx aws.Context, input *DescribeConversionTasksInput, opts ...request.WaiterOption) error

WaitUntilConversionTaskCancelledWithContext is an extended version of WaitUntilConversionTaskCancelled. With the support for passing in a context and options to configure the Waiter and the underlying request options.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) WaitUntilConversionTaskCompleted

func (c *EC2) WaitUntilConversionTaskCompleted(input *DescribeConversionTasksInput) error

WaitUntilConversionTaskCompleted uses the Amazon EC2 API operation DescribeConversionTasks to wait for a condition to be met before returning. If the condition is not meet within the max attempt window an error will be returned.

func (*EC2) WaitUntilConversionTaskCompletedWithContext

func (c *EC2) WaitUntilConversionTaskCompletedWithContext(ctx aws.Context, input *DescribeConversionTasksInput, opts ...request.WaiterOption) error

WaitUntilConversionTaskCompletedWithContext is an extended version of WaitUntilConversionTaskCompleted. With the support for passing in a context and options to configure the Waiter and the underlying request options.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) WaitUntilConversionTaskDeleted

func (c *EC2) WaitUntilConversionTaskDeleted(input *DescribeConversionTasksInput) error

WaitUntilConversionTaskDeleted uses the Amazon EC2 API operation DescribeConversionTasks to wait for a condition to be met before returning. If the condition is not meet within the max attempt window an error will be returned.

func (*EC2) WaitUntilConversionTaskDeletedWithContext

func (c *EC2) WaitUntilConversionTaskDeletedWithContext(ctx aws.Context, input *DescribeConversionTasksInput, opts ...request.WaiterOption) error

WaitUntilConversionTaskDeletedWithContext is an extended version of WaitUntilConversionTaskDeleted. With the support for passing in a context and options to configure the Waiter and the underlying request options.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) WaitUntilCustomerGatewayAvailable

func (c *EC2) WaitUntilCustomerGatewayAvailable(input *DescribeCustomerGatewaysInput) error

WaitUntilCustomerGatewayAvailable uses the Amazon EC2 API operation DescribeCustomerGateways to wait for a condition to be met before returning. If the condition is not meet within the max attempt window an error will be returned.

func (*EC2) WaitUntilCustomerGatewayAvailableWithContext

func (c *EC2) WaitUntilCustomerGatewayAvailableWithContext(ctx aws.Context, input *DescribeCustomerGatewaysInput, opts ...request.WaiterOption) error

WaitUntilCustomerGatewayAvailableWithContext is an extended version of WaitUntilCustomerGatewayAvailable. With the support for passing in a context and options to configure the Waiter and the underlying request options.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) WaitUntilExportTaskCancelled

func (c *EC2) WaitUntilExportTaskCancelled(input *DescribeExportTasksInput) error

WaitUntilExportTaskCancelled uses the Amazon EC2 API operation DescribeExportTasks to wait for a condition to be met before returning. If the condition is not meet within the max attempt window an error will be returned.

func (*EC2) WaitUntilExportTaskCancelledWithContext

func (c *EC2) WaitUntilExportTaskCancelledWithContext(ctx aws.Context, input *DescribeExportTasksInput, opts ...request.WaiterOption) error

WaitUntilExportTaskCancelledWithContext is an extended version of WaitUntilExportTaskCancelled. With the support for passing in a context and options to configure the Waiter and the underlying request options.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) WaitUntilExportTaskCompleted

func (c *EC2) WaitUntilExportTaskCompleted(input *DescribeExportTasksInput) error

WaitUntilExportTaskCompleted uses the Amazon EC2 API operation DescribeExportTasks to wait for a condition to be met before returning. If the condition is not meet within the max attempt window an error will be returned.

func (*EC2) WaitUntilExportTaskCompletedWithContext

func (c *EC2) WaitUntilExportTaskCompletedWithContext(ctx aws.Context, input *DescribeExportTasksInput, opts ...request.WaiterOption) error

WaitUntilExportTaskCompletedWithContext is an extended version of WaitUntilExportTaskCompleted. With the support for passing in a context and options to configure the Waiter and the underlying request options.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) WaitUntilImageAvailable

func (c *EC2) WaitUntilImageAvailable(input *DescribeImagesInput) error

WaitUntilImageAvailable uses the Amazon EC2 API operation DescribeImages to wait for a condition to be met before returning. If the condition is not meet within the max attempt window an error will be returned.

func (*EC2) WaitUntilImageAvailableWithContext

func (c *EC2) WaitUntilImageAvailableWithContext(ctx aws.Context, input *DescribeImagesInput, opts ...request.WaiterOption) error

WaitUntilImageAvailableWithContext is an extended version of WaitUntilImageAvailable. With the support for passing in a context and options to configure the Waiter and the underlying request options.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) WaitUntilImageExists

func (c *EC2) WaitUntilImageExists(input *DescribeImagesInput) error

WaitUntilImageExists uses the Amazon EC2 API operation DescribeImages to wait for a condition to be met before returning. If the condition is not meet within the max attempt window an error will be returned.

func (*EC2) WaitUntilImageExistsWithContext

func (c *EC2) WaitUntilImageExistsWithContext(ctx aws.Context, input *DescribeImagesInput, opts ...request.WaiterOption) error

WaitUntilImageExistsWithContext is an extended version of WaitUntilImageExists. With the support for passing in a context and options to configure the Waiter and the underlying request options.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) WaitUntilInstanceExists

func (c *EC2) WaitUntilInstanceExists(input *DescribeInstancesInput) error

WaitUntilInstanceExists uses the Amazon EC2 API operation DescribeInstances to wait for a condition to be met before returning. If the condition is not meet within the max attempt window an error will be returned.

func (*EC2) WaitUntilInstanceExistsWithContext

func (c *EC2) WaitUntilInstanceExistsWithContext(ctx aws.Context, input *DescribeInstancesInput, opts ...request.WaiterOption) error

WaitUntilInstanceExistsWithContext is an extended version of WaitUntilInstanceExists. With the support for passing in a context and options to configure the Waiter and the underlying request options.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) WaitUntilInstanceRunning

func (c *EC2) WaitUntilInstanceRunning(input *DescribeInstancesInput) error

WaitUntilInstanceRunning uses the Amazon EC2 API operation DescribeInstances to wait for a condition to be met before returning. If the condition is not meet within the max attempt window an error will be returned.

func (*EC2) WaitUntilInstanceRunningWithContext

func (c *EC2) WaitUntilInstanceRunningWithContext(ctx aws.Context, input *DescribeInstancesInput, opts ...request.WaiterOption) error

WaitUntilInstanceRunningWithContext is an extended version of WaitUntilInstanceRunning. With the support for passing in a context and options to configure the Waiter and the underlying request options.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) WaitUntilInstanceStatusOk

func (c *EC2) WaitUntilInstanceStatusOk(input *DescribeInstanceStatusInput) error

WaitUntilInstanceStatusOk uses the Amazon EC2 API operation DescribeInstanceStatus to wait for a condition to be met before returning. If the condition is not meet within the max attempt window an error will be returned.

func (*EC2) WaitUntilInstanceStatusOkWithContext

func (c *EC2) WaitUntilInstanceStatusOkWithContext(ctx aws.Context, input *DescribeInstanceStatusInput, opts ...request.WaiterOption) error

WaitUntilInstanceStatusOkWithContext is an extended version of WaitUntilInstanceStatusOk. With the support for passing in a context and options to configure the Waiter and the underlying request options.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) WaitUntilInstanceStopped

func (c *EC2) WaitUntilInstanceStopped(input *DescribeInstancesInput) error

WaitUntilInstanceStopped uses the Amazon EC2 API operation DescribeInstances to wait for a condition to be met before returning. If the condition is not meet within the max attempt window an error will be returned.

func (*EC2) WaitUntilInstanceStoppedWithContext

func (c *EC2) WaitUntilInstanceStoppedWithContext(ctx aws.Context, input *DescribeInstancesInput, opts ...request.WaiterOption) error

WaitUntilInstanceStoppedWithContext is an extended version of WaitUntilInstanceStopped. With the support for passing in a context and options to configure the Waiter and the underlying request options.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) WaitUntilInstanceTerminated

func (c *EC2) WaitUntilInstanceTerminated(input *DescribeInstancesInput) error

WaitUntilInstanceTerminated uses the Amazon EC2 API operation DescribeInstances to wait for a condition to be met before returning. If the condition is not meet within the max attempt window an error will be returned.

func (*EC2) WaitUntilInstanceTerminatedWithContext

func (c *EC2) WaitUntilInstanceTerminatedWithContext(ctx aws.Context, input *DescribeInstancesInput, opts ...request.WaiterOption) error

WaitUntilInstanceTerminatedWithContext is an extended version of WaitUntilInstanceTerminated. With the support for passing in a context and options to configure the Waiter and the underlying request options.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) WaitUntilKeyPairExists

func (c *EC2) WaitUntilKeyPairExists(input *DescribeKeyPairsInput) error

WaitUntilKeyPairExists uses the Amazon EC2 API operation DescribeKeyPairs to wait for a condition to be met before returning. If the condition is not meet within the max attempt window an error will be returned.

func (*EC2) WaitUntilKeyPairExistsWithContext

func (c *EC2) WaitUntilKeyPairExistsWithContext(ctx aws.Context, input *DescribeKeyPairsInput, opts ...request.WaiterOption) error

WaitUntilKeyPairExistsWithContext is an extended version of WaitUntilKeyPairExists. With the support for passing in a context and options to configure the Waiter and the underlying request options.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) WaitUntilNatGatewayAvailable

func (c *EC2) WaitUntilNatGatewayAvailable(input *DescribeNatGatewaysInput) error

WaitUntilNatGatewayAvailable uses the Amazon EC2 API operation DescribeNatGateways to wait for a condition to be met before returning. If the condition is not meet within the max attempt window an error will be returned.

func (*EC2) WaitUntilNatGatewayAvailableWithContext

func (c *EC2) WaitUntilNatGatewayAvailableWithContext(ctx aws.Context, input *DescribeNatGatewaysInput, opts ...request.WaiterOption) error

WaitUntilNatGatewayAvailableWithContext is an extended version of WaitUntilNatGatewayAvailable. With the support for passing in a context and options to configure the Waiter and the underlying request options.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) WaitUntilNetworkInterfaceAvailable

func (c *EC2) WaitUntilNetworkInterfaceAvailable(input *DescribeNetworkInterfacesInput) error

WaitUntilNetworkInterfaceAvailable uses the Amazon EC2 API operation DescribeNetworkInterfaces to wait for a condition to be met before returning. If the condition is not meet within the max attempt window an error will be returned.

func (*EC2) WaitUntilNetworkInterfaceAvailableWithContext

func (c *EC2) WaitUntilNetworkInterfaceAvailableWithContext(ctx aws.Context, input *DescribeNetworkInterfacesInput, opts ...request.WaiterOption) error

WaitUntilNetworkInterfaceAvailableWithContext is an extended version of WaitUntilNetworkInterfaceAvailable. With the support for passing in a context and options to configure the Waiter and the underlying request options.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) WaitUntilPasswordDataAvailable

func (c *EC2) WaitUntilPasswordDataAvailable(input *GetPasswordDataInput) error

WaitUntilPasswordDataAvailable uses the Amazon EC2 API operation GetPasswordData to wait for a condition to be met before returning. If the condition is not meet within the max attempt window an error will be returned.

func (*EC2) WaitUntilPasswordDataAvailableWithContext

func (c *EC2) WaitUntilPasswordDataAvailableWithContext(ctx aws.Context, input *GetPasswordDataInput, opts ...request.WaiterOption) error

WaitUntilPasswordDataAvailableWithContext is an extended version of WaitUntilPasswordDataAvailable. With the support for passing in a context and options to configure the Waiter and the underlying request options.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) WaitUntilSnapshotCompleted

func (c *EC2) WaitUntilSnapshotCompleted(input *DescribeSnapshotsInput) error

WaitUntilSnapshotCompleted uses the Amazon EC2 API operation DescribeSnapshots to wait for a condition to be met before returning. If the condition is not meet within the max attempt window an error will be returned.

func (*EC2) WaitUntilSnapshotCompletedWithContext

func (c *EC2) WaitUntilSnapshotCompletedWithContext(ctx aws.Context, input *DescribeSnapshotsInput, opts ...request.WaiterOption) error

WaitUntilSnapshotCompletedWithContext is an extended version of WaitUntilSnapshotCompleted. With the support for passing in a context and options to configure the Waiter and the underlying request options.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) WaitUntilSpotInstanceRequestFulfilled

func (c *EC2) WaitUntilSpotInstanceRequestFulfilled(input *DescribeSpotInstanceRequestsInput) error

WaitUntilSpotInstanceRequestFulfilled uses the Amazon EC2 API operation DescribeSpotInstanceRequests to wait for a condition to be met before returning. If the condition is not meet within the max attempt window an error will be returned.

func (*EC2) WaitUntilSpotInstanceRequestFulfilledWithContext

func (c *EC2) WaitUntilSpotInstanceRequestFulfilledWithContext(ctx aws.Context, input *DescribeSpotInstanceRequestsInput, opts ...request.WaiterOption) error

WaitUntilSpotInstanceRequestFulfilledWithContext is an extended version of WaitUntilSpotInstanceRequestFulfilled. With the support for passing in a context and options to configure the Waiter and the underlying request options.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) WaitUntilSubnetAvailable

func (c *EC2) WaitUntilSubnetAvailable(input *DescribeSubnetsInput) error

WaitUntilSubnetAvailable uses the Amazon EC2 API operation DescribeSubnets to wait for a condition to be met before returning. If the condition is not meet within the max attempt window an error will be returned.

func (*EC2) WaitUntilSubnetAvailableWithContext

func (c *EC2) WaitUntilSubnetAvailableWithContext(ctx aws.Context, input *DescribeSubnetsInput, opts ...request.WaiterOption) error

WaitUntilSubnetAvailableWithContext is an extended version of WaitUntilSubnetAvailable. With the support for passing in a context and options to configure the Waiter and the underlying request options.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) WaitUntilSystemStatusOk

func (c *EC2) WaitUntilSystemStatusOk(input *DescribeInstanceStatusInput) error

WaitUntilSystemStatusOk uses the Amazon EC2 API operation DescribeInstanceStatus to wait for a condition to be met before returning. If the condition is not meet within the max attempt window an error will be returned.

func (*EC2) WaitUntilSystemStatusOkWithContext

func (c *EC2) WaitUntilSystemStatusOkWithContext(ctx aws.Context, input *DescribeInstanceStatusInput, opts ...request.WaiterOption) error

WaitUntilSystemStatusOkWithContext is an extended version of WaitUntilSystemStatusOk. With the support for passing in a context and options to configure the Waiter and the underlying request options.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) WaitUntilVolumeAvailable

func (c *EC2) WaitUntilVolumeAvailable(input *DescribeVolumesInput) error

WaitUntilVolumeAvailable uses the Amazon EC2 API operation DescribeVolumes to wait for a condition to be met before returning. If the condition is not meet within the max attempt window an error will be returned.

func (*EC2) WaitUntilVolumeAvailableWithContext

func (c *EC2) WaitUntilVolumeAvailableWithContext(ctx aws.Context, input *DescribeVolumesInput, opts ...request.WaiterOption) error

WaitUntilVolumeAvailableWithContext is an extended version of WaitUntilVolumeAvailable. With the support for passing in a context and options to configure the Waiter and the underlying request options.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) WaitUntilVolumeDeleted

func (c *EC2) WaitUntilVolumeDeleted(input *DescribeVolumesInput) error

WaitUntilVolumeDeleted uses the Amazon EC2 API operation DescribeVolumes to wait for a condition to be met before returning. If the condition is not meet within the max attempt window an error will be returned.

func (*EC2) WaitUntilVolumeDeletedWithContext

func (c *EC2) WaitUntilVolumeDeletedWithContext(ctx aws.Context, input *DescribeVolumesInput, opts ...request.WaiterOption) error

WaitUntilVolumeDeletedWithContext is an extended version of WaitUntilVolumeDeleted. With the support for passing in a context and options to configure the Waiter and the underlying request options.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) WaitUntilVolumeInUse

func (c *EC2) WaitUntilVolumeInUse(input *DescribeVolumesInput) error

WaitUntilVolumeInUse uses the Amazon EC2 API operation DescribeVolumes to wait for a condition to be met before returning. If the condition is not meet within the max attempt window an error will be returned.

func (*EC2) WaitUntilVolumeInUseWithContext

func (c *EC2) WaitUntilVolumeInUseWithContext(ctx aws.Context, input *DescribeVolumesInput, opts ...request.WaiterOption) error

WaitUntilVolumeInUseWithContext is an extended version of WaitUntilVolumeInUse. With the support for passing in a context and options to configure the Waiter and the underlying request options.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) WaitUntilVpcAvailable

func (c *EC2) WaitUntilVpcAvailable(input *DescribeVpcsInput) error

WaitUntilVpcAvailable uses the Amazon EC2 API operation DescribeVpcs to wait for a condition to be met before returning. If the condition is not meet within the max attempt window an error will be returned.

func (*EC2) WaitUntilVpcAvailableWithContext

func (c *EC2) WaitUntilVpcAvailableWithContext(ctx aws.Context, input *DescribeVpcsInput, opts ...request.WaiterOption) error

WaitUntilVpcAvailableWithContext is an extended version of WaitUntilVpcAvailable. With the support for passing in a context and options to configure the Waiter and the underlying request options.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) WaitUntilVpcExists

func (c *EC2) WaitUntilVpcExists(input *DescribeVpcsInput) error

WaitUntilVpcExists uses the Amazon EC2 API operation DescribeVpcs to wait for a condition to be met before returning. If the condition is not meet within the max attempt window an error will be returned.

func (*EC2) WaitUntilVpcExistsWithContext

func (c *EC2) WaitUntilVpcExistsWithContext(ctx aws.Context, input *DescribeVpcsInput, opts ...request.WaiterOption) error

WaitUntilVpcExistsWithContext is an extended version of WaitUntilVpcExists. With the support for passing in a context and options to configure the Waiter and the underlying request options.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) WaitUntilVpcPeeringConnectionDeleted

func (c *EC2) WaitUntilVpcPeeringConnectionDeleted(input *DescribeVpcPeeringConnectionsInput) error

WaitUntilVpcPeeringConnectionDeleted uses the Amazon EC2 API operation DescribeVpcPeeringConnections to wait for a condition to be met before returning. If the condition is not meet within the max attempt window an error will be returned.

func (*EC2) WaitUntilVpcPeeringConnectionDeletedWithContext

func (c *EC2) WaitUntilVpcPeeringConnectionDeletedWithContext(ctx aws.Context, input *DescribeVpcPeeringConnectionsInput, opts ...request.WaiterOption) error

WaitUntilVpcPeeringConnectionDeletedWithContext is an extended version of WaitUntilVpcPeeringConnectionDeleted. With the support for passing in a context and options to configure the Waiter and the underlying request options.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) WaitUntilVpcPeeringConnectionExists

func (c *EC2) WaitUntilVpcPeeringConnectionExists(input *DescribeVpcPeeringConnectionsInput) error

WaitUntilVpcPeeringConnectionExists uses the Amazon EC2 API operation DescribeVpcPeeringConnections to wait for a condition to be met before returning. If the condition is not meet within the max attempt window an error will be returned.

func (*EC2) WaitUntilVpcPeeringConnectionExistsWithContext

func (c *EC2) WaitUntilVpcPeeringConnectionExistsWithContext(ctx aws.Context, input *DescribeVpcPeeringConnectionsInput, opts ...request.WaiterOption) error

WaitUntilVpcPeeringConnectionExistsWithContext is an extended version of WaitUntilVpcPeeringConnectionExists. With the support for passing in a context and options to configure the Waiter and the underlying request options.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) WaitUntilVpnConnectionAvailable

func (c *EC2) WaitUntilVpnConnectionAvailable(input *DescribeVpnConnectionsInput) error

WaitUntilVpnConnectionAvailable uses the Amazon EC2 API operation DescribeVpnConnections to wait for a condition to be met before returning. If the condition is not meet within the max attempt window an error will be returned.

func (*EC2) WaitUntilVpnConnectionAvailableWithContext

func (c *EC2) WaitUntilVpnConnectionAvailableWithContext(ctx aws.Context, input *DescribeVpnConnectionsInput, opts ...request.WaiterOption) error

WaitUntilVpnConnectionAvailableWithContext is an extended version of WaitUntilVpnConnectionAvailable. With the support for passing in a context and options to configure the Waiter and the underlying request options.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*EC2) WaitUntilVpnConnectionDeleted

func (c *EC2) WaitUntilVpnConnectionDeleted(input *DescribeVpnConnectionsInput) error

WaitUntilVpnConnectionDeleted uses the Amazon EC2 API operation DescribeVpnConnections to wait for a condition to be met before returning. If the condition is not meet within the max attempt window an error will be returned.

func (*EC2) WaitUntilVpnConnectionDeletedWithContext

func (c *EC2) WaitUntilVpnConnectionDeletedWithContext(ctx aws.Context, input *DescribeVpnConnectionsInput, opts ...request.WaiterOption) error

WaitUntilVpnConnectionDeletedWithContext is an extended version of WaitUntilVpnConnectionDeleted. With the support for passing in a context and options to configure the Waiter and the underlying request options.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

type EbsBlockDevice

Describes a block device for an EBS volume. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EbsBlockDevice

type EbsBlockDevice struct {

    // Indicates whether the EBS volume is deleted on instance termination.
    DeleteOnTermination *bool `locationName:"deleteOnTermination" type:"boolean"`

    // Indicates whether the EBS volume is encrypted. Encrypted Amazon EBS volumes
    // may only be attached to instances that support Amazon EBS encryption.
    Encrypted *bool `locationName:"encrypted" type:"boolean"`

    // The number of I/O operations per second (IOPS) that the volume supports.
    // For io1, this represents the number of IOPS that are provisioned for the
    // volume. For gp2, this represents the baseline performance of the volume and
    // the rate at which the volume accumulates I/O credits for bursting. For more
    // information about General Purpose SSD baseline performance, I/O credits,
    // and bursting, see Amazon EBS Volume Types (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSVolumeTypes.html)
    // in the Amazon Elastic Compute Cloud User Guide.
    //
    // Constraint: Range is 100-20000 IOPS for io1 volumes and 100-10000 IOPS for
    // gp2 volumes.
    //
    // Condition: This parameter is required for requests to create io1 volumes;
    // it is not used in requests to create gp2, st1, sc1, or standard volumes.
    Iops *int64 `locationName:"iops" type:"integer"`

    // The ID of the snapshot.
    SnapshotId *string `locationName:"snapshotId" type:"string"`

    // The size of the volume, in GiB.
    //
    // Constraints: 1-16384 for General Purpose SSD (gp2), 4-16384 for Provisioned
    // IOPS SSD (io1), 500-16384 for Throughput Optimized HDD (st1), 500-16384 for
    // Cold HDD (sc1), and 1-1024 for Magnetic (standard) volumes. If you specify
    // a snapshot, the volume size must be equal to or larger than the snapshot
    // size.
    //
    // Default: If you're creating the volume from a snapshot and don't specify
    // a volume size, the default is the snapshot size.
    VolumeSize *int64 `locationName:"volumeSize" type:"integer"`

    // The volume type: gp2, io1, st1, sc1, or standard.
    //
    // Default: standard
    VolumeType *string `locationName:"volumeType" type:"string" enum:"VolumeType"`
    // contains filtered or unexported fields
}

func (EbsBlockDevice) GoString

func (s EbsBlockDevice) GoString() string

GoString returns the string representation

func (*EbsBlockDevice) SetDeleteOnTermination

func (s *EbsBlockDevice) SetDeleteOnTermination(v bool) *EbsBlockDevice

SetDeleteOnTermination sets the DeleteOnTermination field's value.

func (*EbsBlockDevice) SetEncrypted

func (s *EbsBlockDevice) SetEncrypted(v bool) *EbsBlockDevice

SetEncrypted sets the Encrypted field's value.

func (*EbsBlockDevice) SetIops

func (s *EbsBlockDevice) SetIops(v int64) *EbsBlockDevice

SetIops sets the Iops field's value.

func (*EbsBlockDevice) SetSnapshotId

func (s *EbsBlockDevice) SetSnapshotId(v string) *EbsBlockDevice

SetSnapshotId sets the SnapshotId field's value.

func (*EbsBlockDevice) SetVolumeSize

func (s *EbsBlockDevice) SetVolumeSize(v int64) *EbsBlockDevice

SetVolumeSize sets the VolumeSize field's value.

func (*EbsBlockDevice) SetVolumeType

func (s *EbsBlockDevice) SetVolumeType(v string) *EbsBlockDevice

SetVolumeType sets the VolumeType field's value.

func (EbsBlockDevice) String

func (s EbsBlockDevice) String() string

String returns the string representation

type EbsInstanceBlockDevice

Describes a parameter used to set up an EBS volume in a block device mapping. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EbsInstanceBlockDevice

type EbsInstanceBlockDevice struct {

    // The time stamp when the attachment initiated.
    AttachTime *time.Time `locationName:"attachTime" type:"timestamp" timestampFormat:"iso8601"`

    // Indicates whether the volume is deleted on instance termination.
    DeleteOnTermination *bool `locationName:"deleteOnTermination" type:"boolean"`

    // The attachment state.
    Status *string `locationName:"status" type:"string" enum:"AttachmentStatus"`

    // The ID of the EBS volume.
    VolumeId *string `locationName:"volumeId" type:"string"`
    // contains filtered or unexported fields
}

func (EbsInstanceBlockDevice) GoString

func (s EbsInstanceBlockDevice) GoString() string

GoString returns the string representation

func (*EbsInstanceBlockDevice) SetAttachTime

func (s *EbsInstanceBlockDevice) SetAttachTime(v time.Time) *EbsInstanceBlockDevice

SetAttachTime sets the AttachTime field's value.

func (*EbsInstanceBlockDevice) SetDeleteOnTermination

func (s *EbsInstanceBlockDevice) SetDeleteOnTermination(v bool) *EbsInstanceBlockDevice

SetDeleteOnTermination sets the DeleteOnTermination field's value.

func (*EbsInstanceBlockDevice) SetStatus

func (s *EbsInstanceBlockDevice) SetStatus(v string) *EbsInstanceBlockDevice

SetStatus sets the Status field's value.

func (*EbsInstanceBlockDevice) SetVolumeId

func (s *EbsInstanceBlockDevice) SetVolumeId(v string) *EbsInstanceBlockDevice

SetVolumeId sets the VolumeId field's value.

func (EbsInstanceBlockDevice) String

func (s EbsInstanceBlockDevice) String() string

String returns the string representation

type EbsInstanceBlockDeviceSpecification

Describes information used to set up an EBS volume specified in a block device mapping. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EbsInstanceBlockDeviceSpecification

type EbsInstanceBlockDeviceSpecification struct {

    // Indicates whether the volume is deleted on instance termination.
    DeleteOnTermination *bool `locationName:"deleteOnTermination" type:"boolean"`

    // The ID of the EBS volume.
    VolumeId *string `locationName:"volumeId" type:"string"`
    // contains filtered or unexported fields
}

func (EbsInstanceBlockDeviceSpecification) GoString

func (s EbsInstanceBlockDeviceSpecification) GoString() string

GoString returns the string representation

func (*EbsInstanceBlockDeviceSpecification) SetDeleteOnTermination

func (s *EbsInstanceBlockDeviceSpecification) SetDeleteOnTermination(v bool) *EbsInstanceBlockDeviceSpecification

SetDeleteOnTermination sets the DeleteOnTermination field's value.

func (*EbsInstanceBlockDeviceSpecification) SetVolumeId

func (s *EbsInstanceBlockDeviceSpecification) SetVolumeId(v string) *EbsInstanceBlockDeviceSpecification

SetVolumeId sets the VolumeId field's value.

func (EbsInstanceBlockDeviceSpecification) String

func (s EbsInstanceBlockDeviceSpecification) String() string

String returns the string representation

type EgressOnlyInternetGateway

Describes an egress-only Internet gateway. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EgressOnlyInternetGateway

type EgressOnlyInternetGateway struct {

    // Information about the attachment of the egress-only Internet gateway.
    Attachments []*InternetGatewayAttachment `locationName:"attachmentSet" locationNameList:"item" type:"list"`

    // The ID of the egress-only Internet gateway.
    EgressOnlyInternetGatewayId *string `locationName:"egressOnlyInternetGatewayId" type:"string"`
    // contains filtered or unexported fields
}

func (EgressOnlyInternetGateway) GoString

func (s EgressOnlyInternetGateway) GoString() string

GoString returns the string representation

func (*EgressOnlyInternetGateway) SetAttachments

func (s *EgressOnlyInternetGateway) SetAttachments(v []*InternetGatewayAttachment) *EgressOnlyInternetGateway

SetAttachments sets the Attachments field's value.

func (*EgressOnlyInternetGateway) SetEgressOnlyInternetGatewayId

func (s *EgressOnlyInternetGateway) SetEgressOnlyInternetGatewayId(v string) *EgressOnlyInternetGateway

SetEgressOnlyInternetGatewayId sets the EgressOnlyInternetGatewayId field's value.

func (EgressOnlyInternetGateway) String

func (s EgressOnlyInternetGateway) String() string

String returns the string representation

type EnableVgwRoutePropagationInput

Contains the parameters for EnableVgwRoutePropagation. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EnableVgwRoutePropagationRequest

type EnableVgwRoutePropagationInput struct {

    // The ID of the virtual private gateway.
    //
    // GatewayId is a required field
    GatewayId *string `type:"string" required:"true"`

    // The ID of the route table.
    //
    // RouteTableId is a required field
    RouteTableId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (EnableVgwRoutePropagationInput) GoString

func (s EnableVgwRoutePropagationInput) GoString() string

GoString returns the string representation

func (*EnableVgwRoutePropagationInput) SetGatewayId

func (s *EnableVgwRoutePropagationInput) SetGatewayId(v string) *EnableVgwRoutePropagationInput

SetGatewayId sets the GatewayId field's value.

func (*EnableVgwRoutePropagationInput) SetRouteTableId

func (s *EnableVgwRoutePropagationInput) SetRouteTableId(v string) *EnableVgwRoutePropagationInput

SetRouteTableId sets the RouteTableId field's value.

func (EnableVgwRoutePropagationInput) String

func (s EnableVgwRoutePropagationInput) String() string

String returns the string representation

func (*EnableVgwRoutePropagationInput) Validate

func (s *EnableVgwRoutePropagationInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type EnableVgwRoutePropagationOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EnableVgwRoutePropagationOutput

type EnableVgwRoutePropagationOutput struct {
    // contains filtered or unexported fields
}

func (EnableVgwRoutePropagationOutput) GoString

func (s EnableVgwRoutePropagationOutput) GoString() string

GoString returns the string representation

func (EnableVgwRoutePropagationOutput) String

func (s EnableVgwRoutePropagationOutput) String() string

String returns the string representation

type EnableVolumeIOInput

Contains the parameters for EnableVolumeIO. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EnableVolumeIORequest

type EnableVolumeIOInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the volume.
    //
    // VolumeId is a required field
    VolumeId *string `locationName:"volumeId" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (EnableVolumeIOInput) GoString

func (s EnableVolumeIOInput) GoString() string

GoString returns the string representation

func (*EnableVolumeIOInput) SetDryRun

func (s *EnableVolumeIOInput) SetDryRun(v bool) *EnableVolumeIOInput

SetDryRun sets the DryRun field's value.

func (*EnableVolumeIOInput) SetVolumeId

func (s *EnableVolumeIOInput) SetVolumeId(v string) *EnableVolumeIOInput

SetVolumeId sets the VolumeId field's value.

func (EnableVolumeIOInput) String

func (s EnableVolumeIOInput) String() string

String returns the string representation

func (*EnableVolumeIOInput) Validate

func (s *EnableVolumeIOInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type EnableVolumeIOOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EnableVolumeIOOutput

type EnableVolumeIOOutput struct {
    // contains filtered or unexported fields
}

func (EnableVolumeIOOutput) GoString

func (s EnableVolumeIOOutput) GoString() string

GoString returns the string representation

func (EnableVolumeIOOutput) String

func (s EnableVolumeIOOutput) String() string

String returns the string representation

type EnableVpcClassicLinkDnsSupportInput

Contains the parameters for EnableVpcClassicLinkDnsSupport. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EnableVpcClassicLinkDnsSupportRequest

type EnableVpcClassicLinkDnsSupportInput struct {

    // The ID of the VPC.
    VpcId *string `type:"string"`
    // contains filtered or unexported fields
}

func (EnableVpcClassicLinkDnsSupportInput) GoString

func (s EnableVpcClassicLinkDnsSupportInput) GoString() string

GoString returns the string representation

func (*EnableVpcClassicLinkDnsSupportInput) SetVpcId

func (s *EnableVpcClassicLinkDnsSupportInput) SetVpcId(v string) *EnableVpcClassicLinkDnsSupportInput

SetVpcId sets the VpcId field's value.

func (EnableVpcClassicLinkDnsSupportInput) String

func (s EnableVpcClassicLinkDnsSupportInput) String() string

String returns the string representation

type EnableVpcClassicLinkDnsSupportOutput

Contains the output of EnableVpcClassicLinkDnsSupport. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EnableVpcClassicLinkDnsSupportResult

type EnableVpcClassicLinkDnsSupportOutput struct {

    // Returns true if the request succeeds; otherwise, it returns an error.
    Return *bool `locationName:"return" type:"boolean"`
    // contains filtered or unexported fields
}

func (EnableVpcClassicLinkDnsSupportOutput) GoString

func (s EnableVpcClassicLinkDnsSupportOutput) GoString() string

GoString returns the string representation

func (*EnableVpcClassicLinkDnsSupportOutput) SetReturn

func (s *EnableVpcClassicLinkDnsSupportOutput) SetReturn(v bool) *EnableVpcClassicLinkDnsSupportOutput

SetReturn sets the Return field's value.

func (EnableVpcClassicLinkDnsSupportOutput) String

func (s EnableVpcClassicLinkDnsSupportOutput) String() string

String returns the string representation

type EnableVpcClassicLinkInput

Contains the parameters for EnableVpcClassicLink. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EnableVpcClassicLinkRequest

type EnableVpcClassicLinkInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the VPC.
    //
    // VpcId is a required field
    VpcId *string `locationName:"vpcId" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (EnableVpcClassicLinkInput) GoString

func (s EnableVpcClassicLinkInput) GoString() string

GoString returns the string representation

func (*EnableVpcClassicLinkInput) SetDryRun

func (s *EnableVpcClassicLinkInput) SetDryRun(v bool) *EnableVpcClassicLinkInput

SetDryRun sets the DryRun field's value.

func (*EnableVpcClassicLinkInput) SetVpcId

func (s *EnableVpcClassicLinkInput) SetVpcId(v string) *EnableVpcClassicLinkInput

SetVpcId sets the VpcId field's value.

func (EnableVpcClassicLinkInput) String

func (s EnableVpcClassicLinkInput) String() string

String returns the string representation

func (*EnableVpcClassicLinkInput) Validate

func (s *EnableVpcClassicLinkInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type EnableVpcClassicLinkOutput

Contains the output of EnableVpcClassicLink. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EnableVpcClassicLinkResult

type EnableVpcClassicLinkOutput struct {

    // Returns true if the request succeeds; otherwise, it returns an error.
    Return *bool `locationName:"return" type:"boolean"`
    // contains filtered or unexported fields
}

func (EnableVpcClassicLinkOutput) GoString

func (s EnableVpcClassicLinkOutput) GoString() string

GoString returns the string representation

func (*EnableVpcClassicLinkOutput) SetReturn

func (s *EnableVpcClassicLinkOutput) SetReturn(v bool) *EnableVpcClassicLinkOutput

SetReturn sets the Return field's value.

func (EnableVpcClassicLinkOutput) String

func (s EnableVpcClassicLinkOutput) String() string

String returns the string representation

type EventInformation

Describes a Spot fleet event. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EventInformation

type EventInformation struct {

    // The description of the event.
    EventDescription *string `locationName:"eventDescription" type:"string"`

    // The event.
    //
    // The following are the error events.
    //
    //    * iamFleetRoleInvalid - The Spot fleet did not have the required permissions
    //    either to launch or terminate an instance.
    //
    //    * launchSpecTemporarilyBlacklisted - The configuration is not valid and
    //    several attempts to launch instances have failed. For more information,
    //    see the description of the event.
    //
    //    * spotFleetRequestConfigurationInvalid - The configuration is not valid.
    //    For more information, see the description of the event.
    //
    //    * spotInstanceCountLimitExceeded - You've reached the limit on the number
    //    of Spot instances that you can launch.
    //
    // The following are the fleetRequestChange events.
    //
    //    * active - The Spot fleet has been validated and Amazon EC2 is attempting
    //    to maintain the target number of running Spot instances.
    //
    //    * cancelled - The Spot fleet is canceled and has no running Spot instances.
    //    The Spot fleet will be deleted two days after its instances were terminated.
    //
    //    * cancelled_running - The Spot fleet is canceled and will not launch additional
    //    Spot instances, but its existing Spot instances continue to run until
    //    they are interrupted or terminated.
    //
    //    * cancelled_terminating - The Spot fleet is canceled and its Spot instances
    //    are terminating.
    //
    //    * expired - The Spot fleet request has expired. A subsequent event indicates
    //    that the instances were terminated, if the request was created with TerminateInstancesWithExpiration
    //    set.
    //
    //    * modify_in_progress - A request to modify the Spot fleet request was
    //    accepted and is in progress.
    //
    //    * modify_successful - The Spot fleet request was modified.
    //
    //    * price_update - The bid price for a launch configuration was adjusted
    //    because it was too high. This change is permanent.
    //
    //    * submitted - The Spot fleet request is being evaluated and Amazon EC2
    //    is preparing to launch the target number of Spot instances.
    //
    // The following are the instanceChange events.
    //
    //    * launched - A bid was fulfilled and a new instance was launched.
    //
    //    * terminated - An instance was terminated by the user.
    EventSubType *string `locationName:"eventSubType" type:"string"`

    // The ID of the instance. This information is available only for instanceChange
    // events.
    InstanceId *string `locationName:"instanceId" type:"string"`
    // contains filtered or unexported fields
}

func (EventInformation) GoString

func (s EventInformation) GoString() string

GoString returns the string representation

func (*EventInformation) SetEventDescription

func (s *EventInformation) SetEventDescription(v string) *EventInformation

SetEventDescription sets the EventDescription field's value.

func (*EventInformation) SetEventSubType

func (s *EventInformation) SetEventSubType(v string) *EventInformation

SetEventSubType sets the EventSubType field's value.

func (*EventInformation) SetInstanceId

func (s *EventInformation) SetInstanceId(v string) *EventInformation

SetInstanceId sets the InstanceId field's value.

func (EventInformation) String

func (s EventInformation) String() string

String returns the string representation

type ExportTask

Describes an instance export task. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ExportTask

type ExportTask struct {

    // A description of the resource being exported.
    Description *string `locationName:"description" type:"string"`

    // The ID of the export task.
    ExportTaskId *string `locationName:"exportTaskId" type:"string"`

    // Information about the export task.
    ExportToS3Task *ExportToS3Task `locationName:"exportToS3" type:"structure"`

    // Information about the instance to export.
    InstanceExportDetails *InstanceExportDetails `locationName:"instanceExport" type:"structure"`

    // The state of the export task.
    State *string `locationName:"state" type:"string" enum:"ExportTaskState"`

    // The status message related to the export task.
    StatusMessage *string `locationName:"statusMessage" type:"string"`
    // contains filtered or unexported fields
}

func (ExportTask) GoString

func (s ExportTask) GoString() string

GoString returns the string representation

func (*ExportTask) SetDescription

func (s *ExportTask) SetDescription(v string) *ExportTask

SetDescription sets the Description field's value.

func (*ExportTask) SetExportTaskId

func (s *ExportTask) SetExportTaskId(v string) *ExportTask

SetExportTaskId sets the ExportTaskId field's value.

func (*ExportTask) SetExportToS3Task

func (s *ExportTask) SetExportToS3Task(v *ExportToS3Task) *ExportTask

SetExportToS3Task sets the ExportToS3Task field's value.

func (*ExportTask) SetInstanceExportDetails

func (s *ExportTask) SetInstanceExportDetails(v *InstanceExportDetails) *ExportTask

SetInstanceExportDetails sets the InstanceExportDetails field's value.

func (*ExportTask) SetState

func (s *ExportTask) SetState(v string) *ExportTask

SetState sets the State field's value.

func (*ExportTask) SetStatusMessage

func (s *ExportTask) SetStatusMessage(v string) *ExportTask

SetStatusMessage sets the StatusMessage field's value.

func (ExportTask) String

func (s ExportTask) String() string

String returns the string representation

type ExportToS3Task

Describes the format and location for an instance export task. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ExportToS3Task

type ExportToS3Task struct {

    // The container format used to combine disk images with metadata (such as OVF).
    // If absent, only the disk image is exported.
    ContainerFormat *string `locationName:"containerFormat" type:"string" enum:"ContainerFormat"`

    // The format for the exported image.
    DiskImageFormat *string `locationName:"diskImageFormat" type:"string" enum:"DiskImageFormat"`

    // The S3 bucket for the destination image. The destination bucket must exist
    // and grant WRITE and READ_ACP permissions to the AWS account vm-import-export@amazon.com.
    S3Bucket *string `locationName:"s3Bucket" type:"string"`

    // The encryption key for your S3 bucket.
    S3Key *string `locationName:"s3Key" type:"string"`
    // contains filtered or unexported fields
}

func (ExportToS3Task) GoString

func (s ExportToS3Task) GoString() string

GoString returns the string representation

func (*ExportToS3Task) SetContainerFormat

func (s *ExportToS3Task) SetContainerFormat(v string) *ExportToS3Task

SetContainerFormat sets the ContainerFormat field's value.

func (*ExportToS3Task) SetDiskImageFormat

func (s *ExportToS3Task) SetDiskImageFormat(v string) *ExportToS3Task

SetDiskImageFormat sets the DiskImageFormat field's value.

func (*ExportToS3Task) SetS3Bucket

func (s *ExportToS3Task) SetS3Bucket(v string) *ExportToS3Task

SetS3Bucket sets the S3Bucket field's value.

func (*ExportToS3Task) SetS3Key

func (s *ExportToS3Task) SetS3Key(v string) *ExportToS3Task

SetS3Key sets the S3Key field's value.

func (ExportToS3Task) String

func (s ExportToS3Task) String() string

String returns the string representation

type ExportToS3TaskSpecification

Describes an instance export task. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ExportToS3TaskSpecification

type ExportToS3TaskSpecification struct {

    // The container format used to combine disk images with metadata (such as OVF).
    // If absent, only the disk image is exported.
    ContainerFormat *string `locationName:"containerFormat" type:"string" enum:"ContainerFormat"`

    // The format for the exported image.
    DiskImageFormat *string `locationName:"diskImageFormat" type:"string" enum:"DiskImageFormat"`

    // The S3 bucket for the destination image. The destination bucket must exist
    // and grant WRITE and READ_ACP permissions to the AWS account vm-import-export@amazon.com.
    S3Bucket *string `locationName:"s3Bucket" type:"string"`

    // The image is written to a single object in the S3 bucket at the S3 key s3prefix
    // + exportTaskId + '.' + diskImageFormat.
    S3Prefix *string `locationName:"s3Prefix" type:"string"`
    // contains filtered or unexported fields
}

func (ExportToS3TaskSpecification) GoString

func (s ExportToS3TaskSpecification) GoString() string

GoString returns the string representation

func (*ExportToS3TaskSpecification) SetContainerFormat

func (s *ExportToS3TaskSpecification) SetContainerFormat(v string) *ExportToS3TaskSpecification

SetContainerFormat sets the ContainerFormat field's value.

func (*ExportToS3TaskSpecification) SetDiskImageFormat

func (s *ExportToS3TaskSpecification) SetDiskImageFormat(v string) *ExportToS3TaskSpecification

SetDiskImageFormat sets the DiskImageFormat field's value.

func (*ExportToS3TaskSpecification) SetS3Bucket

func (s *ExportToS3TaskSpecification) SetS3Bucket(v string) *ExportToS3TaskSpecification

SetS3Bucket sets the S3Bucket field's value.

func (*ExportToS3TaskSpecification) SetS3Prefix

func (s *ExportToS3TaskSpecification) SetS3Prefix(v string) *ExportToS3TaskSpecification

SetS3Prefix sets the S3Prefix field's value.

func (ExportToS3TaskSpecification) String

func (s ExportToS3TaskSpecification) String() string

String returns the string representation

type Filter

A filter name and value pair that is used to return a more specific list of results. Filters can be used to match a set of resources by various criteria, such as tags, attributes, or IDs. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Filter

type Filter struct {

    // The name of the filter. Filter names are case-sensitive.
    Name *string `type:"string"`

    // One or more filter values. Filter values are case-sensitive.
    Values []*string `locationName:"Value" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (Filter) GoString

func (s Filter) GoString() string

GoString returns the string representation

func (*Filter) SetName

func (s *Filter) SetName(v string) *Filter

SetName sets the Name field's value.

func (*Filter) SetValues

func (s *Filter) SetValues(v []*string) *Filter

SetValues sets the Values field's value.

func (Filter) String

func (s Filter) String() string

String returns the string representation

type FlowLog

Describes a flow log. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/FlowLog

type FlowLog struct {

    // The date and time the flow log was created.
    CreationTime *time.Time `locationName:"creationTime" type:"timestamp" timestampFormat:"iso8601"`

    // Information about the error that occurred. Rate limited indicates that CloudWatch
    // logs throttling has been applied for one or more network interfaces, or that
    // you've reached the limit on the number of CloudWatch Logs log groups that
    // you can create. Access error indicates that the IAM role associated with
    // the flow log does not have sufficient permissions to publish to CloudWatch
    // Logs. Unknown error indicates an internal error.
    DeliverLogsErrorMessage *string `locationName:"deliverLogsErrorMessage" type:"string"`

    // The ARN of the IAM role that posts logs to CloudWatch Logs.
    DeliverLogsPermissionArn *string `locationName:"deliverLogsPermissionArn" type:"string"`

    // The status of the logs delivery (SUCCESS | FAILED).
    DeliverLogsStatus *string `locationName:"deliverLogsStatus" type:"string"`

    // The flow log ID.
    FlowLogId *string `locationName:"flowLogId" type:"string"`

    // The status of the flow log (ACTIVE).
    FlowLogStatus *string `locationName:"flowLogStatus" type:"string"`

    // The name of the flow log group.
    LogGroupName *string `locationName:"logGroupName" type:"string"`

    // The ID of the resource on which the flow log was created.
    ResourceId *string `locationName:"resourceId" type:"string"`

    // The type of traffic captured for the flow log.
    TrafficType *string `locationName:"trafficType" type:"string" enum:"TrafficType"`
    // contains filtered or unexported fields
}

func (FlowLog) GoString

func (s FlowLog) GoString() string

GoString returns the string representation

func (*FlowLog) SetCreationTime

func (s *FlowLog) SetCreationTime(v time.Time) *FlowLog

SetCreationTime sets the CreationTime field's value.

func (*FlowLog) SetDeliverLogsErrorMessage

func (s *FlowLog) SetDeliverLogsErrorMessage(v string) *FlowLog

SetDeliverLogsErrorMessage sets the DeliverLogsErrorMessage field's value.

func (*FlowLog) SetDeliverLogsPermissionArn

func (s *FlowLog) SetDeliverLogsPermissionArn(v string) *FlowLog

SetDeliverLogsPermissionArn sets the DeliverLogsPermissionArn field's value.

func (*FlowLog) SetDeliverLogsStatus

func (s *FlowLog) SetDeliverLogsStatus(v string) *FlowLog

SetDeliverLogsStatus sets the DeliverLogsStatus field's value.

func (*FlowLog) SetFlowLogId

func (s *FlowLog) SetFlowLogId(v string) *FlowLog

SetFlowLogId sets the FlowLogId field's value.

func (*FlowLog) SetFlowLogStatus

func (s *FlowLog) SetFlowLogStatus(v string) *FlowLog

SetFlowLogStatus sets the FlowLogStatus field's value.

func (*FlowLog) SetLogGroupName

func (s *FlowLog) SetLogGroupName(v string) *FlowLog

SetLogGroupName sets the LogGroupName field's value.

func (*FlowLog) SetResourceId

func (s *FlowLog) SetResourceId(v string) *FlowLog

SetResourceId sets the ResourceId field's value.

func (*FlowLog) SetTrafficType

func (s *FlowLog) SetTrafficType(v string) *FlowLog

SetTrafficType sets the TrafficType field's value.

func (FlowLog) String

func (s FlowLog) String() string

String returns the string representation

type FpgaImage

Describes an Amazon FPGA image (AFI). Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/FpgaImage

type FpgaImage struct {

    // The date and time the AFI was created.
    CreateTime *time.Time `locationName:"createTime" type:"timestamp" timestampFormat:"iso8601"`

    // The description of the AFI.
    Description *string `locationName:"description" type:"string"`

    // The global FPGA image identifier (AGFI ID).
    FpgaImageGlobalId *string `locationName:"fpgaImageGlobalId" type:"string"`

    // The FPGA image identifier (AFI ID).
    FpgaImageId *string `locationName:"fpgaImageId" type:"string"`

    // The name of the AFI.
    Name *string `locationName:"name" type:"string"`

    // The alias of the AFI owner. Possible values include self, amazon, and aws-marketplace.
    OwnerAlias *string `locationName:"ownerAlias" type:"string"`

    // The AWS account ID of the AFI owner.
    OwnerId *string `locationName:"ownerId" type:"string"`

    // Information about the PCI bus.
    PciId *PciId `locationName:"pciId" type:"structure"`

    // The product codes for the AFI.
    ProductCodes []*ProductCode `locationName:"productCodes" locationNameList:"item" type:"list"`

    // The version of the AWS Shell that was used to create the bitstream.
    ShellVersion *string `locationName:"shellVersion" type:"string"`

    // Information about the state of the AFI.
    State *FpgaImageState `locationName:"state" type:"structure"`

    // Any tags assigned to the AFI.
    Tags []*Tag `locationName:"tags" locationNameList:"item" type:"list"`

    // The time of the most recent update to the AFI.
    UpdateTime *time.Time `locationName:"updateTime" type:"timestamp" timestampFormat:"iso8601"`
    // contains filtered or unexported fields
}

func (FpgaImage) GoString

func (s FpgaImage) GoString() string

GoString returns the string representation

func (*FpgaImage) SetCreateTime

func (s *FpgaImage) SetCreateTime(v time.Time) *FpgaImage

SetCreateTime sets the CreateTime field's value.

func (*FpgaImage) SetDescription

func (s *FpgaImage) SetDescription(v string) *FpgaImage

SetDescription sets the Description field's value.

func (*FpgaImage) SetFpgaImageGlobalId

func (s *FpgaImage) SetFpgaImageGlobalId(v string) *FpgaImage

SetFpgaImageGlobalId sets the FpgaImageGlobalId field's value.

func (*FpgaImage) SetFpgaImageId

func (s *FpgaImage) SetFpgaImageId(v string) *FpgaImage

SetFpgaImageId sets the FpgaImageId field's value.

func (*FpgaImage) SetName

func (s *FpgaImage) SetName(v string) *FpgaImage

SetName sets the Name field's value.

func (*FpgaImage) SetOwnerAlias

func (s *FpgaImage) SetOwnerAlias(v string) *FpgaImage

SetOwnerAlias sets the OwnerAlias field's value.

func (*FpgaImage) SetOwnerId

func (s *FpgaImage) SetOwnerId(v string) *FpgaImage

SetOwnerId sets the OwnerId field's value.

func (*FpgaImage) SetPciId

func (s *FpgaImage) SetPciId(v *PciId) *FpgaImage

SetPciId sets the PciId field's value.

func (*FpgaImage) SetProductCodes

func (s *FpgaImage) SetProductCodes(v []*ProductCode) *FpgaImage

SetProductCodes sets the ProductCodes field's value.

func (*FpgaImage) SetShellVersion

func (s *FpgaImage) SetShellVersion(v string) *FpgaImage

SetShellVersion sets the ShellVersion field's value.

func (*FpgaImage) SetState

func (s *FpgaImage) SetState(v *FpgaImageState) *FpgaImage

SetState sets the State field's value.

func (*FpgaImage) SetTags

func (s *FpgaImage) SetTags(v []*Tag) *FpgaImage

SetTags sets the Tags field's value.

func (*FpgaImage) SetUpdateTime

func (s *FpgaImage) SetUpdateTime(v time.Time) *FpgaImage

SetUpdateTime sets the UpdateTime field's value.

func (FpgaImage) String

func (s FpgaImage) String() string

String returns the string representation

type FpgaImageState

Describes the state of the bitstream generation process for an Amazon FPGA image (AFI). Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/FpgaImageState

type FpgaImageState struct {

    // The state. The following are the possible values:
    //
    //    * pending - AFI bitstream generation is in progress.
    //
    //    * available - The AFI is available for use.
    //
    //    * failed - AFI bitstream generation failed.
    //
    //    * unavailable - The AFI is no longer available for use.
    Code *string `locationName:"code" type:"string" enum:"FpgaImageStateCode"`

    // If the state is failed, this is the error message.
    Message *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

func (FpgaImageState) GoString

func (s FpgaImageState) GoString() string

GoString returns the string representation

func (*FpgaImageState) SetCode

func (s *FpgaImageState) SetCode(v string) *FpgaImageState

SetCode sets the Code field's value.

func (*FpgaImageState) SetMessage

func (s *FpgaImageState) SetMessage(v string) *FpgaImageState

SetMessage sets the Message field's value.

func (FpgaImageState) String

func (s FpgaImageState) String() string

String returns the string representation

type GetConsoleOutputInput

Contains the parameters for GetConsoleOutput. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetConsoleOutputRequest

type GetConsoleOutputInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the instance.
    //
    // InstanceId is a required field
    InstanceId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (GetConsoleOutputInput) GoString

func (s GetConsoleOutputInput) GoString() string

GoString returns the string representation

func (*GetConsoleOutputInput) SetDryRun

func (s *GetConsoleOutputInput) SetDryRun(v bool) *GetConsoleOutputInput

SetDryRun sets the DryRun field's value.

func (*GetConsoleOutputInput) SetInstanceId

func (s *GetConsoleOutputInput) SetInstanceId(v string) *GetConsoleOutputInput

SetInstanceId sets the InstanceId field's value.

func (GetConsoleOutputInput) String

func (s GetConsoleOutputInput) String() string

String returns the string representation

func (*GetConsoleOutputInput) Validate

func (s *GetConsoleOutputInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetConsoleOutputOutput

Contains the output of GetConsoleOutput. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetConsoleOutputResult

type GetConsoleOutputOutput struct {

    // The ID of the instance.
    InstanceId *string `locationName:"instanceId" type:"string"`

    // The console output, Base64-encoded. If using a command line tool, the tool
    // decodes the output for you.
    Output *string `locationName:"output" type:"string"`

    // The time the output was last updated.
    Timestamp *time.Time `locationName:"timestamp" type:"timestamp" timestampFormat:"iso8601"`
    // contains filtered or unexported fields
}

func (GetConsoleOutputOutput) GoString

func (s GetConsoleOutputOutput) GoString() string

GoString returns the string representation

func (*GetConsoleOutputOutput) SetInstanceId

func (s *GetConsoleOutputOutput) SetInstanceId(v string) *GetConsoleOutputOutput

SetInstanceId sets the InstanceId field's value.

func (*GetConsoleOutputOutput) SetOutput

func (s *GetConsoleOutputOutput) SetOutput(v string) *GetConsoleOutputOutput

SetOutput sets the Output field's value.

func (*GetConsoleOutputOutput) SetTimestamp

func (s *GetConsoleOutputOutput) SetTimestamp(v time.Time) *GetConsoleOutputOutput

SetTimestamp sets the Timestamp field's value.

func (GetConsoleOutputOutput) String

func (s GetConsoleOutputOutput) String() string

String returns the string representation

type GetConsoleScreenshotInput

Contains the parameters for the request. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetConsoleScreenshotRequest

type GetConsoleScreenshotInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `type:"boolean"`

    // The ID of the instance.
    //
    // InstanceId is a required field
    InstanceId *string `type:"string" required:"true"`

    // When set to true, acts as keystroke input and wakes up an instance that's
    // in standby or "sleep" mode.
    WakeUp *bool `type:"boolean"`
    // contains filtered or unexported fields
}

func (GetConsoleScreenshotInput) GoString

func (s GetConsoleScreenshotInput) GoString() string

GoString returns the string representation

func (*GetConsoleScreenshotInput) SetDryRun

func (s *GetConsoleScreenshotInput) SetDryRun(v bool) *GetConsoleScreenshotInput

SetDryRun sets the DryRun field's value.

func (*GetConsoleScreenshotInput) SetInstanceId

func (s *GetConsoleScreenshotInput) SetInstanceId(v string) *GetConsoleScreenshotInput

SetInstanceId sets the InstanceId field's value.

func (*GetConsoleScreenshotInput) SetWakeUp

func (s *GetConsoleScreenshotInput) SetWakeUp(v bool) *GetConsoleScreenshotInput

SetWakeUp sets the WakeUp field's value.

func (GetConsoleScreenshotInput) String

func (s GetConsoleScreenshotInput) String() string

String returns the string representation

func (*GetConsoleScreenshotInput) Validate

func (s *GetConsoleScreenshotInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetConsoleScreenshotOutput

Contains the output of the request. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetConsoleScreenshotResult

type GetConsoleScreenshotOutput struct {

    // The data that comprises the image.
    ImageData *string `locationName:"imageData" type:"string"`

    // The ID of the instance.
    InstanceId *string `locationName:"instanceId" type:"string"`
    // contains filtered or unexported fields
}

func (GetConsoleScreenshotOutput) GoString

func (s GetConsoleScreenshotOutput) GoString() string

GoString returns the string representation

func (*GetConsoleScreenshotOutput) SetImageData

func (s *GetConsoleScreenshotOutput) SetImageData(v string) *GetConsoleScreenshotOutput

SetImageData sets the ImageData field's value.

func (*GetConsoleScreenshotOutput) SetInstanceId

func (s *GetConsoleScreenshotOutput) SetInstanceId(v string) *GetConsoleScreenshotOutput

SetInstanceId sets the InstanceId field's value.

func (GetConsoleScreenshotOutput) String

func (s GetConsoleScreenshotOutput) String() string

String returns the string representation

type GetHostReservationPurchasePreviewInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetHostReservationPurchasePreviewRequest

type GetHostReservationPurchasePreviewInput struct {

    // The ID/s of the Dedicated Host/s that the reservation will be associated
    // with.
    //
    // HostIdSet is a required field
    HostIdSet []*string `locationNameList:"item" type:"list" required:"true"`

    // The offering ID of the reservation.
    //
    // OfferingId is a required field
    OfferingId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (GetHostReservationPurchasePreviewInput) GoString

func (s GetHostReservationPurchasePreviewInput) GoString() string

GoString returns the string representation

func (*GetHostReservationPurchasePreviewInput) SetHostIdSet

func (s *GetHostReservationPurchasePreviewInput) SetHostIdSet(v []*string) *GetHostReservationPurchasePreviewInput

SetHostIdSet sets the HostIdSet field's value.

func (*GetHostReservationPurchasePreviewInput) SetOfferingId

func (s *GetHostReservationPurchasePreviewInput) SetOfferingId(v string) *GetHostReservationPurchasePreviewInput

SetOfferingId sets the OfferingId field's value.

func (GetHostReservationPurchasePreviewInput) String

func (s GetHostReservationPurchasePreviewInput) String() string

String returns the string representation

func (*GetHostReservationPurchasePreviewInput) Validate

func (s *GetHostReservationPurchasePreviewInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetHostReservationPurchasePreviewOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetHostReservationPurchasePreviewResult

type GetHostReservationPurchasePreviewOutput struct {

    // The currency in which the totalUpfrontPrice and totalHourlyPrice amounts
    // are specified. At this time, the only supported currency is USD.
    CurrencyCode *string `locationName:"currencyCode" type:"string" enum:"CurrencyCodeValues"`

    // The purchase information of the Dedicated Host Reservation and the Dedicated
    // Hosts associated with it.
    Purchase []*Purchase `locationName:"purchase" type:"list"`

    // The potential total hourly price of the reservation per hour.
    TotalHourlyPrice *string `locationName:"totalHourlyPrice" type:"string"`

    // The potential total upfront price. This is billed immediately.
    TotalUpfrontPrice *string `locationName:"totalUpfrontPrice" type:"string"`
    // contains filtered or unexported fields
}

func (GetHostReservationPurchasePreviewOutput) GoString

func (s GetHostReservationPurchasePreviewOutput) GoString() string

GoString returns the string representation

func (*GetHostReservationPurchasePreviewOutput) SetCurrencyCode

func (s *GetHostReservationPurchasePreviewOutput) SetCurrencyCode(v string) *GetHostReservationPurchasePreviewOutput

SetCurrencyCode sets the CurrencyCode field's value.

func (*GetHostReservationPurchasePreviewOutput) SetPurchase

func (s *GetHostReservationPurchasePreviewOutput) SetPurchase(v []*Purchase) *GetHostReservationPurchasePreviewOutput

SetPurchase sets the Purchase field's value.

func (*GetHostReservationPurchasePreviewOutput) SetTotalHourlyPrice

func (s *GetHostReservationPurchasePreviewOutput) SetTotalHourlyPrice(v string) *GetHostReservationPurchasePreviewOutput

SetTotalHourlyPrice sets the TotalHourlyPrice field's value.

func (*GetHostReservationPurchasePreviewOutput) SetTotalUpfrontPrice

func (s *GetHostReservationPurchasePreviewOutput) SetTotalUpfrontPrice(v string) *GetHostReservationPurchasePreviewOutput

SetTotalUpfrontPrice sets the TotalUpfrontPrice field's value.

func (GetHostReservationPurchasePreviewOutput) String

func (s GetHostReservationPurchasePreviewOutput) String() string

String returns the string representation

type GetPasswordDataInput

Contains the parameters for GetPasswordData. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetPasswordDataRequest

type GetPasswordDataInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the Windows instance.
    //
    // InstanceId is a required field
    InstanceId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (GetPasswordDataInput) GoString

func (s GetPasswordDataInput) GoString() string

GoString returns the string representation

func (*GetPasswordDataInput) SetDryRun

func (s *GetPasswordDataInput) SetDryRun(v bool) *GetPasswordDataInput

SetDryRun sets the DryRun field's value.

func (*GetPasswordDataInput) SetInstanceId

func (s *GetPasswordDataInput) SetInstanceId(v string) *GetPasswordDataInput

SetInstanceId sets the InstanceId field's value.

func (GetPasswordDataInput) String

func (s GetPasswordDataInput) String() string

String returns the string representation

func (*GetPasswordDataInput) Validate

func (s *GetPasswordDataInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetPasswordDataOutput

Contains the output of GetPasswordData. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetPasswordDataResult

type GetPasswordDataOutput struct {

    // The ID of the Windows instance.
    InstanceId *string `locationName:"instanceId" type:"string"`

    // The password of the instance.
    PasswordData *string `locationName:"passwordData" type:"string"`

    // The time the data was last updated.
    Timestamp *time.Time `locationName:"timestamp" type:"timestamp" timestampFormat:"iso8601"`
    // contains filtered or unexported fields
}

func (GetPasswordDataOutput) GoString

func (s GetPasswordDataOutput) GoString() string

GoString returns the string representation

func (*GetPasswordDataOutput) SetInstanceId

func (s *GetPasswordDataOutput) SetInstanceId(v string) *GetPasswordDataOutput

SetInstanceId sets the InstanceId field's value.

func (*GetPasswordDataOutput) SetPasswordData

func (s *GetPasswordDataOutput) SetPasswordData(v string) *GetPasswordDataOutput

SetPasswordData sets the PasswordData field's value.

func (*GetPasswordDataOutput) SetTimestamp

func (s *GetPasswordDataOutput) SetTimestamp(v time.Time) *GetPasswordDataOutput

SetTimestamp sets the Timestamp field's value.

func (GetPasswordDataOutput) String

func (s GetPasswordDataOutput) String() string

String returns the string representation

type GetReservedInstancesExchangeQuoteInput

Contains the parameters for GetReservedInstanceExchangeQuote. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetReservedInstancesExchangeQuoteRequest

type GetReservedInstancesExchangeQuoteInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `type:"boolean"`

    // The IDs of the Convertible Reserved Instances to exchange.
    //
    // ReservedInstanceIds is a required field
    ReservedInstanceIds []*string `locationName:"ReservedInstanceId" locationNameList:"ReservedInstanceId" type:"list" required:"true"`

    // The configuration requirements of the Convertible Reserved Instances to exchange
    // for your current Convertible Reserved Instances.
    TargetConfigurations []*TargetConfigurationRequest `locationName:"TargetConfiguration" locationNameList:"TargetConfigurationRequest" type:"list"`
    // contains filtered or unexported fields
}

func (GetReservedInstancesExchangeQuoteInput) GoString

func (s GetReservedInstancesExchangeQuoteInput) GoString() string

GoString returns the string representation

func (*GetReservedInstancesExchangeQuoteInput) SetDryRun

func (s *GetReservedInstancesExchangeQuoteInput) SetDryRun(v bool) *GetReservedInstancesExchangeQuoteInput

SetDryRun sets the DryRun field's value.

func (*GetReservedInstancesExchangeQuoteInput) SetReservedInstanceIds

func (s *GetReservedInstancesExchangeQuoteInput) SetReservedInstanceIds(v []*string) *GetReservedInstancesExchangeQuoteInput

SetReservedInstanceIds sets the ReservedInstanceIds field's value.

func (*GetReservedInstancesExchangeQuoteInput) SetTargetConfigurations

func (s *GetReservedInstancesExchangeQuoteInput) SetTargetConfigurations(v []*TargetConfigurationRequest) *GetReservedInstancesExchangeQuoteInput

SetTargetConfigurations sets the TargetConfigurations field's value.

func (GetReservedInstancesExchangeQuoteInput) String

func (s GetReservedInstancesExchangeQuoteInput) String() string

String returns the string representation

func (*GetReservedInstancesExchangeQuoteInput) Validate

func (s *GetReservedInstancesExchangeQuoteInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetReservedInstancesExchangeQuoteOutput

Contains the output of GetReservedInstancesExchangeQuote. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetReservedInstancesExchangeQuoteResult

type GetReservedInstancesExchangeQuoteOutput struct {

    // The currency of the transaction.
    CurrencyCode *string `locationName:"currencyCode" type:"string"`

    // If true, the exchange is valid. If false, the exchange cannot be completed.
    IsValidExchange *bool `locationName:"isValidExchange" type:"boolean"`

    // The new end date of the reservation term.
    OutputReservedInstancesWillExpireAt *time.Time `locationName:"outputReservedInstancesWillExpireAt" type:"timestamp" timestampFormat:"iso8601"`

    // The total true upfront charge for the exchange.
    PaymentDue *string `locationName:"paymentDue" type:"string"`

    // The cost associated with the Reserved Instance.
    ReservedInstanceValueRollup *ReservationValue `locationName:"reservedInstanceValueRollup" type:"structure"`

    // The configuration of your Convertible Reserved Instances.
    ReservedInstanceValueSet []*ReservedInstanceReservationValue `locationName:"reservedInstanceValueSet" locationNameList:"item" type:"list"`

    // The cost associated with the Reserved Instance.
    TargetConfigurationValueRollup *ReservationValue `locationName:"targetConfigurationValueRollup" type:"structure"`

    // The values of the target Convertible Reserved Instances.
    TargetConfigurationValueSet []*TargetReservationValue `locationName:"targetConfigurationValueSet" locationNameList:"item" type:"list"`

    // Describes the reason why the exchange cannot be completed.
    ValidationFailureReason *string `locationName:"validationFailureReason" type:"string"`
    // contains filtered or unexported fields
}

func (GetReservedInstancesExchangeQuoteOutput) GoString

func (s GetReservedInstancesExchangeQuoteOutput) GoString() string

GoString returns the string representation

func (*GetReservedInstancesExchangeQuoteOutput) SetCurrencyCode

func (s *GetReservedInstancesExchangeQuoteOutput) SetCurrencyCode(v string) *GetReservedInstancesExchangeQuoteOutput

SetCurrencyCode sets the CurrencyCode field's value.

func (*GetReservedInstancesExchangeQuoteOutput) SetIsValidExchange

func (s *GetReservedInstancesExchangeQuoteOutput) SetIsValidExchange(v bool) *GetReservedInstancesExchangeQuoteOutput

SetIsValidExchange sets the IsValidExchange field's value.

func (*GetReservedInstancesExchangeQuoteOutput) SetOutputReservedInstancesWillExpireAt

func (s *GetReservedInstancesExchangeQuoteOutput) SetOutputReservedInstancesWillExpireAt(v time.Time) *GetReservedInstancesExchangeQuoteOutput

SetOutputReservedInstancesWillExpireAt sets the OutputReservedInstancesWillExpireAt field's value.

func (*GetReservedInstancesExchangeQuoteOutput) SetPaymentDue

func (s *GetReservedInstancesExchangeQuoteOutput) SetPaymentDue(v string) *GetReservedInstancesExchangeQuoteOutput

SetPaymentDue sets the PaymentDue field's value.

func (*GetReservedInstancesExchangeQuoteOutput) SetReservedInstanceValueRollup

func (s *GetReservedInstancesExchangeQuoteOutput) SetReservedInstanceValueRollup(v *ReservationValue) *GetReservedInstancesExchangeQuoteOutput

SetReservedInstanceValueRollup sets the ReservedInstanceValueRollup field's value.

func (*GetReservedInstancesExchangeQuoteOutput) SetReservedInstanceValueSet

func (s *GetReservedInstancesExchangeQuoteOutput) SetReservedInstanceValueSet(v []*ReservedInstanceReservationValue) *GetReservedInstancesExchangeQuoteOutput

SetReservedInstanceValueSet sets the ReservedInstanceValueSet field's value.

func (*GetReservedInstancesExchangeQuoteOutput) SetTargetConfigurationValueRollup

func (s *GetReservedInstancesExchangeQuoteOutput) SetTargetConfigurationValueRollup(v *ReservationValue) *GetReservedInstancesExchangeQuoteOutput

SetTargetConfigurationValueRollup sets the TargetConfigurationValueRollup field's value.

func (*GetReservedInstancesExchangeQuoteOutput) SetTargetConfigurationValueSet

func (s *GetReservedInstancesExchangeQuoteOutput) SetTargetConfigurationValueSet(v []*TargetReservationValue) *GetReservedInstancesExchangeQuoteOutput

SetTargetConfigurationValueSet sets the TargetConfigurationValueSet field's value.

func (*GetReservedInstancesExchangeQuoteOutput) SetValidationFailureReason

func (s *GetReservedInstancesExchangeQuoteOutput) SetValidationFailureReason(v string) *GetReservedInstancesExchangeQuoteOutput

SetValidationFailureReason sets the ValidationFailureReason field's value.

func (GetReservedInstancesExchangeQuoteOutput) String

func (s GetReservedInstancesExchangeQuoteOutput) String() string

String returns the string representation

type GroupIdentifier

Describes a security group. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GroupIdentifier

type GroupIdentifier struct {

    // The ID of the security group.
    GroupId *string `locationName:"groupId" type:"string"`

    // The name of the security group.
    GroupName *string `locationName:"groupName" type:"string"`
    // contains filtered or unexported fields
}

func (GroupIdentifier) GoString

func (s GroupIdentifier) GoString() string

GoString returns the string representation

func (*GroupIdentifier) SetGroupId

func (s *GroupIdentifier) SetGroupId(v string) *GroupIdentifier

SetGroupId sets the GroupId field's value.

func (*GroupIdentifier) SetGroupName

func (s *GroupIdentifier) SetGroupName(v string) *GroupIdentifier

SetGroupName sets the GroupName field's value.

func (GroupIdentifier) String

func (s GroupIdentifier) String() string

String returns the string representation

type HistoryRecord

Describes an event in the history of the Spot fleet request. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/HistoryRecord

type HistoryRecord struct {

    // Information about the event.
    //
    // EventInformation is a required field
    EventInformation *EventInformation `locationName:"eventInformation" type:"structure" required:"true"`

    // The event type.
    //
    //    * error - Indicates an error with the Spot fleet request.
    //
    //    * fleetRequestChange - Indicates a change in the status or configuration
    //    of the Spot fleet request.
    //
    //    * instanceChange - Indicates that an instance was launched or terminated.
    //
    // EventType is a required field
    EventType *string `locationName:"eventType" type:"string" required:"true" enum:"EventType"`

    // The date and time of the event, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ).
    //
    // Timestamp is a required field
    Timestamp *time.Time `locationName:"timestamp" type:"timestamp" timestampFormat:"iso8601" required:"true"`
    // contains filtered or unexported fields
}

func (HistoryRecord) GoString

func (s HistoryRecord) GoString() string

GoString returns the string representation

func (*HistoryRecord) SetEventInformation

func (s *HistoryRecord) SetEventInformation(v *EventInformation) *HistoryRecord

SetEventInformation sets the EventInformation field's value.

func (*HistoryRecord) SetEventType

func (s *HistoryRecord) SetEventType(v string) *HistoryRecord

SetEventType sets the EventType field's value.

func (*HistoryRecord) SetTimestamp

func (s *HistoryRecord) SetTimestamp(v time.Time) *HistoryRecord

SetTimestamp sets the Timestamp field's value.

func (HistoryRecord) String

func (s HistoryRecord) String() string

String returns the string representation

type Host

Describes the properties of the Dedicated Host. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Host

type Host struct {

    // Whether auto-placement is on or off.
    AutoPlacement *string `locationName:"autoPlacement" type:"string" enum:"AutoPlacement"`

    // The Availability Zone of the Dedicated Host.
    AvailabilityZone *string `locationName:"availabilityZone" type:"string"`

    // The number of new instances that can be launched onto the Dedicated Host.
    AvailableCapacity *AvailableCapacity `locationName:"availableCapacity" type:"structure"`

    // Unique, case-sensitive identifier you provide to ensure idempotency of the
    // request. For more information, see How to Ensure Idempotency (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Run_Instance_Idempotency.html)
    // in the Amazon Elastic Compute Cloud User Guide.
    ClientToken *string `locationName:"clientToken" type:"string"`

    // The ID of the Dedicated Host.
    HostId *string `locationName:"hostId" type:"string"`

    // The hardware specifications of the Dedicated Host.
    HostProperties *HostProperties `locationName:"hostProperties" type:"structure"`

    // The reservation ID of the Dedicated Host. This returns a null response if
    // the Dedicated Host doesn't have an associated reservation.
    HostReservationId *string `locationName:"hostReservationId" type:"string"`

    // The IDs and instance type that are currently running on the Dedicated Host.
    Instances []*HostInstance `locationName:"instances" locationNameList:"item" type:"list"`

    // The Dedicated Host's state.
    State *string `locationName:"state" type:"string" enum:"AllocationState"`
    // contains filtered or unexported fields
}

func (Host) GoString

func (s Host) GoString() string

GoString returns the string representation

func (*Host) SetAutoPlacement

func (s *Host) SetAutoPlacement(v string) *Host

SetAutoPlacement sets the AutoPlacement field's value.

func (*Host) SetAvailabilityZone

func (s *Host) SetAvailabilityZone(v string) *Host

SetAvailabilityZone sets the AvailabilityZone field's value.

func (*Host) SetAvailableCapacity

func (s *Host) SetAvailableCapacity(v *AvailableCapacity) *Host

SetAvailableCapacity sets the AvailableCapacity field's value.

func (*Host) SetClientToken

func (s *Host) SetClientToken(v string) *Host

SetClientToken sets the ClientToken field's value.

func (*Host) SetHostId

func (s *Host) SetHostId(v string) *Host

SetHostId sets the HostId field's value.

func (*Host) SetHostProperties

func (s *Host) SetHostProperties(v *HostProperties) *Host

SetHostProperties sets the HostProperties field's value.

func (*Host) SetHostReservationId

func (s *Host) SetHostReservationId(v string) *Host

SetHostReservationId sets the HostReservationId field's value.

func (*Host) SetInstances

func (s *Host) SetInstances(v []*HostInstance) *Host

SetInstances sets the Instances field's value.

func (*Host) SetState

func (s *Host) SetState(v string) *Host

SetState sets the State field's value.

func (Host) String

func (s Host) String() string

String returns the string representation

type HostInstance

Describes an instance running on a Dedicated Host. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/HostInstance

type HostInstance struct {

    // the IDs of instances that are running on the Dedicated Host.
    InstanceId *string `locationName:"instanceId" type:"string"`

    // The instance type size (for example, m3.medium) of the running instance.
    InstanceType *string `locationName:"instanceType" type:"string"`
    // contains filtered or unexported fields
}

func (HostInstance) GoString

func (s HostInstance) GoString() string

GoString returns the string representation

func (*HostInstance) SetInstanceId

func (s *HostInstance) SetInstanceId(v string) *HostInstance

SetInstanceId sets the InstanceId field's value.

func (*HostInstance) SetInstanceType

func (s *HostInstance) SetInstanceType(v string) *HostInstance

SetInstanceType sets the InstanceType field's value.

func (HostInstance) String

func (s HostInstance) String() string

String returns the string representation

type HostOffering

Details about the Dedicated Host Reservation offering. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/HostOffering

type HostOffering struct {

    // The currency of the offering.
    CurrencyCode *string `locationName:"currencyCode" type:"string" enum:"CurrencyCodeValues"`

    // The duration of the offering (in seconds).
    Duration *int64 `locationName:"duration" type:"integer"`

    // The hourly price of the offering.
    HourlyPrice *string `locationName:"hourlyPrice" type:"string"`

    // The instance family of the offering.
    InstanceFamily *string `locationName:"instanceFamily" type:"string"`

    // The ID of the offering.
    OfferingId *string `locationName:"offeringId" type:"string"`

    // The available payment option.
    PaymentOption *string `locationName:"paymentOption" type:"string" enum:"PaymentOption"`

    // The upfront price of the offering. Does not apply to No Upfront offerings.
    UpfrontPrice *string `locationName:"upfrontPrice" type:"string"`
    // contains filtered or unexported fields
}

func (HostOffering) GoString

func (s HostOffering) GoString() string

GoString returns the string representation

func (*HostOffering) SetCurrencyCode

func (s *HostOffering) SetCurrencyCode(v string) *HostOffering

SetCurrencyCode sets the CurrencyCode field's value.

func (*HostOffering) SetDuration

func (s *HostOffering) SetDuration(v int64) *HostOffering

SetDuration sets the Duration field's value.

func (*HostOffering) SetHourlyPrice

func (s *HostOffering) SetHourlyPrice(v string) *HostOffering

SetHourlyPrice sets the HourlyPrice field's value.

func (*HostOffering) SetInstanceFamily

func (s *HostOffering) SetInstanceFamily(v string) *HostOffering

SetInstanceFamily sets the InstanceFamily field's value.

func (*HostOffering) SetOfferingId

func (s *HostOffering) SetOfferingId(v string) *HostOffering

SetOfferingId sets the OfferingId field's value.

func (*HostOffering) SetPaymentOption

func (s *HostOffering) SetPaymentOption(v string) *HostOffering

SetPaymentOption sets the PaymentOption field's value.

func (*HostOffering) SetUpfrontPrice

func (s *HostOffering) SetUpfrontPrice(v string) *HostOffering

SetUpfrontPrice sets the UpfrontPrice field's value.

func (HostOffering) String

func (s HostOffering) String() string

String returns the string representation

type HostProperties

Describes properties of a Dedicated Host. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/HostProperties

type HostProperties struct {

    // The number of cores on the Dedicated Host.
    Cores *int64 `locationName:"cores" type:"integer"`

    // The instance type size that the Dedicated Host supports (for example, m3.medium).
    InstanceType *string `locationName:"instanceType" type:"string"`

    // The number of sockets on the Dedicated Host.
    Sockets *int64 `locationName:"sockets" type:"integer"`

    // The number of vCPUs on the Dedicated Host.
    TotalVCpus *int64 `locationName:"totalVCpus" type:"integer"`
    // contains filtered or unexported fields
}

func (HostProperties) GoString

func (s HostProperties) GoString() string

GoString returns the string representation

func (*HostProperties) SetCores

func (s *HostProperties) SetCores(v int64) *HostProperties

SetCores sets the Cores field's value.

func (*HostProperties) SetInstanceType

func (s *HostProperties) SetInstanceType(v string) *HostProperties

SetInstanceType sets the InstanceType field's value.

func (*HostProperties) SetSockets

func (s *HostProperties) SetSockets(v int64) *HostProperties

SetSockets sets the Sockets field's value.

func (*HostProperties) SetTotalVCpus

func (s *HostProperties) SetTotalVCpus(v int64) *HostProperties

SetTotalVCpus sets the TotalVCpus field's value.

func (HostProperties) String

func (s HostProperties) String() string

String returns the string representation

type HostReservation

Details about the Dedicated Host Reservation and associated Dedicated Hosts. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/HostReservation

type HostReservation struct {

    // The number of Dedicated Hosts the reservation is associated with.
    Count *int64 `locationName:"count" type:"integer"`

    // The currency in which the upfrontPrice and hourlyPrice amounts are specified.
    // At this time, the only supported currency is USD.
    CurrencyCode *string `locationName:"currencyCode" type:"string" enum:"CurrencyCodeValues"`

    // The length of the reservation's term, specified in seconds. Can be 31536000
    // (1 year) | 94608000 (3 years).
    Duration *int64 `locationName:"duration" type:"integer"`

    // The date and time that the reservation ends.
    End *time.Time `locationName:"end" type:"timestamp" timestampFormat:"iso8601"`

    // The IDs of the Dedicated Hosts associated with the reservation.
    HostIdSet []*string `locationName:"hostIdSet" locationNameList:"item" type:"list"`

    // The ID of the reservation that specifies the associated Dedicated Hosts.
    HostReservationId *string `locationName:"hostReservationId" type:"string"`

    // The hourly price of the reservation.
    HourlyPrice *string `locationName:"hourlyPrice" type:"string"`

    // The instance family of the Dedicated Host Reservation. The instance family
    // on the Dedicated Host must be the same in order for it to benefit from the
    // reservation.
    InstanceFamily *string `locationName:"instanceFamily" type:"string"`

    // The ID of the reservation. This remains the same regardless of which Dedicated
    // Hosts are associated with it.
    OfferingId *string `locationName:"offeringId" type:"string"`

    // The payment option selected for this reservation.
    PaymentOption *string `locationName:"paymentOption" type:"string" enum:"PaymentOption"`

    // The date and time that the reservation started.
    Start *time.Time `locationName:"start" type:"timestamp" timestampFormat:"iso8601"`

    // The state of the reservation.
    State *string `locationName:"state" type:"string" enum:"ReservationState"`

    // The upfront price of the reservation.
    UpfrontPrice *string `locationName:"upfrontPrice" type:"string"`
    // contains filtered or unexported fields
}

func (HostReservation) GoString

func (s HostReservation) GoString() string

GoString returns the string representation

func (*HostReservation) SetCount

func (s *HostReservation) SetCount(v int64) *HostReservation

SetCount sets the Count field's value.

func (*HostReservation) SetCurrencyCode

func (s *HostReservation) SetCurrencyCode(v string) *HostReservation

SetCurrencyCode sets the CurrencyCode field's value.

func (*HostReservation) SetDuration

func (s *HostReservation) SetDuration(v int64) *HostReservation

SetDuration sets the Duration field's value.

func (*HostReservation) SetEnd

func (s *HostReservation) SetEnd(v time.Time) *HostReservation

SetEnd sets the End field's value.

func (*HostReservation) SetHostIdSet

func (s *HostReservation) SetHostIdSet(v []*string) *HostReservation

SetHostIdSet sets the HostIdSet field's value.

func (*HostReservation) SetHostReservationId

func (s *HostReservation) SetHostReservationId(v string) *HostReservation

SetHostReservationId sets the HostReservationId field's value.

func (*HostReservation) SetHourlyPrice

func (s *HostReservation) SetHourlyPrice(v string) *HostReservation

SetHourlyPrice sets the HourlyPrice field's value.

func (*HostReservation) SetInstanceFamily

func (s *HostReservation) SetInstanceFamily(v string) *HostReservation

SetInstanceFamily sets the InstanceFamily field's value.

func (*HostReservation) SetOfferingId

func (s *HostReservation) SetOfferingId(v string) *HostReservation

SetOfferingId sets the OfferingId field's value.

func (*HostReservation) SetPaymentOption

func (s *HostReservation) SetPaymentOption(v string) *HostReservation

SetPaymentOption sets the PaymentOption field's value.

func (*HostReservation) SetStart

func (s *HostReservation) SetStart(v time.Time) *HostReservation

SetStart sets the Start field's value.

func (*HostReservation) SetState

func (s *HostReservation) SetState(v string) *HostReservation

SetState sets the State field's value.

func (*HostReservation) SetUpfrontPrice

func (s *HostReservation) SetUpfrontPrice(v string) *HostReservation

SetUpfrontPrice sets the UpfrontPrice field's value.

func (HostReservation) String

func (s HostReservation) String() string

String returns the string representation

type IamInstanceProfile

Describes an IAM instance profile. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IamInstanceProfile

type IamInstanceProfile struct {

    // The Amazon Resource Name (ARN) of the instance profile.
    Arn *string `locationName:"arn" type:"string"`

    // The ID of the instance profile.
    Id *string `locationName:"id" type:"string"`
    // contains filtered or unexported fields
}

func (IamInstanceProfile) GoString

func (s IamInstanceProfile) GoString() string

GoString returns the string representation

func (*IamInstanceProfile) SetArn

func (s *IamInstanceProfile) SetArn(v string) *IamInstanceProfile

SetArn sets the Arn field's value.

func (*IamInstanceProfile) SetId

func (s *IamInstanceProfile) SetId(v string) *IamInstanceProfile

SetId sets the Id field's value.

func (IamInstanceProfile) String

func (s IamInstanceProfile) String() string

String returns the string representation

type IamInstanceProfileAssociation

Describes an association between an IAM instance profile and an instance. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IamInstanceProfileAssociation

type IamInstanceProfileAssociation struct {

    // The ID of the association.
    AssociationId *string `locationName:"associationId" type:"string"`

    // The IAM instance profile.
    IamInstanceProfile *IamInstanceProfile `locationName:"iamInstanceProfile" type:"structure"`

    // The ID of the instance.
    InstanceId *string `locationName:"instanceId" type:"string"`

    // The state of the association.
    State *string `locationName:"state" type:"string" enum:"IamInstanceProfileAssociationState"`

    // The time the IAM instance profile was associated with the instance.
    Timestamp *time.Time `locationName:"timestamp" type:"timestamp" timestampFormat:"iso8601"`
    // contains filtered or unexported fields
}

func (IamInstanceProfileAssociation) GoString

func (s IamInstanceProfileAssociation) GoString() string

GoString returns the string representation

func (*IamInstanceProfileAssociation) SetAssociationId

func (s *IamInstanceProfileAssociation) SetAssociationId(v string) *IamInstanceProfileAssociation

SetAssociationId sets the AssociationId field's value.

func (*IamInstanceProfileAssociation) SetIamInstanceProfile

func (s *IamInstanceProfileAssociation) SetIamInstanceProfile(v *IamInstanceProfile) *IamInstanceProfileAssociation

SetIamInstanceProfile sets the IamInstanceProfile field's value.

func (*IamInstanceProfileAssociation) SetInstanceId

func (s *IamInstanceProfileAssociation) SetInstanceId(v string) *IamInstanceProfileAssociation

SetInstanceId sets the InstanceId field's value.

func (*IamInstanceProfileAssociation) SetState

func (s *IamInstanceProfileAssociation) SetState(v string) *IamInstanceProfileAssociation

SetState sets the State field's value.

func (*IamInstanceProfileAssociation) SetTimestamp

func (s *IamInstanceProfileAssociation) SetTimestamp(v time.Time) *IamInstanceProfileAssociation

SetTimestamp sets the Timestamp field's value.

func (IamInstanceProfileAssociation) String

func (s IamInstanceProfileAssociation) String() string

String returns the string representation

type IamInstanceProfileSpecification

Describes an IAM instance profile. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IamInstanceProfileSpecification

type IamInstanceProfileSpecification struct {

    // The Amazon Resource Name (ARN) of the instance profile.
    Arn *string `locationName:"arn" type:"string"`

    // The name of the instance profile.
    Name *string `locationName:"name" type:"string"`
    // contains filtered or unexported fields
}

func (IamInstanceProfileSpecification) GoString

func (s IamInstanceProfileSpecification) GoString() string

GoString returns the string representation

func (*IamInstanceProfileSpecification) SetArn

func (s *IamInstanceProfileSpecification) SetArn(v string) *IamInstanceProfileSpecification

SetArn sets the Arn field's value.

func (*IamInstanceProfileSpecification) SetName

func (s *IamInstanceProfileSpecification) SetName(v string) *IamInstanceProfileSpecification

SetName sets the Name field's value.

func (IamInstanceProfileSpecification) String

func (s IamInstanceProfileSpecification) String() string

String returns the string representation

type IcmpTypeCode

Describes the ICMP type and code. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IcmpTypeCode

type IcmpTypeCode struct {

    // The ICMP code. A value of -1 means all codes for the specified ICMP type.
    Code *int64 `locationName:"code" type:"integer"`

    // The ICMP type. A value of -1 means all types.
    Type *int64 `locationName:"type" type:"integer"`
    // contains filtered or unexported fields
}

func (IcmpTypeCode) GoString

func (s IcmpTypeCode) GoString() string

GoString returns the string representation

func (*IcmpTypeCode) SetCode

func (s *IcmpTypeCode) SetCode(v int64) *IcmpTypeCode

SetCode sets the Code field's value.

func (*IcmpTypeCode) SetType

func (s *IcmpTypeCode) SetType(v int64) *IcmpTypeCode

SetType sets the Type field's value.

func (IcmpTypeCode) String

func (s IcmpTypeCode) String() string

String returns the string representation

type IdFormat

Describes the ID format for a resource. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IdFormat

type IdFormat struct {

    // The date in UTC at which you are permanently switched over to using longer
    // IDs. If a deadline is not yet available for this resource type, this field
    // is not returned.
    Deadline *time.Time `locationName:"deadline" type:"timestamp" timestampFormat:"iso8601"`

    // The type of resource.
    Resource *string `locationName:"resource" type:"string"`

    // Indicates whether longer IDs (17-character IDs) are enabled for the resource.
    UseLongIds *bool `locationName:"useLongIds" type:"boolean"`
    // contains filtered or unexported fields
}

func (IdFormat) GoString

func (s IdFormat) GoString() string

GoString returns the string representation

func (*IdFormat) SetDeadline

func (s *IdFormat) SetDeadline(v time.Time) *IdFormat

SetDeadline sets the Deadline field's value.

func (*IdFormat) SetResource

func (s *IdFormat) SetResource(v string) *IdFormat

SetResource sets the Resource field's value.

func (*IdFormat) SetUseLongIds

func (s *IdFormat) SetUseLongIds(v bool) *IdFormat

SetUseLongIds sets the UseLongIds field's value.

func (IdFormat) String

func (s IdFormat) String() string

String returns the string representation

type Image

Describes an image. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Image

type Image struct {

    // The architecture of the image.
    Architecture *string `locationName:"architecture" type:"string" enum:"ArchitectureValues"`

    // Any block device mapping entries.
    BlockDeviceMappings []*BlockDeviceMapping `locationName:"blockDeviceMapping" locationNameList:"item" type:"list"`

    // The date and time the image was created.
    CreationDate *string `locationName:"creationDate" type:"string"`

    // The description of the AMI that was provided during image creation.
    Description *string `locationName:"description" type:"string"`

    // Specifies whether enhanced networking with ENA is enabled.
    EnaSupport *bool `locationName:"enaSupport" type:"boolean"`

    // The hypervisor type of the image.
    Hypervisor *string `locationName:"hypervisor" type:"string" enum:"HypervisorType"`

    // The ID of the AMI.
    ImageId *string `locationName:"imageId" type:"string"`

    // The location of the AMI.
    ImageLocation *string `locationName:"imageLocation" type:"string"`

    // The AWS account alias (for example, amazon, self) or the AWS account ID of
    // the AMI owner.
    ImageOwnerAlias *string `locationName:"imageOwnerAlias" type:"string"`

    // The type of image.
    ImageType *string `locationName:"imageType" type:"string" enum:"ImageTypeValues"`

    // The kernel associated with the image, if any. Only applicable for machine
    // images.
    KernelId *string `locationName:"kernelId" type:"string"`

    // The name of the AMI that was provided during image creation.
    Name *string `locationName:"name" type:"string"`

    // The AWS account ID of the image owner.
    OwnerId *string `locationName:"imageOwnerId" type:"string"`

    // The value is Windows for Windows AMIs; otherwise blank.
    Platform *string `locationName:"platform" type:"string" enum:"PlatformValues"`

    // Any product codes associated with the AMI.
    ProductCodes []*ProductCode `locationName:"productCodes" locationNameList:"item" type:"list"`

    // Indicates whether the image has public launch permissions. The value is true
    // if this image has public launch permissions or false if it has only implicit
    // and explicit launch permissions.
    Public *bool `locationName:"isPublic" type:"boolean"`

    // The RAM disk associated with the image, if any. Only applicable for machine
    // images.
    RamdiskId *string `locationName:"ramdiskId" type:"string"`

    // The device name of the root device (for example, /dev/sda1 or /dev/xvda).
    RootDeviceName *string `locationName:"rootDeviceName" type:"string"`

    // The type of root device used by the AMI. The AMI can use an EBS volume or
    // an instance store volume.
    RootDeviceType *string `locationName:"rootDeviceType" type:"string" enum:"DeviceType"`

    // Specifies whether enhanced networking with the Intel 82599 Virtual Function
    // interface is enabled.
    SriovNetSupport *string `locationName:"sriovNetSupport" type:"string"`

    // The current state of the AMI. If the state is available, the image is successfully
    // registered and can be used to launch an instance.
    State *string `locationName:"imageState" type:"string" enum:"ImageState"`

    // The reason for the state change.
    StateReason *StateReason `locationName:"stateReason" type:"structure"`

    // Any tags assigned to the image.
    Tags []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"`

    // The type of virtualization of the AMI.
    VirtualizationType *string `locationName:"virtualizationType" type:"string" enum:"VirtualizationType"`
    // contains filtered or unexported fields
}

func (Image) GoString

func (s Image) GoString() string

GoString returns the string representation

func (*Image) SetArchitecture

func (s *Image) SetArchitecture(v string) *Image

SetArchitecture sets the Architecture field's value.

func (*Image) SetBlockDeviceMappings

func (s *Image) SetBlockDeviceMappings(v []*BlockDeviceMapping) *Image

SetBlockDeviceMappings sets the BlockDeviceMappings field's value.

func (*Image) SetCreationDate

func (s *Image) SetCreationDate(v string) *Image

SetCreationDate sets the CreationDate field's value.

func (*Image) SetDescription

func (s *Image) SetDescription(v string) *Image

SetDescription sets the Description field's value.

func (*Image) SetEnaSupport

func (s *Image) SetEnaSupport(v bool) *Image

SetEnaSupport sets the EnaSupport field's value.

func (*Image) SetHypervisor

func (s *Image) SetHypervisor(v string) *Image

SetHypervisor sets the Hypervisor field's value.

func (*Image) SetImageId

func (s *Image) SetImageId(v string) *Image

SetImageId sets the ImageId field's value.

func (*Image) SetImageLocation

func (s *Image) SetImageLocation(v string) *Image

SetImageLocation sets the ImageLocation field's value.

func (*Image) SetImageOwnerAlias

func (s *Image) SetImageOwnerAlias(v string) *Image

SetImageOwnerAlias sets the ImageOwnerAlias field's value.

func (*Image) SetImageType

func (s *Image) SetImageType(v string) *Image

SetImageType sets the ImageType field's value.

func (*Image) SetKernelId

func (s *Image) SetKernelId(v string) *Image

SetKernelId sets the KernelId field's value.

func (*Image) SetName

func (s *Image) SetName(v string) *Image

SetName sets the Name field's value.

func (*Image) SetOwnerId

func (s *Image) SetOwnerId(v string) *Image

SetOwnerId sets the OwnerId field's value.

func (*Image) SetPlatform

func (s *Image) SetPlatform(v string) *Image

SetPlatform sets the Platform field's value.

func (*Image) SetProductCodes

func (s *Image) SetProductCodes(v []*ProductCode) *Image

SetProductCodes sets the ProductCodes field's value.

func (*Image) SetPublic

func (s *Image) SetPublic(v bool) *Image

SetPublic sets the Public field's value.

func (*Image) SetRamdiskId

func (s *Image) SetRamdiskId(v string) *Image

SetRamdiskId sets the RamdiskId field's value.

func (*Image) SetRootDeviceName

func (s *Image) SetRootDeviceName(v string) *Image

SetRootDeviceName sets the RootDeviceName field's value.

func (*Image) SetRootDeviceType

func (s *Image) SetRootDeviceType(v string) *Image

SetRootDeviceType sets the RootDeviceType field's value.

func (*Image) SetSriovNetSupport

func (s *Image) SetSriovNetSupport(v string) *Image

SetSriovNetSupport sets the SriovNetSupport field's value.

func (*Image) SetState

func (s *Image) SetState(v string) *Image

SetState sets the State field's value.

func (*Image) SetStateReason

func (s *Image) SetStateReason(v *StateReason) *Image

SetStateReason sets the StateReason field's value.

func (*Image) SetTags

func (s *Image) SetTags(v []*Tag) *Image

SetTags sets the Tags field's value.

func (*Image) SetVirtualizationType

func (s *Image) SetVirtualizationType(v string) *Image

SetVirtualizationType sets the VirtualizationType field's value.

func (Image) String

func (s Image) String() string

String returns the string representation

type ImageDiskContainer

Describes the disk container object for an import image task. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ImageDiskContainer

type ImageDiskContainer struct {

    // The description of the disk image.
    Description *string `type:"string"`

    // The block device mapping for the disk.
    DeviceName *string `type:"string"`

    // The format of the disk image being imported.
    //
    // Valid values: RAW | VHD | VMDK | OVA
    Format *string `type:"string"`

    // The ID of the EBS snapshot to be used for importing the snapshot.
    SnapshotId *string `type:"string"`

    // The URL to the Amazon S3-based disk image being imported. The URL can either
    // be a https URL (https://..) or an Amazon S3 URL (s3://..)
    Url *string `type:"string"`

    // The S3 bucket for the disk image.
    UserBucket *UserBucket `type:"structure"`
    // contains filtered or unexported fields
}

func (ImageDiskContainer) GoString

func (s ImageDiskContainer) GoString() string

GoString returns the string representation

func (*ImageDiskContainer) SetDescription

func (s *ImageDiskContainer) SetDescription(v string) *ImageDiskContainer

SetDescription sets the Description field's value.

func (*ImageDiskContainer) SetDeviceName

func (s *ImageDiskContainer) SetDeviceName(v string) *ImageDiskContainer

SetDeviceName sets the DeviceName field's value.

func (*ImageDiskContainer) SetFormat

func (s *ImageDiskContainer) SetFormat(v string) *ImageDiskContainer

SetFormat sets the Format field's value.

func (*ImageDiskContainer) SetSnapshotId

func (s *ImageDiskContainer) SetSnapshotId(v string) *ImageDiskContainer

SetSnapshotId sets the SnapshotId field's value.

func (*ImageDiskContainer) SetUrl

func (s *ImageDiskContainer) SetUrl(v string) *ImageDiskContainer

SetUrl sets the Url field's value.

func (*ImageDiskContainer) SetUserBucket

func (s *ImageDiskContainer) SetUserBucket(v *UserBucket) *ImageDiskContainer

SetUserBucket sets the UserBucket field's value.

func (ImageDiskContainer) String

func (s ImageDiskContainer) String() string

String returns the string representation

type ImportImageInput

Contains the parameters for ImportImage. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ImportImageRequest

type ImportImageInput struct {

    // The architecture of the virtual machine.
    //
    // Valid values: i386 | x86_64
    Architecture *string `type:"string"`

    // The client-specific data.
    ClientData *ClientData `type:"structure"`

    // The token to enable idempotency for VM import requests.
    ClientToken *string `type:"string"`

    // A description string for the import image task.
    Description *string `type:"string"`

    // Information about the disk containers.
    DiskContainers []*ImageDiskContainer `locationName:"DiskContainer" locationNameList:"item" type:"list"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `type:"boolean"`

    // The target hypervisor platform.
    //
    // Valid values: xen
    Hypervisor *string `type:"string"`

    // The license type to be used for the Amazon Machine Image (AMI) after importing.
    //
    // Note: You may only use BYOL if you have existing licenses with rights to
    // use these licenses in a third party cloud like AWS. For more information,
    // see Prerequisites (http://docs.aws.amazon.com/vm-import/latest/userguide/vmimport-image-import.html#prerequisites-image)
    // in the VM Import/Export User Guide.
    //
    // Valid values: AWS | BYOL
    LicenseType *string `type:"string"`

    // The operating system of the virtual machine.
    //
    // Valid values: Windows | Linux
    Platform *string `type:"string"`

    // The name of the role to use when not using the default role, 'vmimport'.
    RoleName *string `type:"string"`
    // contains filtered or unexported fields
}

func (ImportImageInput) GoString

func (s ImportImageInput) GoString() string

GoString returns the string representation

func (*ImportImageInput) SetArchitecture

func (s *ImportImageInput) SetArchitecture(v string) *ImportImageInput

SetArchitecture sets the Architecture field's value.

func (*ImportImageInput) SetClientData

func (s *ImportImageInput) SetClientData(v *ClientData) *ImportImageInput

SetClientData sets the ClientData field's value.

func (*ImportImageInput) SetClientToken

func (s *ImportImageInput) SetClientToken(v string) *ImportImageInput

SetClientToken sets the ClientToken field's value.

func (*ImportImageInput) SetDescription

func (s *ImportImageInput) SetDescription(v string) *ImportImageInput

SetDescription sets the Description field's value.

func (*ImportImageInput) SetDiskContainers

func (s *ImportImageInput) SetDiskContainers(v []*ImageDiskContainer) *ImportImageInput

SetDiskContainers sets the DiskContainers field's value.

func (*ImportImageInput) SetDryRun

func (s *ImportImageInput) SetDryRun(v bool) *ImportImageInput

SetDryRun sets the DryRun field's value.

func (*ImportImageInput) SetHypervisor

func (s *ImportImageInput) SetHypervisor(v string) *ImportImageInput

SetHypervisor sets the Hypervisor field's value.

func (*ImportImageInput) SetLicenseType

func (s *ImportImageInput) SetLicenseType(v string) *ImportImageInput

SetLicenseType sets the LicenseType field's value.

func (*ImportImageInput) SetPlatform

func (s *ImportImageInput) SetPlatform(v string) *ImportImageInput

SetPlatform sets the Platform field's value.

func (*ImportImageInput) SetRoleName

func (s *ImportImageInput) SetRoleName(v string) *ImportImageInput

SetRoleName sets the RoleName field's value.

func (ImportImageInput) String

func (s ImportImageInput) String() string

String returns the string representation

type ImportImageOutput

Contains the output for ImportImage. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ImportImageResult

type ImportImageOutput struct {

    // The architecture of the virtual machine.
    Architecture *string `locationName:"architecture" type:"string"`

    // A description of the import task.
    Description *string `locationName:"description" type:"string"`

    // The target hypervisor of the import task.
    Hypervisor *string `locationName:"hypervisor" type:"string"`

    // The ID of the Amazon Machine Image (AMI) created by the import task.
    ImageId *string `locationName:"imageId" type:"string"`

    // The task ID of the import image task.
    ImportTaskId *string `locationName:"importTaskId" type:"string"`

    // The license type of the virtual machine.
    LicenseType *string `locationName:"licenseType" type:"string"`

    // The operating system of the virtual machine.
    Platform *string `locationName:"platform" type:"string"`

    // The progress of the task.
    Progress *string `locationName:"progress" type:"string"`

    // Information about the snapshots.
    SnapshotDetails []*SnapshotDetail `locationName:"snapshotDetailSet" locationNameList:"item" type:"list"`

    // A brief status of the task.
    Status *string `locationName:"status" type:"string"`

    // A detailed status message of the import task.
    StatusMessage *string `locationName:"statusMessage" type:"string"`
    // contains filtered or unexported fields
}

func (ImportImageOutput) GoString

func (s ImportImageOutput) GoString() string

GoString returns the string representation

func (*ImportImageOutput) SetArchitecture

func (s *ImportImageOutput) SetArchitecture(v string) *ImportImageOutput

SetArchitecture sets the Architecture field's value.

func (*ImportImageOutput) SetDescription

func (s *ImportImageOutput) SetDescription(v string) *ImportImageOutput

SetDescription sets the Description field's value.

func (*ImportImageOutput) SetHypervisor

func (s *ImportImageOutput) SetHypervisor(v string) *ImportImageOutput

SetHypervisor sets the Hypervisor field's value.

func (*ImportImageOutput) SetImageId

func (s *ImportImageOutput) SetImageId(v string) *ImportImageOutput

SetImageId sets the ImageId field's value.

func (*ImportImageOutput) SetImportTaskId

func (s *ImportImageOutput) SetImportTaskId(v string) *ImportImageOutput

SetImportTaskId sets the ImportTaskId field's value.

func (*ImportImageOutput) SetLicenseType

func (s *ImportImageOutput) SetLicenseType(v string) *ImportImageOutput

SetLicenseType sets the LicenseType field's value.

func (*ImportImageOutput) SetPlatform

func (s *ImportImageOutput) SetPlatform(v string) *ImportImageOutput

SetPlatform sets the Platform field's value.

func (*ImportImageOutput) SetProgress

func (s *ImportImageOutput) SetProgress(v string) *ImportImageOutput

SetProgress sets the Progress field's value.

func (*ImportImageOutput) SetSnapshotDetails

func (s *ImportImageOutput) SetSnapshotDetails(v []*SnapshotDetail) *ImportImageOutput

SetSnapshotDetails sets the SnapshotDetails field's value.

func (*ImportImageOutput) SetStatus

func (s *ImportImageOutput) SetStatus(v string) *ImportImageOutput

SetStatus sets the Status field's value.

func (*ImportImageOutput) SetStatusMessage

func (s *ImportImageOutput) SetStatusMessage(v string) *ImportImageOutput

SetStatusMessage sets the StatusMessage field's value.

func (ImportImageOutput) String

func (s ImportImageOutput) String() string

String returns the string representation

type ImportImageTask

Describes an import image task. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ImportImageTask

type ImportImageTask struct {

    // The architecture of the virtual machine.
    //
    // Valid values: i386 | x86_64
    Architecture *string `locationName:"architecture" type:"string"`

    // A description of the import task.
    Description *string `locationName:"description" type:"string"`

    // The target hypervisor for the import task.
    //
    // Valid values: xen
    Hypervisor *string `locationName:"hypervisor" type:"string"`

    // The ID of the Amazon Machine Image (AMI) of the imported virtual machine.
    ImageId *string `locationName:"imageId" type:"string"`

    // The ID of the import image task.
    ImportTaskId *string `locationName:"importTaskId" type:"string"`

    // The license type of the virtual machine.
    LicenseType *string `locationName:"licenseType" type:"string"`

    // The description string for the import image task.
    Platform *string `locationName:"platform" type:"string"`

    // The percentage of progress of the import image task.
    Progress *string `locationName:"progress" type:"string"`

    // Information about the snapshots.
    SnapshotDetails []*SnapshotDetail `locationName:"snapshotDetailSet" locationNameList:"item" type:"list"`

    // A brief status for the import image task.
    Status *string `locationName:"status" type:"string"`

    // A descriptive status message for the import image task.
    StatusMessage *string `locationName:"statusMessage" type:"string"`
    // contains filtered or unexported fields
}

func (ImportImageTask) GoString

func (s ImportImageTask) GoString() string

GoString returns the string representation

func (*ImportImageTask) SetArchitecture

func (s *ImportImageTask) SetArchitecture(v string) *ImportImageTask

SetArchitecture sets the Architecture field's value.

func (*ImportImageTask) SetDescription

func (s *ImportImageTask) SetDescription(v string) *ImportImageTask

SetDescription sets the Description field's value.

func (*ImportImageTask) SetHypervisor

func (s *ImportImageTask) SetHypervisor(v string) *ImportImageTask

SetHypervisor sets the Hypervisor field's value.

func (*ImportImageTask) SetImageId

func (s *ImportImageTask) SetImageId(v string) *ImportImageTask

SetImageId sets the ImageId field's value.

func (*ImportImageTask) SetImportTaskId

func (s *ImportImageTask) SetImportTaskId(v string) *ImportImageTask

SetImportTaskId sets the ImportTaskId field's value.

func (*ImportImageTask) SetLicenseType

func (s *ImportImageTask) SetLicenseType(v string) *ImportImageTask

SetLicenseType sets the LicenseType field's value.

func (*ImportImageTask) SetPlatform

func (s *ImportImageTask) SetPlatform(v string) *ImportImageTask

SetPlatform sets the Platform field's value.

func (*ImportImageTask) SetProgress

func (s *ImportImageTask) SetProgress(v string) *ImportImageTask

SetProgress sets the Progress field's value.

func (*ImportImageTask) SetSnapshotDetails

func (s *ImportImageTask) SetSnapshotDetails(v []*SnapshotDetail) *ImportImageTask

SetSnapshotDetails sets the SnapshotDetails field's value.

func (*ImportImageTask) SetStatus

func (s *ImportImageTask) SetStatus(v string) *ImportImageTask

SetStatus sets the Status field's value.

func (*ImportImageTask) SetStatusMessage

func (s *ImportImageTask) SetStatusMessage(v string) *ImportImageTask

SetStatusMessage sets the StatusMessage field's value.

func (ImportImageTask) String

func (s ImportImageTask) String() string

String returns the string representation

type ImportInstanceInput

Contains the parameters for ImportInstance. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ImportInstanceRequest

type ImportInstanceInput struct {

    // A description for the instance being imported.
    Description *string `locationName:"description" type:"string"`

    // The disk image.
    DiskImages []*DiskImage `locationName:"diskImage" type:"list"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The launch specification.
    LaunchSpecification *ImportInstanceLaunchSpecification `locationName:"launchSpecification" type:"structure"`

    // The instance operating system.
    //
    // Platform is a required field
    Platform *string `locationName:"platform" type:"string" required:"true" enum:"PlatformValues"`
    // contains filtered or unexported fields
}

func (ImportInstanceInput) GoString

func (s ImportInstanceInput) GoString() string

GoString returns the string representation

func (*ImportInstanceInput) SetDescription

func (s *ImportInstanceInput) SetDescription(v string) *ImportInstanceInput

SetDescription sets the Description field's value.

func (*ImportInstanceInput) SetDiskImages

func (s *ImportInstanceInput) SetDiskImages(v []*DiskImage) *ImportInstanceInput

SetDiskImages sets the DiskImages field's value.

func (*ImportInstanceInput) SetDryRun

func (s *ImportInstanceInput) SetDryRun(v bool) *ImportInstanceInput

SetDryRun sets the DryRun field's value.

func (*ImportInstanceInput) SetLaunchSpecification

func (s *ImportInstanceInput) SetLaunchSpecification(v *ImportInstanceLaunchSpecification) *ImportInstanceInput

SetLaunchSpecification sets the LaunchSpecification field's value.

func (*ImportInstanceInput) SetPlatform

func (s *ImportInstanceInput) SetPlatform(v string) *ImportInstanceInput

SetPlatform sets the Platform field's value.

func (ImportInstanceInput) String

func (s ImportInstanceInput) String() string

String returns the string representation

func (*ImportInstanceInput) Validate

func (s *ImportInstanceInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ImportInstanceLaunchSpecification

Describes the launch specification for VM import. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ImportInstanceLaunchSpecification

type ImportInstanceLaunchSpecification struct {

    // Reserved.
    AdditionalInfo *string `locationName:"additionalInfo" type:"string"`

    // The architecture of the instance.
    Architecture *string `locationName:"architecture" type:"string" enum:"ArchitectureValues"`

    // One or more security group IDs.
    GroupIds []*string `locationName:"GroupId" locationNameList:"SecurityGroupId" type:"list"`

    // One or more security group names.
    GroupNames []*string `locationName:"GroupName" locationNameList:"SecurityGroup" type:"list"`

    // Indicates whether an instance stops or terminates when you initiate shutdown
    // from the instance (using the operating system command for system shutdown).
    InstanceInitiatedShutdownBehavior *string `locationName:"instanceInitiatedShutdownBehavior" type:"string" enum:"ShutdownBehavior"`

    // The instance type. For more information about the instance types that you
    // can import, see Instance Types (http://docs.aws.amazon.com/vm-import/latest/userguide/vmimport-image-import.html#vmimport-instance-types)
    // in the VM Import/Export User Guide.
    InstanceType *string `locationName:"instanceType" type:"string" enum:"InstanceType"`

    // Indicates whether monitoring is enabled.
    Monitoring *bool `locationName:"monitoring" type:"boolean"`

    // The placement information for the instance.
    Placement *Placement `locationName:"placement" type:"structure"`

    // [EC2-VPC] An available IP address from the IP address range of the subnet.
    PrivateIpAddress *string `locationName:"privateIpAddress" type:"string"`

    // [EC2-VPC] The ID of the subnet in which to launch the instance.
    SubnetId *string `locationName:"subnetId" type:"string"`

    // The user data to make available to the instance. If you are using an AWS
    // SDK or command line tool, Base64-encoding is performed for you, and you can
    // load the text from a file. Otherwise, you must provide Base64-encoded text.
    UserData *UserData `locationName:"userData" type:"structure"`
    // contains filtered or unexported fields
}

func (ImportInstanceLaunchSpecification) GoString

func (s ImportInstanceLaunchSpecification) GoString() string

GoString returns the string representation

func (*ImportInstanceLaunchSpecification) SetAdditionalInfo

func (s *ImportInstanceLaunchSpecification) SetAdditionalInfo(v string) *ImportInstanceLaunchSpecification

SetAdditionalInfo sets the AdditionalInfo field's value.

func (*ImportInstanceLaunchSpecification) SetArchitecture

func (s *ImportInstanceLaunchSpecification) SetArchitecture(v string) *ImportInstanceLaunchSpecification

SetArchitecture sets the Architecture field's value.

func (*ImportInstanceLaunchSpecification) SetGroupIds

func (s *ImportInstanceLaunchSpecification) SetGroupIds(v []*string) *ImportInstanceLaunchSpecification

SetGroupIds sets the GroupIds field's value.

func (*ImportInstanceLaunchSpecification) SetGroupNames

func (s *ImportInstanceLaunchSpecification) SetGroupNames(v []*string) *ImportInstanceLaunchSpecification

SetGroupNames sets the GroupNames field's value.

func (*ImportInstanceLaunchSpecification) SetInstanceInitiatedShutdownBehavior

func (s *ImportInstanceLaunchSpecification) SetInstanceInitiatedShutdownBehavior(v string) *ImportInstanceLaunchSpecification

SetInstanceInitiatedShutdownBehavior sets the InstanceInitiatedShutdownBehavior field's value.

func (*ImportInstanceLaunchSpecification) SetInstanceType

func (s *ImportInstanceLaunchSpecification) SetInstanceType(v string) *ImportInstanceLaunchSpecification

SetInstanceType sets the InstanceType field's value.

func (*ImportInstanceLaunchSpecification) SetMonitoring

func (s *ImportInstanceLaunchSpecification) SetMonitoring(v bool) *ImportInstanceLaunchSpecification

SetMonitoring sets the Monitoring field's value.

func (*ImportInstanceLaunchSpecification) SetPlacement

func (s *ImportInstanceLaunchSpecification) SetPlacement(v *Placement) *ImportInstanceLaunchSpecification

SetPlacement sets the Placement field's value.

func (*ImportInstanceLaunchSpecification) SetPrivateIpAddress

func (s *ImportInstanceLaunchSpecification) SetPrivateIpAddress(v string) *ImportInstanceLaunchSpecification

SetPrivateIpAddress sets the PrivateIpAddress field's value.

func (*ImportInstanceLaunchSpecification) SetSubnetId

func (s *ImportInstanceLaunchSpecification) SetSubnetId(v string) *ImportInstanceLaunchSpecification

SetSubnetId sets the SubnetId field's value.

func (*ImportInstanceLaunchSpecification) SetUserData

func (s *ImportInstanceLaunchSpecification) SetUserData(v *UserData) *ImportInstanceLaunchSpecification

SetUserData sets the UserData field's value.

func (ImportInstanceLaunchSpecification) String

func (s ImportInstanceLaunchSpecification) String() string

String returns the string representation

type ImportInstanceOutput

Contains the output for ImportInstance. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ImportInstanceResult

type ImportInstanceOutput struct {

    // Information about the conversion task.
    ConversionTask *ConversionTask `locationName:"conversionTask" type:"structure"`
    // contains filtered or unexported fields
}

func (ImportInstanceOutput) GoString

func (s ImportInstanceOutput) GoString() string

GoString returns the string representation

func (*ImportInstanceOutput) SetConversionTask

func (s *ImportInstanceOutput) SetConversionTask(v *ConversionTask) *ImportInstanceOutput

SetConversionTask sets the ConversionTask field's value.

func (ImportInstanceOutput) String

func (s ImportInstanceOutput) String() string

String returns the string representation

type ImportInstanceTaskDetails

Describes an import instance task. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ImportInstanceTaskDetails

type ImportInstanceTaskDetails struct {

    // A description of the task.
    Description *string `locationName:"description" type:"string"`

    // The ID of the instance.
    InstanceId *string `locationName:"instanceId" type:"string"`

    // The instance operating system.
    Platform *string `locationName:"platform" type:"string" enum:"PlatformValues"`

    // One or more volumes.
    //
    // Volumes is a required field
    Volumes []*ImportInstanceVolumeDetailItem `locationName:"volumes" locationNameList:"item" type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (ImportInstanceTaskDetails) GoString

func (s ImportInstanceTaskDetails) GoString() string

GoString returns the string representation

func (*ImportInstanceTaskDetails) SetDescription

func (s *ImportInstanceTaskDetails) SetDescription(v string) *ImportInstanceTaskDetails

SetDescription sets the Description field's value.

func (*ImportInstanceTaskDetails) SetInstanceId

func (s *ImportInstanceTaskDetails) SetInstanceId(v string) *ImportInstanceTaskDetails

SetInstanceId sets the InstanceId field's value.

func (*ImportInstanceTaskDetails) SetPlatform

func (s *ImportInstanceTaskDetails) SetPlatform(v string) *ImportInstanceTaskDetails

SetPlatform sets the Platform field's value.

func (*ImportInstanceTaskDetails) SetVolumes

func (s *ImportInstanceTaskDetails) SetVolumes(v []*ImportInstanceVolumeDetailItem) *ImportInstanceTaskDetails

SetVolumes sets the Volumes field's value.

func (ImportInstanceTaskDetails) String

func (s ImportInstanceTaskDetails) String() string

String returns the string representation

type ImportInstanceVolumeDetailItem

Describes an import volume task. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ImportInstanceVolumeDetailItem

type ImportInstanceVolumeDetailItem struct {

    // The Availability Zone where the resulting instance will reside.
    //
    // AvailabilityZone is a required field
    AvailabilityZone *string `locationName:"availabilityZone" type:"string" required:"true"`

    // The number of bytes converted so far.
    //
    // BytesConverted is a required field
    BytesConverted *int64 `locationName:"bytesConverted" type:"long" required:"true"`

    // A description of the task.
    Description *string `locationName:"description" type:"string"`

    // The image.
    //
    // Image is a required field
    Image *DiskImageDescription `locationName:"image" type:"structure" required:"true"`

    // The status of the import of this particular disk image.
    //
    // Status is a required field
    Status *string `locationName:"status" type:"string" required:"true"`

    // The status information or errors related to the disk image.
    StatusMessage *string `locationName:"statusMessage" type:"string"`

    // The volume.
    //
    // Volume is a required field
    Volume *DiskImageVolumeDescription `locationName:"volume" type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (ImportInstanceVolumeDetailItem) GoString

func (s ImportInstanceVolumeDetailItem) GoString() string

GoString returns the string representation

func (*ImportInstanceVolumeDetailItem) SetAvailabilityZone

func (s *ImportInstanceVolumeDetailItem) SetAvailabilityZone(v string) *ImportInstanceVolumeDetailItem

SetAvailabilityZone sets the AvailabilityZone field's value.

func (*ImportInstanceVolumeDetailItem) SetBytesConverted

func (s *ImportInstanceVolumeDetailItem) SetBytesConverted(v int64) *ImportInstanceVolumeDetailItem

SetBytesConverted sets the BytesConverted field's value.

func (*ImportInstanceVolumeDetailItem) SetDescription

func (s *ImportInstanceVolumeDetailItem) SetDescription(v string) *ImportInstanceVolumeDetailItem

SetDescription sets the Description field's value.

func (*ImportInstanceVolumeDetailItem) SetImage

func (s *ImportInstanceVolumeDetailItem) SetImage(v *DiskImageDescription) *ImportInstanceVolumeDetailItem

SetImage sets the Image field's value.

func (*ImportInstanceVolumeDetailItem) SetStatus

func (s *ImportInstanceVolumeDetailItem) SetStatus(v string) *ImportInstanceVolumeDetailItem

SetStatus sets the Status field's value.

func (*ImportInstanceVolumeDetailItem) SetStatusMessage

func (s *ImportInstanceVolumeDetailItem) SetStatusMessage(v string) *ImportInstanceVolumeDetailItem

SetStatusMessage sets the StatusMessage field's value.

func (*ImportInstanceVolumeDetailItem) SetVolume

func (s *ImportInstanceVolumeDetailItem) SetVolume(v *DiskImageVolumeDescription) *ImportInstanceVolumeDetailItem

SetVolume sets the Volume field's value.

func (ImportInstanceVolumeDetailItem) String

func (s ImportInstanceVolumeDetailItem) String() string

String returns the string representation

type ImportKeyPairInput

Contains the parameters for ImportKeyPair. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ImportKeyPairRequest

type ImportKeyPairInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // A unique name for the key pair.
    //
    // KeyName is a required field
    KeyName *string `locationName:"keyName" type:"string" required:"true"`

    // The public key. For API calls, the text must be base64-encoded. For command
    // line tools, base64 encoding is performed for you.
    //
    // PublicKeyMaterial is automatically base64 encoded/decoded by the SDK.
    //
    // PublicKeyMaterial is a required field
    PublicKeyMaterial []byte `locationName:"publicKeyMaterial" type:"blob" required:"true"`
    // contains filtered or unexported fields
}

func (ImportKeyPairInput) GoString

func (s ImportKeyPairInput) GoString() string

GoString returns the string representation

func (*ImportKeyPairInput) SetDryRun

func (s *ImportKeyPairInput) SetDryRun(v bool) *ImportKeyPairInput

SetDryRun sets the DryRun field's value.

func (*ImportKeyPairInput) SetKeyName

func (s *ImportKeyPairInput) SetKeyName(v string) *ImportKeyPairInput

SetKeyName sets the KeyName field's value.

func (*ImportKeyPairInput) SetPublicKeyMaterial

func (s *ImportKeyPairInput) SetPublicKeyMaterial(v []byte) *ImportKeyPairInput

SetPublicKeyMaterial sets the PublicKeyMaterial field's value.

func (ImportKeyPairInput) String

func (s ImportKeyPairInput) String() string

String returns the string representation

func (*ImportKeyPairInput) Validate

func (s *ImportKeyPairInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ImportKeyPairOutput

Contains the output of ImportKeyPair. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ImportKeyPairResult

type ImportKeyPairOutput struct {

    // The MD5 public key fingerprint as specified in section 4 of RFC 4716.
    KeyFingerprint *string `locationName:"keyFingerprint" type:"string"`

    // The key pair name you provided.
    KeyName *string `locationName:"keyName" type:"string"`
    // contains filtered or unexported fields
}

func (ImportKeyPairOutput) GoString

func (s ImportKeyPairOutput) GoString() string

GoString returns the string representation

func (*ImportKeyPairOutput) SetKeyFingerprint

func (s *ImportKeyPairOutput) SetKeyFingerprint(v string) *ImportKeyPairOutput

SetKeyFingerprint sets the KeyFingerprint field's value.

func (*ImportKeyPairOutput) SetKeyName

func (s *ImportKeyPairOutput) SetKeyName(v string) *ImportKeyPairOutput

SetKeyName sets the KeyName field's value.

func (ImportKeyPairOutput) String

func (s ImportKeyPairOutput) String() string

String returns the string representation

type ImportSnapshotInput

Contains the parameters for ImportSnapshot. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ImportSnapshotRequest

type ImportSnapshotInput struct {

    // The client-specific data.
    ClientData *ClientData `type:"structure"`

    // Token to enable idempotency for VM import requests.
    ClientToken *string `type:"string"`

    // The description string for the import snapshot task.
    Description *string `type:"string"`

    // Information about the disk container.
    DiskContainer *SnapshotDiskContainer `type:"structure"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `type:"boolean"`

    // The name of the role to use when not using the default role, 'vmimport'.
    RoleName *string `type:"string"`
    // contains filtered or unexported fields
}

func (ImportSnapshotInput) GoString

func (s ImportSnapshotInput) GoString() string

GoString returns the string representation

func (*ImportSnapshotInput) SetClientData

func (s *ImportSnapshotInput) SetClientData(v *ClientData) *ImportSnapshotInput

SetClientData sets the ClientData field's value.

func (*ImportSnapshotInput) SetClientToken

func (s *ImportSnapshotInput) SetClientToken(v string) *ImportSnapshotInput

SetClientToken sets the ClientToken field's value.

func (*ImportSnapshotInput) SetDescription

func (s *ImportSnapshotInput) SetDescription(v string) *ImportSnapshotInput

SetDescription sets the Description field's value.

func (*ImportSnapshotInput) SetDiskContainer

func (s *ImportSnapshotInput) SetDiskContainer(v *SnapshotDiskContainer) *ImportSnapshotInput

SetDiskContainer sets the DiskContainer field's value.

func (*ImportSnapshotInput) SetDryRun

func (s *ImportSnapshotInput) SetDryRun(v bool) *ImportSnapshotInput

SetDryRun sets the DryRun field's value.

func (*ImportSnapshotInput) SetRoleName

func (s *ImportSnapshotInput) SetRoleName(v string) *ImportSnapshotInput

SetRoleName sets the RoleName field's value.

func (ImportSnapshotInput) String

func (s ImportSnapshotInput) String() string

String returns the string representation

type ImportSnapshotOutput

Contains the output for ImportSnapshot. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ImportSnapshotResult

type ImportSnapshotOutput struct {

    // A description of the import snapshot task.
    Description *string `locationName:"description" type:"string"`

    // The ID of the import snapshot task.
    ImportTaskId *string `locationName:"importTaskId" type:"string"`

    // Information about the import snapshot task.
    SnapshotTaskDetail *SnapshotTaskDetail `locationName:"snapshotTaskDetail" type:"structure"`
    // contains filtered or unexported fields
}

func (ImportSnapshotOutput) GoString

func (s ImportSnapshotOutput) GoString() string

GoString returns the string representation

func (*ImportSnapshotOutput) SetDescription

func (s *ImportSnapshotOutput) SetDescription(v string) *ImportSnapshotOutput

SetDescription sets the Description field's value.

func (*ImportSnapshotOutput) SetImportTaskId

func (s *ImportSnapshotOutput) SetImportTaskId(v string) *ImportSnapshotOutput

SetImportTaskId sets the ImportTaskId field's value.

func (*ImportSnapshotOutput) SetSnapshotTaskDetail

func (s *ImportSnapshotOutput) SetSnapshotTaskDetail(v *SnapshotTaskDetail) *ImportSnapshotOutput

SetSnapshotTaskDetail sets the SnapshotTaskDetail field's value.

func (ImportSnapshotOutput) String

func (s ImportSnapshotOutput) String() string

String returns the string representation

type ImportSnapshotTask

Describes an import snapshot task. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ImportSnapshotTask

type ImportSnapshotTask struct {

    // A description of the import snapshot task.
    Description *string `locationName:"description" type:"string"`

    // The ID of the import snapshot task.
    ImportTaskId *string `locationName:"importTaskId" type:"string"`

    // Describes an import snapshot task.
    SnapshotTaskDetail *SnapshotTaskDetail `locationName:"snapshotTaskDetail" type:"structure"`
    // contains filtered or unexported fields
}

func (ImportSnapshotTask) GoString

func (s ImportSnapshotTask) GoString() string

GoString returns the string representation

func (*ImportSnapshotTask) SetDescription

func (s *ImportSnapshotTask) SetDescription(v string) *ImportSnapshotTask

SetDescription sets the Description field's value.

func (*ImportSnapshotTask) SetImportTaskId

func (s *ImportSnapshotTask) SetImportTaskId(v string) *ImportSnapshotTask

SetImportTaskId sets the ImportTaskId field's value.

func (*ImportSnapshotTask) SetSnapshotTaskDetail

func (s *ImportSnapshotTask) SetSnapshotTaskDetail(v *SnapshotTaskDetail) *ImportSnapshotTask

SetSnapshotTaskDetail sets the SnapshotTaskDetail field's value.

func (ImportSnapshotTask) String

func (s ImportSnapshotTask) String() string

String returns the string representation

type ImportVolumeInput

Contains the parameters for ImportVolume. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ImportVolumeRequest

type ImportVolumeInput struct {

    // The Availability Zone for the resulting EBS volume.
    //
    // AvailabilityZone is a required field
    AvailabilityZone *string `locationName:"availabilityZone" type:"string" required:"true"`

    // A description of the volume.
    Description *string `locationName:"description" type:"string"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The disk image.
    //
    // Image is a required field
    Image *DiskImageDetail `locationName:"image" type:"structure" required:"true"`

    // The volume size.
    //
    // Volume is a required field
    Volume *VolumeDetail `locationName:"volume" type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (ImportVolumeInput) GoString

func (s ImportVolumeInput) GoString() string

GoString returns the string representation

func (*ImportVolumeInput) SetAvailabilityZone

func (s *ImportVolumeInput) SetAvailabilityZone(v string) *ImportVolumeInput

SetAvailabilityZone sets the AvailabilityZone field's value.

func (*ImportVolumeInput) SetDescription

func (s *ImportVolumeInput) SetDescription(v string) *ImportVolumeInput

SetDescription sets the Description field's value.

func (*ImportVolumeInput) SetDryRun

func (s *ImportVolumeInput) SetDryRun(v bool) *ImportVolumeInput

SetDryRun sets the DryRun field's value.

func (*ImportVolumeInput) SetImage

func (s *ImportVolumeInput) SetImage(v *DiskImageDetail) *ImportVolumeInput

SetImage sets the Image field's value.

func (*ImportVolumeInput) SetVolume

func (s *ImportVolumeInput) SetVolume(v *VolumeDetail) *ImportVolumeInput

SetVolume sets the Volume field's value.

func (ImportVolumeInput) String

func (s ImportVolumeInput) String() string

String returns the string representation

func (*ImportVolumeInput) Validate

func (s *ImportVolumeInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ImportVolumeOutput

Contains the output for ImportVolume. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ImportVolumeResult

type ImportVolumeOutput struct {

    // Information about the conversion task.
    ConversionTask *ConversionTask `locationName:"conversionTask" type:"structure"`
    // contains filtered or unexported fields
}

func (ImportVolumeOutput) GoString

func (s ImportVolumeOutput) GoString() string

GoString returns the string representation

func (*ImportVolumeOutput) SetConversionTask

func (s *ImportVolumeOutput) SetConversionTask(v *ConversionTask) *ImportVolumeOutput

SetConversionTask sets the ConversionTask field's value.

func (ImportVolumeOutput) String

func (s ImportVolumeOutput) String() string

String returns the string representation

type ImportVolumeTaskDetails

Describes an import volume task. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ImportVolumeTaskDetails

type ImportVolumeTaskDetails struct {

    // The Availability Zone where the resulting volume will reside.
    //
    // AvailabilityZone is a required field
    AvailabilityZone *string `locationName:"availabilityZone" type:"string" required:"true"`

    // The number of bytes converted so far.
    //
    // BytesConverted is a required field
    BytesConverted *int64 `locationName:"bytesConverted" type:"long" required:"true"`

    // The description you provided when starting the import volume task.
    Description *string `locationName:"description" type:"string"`

    // The image.
    //
    // Image is a required field
    Image *DiskImageDescription `locationName:"image" type:"structure" required:"true"`

    // The volume.
    //
    // Volume is a required field
    Volume *DiskImageVolumeDescription `locationName:"volume" type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (ImportVolumeTaskDetails) GoString

func (s ImportVolumeTaskDetails) GoString() string

GoString returns the string representation

func (*ImportVolumeTaskDetails) SetAvailabilityZone

func (s *ImportVolumeTaskDetails) SetAvailabilityZone(v string) *ImportVolumeTaskDetails

SetAvailabilityZone sets the AvailabilityZone field's value.

func (*ImportVolumeTaskDetails) SetBytesConverted

func (s *ImportVolumeTaskDetails) SetBytesConverted(v int64) *ImportVolumeTaskDetails

SetBytesConverted sets the BytesConverted field's value.

func (*ImportVolumeTaskDetails) SetDescription

func (s *ImportVolumeTaskDetails) SetDescription(v string) *ImportVolumeTaskDetails

SetDescription sets the Description field's value.

func (*ImportVolumeTaskDetails) SetImage

func (s *ImportVolumeTaskDetails) SetImage(v *DiskImageDescription) *ImportVolumeTaskDetails

SetImage sets the Image field's value.

func (*ImportVolumeTaskDetails) SetVolume

func (s *ImportVolumeTaskDetails) SetVolume(v *DiskImageVolumeDescription) *ImportVolumeTaskDetails

SetVolume sets the Volume field's value.

func (ImportVolumeTaskDetails) String

func (s ImportVolumeTaskDetails) String() string

String returns the string representation

type Instance

Describes an instance. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Instance

type Instance struct {

    // The AMI launch index, which can be used to find this instance in the launch
    // group.
    AmiLaunchIndex *int64 `locationName:"amiLaunchIndex" type:"integer"`

    // The architecture of the image.
    Architecture *string `locationName:"architecture" type:"string" enum:"ArchitectureValues"`

    // Any block device mapping entries for the instance.
    BlockDeviceMappings []*InstanceBlockDeviceMapping `locationName:"blockDeviceMapping" locationNameList:"item" type:"list"`

    // The idempotency token you provided when you launched the instance, if applicable.
    ClientToken *string `locationName:"clientToken" type:"string"`

    // Indicates whether the instance is optimized for EBS I/O. This optimization
    // provides dedicated throughput to Amazon EBS and an optimized configuration
    // stack to provide optimal I/O performance. This optimization isn't available
    // with all instance types. Additional usage charges apply when using an EBS
    // Optimized instance.
    EbsOptimized *bool `locationName:"ebsOptimized" type:"boolean"`

    // Specifies whether enhanced networking with ENA is enabled.
    EnaSupport *bool `locationName:"enaSupport" type:"boolean"`

    // The hypervisor type of the instance.
    Hypervisor *string `locationName:"hypervisor" type:"string" enum:"HypervisorType"`

    // The IAM instance profile associated with the instance, if applicable.
    IamInstanceProfile *IamInstanceProfile `locationName:"iamInstanceProfile" type:"structure"`

    // The ID of the AMI used to launch the instance.
    ImageId *string `locationName:"imageId" type:"string"`

    // The ID of the instance.
    InstanceId *string `locationName:"instanceId" type:"string"`

    // Indicates whether this is a Spot instance or a Scheduled Instance.
    InstanceLifecycle *string `locationName:"instanceLifecycle" type:"string" enum:"InstanceLifecycleType"`

    // The instance type.
    InstanceType *string `locationName:"instanceType" type:"string" enum:"InstanceType"`

    // The kernel associated with this instance, if applicable.
    KernelId *string `locationName:"kernelId" type:"string"`

    // The name of the key pair, if this instance was launched with an associated
    // key pair.
    KeyName *string `locationName:"keyName" type:"string"`

    // The time the instance was launched.
    LaunchTime *time.Time `locationName:"launchTime" type:"timestamp" timestampFormat:"iso8601"`

    // The monitoring for the instance.
    Monitoring *Monitoring `locationName:"monitoring" type:"structure"`

    // [EC2-VPC] One or more network interfaces for the instance.
    NetworkInterfaces []*InstanceNetworkInterface `locationName:"networkInterfaceSet" locationNameList:"item" type:"list"`

    // The location where the instance launched, if applicable.
    Placement *Placement `locationName:"placement" type:"structure"`

    // The value is Windows for Windows instances; otherwise blank.
    Platform *string `locationName:"platform" type:"string" enum:"PlatformValues"`

    // (IPv4 only) The private DNS hostname name assigned to the instance. This
    // DNS hostname can only be used inside the Amazon EC2 network. This name is
    // not available until the instance enters the running state.
    //
    // [EC2-VPC] The Amazon-provided DNS server will resolve Amazon-provided private
    // DNS hostnames if you've enabled DNS resolution and DNS hostnames in your
    // VPC. If you are not using the Amazon-provided DNS server in your VPC, your
    // custom domain name servers must resolve the hostname as appropriate.
    PrivateDnsName *string `locationName:"privateDnsName" type:"string"`

    // The private IPv4 address assigned to the instance.
    PrivateIpAddress *string `locationName:"privateIpAddress" type:"string"`

    // The product codes attached to this instance, if applicable.
    ProductCodes []*ProductCode `locationName:"productCodes" locationNameList:"item" type:"list"`

    // (IPv4 only) The public DNS name assigned to the instance. This name is not
    // available until the instance enters the running state. For EC2-VPC, this
    // name is only available if you've enabled DNS hostnames for your VPC.
    PublicDnsName *string `locationName:"dnsName" type:"string"`

    // The public IPv4 address assigned to the instance, if applicable.
    PublicIpAddress *string `locationName:"ipAddress" type:"string"`

    // The RAM disk associated with this instance, if applicable.
    RamdiskId *string `locationName:"ramdiskId" type:"string"`

    // The root device name (for example, /dev/sda1 or /dev/xvda).
    RootDeviceName *string `locationName:"rootDeviceName" type:"string"`

    // The root device type used by the AMI. The AMI can use an EBS volume or an
    // instance store volume.
    RootDeviceType *string `locationName:"rootDeviceType" type:"string" enum:"DeviceType"`

    // One or more security groups for the instance.
    SecurityGroups []*GroupIdentifier `locationName:"groupSet" locationNameList:"item" type:"list"`

    // Specifies whether to enable an instance launched in a VPC to perform NAT.
    // This controls whether source/destination checking is enabled on the instance.
    // A value of true means checking is enabled, and false means checking is disabled.
    // The value must be false for the instance to perform NAT. For more information,
    // see NAT Instances (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_NAT_Instance.html)
    // in the Amazon Virtual Private Cloud User Guide.
    SourceDestCheck *bool `locationName:"sourceDestCheck" type:"boolean"`

    // If the request is a Spot instance request, the ID of the request.
    SpotInstanceRequestId *string `locationName:"spotInstanceRequestId" type:"string"`

    // Specifies whether enhanced networking with the Intel 82599 Virtual Function
    // interface is enabled.
    SriovNetSupport *string `locationName:"sriovNetSupport" type:"string"`

    // The current state of the instance.
    State *InstanceState `locationName:"instanceState" type:"structure"`

    // The reason for the most recent state transition.
    StateReason *StateReason `locationName:"stateReason" type:"structure"`

    // The reason for the most recent state transition. This might be an empty string.
    StateTransitionReason *string `locationName:"reason" type:"string"`

    // [EC2-VPC] The ID of the subnet in which the instance is running.
    SubnetId *string `locationName:"subnetId" type:"string"`

    // Any tags assigned to the instance.
    Tags []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"`

    // The virtualization type of the instance.
    VirtualizationType *string `locationName:"virtualizationType" type:"string" enum:"VirtualizationType"`

    // [EC2-VPC] The ID of the VPC in which the instance is running.
    VpcId *string `locationName:"vpcId" type:"string"`
    // contains filtered or unexported fields
}

func (Instance) GoString

func (s Instance) GoString() string

GoString returns the string representation

func (*Instance) SetAmiLaunchIndex

func (s *Instance) SetAmiLaunchIndex(v int64) *Instance

SetAmiLaunchIndex sets the AmiLaunchIndex field's value.

func (*Instance) SetArchitecture

func (s *Instance) SetArchitecture(v string) *Instance

SetArchitecture sets the Architecture field's value.

func (*Instance) SetBlockDeviceMappings

func (s *Instance) SetBlockDeviceMappings(v []*InstanceBlockDeviceMapping) *Instance

SetBlockDeviceMappings sets the BlockDeviceMappings field's value.

func (*Instance) SetClientToken

func (s *Instance) SetClientToken(v string) *Instance

SetClientToken sets the ClientToken field's value.

func (*Instance) SetEbsOptimized

func (s *Instance) SetEbsOptimized(v bool) *Instance

SetEbsOptimized sets the EbsOptimized field's value.

func (*Instance) SetEnaSupport

func (s *Instance) SetEnaSupport(v bool) *Instance

SetEnaSupport sets the EnaSupport field's value.

func (*Instance) SetHypervisor

func (s *Instance) SetHypervisor(v string) *Instance

SetHypervisor sets the Hypervisor field's value.

func (*Instance) SetIamInstanceProfile

func (s *Instance) SetIamInstanceProfile(v *IamInstanceProfile) *Instance

SetIamInstanceProfile sets the IamInstanceProfile field's value.

func (*Instance) SetImageId

func (s *Instance) SetImageId(v string) *Instance

SetImageId sets the ImageId field's value.

func (*Instance) SetInstanceId

func (s *Instance) SetInstanceId(v string) *Instance

SetInstanceId sets the InstanceId field's value.

func (*Instance) SetInstanceLifecycle

func (s *Instance) SetInstanceLifecycle(v string) *Instance

SetInstanceLifecycle sets the InstanceLifecycle field's value.

func (*Instance) SetInstanceType

func (s *Instance) SetInstanceType(v string) *Instance

SetInstanceType sets the InstanceType field's value.

func (*Instance) SetKernelId

func (s *Instance) SetKernelId(v string) *Instance

SetKernelId sets the KernelId field's value.

func (*Instance) SetKeyName

func (s *Instance) SetKeyName(v string) *Instance

SetKeyName sets the KeyName field's value.

func (*Instance) SetLaunchTime

func (s *Instance) SetLaunchTime(v time.Time) *Instance

SetLaunchTime sets the LaunchTime field's value.

func (*Instance) SetMonitoring

func (s *Instance) SetMonitoring(v *Monitoring) *Instance

SetMonitoring sets the Monitoring field's value.

func (*Instance) SetNetworkInterfaces

func (s *Instance) SetNetworkInterfaces(v []*InstanceNetworkInterface) *Instance

SetNetworkInterfaces sets the NetworkInterfaces field's value.

func (*Instance) SetPlacement

func (s *Instance) SetPlacement(v *Placement) *Instance

SetPlacement sets the Placement field's value.

func (*Instance) SetPlatform

func (s *Instance) SetPlatform(v string) *Instance

SetPlatform sets the Platform field's value.

func (*Instance) SetPrivateDnsName

func (s *Instance) SetPrivateDnsName(v string) *Instance

SetPrivateDnsName sets the PrivateDnsName field's value.

func (*Instance) SetPrivateIpAddress

func (s *Instance) SetPrivateIpAddress(v string) *Instance

SetPrivateIpAddress sets the PrivateIpAddress field's value.

func (*Instance) SetProductCodes

func (s *Instance) SetProductCodes(v []*ProductCode) *Instance

SetProductCodes sets the ProductCodes field's value.

func (*Instance) SetPublicDnsName

func (s *Instance) SetPublicDnsName(v string) *Instance

SetPublicDnsName sets the PublicDnsName field's value.

func (*Instance) SetPublicIpAddress

func (s *Instance) SetPublicIpAddress(v string) *Instance

SetPublicIpAddress sets the PublicIpAddress field's value.

func (*Instance) SetRamdiskId

func (s *Instance) SetRamdiskId(v string) *Instance

SetRamdiskId sets the RamdiskId field's value.

func (*Instance) SetRootDeviceName

func (s *Instance) SetRootDeviceName(v string) *Instance

SetRootDeviceName sets the RootDeviceName field's value.

func (*Instance) SetRootDeviceType

func (s *Instance) SetRootDeviceType(v string) *Instance

SetRootDeviceType sets the RootDeviceType field's value.

func (*Instance) SetSecurityGroups

func (s *Instance) SetSecurityGroups(v []*GroupIdentifier) *Instance

SetSecurityGroups sets the SecurityGroups field's value.

func (*Instance) SetSourceDestCheck

func (s *Instance) SetSourceDestCheck(v bool) *Instance

SetSourceDestCheck sets the SourceDestCheck field's value.

func (*Instance) SetSpotInstanceRequestId

func (s *Instance) SetSpotInstanceRequestId(v string) *Instance

SetSpotInstanceRequestId sets the SpotInstanceRequestId field's value.

func (*Instance) SetSriovNetSupport

func (s *Instance) SetSriovNetSupport(v string) *Instance

SetSriovNetSupport sets the SriovNetSupport field's value.

func (*Instance) SetState

func (s *Instance) SetState(v *InstanceState) *Instance

SetState sets the State field's value.

func (*Instance) SetStateReason

func (s *Instance) SetStateReason(v *StateReason) *Instance

SetStateReason sets the StateReason field's value.

func (*Instance) SetStateTransitionReason

func (s *Instance) SetStateTransitionReason(v string) *Instance

SetStateTransitionReason sets the StateTransitionReason field's value.

func (*Instance) SetSubnetId

func (s *Instance) SetSubnetId(v string) *Instance

SetSubnetId sets the SubnetId field's value.

func (*Instance) SetTags

func (s *Instance) SetTags(v []*Tag) *Instance

SetTags sets the Tags field's value.

func (*Instance) SetVirtualizationType

func (s *Instance) SetVirtualizationType(v string) *Instance

SetVirtualizationType sets the VirtualizationType field's value.

func (*Instance) SetVpcId

func (s *Instance) SetVpcId(v string) *Instance

SetVpcId sets the VpcId field's value.

func (Instance) String

func (s Instance) String() string

String returns the string representation

type InstanceBlockDeviceMapping

Describes a block device mapping. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceBlockDeviceMapping

type InstanceBlockDeviceMapping struct {

    // The device name exposed to the instance (for example, /dev/sdh or xvdh).
    DeviceName *string `locationName:"deviceName" type:"string"`

    // Parameters used to automatically set up EBS volumes when the instance is
    // launched.
    Ebs *EbsInstanceBlockDevice `locationName:"ebs" type:"structure"`
    // contains filtered or unexported fields
}

func (InstanceBlockDeviceMapping) GoString

func (s InstanceBlockDeviceMapping) GoString() string

GoString returns the string representation

func (*InstanceBlockDeviceMapping) SetDeviceName

func (s *InstanceBlockDeviceMapping) SetDeviceName(v string) *InstanceBlockDeviceMapping

SetDeviceName sets the DeviceName field's value.

func (*InstanceBlockDeviceMapping) SetEbs

func (s *InstanceBlockDeviceMapping) SetEbs(v *EbsInstanceBlockDevice) *InstanceBlockDeviceMapping

SetEbs sets the Ebs field's value.

func (InstanceBlockDeviceMapping) String

func (s InstanceBlockDeviceMapping) String() string

String returns the string representation

type InstanceBlockDeviceMappingSpecification

Describes a block device mapping entry. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceBlockDeviceMappingSpecification

type InstanceBlockDeviceMappingSpecification struct {

    // The device name exposed to the instance (for example, /dev/sdh or xvdh).
    DeviceName *string `locationName:"deviceName" type:"string"`

    // Parameters used to automatically set up EBS volumes when the instance is
    // launched.
    Ebs *EbsInstanceBlockDeviceSpecification `locationName:"ebs" type:"structure"`

    // suppress the specified device included in the block device mapping.
    NoDevice *string `locationName:"noDevice" type:"string"`

    // The virtual device name.
    VirtualName *string `locationName:"virtualName" type:"string"`
    // contains filtered or unexported fields
}

func (InstanceBlockDeviceMappingSpecification) GoString

func (s InstanceBlockDeviceMappingSpecification) GoString() string

GoString returns the string representation

func (*InstanceBlockDeviceMappingSpecification) SetDeviceName

func (s *InstanceBlockDeviceMappingSpecification) SetDeviceName(v string) *InstanceBlockDeviceMappingSpecification

SetDeviceName sets the DeviceName field's value.

func (*InstanceBlockDeviceMappingSpecification) SetEbs

func (s *InstanceBlockDeviceMappingSpecification) SetEbs(v *EbsInstanceBlockDeviceSpecification) *InstanceBlockDeviceMappingSpecification

SetEbs sets the Ebs field's value.

func (*InstanceBlockDeviceMappingSpecification) SetNoDevice

func (s *InstanceBlockDeviceMappingSpecification) SetNoDevice(v string) *InstanceBlockDeviceMappingSpecification

SetNoDevice sets the NoDevice field's value.

func (*InstanceBlockDeviceMappingSpecification) SetVirtualName

func (s *InstanceBlockDeviceMappingSpecification) SetVirtualName(v string) *InstanceBlockDeviceMappingSpecification

SetVirtualName sets the VirtualName field's value.

func (InstanceBlockDeviceMappingSpecification) String

func (s InstanceBlockDeviceMappingSpecification) String() string

String returns the string representation

type InstanceCapacity

Information about the instance type that the Dedicated Host supports. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceCapacity

type InstanceCapacity struct {

    // The number of instances that can still be launched onto the Dedicated Host.
    AvailableCapacity *int64 `locationName:"availableCapacity" type:"integer"`

    // The instance type size supported by the Dedicated Host.
    InstanceType *string `locationName:"instanceType" type:"string"`

    // The total number of instances that can be launched onto the Dedicated Host.
    TotalCapacity *int64 `locationName:"totalCapacity" type:"integer"`
    // contains filtered or unexported fields
}

func (InstanceCapacity) GoString

func (s InstanceCapacity) GoString() string

GoString returns the string representation

func (*InstanceCapacity) SetAvailableCapacity

func (s *InstanceCapacity) SetAvailableCapacity(v int64) *InstanceCapacity

SetAvailableCapacity sets the AvailableCapacity field's value.

func (*InstanceCapacity) SetInstanceType

func (s *InstanceCapacity) SetInstanceType(v string) *InstanceCapacity

SetInstanceType sets the InstanceType field's value.

func (*InstanceCapacity) SetTotalCapacity

func (s *InstanceCapacity) SetTotalCapacity(v int64) *InstanceCapacity

SetTotalCapacity sets the TotalCapacity field's value.

func (InstanceCapacity) String

func (s InstanceCapacity) String() string

String returns the string representation

type InstanceCount

Describes a Reserved Instance listing state. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceCount

type InstanceCount struct {

    // The number of listed Reserved Instances in the state specified by the state.
    InstanceCount *int64 `locationName:"instanceCount" type:"integer"`

    // The states of the listed Reserved Instances.
    State *string `locationName:"state" type:"string" enum:"ListingState"`
    // contains filtered or unexported fields
}

func (InstanceCount) GoString

func (s InstanceCount) GoString() string

GoString returns the string representation

func (*InstanceCount) SetInstanceCount

func (s *InstanceCount) SetInstanceCount(v int64) *InstanceCount

SetInstanceCount sets the InstanceCount field's value.

func (*InstanceCount) SetState

func (s *InstanceCount) SetState(v string) *InstanceCount

SetState sets the State field's value.

func (InstanceCount) String

func (s InstanceCount) String() string

String returns the string representation

type InstanceExportDetails

Describes an instance to export. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceExportDetails

type InstanceExportDetails struct {

    // The ID of the resource being exported.
    InstanceId *string `locationName:"instanceId" type:"string"`

    // The target virtualization environment.
    TargetEnvironment *string `locationName:"targetEnvironment" type:"string" enum:"ExportEnvironment"`
    // contains filtered or unexported fields
}

func (InstanceExportDetails) GoString

func (s InstanceExportDetails) GoString() string

GoString returns the string representation

func (*InstanceExportDetails) SetInstanceId

func (s *InstanceExportDetails) SetInstanceId(v string) *InstanceExportDetails

SetInstanceId sets the InstanceId field's value.

func (*InstanceExportDetails) SetTargetEnvironment

func (s *InstanceExportDetails) SetTargetEnvironment(v string) *InstanceExportDetails

SetTargetEnvironment sets the TargetEnvironment field's value.

func (InstanceExportDetails) String

func (s InstanceExportDetails) String() string

String returns the string representation

type InstanceIpv6Address

Describes an IPv6 address. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceIpv6Address

type InstanceIpv6Address struct {

    // The IPv6 address.
    Ipv6Address *string `locationName:"ipv6Address" type:"string"`
    // contains filtered or unexported fields
}

func (InstanceIpv6Address) GoString

func (s InstanceIpv6Address) GoString() string

GoString returns the string representation

func (*InstanceIpv6Address) SetIpv6Address

func (s *InstanceIpv6Address) SetIpv6Address(v string) *InstanceIpv6Address

SetIpv6Address sets the Ipv6Address field's value.

func (InstanceIpv6Address) String

func (s InstanceIpv6Address) String() string

String returns the string representation

type InstanceMonitoring

Describes the monitoring of an instance. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceMonitoring

type InstanceMonitoring struct {

    // The ID of the instance.
    InstanceId *string `locationName:"instanceId" type:"string"`

    // The monitoring for the instance.
    Monitoring *Monitoring `locationName:"monitoring" type:"structure"`
    // contains filtered or unexported fields
}

func (InstanceMonitoring) GoString

func (s InstanceMonitoring) GoString() string

GoString returns the string representation

func (*InstanceMonitoring) SetInstanceId

func (s *InstanceMonitoring) SetInstanceId(v string) *InstanceMonitoring

SetInstanceId sets the InstanceId field's value.

func (*InstanceMonitoring) SetMonitoring

func (s *InstanceMonitoring) SetMonitoring(v *Monitoring) *InstanceMonitoring

SetMonitoring sets the Monitoring field's value.

func (InstanceMonitoring) String

func (s InstanceMonitoring) String() string

String returns the string representation

type InstanceNetworkInterface

Describes a network interface. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceNetworkInterface

type InstanceNetworkInterface struct {

    // The association information for an Elastic IPv4 associated with the network
    // interface.
    Association *InstanceNetworkInterfaceAssociation `locationName:"association" type:"structure"`

    // The network interface attachment.
    Attachment *InstanceNetworkInterfaceAttachment `locationName:"attachment" type:"structure"`

    // The description.
    Description *string `locationName:"description" type:"string"`

    // One or more security groups.
    Groups []*GroupIdentifier `locationName:"groupSet" locationNameList:"item" type:"list"`

    // One or more IPv6 addresses associated with the network interface.
    Ipv6Addresses []*InstanceIpv6Address `locationName:"ipv6AddressesSet" locationNameList:"item" type:"list"`

    // The MAC address.
    MacAddress *string `locationName:"macAddress" type:"string"`

    // The ID of the network interface.
    NetworkInterfaceId *string `locationName:"networkInterfaceId" type:"string"`

    // The ID of the AWS account that created the network interface.
    OwnerId *string `locationName:"ownerId" type:"string"`

    // The private DNS name.
    PrivateDnsName *string `locationName:"privateDnsName" type:"string"`

    // The IPv4 address of the network interface within the subnet.
    PrivateIpAddress *string `locationName:"privateIpAddress" type:"string"`

    // One or more private IPv4 addresses associated with the network interface.
    PrivateIpAddresses []*InstancePrivateIpAddress `locationName:"privateIpAddressesSet" locationNameList:"item" type:"list"`

    // Indicates whether to validate network traffic to or from this network interface.
    SourceDestCheck *bool `locationName:"sourceDestCheck" type:"boolean"`

    // The status of the network interface.
    Status *string `locationName:"status" type:"string" enum:"NetworkInterfaceStatus"`

    // The ID of the subnet.
    SubnetId *string `locationName:"subnetId" type:"string"`

    // The ID of the VPC.
    VpcId *string `locationName:"vpcId" type:"string"`
    // contains filtered or unexported fields
}

func (InstanceNetworkInterface) GoString

func (s InstanceNetworkInterface) GoString() string

GoString returns the string representation

func (*InstanceNetworkInterface) SetAssociation

func (s *InstanceNetworkInterface) SetAssociation(v *InstanceNetworkInterfaceAssociation) *InstanceNetworkInterface

SetAssociation sets the Association field's value.

func (*InstanceNetworkInterface) SetAttachment

func (s *InstanceNetworkInterface) SetAttachment(v *InstanceNetworkInterfaceAttachment) *InstanceNetworkInterface

SetAttachment sets the Attachment field's value.

func (*InstanceNetworkInterface) SetDescription

func (s *InstanceNetworkInterface) SetDescription(v string) *InstanceNetworkInterface

SetDescription sets the Description field's value.

func (*InstanceNetworkInterface) SetGroups

func (s *InstanceNetworkInterface) SetGroups(v []*GroupIdentifier) *InstanceNetworkInterface

SetGroups sets the Groups field's value.

func (*InstanceNetworkInterface) SetIpv6Addresses

func (s *InstanceNetworkInterface) SetIpv6Addresses(v []*InstanceIpv6Address) *InstanceNetworkInterface

SetIpv6Addresses sets the Ipv6Addresses field's value.

func (*InstanceNetworkInterface) SetMacAddress

func (s *InstanceNetworkInterface) SetMacAddress(v string) *InstanceNetworkInterface

SetMacAddress sets the MacAddress field's value.

func (*InstanceNetworkInterface) SetNetworkInterfaceId

func (s *InstanceNetworkInterface) SetNetworkInterfaceId(v string) *InstanceNetworkInterface

SetNetworkInterfaceId sets the NetworkInterfaceId field's value.

func (*InstanceNetworkInterface) SetOwnerId

func (s *InstanceNetworkInterface) SetOwnerId(v string) *InstanceNetworkInterface

SetOwnerId sets the OwnerId field's value.

func (*InstanceNetworkInterface) SetPrivateDnsName

func (s *InstanceNetworkInterface) SetPrivateDnsName(v string) *InstanceNetworkInterface

SetPrivateDnsName sets the PrivateDnsName field's value.

func (*InstanceNetworkInterface) SetPrivateIpAddress

func (s *InstanceNetworkInterface) SetPrivateIpAddress(v string) *InstanceNetworkInterface

SetPrivateIpAddress sets the PrivateIpAddress field's value.

func (*InstanceNetworkInterface) SetPrivateIpAddresses

func (s *InstanceNetworkInterface) SetPrivateIpAddresses(v []*InstancePrivateIpAddress) *InstanceNetworkInterface

SetPrivateIpAddresses sets the PrivateIpAddresses field's value.

func (*InstanceNetworkInterface) SetSourceDestCheck

func (s *InstanceNetworkInterface) SetSourceDestCheck(v bool) *InstanceNetworkInterface

SetSourceDestCheck sets the SourceDestCheck field's value.

func (*InstanceNetworkInterface) SetStatus

func (s *InstanceNetworkInterface) SetStatus(v string) *InstanceNetworkInterface

SetStatus sets the Status field's value.

func (*InstanceNetworkInterface) SetSubnetId

func (s *InstanceNetworkInterface) SetSubnetId(v string) *InstanceNetworkInterface

SetSubnetId sets the SubnetId field's value.

func (*InstanceNetworkInterface) SetVpcId

func (s *InstanceNetworkInterface) SetVpcId(v string) *InstanceNetworkInterface

SetVpcId sets the VpcId field's value.

func (InstanceNetworkInterface) String

func (s InstanceNetworkInterface) String() string

String returns the string representation

type InstanceNetworkInterfaceAssociation

Describes association information for an Elastic IP address (IPv4). Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceNetworkInterfaceAssociation

type InstanceNetworkInterfaceAssociation struct {

    // The ID of the owner of the Elastic IP address.
    IpOwnerId *string `locationName:"ipOwnerId" type:"string"`

    // The public DNS name.
    PublicDnsName *string `locationName:"publicDnsName" type:"string"`

    // The public IP address or Elastic IP address bound to the network interface.
    PublicIp *string `locationName:"publicIp" type:"string"`
    // contains filtered or unexported fields
}

func (InstanceNetworkInterfaceAssociation) GoString

func (s InstanceNetworkInterfaceAssociation) GoString() string

GoString returns the string representation

func (*InstanceNetworkInterfaceAssociation) SetIpOwnerId

func (s *InstanceNetworkInterfaceAssociation) SetIpOwnerId(v string) *InstanceNetworkInterfaceAssociation

SetIpOwnerId sets the IpOwnerId field's value.

func (*InstanceNetworkInterfaceAssociation) SetPublicDnsName

func (s *InstanceNetworkInterfaceAssociation) SetPublicDnsName(v string) *InstanceNetworkInterfaceAssociation

SetPublicDnsName sets the PublicDnsName field's value.

func (*InstanceNetworkInterfaceAssociation) SetPublicIp

func (s *InstanceNetworkInterfaceAssociation) SetPublicIp(v string) *InstanceNetworkInterfaceAssociation

SetPublicIp sets the PublicIp field's value.

func (InstanceNetworkInterfaceAssociation) String

func (s InstanceNetworkInterfaceAssociation) String() string

String returns the string representation

type InstanceNetworkInterfaceAttachment

Describes a network interface attachment. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceNetworkInterfaceAttachment

type InstanceNetworkInterfaceAttachment struct {

    // The time stamp when the attachment initiated.
    AttachTime *time.Time `locationName:"attachTime" type:"timestamp" timestampFormat:"iso8601"`

    // The ID of the network interface attachment.
    AttachmentId *string `locationName:"attachmentId" type:"string"`

    // Indicates whether the network interface is deleted when the instance is terminated.
    DeleteOnTermination *bool `locationName:"deleteOnTermination" type:"boolean"`

    // The index of the device on the instance for the network interface attachment.
    DeviceIndex *int64 `locationName:"deviceIndex" type:"integer"`

    // The attachment state.
    Status *string `locationName:"status" type:"string" enum:"AttachmentStatus"`
    // contains filtered or unexported fields
}

func (InstanceNetworkInterfaceAttachment) GoString

func (s InstanceNetworkInterfaceAttachment) GoString() string

GoString returns the string representation

func (*InstanceNetworkInterfaceAttachment) SetAttachTime

func (s *InstanceNetworkInterfaceAttachment) SetAttachTime(v time.Time) *InstanceNetworkInterfaceAttachment

SetAttachTime sets the AttachTime field's value.

func (*InstanceNetworkInterfaceAttachment) SetAttachmentId

func (s *InstanceNetworkInterfaceAttachment) SetAttachmentId(v string) *InstanceNetworkInterfaceAttachment

SetAttachmentId sets the AttachmentId field's value.

func (*InstanceNetworkInterfaceAttachment) SetDeleteOnTermination

func (s *InstanceNetworkInterfaceAttachment) SetDeleteOnTermination(v bool) *InstanceNetworkInterfaceAttachment

SetDeleteOnTermination sets the DeleteOnTermination field's value.

func (*InstanceNetworkInterfaceAttachment) SetDeviceIndex

func (s *InstanceNetworkInterfaceAttachment) SetDeviceIndex(v int64) *InstanceNetworkInterfaceAttachment

SetDeviceIndex sets the DeviceIndex field's value.

func (*InstanceNetworkInterfaceAttachment) SetStatus

func (s *InstanceNetworkInterfaceAttachment) SetStatus(v string) *InstanceNetworkInterfaceAttachment

SetStatus sets the Status field's value.

func (InstanceNetworkInterfaceAttachment) String

func (s InstanceNetworkInterfaceAttachment) String() string

String returns the string representation

type InstanceNetworkInterfaceSpecification

Describes a network interface. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceNetworkInterfaceSpecification

type InstanceNetworkInterfaceSpecification struct {

    // Indicates whether to assign a public IPv4 address to an instance you launch
    // in a VPC. The public IP address can only be assigned to a network interface
    // for eth0, and can only be assigned to a new network interface, not an existing
    // one. You cannot specify more than one network interface in the request. If
    // launching into a default subnet, the default value is true.
    AssociatePublicIpAddress *bool `locationName:"associatePublicIpAddress" type:"boolean"`

    // If set to true, the interface is deleted when the instance is terminated.
    // You can specify true only if creating a new network interface when launching
    // an instance.
    DeleteOnTermination *bool `locationName:"deleteOnTermination" type:"boolean"`

    // The description of the network interface. Applies only if creating a network
    // interface when launching an instance.
    Description *string `locationName:"description" type:"string"`

    // The index of the device on the instance for the network interface attachment.
    // If you are specifying a network interface in a RunInstances request, you
    // must provide the device index.
    DeviceIndex *int64 `locationName:"deviceIndex" type:"integer"`

    // The IDs of the security groups for the network interface. Applies only if
    // creating a network interface when launching an instance.
    Groups []*string `locationName:"SecurityGroupId" locationNameList:"SecurityGroupId" type:"list"`

    // A number of IPv6 addresses to assign to the network interface. Amazon EC2
    // chooses the IPv6 addresses from the range of the subnet. You cannot specify
    // this option and the option to assign specific IPv6 addresses in the same
    // request. You can specify this option if you've specified a minimum number
    // of instances to launch.
    Ipv6AddressCount *int64 `locationName:"ipv6AddressCount" type:"integer"`

    // One or more IPv6 addresses to assign to the network interface. You cannot
    // specify this option and the option to assign a number of IPv6 addresses in
    // the same request. You cannot specify this option if you've specified a minimum
    // number of instances to launch.
    Ipv6Addresses []*InstanceIpv6Address `locationName:"ipv6AddressesSet" queryName:"Ipv6Addresses" locationNameList:"item" type:"list"`

    // The ID of the network interface.
    NetworkInterfaceId *string `locationName:"networkInterfaceId" type:"string"`

    // The private IPv4 address of the network interface. Applies only if creating
    // a network interface when launching an instance. You cannot specify this option
    // if you're launching more than one instance in a RunInstances request.
    PrivateIpAddress *string `locationName:"privateIpAddress" type:"string"`

    // One or more private IPv4 addresses to assign to the network interface. Only
    // one private IPv4 address can be designated as primary. You cannot specify
    // this option if you're launching more than one instance in a RunInstances
    // request.
    PrivateIpAddresses []*PrivateIpAddressSpecification `locationName:"privateIpAddressesSet" queryName:"PrivateIpAddresses" locationNameList:"item" type:"list"`

    // The number of secondary private IPv4 addresses. You can't specify this option
    // and specify more than one private IP address using the private IP addresses
    // option. You cannot specify this option if you're launching more than one
    // instance in a RunInstances request.
    SecondaryPrivateIpAddressCount *int64 `locationName:"secondaryPrivateIpAddressCount" type:"integer"`

    // The ID of the subnet associated with the network string. Applies only if
    // creating a network interface when launching an instance.
    SubnetId *string `locationName:"subnetId" type:"string"`
    // contains filtered or unexported fields
}

func (InstanceNetworkInterfaceSpecification) GoString

func (s InstanceNetworkInterfaceSpecification) GoString() string

GoString returns the string representation

func (*InstanceNetworkInterfaceSpecification) SetAssociatePublicIpAddress

func (s *InstanceNetworkInterfaceSpecification) SetAssociatePublicIpAddress(v bool) *InstanceNetworkInterfaceSpecification

SetAssociatePublicIpAddress sets the AssociatePublicIpAddress field's value.

func (*InstanceNetworkInterfaceSpecification) SetDeleteOnTermination

func (s *InstanceNetworkInterfaceSpecification) SetDeleteOnTermination(v bool) *InstanceNetworkInterfaceSpecification

SetDeleteOnTermination sets the DeleteOnTermination field's value.

func (*InstanceNetworkInterfaceSpecification) SetDescription

func (s *InstanceNetworkInterfaceSpecification) SetDescription(v string) *InstanceNetworkInterfaceSpecification

SetDescription sets the Description field's value.

func (*InstanceNetworkInterfaceSpecification) SetDeviceIndex

func (s *InstanceNetworkInterfaceSpecification) SetDeviceIndex(v int64) *InstanceNetworkInterfaceSpecification

SetDeviceIndex sets the DeviceIndex field's value.

func (*InstanceNetworkInterfaceSpecification) SetGroups

func (s *InstanceNetworkInterfaceSpecification) SetGroups(v []*string) *InstanceNetworkInterfaceSpecification

SetGroups sets the Groups field's value.

func (*InstanceNetworkInterfaceSpecification) SetIpv6AddressCount

func (s *InstanceNetworkInterfaceSpecification) SetIpv6AddressCount(v int64) *InstanceNetworkInterfaceSpecification

SetIpv6AddressCount sets the Ipv6AddressCount field's value.

func (*InstanceNetworkInterfaceSpecification) SetIpv6Addresses

func (s *InstanceNetworkInterfaceSpecification) SetIpv6Addresses(v []*InstanceIpv6Address) *InstanceNetworkInterfaceSpecification

SetIpv6Addresses sets the Ipv6Addresses field's value.

func (*InstanceNetworkInterfaceSpecification) SetNetworkInterfaceId

func (s *InstanceNetworkInterfaceSpecification) SetNetworkInterfaceId(v string) *InstanceNetworkInterfaceSpecification

SetNetworkInterfaceId sets the NetworkInterfaceId field's value.

func (*InstanceNetworkInterfaceSpecification) SetPrivateIpAddress

func (s *InstanceNetworkInterfaceSpecification) SetPrivateIpAddress(v string) *InstanceNetworkInterfaceSpecification

SetPrivateIpAddress sets the PrivateIpAddress field's value.

func (*InstanceNetworkInterfaceSpecification) SetPrivateIpAddresses

func (s *InstanceNetworkInterfaceSpecification) SetPrivateIpAddresses(v []*PrivateIpAddressSpecification) *InstanceNetworkInterfaceSpecification

SetPrivateIpAddresses sets the PrivateIpAddresses field's value.

func (*InstanceNetworkInterfaceSpecification) SetSecondaryPrivateIpAddressCount

func (s *InstanceNetworkInterfaceSpecification) SetSecondaryPrivateIpAddressCount(v int64) *InstanceNetworkInterfaceSpecification

SetSecondaryPrivateIpAddressCount sets the SecondaryPrivateIpAddressCount field's value.

func (*InstanceNetworkInterfaceSpecification) SetSubnetId

func (s *InstanceNetworkInterfaceSpecification) SetSubnetId(v string) *InstanceNetworkInterfaceSpecification

SetSubnetId sets the SubnetId field's value.

func (InstanceNetworkInterfaceSpecification) String

func (s InstanceNetworkInterfaceSpecification) String() string

String returns the string representation

func (*InstanceNetworkInterfaceSpecification) Validate

func (s *InstanceNetworkInterfaceSpecification) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type InstancePrivateIpAddress

Describes a private IPv4 address. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstancePrivateIpAddress

type InstancePrivateIpAddress struct {

    // The association information for an Elastic IP address for the network interface.
    Association *InstanceNetworkInterfaceAssociation `locationName:"association" type:"structure"`

    // Indicates whether this IPv4 address is the primary private IP address of
    // the network interface.
    Primary *bool `locationName:"primary" type:"boolean"`

    // The private IPv4 DNS name.
    PrivateDnsName *string `locationName:"privateDnsName" type:"string"`

    // The private IPv4 address of the network interface.
    PrivateIpAddress *string `locationName:"privateIpAddress" type:"string"`
    // contains filtered or unexported fields
}

func (InstancePrivateIpAddress) GoString

func (s InstancePrivateIpAddress) GoString() string

GoString returns the string representation

func (*InstancePrivateIpAddress) SetAssociation

func (s *InstancePrivateIpAddress) SetAssociation(v *InstanceNetworkInterfaceAssociation) *InstancePrivateIpAddress

SetAssociation sets the Association field's value.

func (*InstancePrivateIpAddress) SetPrimary

func (s *InstancePrivateIpAddress) SetPrimary(v bool) *InstancePrivateIpAddress

SetPrimary sets the Primary field's value.

func (*InstancePrivateIpAddress) SetPrivateDnsName

func (s *InstancePrivateIpAddress) SetPrivateDnsName(v string) *InstancePrivateIpAddress

SetPrivateDnsName sets the PrivateDnsName field's value.

func (*InstancePrivateIpAddress) SetPrivateIpAddress

func (s *InstancePrivateIpAddress) SetPrivateIpAddress(v string) *InstancePrivateIpAddress

SetPrivateIpAddress sets the PrivateIpAddress field's value.

func (InstancePrivateIpAddress) String

func (s InstancePrivateIpAddress) String() string

String returns the string representation

type InstanceState

Describes the current state of an instance. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceState

type InstanceState struct {

    // The low byte represents the state. The high byte is an opaque internal value
    // and should be ignored.
    //
    //    * 0 : pending
    //
    //    * 16 : running
    //
    //    * 32 : shutting-down
    //
    //    * 48 : terminated
    //
    //    * 64 : stopping
    //
    //    * 80 : stopped
    Code *int64 `locationName:"code" type:"integer"`

    // The current state of the instance.
    Name *string `locationName:"name" type:"string" enum:"InstanceStateName"`
    // contains filtered or unexported fields
}

func (InstanceState) GoString

func (s InstanceState) GoString() string

GoString returns the string representation

func (*InstanceState) SetCode

func (s *InstanceState) SetCode(v int64) *InstanceState

SetCode sets the Code field's value.

func (*InstanceState) SetName

func (s *InstanceState) SetName(v string) *InstanceState

SetName sets the Name field's value.

func (InstanceState) String

func (s InstanceState) String() string

String returns the string representation

type InstanceStateChange

Describes an instance state change. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceStateChange

type InstanceStateChange struct {

    // The current state of the instance.
    CurrentState *InstanceState `locationName:"currentState" type:"structure"`

    // The ID of the instance.
    InstanceId *string `locationName:"instanceId" type:"string"`

    // The previous state of the instance.
    PreviousState *InstanceState `locationName:"previousState" type:"structure"`
    // contains filtered or unexported fields
}

func (InstanceStateChange) GoString

func (s InstanceStateChange) GoString() string

GoString returns the string representation

func (*InstanceStateChange) SetCurrentState

func (s *InstanceStateChange) SetCurrentState(v *InstanceState) *InstanceStateChange

SetCurrentState sets the CurrentState field's value.

func (*InstanceStateChange) SetInstanceId

func (s *InstanceStateChange) SetInstanceId(v string) *InstanceStateChange

SetInstanceId sets the InstanceId field's value.

func (*InstanceStateChange) SetPreviousState

func (s *InstanceStateChange) SetPreviousState(v *InstanceState) *InstanceStateChange

SetPreviousState sets the PreviousState field's value.

func (InstanceStateChange) String

func (s InstanceStateChange) String() string

String returns the string representation

type InstanceStatus

Describes the status of an instance. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceStatus

type InstanceStatus struct {

    // The Availability Zone of the instance.
    AvailabilityZone *string `locationName:"availabilityZone" type:"string"`

    // Any scheduled events associated with the instance.
    Events []*InstanceStatusEvent `locationName:"eventsSet" locationNameList:"item" type:"list"`

    // The ID of the instance.
    InstanceId *string `locationName:"instanceId" type:"string"`

    // The intended state of the instance. DescribeInstanceStatus requires that
    // an instance be in the running state.
    InstanceState *InstanceState `locationName:"instanceState" type:"structure"`

    // Reports impaired functionality that stems from issues internal to the instance,
    // such as impaired reachability.
    InstanceStatus *InstanceStatusSummary `locationName:"instanceStatus" type:"structure"`

    // Reports impaired functionality that stems from issues related to the systems
    // that support an instance, such as hardware failures and network connectivity
    // problems.
    SystemStatus *InstanceStatusSummary `locationName:"systemStatus" type:"structure"`
    // contains filtered or unexported fields
}

func (InstanceStatus) GoString

func (s InstanceStatus) GoString() string

GoString returns the string representation

func (*InstanceStatus) SetAvailabilityZone

func (s *InstanceStatus) SetAvailabilityZone(v string) *InstanceStatus

SetAvailabilityZone sets the AvailabilityZone field's value.

func (*InstanceStatus) SetEvents

func (s *InstanceStatus) SetEvents(v []*InstanceStatusEvent) *InstanceStatus

SetEvents sets the Events field's value.

func (*InstanceStatus) SetInstanceId

func (s *InstanceStatus) SetInstanceId(v string) *InstanceStatus

SetInstanceId sets the InstanceId field's value.

func (*InstanceStatus) SetInstanceState

func (s *InstanceStatus) SetInstanceState(v *InstanceState) *InstanceStatus

SetInstanceState sets the InstanceState field's value.

func (*InstanceStatus) SetInstanceStatus

func (s *InstanceStatus) SetInstanceStatus(v *InstanceStatusSummary) *InstanceStatus

SetInstanceStatus sets the InstanceStatus field's value.

func (*InstanceStatus) SetSystemStatus

func (s *InstanceStatus) SetSystemStatus(v *InstanceStatusSummary) *InstanceStatus

SetSystemStatus sets the SystemStatus field's value.

func (InstanceStatus) String

func (s InstanceStatus) String() string

String returns the string representation

type InstanceStatusDetails

Describes the instance status. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceStatusDetails

type InstanceStatusDetails struct {

    // The time when a status check failed. For an instance that was launched and
    // impaired, this is the time when the instance was launched.
    ImpairedSince *time.Time `locationName:"impairedSince" type:"timestamp" timestampFormat:"iso8601"`

    // The type of instance status.
    Name *string `locationName:"name" type:"string" enum:"StatusName"`

    // The status.
    Status *string `locationName:"status" type:"string" enum:"StatusType"`
    // contains filtered or unexported fields
}

func (InstanceStatusDetails) GoString

func (s InstanceStatusDetails) GoString() string

GoString returns the string representation

func (*InstanceStatusDetails) SetImpairedSince

func (s *InstanceStatusDetails) SetImpairedSince(v time.Time) *InstanceStatusDetails

SetImpairedSince sets the ImpairedSince field's value.

func (*InstanceStatusDetails) SetName

func (s *InstanceStatusDetails) SetName(v string) *InstanceStatusDetails

SetName sets the Name field's value.

func (*InstanceStatusDetails) SetStatus

func (s *InstanceStatusDetails) SetStatus(v string) *InstanceStatusDetails

SetStatus sets the Status field's value.

func (InstanceStatusDetails) String

func (s InstanceStatusDetails) String() string

String returns the string representation

type InstanceStatusEvent

Describes a scheduled event for an instance. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceStatusEvent

type InstanceStatusEvent struct {

    // The event code.
    Code *string `locationName:"code" type:"string" enum:"EventCode"`

    // A description of the event.
    //
    // After a scheduled event is completed, it can still be described for up to
    // a week. If the event has been completed, this description starts with the
    // following text: [Completed].
    Description *string `locationName:"description" type:"string"`

    // The latest scheduled end time for the event.
    NotAfter *time.Time `locationName:"notAfter" type:"timestamp" timestampFormat:"iso8601"`

    // The earliest scheduled start time for the event.
    NotBefore *time.Time `locationName:"notBefore" type:"timestamp" timestampFormat:"iso8601"`
    // contains filtered or unexported fields
}

func (InstanceStatusEvent) GoString

func (s InstanceStatusEvent) GoString() string

GoString returns the string representation

func (*InstanceStatusEvent) SetCode

func (s *InstanceStatusEvent) SetCode(v string) *InstanceStatusEvent

SetCode sets the Code field's value.

func (*InstanceStatusEvent) SetDescription

func (s *InstanceStatusEvent) SetDescription(v string) *InstanceStatusEvent

SetDescription sets the Description field's value.

func (*InstanceStatusEvent) SetNotAfter

func (s *InstanceStatusEvent) SetNotAfter(v time.Time) *InstanceStatusEvent

SetNotAfter sets the NotAfter field's value.

func (*InstanceStatusEvent) SetNotBefore

func (s *InstanceStatusEvent) SetNotBefore(v time.Time) *InstanceStatusEvent

SetNotBefore sets the NotBefore field's value.

func (InstanceStatusEvent) String

func (s InstanceStatusEvent) String() string

String returns the string representation

type InstanceStatusSummary

Describes the status of an instance. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceStatusSummary

type InstanceStatusSummary struct {

    // The system instance health or application instance health.
    Details []*InstanceStatusDetails `locationName:"details" locationNameList:"item" type:"list"`

    // The status.
    Status *string `locationName:"status" type:"string" enum:"SummaryStatus"`
    // contains filtered or unexported fields
}

func (InstanceStatusSummary) GoString

func (s InstanceStatusSummary) GoString() string

GoString returns the string representation

func (*InstanceStatusSummary) SetDetails

func (s *InstanceStatusSummary) SetDetails(v []*InstanceStatusDetails) *InstanceStatusSummary

SetDetails sets the Details field's value.

func (*InstanceStatusSummary) SetStatus

func (s *InstanceStatusSummary) SetStatus(v string) *InstanceStatusSummary

SetStatus sets the Status field's value.

func (InstanceStatusSummary) String

func (s InstanceStatusSummary) String() string

String returns the string representation

type InternetGateway

Describes an Internet gateway. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InternetGateway

type InternetGateway struct {

    // Any VPCs attached to the Internet gateway.
    Attachments []*InternetGatewayAttachment `locationName:"attachmentSet" locationNameList:"item" type:"list"`

    // The ID of the Internet gateway.
    InternetGatewayId *string `locationName:"internetGatewayId" type:"string"`

    // Any tags assigned to the Internet gateway.
    Tags []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (InternetGateway) GoString

func (s InternetGateway) GoString() string

GoString returns the string representation

func (*InternetGateway) SetAttachments

func (s *InternetGateway) SetAttachments(v []*InternetGatewayAttachment) *InternetGateway

SetAttachments sets the Attachments field's value.

func (*InternetGateway) SetInternetGatewayId

func (s *InternetGateway) SetInternetGatewayId(v string) *InternetGateway

SetInternetGatewayId sets the InternetGatewayId field's value.

func (*InternetGateway) SetTags

func (s *InternetGateway) SetTags(v []*Tag) *InternetGateway

SetTags sets the Tags field's value.

func (InternetGateway) String

func (s InternetGateway) String() string

String returns the string representation

type InternetGatewayAttachment

Describes the attachment of a VPC to an Internet gateway or an egress-only Internet gateway. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InternetGatewayAttachment

type InternetGatewayAttachment struct {

    // The current state of the attachment.
    State *string `locationName:"state" type:"string" enum:"AttachmentStatus"`

    // The ID of the VPC.
    VpcId *string `locationName:"vpcId" type:"string"`
    // contains filtered or unexported fields
}

func (InternetGatewayAttachment) GoString

func (s InternetGatewayAttachment) GoString() string

GoString returns the string representation

func (*InternetGatewayAttachment) SetState

func (s *InternetGatewayAttachment) SetState(v string) *InternetGatewayAttachment

SetState sets the State field's value.

func (*InternetGatewayAttachment) SetVpcId

func (s *InternetGatewayAttachment) SetVpcId(v string) *InternetGatewayAttachment

SetVpcId sets the VpcId field's value.

func (InternetGatewayAttachment) String

func (s InternetGatewayAttachment) String() string

String returns the string representation

type IpPermission

Describes a security group rule. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IpPermission

type IpPermission struct {

    // The start of port range for the TCP and UDP protocols, or an ICMP/ICMPv6
    // type number. A value of -1 indicates all ICMP/ICMPv6 types.
    FromPort *int64 `locationName:"fromPort" type:"integer"`

    // The IP protocol name (tcp, udp, icmp) or number (see Protocol Numbers (http://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml)).
    //
    // [EC2-VPC only] Use -1 to specify all protocols. When authorizing security
    // group rules, specifying -1 or a protocol number other than tcp, udp, icmp,
    // or 58 (ICMPv6) allows traffic on all ports, regardless of any port range
    // you specify. For tcp, udp, and icmp, you must specify a port range. For 58
    // (ICMPv6), you can optionally specify a port range; if you don't, traffic
    // for all types and codes is allowed when authorizing rules.
    IpProtocol *string `locationName:"ipProtocol" type:"string"`

    // One or more IPv4 ranges.
    IpRanges []*IpRange `locationName:"ipRanges" locationNameList:"item" type:"list"`

    // [EC2-VPC only] One or more IPv6 ranges.
    Ipv6Ranges []*Ipv6Range `locationName:"ipv6Ranges" locationNameList:"item" type:"list"`

    // (Valid for AuthorizeSecurityGroupEgress, RevokeSecurityGroupEgress and DescribeSecurityGroups
    // only) One or more prefix list IDs for an AWS service. In an AuthorizeSecurityGroupEgress
    // request, this is the AWS service that you want to access through a VPC endpoint
    // from instances associated with the security group.
    PrefixListIds []*PrefixListId `locationName:"prefixListIds" locationNameList:"item" type:"list"`

    // The end of port range for the TCP and UDP protocols, or an ICMP/ICMPv6 code.
    // A value of -1 indicates all ICMP/ICMPv6 codes for the specified ICMP type.
    ToPort *int64 `locationName:"toPort" type:"integer"`

    // One or more security group and AWS account ID pairs.
    UserIdGroupPairs []*UserIdGroupPair `locationName:"groups" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (IpPermission) GoString

func (s IpPermission) GoString() string

GoString returns the string representation

func (*IpPermission) SetFromPort

func (s *IpPermission) SetFromPort(v int64) *IpPermission

SetFromPort sets the FromPort field's value.

func (*IpPermission) SetIpProtocol

func (s *IpPermission) SetIpProtocol(v string) *IpPermission

SetIpProtocol sets the IpProtocol field's value.

func (*IpPermission) SetIpRanges

func (s *IpPermission) SetIpRanges(v []*IpRange) *IpPermission

SetIpRanges sets the IpRanges field's value.

func (*IpPermission) SetIpv6Ranges

func (s *IpPermission) SetIpv6Ranges(v []*Ipv6Range) *IpPermission

SetIpv6Ranges sets the Ipv6Ranges field's value.

func (*IpPermission) SetPrefixListIds

func (s *IpPermission) SetPrefixListIds(v []*PrefixListId) *IpPermission

SetPrefixListIds sets the PrefixListIds field's value.

func (*IpPermission) SetToPort

func (s *IpPermission) SetToPort(v int64) *IpPermission

SetToPort sets the ToPort field's value.

func (*IpPermission) SetUserIdGroupPairs

func (s *IpPermission) SetUserIdGroupPairs(v []*UserIdGroupPair) *IpPermission

SetUserIdGroupPairs sets the UserIdGroupPairs field's value.

func (IpPermission) String

func (s IpPermission) String() string

String returns the string representation

type IpRange

Describes an IPv4 range. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IpRange

type IpRange struct {

    // The IPv4 CIDR range. You can either specify a CIDR range or a source security
    // group, not both. To specify a single IPv4 address, use the /32 prefix.
    CidrIp *string `locationName:"cidrIp" type:"string"`
    // contains filtered or unexported fields
}

func (IpRange) GoString

func (s IpRange) GoString() string

GoString returns the string representation

func (*IpRange) SetCidrIp

func (s *IpRange) SetCidrIp(v string) *IpRange

SetCidrIp sets the CidrIp field's value.

func (IpRange) String

func (s IpRange) String() string

String returns the string representation

type Ipv6CidrBlock

Describes an IPv6 CIDR block. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Ipv6CidrBlock

type Ipv6CidrBlock struct {

    // The IPv6 CIDR block.
    Ipv6CidrBlock *string `locationName:"ipv6CidrBlock" type:"string"`
    // contains filtered or unexported fields
}

func (Ipv6CidrBlock) GoString

func (s Ipv6CidrBlock) GoString() string

GoString returns the string representation

func (*Ipv6CidrBlock) SetIpv6CidrBlock

func (s *Ipv6CidrBlock) SetIpv6CidrBlock(v string) *Ipv6CidrBlock

SetIpv6CidrBlock sets the Ipv6CidrBlock field's value.

func (Ipv6CidrBlock) String

func (s Ipv6CidrBlock) String() string

String returns the string representation

type Ipv6Range

[EC2-VPC only] Describes an IPv6 range. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Ipv6Range

type Ipv6Range struct {

    // The IPv6 CIDR range. You can either specify a CIDR range or a source security
    // group, not both. To specify a single IPv6 address, use the /128 prefix.
    CidrIpv6 *string `locationName:"cidrIpv6" type:"string"`
    // contains filtered or unexported fields
}

func (Ipv6Range) GoString

func (s Ipv6Range) GoString() string

GoString returns the string representation

func (*Ipv6Range) SetCidrIpv6

func (s *Ipv6Range) SetCidrIpv6(v string) *Ipv6Range

SetCidrIpv6 sets the CidrIpv6 field's value.

func (Ipv6Range) String

func (s Ipv6Range) String() string

String returns the string representation

type KeyPairInfo

Describes a key pair. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/KeyPairInfo

type KeyPairInfo struct {

    // If you used CreateKeyPair to create the key pair, this is the SHA-1 digest
    // of the DER encoded private key. If you used ImportKeyPair to provide AWS
    // the public key, this is the MD5 public key fingerprint as specified in section
    // 4 of RFC4716.
    KeyFingerprint *string `locationName:"keyFingerprint" type:"string"`

    // The name of the key pair.
    KeyName *string `locationName:"keyName" type:"string"`
    // contains filtered or unexported fields
}

func (KeyPairInfo) GoString

func (s KeyPairInfo) GoString() string

GoString returns the string representation

func (*KeyPairInfo) SetKeyFingerprint

func (s *KeyPairInfo) SetKeyFingerprint(v string) *KeyPairInfo

SetKeyFingerprint sets the KeyFingerprint field's value.

func (*KeyPairInfo) SetKeyName

func (s *KeyPairInfo) SetKeyName(v string) *KeyPairInfo

SetKeyName sets the KeyName field's value.

func (KeyPairInfo) String

func (s KeyPairInfo) String() string

String returns the string representation

type LaunchPermission

Describes a launch permission. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LaunchPermission

type LaunchPermission struct {

    // The name of the group.
    Group *string `locationName:"group" type:"string" enum:"PermissionGroup"`

    // The AWS account ID.
    UserId *string `locationName:"userId" type:"string"`
    // contains filtered or unexported fields
}

func (LaunchPermission) GoString

func (s LaunchPermission) GoString() string

GoString returns the string representation

func (*LaunchPermission) SetGroup

func (s *LaunchPermission) SetGroup(v string) *LaunchPermission

SetGroup sets the Group field's value.

func (*LaunchPermission) SetUserId

func (s *LaunchPermission) SetUserId(v string) *LaunchPermission

SetUserId sets the UserId field's value.

func (LaunchPermission) String

func (s LaunchPermission) String() string

String returns the string representation

type LaunchPermissionModifications

Describes a launch permission modification. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LaunchPermissionModifications

type LaunchPermissionModifications struct {

    // The AWS account ID to add to the list of launch permissions for the AMI.
    Add []*LaunchPermission `locationNameList:"item" type:"list"`

    // The AWS account ID to remove from the list of launch permissions for the
    // AMI.
    Remove []*LaunchPermission `locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (LaunchPermissionModifications) GoString

func (s LaunchPermissionModifications) GoString() string

GoString returns the string representation

func (*LaunchPermissionModifications) SetAdd

func (s *LaunchPermissionModifications) SetAdd(v []*LaunchPermission) *LaunchPermissionModifications

SetAdd sets the Add field's value.

func (*LaunchPermissionModifications) SetRemove

func (s *LaunchPermissionModifications) SetRemove(v []*LaunchPermission) *LaunchPermissionModifications

SetRemove sets the Remove field's value.

func (LaunchPermissionModifications) String

func (s LaunchPermissionModifications) String() string

String returns the string representation

type LaunchSpecification

Describes the launch specification for an instance. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LaunchSpecification

type LaunchSpecification struct {

    // Deprecated.
    AddressingType *string `locationName:"addressingType" type:"string"`

    // One or more block device mapping entries.
    //
    // Although you can specify encrypted EBS volumes in this block device mapping
    // for your Spot Instances, these volumes are not encrypted.
    BlockDeviceMappings []*BlockDeviceMapping `locationName:"blockDeviceMapping" locationNameList:"item" type:"list"`

    // Indicates whether the instance is optimized for EBS I/O. This optimization
    // provides dedicated throughput to Amazon EBS and an optimized configuration
    // stack to provide optimal EBS I/O performance. This optimization isn't available
    // with all instance types. Additional usage charges apply when using an EBS
    // Optimized instance.
    //
    // Default: false
    EbsOptimized *bool `locationName:"ebsOptimized" type:"boolean"`

    // The IAM instance profile.
    IamInstanceProfile *IamInstanceProfileSpecification `locationName:"iamInstanceProfile" type:"structure"`

    // The ID of the AMI.
    ImageId *string `locationName:"imageId" type:"string"`

    // The instance type.
    InstanceType *string `locationName:"instanceType" type:"string" enum:"InstanceType"`

    // The ID of the kernel.
    KernelId *string `locationName:"kernelId" type:"string"`

    // The name of the key pair.
    KeyName *string `locationName:"keyName" type:"string"`

    // Describes the monitoring of an instance.
    Monitoring *RunInstancesMonitoringEnabled `locationName:"monitoring" type:"structure"`

    // One or more network interfaces. If you specify a network interface, you must
    // specify subnet IDs and security group IDs using the network interface.
    NetworkInterfaces []*InstanceNetworkInterfaceSpecification `locationName:"networkInterfaceSet" locationNameList:"item" type:"list"`

    // The placement information for the instance.
    Placement *SpotPlacement `locationName:"placement" type:"structure"`

    // The ID of the RAM disk.
    RamdiskId *string `locationName:"ramdiskId" type:"string"`

    // One or more security groups. When requesting instances in a VPC, you must
    // specify the IDs of the security groups. When requesting instances in EC2-Classic,
    // you can specify the names or the IDs of the security groups.
    SecurityGroups []*GroupIdentifier `locationName:"groupSet" locationNameList:"item" type:"list"`

    // The ID of the subnet in which to launch the instance.
    SubnetId *string `locationName:"subnetId" type:"string"`

    // The user data to make available to the instances. If you are using an AWS
    // SDK or command line tool, Base64-encoding is performed for you, and you can
    // load the text from a file. Otherwise, you must provide Base64-encoded text.
    UserData *string `locationName:"userData" type:"string"`
    // contains filtered or unexported fields
}

func (LaunchSpecification) GoString

func (s LaunchSpecification) GoString() string

GoString returns the string representation

func (*LaunchSpecification) SetAddressingType

func (s *LaunchSpecification) SetAddressingType(v string) *LaunchSpecification

SetAddressingType sets the AddressingType field's value.

func (*LaunchSpecification) SetBlockDeviceMappings

func (s *LaunchSpecification) SetBlockDeviceMappings(v []*BlockDeviceMapping) *LaunchSpecification

SetBlockDeviceMappings sets the BlockDeviceMappings field's value.

func (*LaunchSpecification) SetEbsOptimized

func (s *LaunchSpecification) SetEbsOptimized(v bool) *LaunchSpecification

SetEbsOptimized sets the EbsOptimized field's value.

func (*LaunchSpecification) SetIamInstanceProfile

func (s *LaunchSpecification) SetIamInstanceProfile(v *IamInstanceProfileSpecification) *LaunchSpecification

SetIamInstanceProfile sets the IamInstanceProfile field's value.

func (*LaunchSpecification) SetImageId

func (s *LaunchSpecification) SetImageId(v string) *LaunchSpecification

SetImageId sets the ImageId field's value.

func (*LaunchSpecification) SetInstanceType

func (s *LaunchSpecification) SetInstanceType(v string) *LaunchSpecification

SetInstanceType sets the InstanceType field's value.

func (*LaunchSpecification) SetKernelId

func (s *LaunchSpecification) SetKernelId(v string) *LaunchSpecification

SetKernelId sets the KernelId field's value.

func (*LaunchSpecification) SetKeyName

func (s *LaunchSpecification) SetKeyName(v string) *LaunchSpecification

SetKeyName sets the KeyName field's value.

func (*LaunchSpecification) SetMonitoring

func (s *LaunchSpecification) SetMonitoring(v *RunInstancesMonitoringEnabled) *LaunchSpecification

SetMonitoring sets the Monitoring field's value.

func (*LaunchSpecification) SetNetworkInterfaces

func (s *LaunchSpecification) SetNetworkInterfaces(v []*InstanceNetworkInterfaceSpecification) *LaunchSpecification

SetNetworkInterfaces sets the NetworkInterfaces field's value.

func (*LaunchSpecification) SetPlacement

func (s *LaunchSpecification) SetPlacement(v *SpotPlacement) *LaunchSpecification

SetPlacement sets the Placement field's value.

func (*LaunchSpecification) SetRamdiskId

func (s *LaunchSpecification) SetRamdiskId(v string) *LaunchSpecification

SetRamdiskId sets the RamdiskId field's value.

func (*LaunchSpecification) SetSecurityGroups

func (s *LaunchSpecification) SetSecurityGroups(v []*GroupIdentifier) *LaunchSpecification

SetSecurityGroups sets the SecurityGroups field's value.

func (*LaunchSpecification) SetSubnetId

func (s *LaunchSpecification) SetSubnetId(v string) *LaunchSpecification

SetSubnetId sets the SubnetId field's value.

func (*LaunchSpecification) SetUserData

func (s *LaunchSpecification) SetUserData(v string) *LaunchSpecification

SetUserData sets the UserData field's value.

func (LaunchSpecification) String

func (s LaunchSpecification) String() string

String returns the string representation

type ModifyHostsInput

Contains the parameters for ModifyHosts. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyHostsRequest

type ModifyHostsInput struct {

    // Specify whether to enable or disable auto-placement.
    //
    // AutoPlacement is a required field
    AutoPlacement *string `locationName:"autoPlacement" type:"string" required:"true" enum:"AutoPlacement"`

    // The host IDs of the Dedicated Hosts you want to modify.
    //
    // HostIds is a required field
    HostIds []*string `locationName:"hostId" locationNameList:"item" type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (ModifyHostsInput) GoString

func (s ModifyHostsInput) GoString() string

GoString returns the string representation

func (*ModifyHostsInput) SetAutoPlacement

func (s *ModifyHostsInput) SetAutoPlacement(v string) *ModifyHostsInput

SetAutoPlacement sets the AutoPlacement field's value.

func (*ModifyHostsInput) SetHostIds

func (s *ModifyHostsInput) SetHostIds(v []*string) *ModifyHostsInput

SetHostIds sets the HostIds field's value.

func (ModifyHostsInput) String

func (s ModifyHostsInput) String() string

String returns the string representation

func (*ModifyHostsInput) Validate

func (s *ModifyHostsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ModifyHostsOutput

Contains the output of ModifyHosts. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyHostsResult

type ModifyHostsOutput struct {

    // The IDs of the Dedicated Hosts that were successfully modified.
    Successful []*string `locationName:"successful" locationNameList:"item" type:"list"`

    // The IDs of the Dedicated Hosts that could not be modified. Check whether
    // the setting you requested can be used.
    Unsuccessful []*UnsuccessfulItem `locationName:"unsuccessful" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (ModifyHostsOutput) GoString

func (s ModifyHostsOutput) GoString() string

GoString returns the string representation

func (*ModifyHostsOutput) SetSuccessful

func (s *ModifyHostsOutput) SetSuccessful(v []*string) *ModifyHostsOutput

SetSuccessful sets the Successful field's value.

func (*ModifyHostsOutput) SetUnsuccessful

func (s *ModifyHostsOutput) SetUnsuccessful(v []*UnsuccessfulItem) *ModifyHostsOutput

SetUnsuccessful sets the Unsuccessful field's value.

func (ModifyHostsOutput) String

func (s ModifyHostsOutput) String() string

String returns the string representation

type ModifyIdFormatInput

Contains the parameters of ModifyIdFormat. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyIdFormatRequest

type ModifyIdFormatInput struct {

    // The type of resource: instance | reservation | snapshot | volume
    //
    // Resource is a required field
    Resource *string `type:"string" required:"true"`

    // Indicate whether the resource should use longer IDs (17-character IDs).
    //
    // UseLongIds is a required field
    UseLongIds *bool `type:"boolean" required:"true"`
    // contains filtered or unexported fields
}

func (ModifyIdFormatInput) GoString

func (s ModifyIdFormatInput) GoString() string

GoString returns the string representation

func (*ModifyIdFormatInput) SetResource

func (s *ModifyIdFormatInput) SetResource(v string) *ModifyIdFormatInput

SetResource sets the Resource field's value.

func (*ModifyIdFormatInput) SetUseLongIds

func (s *ModifyIdFormatInput) SetUseLongIds(v bool) *ModifyIdFormatInput

SetUseLongIds sets the UseLongIds field's value.

func (ModifyIdFormatInput) String

func (s ModifyIdFormatInput) String() string

String returns the string representation

func (*ModifyIdFormatInput) Validate

func (s *ModifyIdFormatInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ModifyIdFormatOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyIdFormatOutput

type ModifyIdFormatOutput struct {
    // contains filtered or unexported fields
}

func (ModifyIdFormatOutput) GoString

func (s ModifyIdFormatOutput) GoString() string

GoString returns the string representation

func (ModifyIdFormatOutput) String

func (s ModifyIdFormatOutput) String() string

String returns the string representation

type ModifyIdentityIdFormatInput

Contains the parameters of ModifyIdentityIdFormat. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyIdentityIdFormatRequest

type ModifyIdentityIdFormatInput struct {

    // The ARN of the principal, which can be an IAM user, IAM role, or the root
    // user. Specify all to modify the ID format for all IAM users, IAM roles, and
    // the root user of the account.
    //
    // PrincipalArn is a required field
    PrincipalArn *string `locationName:"principalArn" type:"string" required:"true"`

    // The type of resource: instance | reservation | snapshot | volume
    //
    // Resource is a required field
    Resource *string `locationName:"resource" type:"string" required:"true"`

    // Indicates whether the resource should use longer IDs (17-character IDs)
    //
    // UseLongIds is a required field
    UseLongIds *bool `locationName:"useLongIds" type:"boolean" required:"true"`
    // contains filtered or unexported fields
}

func (ModifyIdentityIdFormatInput) GoString

func (s ModifyIdentityIdFormatInput) GoString() string

GoString returns the string representation

func (*ModifyIdentityIdFormatInput) SetPrincipalArn

func (s *ModifyIdentityIdFormatInput) SetPrincipalArn(v string) *ModifyIdentityIdFormatInput

SetPrincipalArn sets the PrincipalArn field's value.

func (*ModifyIdentityIdFormatInput) SetResource

func (s *ModifyIdentityIdFormatInput) SetResource(v string) *ModifyIdentityIdFormatInput

SetResource sets the Resource field's value.

func (*ModifyIdentityIdFormatInput) SetUseLongIds

func (s *ModifyIdentityIdFormatInput) SetUseLongIds(v bool) *ModifyIdentityIdFormatInput

SetUseLongIds sets the UseLongIds field's value.

func (ModifyIdentityIdFormatInput) String

func (s ModifyIdentityIdFormatInput) String() string

String returns the string representation

func (*ModifyIdentityIdFormatInput) Validate

func (s *ModifyIdentityIdFormatInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ModifyIdentityIdFormatOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyIdentityIdFormatOutput

type ModifyIdentityIdFormatOutput struct {
    // contains filtered or unexported fields
}

func (ModifyIdentityIdFormatOutput) GoString

func (s ModifyIdentityIdFormatOutput) GoString() string

GoString returns the string representation

func (ModifyIdentityIdFormatOutput) String

func (s ModifyIdentityIdFormatOutput) String() string

String returns the string representation

type ModifyImageAttributeInput

Contains the parameters for ModifyImageAttribute. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyImageAttributeRequest

type ModifyImageAttributeInput struct {

    // The name of the attribute to modify.
    Attribute *string `type:"string"`

    // A description for the AMI.
    Description *AttributeValue `type:"structure"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the AMI.
    //
    // ImageId is a required field
    ImageId *string `type:"string" required:"true"`

    // A launch permission modification.
    LaunchPermission *LaunchPermissionModifications `type:"structure"`

    // The operation type.
    OperationType *string `type:"string" enum:"OperationType"`

    // One or more product codes. After you add a product code to an AMI, it can't
    // be removed. This is only valid when modifying the productCodes attribute.
    ProductCodes []*string `locationName:"ProductCode" locationNameList:"ProductCode" type:"list"`

    // One or more user groups. This is only valid when modifying the launchPermission
    // attribute.
    UserGroups []*string `locationName:"UserGroup" locationNameList:"UserGroup" type:"list"`

    // One or more AWS account IDs. This is only valid when modifying the launchPermission
    // attribute.
    UserIds []*string `locationName:"UserId" locationNameList:"UserId" type:"list"`

    // The value of the attribute being modified. This is only valid when modifying
    // the description attribute.
    Value *string `type:"string"`
    // contains filtered or unexported fields
}

func (ModifyImageAttributeInput) GoString

func (s ModifyImageAttributeInput) GoString() string

GoString returns the string representation

func (*ModifyImageAttributeInput) SetAttribute

func (s *ModifyImageAttributeInput) SetAttribute(v string) *ModifyImageAttributeInput

SetAttribute sets the Attribute field's value.

func (*ModifyImageAttributeInput) SetDescription

func (s *ModifyImageAttributeInput) SetDescription(v *AttributeValue) *ModifyImageAttributeInput

SetDescription sets the Description field's value.

func (*ModifyImageAttributeInput) SetDryRun

func (s *ModifyImageAttributeInput) SetDryRun(v bool) *ModifyImageAttributeInput

SetDryRun sets the DryRun field's value.

func (*ModifyImageAttributeInput) SetImageId

func (s *ModifyImageAttributeInput) SetImageId(v string) *ModifyImageAttributeInput

SetImageId sets the ImageId field's value.

func (*ModifyImageAttributeInput) SetLaunchPermission

func (s *ModifyImageAttributeInput) SetLaunchPermission(v *LaunchPermissionModifications) *ModifyImageAttributeInput

SetLaunchPermission sets the LaunchPermission field's value.

func (*ModifyImageAttributeInput) SetOperationType

func (s *ModifyImageAttributeInput) SetOperationType(v string) *ModifyImageAttributeInput

SetOperationType sets the OperationType field's value.

func (*ModifyImageAttributeInput) SetProductCodes

func (s *ModifyImageAttributeInput) SetProductCodes(v []*string) *ModifyImageAttributeInput

SetProductCodes sets the ProductCodes field's value.

func (*ModifyImageAttributeInput) SetUserGroups

func (s *ModifyImageAttributeInput) SetUserGroups(v []*string) *ModifyImageAttributeInput

SetUserGroups sets the UserGroups field's value.

func (*ModifyImageAttributeInput) SetUserIds

func (s *ModifyImageAttributeInput) SetUserIds(v []*string) *ModifyImageAttributeInput

SetUserIds sets the UserIds field's value.

func (*ModifyImageAttributeInput) SetValue

func (s *ModifyImageAttributeInput) SetValue(v string) *ModifyImageAttributeInput

SetValue sets the Value field's value.

func (ModifyImageAttributeInput) String

func (s ModifyImageAttributeInput) String() string

String returns the string representation

func (*ModifyImageAttributeInput) Validate

func (s *ModifyImageAttributeInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ModifyImageAttributeOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyImageAttributeOutput

type ModifyImageAttributeOutput struct {
    // contains filtered or unexported fields
}

func (ModifyImageAttributeOutput) GoString

func (s ModifyImageAttributeOutput) GoString() string

GoString returns the string representation

func (ModifyImageAttributeOutput) String

func (s ModifyImageAttributeOutput) String() string

String returns the string representation

type ModifyInstanceAttributeInput

Contains the parameters for ModifyInstanceAttribute. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyInstanceAttributeRequest

type ModifyInstanceAttributeInput struct {

    // The name of the attribute.
    Attribute *string `locationName:"attribute" type:"string" enum:"InstanceAttributeName"`

    // Modifies the DeleteOnTermination attribute for volumes that are currently
    // attached. The volume must be owned by the caller. If no value is specified
    // for DeleteOnTermination, the default is true and the volume is deleted when
    // the instance is terminated.
    //
    // To add instance store volumes to an Amazon EBS-backed instance, you must
    // add them when you launch the instance. For more information, see Updating
    // the Block Device Mapping when Launching an Instance (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/block-device-mapping-concepts.html#Using_OverridingAMIBDM)
    // in the Amazon Elastic Compute Cloud User Guide.
    BlockDeviceMappings []*InstanceBlockDeviceMappingSpecification `locationName:"blockDeviceMapping" locationNameList:"item" type:"list"`

    // If the value is true, you can't terminate the instance using the Amazon EC2
    // console, CLI, or API; otherwise, you can. You cannot use this paramater for
    // Spot Instances.
    DisableApiTermination *AttributeBooleanValue `locationName:"disableApiTermination" type:"structure"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // Specifies whether the instance is optimized for EBS I/O. This optimization
    // provides dedicated throughput to Amazon EBS and an optimized configuration
    // stack to provide optimal EBS I/O performance. This optimization isn't available
    // with all instance types. Additional usage charges apply when using an EBS
    // Optimized instance.
    EbsOptimized *AttributeBooleanValue `locationName:"ebsOptimized" type:"structure"`

    // Set to true to enable enhanced networking with ENA for the instance.
    //
    // This option is supported only for HVM instances. Specifying this option with
    // a PV instance can make it unreachable.
    EnaSupport *AttributeBooleanValue `locationName:"enaSupport" type:"structure"`

    // [EC2-VPC] Changes the security groups of the instance. You must specify at
    // least one security group, even if it's just the default security group for
    // the VPC. You must specify the security group ID, not the security group name.
    Groups []*string `locationName:"GroupId" locationNameList:"groupId" type:"list"`

    // The ID of the instance.
    //
    // InstanceId is a required field
    InstanceId *string `locationName:"instanceId" type:"string" required:"true"`

    // Specifies whether an instance stops or terminates when you initiate shutdown
    // from the instance (using the operating system command for system shutdown).
    InstanceInitiatedShutdownBehavior *AttributeValue `locationName:"instanceInitiatedShutdownBehavior" type:"structure"`

    // Changes the instance type to the specified value. For more information, see
    // Instance Types (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html).
    // If the instance type is not valid, the error returned is InvalidInstanceAttributeValue.
    InstanceType *AttributeValue `locationName:"instanceType" type:"structure"`

    // Changes the instance's kernel to the specified value. We recommend that you
    // use PV-GRUB instead of kernels and RAM disks. For more information, see PV-GRUB
    // (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/UserProvidedKernels.html).
    Kernel *AttributeValue `locationName:"kernel" type:"structure"`

    // Changes the instance's RAM disk to the specified value. We recommend that
    // you use PV-GRUB instead of kernels and RAM disks. For more information, see
    // PV-GRUB (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/UserProvidedKernels.html).
    Ramdisk *AttributeValue `locationName:"ramdisk" type:"structure"`

    // Specifies whether source/destination checking is enabled. A value of true
    // means that checking is enabled, and false means checking is disabled. This
    // value must be false for a NAT instance to perform NAT.
    SourceDestCheck *AttributeBooleanValue `type:"structure"`

    // Set to simple to enable enhanced networking with the Intel 82599 Virtual
    // Function interface for the instance.
    //
    // There is no way to disable enhanced networking with the Intel 82599 Virtual
    // Function interface at this time.
    //
    // This option is supported only for HVM instances. Specifying this option with
    // a PV instance can make it unreachable.
    SriovNetSupport *AttributeValue `locationName:"sriovNetSupport" type:"structure"`

    // Changes the instance's user data to the specified value. If you are using
    // an AWS SDK or command line tool, Base64-encoding is performed for you, and
    // you can load the text from a file. Otherwise, you must provide Base64-encoded
    // text.
    UserData *BlobAttributeValue `locationName:"userData" type:"structure"`

    // A new value for the attribute. Use only with the kernel, ramdisk, userData,
    // disableApiTermination, or instanceInitiatedShutdownBehavior attribute.
    Value *string `locationName:"value" type:"string"`
    // contains filtered or unexported fields
}

func (ModifyInstanceAttributeInput) GoString

func (s ModifyInstanceAttributeInput) GoString() string

GoString returns the string representation

func (*ModifyInstanceAttributeInput) SetAttribute

func (s *ModifyInstanceAttributeInput) SetAttribute(v string) *ModifyInstanceAttributeInput

SetAttribute sets the Attribute field's value.

func (*ModifyInstanceAttributeInput) SetBlockDeviceMappings

func (s *ModifyInstanceAttributeInput) SetBlockDeviceMappings(v []*InstanceBlockDeviceMappingSpecification) *ModifyInstanceAttributeInput

SetBlockDeviceMappings sets the BlockDeviceMappings field's value.

func (*ModifyInstanceAttributeInput) SetDisableApiTermination

func (s *ModifyInstanceAttributeInput) SetDisableApiTermination(v *AttributeBooleanValue) *ModifyInstanceAttributeInput

SetDisableApiTermination sets the DisableApiTermination field's value.

func (*ModifyInstanceAttributeInput) SetDryRun

func (s *ModifyInstanceAttributeInput) SetDryRun(v bool) *ModifyInstanceAttributeInput

SetDryRun sets the DryRun field's value.

func (*ModifyInstanceAttributeInput) SetEbsOptimized

func (s *ModifyInstanceAttributeInput) SetEbsOptimized(v *AttributeBooleanValue) *ModifyInstanceAttributeInput

SetEbsOptimized sets the EbsOptimized field's value.

func (*ModifyInstanceAttributeInput) SetEnaSupport

func (s *ModifyInstanceAttributeInput) SetEnaSupport(v *AttributeBooleanValue) *ModifyInstanceAttributeInput

SetEnaSupport sets the EnaSupport field's value.

func (*ModifyInstanceAttributeInput) SetGroups

func (s *ModifyInstanceAttributeInput) SetGroups(v []*string) *ModifyInstanceAttributeInput

SetGroups sets the Groups field's value.

func (*ModifyInstanceAttributeInput) SetInstanceId

func (s *ModifyInstanceAttributeInput) SetInstanceId(v string) *ModifyInstanceAttributeInput

SetInstanceId sets the InstanceId field's value.

func (*ModifyInstanceAttributeInput) SetInstanceInitiatedShutdownBehavior

func (s *ModifyInstanceAttributeInput) SetInstanceInitiatedShutdownBehavior(v *AttributeValue) *ModifyInstanceAttributeInput

SetInstanceInitiatedShutdownBehavior sets the InstanceInitiatedShutdownBehavior field's value.

func (*ModifyInstanceAttributeInput) SetInstanceType

func (s *ModifyInstanceAttributeInput) SetInstanceType(v *AttributeValue) *ModifyInstanceAttributeInput

SetInstanceType sets the InstanceType field's value.

func (*ModifyInstanceAttributeInput) SetKernel

func (s *ModifyInstanceAttributeInput) SetKernel(v *AttributeValue) *ModifyInstanceAttributeInput

SetKernel sets the Kernel field's value.

func (*ModifyInstanceAttributeInput) SetRamdisk

func (s *ModifyInstanceAttributeInput) SetRamdisk(v *AttributeValue) *ModifyInstanceAttributeInput

SetRamdisk sets the Ramdisk field's value.

func (*ModifyInstanceAttributeInput) SetSourceDestCheck

func (s *ModifyInstanceAttributeInput) SetSourceDestCheck(v *AttributeBooleanValue) *ModifyInstanceAttributeInput

SetSourceDestCheck sets the SourceDestCheck field's value.

func (*ModifyInstanceAttributeInput) SetSriovNetSupport

func (s *ModifyInstanceAttributeInput) SetSriovNetSupport(v *AttributeValue) *ModifyInstanceAttributeInput

SetSriovNetSupport sets the SriovNetSupport field's value.

func (*ModifyInstanceAttributeInput) SetUserData

func (s *ModifyInstanceAttributeInput) SetUserData(v *BlobAttributeValue) *ModifyInstanceAttributeInput

SetUserData sets the UserData field's value.

func (*ModifyInstanceAttributeInput) SetValue

func (s *ModifyInstanceAttributeInput) SetValue(v string) *ModifyInstanceAttributeInput

SetValue sets the Value field's value.

func (ModifyInstanceAttributeInput) String

func (s ModifyInstanceAttributeInput) String() string

String returns the string representation

func (*ModifyInstanceAttributeInput) Validate

func (s *ModifyInstanceAttributeInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ModifyInstanceAttributeOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyInstanceAttributeOutput

type ModifyInstanceAttributeOutput struct {
    // contains filtered or unexported fields
}

func (ModifyInstanceAttributeOutput) GoString

func (s ModifyInstanceAttributeOutput) GoString() string

GoString returns the string representation

func (ModifyInstanceAttributeOutput) String

func (s ModifyInstanceAttributeOutput) String() string

String returns the string representation

type ModifyInstancePlacementInput

Contains the parameters for ModifyInstancePlacement. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyInstancePlacementRequest

type ModifyInstancePlacementInput struct {

    // The new affinity setting for the instance.
    Affinity *string `locationName:"affinity" type:"string" enum:"Affinity"`

    // The ID of the Dedicated Host that the instance will have affinity with.
    HostId *string `locationName:"hostId" type:"string"`

    // The ID of the instance that you are modifying.
    //
    // InstanceId is a required field
    InstanceId *string `locationName:"instanceId" type:"string" required:"true"`

    // The tenancy of the instance that you are modifying.
    Tenancy *string `locationName:"tenancy" type:"string" enum:"HostTenancy"`
    // contains filtered or unexported fields
}

func (ModifyInstancePlacementInput) GoString

func (s ModifyInstancePlacementInput) GoString() string

GoString returns the string representation

func (*ModifyInstancePlacementInput) SetAffinity

func (s *ModifyInstancePlacementInput) SetAffinity(v string) *ModifyInstancePlacementInput

SetAffinity sets the Affinity field's value.

func (*ModifyInstancePlacementInput) SetHostId

func (s *ModifyInstancePlacementInput) SetHostId(v string) *ModifyInstancePlacementInput

SetHostId sets the HostId field's value.

func (*ModifyInstancePlacementInput) SetInstanceId

func (s *ModifyInstancePlacementInput) SetInstanceId(v string) *ModifyInstancePlacementInput

SetInstanceId sets the InstanceId field's value.

func (*ModifyInstancePlacementInput) SetTenancy

func (s *ModifyInstancePlacementInput) SetTenancy(v string) *ModifyInstancePlacementInput

SetTenancy sets the Tenancy field's value.

func (ModifyInstancePlacementInput) String

func (s ModifyInstancePlacementInput) String() string

String returns the string representation

func (*ModifyInstancePlacementInput) Validate

func (s *ModifyInstancePlacementInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ModifyInstancePlacementOutput

Contains the output of ModifyInstancePlacement. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyInstancePlacementResult

type ModifyInstancePlacementOutput struct {

    // Is true if the request succeeds, and an error otherwise.
    Return *bool `locationName:"return" type:"boolean"`
    // contains filtered or unexported fields
}

func (ModifyInstancePlacementOutput) GoString

func (s ModifyInstancePlacementOutput) GoString() string

GoString returns the string representation

func (*ModifyInstancePlacementOutput) SetReturn

func (s *ModifyInstancePlacementOutput) SetReturn(v bool) *ModifyInstancePlacementOutput

SetReturn sets the Return field's value.

func (ModifyInstancePlacementOutput) String

func (s ModifyInstancePlacementOutput) String() string

String returns the string representation

type ModifyNetworkInterfaceAttributeInput

Contains the parameters for ModifyNetworkInterfaceAttribute. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyNetworkInterfaceAttributeRequest

type ModifyNetworkInterfaceAttributeInput struct {

    // Information about the interface attachment. If modifying the 'delete on termination'
    // attribute, you must specify the ID of the interface attachment.
    Attachment *NetworkInterfaceAttachmentChanges `locationName:"attachment" type:"structure"`

    // A description for the network interface.
    Description *AttributeValue `locationName:"description" type:"structure"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // Changes the security groups for the network interface. The new set of groups
    // you specify replaces the current set. You must specify at least one group,
    // even if it's just the default security group in the VPC. You must specify
    // the ID of the security group, not the name.
    Groups []*string `locationName:"SecurityGroupId" locationNameList:"SecurityGroupId" type:"list"`

    // The ID of the network interface.
    //
    // NetworkInterfaceId is a required field
    NetworkInterfaceId *string `locationName:"networkInterfaceId" type:"string" required:"true"`

    // Indicates whether source/destination checking is enabled. A value of true
    // means checking is enabled, and false means checking is disabled. This value
    // must be false for a NAT instance to perform NAT. For more information, see
    // NAT Instances (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_NAT_Instance.html)
    // in the Amazon Virtual Private Cloud User Guide.
    SourceDestCheck *AttributeBooleanValue `locationName:"sourceDestCheck" type:"structure"`
    // contains filtered or unexported fields
}

func (ModifyNetworkInterfaceAttributeInput) GoString

func (s ModifyNetworkInterfaceAttributeInput) GoString() string

GoString returns the string representation

func (*ModifyNetworkInterfaceAttributeInput) SetAttachment

func (s *ModifyNetworkInterfaceAttributeInput) SetAttachment(v *NetworkInterfaceAttachmentChanges) *ModifyNetworkInterfaceAttributeInput

SetAttachment sets the Attachment field's value.

func (*ModifyNetworkInterfaceAttributeInput) SetDescription

func (s *ModifyNetworkInterfaceAttributeInput) SetDescription(v *AttributeValue) *ModifyNetworkInterfaceAttributeInput

SetDescription sets the Description field's value.

func (*ModifyNetworkInterfaceAttributeInput) SetDryRun

func (s *ModifyNetworkInterfaceAttributeInput) SetDryRun(v bool) *ModifyNetworkInterfaceAttributeInput

SetDryRun sets the DryRun field's value.

func (*ModifyNetworkInterfaceAttributeInput) SetGroups

func (s *ModifyNetworkInterfaceAttributeInput) SetGroups(v []*string) *ModifyNetworkInterfaceAttributeInput

SetGroups sets the Groups field's value.

func (*ModifyNetworkInterfaceAttributeInput) SetNetworkInterfaceId

func (s *ModifyNetworkInterfaceAttributeInput) SetNetworkInterfaceId(v string) *ModifyNetworkInterfaceAttributeInput

SetNetworkInterfaceId sets the NetworkInterfaceId field's value.

func (*ModifyNetworkInterfaceAttributeInput) SetSourceDestCheck

func (s *ModifyNetworkInterfaceAttributeInput) SetSourceDestCheck(v *AttributeBooleanValue) *ModifyNetworkInterfaceAttributeInput

SetSourceDestCheck sets the SourceDestCheck field's value.

func (ModifyNetworkInterfaceAttributeInput) String

func (s ModifyNetworkInterfaceAttributeInput) String() string

String returns the string representation

func (*ModifyNetworkInterfaceAttributeInput) Validate

func (s *ModifyNetworkInterfaceAttributeInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ModifyNetworkInterfaceAttributeOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyNetworkInterfaceAttributeOutput

type ModifyNetworkInterfaceAttributeOutput struct {
    // contains filtered or unexported fields
}

func (ModifyNetworkInterfaceAttributeOutput) GoString

func (s ModifyNetworkInterfaceAttributeOutput) GoString() string

GoString returns the string representation

func (ModifyNetworkInterfaceAttributeOutput) String

func (s ModifyNetworkInterfaceAttributeOutput) String() string

String returns the string representation

type ModifyReservedInstancesInput

Contains the parameters for ModifyReservedInstances. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyReservedInstancesRequest

type ModifyReservedInstancesInput struct {

    // A unique, case-sensitive token you provide to ensure idempotency of your
    // modification request. For more information, see Ensuring Idempotency (http://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html).
    ClientToken *string `locationName:"clientToken" type:"string"`

    // The IDs of the Reserved Instances to modify.
    //
    // ReservedInstancesIds is a required field
    ReservedInstancesIds []*string `locationName:"ReservedInstancesId" locationNameList:"ReservedInstancesId" type:"list" required:"true"`

    // The configuration settings for the Reserved Instances to modify.
    //
    // TargetConfigurations is a required field
    TargetConfigurations []*ReservedInstancesConfiguration `locationName:"ReservedInstancesConfigurationSetItemType" locationNameList:"item" type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (ModifyReservedInstancesInput) GoString

func (s ModifyReservedInstancesInput) GoString() string

GoString returns the string representation

func (*ModifyReservedInstancesInput) SetClientToken

func (s *ModifyReservedInstancesInput) SetClientToken(v string) *ModifyReservedInstancesInput

SetClientToken sets the ClientToken field's value.

func (*ModifyReservedInstancesInput) SetReservedInstancesIds

func (s *ModifyReservedInstancesInput) SetReservedInstancesIds(v []*string) *ModifyReservedInstancesInput

SetReservedInstancesIds sets the ReservedInstancesIds field's value.

func (*ModifyReservedInstancesInput) SetTargetConfigurations

func (s *ModifyReservedInstancesInput) SetTargetConfigurations(v []*ReservedInstancesConfiguration) *ModifyReservedInstancesInput

SetTargetConfigurations sets the TargetConfigurations field's value.

func (ModifyReservedInstancesInput) String

func (s ModifyReservedInstancesInput) String() string

String returns the string representation

func (*ModifyReservedInstancesInput) Validate

func (s *ModifyReservedInstancesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ModifyReservedInstancesOutput

Contains the output of ModifyReservedInstances. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyReservedInstancesResult

type ModifyReservedInstancesOutput struct {

    // The ID for the modification.
    ReservedInstancesModificationId *string `locationName:"reservedInstancesModificationId" type:"string"`
    // contains filtered or unexported fields
}

func (ModifyReservedInstancesOutput) GoString

func (s ModifyReservedInstancesOutput) GoString() string

GoString returns the string representation

func (*ModifyReservedInstancesOutput) SetReservedInstancesModificationId

func (s *ModifyReservedInstancesOutput) SetReservedInstancesModificationId(v string) *ModifyReservedInstancesOutput

SetReservedInstancesModificationId sets the ReservedInstancesModificationId field's value.

func (ModifyReservedInstancesOutput) String

func (s ModifyReservedInstancesOutput) String() string

String returns the string representation

type ModifySnapshotAttributeInput

Contains the parameters for ModifySnapshotAttribute. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifySnapshotAttributeRequest

type ModifySnapshotAttributeInput struct {

    // The snapshot attribute to modify.
    //
    // Only volume creation permissions may be modified at the customer level.
    Attribute *string `type:"string" enum:"SnapshotAttributeName"`

    // A JSON representation of the snapshot attribute modification.
    CreateVolumePermission *CreateVolumePermissionModifications `type:"structure"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The group to modify for the snapshot.
    GroupNames []*string `locationName:"UserGroup" locationNameList:"GroupName" type:"list"`

    // The type of operation to perform to the attribute.
    OperationType *string `type:"string" enum:"OperationType"`

    // The ID of the snapshot.
    //
    // SnapshotId is a required field
    SnapshotId *string `type:"string" required:"true"`

    // The account ID to modify for the snapshot.
    UserIds []*string `locationName:"UserId" locationNameList:"UserId" type:"list"`
    // contains filtered or unexported fields
}

func (ModifySnapshotAttributeInput) GoString

func (s ModifySnapshotAttributeInput) GoString() string

GoString returns the string representation

func (*ModifySnapshotAttributeInput) SetAttribute

func (s *ModifySnapshotAttributeInput) SetAttribute(v string) *ModifySnapshotAttributeInput

SetAttribute sets the Attribute field's value.

func (*ModifySnapshotAttributeInput) SetCreateVolumePermission

func (s *ModifySnapshotAttributeInput) SetCreateVolumePermission(v *CreateVolumePermissionModifications) *ModifySnapshotAttributeInput

SetCreateVolumePermission sets the CreateVolumePermission field's value.

func (*ModifySnapshotAttributeInput) SetDryRun

func (s *ModifySnapshotAttributeInput) SetDryRun(v bool) *ModifySnapshotAttributeInput

SetDryRun sets the DryRun field's value.

func (*ModifySnapshotAttributeInput) SetGroupNames

func (s *ModifySnapshotAttributeInput) SetGroupNames(v []*string) *ModifySnapshotAttributeInput

SetGroupNames sets the GroupNames field's value.

func (*ModifySnapshotAttributeInput) SetOperationType

func (s *ModifySnapshotAttributeInput) SetOperationType(v string) *ModifySnapshotAttributeInput

SetOperationType sets the OperationType field's value.

func (*ModifySnapshotAttributeInput) SetSnapshotId

func (s *ModifySnapshotAttributeInput) SetSnapshotId(v string) *ModifySnapshotAttributeInput

SetSnapshotId sets the SnapshotId field's value.

func (*ModifySnapshotAttributeInput) SetUserIds

func (s *ModifySnapshotAttributeInput) SetUserIds(v []*string) *ModifySnapshotAttributeInput

SetUserIds sets the UserIds field's value.

func (ModifySnapshotAttributeInput) String

func (s ModifySnapshotAttributeInput) String() string

String returns the string representation

func (*ModifySnapshotAttributeInput) Validate

func (s *ModifySnapshotAttributeInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ModifySnapshotAttributeOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifySnapshotAttributeOutput

type ModifySnapshotAttributeOutput struct {
    // contains filtered or unexported fields
}

func (ModifySnapshotAttributeOutput) GoString

func (s ModifySnapshotAttributeOutput) GoString() string

GoString returns the string representation

func (ModifySnapshotAttributeOutput) String

func (s ModifySnapshotAttributeOutput) String() string

String returns the string representation

type ModifySpotFleetRequestInput

Contains the parameters for ModifySpotFleetRequest. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifySpotFleetRequestRequest

type ModifySpotFleetRequestInput struct {

    // Indicates whether running Spot instances should be terminated if the target
    // capacity of the Spot fleet request is decreased below the current size of
    // the Spot fleet.
    ExcessCapacityTerminationPolicy *string `locationName:"excessCapacityTerminationPolicy" type:"string" enum:"ExcessCapacityTerminationPolicy"`

    // The ID of the Spot fleet request.
    //
    // SpotFleetRequestId is a required field
    SpotFleetRequestId *string `locationName:"spotFleetRequestId" type:"string" required:"true"`

    // The size of the fleet.
    TargetCapacity *int64 `locationName:"targetCapacity" type:"integer"`
    // contains filtered or unexported fields
}

func (ModifySpotFleetRequestInput) GoString

func (s ModifySpotFleetRequestInput) GoString() string

GoString returns the string representation

func (*ModifySpotFleetRequestInput) SetExcessCapacityTerminationPolicy

func (s *ModifySpotFleetRequestInput) SetExcessCapacityTerminationPolicy(v string) *ModifySpotFleetRequestInput

SetExcessCapacityTerminationPolicy sets the ExcessCapacityTerminationPolicy field's value.

func (*ModifySpotFleetRequestInput) SetSpotFleetRequestId

func (s *ModifySpotFleetRequestInput) SetSpotFleetRequestId(v string) *ModifySpotFleetRequestInput

SetSpotFleetRequestId sets the SpotFleetRequestId field's value.

func (*ModifySpotFleetRequestInput) SetTargetCapacity

func (s *ModifySpotFleetRequestInput) SetTargetCapacity(v int64) *ModifySpotFleetRequestInput

SetTargetCapacity sets the TargetCapacity field's value.

func (ModifySpotFleetRequestInput) String

func (s ModifySpotFleetRequestInput) String() string

String returns the string representation

func (*ModifySpotFleetRequestInput) Validate

func (s *ModifySpotFleetRequestInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ModifySpotFleetRequestOutput

Contains the output of ModifySpotFleetRequest. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifySpotFleetRequestResponse

type ModifySpotFleetRequestOutput struct {

    // Is true if the request succeeds, and an error otherwise.
    Return *bool `locationName:"return" type:"boolean"`
    // contains filtered or unexported fields
}

func (ModifySpotFleetRequestOutput) GoString

func (s ModifySpotFleetRequestOutput) GoString() string

GoString returns the string representation

func (*ModifySpotFleetRequestOutput) SetReturn

func (s *ModifySpotFleetRequestOutput) SetReturn(v bool) *ModifySpotFleetRequestOutput

SetReturn sets the Return field's value.

func (ModifySpotFleetRequestOutput) String

func (s ModifySpotFleetRequestOutput) String() string

String returns the string representation

type ModifySubnetAttributeInput

Contains the parameters for ModifySubnetAttribute. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifySubnetAttributeRequest

type ModifySubnetAttributeInput struct {

    // Specify true to indicate that network interfaces created in the specified
    // subnet should be assigned an IPv6 address. This includes a network interface
    // that's created when launching an instance into the subnet (the instance therefore
    // receives an IPv6 address).
    //
    // If you enable the IPv6 addressing feature for your subnet, your network interface
    // or instance only receives an IPv6 address if it's created using version 2016-11-15
    // or later of the Amazon EC2 API.
    AssignIpv6AddressOnCreation *AttributeBooleanValue `type:"structure"`

    // Specify true to indicate that network interfaces created in the specified
    // subnet should be assigned a public IPv4 address. This includes a network
    // interface that's created when launching an instance into the subnet (the
    // instance therefore receives a public IPv4 address).
    MapPublicIpOnLaunch *AttributeBooleanValue `type:"structure"`

    // The ID of the subnet.
    //
    // SubnetId is a required field
    SubnetId *string `locationName:"subnetId" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (ModifySubnetAttributeInput) GoString

func (s ModifySubnetAttributeInput) GoString() string

GoString returns the string representation

func (*ModifySubnetAttributeInput) SetAssignIpv6AddressOnCreation

func (s *ModifySubnetAttributeInput) SetAssignIpv6AddressOnCreation(v *AttributeBooleanValue) *ModifySubnetAttributeInput

SetAssignIpv6AddressOnCreation sets the AssignIpv6AddressOnCreation field's value.

func (*ModifySubnetAttributeInput) SetMapPublicIpOnLaunch

func (s *ModifySubnetAttributeInput) SetMapPublicIpOnLaunch(v *AttributeBooleanValue) *ModifySubnetAttributeInput

SetMapPublicIpOnLaunch sets the MapPublicIpOnLaunch field's value.

func (*ModifySubnetAttributeInput) SetSubnetId

func (s *ModifySubnetAttributeInput) SetSubnetId(v string) *ModifySubnetAttributeInput

SetSubnetId sets the SubnetId field's value.

func (ModifySubnetAttributeInput) String

func (s ModifySubnetAttributeInput) String() string

String returns the string representation

func (*ModifySubnetAttributeInput) Validate

func (s *ModifySubnetAttributeInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ModifySubnetAttributeOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifySubnetAttributeOutput

type ModifySubnetAttributeOutput struct {
    // contains filtered or unexported fields
}

func (ModifySubnetAttributeOutput) GoString

func (s ModifySubnetAttributeOutput) GoString() string

GoString returns the string representation

func (ModifySubnetAttributeOutput) String

func (s ModifySubnetAttributeOutput) String() string

String returns the string representation

type ModifyVolumeAttributeInput

Contains the parameters for ModifyVolumeAttribute. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVolumeAttributeRequest

type ModifyVolumeAttributeInput struct {

    // Indicates whether the volume should be auto-enabled for I/O operations.
    AutoEnableIO *AttributeBooleanValue `type:"structure"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the volume.
    //
    // VolumeId is a required field
    VolumeId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (ModifyVolumeAttributeInput) GoString

func (s ModifyVolumeAttributeInput) GoString() string

GoString returns the string representation

func (*ModifyVolumeAttributeInput) SetAutoEnableIO

func (s *ModifyVolumeAttributeInput) SetAutoEnableIO(v *AttributeBooleanValue) *ModifyVolumeAttributeInput

SetAutoEnableIO sets the AutoEnableIO field's value.

func (*ModifyVolumeAttributeInput) SetDryRun

func (s *ModifyVolumeAttributeInput) SetDryRun(v bool) *ModifyVolumeAttributeInput

SetDryRun sets the DryRun field's value.

func (*ModifyVolumeAttributeInput) SetVolumeId

func (s *ModifyVolumeAttributeInput) SetVolumeId(v string) *ModifyVolumeAttributeInput

SetVolumeId sets the VolumeId field's value.

func (ModifyVolumeAttributeInput) String

func (s ModifyVolumeAttributeInput) String() string

String returns the string representation

func (*ModifyVolumeAttributeInput) Validate

func (s *ModifyVolumeAttributeInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ModifyVolumeAttributeOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVolumeAttributeOutput

type ModifyVolumeAttributeOutput struct {
    // contains filtered or unexported fields
}

func (ModifyVolumeAttributeOutput) GoString

func (s ModifyVolumeAttributeOutput) GoString() string

GoString returns the string representation

func (ModifyVolumeAttributeOutput) String

func (s ModifyVolumeAttributeOutput) String() string

String returns the string representation

type ModifyVolumeInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVolumeRequest

type ModifyVolumeInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `type:"boolean"`

    // Target IOPS rate of the volume to be modified.
    //
    // Only valid for Provisioned IOPS SSD (io1) volumes. For more information about
    // io1 IOPS configuration, see http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSVolumeTypes.html#EBSVolumeTypes_piops
    // (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSVolumeTypes.html#EBSVolumeTypes_piops).
    //
    // Default: If no IOPS value is specified, the existing value is retained.
    Iops *int64 `type:"integer"`

    // Target size in GiB of the volume to be modified. Target volume size must
    // be greater than or equal to than the existing size of the volume. For information
    // about available EBS volume sizes, see http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSVolumeTypes.html
    // (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSVolumeTypes.html).
    //
    // Default: If no size is specified, the existing size is retained.
    Size *int64 `type:"integer"`

    // VolumeId is a required field
    VolumeId *string `type:"string" required:"true"`

    // Target EBS volume type of the volume to be modified
    //
    // The API does not support modifications for volume type standard. You also
    // cannot change the type of a volume to standard.
    //
    // Default: If no type is specified, the existing type is retained.
    VolumeType *string `type:"string" enum:"VolumeType"`
    // contains filtered or unexported fields
}

func (ModifyVolumeInput) GoString

func (s ModifyVolumeInput) GoString() string

GoString returns the string representation

func (*ModifyVolumeInput) SetDryRun

func (s *ModifyVolumeInput) SetDryRun(v bool) *ModifyVolumeInput

SetDryRun sets the DryRun field's value.

func (*ModifyVolumeInput) SetIops

func (s *ModifyVolumeInput) SetIops(v int64) *ModifyVolumeInput

SetIops sets the Iops field's value.

func (*ModifyVolumeInput) SetSize

func (s *ModifyVolumeInput) SetSize(v int64) *ModifyVolumeInput

SetSize sets the Size field's value.

func (*ModifyVolumeInput) SetVolumeId

func (s *ModifyVolumeInput) SetVolumeId(v string) *ModifyVolumeInput

SetVolumeId sets the VolumeId field's value.

func (*ModifyVolumeInput) SetVolumeType

func (s *ModifyVolumeInput) SetVolumeType(v string) *ModifyVolumeInput

SetVolumeType sets the VolumeType field's value.

func (ModifyVolumeInput) String

func (s ModifyVolumeInput) String() string

String returns the string representation

func (*ModifyVolumeInput) Validate

func (s *ModifyVolumeInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ModifyVolumeOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVolumeResult

type ModifyVolumeOutput struct {

    // A VolumeModification object.
    VolumeModification *VolumeModification `locationName:"volumeModification" type:"structure"`
    // contains filtered or unexported fields
}

func (ModifyVolumeOutput) GoString

func (s ModifyVolumeOutput) GoString() string

GoString returns the string representation

func (*ModifyVolumeOutput) SetVolumeModification

func (s *ModifyVolumeOutput) SetVolumeModification(v *VolumeModification) *ModifyVolumeOutput

SetVolumeModification sets the VolumeModification field's value.

func (ModifyVolumeOutput) String

func (s ModifyVolumeOutput) String() string

String returns the string representation

type ModifyVpcAttributeInput

Contains the parameters for ModifyVpcAttribute. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVpcAttributeRequest

type ModifyVpcAttributeInput struct {

    // Indicates whether the instances launched in the VPC get DNS hostnames. If
    // enabled, instances in the VPC get DNS hostnames; otherwise, they do not.
    //
    // You cannot modify the DNS resolution and DNS hostnames attributes in the
    // same request. Use separate requests for each attribute. You can only enable
    // DNS hostnames if you've enabled DNS support.
    EnableDnsHostnames *AttributeBooleanValue `type:"structure"`

    // Indicates whether the DNS resolution is supported for the VPC. If enabled,
    // queries to the Amazon provided DNS server at the 169.254.169.253 IP address,
    // or the reserved IP address at the base of the VPC network range "plus two"
    // will succeed. If disabled, the Amazon provided DNS service in the VPC that
    // resolves public DNS hostnames to IP addresses is not enabled.
    //
    // You cannot modify the DNS resolution and DNS hostnames attributes in the
    // same request. Use separate requests for each attribute.
    EnableDnsSupport *AttributeBooleanValue `type:"structure"`

    // The ID of the VPC.
    //
    // VpcId is a required field
    VpcId *string `locationName:"vpcId" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (ModifyVpcAttributeInput) GoString

func (s ModifyVpcAttributeInput) GoString() string

GoString returns the string representation

func (*ModifyVpcAttributeInput) SetEnableDnsHostnames

func (s *ModifyVpcAttributeInput) SetEnableDnsHostnames(v *AttributeBooleanValue) *ModifyVpcAttributeInput

SetEnableDnsHostnames sets the EnableDnsHostnames field's value.

func (*ModifyVpcAttributeInput) SetEnableDnsSupport

func (s *ModifyVpcAttributeInput) SetEnableDnsSupport(v *AttributeBooleanValue) *ModifyVpcAttributeInput

SetEnableDnsSupport sets the EnableDnsSupport field's value.

func (*ModifyVpcAttributeInput) SetVpcId

func (s *ModifyVpcAttributeInput) SetVpcId(v string) *ModifyVpcAttributeInput

SetVpcId sets the VpcId field's value.

func (ModifyVpcAttributeInput) String

func (s ModifyVpcAttributeInput) String() string

String returns the string representation

func (*ModifyVpcAttributeInput) Validate

func (s *ModifyVpcAttributeInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ModifyVpcAttributeOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVpcAttributeOutput

type ModifyVpcAttributeOutput struct {
    // contains filtered or unexported fields
}

func (ModifyVpcAttributeOutput) GoString

func (s ModifyVpcAttributeOutput) GoString() string

GoString returns the string representation

func (ModifyVpcAttributeOutput) String

func (s ModifyVpcAttributeOutput) String() string

String returns the string representation

type ModifyVpcEndpointInput

Contains the parameters for ModifyVpcEndpoint. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVpcEndpointRequest

type ModifyVpcEndpointInput struct {

    // One or more route tables IDs to associate with the endpoint.
    AddRouteTableIds []*string `locationName:"AddRouteTableId" locationNameList:"item" type:"list"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `type:"boolean"`

    // A policy document to attach to the endpoint. The policy must be in valid
    // JSON format.
    PolicyDocument *string `type:"string"`

    // One or more route table IDs to disassociate from the endpoint.
    RemoveRouteTableIds []*string `locationName:"RemoveRouteTableId" locationNameList:"item" type:"list"`

    // Specify true to reset the policy document to the default policy. The default
    // policy allows access to the service.
    ResetPolicy *bool `type:"boolean"`

    // The ID of the endpoint.
    //
    // VpcEndpointId is a required field
    VpcEndpointId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (ModifyVpcEndpointInput) GoString

func (s ModifyVpcEndpointInput) GoString() string

GoString returns the string representation

func (*ModifyVpcEndpointInput) SetAddRouteTableIds

func (s *ModifyVpcEndpointInput) SetAddRouteTableIds(v []*string) *ModifyVpcEndpointInput

SetAddRouteTableIds sets the AddRouteTableIds field's value.

func (*ModifyVpcEndpointInput) SetDryRun

func (s *ModifyVpcEndpointInput) SetDryRun(v bool) *ModifyVpcEndpointInput

SetDryRun sets the DryRun field's value.

func (*ModifyVpcEndpointInput) SetPolicyDocument

func (s *ModifyVpcEndpointInput) SetPolicyDocument(v string) *ModifyVpcEndpointInput

SetPolicyDocument sets the PolicyDocument field's value.

func (*ModifyVpcEndpointInput) SetRemoveRouteTableIds

func (s *ModifyVpcEndpointInput) SetRemoveRouteTableIds(v []*string) *ModifyVpcEndpointInput

SetRemoveRouteTableIds sets the RemoveRouteTableIds field's value.

func (*ModifyVpcEndpointInput) SetResetPolicy

func (s *ModifyVpcEndpointInput) SetResetPolicy(v bool) *ModifyVpcEndpointInput

SetResetPolicy sets the ResetPolicy field's value.

func (*ModifyVpcEndpointInput) SetVpcEndpointId

func (s *ModifyVpcEndpointInput) SetVpcEndpointId(v string) *ModifyVpcEndpointInput

SetVpcEndpointId sets the VpcEndpointId field's value.

func (ModifyVpcEndpointInput) String

func (s ModifyVpcEndpointInput) String() string

String returns the string representation

func (*ModifyVpcEndpointInput) Validate

func (s *ModifyVpcEndpointInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ModifyVpcEndpointOutput

Contains the output of ModifyVpcEndpoint. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVpcEndpointResult

type ModifyVpcEndpointOutput struct {

    // Returns true if the request succeeds; otherwise, it returns an error.
    Return *bool `locationName:"return" type:"boolean"`
    // contains filtered or unexported fields
}

func (ModifyVpcEndpointOutput) GoString

func (s ModifyVpcEndpointOutput) GoString() string

GoString returns the string representation

func (*ModifyVpcEndpointOutput) SetReturn

func (s *ModifyVpcEndpointOutput) SetReturn(v bool) *ModifyVpcEndpointOutput

SetReturn sets the Return field's value.

func (ModifyVpcEndpointOutput) String

func (s ModifyVpcEndpointOutput) String() string

String returns the string representation

type ModifyVpcPeeringConnectionOptionsInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVpcPeeringConnectionOptionsRequest

type ModifyVpcPeeringConnectionOptionsInput struct {

    // The VPC peering connection options for the accepter VPC.
    AccepterPeeringConnectionOptions *PeeringConnectionOptionsRequest `type:"structure"`

    // Checks whether you have the required permissions for the operation, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `type:"boolean"`

    // The VPC peering connection options for the requester VPC.
    RequesterPeeringConnectionOptions *PeeringConnectionOptionsRequest `type:"structure"`

    // The ID of the VPC peering connection.
    //
    // VpcPeeringConnectionId is a required field
    VpcPeeringConnectionId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (ModifyVpcPeeringConnectionOptionsInput) GoString

func (s ModifyVpcPeeringConnectionOptionsInput) GoString() string

GoString returns the string representation

func (*ModifyVpcPeeringConnectionOptionsInput) SetAccepterPeeringConnectionOptions

func (s *ModifyVpcPeeringConnectionOptionsInput) SetAccepterPeeringConnectionOptions(v *PeeringConnectionOptionsRequest) *ModifyVpcPeeringConnectionOptionsInput

SetAccepterPeeringConnectionOptions sets the AccepterPeeringConnectionOptions field's value.

func (*ModifyVpcPeeringConnectionOptionsInput) SetDryRun

func (s *ModifyVpcPeeringConnectionOptionsInput) SetDryRun(v bool) *ModifyVpcPeeringConnectionOptionsInput

SetDryRun sets the DryRun field's value.

func (*ModifyVpcPeeringConnectionOptionsInput) SetRequesterPeeringConnectionOptions

func (s *ModifyVpcPeeringConnectionOptionsInput) SetRequesterPeeringConnectionOptions(v *PeeringConnectionOptionsRequest) *ModifyVpcPeeringConnectionOptionsInput

SetRequesterPeeringConnectionOptions sets the RequesterPeeringConnectionOptions field's value.

func (*ModifyVpcPeeringConnectionOptionsInput) SetVpcPeeringConnectionId

func (s *ModifyVpcPeeringConnectionOptionsInput) SetVpcPeeringConnectionId(v string) *ModifyVpcPeeringConnectionOptionsInput

SetVpcPeeringConnectionId sets the VpcPeeringConnectionId field's value.

func (ModifyVpcPeeringConnectionOptionsInput) String

func (s ModifyVpcPeeringConnectionOptionsInput) String() string

String returns the string representation

func (*ModifyVpcPeeringConnectionOptionsInput) Validate

func (s *ModifyVpcPeeringConnectionOptionsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ModifyVpcPeeringConnectionOptionsOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVpcPeeringConnectionOptionsResult

type ModifyVpcPeeringConnectionOptionsOutput struct {

    // Information about the VPC peering connection options for the accepter VPC.
    AccepterPeeringConnectionOptions *PeeringConnectionOptions `locationName:"accepterPeeringConnectionOptions" type:"structure"`

    // Information about the VPC peering connection options for the requester VPC.
    RequesterPeeringConnectionOptions *PeeringConnectionOptions `locationName:"requesterPeeringConnectionOptions" type:"structure"`
    // contains filtered or unexported fields
}

func (ModifyVpcPeeringConnectionOptionsOutput) GoString

func (s ModifyVpcPeeringConnectionOptionsOutput) GoString() string

GoString returns the string representation

func (*ModifyVpcPeeringConnectionOptionsOutput) SetAccepterPeeringConnectionOptions

func (s *ModifyVpcPeeringConnectionOptionsOutput) SetAccepterPeeringConnectionOptions(v *PeeringConnectionOptions) *ModifyVpcPeeringConnectionOptionsOutput

SetAccepterPeeringConnectionOptions sets the AccepterPeeringConnectionOptions field's value.

func (*ModifyVpcPeeringConnectionOptionsOutput) SetRequesterPeeringConnectionOptions

func (s *ModifyVpcPeeringConnectionOptionsOutput) SetRequesterPeeringConnectionOptions(v *PeeringConnectionOptions) *ModifyVpcPeeringConnectionOptionsOutput

SetRequesterPeeringConnectionOptions sets the RequesterPeeringConnectionOptions field's value.

func (ModifyVpcPeeringConnectionOptionsOutput) String

func (s ModifyVpcPeeringConnectionOptionsOutput) String() string

String returns the string representation

type MonitorInstancesInput

Contains the parameters for MonitorInstances. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/MonitorInstancesRequest

type MonitorInstancesInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // One or more instance IDs.
    //
    // InstanceIds is a required field
    InstanceIds []*string `locationName:"InstanceId" locationNameList:"InstanceId" type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (MonitorInstancesInput) GoString

func (s MonitorInstancesInput) GoString() string

GoString returns the string representation

func (*MonitorInstancesInput) SetDryRun

func (s *MonitorInstancesInput) SetDryRun(v bool) *MonitorInstancesInput

SetDryRun sets the DryRun field's value.

func (*MonitorInstancesInput) SetInstanceIds

func (s *MonitorInstancesInput) SetInstanceIds(v []*string) *MonitorInstancesInput

SetInstanceIds sets the InstanceIds field's value.

func (MonitorInstancesInput) String

func (s MonitorInstancesInput) String() string

String returns the string representation

func (*MonitorInstancesInput) Validate

func (s *MonitorInstancesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type MonitorInstancesOutput

Contains the output of MonitorInstances. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/MonitorInstancesResult

type MonitorInstancesOutput struct {

    // The monitoring information.
    InstanceMonitorings []*InstanceMonitoring `locationName:"instancesSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (MonitorInstancesOutput) GoString

func (s MonitorInstancesOutput) GoString() string

GoString returns the string representation

func (*MonitorInstancesOutput) SetInstanceMonitorings

func (s *MonitorInstancesOutput) SetInstanceMonitorings(v []*InstanceMonitoring) *MonitorInstancesOutput

SetInstanceMonitorings sets the InstanceMonitorings field's value.

func (MonitorInstancesOutput) String

func (s MonitorInstancesOutput) String() string

String returns the string representation

type Monitoring

Describes the monitoring of an instance. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Monitoring

type Monitoring struct {

    // Indicates whether detailed monitoring is enabled. Otherwise, basic monitoring
    // is enabled.
    State *string `locationName:"state" type:"string" enum:"MonitoringState"`
    // contains filtered or unexported fields
}

func (Monitoring) GoString

func (s Monitoring) GoString() string

GoString returns the string representation

func (*Monitoring) SetState

func (s *Monitoring) SetState(v string) *Monitoring

SetState sets the State field's value.

func (Monitoring) String

func (s Monitoring) String() string

String returns the string representation

type MoveAddressToVpcInput

Contains the parameters for MoveAddressToVpc. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/MoveAddressToVpcRequest

type MoveAddressToVpcInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The Elastic IP address.
    //
    // PublicIp is a required field
    PublicIp *string `locationName:"publicIp" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (MoveAddressToVpcInput) GoString

func (s MoveAddressToVpcInput) GoString() string

GoString returns the string representation

func (*MoveAddressToVpcInput) SetDryRun

func (s *MoveAddressToVpcInput) SetDryRun(v bool) *MoveAddressToVpcInput

SetDryRun sets the DryRun field's value.

func (*MoveAddressToVpcInput) SetPublicIp

func (s *MoveAddressToVpcInput) SetPublicIp(v string) *MoveAddressToVpcInput

SetPublicIp sets the PublicIp field's value.

func (MoveAddressToVpcInput) String

func (s MoveAddressToVpcInput) String() string

String returns the string representation

func (*MoveAddressToVpcInput) Validate

func (s *MoveAddressToVpcInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type MoveAddressToVpcOutput

Contains the output of MoveAddressToVpc. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/MoveAddressToVpcResult

type MoveAddressToVpcOutput struct {

    // The allocation ID for the Elastic IP address.
    AllocationId *string `locationName:"allocationId" type:"string"`

    // The status of the move of the IP address.
    Status *string `locationName:"status" type:"string" enum:"Status"`
    // contains filtered or unexported fields
}

func (MoveAddressToVpcOutput) GoString

func (s MoveAddressToVpcOutput) GoString() string

GoString returns the string representation

func (*MoveAddressToVpcOutput) SetAllocationId

func (s *MoveAddressToVpcOutput) SetAllocationId(v string) *MoveAddressToVpcOutput

SetAllocationId sets the AllocationId field's value.

func (*MoveAddressToVpcOutput) SetStatus

func (s *MoveAddressToVpcOutput) SetStatus(v string) *MoveAddressToVpcOutput

SetStatus sets the Status field's value.

func (MoveAddressToVpcOutput) String

func (s MoveAddressToVpcOutput) String() string

String returns the string representation

type MovingAddressStatus

Describes the status of a moving Elastic IP address. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/MovingAddressStatus

type MovingAddressStatus struct {

    // The status of the Elastic IP address that's being moved to the EC2-VPC platform,
    // or restored to the EC2-Classic platform.
    MoveStatus *string `locationName:"moveStatus" type:"string" enum:"MoveStatus"`

    // The Elastic IP address.
    PublicIp *string `locationName:"publicIp" type:"string"`
    // contains filtered or unexported fields
}

func (MovingAddressStatus) GoString

func (s MovingAddressStatus) GoString() string

GoString returns the string representation

func (*MovingAddressStatus) SetMoveStatus

func (s *MovingAddressStatus) SetMoveStatus(v string) *MovingAddressStatus

SetMoveStatus sets the MoveStatus field's value.

func (*MovingAddressStatus) SetPublicIp

func (s *MovingAddressStatus) SetPublicIp(v string) *MovingAddressStatus

SetPublicIp sets the PublicIp field's value.

func (MovingAddressStatus) String

func (s MovingAddressStatus) String() string

String returns the string representation

type NatGateway

Describes a NAT gateway. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/NatGateway

type NatGateway struct {

    // The date and time the NAT gateway was created.
    CreateTime *time.Time `locationName:"createTime" type:"timestamp" timestampFormat:"iso8601"`

    // The date and time the NAT gateway was deleted, if applicable.
    DeleteTime *time.Time `locationName:"deleteTime" type:"timestamp" timestampFormat:"iso8601"`

    // If the NAT gateway could not be created, specifies the error code for the
    // failure. (InsufficientFreeAddressesInSubnet | Gateway.NotAttached | InvalidAllocationID.NotFound
    // | Resource.AlreadyAssociated | InternalError | InvalidSubnetID.NotFound)
    FailureCode *string `locationName:"failureCode" type:"string"`

    // If the NAT gateway could not be created, specifies the error message for
    // the failure, that corresponds to the error code.
    //
    //    * For InsufficientFreeAddressesInSubnet: "Subnet has insufficient free
    //    addresses to create this NAT gateway"
    //
    //    * For Gateway.NotAttached: "Network vpc-xxxxxxxx has no Internet gateway
    //    attached"
    //
    //    * For InvalidAllocationID.NotFound: "Elastic IP address eipalloc-xxxxxxxx
    //    could not be associated with this NAT gateway"
    //
    //    * For Resource.AlreadyAssociated: "Elastic IP address eipalloc-xxxxxxxx
    //    is already associated"
    //
    //    * For InternalError: "Network interface eni-xxxxxxxx, created and used
    //    internally by this NAT gateway is in an invalid state. Please try again."
    //
    //    * For InvalidSubnetID.NotFound: "The specified subnet subnet-xxxxxxxx
    //    does not exist or could not be found."
    FailureMessage *string `locationName:"failureMessage" type:"string"`

    // Information about the IP addresses and network interface associated with
    // the NAT gateway.
    NatGatewayAddresses []*NatGatewayAddress `locationName:"natGatewayAddressSet" locationNameList:"item" type:"list"`

    // The ID of the NAT gateway.
    NatGatewayId *string `locationName:"natGatewayId" type:"string"`

    // Reserved. If you need to sustain traffic greater than the documented limits
    // (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/vpc-nat-gateway.html),
    // contact us through the Support Center (https://console.aws.amazon.com/support/home?).
    ProvisionedBandwidth *ProvisionedBandwidth `locationName:"provisionedBandwidth" type:"structure"`

    // The state of the NAT gateway.
    //
    //    * pending: The NAT gateway is being created and is not ready to process
    //    traffic.
    //
    //    * failed: The NAT gateway could not be created. Check the failureCode
    //    and failureMessage fields for the reason.
    //
    //    * available: The NAT gateway is able to process traffic. This status remains
    //    until you delete the NAT gateway, and does not indicate the health of
    //    the NAT gateway.
    //
    //    * deleting: The NAT gateway is in the process of being terminated and
    //    may still be processing traffic.
    //
    //    * deleted: The NAT gateway has been terminated and is no longer processing
    //    traffic.
    State *string `locationName:"state" type:"string" enum:"NatGatewayState"`

    // The ID of the subnet in which the NAT gateway is located.
    SubnetId *string `locationName:"subnetId" type:"string"`

    // The ID of the VPC in which the NAT gateway is located.
    VpcId *string `locationName:"vpcId" type:"string"`
    // contains filtered or unexported fields
}

func (NatGateway) GoString

func (s NatGateway) GoString() string

GoString returns the string representation

func (*NatGateway) SetCreateTime

func (s *NatGateway) SetCreateTime(v time.Time) *NatGateway

SetCreateTime sets the CreateTime field's value.

func (*NatGateway) SetDeleteTime

func (s *NatGateway) SetDeleteTime(v time.Time) *NatGateway

SetDeleteTime sets the DeleteTime field's value.

func (*NatGateway) SetFailureCode

func (s *NatGateway) SetFailureCode(v string) *NatGateway

SetFailureCode sets the FailureCode field's value.

func (*NatGateway) SetFailureMessage

func (s *NatGateway) SetFailureMessage(v string) *NatGateway

SetFailureMessage sets the FailureMessage field's value.

func (*NatGateway) SetNatGatewayAddresses

func (s *NatGateway) SetNatGatewayAddresses(v []*NatGatewayAddress) *NatGateway

SetNatGatewayAddresses sets the NatGatewayAddresses field's value.

func (*NatGateway) SetNatGatewayId

func (s *NatGateway) SetNatGatewayId(v string) *NatGateway

SetNatGatewayId sets the NatGatewayId field's value.

func (*NatGateway) SetProvisionedBandwidth

func (s *NatGateway) SetProvisionedBandwidth(v *ProvisionedBandwidth) *NatGateway

SetProvisionedBandwidth sets the ProvisionedBandwidth field's value.

func (*NatGateway) SetState

func (s *NatGateway) SetState(v string) *NatGateway

SetState sets the State field's value.

func (*NatGateway) SetSubnetId

func (s *NatGateway) SetSubnetId(v string) *NatGateway

SetSubnetId sets the SubnetId field's value.

func (*NatGateway) SetVpcId

func (s *NatGateway) SetVpcId(v string) *NatGateway

SetVpcId sets the VpcId field's value.

func (NatGateway) String

func (s NatGateway) String() string

String returns the string representation

type NatGatewayAddress

Describes the IP addresses and network interface associated with a NAT gateway. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/NatGatewayAddress

type NatGatewayAddress struct {

    // The allocation ID of the Elastic IP address that's associated with the NAT
    // gateway.
    AllocationId *string `locationName:"allocationId" type:"string"`

    // The ID of the network interface associated with the NAT gateway.
    NetworkInterfaceId *string `locationName:"networkInterfaceId" type:"string"`

    // The private IP address associated with the Elastic IP address.
    PrivateIp *string `locationName:"privateIp" type:"string"`

    // The Elastic IP address associated with the NAT gateway.
    PublicIp *string `locationName:"publicIp" type:"string"`
    // contains filtered or unexported fields
}

func (NatGatewayAddress) GoString

func (s NatGatewayAddress) GoString() string

GoString returns the string representation

func (*NatGatewayAddress) SetAllocationId

func (s *NatGatewayAddress) SetAllocationId(v string) *NatGatewayAddress

SetAllocationId sets the AllocationId field's value.

func (*NatGatewayAddress) SetNetworkInterfaceId

func (s *NatGatewayAddress) SetNetworkInterfaceId(v string) *NatGatewayAddress

SetNetworkInterfaceId sets the NetworkInterfaceId field's value.

func (*NatGatewayAddress) SetPrivateIp

func (s *NatGatewayAddress) SetPrivateIp(v string) *NatGatewayAddress

SetPrivateIp sets the PrivateIp field's value.

func (*NatGatewayAddress) SetPublicIp

func (s *NatGatewayAddress) SetPublicIp(v string) *NatGatewayAddress

SetPublicIp sets the PublicIp field's value.

func (NatGatewayAddress) String

func (s NatGatewayAddress) String() string

String returns the string representation

type NetworkAcl

Describes a network ACL. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/NetworkAcl

type NetworkAcl struct {

    // Any associations between the network ACL and one or more subnets
    Associations []*NetworkAclAssociation `locationName:"associationSet" locationNameList:"item" type:"list"`

    // One or more entries (rules) in the network ACL.
    Entries []*NetworkAclEntry `locationName:"entrySet" locationNameList:"item" type:"list"`

    // Indicates whether this is the default network ACL for the VPC.
    IsDefault *bool `locationName:"default" type:"boolean"`

    // The ID of the network ACL.
    NetworkAclId *string `locationName:"networkAclId" type:"string"`

    // Any tags assigned to the network ACL.
    Tags []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"`

    // The ID of the VPC for the network ACL.
    VpcId *string `locationName:"vpcId" type:"string"`
    // contains filtered or unexported fields
}

func (NetworkAcl) GoString

func (s NetworkAcl) GoString() string

GoString returns the string representation

func (*NetworkAcl) SetAssociations

func (s *NetworkAcl) SetAssociations(v []*NetworkAclAssociation) *NetworkAcl

SetAssociations sets the Associations field's value.

func (*NetworkAcl) SetEntries

func (s *NetworkAcl) SetEntries(v []*NetworkAclEntry) *NetworkAcl

SetEntries sets the Entries field's value.

func (*NetworkAcl) SetIsDefault

func (s *NetworkAcl) SetIsDefault(v bool) *NetworkAcl

SetIsDefault sets the IsDefault field's value.

func (*NetworkAcl) SetNetworkAclId

func (s *NetworkAcl) SetNetworkAclId(v string) *NetworkAcl

SetNetworkAclId sets the NetworkAclId field's value.

func (*NetworkAcl) SetTags

func (s *NetworkAcl) SetTags(v []*Tag) *NetworkAcl

SetTags sets the Tags field's value.

func (*NetworkAcl) SetVpcId

func (s *NetworkAcl) SetVpcId(v string) *NetworkAcl

SetVpcId sets the VpcId field's value.

func (NetworkAcl) String

func (s NetworkAcl) String() string

String returns the string representation

type NetworkAclAssociation

Describes an association between a network ACL and a subnet. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/NetworkAclAssociation

type NetworkAclAssociation struct {

    // The ID of the association between a network ACL and a subnet.
    NetworkAclAssociationId *string `locationName:"networkAclAssociationId" type:"string"`

    // The ID of the network ACL.
    NetworkAclId *string `locationName:"networkAclId" type:"string"`

    // The ID of the subnet.
    SubnetId *string `locationName:"subnetId" type:"string"`
    // contains filtered or unexported fields
}

func (NetworkAclAssociation) GoString

func (s NetworkAclAssociation) GoString() string

GoString returns the string representation

func (*NetworkAclAssociation) SetNetworkAclAssociationId

func (s *NetworkAclAssociation) SetNetworkAclAssociationId(v string) *NetworkAclAssociation

SetNetworkAclAssociationId sets the NetworkAclAssociationId field's value.

func (*NetworkAclAssociation) SetNetworkAclId

func (s *NetworkAclAssociation) SetNetworkAclId(v string) *NetworkAclAssociation

SetNetworkAclId sets the NetworkAclId field's value.

func (*NetworkAclAssociation) SetSubnetId

func (s *NetworkAclAssociation) SetSubnetId(v string) *NetworkAclAssociation

SetSubnetId sets the SubnetId field's value.

func (NetworkAclAssociation) String

func (s NetworkAclAssociation) String() string

String returns the string representation

type NetworkAclEntry

Describes an entry in a network ACL. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/NetworkAclEntry

type NetworkAclEntry struct {

    // The IPv4 network range to allow or deny, in CIDR notation.
    CidrBlock *string `locationName:"cidrBlock" type:"string"`

    // Indicates whether the rule is an egress rule (applied to traffic leaving
    // the subnet).
    Egress *bool `locationName:"egress" type:"boolean"`

    // ICMP protocol: The ICMP type and code.
    IcmpTypeCode *IcmpTypeCode `locationName:"icmpTypeCode" type:"structure"`

    // The IPv6 network range to allow or deny, in CIDR notation.
    Ipv6CidrBlock *string `locationName:"ipv6CidrBlock" type:"string"`

    // TCP or UDP protocols: The range of ports the rule applies to.
    PortRange *PortRange `locationName:"portRange" type:"structure"`

    // The protocol. A value of -1 means all protocols.
    Protocol *string `locationName:"protocol" type:"string"`

    // Indicates whether to allow or deny the traffic that matches the rule.
    RuleAction *string `locationName:"ruleAction" type:"string" enum:"RuleAction"`

    // The rule number for the entry. ACL entries are processed in ascending order
    // by rule number.
    RuleNumber *int64 `locationName:"ruleNumber" type:"integer"`
    // contains filtered or unexported fields
}

func (NetworkAclEntry) GoString

func (s NetworkAclEntry) GoString() string

GoString returns the string representation

func (*NetworkAclEntry) SetCidrBlock

func (s *NetworkAclEntry) SetCidrBlock(v string) *NetworkAclEntry

SetCidrBlock sets the CidrBlock field's value.

func (*NetworkAclEntry) SetEgress

func (s *NetworkAclEntry) SetEgress(v bool) *NetworkAclEntry

SetEgress sets the Egress field's value.

func (*NetworkAclEntry) SetIcmpTypeCode

func (s *NetworkAclEntry) SetIcmpTypeCode(v *IcmpTypeCode) *NetworkAclEntry

SetIcmpTypeCode sets the IcmpTypeCode field's value.

func (*NetworkAclEntry) SetIpv6CidrBlock

func (s *NetworkAclEntry) SetIpv6CidrBlock(v string) *NetworkAclEntry

SetIpv6CidrBlock sets the Ipv6CidrBlock field's value.

func (*NetworkAclEntry) SetPortRange

func (s *NetworkAclEntry) SetPortRange(v *PortRange) *NetworkAclEntry

SetPortRange sets the PortRange field's value.

func (*NetworkAclEntry) SetProtocol

func (s *NetworkAclEntry) SetProtocol(v string) *NetworkAclEntry

SetProtocol sets the Protocol field's value.

func (*NetworkAclEntry) SetRuleAction

func (s *NetworkAclEntry) SetRuleAction(v string) *NetworkAclEntry

SetRuleAction sets the RuleAction field's value.

func (*NetworkAclEntry) SetRuleNumber

func (s *NetworkAclEntry) SetRuleNumber(v int64) *NetworkAclEntry

SetRuleNumber sets the RuleNumber field's value.

func (NetworkAclEntry) String

func (s NetworkAclEntry) String() string

String returns the string representation

type NetworkInterface

Describes a network interface. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/NetworkInterface

type NetworkInterface struct {

    // The association information for an Elastic IP address (IPv4) associated with
    // the network interface.
    Association *NetworkInterfaceAssociation `locationName:"association" type:"structure"`

    // The network interface attachment.
    Attachment *NetworkInterfaceAttachment `locationName:"attachment" type:"structure"`

    // The Availability Zone.
    AvailabilityZone *string `locationName:"availabilityZone" type:"string"`

    // A description.
    Description *string `locationName:"description" type:"string"`

    // Any security groups for the network interface.
    Groups []*GroupIdentifier `locationName:"groupSet" locationNameList:"item" type:"list"`

    // The type of interface.
    InterfaceType *string `locationName:"interfaceType" type:"string" enum:"NetworkInterfaceType"`

    // The IPv6 addresses associated with the network interface.
    Ipv6Addresses []*NetworkInterfaceIpv6Address `locationName:"ipv6AddressesSet" locationNameList:"item" type:"list"`

    // The MAC address.
    MacAddress *string `locationName:"macAddress" type:"string"`

    // The ID of the network interface.
    NetworkInterfaceId *string `locationName:"networkInterfaceId" type:"string"`

    // The AWS account ID of the owner of the network interface.
    OwnerId *string `locationName:"ownerId" type:"string"`

    // The private DNS name.
    PrivateDnsName *string `locationName:"privateDnsName" type:"string"`

    // The IPv4 address of the network interface within the subnet.
    PrivateIpAddress *string `locationName:"privateIpAddress" type:"string"`

    // The private IPv4 addresses associated with the network interface.
    PrivateIpAddresses []*NetworkInterfacePrivateIpAddress `locationName:"privateIpAddressesSet" locationNameList:"item" type:"list"`

    // The ID of the entity that launched the instance on your behalf (for example,
    // AWS Management Console or Auto Scaling).
    RequesterId *string `locationName:"requesterId" type:"string"`

    // Indicates whether the network interface is being managed by AWS.
    RequesterManaged *bool `locationName:"requesterManaged" type:"boolean"`

    // Indicates whether traffic to or from the instance is validated.
    SourceDestCheck *bool `locationName:"sourceDestCheck" type:"boolean"`

    // The status of the network interface.
    Status *string `locationName:"status" type:"string" enum:"NetworkInterfaceStatus"`

    // The ID of the subnet.
    SubnetId *string `locationName:"subnetId" type:"string"`

    // Any tags assigned to the network interface.
    TagSet []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"`

    // The ID of the VPC.
    VpcId *string `locationName:"vpcId" type:"string"`
    // contains filtered or unexported fields
}

func (NetworkInterface) GoString

func (s NetworkInterface) GoString() string

GoString returns the string representation

func (*NetworkInterface) SetAssociation

func (s *NetworkInterface) SetAssociation(v *NetworkInterfaceAssociation) *NetworkInterface

SetAssociation sets the Association field's value.

func (*NetworkInterface) SetAttachment

func (s *NetworkInterface) SetAttachment(v *NetworkInterfaceAttachment) *NetworkInterface

SetAttachment sets the Attachment field's value.

func (*NetworkInterface) SetAvailabilityZone

func (s *NetworkInterface) SetAvailabilityZone(v string) *NetworkInterface

SetAvailabilityZone sets the AvailabilityZone field's value.

func (*NetworkInterface) SetDescription

func (s *NetworkInterface) SetDescription(v string) *NetworkInterface

SetDescription sets the Description field's value.

func (*NetworkInterface) SetGroups

func (s *NetworkInterface) SetGroups(v []*GroupIdentifier) *NetworkInterface

SetGroups sets the Groups field's value.

func (*NetworkInterface) SetInterfaceType

func (s *NetworkInterface) SetInterfaceType(v string) *NetworkInterface

SetInterfaceType sets the InterfaceType field's value.

func (*NetworkInterface) SetIpv6Addresses

func (s *NetworkInterface) SetIpv6Addresses(v []*NetworkInterfaceIpv6Address) *NetworkInterface

SetIpv6Addresses sets the Ipv6Addresses field's value.

func (*NetworkInterface) SetMacAddress

func (s *NetworkInterface) SetMacAddress(v string) *NetworkInterface

SetMacAddress sets the MacAddress field's value.

func (*NetworkInterface) SetNetworkInterfaceId

func (s *NetworkInterface) SetNetworkInterfaceId(v string) *NetworkInterface

SetNetworkInterfaceId sets the NetworkInterfaceId field's value.

func (*NetworkInterface) SetOwnerId

func (s *NetworkInterface) SetOwnerId(v string) *NetworkInterface

SetOwnerId sets the OwnerId field's value.

func (*NetworkInterface) SetPrivateDnsName

func (s *NetworkInterface) SetPrivateDnsName(v string) *NetworkInterface

SetPrivateDnsName sets the PrivateDnsName field's value.

func (*NetworkInterface) SetPrivateIpAddress

func (s *NetworkInterface) SetPrivateIpAddress(v string) *NetworkInterface

SetPrivateIpAddress sets the PrivateIpAddress field's value.

func (*NetworkInterface) SetPrivateIpAddresses

func (s *NetworkInterface) SetPrivateIpAddresses(v []*NetworkInterfacePrivateIpAddress) *NetworkInterface

SetPrivateIpAddresses sets the PrivateIpAddresses field's value.

func (*NetworkInterface) SetRequesterId

func (s *NetworkInterface) SetRequesterId(v string) *NetworkInterface

SetRequesterId sets the RequesterId field's value.

func (*NetworkInterface) SetRequesterManaged

func (s *NetworkInterface) SetRequesterManaged(v bool) *NetworkInterface

SetRequesterManaged sets the RequesterManaged field's value.

func (*NetworkInterface) SetSourceDestCheck

func (s *NetworkInterface) SetSourceDestCheck(v bool) *NetworkInterface

SetSourceDestCheck sets the SourceDestCheck field's value.

func (*NetworkInterface) SetStatus

func (s *NetworkInterface) SetStatus(v string) *NetworkInterface

SetStatus sets the Status field's value.

func (*NetworkInterface) SetSubnetId

func (s *NetworkInterface) SetSubnetId(v string) *NetworkInterface

SetSubnetId sets the SubnetId field's value.

func (*NetworkInterface) SetTagSet

func (s *NetworkInterface) SetTagSet(v []*Tag) *NetworkInterface

SetTagSet sets the TagSet field's value.

func (*NetworkInterface) SetVpcId

func (s *NetworkInterface) SetVpcId(v string) *NetworkInterface

SetVpcId sets the VpcId field's value.

func (NetworkInterface) String

func (s NetworkInterface) String() string

String returns the string representation

type NetworkInterfaceAssociation

Describes association information for an Elastic IP address (IPv4 only). Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/NetworkInterfaceAssociation

type NetworkInterfaceAssociation struct {

    // The allocation ID.
    AllocationId *string `locationName:"allocationId" type:"string"`

    // The association ID.
    AssociationId *string `locationName:"associationId" type:"string"`

    // The ID of the Elastic IP address owner.
    IpOwnerId *string `locationName:"ipOwnerId" type:"string"`

    // The public DNS name.
    PublicDnsName *string `locationName:"publicDnsName" type:"string"`

    // The address of the Elastic IP address bound to the network interface.
    PublicIp *string `locationName:"publicIp" type:"string"`
    // contains filtered or unexported fields
}

func (NetworkInterfaceAssociation) GoString

func (s NetworkInterfaceAssociation) GoString() string

GoString returns the string representation

func (*NetworkInterfaceAssociation) SetAllocationId

func (s *NetworkInterfaceAssociation) SetAllocationId(v string) *NetworkInterfaceAssociation

SetAllocationId sets the AllocationId field's value.

func (*NetworkInterfaceAssociation) SetAssociationId

func (s *NetworkInterfaceAssociation) SetAssociationId(v string) *NetworkInterfaceAssociation

SetAssociationId sets the AssociationId field's value.

func (*NetworkInterfaceAssociation) SetIpOwnerId

func (s *NetworkInterfaceAssociation) SetIpOwnerId(v string) *NetworkInterfaceAssociation

SetIpOwnerId sets the IpOwnerId field's value.

func (*NetworkInterfaceAssociation) SetPublicDnsName

func (s *NetworkInterfaceAssociation) SetPublicDnsName(v string) *NetworkInterfaceAssociation

SetPublicDnsName sets the PublicDnsName field's value.

func (*NetworkInterfaceAssociation) SetPublicIp

func (s *NetworkInterfaceAssociation) SetPublicIp(v string) *NetworkInterfaceAssociation

SetPublicIp sets the PublicIp field's value.

func (NetworkInterfaceAssociation) String

func (s NetworkInterfaceAssociation) String() string

String returns the string representation

type NetworkInterfaceAttachment

Describes a network interface attachment. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/NetworkInterfaceAttachment

type NetworkInterfaceAttachment struct {

    // The timestamp indicating when the attachment initiated.
    AttachTime *time.Time `locationName:"attachTime" type:"timestamp" timestampFormat:"iso8601"`

    // The ID of the network interface attachment.
    AttachmentId *string `locationName:"attachmentId" type:"string"`

    // Indicates whether the network interface is deleted when the instance is terminated.
    DeleteOnTermination *bool `locationName:"deleteOnTermination" type:"boolean"`

    // The device index of the network interface attachment on the instance.
    DeviceIndex *int64 `locationName:"deviceIndex" type:"integer"`

    // The ID of the instance.
    InstanceId *string `locationName:"instanceId" type:"string"`

    // The AWS account ID of the owner of the instance.
    InstanceOwnerId *string `locationName:"instanceOwnerId" type:"string"`

    // The attachment state.
    Status *string `locationName:"status" type:"string" enum:"AttachmentStatus"`
    // contains filtered or unexported fields
}

func (NetworkInterfaceAttachment) GoString

func (s NetworkInterfaceAttachment) GoString() string

GoString returns the string representation

func (*NetworkInterfaceAttachment) SetAttachTime

func (s *NetworkInterfaceAttachment) SetAttachTime(v time.Time) *NetworkInterfaceAttachment

SetAttachTime sets the AttachTime field's value.

func (*NetworkInterfaceAttachment) SetAttachmentId

func (s *NetworkInterfaceAttachment) SetAttachmentId(v string) *NetworkInterfaceAttachment

SetAttachmentId sets the AttachmentId field's value.

func (*NetworkInterfaceAttachment) SetDeleteOnTermination

func (s *NetworkInterfaceAttachment) SetDeleteOnTermination(v bool) *NetworkInterfaceAttachment

SetDeleteOnTermination sets the DeleteOnTermination field's value.

func (*NetworkInterfaceAttachment) SetDeviceIndex

func (s *NetworkInterfaceAttachment) SetDeviceIndex(v int64) *NetworkInterfaceAttachment

SetDeviceIndex sets the DeviceIndex field's value.

func (*NetworkInterfaceAttachment) SetInstanceId

func (s *NetworkInterfaceAttachment) SetInstanceId(v string) *NetworkInterfaceAttachment

SetInstanceId sets the InstanceId field's value.

func (*NetworkInterfaceAttachment) SetInstanceOwnerId

func (s *NetworkInterfaceAttachment) SetInstanceOwnerId(v string) *NetworkInterfaceAttachment

SetInstanceOwnerId sets the InstanceOwnerId field's value.

func (*NetworkInterfaceAttachment) SetStatus

func (s *NetworkInterfaceAttachment) SetStatus(v string) *NetworkInterfaceAttachment

SetStatus sets the Status field's value.

func (NetworkInterfaceAttachment) String

func (s NetworkInterfaceAttachment) String() string

String returns the string representation

type NetworkInterfaceAttachmentChanges

Describes an attachment change. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/NetworkInterfaceAttachmentChanges

type NetworkInterfaceAttachmentChanges struct {

    // The ID of the network interface attachment.
    AttachmentId *string `locationName:"attachmentId" type:"string"`

    // Indicates whether the network interface is deleted when the instance is terminated.
    DeleteOnTermination *bool `locationName:"deleteOnTermination" type:"boolean"`
    // contains filtered or unexported fields
}

func (NetworkInterfaceAttachmentChanges) GoString

func (s NetworkInterfaceAttachmentChanges) GoString() string

GoString returns the string representation

func (*NetworkInterfaceAttachmentChanges) SetAttachmentId

func (s *NetworkInterfaceAttachmentChanges) SetAttachmentId(v string) *NetworkInterfaceAttachmentChanges

SetAttachmentId sets the AttachmentId field's value.

func (*NetworkInterfaceAttachmentChanges) SetDeleteOnTermination

func (s *NetworkInterfaceAttachmentChanges) SetDeleteOnTermination(v bool) *NetworkInterfaceAttachmentChanges

SetDeleteOnTermination sets the DeleteOnTermination field's value.

func (NetworkInterfaceAttachmentChanges) String

func (s NetworkInterfaceAttachmentChanges) String() string

String returns the string representation

type NetworkInterfaceIpv6Address

Describes an IPv6 address associated with a network interface. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/NetworkInterfaceIpv6Address

type NetworkInterfaceIpv6Address struct {

    // The IPv6 address.
    Ipv6Address *string `locationName:"ipv6Address" type:"string"`
    // contains filtered or unexported fields
}

func (NetworkInterfaceIpv6Address) GoString

func (s NetworkInterfaceIpv6Address) GoString() string

GoString returns the string representation

func (*NetworkInterfaceIpv6Address) SetIpv6Address

func (s *NetworkInterfaceIpv6Address) SetIpv6Address(v string) *NetworkInterfaceIpv6Address

SetIpv6Address sets the Ipv6Address field's value.

func (NetworkInterfaceIpv6Address) String

func (s NetworkInterfaceIpv6Address) String() string

String returns the string representation

type NetworkInterfacePrivateIpAddress

Describes the private IPv4 address of a network interface. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/NetworkInterfacePrivateIpAddress

type NetworkInterfacePrivateIpAddress struct {

    // The association information for an Elastic IP address (IPv4) associated with
    // the network interface.
    Association *NetworkInterfaceAssociation `locationName:"association" type:"structure"`

    // Indicates whether this IPv4 address is the primary private IPv4 address of
    // the network interface.
    Primary *bool `locationName:"primary" type:"boolean"`

    // The private DNS name.
    PrivateDnsName *string `locationName:"privateDnsName" type:"string"`

    // The private IPv4 address.
    PrivateIpAddress *string `locationName:"privateIpAddress" type:"string"`
    // contains filtered or unexported fields
}

func (NetworkInterfacePrivateIpAddress) GoString

func (s NetworkInterfacePrivateIpAddress) GoString() string

GoString returns the string representation

func (*NetworkInterfacePrivateIpAddress) SetAssociation

func (s *NetworkInterfacePrivateIpAddress) SetAssociation(v *NetworkInterfaceAssociation) *NetworkInterfacePrivateIpAddress

SetAssociation sets the Association field's value.

func (*NetworkInterfacePrivateIpAddress) SetPrimary

func (s *NetworkInterfacePrivateIpAddress) SetPrimary(v bool) *NetworkInterfacePrivateIpAddress

SetPrimary sets the Primary field's value.

func (*NetworkInterfacePrivateIpAddress) SetPrivateDnsName

func (s *NetworkInterfacePrivateIpAddress) SetPrivateDnsName(v string) *NetworkInterfacePrivateIpAddress

SetPrivateDnsName sets the PrivateDnsName field's value.

func (*NetworkInterfacePrivateIpAddress) SetPrivateIpAddress

func (s *NetworkInterfacePrivateIpAddress) SetPrivateIpAddress(v string) *NetworkInterfacePrivateIpAddress

SetPrivateIpAddress sets the PrivateIpAddress field's value.

func (NetworkInterfacePrivateIpAddress) String

func (s NetworkInterfacePrivateIpAddress) String() string

String returns the string representation

type NewDhcpConfiguration

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/NewDhcpConfiguration

type NewDhcpConfiguration struct {
    Key *string `locationName:"key" type:"string"`

    Values []*string `locationName:"Value" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (NewDhcpConfiguration) GoString

func (s NewDhcpConfiguration) GoString() string

GoString returns the string representation

func (*NewDhcpConfiguration) SetKey

func (s *NewDhcpConfiguration) SetKey(v string) *NewDhcpConfiguration

SetKey sets the Key field's value.

func (*NewDhcpConfiguration) SetValues

func (s *NewDhcpConfiguration) SetValues(v []*string) *NewDhcpConfiguration

SetValues sets the Values field's value.

func (NewDhcpConfiguration) String

func (s NewDhcpConfiguration) String() string

String returns the string representation

type PciId

Describes the data that identifies an Amazon FPGA image (AFI) on the PCI bus. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PciId

type PciId struct {

    // The ID of the device.
    DeviceId *string `type:"string"`

    // The ID of the subsystem.
    SubsystemId *string `type:"string"`

    // The ID of the vendor for the subsystem.
    SubsystemVendorId *string `type:"string"`

    // The ID of the vendor.
    VendorId *string `type:"string"`
    // contains filtered or unexported fields
}

func (PciId) GoString

func (s PciId) GoString() string

GoString returns the string representation

func (*PciId) SetDeviceId

func (s *PciId) SetDeviceId(v string) *PciId

SetDeviceId sets the DeviceId field's value.

func (*PciId) SetSubsystemId

func (s *PciId) SetSubsystemId(v string) *PciId

SetSubsystemId sets the SubsystemId field's value.

func (*PciId) SetSubsystemVendorId

func (s *PciId) SetSubsystemVendorId(v string) *PciId

SetSubsystemVendorId sets the SubsystemVendorId field's value.

func (*PciId) SetVendorId

func (s *PciId) SetVendorId(v string) *PciId

SetVendorId sets the VendorId field's value.

func (PciId) String

func (s PciId) String() string

String returns the string representation

type PeeringConnectionOptions

Describes the VPC peering connection options. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PeeringConnectionOptions

type PeeringConnectionOptions struct {

    // If true, enables a local VPC to resolve public DNS hostnames to private IP
    // addresses when queried from instances in the peer VPC.
    AllowDnsResolutionFromRemoteVpc *bool `locationName:"allowDnsResolutionFromRemoteVpc" type:"boolean"`

    // If true, enables outbound communication from an EC2-Classic instance that's
    // linked to a local VPC via ClassicLink to instances in a peer VPC.
    AllowEgressFromLocalClassicLinkToRemoteVpc *bool `locationName:"allowEgressFromLocalClassicLinkToRemoteVpc" type:"boolean"`

    // If true, enables outbound communication from instances in a local VPC to
    // an EC2-Classic instance that's linked to a peer VPC via ClassicLink.
    AllowEgressFromLocalVpcToRemoteClassicLink *bool `locationName:"allowEgressFromLocalVpcToRemoteClassicLink" type:"boolean"`
    // contains filtered or unexported fields
}

func (PeeringConnectionOptions) GoString

func (s PeeringConnectionOptions) GoString() string

GoString returns the string representation

func (*PeeringConnectionOptions) SetAllowDnsResolutionFromRemoteVpc

func (s *PeeringConnectionOptions) SetAllowDnsResolutionFromRemoteVpc(v bool) *PeeringConnectionOptions

SetAllowDnsResolutionFromRemoteVpc sets the AllowDnsResolutionFromRemoteVpc field's value.

func (*PeeringConnectionOptions) SetAllowEgressFromLocalClassicLinkToRemoteVpc

func (s *PeeringConnectionOptions) SetAllowEgressFromLocalClassicLinkToRemoteVpc(v bool) *PeeringConnectionOptions

SetAllowEgressFromLocalClassicLinkToRemoteVpc sets the AllowEgressFromLocalClassicLinkToRemoteVpc field's value.

func (s *PeeringConnectionOptions) SetAllowEgressFromLocalVpcToRemoteClassicLink(v bool) *PeeringConnectionOptions

SetAllowEgressFromLocalVpcToRemoteClassicLink sets the AllowEgressFromLocalVpcToRemoteClassicLink field's value.

func (PeeringConnectionOptions) String

func (s PeeringConnectionOptions) String() string

String returns the string representation

type PeeringConnectionOptionsRequest

The VPC peering connection options. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PeeringConnectionOptionsRequest

type PeeringConnectionOptionsRequest struct {

    // If true, enables a local VPC to resolve public DNS hostnames to private IP
    // addresses when queried from instances in the peer VPC.
    AllowDnsResolutionFromRemoteVpc *bool `type:"boolean"`

    // If true, enables outbound communication from an EC2-Classic instance that's
    // linked to a local VPC via ClassicLink to instances in a peer VPC.
    AllowEgressFromLocalClassicLinkToRemoteVpc *bool `type:"boolean"`

    // If true, enables outbound communication from instances in a local VPC to
    // an EC2-Classic instance that's linked to a peer VPC via ClassicLink.
    AllowEgressFromLocalVpcToRemoteClassicLink *bool `type:"boolean"`
    // contains filtered or unexported fields
}

func (PeeringConnectionOptionsRequest) GoString

func (s PeeringConnectionOptionsRequest) GoString() string

GoString returns the string representation

func (*PeeringConnectionOptionsRequest) SetAllowDnsResolutionFromRemoteVpc

func (s *PeeringConnectionOptionsRequest) SetAllowDnsResolutionFromRemoteVpc(v bool) *PeeringConnectionOptionsRequest

SetAllowDnsResolutionFromRemoteVpc sets the AllowDnsResolutionFromRemoteVpc field's value.

func (*PeeringConnectionOptionsRequest) SetAllowEgressFromLocalClassicLinkToRemoteVpc

func (s *PeeringConnectionOptionsRequest) SetAllowEgressFromLocalClassicLinkToRemoteVpc(v bool) *PeeringConnectionOptionsRequest

SetAllowEgressFromLocalClassicLinkToRemoteVpc sets the AllowEgressFromLocalClassicLinkToRemoteVpc field's value.

func (s *PeeringConnectionOptionsRequest) SetAllowEgressFromLocalVpcToRemoteClassicLink(v bool) *PeeringConnectionOptionsRequest

SetAllowEgressFromLocalVpcToRemoteClassicLink sets the AllowEgressFromLocalVpcToRemoteClassicLink field's value.

func (PeeringConnectionOptionsRequest) String

func (s PeeringConnectionOptionsRequest) String() string

String returns the string representation

type Placement

Describes the placement of an instance. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Placement

type Placement struct {

    // The affinity setting for the instance on the Dedicated Host. This parameter
    // is not supported for the ImportInstance command.
    Affinity *string `locationName:"affinity" type:"string"`

    // The Availability Zone of the instance.
    AvailabilityZone *string `locationName:"availabilityZone" type:"string"`

    // The name of the placement group the instance is in (for cluster compute instances).
    GroupName *string `locationName:"groupName" type:"string"`

    // The ID of the Dedicated Host on which the instance resides. This parameter
    // is not supported for the ImportInstance command.
    HostId *string `locationName:"hostId" type:"string"`

    // Reserved for future use.
    SpreadDomain *string `locationName:"spreadDomain" type:"string"`

    // The tenancy of the instance (if the instance is running in a VPC). An instance
    // with a tenancy of dedicated runs on single-tenant hardware. The host tenancy
    // is not supported for the ImportInstance command.
    Tenancy *string `locationName:"tenancy" type:"string" enum:"Tenancy"`
    // contains filtered or unexported fields
}

func (Placement) GoString

func (s Placement) GoString() string

GoString returns the string representation

func (*Placement) SetAffinity

func (s *Placement) SetAffinity(v string) *Placement

SetAffinity sets the Affinity field's value.

func (*Placement) SetAvailabilityZone

func (s *Placement) SetAvailabilityZone(v string) *Placement

SetAvailabilityZone sets the AvailabilityZone field's value.

func (*Placement) SetGroupName

func (s *Placement) SetGroupName(v string) *Placement

SetGroupName sets the GroupName field's value.

func (*Placement) SetHostId

func (s *Placement) SetHostId(v string) *Placement

SetHostId sets the HostId field's value.

func (*Placement) SetSpreadDomain

func (s *Placement) SetSpreadDomain(v string) *Placement

SetSpreadDomain sets the SpreadDomain field's value.

func (*Placement) SetTenancy

func (s *Placement) SetTenancy(v string) *Placement

SetTenancy sets the Tenancy field's value.

func (Placement) String

func (s Placement) String() string

String returns the string representation

type PlacementGroup

Describes a placement group. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PlacementGroup

type PlacementGroup struct {

    // The name of the placement group.
    GroupName *string `locationName:"groupName" type:"string"`

    // The state of the placement group.
    State *string `locationName:"state" type:"string" enum:"PlacementGroupState"`

    // The placement strategy.
    Strategy *string `locationName:"strategy" type:"string" enum:"PlacementStrategy"`
    // contains filtered or unexported fields
}

func (PlacementGroup) GoString

func (s PlacementGroup) GoString() string

GoString returns the string representation

func (*PlacementGroup) SetGroupName

func (s *PlacementGroup) SetGroupName(v string) *PlacementGroup

SetGroupName sets the GroupName field's value.

func (*PlacementGroup) SetState

func (s *PlacementGroup) SetState(v string) *PlacementGroup

SetState sets the State field's value.

func (*PlacementGroup) SetStrategy

func (s *PlacementGroup) SetStrategy(v string) *PlacementGroup

SetStrategy sets the Strategy field's value.

func (PlacementGroup) String

func (s PlacementGroup) String() string

String returns the string representation

type PortRange

Describes a range of ports. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PortRange

type PortRange struct {

    // The first port in the range.
    From *int64 `locationName:"from" type:"integer"`

    // The last port in the range.
    To *int64 `locationName:"to" type:"integer"`
    // contains filtered or unexported fields
}

func (PortRange) GoString

func (s PortRange) GoString() string

GoString returns the string representation

func (*PortRange) SetFrom

func (s *PortRange) SetFrom(v int64) *PortRange

SetFrom sets the From field's value.

func (*PortRange) SetTo

func (s *PortRange) SetTo(v int64) *PortRange

SetTo sets the To field's value.

func (PortRange) String

func (s PortRange) String() string

String returns the string representation

type PrefixList

Describes prefixes for AWS services. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PrefixList

type PrefixList struct {

    // The IP address range of the AWS service.
    Cidrs []*string `locationName:"cidrSet" locationNameList:"item" type:"list"`

    // The ID of the prefix.
    PrefixListId *string `locationName:"prefixListId" type:"string"`

    // The name of the prefix.
    PrefixListName *string `locationName:"prefixListName" type:"string"`
    // contains filtered or unexported fields
}

func (PrefixList) GoString

func (s PrefixList) GoString() string

GoString returns the string representation

func (*PrefixList) SetCidrs

func (s *PrefixList) SetCidrs(v []*string) *PrefixList

SetCidrs sets the Cidrs field's value.

func (*PrefixList) SetPrefixListId

func (s *PrefixList) SetPrefixListId(v string) *PrefixList

SetPrefixListId sets the PrefixListId field's value.

func (*PrefixList) SetPrefixListName

func (s *PrefixList) SetPrefixListName(v string) *PrefixList

SetPrefixListName sets the PrefixListName field's value.

func (PrefixList) String

func (s PrefixList) String() string

String returns the string representation

type PrefixListId

The ID of the prefix. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PrefixListId

type PrefixListId struct {

    // The ID of the prefix.
    PrefixListId *string `locationName:"prefixListId" type:"string"`
    // contains filtered or unexported fields
}

func (PrefixListId) GoString

func (s PrefixListId) GoString() string

GoString returns the string representation

func (*PrefixListId) SetPrefixListId

func (s *PrefixListId) SetPrefixListId(v string) *PrefixListId

SetPrefixListId sets the PrefixListId field's value.

func (PrefixListId) String

func (s PrefixListId) String() string

String returns the string representation

type PriceSchedule

Describes the price for a Reserved Instance. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PriceSchedule

type PriceSchedule struct {

    // The current price schedule, as determined by the term remaining for the Reserved
    // Instance in the listing.
    //
    // A specific price schedule is always in effect, but only one price schedule
    // can be active at any time. Take, for example, a Reserved Instance listing
    // that has five months remaining in its term. When you specify price schedules
    // for five months and two months, this means that schedule 1, covering the
    // first three months of the remaining term, will be active during months 5,
    // 4, and 3. Then schedule 2, covering the last two months of the term, will
    // be active for months 2 and 1.
    Active *bool `locationName:"active" type:"boolean"`

    // The currency for transacting the Reserved Instance resale. At this time,
    // the only supported currency is USD.
    CurrencyCode *string `locationName:"currencyCode" type:"string" enum:"CurrencyCodeValues"`

    // The fixed price for the term.
    Price *float64 `locationName:"price" type:"double"`

    // The number of months remaining in the reservation. For example, 2 is the
    // second to the last month before the capacity reservation expires.
    Term *int64 `locationName:"term" type:"long"`
    // contains filtered or unexported fields
}

func (PriceSchedule) GoString

func (s PriceSchedule) GoString() string

GoString returns the string representation

func (*PriceSchedule) SetActive

func (s *PriceSchedule) SetActive(v bool) *PriceSchedule

SetActive sets the Active field's value.

func (*PriceSchedule) SetCurrencyCode

func (s *PriceSchedule) SetCurrencyCode(v string) *PriceSchedule

SetCurrencyCode sets the CurrencyCode field's value.

func (*PriceSchedule) SetPrice

func (s *PriceSchedule) SetPrice(v float64) *PriceSchedule

SetPrice sets the Price field's value.

func (*PriceSchedule) SetTerm

func (s *PriceSchedule) SetTerm(v int64) *PriceSchedule

SetTerm sets the Term field's value.

func (PriceSchedule) String

func (s PriceSchedule) String() string

String returns the string representation

type PriceScheduleSpecification

Describes the price for a Reserved Instance. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PriceScheduleSpecification

type PriceScheduleSpecification struct {

    // The currency for transacting the Reserved Instance resale. At this time,
    // the only supported currency is USD.
    CurrencyCode *string `locationName:"currencyCode" type:"string" enum:"CurrencyCodeValues"`

    // The fixed price for the term.
    Price *float64 `locationName:"price" type:"double"`

    // The number of months remaining in the reservation. For example, 2 is the
    // second to the last month before the capacity reservation expires.
    Term *int64 `locationName:"term" type:"long"`
    // contains filtered or unexported fields
}

func (PriceScheduleSpecification) GoString

func (s PriceScheduleSpecification) GoString() string

GoString returns the string representation

func (*PriceScheduleSpecification) SetCurrencyCode

func (s *PriceScheduleSpecification) SetCurrencyCode(v string) *PriceScheduleSpecification

SetCurrencyCode sets the CurrencyCode field's value.

func (*PriceScheduleSpecification) SetPrice

func (s *PriceScheduleSpecification) SetPrice(v float64) *PriceScheduleSpecification

SetPrice sets the Price field's value.

func (*PriceScheduleSpecification) SetTerm

func (s *PriceScheduleSpecification) SetTerm(v int64) *PriceScheduleSpecification

SetTerm sets the Term field's value.

func (PriceScheduleSpecification) String

func (s PriceScheduleSpecification) String() string

String returns the string representation

type PricingDetail

Describes a Reserved Instance offering. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PricingDetail

type PricingDetail struct {

    // The number of reservations available for the price.
    Count *int64 `locationName:"count" type:"integer"`

    // The price per instance.
    Price *float64 `locationName:"price" type:"double"`
    // contains filtered or unexported fields
}

func (PricingDetail) GoString

func (s PricingDetail) GoString() string

GoString returns the string representation

func (*PricingDetail) SetCount

func (s *PricingDetail) SetCount(v int64) *PricingDetail

SetCount sets the Count field's value.

func (*PricingDetail) SetPrice

func (s *PricingDetail) SetPrice(v float64) *PricingDetail

SetPrice sets the Price field's value.

func (PricingDetail) String

func (s PricingDetail) String() string

String returns the string representation

type PrivateIpAddressSpecification

Describes a secondary private IPv4 address for a network interface. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PrivateIpAddressSpecification

type PrivateIpAddressSpecification struct {

    // Indicates whether the private IPv4 address is the primary private IPv4 address.
    // Only one IPv4 address can be designated as primary.
    Primary *bool `locationName:"primary" type:"boolean"`

    // The private IPv4 addresses.
    //
    // PrivateIpAddress is a required field
    PrivateIpAddress *string `locationName:"privateIpAddress" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (PrivateIpAddressSpecification) GoString

func (s PrivateIpAddressSpecification) GoString() string

GoString returns the string representation

func (*PrivateIpAddressSpecification) SetPrimary

func (s *PrivateIpAddressSpecification) SetPrimary(v bool) *PrivateIpAddressSpecification

SetPrimary sets the Primary field's value.

func (*PrivateIpAddressSpecification) SetPrivateIpAddress

func (s *PrivateIpAddressSpecification) SetPrivateIpAddress(v string) *PrivateIpAddressSpecification

SetPrivateIpAddress sets the PrivateIpAddress field's value.

func (PrivateIpAddressSpecification) String

func (s PrivateIpAddressSpecification) String() string

String returns the string representation

func (*PrivateIpAddressSpecification) Validate

func (s *PrivateIpAddressSpecification) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ProductCode

Describes a product code. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ProductCode

type ProductCode struct {

    // The product code.
    ProductCodeId *string `locationName:"productCode" type:"string"`

    // The type of product code.
    ProductCodeType *string `locationName:"type" type:"string" enum:"ProductCodeValues"`
    // contains filtered or unexported fields
}

func (ProductCode) GoString

func (s ProductCode) GoString() string

GoString returns the string representation

func (*ProductCode) SetProductCodeId

func (s *ProductCode) SetProductCodeId(v string) *ProductCode

SetProductCodeId sets the ProductCodeId field's value.

func (*ProductCode) SetProductCodeType

func (s *ProductCode) SetProductCodeType(v string) *ProductCode

SetProductCodeType sets the ProductCodeType field's value.

func (ProductCode) String

func (s ProductCode) String() string

String returns the string representation

type PropagatingVgw

Describes a virtual private gateway propagating route. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PropagatingVgw

type PropagatingVgw struct {

    // The ID of the virtual private gateway (VGW).
    GatewayId *string `locationName:"gatewayId" type:"string"`
    // contains filtered or unexported fields
}

func (PropagatingVgw) GoString

func (s PropagatingVgw) GoString() string

GoString returns the string representation

func (*PropagatingVgw) SetGatewayId

func (s *PropagatingVgw) SetGatewayId(v string) *PropagatingVgw

SetGatewayId sets the GatewayId field's value.

func (PropagatingVgw) String

func (s PropagatingVgw) String() string

String returns the string representation

type ProvisionedBandwidth

Reserved. If you need to sustain traffic greater than the documented limits (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/vpc-nat-gateway.html), contact us through the Support Center (https://console.aws.amazon.com/support/home?). Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ProvisionedBandwidth

type ProvisionedBandwidth struct {

    // Reserved. If you need to sustain traffic greater than the documented limits
    // (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/vpc-nat-gateway.html),
    // contact us through the Support Center (https://console.aws.amazon.com/support/home?).
    ProvisionTime *time.Time `locationName:"provisionTime" type:"timestamp" timestampFormat:"iso8601"`

    // Reserved. If you need to sustain traffic greater than the documented limits
    // (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/vpc-nat-gateway.html),
    // contact us through the Support Center (https://console.aws.amazon.com/support/home?).
    Provisioned *string `locationName:"provisioned" type:"string"`

    // Reserved. If you need to sustain traffic greater than the documented limits
    // (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/vpc-nat-gateway.html),
    // contact us through the Support Center (https://console.aws.amazon.com/support/home?).
    RequestTime *time.Time `locationName:"requestTime" type:"timestamp" timestampFormat:"iso8601"`

    // Reserved. If you need to sustain traffic greater than the documented limits
    // (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/vpc-nat-gateway.html),
    // contact us through the Support Center (https://console.aws.amazon.com/support/home?).
    Requested *string `locationName:"requested" type:"string"`

    // Reserved. If you need to sustain traffic greater than the documented limits
    // (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/vpc-nat-gateway.html),
    // contact us through the Support Center (https://console.aws.amazon.com/support/home?).
    Status *string `locationName:"status" type:"string"`
    // contains filtered or unexported fields
}

func (ProvisionedBandwidth) GoString

func (s ProvisionedBandwidth) GoString() string

GoString returns the string representation

func (*ProvisionedBandwidth) SetProvisionTime

func (s *ProvisionedBandwidth) SetProvisionTime(v time.Time) *ProvisionedBandwidth

SetProvisionTime sets the ProvisionTime field's value.

func (*ProvisionedBandwidth) SetProvisioned

func (s *ProvisionedBandwidth) SetProvisioned(v string) *ProvisionedBandwidth

SetProvisioned sets the Provisioned field's value.

func (*ProvisionedBandwidth) SetRequestTime

func (s *ProvisionedBandwidth) SetRequestTime(v time.Time) *ProvisionedBandwidth

SetRequestTime sets the RequestTime field's value.

func (*ProvisionedBandwidth) SetRequested

func (s *ProvisionedBandwidth) SetRequested(v string) *ProvisionedBandwidth

SetRequested sets the Requested field's value.

func (*ProvisionedBandwidth) SetStatus

func (s *ProvisionedBandwidth) SetStatus(v string) *ProvisionedBandwidth

SetStatus sets the Status field's value.

func (ProvisionedBandwidth) String

func (s ProvisionedBandwidth) String() string

String returns the string representation

type Purchase

Describes the result of the purchase. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Purchase

type Purchase struct {

    // The currency in which the UpfrontPrice and HourlyPrice amounts are specified.
    // At this time, the only supported currency is USD.
    CurrencyCode *string `locationName:"currencyCode" type:"string" enum:"CurrencyCodeValues"`

    // The duration of the reservation's term in seconds.
    Duration *int64 `locationName:"duration" type:"integer"`

    // The IDs of the Dedicated Hosts associated with the reservation.
    HostIdSet []*string `locationName:"hostIdSet" locationNameList:"item" type:"list"`

    // The ID of the reservation.
    HostReservationId *string `locationName:"hostReservationId" type:"string"`

    // The hourly price of the reservation per hour.
    HourlyPrice *string `locationName:"hourlyPrice" type:"string"`

    // The instance family on the Dedicated Host that the reservation can be associated
    // with.
    InstanceFamily *string `locationName:"instanceFamily" type:"string"`

    // The payment option for the reservation.
    PaymentOption *string `locationName:"paymentOption" type:"string" enum:"PaymentOption"`

    // The upfront price of the reservation.
    UpfrontPrice *string `locationName:"upfrontPrice" type:"string"`
    // contains filtered or unexported fields
}

func (Purchase) GoString

func (s Purchase) GoString() string

GoString returns the string representation

func (*Purchase) SetCurrencyCode

func (s *Purchase) SetCurrencyCode(v string) *Purchase

SetCurrencyCode sets the CurrencyCode field's value.

func (*Purchase) SetDuration

func (s *Purchase) SetDuration(v int64) *Purchase

SetDuration sets the Duration field's value.

func (*Purchase) SetHostIdSet

func (s *Purchase) SetHostIdSet(v []*string) *Purchase

SetHostIdSet sets the HostIdSet field's value.

func (*Purchase) SetHostReservationId

func (s *Purchase) SetHostReservationId(v string) *Purchase

SetHostReservationId sets the HostReservationId field's value.

func (*Purchase) SetHourlyPrice

func (s *Purchase) SetHourlyPrice(v string) *Purchase

SetHourlyPrice sets the HourlyPrice field's value.

func (*Purchase) SetInstanceFamily

func (s *Purchase) SetInstanceFamily(v string) *Purchase

SetInstanceFamily sets the InstanceFamily field's value.

func (*Purchase) SetPaymentOption

func (s *Purchase) SetPaymentOption(v string) *Purchase

SetPaymentOption sets the PaymentOption field's value.

func (*Purchase) SetUpfrontPrice

func (s *Purchase) SetUpfrontPrice(v string) *Purchase

SetUpfrontPrice sets the UpfrontPrice field's value.

func (Purchase) String

func (s Purchase) String() string

String returns the string representation

type PurchaseHostReservationInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PurchaseHostReservationRequest

type PurchaseHostReservationInput struct {

    // Unique, case-sensitive identifier you provide to ensure idempotency of the
    // request. For more information, see How to Ensure Idempotency (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Run_Instance_Idempotency.html)
    // in the Amazon Elastic Compute Cloud User Guide.
    ClientToken *string `type:"string"`

    // The currency in which the totalUpfrontPrice, LimitPrice, and totalHourlyPrice
    // amounts are specified. At this time, the only supported currency is USD.
    CurrencyCode *string `type:"string" enum:"CurrencyCodeValues"`

    // The ID/s of the Dedicated Host/s that the reservation will be associated
    // with.
    //
    // HostIdSet is a required field
    HostIdSet []*string `locationNameList:"item" type:"list" required:"true"`

    // The specified limit is checked against the total upfront cost of the reservation
    // (calculated as the offering's upfront cost multiplied by the host count).
    // If the total upfront cost is greater than the specified price limit, the
    // request will fail. This is used to ensure that the purchase does not exceed
    // the expected upfront cost of the purchase. At this time, the only supported
    // currency is USD. For example, to indicate a limit price of USD 100, specify
    // 100.00.
    LimitPrice *string `type:"string"`

    // The ID of the offering.
    //
    // OfferingId is a required field
    OfferingId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (PurchaseHostReservationInput) GoString

func (s PurchaseHostReservationInput) GoString() string

GoString returns the string representation

func (*PurchaseHostReservationInput) SetClientToken

func (s *PurchaseHostReservationInput) SetClientToken(v string) *PurchaseHostReservationInput

SetClientToken sets the ClientToken field's value.

func (*PurchaseHostReservationInput) SetCurrencyCode

func (s *PurchaseHostReservationInput) SetCurrencyCode(v string) *PurchaseHostReservationInput

SetCurrencyCode sets the CurrencyCode field's value.

func (*PurchaseHostReservationInput) SetHostIdSet

func (s *PurchaseHostReservationInput) SetHostIdSet(v []*string) *PurchaseHostReservationInput

SetHostIdSet sets the HostIdSet field's value.

func (*PurchaseHostReservationInput) SetLimitPrice

func (s *PurchaseHostReservationInput) SetLimitPrice(v string) *PurchaseHostReservationInput

SetLimitPrice sets the LimitPrice field's value.

func (*PurchaseHostReservationInput) SetOfferingId

func (s *PurchaseHostReservationInput) SetOfferingId(v string) *PurchaseHostReservationInput

SetOfferingId sets the OfferingId field's value.

func (PurchaseHostReservationInput) String

func (s PurchaseHostReservationInput) String() string

String returns the string representation

func (*PurchaseHostReservationInput) Validate

func (s *PurchaseHostReservationInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type PurchaseHostReservationOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PurchaseHostReservationResult

type PurchaseHostReservationOutput struct {

    // Unique, case-sensitive identifier you provide to ensure idempotency of the
    // request. For more information, see How to Ensure Idempotency (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Run_Instance_Idempotency.html)
    // in the Amazon Elastic Compute Cloud User Guide
    ClientToken *string `locationName:"clientToken" type:"string"`

    // The currency in which the totalUpfrontPrice and totalHourlyPrice amounts
    // are specified. At this time, the only supported currency is USD.
    CurrencyCode *string `locationName:"currencyCode" type:"string" enum:"CurrencyCodeValues"`

    // Describes the details of the purchase.
    Purchase []*Purchase `locationName:"purchase" type:"list"`

    // The total hourly price of the reservation calculated per hour.
    TotalHourlyPrice *string `locationName:"totalHourlyPrice" type:"string"`

    // The total amount that will be charged to your account when you purchase the
    // reservation.
    TotalUpfrontPrice *string `locationName:"totalUpfrontPrice" type:"string"`
    // contains filtered or unexported fields
}

func (PurchaseHostReservationOutput) GoString

func (s PurchaseHostReservationOutput) GoString() string

GoString returns the string representation

func (*PurchaseHostReservationOutput) SetClientToken

func (s *PurchaseHostReservationOutput) SetClientToken(v string) *PurchaseHostReservationOutput

SetClientToken sets the ClientToken field's value.

func (*PurchaseHostReservationOutput) SetCurrencyCode

func (s *PurchaseHostReservationOutput) SetCurrencyCode(v string) *PurchaseHostReservationOutput

SetCurrencyCode sets the CurrencyCode field's value.

func (*PurchaseHostReservationOutput) SetPurchase

func (s *PurchaseHostReservationOutput) SetPurchase(v []*Purchase) *PurchaseHostReservationOutput

SetPurchase sets the Purchase field's value.

func (*PurchaseHostReservationOutput) SetTotalHourlyPrice

func (s *PurchaseHostReservationOutput) SetTotalHourlyPrice(v string) *PurchaseHostReservationOutput

SetTotalHourlyPrice sets the TotalHourlyPrice field's value.

func (*PurchaseHostReservationOutput) SetTotalUpfrontPrice

func (s *PurchaseHostReservationOutput) SetTotalUpfrontPrice(v string) *PurchaseHostReservationOutput

SetTotalUpfrontPrice sets the TotalUpfrontPrice field's value.

func (PurchaseHostReservationOutput) String

func (s PurchaseHostReservationOutput) String() string

String returns the string representation

type PurchaseRequest

Describes a request to purchase Scheduled Instances. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PurchaseRequest

type PurchaseRequest struct {

    // The number of instances.
    //
    // InstanceCount is a required field
    InstanceCount *int64 `type:"integer" required:"true"`

    // The purchase token.
    //
    // PurchaseToken is a required field
    PurchaseToken *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (PurchaseRequest) GoString

func (s PurchaseRequest) GoString() string

GoString returns the string representation

func (*PurchaseRequest) SetInstanceCount

func (s *PurchaseRequest) SetInstanceCount(v int64) *PurchaseRequest

SetInstanceCount sets the InstanceCount field's value.

func (*PurchaseRequest) SetPurchaseToken

func (s *PurchaseRequest) SetPurchaseToken(v string) *PurchaseRequest

SetPurchaseToken sets the PurchaseToken field's value.

func (PurchaseRequest) String

func (s PurchaseRequest) String() string

String returns the string representation

func (*PurchaseRequest) Validate

func (s *PurchaseRequest) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type PurchaseReservedInstancesOfferingInput

Contains the parameters for PurchaseReservedInstancesOffering. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PurchaseReservedInstancesOfferingRequest

type PurchaseReservedInstancesOfferingInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The number of Reserved Instances to purchase.
    //
    // InstanceCount is a required field
    InstanceCount *int64 `type:"integer" required:"true"`

    // Specified for Reserved Instance Marketplace offerings to limit the total
    // order and ensure that the Reserved Instances are not purchased at unexpected
    // prices.
    LimitPrice *ReservedInstanceLimitPrice `locationName:"limitPrice" type:"structure"`

    // The ID of the Reserved Instance offering to purchase.
    //
    // ReservedInstancesOfferingId is a required field
    ReservedInstancesOfferingId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (PurchaseReservedInstancesOfferingInput) GoString

func (s PurchaseReservedInstancesOfferingInput) GoString() string

GoString returns the string representation

func (*PurchaseReservedInstancesOfferingInput) SetDryRun

func (s *PurchaseReservedInstancesOfferingInput) SetDryRun(v bool) *PurchaseReservedInstancesOfferingInput

SetDryRun sets the DryRun field's value.

func (*PurchaseReservedInstancesOfferingInput) SetInstanceCount

func (s *PurchaseReservedInstancesOfferingInput) SetInstanceCount(v int64) *PurchaseReservedInstancesOfferingInput

SetInstanceCount sets the InstanceCount field's value.

func (*PurchaseReservedInstancesOfferingInput) SetLimitPrice

func (s *PurchaseReservedInstancesOfferingInput) SetLimitPrice(v *ReservedInstanceLimitPrice) *PurchaseReservedInstancesOfferingInput

SetLimitPrice sets the LimitPrice field's value.

func (*PurchaseReservedInstancesOfferingInput) SetReservedInstancesOfferingId

func (s *PurchaseReservedInstancesOfferingInput) SetReservedInstancesOfferingId(v string) *PurchaseReservedInstancesOfferingInput

SetReservedInstancesOfferingId sets the ReservedInstancesOfferingId field's value.

func (PurchaseReservedInstancesOfferingInput) String

func (s PurchaseReservedInstancesOfferingInput) String() string

String returns the string representation

func (*PurchaseReservedInstancesOfferingInput) Validate

func (s *PurchaseReservedInstancesOfferingInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type PurchaseReservedInstancesOfferingOutput

Contains the output of PurchaseReservedInstancesOffering. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PurchaseReservedInstancesOfferingResult

type PurchaseReservedInstancesOfferingOutput struct {

    // The IDs of the purchased Reserved Instances.
    ReservedInstancesId *string `locationName:"reservedInstancesId" type:"string"`
    // contains filtered or unexported fields
}

func (PurchaseReservedInstancesOfferingOutput) GoString

func (s PurchaseReservedInstancesOfferingOutput) GoString() string

GoString returns the string representation

func (*PurchaseReservedInstancesOfferingOutput) SetReservedInstancesId

func (s *PurchaseReservedInstancesOfferingOutput) SetReservedInstancesId(v string) *PurchaseReservedInstancesOfferingOutput

SetReservedInstancesId sets the ReservedInstancesId field's value.

func (PurchaseReservedInstancesOfferingOutput) String

func (s PurchaseReservedInstancesOfferingOutput) String() string

String returns the string representation

type PurchaseScheduledInstancesInput

Contains the parameters for PurchaseScheduledInstances. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PurchaseScheduledInstancesRequest

type PurchaseScheduledInstancesInput struct {

    // Unique, case-sensitive identifier that ensures the idempotency of the request.
    // For more information, see Ensuring Idempotency (http://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html).
    ClientToken *string `type:"string" idempotencyToken:"true"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `type:"boolean"`

    // One or more purchase requests.
    //
    // PurchaseRequests is a required field
    PurchaseRequests []*PurchaseRequest `locationName:"PurchaseRequest" locationNameList:"PurchaseRequest" min:"1" type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (PurchaseScheduledInstancesInput) GoString

func (s PurchaseScheduledInstancesInput) GoString() string

GoString returns the string representation

func (*PurchaseScheduledInstancesInput) SetClientToken

func (s *PurchaseScheduledInstancesInput) SetClientToken(v string) *PurchaseScheduledInstancesInput

SetClientToken sets the ClientToken field's value.

func (*PurchaseScheduledInstancesInput) SetDryRun

func (s *PurchaseScheduledInstancesInput) SetDryRun(v bool) *PurchaseScheduledInstancesInput

SetDryRun sets the DryRun field's value.

func (*PurchaseScheduledInstancesInput) SetPurchaseRequests

func (s *PurchaseScheduledInstancesInput) SetPurchaseRequests(v []*PurchaseRequest) *PurchaseScheduledInstancesInput

SetPurchaseRequests sets the PurchaseRequests field's value.

func (PurchaseScheduledInstancesInput) String

func (s PurchaseScheduledInstancesInput) String() string

String returns the string representation

func (*PurchaseScheduledInstancesInput) Validate

func (s *PurchaseScheduledInstancesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type PurchaseScheduledInstancesOutput

Contains the output of PurchaseScheduledInstances. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PurchaseScheduledInstancesResult

type PurchaseScheduledInstancesOutput struct {

    // Information about the Scheduled Instances.
    ScheduledInstanceSet []*ScheduledInstance `locationName:"scheduledInstanceSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (PurchaseScheduledInstancesOutput) GoString

func (s PurchaseScheduledInstancesOutput) GoString() string

GoString returns the string representation

func (*PurchaseScheduledInstancesOutput) SetScheduledInstanceSet

func (s *PurchaseScheduledInstancesOutput) SetScheduledInstanceSet(v []*ScheduledInstance) *PurchaseScheduledInstancesOutput

SetScheduledInstanceSet sets the ScheduledInstanceSet field's value.

func (PurchaseScheduledInstancesOutput) String

func (s PurchaseScheduledInstancesOutput) String() string

String returns the string representation

type RebootInstancesInput

Contains the parameters for RebootInstances. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RebootInstancesRequest

type RebootInstancesInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // One or more instance IDs.
    //
    // InstanceIds is a required field
    InstanceIds []*string `locationName:"InstanceId" locationNameList:"InstanceId" type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (RebootInstancesInput) GoString

func (s RebootInstancesInput) GoString() string

GoString returns the string representation

func (*RebootInstancesInput) SetDryRun

func (s *RebootInstancesInput) SetDryRun(v bool) *RebootInstancesInput

SetDryRun sets the DryRun field's value.

func (*RebootInstancesInput) SetInstanceIds

func (s *RebootInstancesInput) SetInstanceIds(v []*string) *RebootInstancesInput

SetInstanceIds sets the InstanceIds field's value.

func (RebootInstancesInput) String

func (s RebootInstancesInput) String() string

String returns the string representation

func (*RebootInstancesInput) Validate

func (s *RebootInstancesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type RebootInstancesOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RebootInstancesOutput

type RebootInstancesOutput struct {
    // contains filtered or unexported fields
}

func (RebootInstancesOutput) GoString

func (s RebootInstancesOutput) GoString() string

GoString returns the string representation

func (RebootInstancesOutput) String

func (s RebootInstancesOutput) String() string

String returns the string representation

type RecurringCharge

Describes a recurring charge. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RecurringCharge

type RecurringCharge struct {

    // The amount of the recurring charge.
    Amount *float64 `locationName:"amount" type:"double"`

    // The frequency of the recurring charge.
    Frequency *string `locationName:"frequency" type:"string" enum:"RecurringChargeFrequency"`
    // contains filtered or unexported fields
}

func (RecurringCharge) GoString

func (s RecurringCharge) GoString() string

GoString returns the string representation

func (*RecurringCharge) SetAmount

func (s *RecurringCharge) SetAmount(v float64) *RecurringCharge

SetAmount sets the Amount field's value.

func (*RecurringCharge) SetFrequency

func (s *RecurringCharge) SetFrequency(v string) *RecurringCharge

SetFrequency sets the Frequency field's value.

func (RecurringCharge) String

func (s RecurringCharge) String() string

String returns the string representation

type Region

Describes a region. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Region

type Region struct {

    // The region service endpoint.
    Endpoint *string `locationName:"regionEndpoint" type:"string"`

    // The name of the region.
    RegionName *string `locationName:"regionName" type:"string"`
    // contains filtered or unexported fields
}

func (Region) GoString

func (s Region) GoString() string

GoString returns the string representation

func (*Region) SetEndpoint

func (s *Region) SetEndpoint(v string) *Region

SetEndpoint sets the Endpoint field's value.

func (*Region) SetRegionName

func (s *Region) SetRegionName(v string) *Region

SetRegionName sets the RegionName field's value.

func (Region) String

func (s Region) String() string

String returns the string representation

type RegisterImageInput

Contains the parameters for RegisterImage. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RegisterImageRequest

type RegisterImageInput struct {

    // The architecture of the AMI.
    //
    // Default: For Amazon EBS-backed AMIs, i386. For instance store-backed AMIs,
    // the architecture specified in the manifest file.
    Architecture *string `locationName:"architecture" type:"string" enum:"ArchitectureValues"`

    // The billing product codes. Your account must be authorized to specify billing
    // product codes. Otherwise, you can use the AWS Marketplace to bill for the
    // use of an AMI.
    BillingProducts []*string `locationName:"BillingProduct" locationNameList:"item" type:"list"`

    // One or more block device mapping entries.
    BlockDeviceMappings []*BlockDeviceMapping `locationName:"BlockDeviceMapping" locationNameList:"BlockDeviceMapping" type:"list"`

    // A description for your AMI.
    Description *string `locationName:"description" type:"string"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // Set to true to enable enhanced networking with ENA for the AMI and any instances
    // that you launch from the AMI.
    //
    // This option is supported only for HVM AMIs. Specifying this option with a
    // PV AMI can make instances launched from the AMI unreachable.
    EnaSupport *bool `locationName:"enaSupport" type:"boolean"`

    // The full path to your AMI manifest in Amazon S3 storage.
    ImageLocation *string `type:"string"`

    // The ID of the kernel.
    KernelId *string `locationName:"kernelId" type:"string"`

    // A name for your AMI.
    //
    // Constraints: 3-128 alphanumeric characters, parentheses (()), square brackets
    // ([]), spaces ( ), periods (.), slashes (/), dashes (-), single quotes ('),
    // at-signs (@), or underscores(_)
    //
    // Name is a required field
    Name *string `locationName:"name" type:"string" required:"true"`

    // The ID of the RAM disk.
    RamdiskId *string `locationName:"ramdiskId" type:"string"`

    // The name of the root device (for example, /dev/sda1, or /dev/xvda).
    RootDeviceName *string `locationName:"rootDeviceName" type:"string"`

    // Set to simple to enable enhanced networking with the Intel 82599 Virtual
    // Function interface for the AMI and any instances that you launch from the
    // AMI.
    //
    // There is no way to disable sriovNetSupport at this time.
    //
    // This option is supported only for HVM AMIs. Specifying this option with a
    // PV AMI can make instances launched from the AMI unreachable.
    SriovNetSupport *string `locationName:"sriovNetSupport" type:"string"`

    // The type of virtualization.
    //
    // Default: paravirtual
    VirtualizationType *string `locationName:"virtualizationType" type:"string"`
    // contains filtered or unexported fields
}

func (RegisterImageInput) GoString

func (s RegisterImageInput) GoString() string

GoString returns the string representation

func (*RegisterImageInput) SetArchitecture

func (s *RegisterImageInput) SetArchitecture(v string) *RegisterImageInput

SetArchitecture sets the Architecture field's value.

func (*RegisterImageInput) SetBillingProducts

func (s *RegisterImageInput) SetBillingProducts(v []*string) *RegisterImageInput

SetBillingProducts sets the BillingProducts field's value.

func (*RegisterImageInput) SetBlockDeviceMappings

func (s *RegisterImageInput) SetBlockDeviceMappings(v []*BlockDeviceMapping) *RegisterImageInput

SetBlockDeviceMappings sets the BlockDeviceMappings field's value.

func (*RegisterImageInput) SetDescription

func (s *RegisterImageInput) SetDescription(v string) *RegisterImageInput

SetDescription sets the Description field's value.

func (*RegisterImageInput) SetDryRun

func (s *RegisterImageInput) SetDryRun(v bool) *RegisterImageInput

SetDryRun sets the DryRun field's value.

func (*RegisterImageInput) SetEnaSupport

func (s *RegisterImageInput) SetEnaSupport(v bool) *RegisterImageInput

SetEnaSupport sets the EnaSupport field's value.

func (*RegisterImageInput) SetImageLocation

func (s *RegisterImageInput) SetImageLocation(v string) *RegisterImageInput

SetImageLocation sets the ImageLocation field's value.

func (*RegisterImageInput) SetKernelId

func (s *RegisterImageInput) SetKernelId(v string) *RegisterImageInput

SetKernelId sets the KernelId field's value.

func (*RegisterImageInput) SetName

func (s *RegisterImageInput) SetName(v string) *RegisterImageInput

SetName sets the Name field's value.

func (*RegisterImageInput) SetRamdiskId

func (s *RegisterImageInput) SetRamdiskId(v string) *RegisterImageInput

SetRamdiskId sets the RamdiskId field's value.

func (*RegisterImageInput) SetRootDeviceName

func (s *RegisterImageInput) SetRootDeviceName(v string) *RegisterImageInput

SetRootDeviceName sets the RootDeviceName field's value.

func (*RegisterImageInput) SetSriovNetSupport

func (s *RegisterImageInput) SetSriovNetSupport(v string) *RegisterImageInput

SetSriovNetSupport sets the SriovNetSupport field's value.

func (*RegisterImageInput) SetVirtualizationType

func (s *RegisterImageInput) SetVirtualizationType(v string) *RegisterImageInput

SetVirtualizationType sets the VirtualizationType field's value.

func (RegisterImageInput) String

func (s RegisterImageInput) String() string

String returns the string representation

func (*RegisterImageInput) Validate

func (s *RegisterImageInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type RegisterImageOutput

Contains the output of RegisterImage. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RegisterImageResult

type RegisterImageOutput struct {

    // The ID of the newly registered AMI.
    ImageId *string `locationName:"imageId" type:"string"`
    // contains filtered or unexported fields
}

func (RegisterImageOutput) GoString

func (s RegisterImageOutput) GoString() string

GoString returns the string representation

func (*RegisterImageOutput) SetImageId

func (s *RegisterImageOutput) SetImageId(v string) *RegisterImageOutput

SetImageId sets the ImageId field's value.

func (RegisterImageOutput) String

func (s RegisterImageOutput) String() string

String returns the string representation

type RejectVpcPeeringConnectionInput

Contains the parameters for RejectVpcPeeringConnection. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RejectVpcPeeringConnectionRequest

type RejectVpcPeeringConnectionInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the VPC peering connection.
    //
    // VpcPeeringConnectionId is a required field
    VpcPeeringConnectionId *string `locationName:"vpcPeeringConnectionId" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (RejectVpcPeeringConnectionInput) GoString

func (s RejectVpcPeeringConnectionInput) GoString() string

GoString returns the string representation

func (*RejectVpcPeeringConnectionInput) SetDryRun

func (s *RejectVpcPeeringConnectionInput) SetDryRun(v bool) *RejectVpcPeeringConnectionInput

SetDryRun sets the DryRun field's value.

func (*RejectVpcPeeringConnectionInput) SetVpcPeeringConnectionId

func (s *RejectVpcPeeringConnectionInput) SetVpcPeeringConnectionId(v string) *RejectVpcPeeringConnectionInput

SetVpcPeeringConnectionId sets the VpcPeeringConnectionId field's value.

func (RejectVpcPeeringConnectionInput) String

func (s RejectVpcPeeringConnectionInput) String() string

String returns the string representation

func (*RejectVpcPeeringConnectionInput) Validate

func (s *RejectVpcPeeringConnectionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type RejectVpcPeeringConnectionOutput

Contains the output of RejectVpcPeeringConnection. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RejectVpcPeeringConnectionResult

type RejectVpcPeeringConnectionOutput struct {

    // Returns true if the request succeeds; otherwise, it returns an error.
    Return *bool `locationName:"return" type:"boolean"`
    // contains filtered or unexported fields
}

func (RejectVpcPeeringConnectionOutput) GoString

func (s RejectVpcPeeringConnectionOutput) GoString() string

GoString returns the string representation

func (*RejectVpcPeeringConnectionOutput) SetReturn

func (s *RejectVpcPeeringConnectionOutput) SetReturn(v bool) *RejectVpcPeeringConnectionOutput

SetReturn sets the Return field's value.

func (RejectVpcPeeringConnectionOutput) String

func (s RejectVpcPeeringConnectionOutput) String() string

String returns the string representation

type ReleaseAddressInput

Contains the parameters for ReleaseAddress. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReleaseAddressRequest

type ReleaseAddressInput struct {

    // [EC2-VPC] The allocation ID. Required for EC2-VPC.
    AllocationId *string `type:"string"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // [EC2-Classic] The Elastic IP address. Required for EC2-Classic.
    PublicIp *string `type:"string"`
    // contains filtered or unexported fields
}

func (ReleaseAddressInput) GoString

func (s ReleaseAddressInput) GoString() string

GoString returns the string representation

func (*ReleaseAddressInput) SetAllocationId

func (s *ReleaseAddressInput) SetAllocationId(v string) *ReleaseAddressInput

SetAllocationId sets the AllocationId field's value.

func (*ReleaseAddressInput) SetDryRun

func (s *ReleaseAddressInput) SetDryRun(v bool) *ReleaseAddressInput

SetDryRun sets the DryRun field's value.

func (*ReleaseAddressInput) SetPublicIp

func (s *ReleaseAddressInput) SetPublicIp(v string) *ReleaseAddressInput

SetPublicIp sets the PublicIp field's value.

func (ReleaseAddressInput) String

func (s ReleaseAddressInput) String() string

String returns the string representation

type ReleaseAddressOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReleaseAddressOutput

type ReleaseAddressOutput struct {
    // contains filtered or unexported fields
}

func (ReleaseAddressOutput) GoString

func (s ReleaseAddressOutput) GoString() string

GoString returns the string representation

func (ReleaseAddressOutput) String

func (s ReleaseAddressOutput) String() string

String returns the string representation

type ReleaseHostsInput

Contains the parameters for ReleaseHosts. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReleaseHostsRequest

type ReleaseHostsInput struct {

    // The IDs of the Dedicated Hosts you want to release.
    //
    // HostIds is a required field
    HostIds []*string `locationName:"hostId" locationNameList:"item" type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (ReleaseHostsInput) GoString

func (s ReleaseHostsInput) GoString() string

GoString returns the string representation

func (*ReleaseHostsInput) SetHostIds

func (s *ReleaseHostsInput) SetHostIds(v []*string) *ReleaseHostsInput

SetHostIds sets the HostIds field's value.

func (ReleaseHostsInput) String

func (s ReleaseHostsInput) String() string

String returns the string representation

func (*ReleaseHostsInput) Validate

func (s *ReleaseHostsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ReleaseHostsOutput

Contains the output of ReleaseHosts. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReleaseHostsResult

type ReleaseHostsOutput struct {

    // The IDs of the Dedicated Hosts that were successfully released.
    Successful []*string `locationName:"successful" locationNameList:"item" type:"list"`

    // The IDs of the Dedicated Hosts that could not be released, including an error
    // message.
    Unsuccessful []*UnsuccessfulItem `locationName:"unsuccessful" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (ReleaseHostsOutput) GoString

func (s ReleaseHostsOutput) GoString() string

GoString returns the string representation

func (*ReleaseHostsOutput) SetSuccessful

func (s *ReleaseHostsOutput) SetSuccessful(v []*string) *ReleaseHostsOutput

SetSuccessful sets the Successful field's value.

func (*ReleaseHostsOutput) SetUnsuccessful

func (s *ReleaseHostsOutput) SetUnsuccessful(v []*UnsuccessfulItem) *ReleaseHostsOutput

SetUnsuccessful sets the Unsuccessful field's value.

func (ReleaseHostsOutput) String

func (s ReleaseHostsOutput) String() string

String returns the string representation

type ReplaceIamInstanceProfileAssociationInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReplaceIamInstanceProfileAssociationRequest

type ReplaceIamInstanceProfileAssociationInput struct {

    // The ID of the existing IAM instance profile association.
    //
    // AssociationId is a required field
    AssociationId *string `type:"string" required:"true"`

    // The IAM instance profile.
    //
    // IamInstanceProfile is a required field
    IamInstanceProfile *IamInstanceProfileSpecification `type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (ReplaceIamInstanceProfileAssociationInput) GoString

func (s ReplaceIamInstanceProfileAssociationInput) GoString() string

GoString returns the string representation

func (*ReplaceIamInstanceProfileAssociationInput) SetAssociationId

func (s *ReplaceIamInstanceProfileAssociationInput) SetAssociationId(v string) *ReplaceIamInstanceProfileAssociationInput

SetAssociationId sets the AssociationId field's value.

func (*ReplaceIamInstanceProfileAssociationInput) SetIamInstanceProfile

func (s *ReplaceIamInstanceProfileAssociationInput) SetIamInstanceProfile(v *IamInstanceProfileSpecification) *ReplaceIamInstanceProfileAssociationInput

SetIamInstanceProfile sets the IamInstanceProfile field's value.

func (ReplaceIamInstanceProfileAssociationInput) String

func (s ReplaceIamInstanceProfileAssociationInput) String() string

String returns the string representation

func (*ReplaceIamInstanceProfileAssociationInput) Validate

func (s *ReplaceIamInstanceProfileAssociationInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ReplaceIamInstanceProfileAssociationOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReplaceIamInstanceProfileAssociationResult

type ReplaceIamInstanceProfileAssociationOutput struct {

    // Information about the IAM instance profile association.
    IamInstanceProfileAssociation *IamInstanceProfileAssociation `locationName:"iamInstanceProfileAssociation" type:"structure"`
    // contains filtered or unexported fields
}

func (ReplaceIamInstanceProfileAssociationOutput) GoString

func (s ReplaceIamInstanceProfileAssociationOutput) GoString() string

GoString returns the string representation

func (*ReplaceIamInstanceProfileAssociationOutput) SetIamInstanceProfileAssociation

func (s *ReplaceIamInstanceProfileAssociationOutput) SetIamInstanceProfileAssociation(v *IamInstanceProfileAssociation) *ReplaceIamInstanceProfileAssociationOutput

SetIamInstanceProfileAssociation sets the IamInstanceProfileAssociation field's value.

func (ReplaceIamInstanceProfileAssociationOutput) String

func (s ReplaceIamInstanceProfileAssociationOutput) String() string

String returns the string representation

type ReplaceNetworkAclAssociationInput

Contains the parameters for ReplaceNetworkAclAssociation. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReplaceNetworkAclAssociationRequest

type ReplaceNetworkAclAssociationInput struct {

    // The ID of the current association between the original network ACL and the
    // subnet.
    //
    // AssociationId is a required field
    AssociationId *string `locationName:"associationId" type:"string" required:"true"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the new network ACL to associate with the subnet.
    //
    // NetworkAclId is a required field
    NetworkAclId *string `locationName:"networkAclId" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (ReplaceNetworkAclAssociationInput) GoString

func (s ReplaceNetworkAclAssociationInput) GoString() string

GoString returns the string representation

func (*ReplaceNetworkAclAssociationInput) SetAssociationId

func (s *ReplaceNetworkAclAssociationInput) SetAssociationId(v string) *ReplaceNetworkAclAssociationInput

SetAssociationId sets the AssociationId field's value.

func (*ReplaceNetworkAclAssociationInput) SetDryRun

func (s *ReplaceNetworkAclAssociationInput) SetDryRun(v bool) *ReplaceNetworkAclAssociationInput

SetDryRun sets the DryRun field's value.

func (*ReplaceNetworkAclAssociationInput) SetNetworkAclId

func (s *ReplaceNetworkAclAssociationInput) SetNetworkAclId(v string) *ReplaceNetworkAclAssociationInput

SetNetworkAclId sets the NetworkAclId field's value.

func (ReplaceNetworkAclAssociationInput) String

func (s ReplaceNetworkAclAssociationInput) String() string

String returns the string representation

func (*ReplaceNetworkAclAssociationInput) Validate

func (s *ReplaceNetworkAclAssociationInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ReplaceNetworkAclAssociationOutput

Contains the output of ReplaceNetworkAclAssociation. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReplaceNetworkAclAssociationResult

type ReplaceNetworkAclAssociationOutput struct {

    // The ID of the new association.
    NewAssociationId *string `locationName:"newAssociationId" type:"string"`
    // contains filtered or unexported fields
}

func (ReplaceNetworkAclAssociationOutput) GoString

func (s ReplaceNetworkAclAssociationOutput) GoString() string

GoString returns the string representation

func (*ReplaceNetworkAclAssociationOutput) SetNewAssociationId

func (s *ReplaceNetworkAclAssociationOutput) SetNewAssociationId(v string) *ReplaceNetworkAclAssociationOutput

SetNewAssociationId sets the NewAssociationId field's value.

func (ReplaceNetworkAclAssociationOutput) String

func (s ReplaceNetworkAclAssociationOutput) String() string

String returns the string representation

type ReplaceNetworkAclEntryInput

Contains the parameters for ReplaceNetworkAclEntry. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReplaceNetworkAclEntryRequest

type ReplaceNetworkAclEntryInput struct {

    // The IPv4 network range to allow or deny, in CIDR notation (for example 172.16.0.0/24).
    CidrBlock *string `locationName:"cidrBlock" type:"string"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // Indicates whether to replace the egress rule.
    //
    // Default: If no value is specified, we replace the ingress rule.
    //
    // Egress is a required field
    Egress *bool `locationName:"egress" type:"boolean" required:"true"`

    // ICMP protocol: The ICMP or ICMPv6 type and code. Required if specifying the
    // ICMP (1) protocol, or protocol 58 (ICMPv6) with an IPv6 CIDR block.
    IcmpTypeCode *IcmpTypeCode `locationName:"Icmp" type:"structure"`

    // The IPv6 network range to allow or deny, in CIDR notation (for example 2001:bd8:1234:1a00::/64).
    Ipv6CidrBlock *string `locationName:"ipv6CidrBlock" type:"string"`

    // The ID of the ACL.
    //
    // NetworkAclId is a required field
    NetworkAclId *string `locationName:"networkAclId" type:"string" required:"true"`

    // TCP or UDP protocols: The range of ports the rule applies to. Required if
    // specifying TCP (6) or UDP (17) for the protocol.
    PortRange *PortRange `locationName:"portRange" type:"structure"`

    // The IP protocol. You can specify all or -1 to mean all protocols. If you
    // specify all, -1, or a protocol number other than tcp, udp, or icmp, traffic
    // on all ports is allowed, regardless of any ports or ICMP types or codes you
    // specify. If you specify protocol 58 (ICMPv6) and specify an IPv4 CIDR block,
    // traffic for all ICMP types and codes allowed, regardless of any that you
    // specify. If you specify protocol 58 (ICMPv6) and specify an IPv6 CIDR block,
    // you must specify an ICMP type and code.
    //
    // Protocol is a required field
    Protocol *string `locationName:"protocol" type:"string" required:"true"`

    // Indicates whether to allow or deny the traffic that matches the rule.
    //
    // RuleAction is a required field
    RuleAction *string `locationName:"ruleAction" type:"string" required:"true" enum:"RuleAction"`

    // The rule number of the entry to replace.
    //
    // RuleNumber is a required field
    RuleNumber *int64 `locationName:"ruleNumber" type:"integer" required:"true"`
    // contains filtered or unexported fields
}

func (ReplaceNetworkAclEntryInput) GoString

func (s ReplaceNetworkAclEntryInput) GoString() string

GoString returns the string representation

func (*ReplaceNetworkAclEntryInput) SetCidrBlock

func (s *ReplaceNetworkAclEntryInput) SetCidrBlock(v string) *ReplaceNetworkAclEntryInput

SetCidrBlock sets the CidrBlock field's value.

func (*ReplaceNetworkAclEntryInput) SetDryRun

func (s *ReplaceNetworkAclEntryInput) SetDryRun(v bool) *ReplaceNetworkAclEntryInput

SetDryRun sets the DryRun field's value.

func (*ReplaceNetworkAclEntryInput) SetEgress

func (s *ReplaceNetworkAclEntryInput) SetEgress(v bool) *ReplaceNetworkAclEntryInput

SetEgress sets the Egress field's value.

func (*ReplaceNetworkAclEntryInput) SetIcmpTypeCode

func (s *ReplaceNetworkAclEntryInput) SetIcmpTypeCode(v *IcmpTypeCode) *ReplaceNetworkAclEntryInput

SetIcmpTypeCode sets the IcmpTypeCode field's value.

func (*ReplaceNetworkAclEntryInput) SetIpv6CidrBlock

func (s *ReplaceNetworkAclEntryInput) SetIpv6CidrBlock(v string) *ReplaceNetworkAclEntryInput

SetIpv6CidrBlock sets the Ipv6CidrBlock field's value.

func (*ReplaceNetworkAclEntryInput) SetNetworkAclId

func (s *ReplaceNetworkAclEntryInput) SetNetworkAclId(v string) *ReplaceNetworkAclEntryInput

SetNetworkAclId sets the NetworkAclId field's value.

func (*ReplaceNetworkAclEntryInput) SetPortRange

func (s *ReplaceNetworkAclEntryInput) SetPortRange(v *PortRange) *ReplaceNetworkAclEntryInput

SetPortRange sets the PortRange field's value.

func (*ReplaceNetworkAclEntryInput) SetProtocol

func (s *ReplaceNetworkAclEntryInput) SetProtocol(v string) *ReplaceNetworkAclEntryInput

SetProtocol sets the Protocol field's value.

func (*ReplaceNetworkAclEntryInput) SetRuleAction

func (s *ReplaceNetworkAclEntryInput) SetRuleAction(v string) *ReplaceNetworkAclEntryInput

SetRuleAction sets the RuleAction field's value.

func (*ReplaceNetworkAclEntryInput) SetRuleNumber

func (s *ReplaceNetworkAclEntryInput) SetRuleNumber(v int64) *ReplaceNetworkAclEntryInput

SetRuleNumber sets the RuleNumber field's value.

func (ReplaceNetworkAclEntryInput) String

func (s ReplaceNetworkAclEntryInput) String() string

String returns the string representation

func (*ReplaceNetworkAclEntryInput) Validate

func (s *ReplaceNetworkAclEntryInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ReplaceNetworkAclEntryOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReplaceNetworkAclEntryOutput

type ReplaceNetworkAclEntryOutput struct {
    // contains filtered or unexported fields
}

func (ReplaceNetworkAclEntryOutput) GoString

func (s ReplaceNetworkAclEntryOutput) GoString() string

GoString returns the string representation

func (ReplaceNetworkAclEntryOutput) String

func (s ReplaceNetworkAclEntryOutput) String() string

String returns the string representation

type ReplaceRouteInput

Contains the parameters for ReplaceRoute. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReplaceRouteRequest

type ReplaceRouteInput struct {

    // The IPv4 CIDR address block used for the destination match. The value you
    // provide must match the CIDR of an existing route in the table.
    DestinationCidrBlock *string `locationName:"destinationCidrBlock" type:"string"`

    // The IPv6 CIDR address block used for the destination match. The value you
    // provide must match the CIDR of an existing route in the table.
    DestinationIpv6CidrBlock *string `locationName:"destinationIpv6CidrBlock" type:"string"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // [IPv6 traffic only] The ID of an egress-only Internet gateway.
    EgressOnlyInternetGatewayId *string `locationName:"egressOnlyInternetGatewayId" type:"string"`

    // The ID of an Internet gateway or virtual private gateway.
    GatewayId *string `locationName:"gatewayId" type:"string"`

    // The ID of a NAT instance in your VPC.
    InstanceId *string `locationName:"instanceId" type:"string"`

    // [IPv4 traffic only] The ID of a NAT gateway.
    NatGatewayId *string `locationName:"natGatewayId" type:"string"`

    // The ID of a network interface.
    NetworkInterfaceId *string `locationName:"networkInterfaceId" type:"string"`

    // The ID of the route table.
    //
    // RouteTableId is a required field
    RouteTableId *string `locationName:"routeTableId" type:"string" required:"true"`

    // The ID of a VPC peering connection.
    VpcPeeringConnectionId *string `locationName:"vpcPeeringConnectionId" type:"string"`
    // contains filtered or unexported fields
}

func (ReplaceRouteInput) GoString

func (s ReplaceRouteInput) GoString() string

GoString returns the string representation

func (*ReplaceRouteInput) SetDestinationCidrBlock

func (s *ReplaceRouteInput) SetDestinationCidrBlock(v string) *ReplaceRouteInput

SetDestinationCidrBlock sets the DestinationCidrBlock field's value.

func (*ReplaceRouteInput) SetDestinationIpv6CidrBlock

func (s *ReplaceRouteInput) SetDestinationIpv6CidrBlock(v string) *ReplaceRouteInput

SetDestinationIpv6CidrBlock sets the DestinationIpv6CidrBlock field's value.

func (*ReplaceRouteInput) SetDryRun

func (s *ReplaceRouteInput) SetDryRun(v bool) *ReplaceRouteInput

SetDryRun sets the DryRun field's value.

func (*ReplaceRouteInput) SetEgressOnlyInternetGatewayId

func (s *ReplaceRouteInput) SetEgressOnlyInternetGatewayId(v string) *ReplaceRouteInput

SetEgressOnlyInternetGatewayId sets the EgressOnlyInternetGatewayId field's value.

func (*ReplaceRouteInput) SetGatewayId

func (s *ReplaceRouteInput) SetGatewayId(v string) *ReplaceRouteInput

SetGatewayId sets the GatewayId field's value.

func (*ReplaceRouteInput) SetInstanceId

func (s *ReplaceRouteInput) SetInstanceId(v string) *ReplaceRouteInput

SetInstanceId sets the InstanceId field's value.

func (*ReplaceRouteInput) SetNatGatewayId

func (s *ReplaceRouteInput) SetNatGatewayId(v string) *ReplaceRouteInput

SetNatGatewayId sets the NatGatewayId field's value.

func (*ReplaceRouteInput) SetNetworkInterfaceId

func (s *ReplaceRouteInput) SetNetworkInterfaceId(v string) *ReplaceRouteInput

SetNetworkInterfaceId sets the NetworkInterfaceId field's value.

func (*ReplaceRouteInput) SetRouteTableId

func (s *ReplaceRouteInput) SetRouteTableId(v string) *ReplaceRouteInput

SetRouteTableId sets the RouteTableId field's value.

func (*ReplaceRouteInput) SetVpcPeeringConnectionId

func (s *ReplaceRouteInput) SetVpcPeeringConnectionId(v string) *ReplaceRouteInput

SetVpcPeeringConnectionId sets the VpcPeeringConnectionId field's value.

func (ReplaceRouteInput) String

func (s ReplaceRouteInput) String() string

String returns the string representation

func (*ReplaceRouteInput) Validate

func (s *ReplaceRouteInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ReplaceRouteOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReplaceRouteOutput

type ReplaceRouteOutput struct {
    // contains filtered or unexported fields
}

func (ReplaceRouteOutput) GoString

func (s ReplaceRouteOutput) GoString() string

GoString returns the string representation

func (ReplaceRouteOutput) String

func (s ReplaceRouteOutput) String() string

String returns the string representation

type ReplaceRouteTableAssociationInput

Contains the parameters for ReplaceRouteTableAssociation. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReplaceRouteTableAssociationRequest

type ReplaceRouteTableAssociationInput struct {

    // The association ID.
    //
    // AssociationId is a required field
    AssociationId *string `locationName:"associationId" type:"string" required:"true"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the new route table to associate with the subnet.
    //
    // RouteTableId is a required field
    RouteTableId *string `locationName:"routeTableId" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (ReplaceRouteTableAssociationInput) GoString

func (s ReplaceRouteTableAssociationInput) GoString() string

GoString returns the string representation

func (*ReplaceRouteTableAssociationInput) SetAssociationId

func (s *ReplaceRouteTableAssociationInput) SetAssociationId(v string) *ReplaceRouteTableAssociationInput

SetAssociationId sets the AssociationId field's value.

func (*ReplaceRouteTableAssociationInput) SetDryRun

func (s *ReplaceRouteTableAssociationInput) SetDryRun(v bool) *ReplaceRouteTableAssociationInput

SetDryRun sets the DryRun field's value.

func (*ReplaceRouteTableAssociationInput) SetRouteTableId

func (s *ReplaceRouteTableAssociationInput) SetRouteTableId(v string) *ReplaceRouteTableAssociationInput

SetRouteTableId sets the RouteTableId field's value.

func (ReplaceRouteTableAssociationInput) String

func (s ReplaceRouteTableAssociationInput) String() string

String returns the string representation

func (*ReplaceRouteTableAssociationInput) Validate

func (s *ReplaceRouteTableAssociationInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ReplaceRouteTableAssociationOutput

Contains the output of ReplaceRouteTableAssociation. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReplaceRouteTableAssociationResult

type ReplaceRouteTableAssociationOutput struct {

    // The ID of the new association.
    NewAssociationId *string `locationName:"newAssociationId" type:"string"`
    // contains filtered or unexported fields
}

func (ReplaceRouteTableAssociationOutput) GoString

func (s ReplaceRouteTableAssociationOutput) GoString() string

GoString returns the string representation

func (*ReplaceRouteTableAssociationOutput) SetNewAssociationId

func (s *ReplaceRouteTableAssociationOutput) SetNewAssociationId(v string) *ReplaceRouteTableAssociationOutput

SetNewAssociationId sets the NewAssociationId field's value.

func (ReplaceRouteTableAssociationOutput) String

func (s ReplaceRouteTableAssociationOutput) String() string

String returns the string representation

type ReportInstanceStatusInput

Contains the parameters for ReportInstanceStatus. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReportInstanceStatusRequest

type ReportInstanceStatusInput struct {

    // Descriptive text about the health state of your instance.
    Description *string `locationName:"description" type:"string"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The time at which the reported instance health state ended.
    EndTime *time.Time `locationName:"endTime" type:"timestamp" timestampFormat:"iso8601"`

    // One or more instances.
    //
    // Instances is a required field
    Instances []*string `locationName:"instanceId" locationNameList:"InstanceId" type:"list" required:"true"`

    // One or more reason codes that describes the health state of your instance.
    //
    //    * instance-stuck-in-state: My instance is stuck in a state.
    //
    //    * unresponsive: My instance is unresponsive.
    //
    //    * not-accepting-credentials: My instance is not accepting my credentials.
    //
    //    * password-not-available: A password is not available for my instance.
    //
    //    * performance-network: My instance is experiencing performance problems
    //    which I believe are network related.
    //
    //    * performance-instance-store: My instance is experiencing performance
    //    problems which I believe are related to the instance stores.
    //
    //    * performance-ebs-volume: My instance is experiencing performance problems
    //    which I believe are related to an EBS volume.
    //
    //    * performance-other: My instance is experiencing performance problems.
    //
    //    * other: [explain using the description parameter]
    //
    // ReasonCodes is a required field
    ReasonCodes []*string `locationName:"reasonCode" locationNameList:"item" type:"list" required:"true"`

    // The time at which the reported instance health state began.
    StartTime *time.Time `locationName:"startTime" type:"timestamp" timestampFormat:"iso8601"`

    // The status of all instances listed.
    //
    // Status is a required field
    Status *string `locationName:"status" type:"string" required:"true" enum:"ReportStatusType"`
    // contains filtered or unexported fields
}

func (ReportInstanceStatusInput) GoString

func (s ReportInstanceStatusInput) GoString() string

GoString returns the string representation

func (*ReportInstanceStatusInput) SetDescription

func (s *ReportInstanceStatusInput) SetDescription(v string) *ReportInstanceStatusInput

SetDescription sets the Description field's value.

func (*ReportInstanceStatusInput) SetDryRun

func (s *ReportInstanceStatusInput) SetDryRun(v bool) *ReportInstanceStatusInput

SetDryRun sets the DryRun field's value.

func (*ReportInstanceStatusInput) SetEndTime

func (s *ReportInstanceStatusInput) SetEndTime(v time.Time) *ReportInstanceStatusInput

SetEndTime sets the EndTime field's value.

func (*ReportInstanceStatusInput) SetInstances

func (s *ReportInstanceStatusInput) SetInstances(v []*string) *ReportInstanceStatusInput

SetInstances sets the Instances field's value.

func (*ReportInstanceStatusInput) SetReasonCodes

func (s *ReportInstanceStatusInput) SetReasonCodes(v []*string) *ReportInstanceStatusInput

SetReasonCodes sets the ReasonCodes field's value.

func (*ReportInstanceStatusInput) SetStartTime

func (s *ReportInstanceStatusInput) SetStartTime(v time.Time) *ReportInstanceStatusInput

SetStartTime sets the StartTime field's value.

func (*ReportInstanceStatusInput) SetStatus

func (s *ReportInstanceStatusInput) SetStatus(v string) *ReportInstanceStatusInput

SetStatus sets the Status field's value.

func (ReportInstanceStatusInput) String

func (s ReportInstanceStatusInput) String() string

String returns the string representation

func (*ReportInstanceStatusInput) Validate

func (s *ReportInstanceStatusInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ReportInstanceStatusOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReportInstanceStatusOutput

type ReportInstanceStatusOutput struct {
    // contains filtered or unexported fields
}

func (ReportInstanceStatusOutput) GoString

func (s ReportInstanceStatusOutput) GoString() string

GoString returns the string representation

func (ReportInstanceStatusOutput) String

func (s ReportInstanceStatusOutput) String() string

String returns the string representation

type RequestSpotFleetInput

Contains the parameters for RequestSpotFleet. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RequestSpotFleetRequest

type RequestSpotFleetInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The configuration for the Spot fleet request.
    //
    // SpotFleetRequestConfig is a required field
    SpotFleetRequestConfig *SpotFleetRequestConfigData `locationName:"spotFleetRequestConfig" type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (RequestSpotFleetInput) GoString

func (s RequestSpotFleetInput) GoString() string

GoString returns the string representation

func (*RequestSpotFleetInput) SetDryRun

func (s *RequestSpotFleetInput) SetDryRun(v bool) *RequestSpotFleetInput

SetDryRun sets the DryRun field's value.

func (*RequestSpotFleetInput) SetSpotFleetRequestConfig

func (s *RequestSpotFleetInput) SetSpotFleetRequestConfig(v *SpotFleetRequestConfigData) *RequestSpotFleetInput

SetSpotFleetRequestConfig sets the SpotFleetRequestConfig field's value.

func (RequestSpotFleetInput) String

func (s RequestSpotFleetInput) String() string

String returns the string representation

func (*RequestSpotFleetInput) Validate

func (s *RequestSpotFleetInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type RequestSpotFleetOutput

Contains the output of RequestSpotFleet. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RequestSpotFleetResponse

type RequestSpotFleetOutput struct {

    // The ID of the Spot fleet request.
    //
    // SpotFleetRequestId is a required field
    SpotFleetRequestId *string `locationName:"spotFleetRequestId" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (RequestSpotFleetOutput) GoString

func (s RequestSpotFleetOutput) GoString() string

GoString returns the string representation

func (*RequestSpotFleetOutput) SetSpotFleetRequestId

func (s *RequestSpotFleetOutput) SetSpotFleetRequestId(v string) *RequestSpotFleetOutput

SetSpotFleetRequestId sets the SpotFleetRequestId field's value.

func (RequestSpotFleetOutput) String

func (s RequestSpotFleetOutput) String() string

String returns the string representation

type RequestSpotInstancesInput

Contains the parameters for RequestSpotInstances. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RequestSpotInstancesRequest

type RequestSpotInstancesInput struct {

    // The user-specified name for a logical grouping of bids.
    //
    // When you specify an Availability Zone group in a Spot Instance request, all
    // Spot instances in the request are launched in the same Availability Zone.
    // Instance proximity is maintained with this parameter, but the choice of Availability
    // Zone is not. The group applies only to bids for Spot Instances of the same
    // instance type. Any additional Spot instance requests that are specified with
    // the same Availability Zone group name are launched in that same Availability
    // Zone, as long as at least one instance from the group is still active.
    //
    // If there is no active instance running in the Availability Zone group that
    // you specify for a new Spot instance request (all instances are terminated,
    // the bid is expired, or the bid falls below current market), then Amazon EC2
    // launches the instance in any Availability Zone where the constraint can be
    // met. Consequently, the subsequent set of Spot instances could be placed in
    // a different zone from the original request, even if you specified the same
    // Availability Zone group.
    //
    // Default: Instances are launched in any available Availability Zone.
    AvailabilityZoneGroup *string `locationName:"availabilityZoneGroup" type:"string"`

    // The required duration for the Spot instances (also known as Spot blocks),
    // in minutes. This value must be a multiple of 60 (60, 120, 180, 240, 300,
    // or 360).
    //
    // The duration period starts as soon as your Spot instance receives its instance
    // ID. At the end of the duration period, Amazon EC2 marks the Spot instance
    // for termination and provides a Spot instance termination notice, which gives
    // the instance a two-minute warning before it terminates.
    //
    // Note that you can't specify an Availability Zone group or a launch group
    // if you specify a duration.
    BlockDurationMinutes *int64 `locationName:"blockDurationMinutes" type:"integer"`

    // Unique, case-sensitive identifier that you provide to ensure the idempotency
    // of the request. For more information, see How to Ensure Idempotency (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Run_Instance_Idempotency.html)
    // in the Amazon Elastic Compute Cloud User Guide.
    ClientToken *string `locationName:"clientToken" type:"string"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The maximum number of Spot instances to launch.
    //
    // Default: 1
    InstanceCount *int64 `locationName:"instanceCount" type:"integer"`

    // The instance launch group. Launch groups are Spot instances that launch together
    // and terminate together.
    //
    // Default: Instances are launched and terminated individually
    LaunchGroup *string `locationName:"launchGroup" type:"string"`

    // The launch specification.
    LaunchSpecification *RequestSpotLaunchSpecification `type:"structure"`

    // The maximum hourly price (bid) for any Spot instance launched to fulfill
    // the request.
    //
    // SpotPrice is a required field
    SpotPrice *string `locationName:"spotPrice" type:"string" required:"true"`

    // The Spot instance request type.
    //
    // Default: one-time
    Type *string `locationName:"type" type:"string" enum:"SpotInstanceType"`

    // The start date of the request. If this is a one-time request, the request
    // becomes active at this date and time and remains active until all instances
    // launch, the request expires, or the request is canceled. If the request is
    // persistent, the request becomes active at this date and time and remains
    // active until it expires or is canceled.
    //
    // Default: The request is effective indefinitely.
    ValidFrom *time.Time `locationName:"validFrom" type:"timestamp" timestampFormat:"iso8601"`

    // The end date of the request. If this is a one-time request, the request remains
    // active until all instances launch, the request is canceled, or this date
    // is reached. If the request is persistent, it remains active until it is canceled
    // or this date and time is reached.
    //
    // Default: The request is effective indefinitely.
    ValidUntil *time.Time `locationName:"validUntil" type:"timestamp" timestampFormat:"iso8601"`
    // contains filtered or unexported fields
}

func (RequestSpotInstancesInput) GoString

func (s RequestSpotInstancesInput) GoString() string

GoString returns the string representation

func (*RequestSpotInstancesInput) SetAvailabilityZoneGroup

func (s *RequestSpotInstancesInput) SetAvailabilityZoneGroup(v string) *RequestSpotInstancesInput

SetAvailabilityZoneGroup sets the AvailabilityZoneGroup field's value.

func (*RequestSpotInstancesInput) SetBlockDurationMinutes

func (s *RequestSpotInstancesInput) SetBlockDurationMinutes(v int64) *RequestSpotInstancesInput

SetBlockDurationMinutes sets the BlockDurationMinutes field's value.

func (*RequestSpotInstancesInput) SetClientToken

func (s *RequestSpotInstancesInput) SetClientToken(v string) *RequestSpotInstancesInput

SetClientToken sets the ClientToken field's value.

func (*RequestSpotInstancesInput) SetDryRun

func (s *RequestSpotInstancesInput) SetDryRun(v bool) *RequestSpotInstancesInput

SetDryRun sets the DryRun field's value.

func (*RequestSpotInstancesInput) SetInstanceCount

func (s *RequestSpotInstancesInput) SetInstanceCount(v int64) *RequestSpotInstancesInput

SetInstanceCount sets the InstanceCount field's value.

func (*RequestSpotInstancesInput) SetLaunchGroup

func (s *RequestSpotInstancesInput) SetLaunchGroup(v string) *RequestSpotInstancesInput

SetLaunchGroup sets the LaunchGroup field's value.

func (*RequestSpotInstancesInput) SetLaunchSpecification

func (s *RequestSpotInstancesInput) SetLaunchSpecification(v *RequestSpotLaunchSpecification) *RequestSpotInstancesInput

SetLaunchSpecification sets the LaunchSpecification field's value.

func (*RequestSpotInstancesInput) SetSpotPrice

func (s *RequestSpotInstancesInput) SetSpotPrice(v string) *RequestSpotInstancesInput

SetSpotPrice sets the SpotPrice field's value.

func (*RequestSpotInstancesInput) SetType

func (s *RequestSpotInstancesInput) SetType(v string) *RequestSpotInstancesInput

SetType sets the Type field's value.

func (*RequestSpotInstancesInput) SetValidFrom

func (s *RequestSpotInstancesInput) SetValidFrom(v time.Time) *RequestSpotInstancesInput

SetValidFrom sets the ValidFrom field's value.

func (*RequestSpotInstancesInput) SetValidUntil

func (s *RequestSpotInstancesInput) SetValidUntil(v time.Time) *RequestSpotInstancesInput

SetValidUntil sets the ValidUntil field's value.

func (RequestSpotInstancesInput) String

func (s RequestSpotInstancesInput) String() string

String returns the string representation

func (*RequestSpotInstancesInput) Validate

func (s *RequestSpotInstancesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type RequestSpotInstancesOutput

Contains the output of RequestSpotInstances. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RequestSpotInstancesResult

type RequestSpotInstancesOutput struct {

    // One or more Spot instance requests.
    SpotInstanceRequests []*SpotInstanceRequest `locationName:"spotInstanceRequestSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (RequestSpotInstancesOutput) GoString

func (s RequestSpotInstancesOutput) GoString() string

GoString returns the string representation

func (*RequestSpotInstancesOutput) SetSpotInstanceRequests

func (s *RequestSpotInstancesOutput) SetSpotInstanceRequests(v []*SpotInstanceRequest) *RequestSpotInstancesOutput

SetSpotInstanceRequests sets the SpotInstanceRequests field's value.

func (RequestSpotInstancesOutput) String

func (s RequestSpotInstancesOutput) String() string

String returns the string representation

type RequestSpotLaunchSpecification

Describes the launch specification for an instance. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RequestSpotLaunchSpecification

type RequestSpotLaunchSpecification struct {

    // Deprecated.
    AddressingType *string `locationName:"addressingType" type:"string"`

    // One or more block device mapping entries.
    //
    // Although you can specify encrypted EBS volumes in this block device mapping
    // for your Spot Instances, these volumes are not encrypted.
    BlockDeviceMappings []*BlockDeviceMapping `locationName:"blockDeviceMapping" locationNameList:"item" type:"list"`

    // Indicates whether the instance is optimized for EBS I/O. This optimization
    // provides dedicated throughput to Amazon EBS and an optimized configuration
    // stack to provide optimal EBS I/O performance. This optimization isn't available
    // with all instance types. Additional usage charges apply when using an EBS
    // Optimized instance.
    //
    // Default: false
    EbsOptimized *bool `locationName:"ebsOptimized" type:"boolean"`

    // The IAM instance profile.
    IamInstanceProfile *IamInstanceProfileSpecification `locationName:"iamInstanceProfile" type:"structure"`

    // The ID of the AMI.
    ImageId *string `locationName:"imageId" type:"string"`

    // The instance type.
    InstanceType *string `locationName:"instanceType" type:"string" enum:"InstanceType"`

    // The ID of the kernel.
    KernelId *string `locationName:"kernelId" type:"string"`

    // The name of the key pair.
    KeyName *string `locationName:"keyName" type:"string"`

    // Indicates whether basic or detailed monitoring is enabled for the instance.
    //
    // Default: Disabled
    Monitoring *RunInstancesMonitoringEnabled `locationName:"monitoring" type:"structure"`

    // One or more network interfaces. If you specify a network interface, you must
    // specify subnet IDs and security group IDs using the network interface.
    NetworkInterfaces []*InstanceNetworkInterfaceSpecification `locationName:"NetworkInterface" locationNameList:"item" type:"list"`

    // The placement information for the instance.
    Placement *SpotPlacement `locationName:"placement" type:"structure"`

    // The ID of the RAM disk.
    RamdiskId *string `locationName:"ramdiskId" type:"string"`

    // One or more security group IDs.
    SecurityGroupIds []*string `locationName:"SecurityGroupId" locationNameList:"item" type:"list"`

    // One or more security groups. When requesting instances in a VPC, you must
    // specify the IDs of the security groups. When requesting instances in EC2-Classic,
    // you can specify the names or the IDs of the security groups.
    SecurityGroups []*string `locationName:"SecurityGroup" locationNameList:"item" type:"list"`

    // The ID of the subnet in which to launch the instance.
    SubnetId *string `locationName:"subnetId" type:"string"`

    // The user data to make available to the instances. If you are using an AWS
    // SDK or command line tool, Base64-encoding is performed for you, and you can
    // load the text from a file. Otherwise, you must provide Base64-encoded text.
    UserData *string `locationName:"userData" type:"string"`
    // contains filtered or unexported fields
}

func (RequestSpotLaunchSpecification) GoString

func (s RequestSpotLaunchSpecification) GoString() string

GoString returns the string representation

func (*RequestSpotLaunchSpecification) SetAddressingType

func (s *RequestSpotLaunchSpecification) SetAddressingType(v string) *RequestSpotLaunchSpecification

SetAddressingType sets the AddressingType field's value.

func (*RequestSpotLaunchSpecification) SetBlockDeviceMappings

func (s *RequestSpotLaunchSpecification) SetBlockDeviceMappings(v []*BlockDeviceMapping) *RequestSpotLaunchSpecification

SetBlockDeviceMappings sets the BlockDeviceMappings field's value.

func (*RequestSpotLaunchSpecification) SetEbsOptimized

func (s *RequestSpotLaunchSpecification) SetEbsOptimized(v bool) *RequestSpotLaunchSpecification

SetEbsOptimized sets the EbsOptimized field's value.

func (*RequestSpotLaunchSpecification) SetIamInstanceProfile

func (s *RequestSpotLaunchSpecification) SetIamInstanceProfile(v *IamInstanceProfileSpecification) *RequestSpotLaunchSpecification

SetIamInstanceProfile sets the IamInstanceProfile field's value.

func (*RequestSpotLaunchSpecification) SetImageId

func (s *RequestSpotLaunchSpecification) SetImageId(v string) *RequestSpotLaunchSpecification

SetImageId sets the ImageId field's value.

func (*RequestSpotLaunchSpecification) SetInstanceType

func (s *RequestSpotLaunchSpecification) SetInstanceType(v string) *RequestSpotLaunchSpecification

SetInstanceType sets the InstanceType field's value.

func (*RequestSpotLaunchSpecification) SetKernelId

func (s *RequestSpotLaunchSpecification) SetKernelId(v string) *RequestSpotLaunchSpecification

SetKernelId sets the KernelId field's value.

func (*RequestSpotLaunchSpecification) SetKeyName

func (s *RequestSpotLaunchSpecification) SetKeyName(v string) *RequestSpotLaunchSpecification

SetKeyName sets the KeyName field's value.

func (*RequestSpotLaunchSpecification) SetMonitoring

func (s *RequestSpotLaunchSpecification) SetMonitoring(v *RunInstancesMonitoringEnabled) *RequestSpotLaunchSpecification

SetMonitoring sets the Monitoring field's value.

func (*RequestSpotLaunchSpecification) SetNetworkInterfaces

func (s *RequestSpotLaunchSpecification) SetNetworkInterfaces(v []*InstanceNetworkInterfaceSpecification) *RequestSpotLaunchSpecification

SetNetworkInterfaces sets the NetworkInterfaces field's value.

func (*RequestSpotLaunchSpecification) SetPlacement

func (s *RequestSpotLaunchSpecification) SetPlacement(v *SpotPlacement) *RequestSpotLaunchSpecification

SetPlacement sets the Placement field's value.

func (*RequestSpotLaunchSpecification) SetRamdiskId

func (s *RequestSpotLaunchSpecification) SetRamdiskId(v string) *RequestSpotLaunchSpecification

SetRamdiskId sets the RamdiskId field's value.

func (*RequestSpotLaunchSpecification) SetSecurityGroupIds

func (s *RequestSpotLaunchSpecification) SetSecurityGroupIds(v []*string) *RequestSpotLaunchSpecification

SetSecurityGroupIds sets the SecurityGroupIds field's value.

func (*RequestSpotLaunchSpecification) SetSecurityGroups

func (s *RequestSpotLaunchSpecification) SetSecurityGroups(v []*string) *RequestSpotLaunchSpecification

SetSecurityGroups sets the SecurityGroups field's value.

func (*RequestSpotLaunchSpecification) SetSubnetId

func (s *RequestSpotLaunchSpecification) SetSubnetId(v string) *RequestSpotLaunchSpecification

SetSubnetId sets the SubnetId field's value.

func (*RequestSpotLaunchSpecification) SetUserData

func (s *RequestSpotLaunchSpecification) SetUserData(v string) *RequestSpotLaunchSpecification

SetUserData sets the UserData field's value.

func (RequestSpotLaunchSpecification) String

func (s RequestSpotLaunchSpecification) String() string

String returns the string representation

func (*RequestSpotLaunchSpecification) Validate

func (s *RequestSpotLaunchSpecification) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type Reservation

Describes a reservation. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Reservation

type Reservation struct {

    // [EC2-Classic only] One or more security groups.
    Groups []*GroupIdentifier `locationName:"groupSet" locationNameList:"item" type:"list"`

    // One or more instances.
    Instances []*Instance `locationName:"instancesSet" locationNameList:"item" type:"list"`

    // The ID of the AWS account that owns the reservation.
    OwnerId *string `locationName:"ownerId" type:"string"`

    // The ID of the requester that launched the instances on your behalf (for example,
    // AWS Management Console or Auto Scaling).
    RequesterId *string `locationName:"requesterId" type:"string"`

    // The ID of the reservation.
    ReservationId *string `locationName:"reservationId" type:"string"`
    // contains filtered or unexported fields
}

func (Reservation) GoString

func (s Reservation) GoString() string

GoString returns the string representation

func (*Reservation) SetGroups

func (s *Reservation) SetGroups(v []*GroupIdentifier) *Reservation

SetGroups sets the Groups field's value.

func (*Reservation) SetInstances

func (s *Reservation) SetInstances(v []*Instance) *Reservation

SetInstances sets the Instances field's value.

func (*Reservation) SetOwnerId

func (s *Reservation) SetOwnerId(v string) *Reservation

SetOwnerId sets the OwnerId field's value.

func (*Reservation) SetRequesterId

func (s *Reservation) SetRequesterId(v string) *Reservation

SetRequesterId sets the RequesterId field's value.

func (*Reservation) SetReservationId

func (s *Reservation) SetReservationId(v string) *Reservation

SetReservationId sets the ReservationId field's value.

func (Reservation) String

func (s Reservation) String() string

String returns the string representation

type ReservationValue

The cost associated with the Reserved Instance. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReservationValue

type ReservationValue struct {

    // The hourly rate of the reservation.
    HourlyPrice *string `locationName:"hourlyPrice" type:"string"`

    // The balance of the total value (the sum of remainingUpfrontValue + hourlyPrice
    // * number of hours remaining).
    RemainingTotalValue *string `locationName:"remainingTotalValue" type:"string"`

    // The remaining upfront cost of the reservation.
    RemainingUpfrontValue *string `locationName:"remainingUpfrontValue" type:"string"`
    // contains filtered or unexported fields
}

func (ReservationValue) GoString

func (s ReservationValue) GoString() string

GoString returns the string representation

func (*ReservationValue) SetHourlyPrice

func (s *ReservationValue) SetHourlyPrice(v string) *ReservationValue

SetHourlyPrice sets the HourlyPrice field's value.

func (*ReservationValue) SetRemainingTotalValue

func (s *ReservationValue) SetRemainingTotalValue(v string) *ReservationValue

SetRemainingTotalValue sets the RemainingTotalValue field's value.

func (*ReservationValue) SetRemainingUpfrontValue

func (s *ReservationValue) SetRemainingUpfrontValue(v string) *ReservationValue

SetRemainingUpfrontValue sets the RemainingUpfrontValue field's value.

func (ReservationValue) String

func (s ReservationValue) String() string

String returns the string representation

type ReservedInstanceLimitPrice

Describes the limit price of a Reserved Instance offering. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReservedInstanceLimitPrice

type ReservedInstanceLimitPrice struct {

    // Used for Reserved Instance Marketplace offerings. Specifies the limit price
    // on the total order (instanceCount * price).
    Amount *float64 `locationName:"amount" type:"double"`

    // The currency in which the limitPrice amount is specified. At this time, the
    // only supported currency is USD.
    CurrencyCode *string `locationName:"currencyCode" type:"string" enum:"CurrencyCodeValues"`
    // contains filtered or unexported fields
}

func (ReservedInstanceLimitPrice) GoString

func (s ReservedInstanceLimitPrice) GoString() string

GoString returns the string representation

func (*ReservedInstanceLimitPrice) SetAmount

func (s *ReservedInstanceLimitPrice) SetAmount(v float64) *ReservedInstanceLimitPrice

SetAmount sets the Amount field's value.

func (*ReservedInstanceLimitPrice) SetCurrencyCode

func (s *ReservedInstanceLimitPrice) SetCurrencyCode(v string) *ReservedInstanceLimitPrice

SetCurrencyCode sets the CurrencyCode field's value.

func (ReservedInstanceLimitPrice) String

func (s ReservedInstanceLimitPrice) String() string

String returns the string representation

type ReservedInstanceReservationValue

The total value of the Convertible Reserved Instance. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReservedInstanceReservationValue

type ReservedInstanceReservationValue struct {

    // The total value of the Convertible Reserved Instance that you are exchanging.
    ReservationValue *ReservationValue `locationName:"reservationValue" type:"structure"`

    // The ID of the Convertible Reserved Instance that you are exchanging.
    ReservedInstanceId *string `locationName:"reservedInstanceId" type:"string"`
    // contains filtered or unexported fields
}

func (ReservedInstanceReservationValue) GoString

func (s ReservedInstanceReservationValue) GoString() string

GoString returns the string representation

func (*ReservedInstanceReservationValue) SetReservationValue

func (s *ReservedInstanceReservationValue) SetReservationValue(v *ReservationValue) *ReservedInstanceReservationValue

SetReservationValue sets the ReservationValue field's value.

func (*ReservedInstanceReservationValue) SetReservedInstanceId

func (s *ReservedInstanceReservationValue) SetReservedInstanceId(v string) *ReservedInstanceReservationValue

SetReservedInstanceId sets the ReservedInstanceId field's value.

func (ReservedInstanceReservationValue) String

func (s ReservedInstanceReservationValue) String() string

String returns the string representation

type ReservedInstances

Describes a Reserved Instance. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReservedInstances

type ReservedInstances struct {

    // The Availability Zone in which the Reserved Instance can be used.
    AvailabilityZone *string `locationName:"availabilityZone" type:"string"`

    // The currency of the Reserved Instance. It's specified using ISO 4217 standard
    // currency codes. At this time, the only supported currency is USD.
    CurrencyCode *string `locationName:"currencyCode" type:"string" enum:"CurrencyCodeValues"`

    // The duration of the Reserved Instance, in seconds.
    Duration *int64 `locationName:"duration" type:"long"`

    // The time when the Reserved Instance expires.
    End *time.Time `locationName:"end" type:"timestamp" timestampFormat:"iso8601"`

    // The purchase price of the Reserved Instance.
    FixedPrice *float64 `locationName:"fixedPrice" type:"float"`

    // The number of reservations purchased.
    InstanceCount *int64 `locationName:"instanceCount" type:"integer"`

    // The tenancy of the instance.
    InstanceTenancy *string `locationName:"instanceTenancy" type:"string" enum:"Tenancy"`

    // The instance type on which the Reserved Instance can be used.
    InstanceType *string `locationName:"instanceType" type:"string" enum:"InstanceType"`

    // The offering class of the Reserved Instance.
    OfferingClass *string `locationName:"offeringClass" type:"string" enum:"OfferingClassType"`

    // The Reserved Instance offering type.
    OfferingType *string `locationName:"offeringType" type:"string" enum:"OfferingTypeValues"`

    // The Reserved Instance product platform description.
    ProductDescription *string `locationName:"productDescription" type:"string" enum:"RIProductDescription"`

    // The recurring charge tag assigned to the resource.
    RecurringCharges []*RecurringCharge `locationName:"recurringCharges" locationNameList:"item" type:"list"`

    // The ID of the Reserved Instance.
    ReservedInstancesId *string `locationName:"reservedInstancesId" type:"string"`

    // The scope of the Reserved Instance.
    Scope *string `locationName:"scope" type:"string" enum:"scope"`

    // The date and time the Reserved Instance started.
    Start *time.Time `locationName:"start" type:"timestamp" timestampFormat:"iso8601"`

    // The state of the Reserved Instance purchase.
    State *string `locationName:"state" type:"string" enum:"ReservedInstanceState"`

    // Any tags assigned to the resource.
    Tags []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"`

    // The usage price of the Reserved Instance, per hour.
    UsagePrice *float64 `locationName:"usagePrice" type:"float"`
    // contains filtered or unexported fields
}

func (ReservedInstances) GoString

func (s ReservedInstances) GoString() string

GoString returns the string representation

func (*ReservedInstances) SetAvailabilityZone

func (s *ReservedInstances) SetAvailabilityZone(v string) *ReservedInstances

SetAvailabilityZone sets the AvailabilityZone field's value.

func (*ReservedInstances) SetCurrencyCode

func (s *ReservedInstances) SetCurrencyCode(v string) *ReservedInstances

SetCurrencyCode sets the CurrencyCode field's value.

func (*ReservedInstances) SetDuration

func (s *ReservedInstances) SetDuration(v int64) *ReservedInstances

SetDuration sets the Duration field's value.

func (*ReservedInstances) SetEnd

func (s *ReservedInstances) SetEnd(v time.Time) *ReservedInstances

SetEnd sets the End field's value.

func (*ReservedInstances) SetFixedPrice

func (s *ReservedInstances) SetFixedPrice(v float64) *ReservedInstances

SetFixedPrice sets the FixedPrice field's value.

func (*ReservedInstances) SetInstanceCount

func (s *ReservedInstances) SetInstanceCount(v int64) *ReservedInstances

SetInstanceCount sets the InstanceCount field's value.

func (*ReservedInstances) SetInstanceTenancy

func (s *ReservedInstances) SetInstanceTenancy(v string) *ReservedInstances

SetInstanceTenancy sets the InstanceTenancy field's value.

func (*ReservedInstances) SetInstanceType

func (s *ReservedInstances) SetInstanceType(v string) *ReservedInstances

SetInstanceType sets the InstanceType field's value.

func (*ReservedInstances) SetOfferingClass

func (s *ReservedInstances) SetOfferingClass(v string) *ReservedInstances

SetOfferingClass sets the OfferingClass field's value.

func (*ReservedInstances) SetOfferingType

func (s *ReservedInstances) SetOfferingType(v string) *ReservedInstances

SetOfferingType sets the OfferingType field's value.

func (*ReservedInstances) SetProductDescription

func (s *ReservedInstances) SetProductDescription(v string) *ReservedInstances

SetProductDescription sets the ProductDescription field's value.

func (*ReservedInstances) SetRecurringCharges

func (s *ReservedInstances) SetRecurringCharges(v []*RecurringCharge) *ReservedInstances

SetRecurringCharges sets the RecurringCharges field's value.

func (*ReservedInstances) SetReservedInstancesId

func (s *ReservedInstances) SetReservedInstancesId(v string) *ReservedInstances

SetReservedInstancesId sets the ReservedInstancesId field's value.

func (*ReservedInstances) SetScope

func (s *ReservedInstances) SetScope(v string) *ReservedInstances

SetScope sets the Scope field's value.

func (*ReservedInstances) SetStart

func (s *ReservedInstances) SetStart(v time.Time) *ReservedInstances

SetStart sets the Start field's value.

func (*ReservedInstances) SetState

func (s *ReservedInstances) SetState(v string) *ReservedInstances

SetState sets the State field's value.

func (*ReservedInstances) SetTags

func (s *ReservedInstances) SetTags(v []*Tag) *ReservedInstances

SetTags sets the Tags field's value.

func (*ReservedInstances) SetUsagePrice

func (s *ReservedInstances) SetUsagePrice(v float64) *ReservedInstances

SetUsagePrice sets the UsagePrice field's value.

func (ReservedInstances) String

func (s ReservedInstances) String() string

String returns the string representation

type ReservedInstancesConfiguration

Describes the configuration settings for the modified Reserved Instances. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReservedInstancesConfiguration

type ReservedInstancesConfiguration struct {

    // The Availability Zone for the modified Reserved Instances.
    AvailabilityZone *string `locationName:"availabilityZone" type:"string"`

    // The number of modified Reserved Instances.
    InstanceCount *int64 `locationName:"instanceCount" type:"integer"`

    // The instance type for the modified Reserved Instances.
    InstanceType *string `locationName:"instanceType" type:"string" enum:"InstanceType"`

    // The network platform of the modified Reserved Instances, which is either
    // EC2-Classic or EC2-VPC.
    Platform *string `locationName:"platform" type:"string"`

    // Whether the Reserved Instance is applied to instances in a region or instances
    // in a specific Availability Zone.
    Scope *string `locationName:"scope" type:"string" enum:"scope"`
    // contains filtered or unexported fields
}

func (ReservedInstancesConfiguration) GoString

func (s ReservedInstancesConfiguration) GoString() string

GoString returns the string representation

func (*ReservedInstancesConfiguration) SetAvailabilityZone

func (s *ReservedInstancesConfiguration) SetAvailabilityZone(v string) *ReservedInstancesConfiguration

SetAvailabilityZone sets the AvailabilityZone field's value.

func (*ReservedInstancesConfiguration) SetInstanceCount

func (s *ReservedInstancesConfiguration) SetInstanceCount(v int64) *ReservedInstancesConfiguration

SetInstanceCount sets the InstanceCount field's value.

func (*ReservedInstancesConfiguration) SetInstanceType

func (s *ReservedInstancesConfiguration) SetInstanceType(v string) *ReservedInstancesConfiguration

SetInstanceType sets the InstanceType field's value.

func (*ReservedInstancesConfiguration) SetPlatform

func (s *ReservedInstancesConfiguration) SetPlatform(v string) *ReservedInstancesConfiguration

SetPlatform sets the Platform field's value.

func (*ReservedInstancesConfiguration) SetScope

func (s *ReservedInstancesConfiguration) SetScope(v string) *ReservedInstancesConfiguration

SetScope sets the Scope field's value.

func (ReservedInstancesConfiguration) String

func (s ReservedInstancesConfiguration) String() string

String returns the string representation

type ReservedInstancesId

Describes the ID of a Reserved Instance. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReservedInstancesId

type ReservedInstancesId struct {

    // The ID of the Reserved Instance.
    ReservedInstancesId *string `locationName:"reservedInstancesId" type:"string"`
    // contains filtered or unexported fields
}

func (ReservedInstancesId) GoString

func (s ReservedInstancesId) GoString() string

GoString returns the string representation

func (*ReservedInstancesId) SetReservedInstancesId

func (s *ReservedInstancesId) SetReservedInstancesId(v string) *ReservedInstancesId

SetReservedInstancesId sets the ReservedInstancesId field's value.

func (ReservedInstancesId) String

func (s ReservedInstancesId) String() string

String returns the string representation

type ReservedInstancesListing

Describes a Reserved Instance listing. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReservedInstancesListing

type ReservedInstancesListing struct {

    // A unique, case-sensitive key supplied by the client to ensure that the request
    // is idempotent. For more information, see Ensuring Idempotency (http://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html).
    ClientToken *string `locationName:"clientToken" type:"string"`

    // The time the listing was created.
    CreateDate *time.Time `locationName:"createDate" type:"timestamp" timestampFormat:"iso8601"`

    // The number of instances in this state.
    InstanceCounts []*InstanceCount `locationName:"instanceCounts" locationNameList:"item" type:"list"`

    // The price of the Reserved Instance listing.
    PriceSchedules []*PriceSchedule `locationName:"priceSchedules" locationNameList:"item" type:"list"`

    // The ID of the Reserved Instance.
    ReservedInstancesId *string `locationName:"reservedInstancesId" type:"string"`

    // The ID of the Reserved Instance listing.
    ReservedInstancesListingId *string `locationName:"reservedInstancesListingId" type:"string"`

    // The status of the Reserved Instance listing.
    Status *string `locationName:"status" type:"string" enum:"ListingStatus"`

    // The reason for the current status of the Reserved Instance listing. The response
    // can be blank.
    StatusMessage *string `locationName:"statusMessage" type:"string"`

    // Any tags assigned to the resource.
    Tags []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"`

    // The last modified timestamp of the listing.
    UpdateDate *time.Time `locationName:"updateDate" type:"timestamp" timestampFormat:"iso8601"`
    // contains filtered or unexported fields
}

func (ReservedInstancesListing) GoString

func (s ReservedInstancesListing) GoString() string

GoString returns the string representation

func (*ReservedInstancesListing) SetClientToken

func (s *ReservedInstancesListing) SetClientToken(v string) *ReservedInstancesListing

SetClientToken sets the ClientToken field's value.

func (*ReservedInstancesListing) SetCreateDate

func (s *ReservedInstancesListing) SetCreateDate(v time.Time) *ReservedInstancesListing

SetCreateDate sets the CreateDate field's value.

func (*ReservedInstancesListing) SetInstanceCounts

func (s *ReservedInstancesListing) SetInstanceCounts(v []*InstanceCount) *ReservedInstancesListing

SetInstanceCounts sets the InstanceCounts field's value.

func (*ReservedInstancesListing) SetPriceSchedules

func (s *ReservedInstancesListing) SetPriceSchedules(v []*PriceSchedule) *ReservedInstancesListing

SetPriceSchedules sets the PriceSchedules field's value.

func (*ReservedInstancesListing) SetReservedInstancesId

func (s *ReservedInstancesListing) SetReservedInstancesId(v string) *ReservedInstancesListing

SetReservedInstancesId sets the ReservedInstancesId field's value.

func (*ReservedInstancesListing) SetReservedInstancesListingId

func (s *ReservedInstancesListing) SetReservedInstancesListingId(v string) *ReservedInstancesListing

SetReservedInstancesListingId sets the ReservedInstancesListingId field's value.

func (*ReservedInstancesListing) SetStatus

func (s *ReservedInstancesListing) SetStatus(v string) *ReservedInstancesListing

SetStatus sets the Status field's value.

func (*ReservedInstancesListing) SetStatusMessage

func (s *ReservedInstancesListing) SetStatusMessage(v string) *ReservedInstancesListing

SetStatusMessage sets the StatusMessage field's value.

func (*ReservedInstancesListing) SetTags

func (s *ReservedInstancesListing) SetTags(v []*Tag) *ReservedInstancesListing

SetTags sets the Tags field's value.

func (*ReservedInstancesListing) SetUpdateDate

func (s *ReservedInstancesListing) SetUpdateDate(v time.Time) *ReservedInstancesListing

SetUpdateDate sets the UpdateDate field's value.

func (ReservedInstancesListing) String

func (s ReservedInstancesListing) String() string

String returns the string representation

type ReservedInstancesModification

Describes a Reserved Instance modification. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReservedInstancesModification

type ReservedInstancesModification struct {

    // A unique, case-sensitive key supplied by the client to ensure that the request
    // is idempotent. For more information, see Ensuring Idempotency (http://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html).
    ClientToken *string `locationName:"clientToken" type:"string"`

    // The time when the modification request was created.
    CreateDate *time.Time `locationName:"createDate" type:"timestamp" timestampFormat:"iso8601"`

    // The time for the modification to become effective.
    EffectiveDate *time.Time `locationName:"effectiveDate" type:"timestamp" timestampFormat:"iso8601"`

    // Contains target configurations along with their corresponding new Reserved
    // Instance IDs.
    ModificationResults []*ReservedInstancesModificationResult `locationName:"modificationResultSet" locationNameList:"item" type:"list"`

    // The IDs of one or more Reserved Instances.
    ReservedInstancesIds []*ReservedInstancesId `locationName:"reservedInstancesSet" locationNameList:"item" type:"list"`

    // A unique ID for the Reserved Instance modification.
    ReservedInstancesModificationId *string `locationName:"reservedInstancesModificationId" type:"string"`

    // The status of the Reserved Instances modification request.
    Status *string `locationName:"status" type:"string"`

    // The reason for the status.
    StatusMessage *string `locationName:"statusMessage" type:"string"`

    // The time when the modification request was last updated.
    UpdateDate *time.Time `locationName:"updateDate" type:"timestamp" timestampFormat:"iso8601"`
    // contains filtered or unexported fields
}

func (ReservedInstancesModification) GoString

func (s ReservedInstancesModification) GoString() string

GoString returns the string representation

func (*ReservedInstancesModification) SetClientToken

func (s *ReservedInstancesModification) SetClientToken(v string) *ReservedInstancesModification

SetClientToken sets the ClientToken field's value.

func (*ReservedInstancesModification) SetCreateDate

func (s *ReservedInstancesModification) SetCreateDate(v time.Time) *ReservedInstancesModification

SetCreateDate sets the CreateDate field's value.

func (*ReservedInstancesModification) SetEffectiveDate

func (s *ReservedInstancesModification) SetEffectiveDate(v time.Time) *ReservedInstancesModification

SetEffectiveDate sets the EffectiveDate field's value.

func (*ReservedInstancesModification) SetModificationResults

func (s *ReservedInstancesModification) SetModificationResults(v []*ReservedInstancesModificationResult) *ReservedInstancesModification

SetModificationResults sets the ModificationResults field's value.

func (*ReservedInstancesModification) SetReservedInstancesIds

func (s *ReservedInstancesModification) SetReservedInstancesIds(v []*ReservedInstancesId) *ReservedInstancesModification

SetReservedInstancesIds sets the ReservedInstancesIds field's value.

func (*ReservedInstancesModification) SetReservedInstancesModificationId

func (s *ReservedInstancesModification) SetReservedInstancesModificationId(v string) *ReservedInstancesModification

SetReservedInstancesModificationId sets the ReservedInstancesModificationId field's value.

func (*ReservedInstancesModification) SetStatus

func (s *ReservedInstancesModification) SetStatus(v string) *ReservedInstancesModification

SetStatus sets the Status field's value.

func (*ReservedInstancesModification) SetStatusMessage

func (s *ReservedInstancesModification) SetStatusMessage(v string) *ReservedInstancesModification

SetStatusMessage sets the StatusMessage field's value.

func (*ReservedInstancesModification) SetUpdateDate

func (s *ReservedInstancesModification) SetUpdateDate(v time.Time) *ReservedInstancesModification

SetUpdateDate sets the UpdateDate field's value.

func (ReservedInstancesModification) String

func (s ReservedInstancesModification) String() string

String returns the string representation

type ReservedInstancesModificationResult

Describes the modification request/s. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReservedInstancesModificationResult

type ReservedInstancesModificationResult struct {

    // The ID for the Reserved Instances that were created as part of the modification
    // request. This field is only available when the modification is fulfilled.
    ReservedInstancesId *string `locationName:"reservedInstancesId" type:"string"`

    // The target Reserved Instances configurations supplied as part of the modification
    // request.
    TargetConfiguration *ReservedInstancesConfiguration `locationName:"targetConfiguration" type:"structure"`
    // contains filtered or unexported fields
}

func (ReservedInstancesModificationResult) GoString

func (s ReservedInstancesModificationResult) GoString() string

GoString returns the string representation

func (*ReservedInstancesModificationResult) SetReservedInstancesId

func (s *ReservedInstancesModificationResult) SetReservedInstancesId(v string) *ReservedInstancesModificationResult

SetReservedInstancesId sets the ReservedInstancesId field's value.

func (*ReservedInstancesModificationResult) SetTargetConfiguration

func (s *ReservedInstancesModificationResult) SetTargetConfiguration(v *ReservedInstancesConfiguration) *ReservedInstancesModificationResult

SetTargetConfiguration sets the TargetConfiguration field's value.

func (ReservedInstancesModificationResult) String

func (s ReservedInstancesModificationResult) String() string

String returns the string representation

type ReservedInstancesOffering

Describes a Reserved Instance offering. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReservedInstancesOffering

type ReservedInstancesOffering struct {

    // The Availability Zone in which the Reserved Instance can be used.
    AvailabilityZone *string `locationName:"availabilityZone" type:"string"`

    // The currency of the Reserved Instance offering you are purchasing. It's specified
    // using ISO 4217 standard currency codes. At this time, the only supported
    // currency is USD.
    CurrencyCode *string `locationName:"currencyCode" type:"string" enum:"CurrencyCodeValues"`

    // The duration of the Reserved Instance, in seconds.
    Duration *int64 `locationName:"duration" type:"long"`

    // The purchase price of the Reserved Instance.
    FixedPrice *float64 `locationName:"fixedPrice" type:"float"`

    // The tenancy of the instance.
    InstanceTenancy *string `locationName:"instanceTenancy" type:"string" enum:"Tenancy"`

    // The instance type on which the Reserved Instance can be used.
    InstanceType *string `locationName:"instanceType" type:"string" enum:"InstanceType"`

    // Indicates whether the offering is available through the Reserved Instance
    // Marketplace (resale) or AWS. If it's a Reserved Instance Marketplace offering,
    // this is true.
    Marketplace *bool `locationName:"marketplace" type:"boolean"`

    // If convertible it can be exchanged for Reserved Instances of the same or
    // higher monetary value, with different configurations. If standard, it is
    // not possible to perform an exchange.
    OfferingClass *string `locationName:"offeringClass" type:"string" enum:"OfferingClassType"`

    // The Reserved Instance offering type.
    OfferingType *string `locationName:"offeringType" type:"string" enum:"OfferingTypeValues"`

    // The pricing details of the Reserved Instance offering.
    PricingDetails []*PricingDetail `locationName:"pricingDetailsSet" locationNameList:"item" type:"list"`

    // The Reserved Instance product platform description.
    ProductDescription *string `locationName:"productDescription" type:"string" enum:"RIProductDescription"`

    // The recurring charge tag assigned to the resource.
    RecurringCharges []*RecurringCharge `locationName:"recurringCharges" locationNameList:"item" type:"list"`

    // The ID of the Reserved Instance offering. This is the offering ID used in
    // GetReservedInstancesExchangeQuote to confirm that an exchange can be made.
    ReservedInstancesOfferingId *string `locationName:"reservedInstancesOfferingId" type:"string"`

    // Whether the Reserved Instance is applied to instances in a region or an Availability
    // Zone.
    Scope *string `locationName:"scope" type:"string" enum:"scope"`

    // The usage price of the Reserved Instance, per hour.
    UsagePrice *float64 `locationName:"usagePrice" type:"float"`
    // contains filtered or unexported fields
}

func (ReservedInstancesOffering) GoString

func (s ReservedInstancesOffering) GoString() string

GoString returns the string representation

func (*ReservedInstancesOffering) SetAvailabilityZone

func (s *ReservedInstancesOffering) SetAvailabilityZone(v string) *ReservedInstancesOffering

SetAvailabilityZone sets the AvailabilityZone field's value.

func (*ReservedInstancesOffering) SetCurrencyCode

func (s *ReservedInstancesOffering) SetCurrencyCode(v string) *ReservedInstancesOffering

SetCurrencyCode sets the CurrencyCode field's value.

func (*ReservedInstancesOffering) SetDuration

func (s *ReservedInstancesOffering) SetDuration(v int64) *ReservedInstancesOffering

SetDuration sets the Duration field's value.

func (*ReservedInstancesOffering) SetFixedPrice

func (s *ReservedInstancesOffering) SetFixedPrice(v float64) *ReservedInstancesOffering

SetFixedPrice sets the FixedPrice field's value.

func (*ReservedInstancesOffering) SetInstanceTenancy

func (s *ReservedInstancesOffering) SetInstanceTenancy(v string) *ReservedInstancesOffering

SetInstanceTenancy sets the InstanceTenancy field's value.

func (*ReservedInstancesOffering) SetInstanceType

func (s *ReservedInstancesOffering) SetInstanceType(v string) *ReservedInstancesOffering

SetInstanceType sets the InstanceType field's value.

func (*ReservedInstancesOffering) SetMarketplace

func (s *ReservedInstancesOffering) SetMarketplace(v bool) *ReservedInstancesOffering

SetMarketplace sets the Marketplace field's value.

func (*ReservedInstancesOffering) SetOfferingClass

func (s *ReservedInstancesOffering) SetOfferingClass(v string) *ReservedInstancesOffering

SetOfferingClass sets the OfferingClass field's value.

func (*ReservedInstancesOffering) SetOfferingType

func (s *ReservedInstancesOffering) SetOfferingType(v string) *ReservedInstancesOffering

SetOfferingType sets the OfferingType field's value.

func (*ReservedInstancesOffering) SetPricingDetails

func (s *ReservedInstancesOffering) SetPricingDetails(v []*PricingDetail) *ReservedInstancesOffering

SetPricingDetails sets the PricingDetails field's value.

func (*ReservedInstancesOffering) SetProductDescription

func (s *ReservedInstancesOffering) SetProductDescription(v string) *ReservedInstancesOffering

SetProductDescription sets the ProductDescription field's value.

func (*ReservedInstancesOffering) SetRecurringCharges

func (s *ReservedInstancesOffering) SetRecurringCharges(v []*RecurringCharge) *ReservedInstancesOffering

SetRecurringCharges sets the RecurringCharges field's value.

func (*ReservedInstancesOffering) SetReservedInstancesOfferingId

func (s *ReservedInstancesOffering) SetReservedInstancesOfferingId(v string) *ReservedInstancesOffering

SetReservedInstancesOfferingId sets the ReservedInstancesOfferingId field's value.

func (*ReservedInstancesOffering) SetScope

func (s *ReservedInstancesOffering) SetScope(v string) *ReservedInstancesOffering

SetScope sets the Scope field's value.

func (*ReservedInstancesOffering) SetUsagePrice

func (s *ReservedInstancesOffering) SetUsagePrice(v float64) *ReservedInstancesOffering

SetUsagePrice sets the UsagePrice field's value.

func (ReservedInstancesOffering) String

func (s ReservedInstancesOffering) String() string

String returns the string representation

type ResetImageAttributeInput

Contains the parameters for ResetImageAttribute. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ResetImageAttributeRequest

type ResetImageAttributeInput struct {

    // The attribute to reset (currently you can only reset the launch permission
    // attribute).
    //
    // Attribute is a required field
    Attribute *string `type:"string" required:"true" enum:"ResetImageAttributeName"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the AMI.
    //
    // ImageId is a required field
    ImageId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (ResetImageAttributeInput) GoString

func (s ResetImageAttributeInput) GoString() string

GoString returns the string representation

func (*ResetImageAttributeInput) SetAttribute

func (s *ResetImageAttributeInput) SetAttribute(v string) *ResetImageAttributeInput

SetAttribute sets the Attribute field's value.

func (*ResetImageAttributeInput) SetDryRun

func (s *ResetImageAttributeInput) SetDryRun(v bool) *ResetImageAttributeInput

SetDryRun sets the DryRun field's value.

func (*ResetImageAttributeInput) SetImageId

func (s *ResetImageAttributeInput) SetImageId(v string) *ResetImageAttributeInput

SetImageId sets the ImageId field's value.

func (ResetImageAttributeInput) String

func (s ResetImageAttributeInput) String() string

String returns the string representation

func (*ResetImageAttributeInput) Validate

func (s *ResetImageAttributeInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ResetImageAttributeOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ResetImageAttributeOutput

type ResetImageAttributeOutput struct {
    // contains filtered or unexported fields
}

func (ResetImageAttributeOutput) GoString

func (s ResetImageAttributeOutput) GoString() string

GoString returns the string representation

func (ResetImageAttributeOutput) String

func (s ResetImageAttributeOutput) String() string

String returns the string representation

type ResetInstanceAttributeInput

Contains the parameters for ResetInstanceAttribute. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ResetInstanceAttributeRequest

type ResetInstanceAttributeInput struct {

    // The attribute to reset.
    //
    // You can only reset the following attributes: kernel | ramdisk | sourceDestCheck.
    // To change an instance attribute, use ModifyInstanceAttribute.
    //
    // Attribute is a required field
    Attribute *string `locationName:"attribute" type:"string" required:"true" enum:"InstanceAttributeName"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the instance.
    //
    // InstanceId is a required field
    InstanceId *string `locationName:"instanceId" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (ResetInstanceAttributeInput) GoString

func (s ResetInstanceAttributeInput) GoString() string

GoString returns the string representation

func (*ResetInstanceAttributeInput) SetAttribute

func (s *ResetInstanceAttributeInput) SetAttribute(v string) *ResetInstanceAttributeInput

SetAttribute sets the Attribute field's value.

func (*ResetInstanceAttributeInput) SetDryRun

func (s *ResetInstanceAttributeInput) SetDryRun(v bool) *ResetInstanceAttributeInput

SetDryRun sets the DryRun field's value.

func (*ResetInstanceAttributeInput) SetInstanceId

func (s *ResetInstanceAttributeInput) SetInstanceId(v string) *ResetInstanceAttributeInput

SetInstanceId sets the InstanceId field's value.

func (ResetInstanceAttributeInput) String

func (s ResetInstanceAttributeInput) String() string

String returns the string representation

func (*ResetInstanceAttributeInput) Validate

func (s *ResetInstanceAttributeInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ResetInstanceAttributeOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ResetInstanceAttributeOutput

type ResetInstanceAttributeOutput struct {
    // contains filtered or unexported fields
}

func (ResetInstanceAttributeOutput) GoString

func (s ResetInstanceAttributeOutput) GoString() string

GoString returns the string representation

func (ResetInstanceAttributeOutput) String

func (s ResetInstanceAttributeOutput) String() string

String returns the string representation

type ResetNetworkInterfaceAttributeInput

Contains the parameters for ResetNetworkInterfaceAttribute. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ResetNetworkInterfaceAttributeRequest

type ResetNetworkInterfaceAttributeInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the network interface.
    //
    // NetworkInterfaceId is a required field
    NetworkInterfaceId *string `locationName:"networkInterfaceId" type:"string" required:"true"`

    // The source/destination checking attribute. Resets the value to true.
    SourceDestCheck *string `locationName:"sourceDestCheck" type:"string"`
    // contains filtered or unexported fields
}

func (ResetNetworkInterfaceAttributeInput) GoString

func (s ResetNetworkInterfaceAttributeInput) GoString() string

GoString returns the string representation

func (*ResetNetworkInterfaceAttributeInput) SetDryRun

func (s *ResetNetworkInterfaceAttributeInput) SetDryRun(v bool) *ResetNetworkInterfaceAttributeInput

SetDryRun sets the DryRun field's value.

func (*ResetNetworkInterfaceAttributeInput) SetNetworkInterfaceId

func (s *ResetNetworkInterfaceAttributeInput) SetNetworkInterfaceId(v string) *ResetNetworkInterfaceAttributeInput

SetNetworkInterfaceId sets the NetworkInterfaceId field's value.

func (*ResetNetworkInterfaceAttributeInput) SetSourceDestCheck

func (s *ResetNetworkInterfaceAttributeInput) SetSourceDestCheck(v string) *ResetNetworkInterfaceAttributeInput

SetSourceDestCheck sets the SourceDestCheck field's value.

func (ResetNetworkInterfaceAttributeInput) String

func (s ResetNetworkInterfaceAttributeInput) String() string

String returns the string representation

func (*ResetNetworkInterfaceAttributeInput) Validate

func (s *ResetNetworkInterfaceAttributeInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ResetNetworkInterfaceAttributeOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ResetNetworkInterfaceAttributeOutput

type ResetNetworkInterfaceAttributeOutput struct {
    // contains filtered or unexported fields
}

func (ResetNetworkInterfaceAttributeOutput) GoString

func (s ResetNetworkInterfaceAttributeOutput) GoString() string

GoString returns the string representation

func (ResetNetworkInterfaceAttributeOutput) String

func (s ResetNetworkInterfaceAttributeOutput) String() string

String returns the string representation

type ResetSnapshotAttributeInput

Contains the parameters for ResetSnapshotAttribute. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ResetSnapshotAttributeRequest

type ResetSnapshotAttributeInput struct {

    // The attribute to reset. Currently, only the attribute for permission to create
    // volumes can be reset.
    //
    // Attribute is a required field
    Attribute *string `type:"string" required:"true" enum:"SnapshotAttributeName"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The ID of the snapshot.
    //
    // SnapshotId is a required field
    SnapshotId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (ResetSnapshotAttributeInput) GoString

func (s ResetSnapshotAttributeInput) GoString() string

GoString returns the string representation

func (*ResetSnapshotAttributeInput) SetAttribute

func (s *ResetSnapshotAttributeInput) SetAttribute(v string) *ResetSnapshotAttributeInput

SetAttribute sets the Attribute field's value.

func (*ResetSnapshotAttributeInput) SetDryRun

func (s *ResetSnapshotAttributeInput) SetDryRun(v bool) *ResetSnapshotAttributeInput

SetDryRun sets the DryRun field's value.

func (*ResetSnapshotAttributeInput) SetSnapshotId

func (s *ResetSnapshotAttributeInput) SetSnapshotId(v string) *ResetSnapshotAttributeInput

SetSnapshotId sets the SnapshotId field's value.

func (ResetSnapshotAttributeInput) String

func (s ResetSnapshotAttributeInput) String() string

String returns the string representation

func (*ResetSnapshotAttributeInput) Validate

func (s *ResetSnapshotAttributeInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ResetSnapshotAttributeOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ResetSnapshotAttributeOutput

type ResetSnapshotAttributeOutput struct {
    // contains filtered or unexported fields
}

func (ResetSnapshotAttributeOutput) GoString

func (s ResetSnapshotAttributeOutput) GoString() string

GoString returns the string representation

func (ResetSnapshotAttributeOutput) String

func (s ResetSnapshotAttributeOutput) String() string

String returns the string representation

type RestoreAddressToClassicInput

Contains the parameters for RestoreAddressToClassic. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RestoreAddressToClassicRequest

type RestoreAddressToClassicInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The Elastic IP address.
    //
    // PublicIp is a required field
    PublicIp *string `locationName:"publicIp" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (RestoreAddressToClassicInput) GoString

func (s RestoreAddressToClassicInput) GoString() string

GoString returns the string representation

func (*RestoreAddressToClassicInput) SetDryRun

func (s *RestoreAddressToClassicInput) SetDryRun(v bool) *RestoreAddressToClassicInput

SetDryRun sets the DryRun field's value.

func (*RestoreAddressToClassicInput) SetPublicIp

func (s *RestoreAddressToClassicInput) SetPublicIp(v string) *RestoreAddressToClassicInput

SetPublicIp sets the PublicIp field's value.

func (RestoreAddressToClassicInput) String

func (s RestoreAddressToClassicInput) String() string

String returns the string representation

func (*RestoreAddressToClassicInput) Validate

func (s *RestoreAddressToClassicInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type RestoreAddressToClassicOutput

Contains the output of RestoreAddressToClassic. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RestoreAddressToClassicResult

type RestoreAddressToClassicOutput struct {

    // The Elastic IP address.
    PublicIp *string `locationName:"publicIp" type:"string"`

    // The move status for the IP address.
    Status *string `locationName:"status" type:"string" enum:"Status"`
    // contains filtered or unexported fields
}

func (RestoreAddressToClassicOutput) GoString

func (s RestoreAddressToClassicOutput) GoString() string

GoString returns the string representation

func (*RestoreAddressToClassicOutput) SetPublicIp

func (s *RestoreAddressToClassicOutput) SetPublicIp(v string) *RestoreAddressToClassicOutput

SetPublicIp sets the PublicIp field's value.

func (*RestoreAddressToClassicOutput) SetStatus

func (s *RestoreAddressToClassicOutput) SetStatus(v string) *RestoreAddressToClassicOutput

SetStatus sets the Status field's value.

func (RestoreAddressToClassicOutput) String

func (s RestoreAddressToClassicOutput) String() string

String returns the string representation

type RevokeSecurityGroupEgressInput

Contains the parameters for RevokeSecurityGroupEgress. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RevokeSecurityGroupEgressRequest

type RevokeSecurityGroupEgressInput struct {

    // The CIDR IP address range. We recommend that you specify the CIDR range in
    // a set of IP permissions instead.
    CidrIp *string `locationName:"cidrIp" type:"string"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The start of port range for the TCP and UDP protocols, or an ICMP type number.
    // We recommend that you specify the port range in a set of IP permissions instead.
    FromPort *int64 `locationName:"fromPort" type:"integer"`

    // The ID of the security group.
    //
    // GroupId is a required field
    GroupId *string `locationName:"groupId" type:"string" required:"true"`

    // A set of IP permissions. You can't specify a destination security group and
    // a CIDR IP address range.
    IpPermissions []*IpPermission `locationName:"ipPermissions" locationNameList:"item" type:"list"`

    // The IP protocol name or number. We recommend that you specify the protocol
    // in a set of IP permissions instead.
    IpProtocol *string `locationName:"ipProtocol" type:"string"`

    // The name of a destination security group. To revoke outbound access to a
    // destination security group, we recommend that you use a set of IP permissions
    // instead.
    SourceSecurityGroupName *string `locationName:"sourceSecurityGroupName" type:"string"`

    // The AWS account number for a destination security group. To revoke outbound
    // access to a destination security group, we recommend that you use a set of
    // IP permissions instead.
    SourceSecurityGroupOwnerId *string `locationName:"sourceSecurityGroupOwnerId" type:"string"`

    // The end of port range for the TCP and UDP protocols, or an ICMP type number.
    // We recommend that you specify the port range in a set of IP permissions instead.
    ToPort *int64 `locationName:"toPort" type:"integer"`
    // contains filtered or unexported fields
}

func (RevokeSecurityGroupEgressInput) GoString

func (s RevokeSecurityGroupEgressInput) GoString() string

GoString returns the string representation

func (*RevokeSecurityGroupEgressInput) SetCidrIp

func (s *RevokeSecurityGroupEgressInput) SetCidrIp(v string) *RevokeSecurityGroupEgressInput

SetCidrIp sets the CidrIp field's value.

func (*RevokeSecurityGroupEgressInput) SetDryRun

func (s *RevokeSecurityGroupEgressInput) SetDryRun(v bool) *RevokeSecurityGroupEgressInput

SetDryRun sets the DryRun field's value.

func (*RevokeSecurityGroupEgressInput) SetFromPort

func (s *RevokeSecurityGroupEgressInput) SetFromPort(v int64) *RevokeSecurityGroupEgressInput

SetFromPort sets the FromPort field's value.

func (*RevokeSecurityGroupEgressInput) SetGroupId

func (s *RevokeSecurityGroupEgressInput) SetGroupId(v string) *RevokeSecurityGroupEgressInput

SetGroupId sets the GroupId field's value.

func (*RevokeSecurityGroupEgressInput) SetIpPermissions

func (s *RevokeSecurityGroupEgressInput) SetIpPermissions(v []*IpPermission) *RevokeSecurityGroupEgressInput

SetIpPermissions sets the IpPermissions field's value.

func (*RevokeSecurityGroupEgressInput) SetIpProtocol

func (s *RevokeSecurityGroupEgressInput) SetIpProtocol(v string) *RevokeSecurityGroupEgressInput

SetIpProtocol sets the IpProtocol field's value.

func (*RevokeSecurityGroupEgressInput) SetSourceSecurityGroupName

func (s *RevokeSecurityGroupEgressInput) SetSourceSecurityGroupName(v string) *RevokeSecurityGroupEgressInput

SetSourceSecurityGroupName sets the SourceSecurityGroupName field's value.

func (*RevokeSecurityGroupEgressInput) SetSourceSecurityGroupOwnerId

func (s *RevokeSecurityGroupEgressInput) SetSourceSecurityGroupOwnerId(v string) *RevokeSecurityGroupEgressInput

SetSourceSecurityGroupOwnerId sets the SourceSecurityGroupOwnerId field's value.

func (*RevokeSecurityGroupEgressInput) SetToPort

func (s *RevokeSecurityGroupEgressInput) SetToPort(v int64) *RevokeSecurityGroupEgressInput

SetToPort sets the ToPort field's value.

func (RevokeSecurityGroupEgressInput) String

func (s RevokeSecurityGroupEgressInput) String() string

String returns the string representation

func (*RevokeSecurityGroupEgressInput) Validate

func (s *RevokeSecurityGroupEgressInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type RevokeSecurityGroupEgressOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RevokeSecurityGroupEgressOutput

type RevokeSecurityGroupEgressOutput struct {
    // contains filtered or unexported fields
}

func (RevokeSecurityGroupEgressOutput) GoString

func (s RevokeSecurityGroupEgressOutput) GoString() string

GoString returns the string representation

func (RevokeSecurityGroupEgressOutput) String

func (s RevokeSecurityGroupEgressOutput) String() string

String returns the string representation

type RevokeSecurityGroupIngressInput

Contains the parameters for RevokeSecurityGroupIngress. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RevokeSecurityGroupIngressRequest

type RevokeSecurityGroupIngressInput struct {

    // The CIDR IP address range. You can't specify this parameter when specifying
    // a source security group.
    CidrIp *string `type:"string"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // The start of port range for the TCP and UDP protocols, or an ICMP type number.
    // For the ICMP type number, use -1 to specify all ICMP types.
    FromPort *int64 `type:"integer"`

    // The ID of the security group. Required for a security group in a nondefault
    // VPC.
    GroupId *string `type:"string"`

    // [EC2-Classic, default VPC] The name of the security group.
    GroupName *string `type:"string"`

    // A set of IP permissions. You can't specify a source security group and a
    // CIDR IP address range.
    IpPermissions []*IpPermission `locationNameList:"item" type:"list"`

    // The IP protocol name (tcp, udp, icmp) or number (see Protocol Numbers (http://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml)).
    // Use -1 to specify all.
    IpProtocol *string `type:"string"`

    // [EC2-Classic, default VPC] The name of the source security group. You can't
    // specify this parameter in combination with the following parameters: the
    // CIDR IP address range, the start of the port range, the IP protocol, and
    // the end of the port range. For EC2-VPC, the source security group must be
    // in the same VPC. To revoke a specific rule for an IP protocol and port range,
    // use a set of IP permissions instead.
    SourceSecurityGroupName *string `type:"string"`

    // [EC2-Classic] The AWS account ID of the source security group, if the source
    // security group is in a different account. You can't specify this parameter
    // in combination with the following parameters: the CIDR IP address range,
    // the IP protocol, the start of the port range, and the end of the port range.
    // To revoke a specific rule for an IP protocol and port range, use a set of
    // IP permissions instead.
    SourceSecurityGroupOwnerId *string `type:"string"`

    // The end of port range for the TCP and UDP protocols, or an ICMP code number.
    // For the ICMP code number, use -1 to specify all ICMP codes for the ICMP type.
    ToPort *int64 `type:"integer"`
    // contains filtered or unexported fields
}

func (RevokeSecurityGroupIngressInput) GoString

func (s RevokeSecurityGroupIngressInput) GoString() string

GoString returns the string representation

func (*RevokeSecurityGroupIngressInput) SetCidrIp

func (s *RevokeSecurityGroupIngressInput) SetCidrIp(v string) *RevokeSecurityGroupIngressInput

SetCidrIp sets the CidrIp field's value.

func (*RevokeSecurityGroupIngressInput) SetDryRun

func (s *RevokeSecurityGroupIngressInput) SetDryRun(v bool) *RevokeSecurityGroupIngressInput

SetDryRun sets the DryRun field's value.

func (*RevokeSecurityGroupIngressInput) SetFromPort

func (s *RevokeSecurityGroupIngressInput) SetFromPort(v int64) *RevokeSecurityGroupIngressInput

SetFromPort sets the FromPort field's value.

func (*RevokeSecurityGroupIngressInput) SetGroupId

func (s *RevokeSecurityGroupIngressInput) SetGroupId(v string) *RevokeSecurityGroupIngressInput

SetGroupId sets the GroupId field's value.

func (*RevokeSecurityGroupIngressInput) SetGroupName

func (s *RevokeSecurityGroupIngressInput) SetGroupName(v string) *RevokeSecurityGroupIngressInput

SetGroupName sets the GroupName field's value.

func (*RevokeSecurityGroupIngressInput) SetIpPermissions

func (s *RevokeSecurityGroupIngressInput) SetIpPermissions(v []*IpPermission) *RevokeSecurityGroupIngressInput

SetIpPermissions sets the IpPermissions field's value.

func (*RevokeSecurityGroupIngressInput) SetIpProtocol

func (s *RevokeSecurityGroupIngressInput) SetIpProtocol(v string) *RevokeSecurityGroupIngressInput

SetIpProtocol sets the IpProtocol field's value.

func (*RevokeSecurityGroupIngressInput) SetSourceSecurityGroupName

func (s *RevokeSecurityGroupIngressInput) SetSourceSecurityGroupName(v string) *RevokeSecurityGroupIngressInput

SetSourceSecurityGroupName sets the SourceSecurityGroupName field's value.

func (*RevokeSecurityGroupIngressInput) SetSourceSecurityGroupOwnerId

func (s *RevokeSecurityGroupIngressInput) SetSourceSecurityGroupOwnerId(v string) *RevokeSecurityGroupIngressInput

SetSourceSecurityGroupOwnerId sets the SourceSecurityGroupOwnerId field's value.

func (*RevokeSecurityGroupIngressInput) SetToPort

func (s *RevokeSecurityGroupIngressInput) SetToPort(v int64) *RevokeSecurityGroupIngressInput

SetToPort sets the ToPort field's value.

func (RevokeSecurityGroupIngressInput) String

func (s RevokeSecurityGroupIngressInput) String() string

String returns the string representation

type RevokeSecurityGroupIngressOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RevokeSecurityGroupIngressOutput

type RevokeSecurityGroupIngressOutput struct {
    // contains filtered or unexported fields
}

func (RevokeSecurityGroupIngressOutput) GoString

func (s RevokeSecurityGroupIngressOutput) GoString() string

GoString returns the string representation

func (RevokeSecurityGroupIngressOutput) String

func (s RevokeSecurityGroupIngressOutput) String() string

String returns the string representation

type Route

Describes a route in a route table. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Route

type Route struct {

    // The IPv4 CIDR block used for the destination match.
    DestinationCidrBlock *string `locationName:"destinationCidrBlock" type:"string"`

    // The IPv6 CIDR block used for the destination match.
    DestinationIpv6CidrBlock *string `locationName:"destinationIpv6CidrBlock" type:"string"`

    // The prefix of the AWS service.
    DestinationPrefixListId *string `locationName:"destinationPrefixListId" type:"string"`

    // The ID of the egress-only Internet gateway.
    EgressOnlyInternetGatewayId *string `locationName:"egressOnlyInternetGatewayId" type:"string"`

    // The ID of a gateway attached to your VPC.
    GatewayId *string `locationName:"gatewayId" type:"string"`

    // The ID of a NAT instance in your VPC.
    InstanceId *string `locationName:"instanceId" type:"string"`

    // The AWS account ID of the owner of the instance.
    InstanceOwnerId *string `locationName:"instanceOwnerId" type:"string"`

    // The ID of a NAT gateway.
    NatGatewayId *string `locationName:"natGatewayId" type:"string"`

    // The ID of the network interface.
    NetworkInterfaceId *string `locationName:"networkInterfaceId" type:"string"`

    // Describes how the route was created.
    //
    //    * CreateRouteTable - The route was automatically created when the route
    //    table was created.
    //
    //    * CreateRoute - The route was manually added to the route table.
    //
    //    * EnableVgwRoutePropagation - The route was propagated by route propagation.
    Origin *string `locationName:"origin" type:"string" enum:"RouteOrigin"`

    // The state of the route. The blackhole state indicates that the route's target
    // isn't available (for example, the specified gateway isn't attached to the
    // VPC, or the specified NAT instance has been terminated).
    State *string `locationName:"state" type:"string" enum:"RouteState"`

    // The ID of the VPC peering connection.
    VpcPeeringConnectionId *string `locationName:"vpcPeeringConnectionId" type:"string"`
    // contains filtered or unexported fields
}

func (Route) GoString

func (s Route) GoString() string

GoString returns the string representation

func (*Route) SetDestinationCidrBlock

func (s *Route) SetDestinationCidrBlock(v string) *Route

SetDestinationCidrBlock sets the DestinationCidrBlock field's value.

func (*Route) SetDestinationIpv6CidrBlock

func (s *Route) SetDestinationIpv6CidrBlock(v string) *Route

SetDestinationIpv6CidrBlock sets the DestinationIpv6CidrBlock field's value.

func (*Route) SetDestinationPrefixListId

func (s *Route) SetDestinationPrefixListId(v string) *Route

SetDestinationPrefixListId sets the DestinationPrefixListId field's value.

func (*Route) SetEgressOnlyInternetGatewayId

func (s *Route) SetEgressOnlyInternetGatewayId(v string) *Route

SetEgressOnlyInternetGatewayId sets the EgressOnlyInternetGatewayId field's value.

func (*Route) SetGatewayId

func (s *Route) SetGatewayId(v string) *Route

SetGatewayId sets the GatewayId field's value.

func (*Route) SetInstanceId

func (s *Route) SetInstanceId(v string) *Route

SetInstanceId sets the InstanceId field's value.

func (*Route) SetInstanceOwnerId

func (s *Route) SetInstanceOwnerId(v string) *Route

SetInstanceOwnerId sets the InstanceOwnerId field's value.

func (*Route) SetNatGatewayId

func (s *Route) SetNatGatewayId(v string) *Route

SetNatGatewayId sets the NatGatewayId field's value.

func (*Route) SetNetworkInterfaceId

func (s *Route) SetNetworkInterfaceId(v string) *Route

SetNetworkInterfaceId sets the NetworkInterfaceId field's value.

func (*Route) SetOrigin

func (s *Route) SetOrigin(v string) *Route

SetOrigin sets the Origin field's value.

func (*Route) SetState

func (s *Route) SetState(v string) *Route

SetState sets the State field's value.

func (*Route) SetVpcPeeringConnectionId

func (s *Route) SetVpcPeeringConnectionId(v string) *Route

SetVpcPeeringConnectionId sets the VpcPeeringConnectionId field's value.

func (Route) String

func (s Route) String() string

String returns the string representation

type RouteTable

Describes a route table. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RouteTable

type RouteTable struct {

    // The associations between the route table and one or more subnets.
    Associations []*RouteTableAssociation `locationName:"associationSet" locationNameList:"item" type:"list"`

    // Any virtual private gateway (VGW) propagating routes.
    PropagatingVgws []*PropagatingVgw `locationName:"propagatingVgwSet" locationNameList:"item" type:"list"`

    // The ID of the route table.
    RouteTableId *string `locationName:"routeTableId" type:"string"`

    // The routes in the route table.
    Routes []*Route `locationName:"routeSet" locationNameList:"item" type:"list"`

    // Any tags assigned to the route table.
    Tags []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"`

    // The ID of the VPC.
    VpcId *string `locationName:"vpcId" type:"string"`
    // contains filtered or unexported fields
}

func (RouteTable) GoString

func (s RouteTable) GoString() string

GoString returns the string representation

func (*RouteTable) SetAssociations

func (s *RouteTable) SetAssociations(v []*RouteTableAssociation) *RouteTable

SetAssociations sets the Associations field's value.

func (*RouteTable) SetPropagatingVgws

func (s *RouteTable) SetPropagatingVgws(v []*PropagatingVgw) *RouteTable

SetPropagatingVgws sets the PropagatingVgws field's value.

func (*RouteTable) SetRouteTableId

func (s *RouteTable) SetRouteTableId(v string) *RouteTable

SetRouteTableId sets the RouteTableId field's value.

func (*RouteTable) SetRoutes

func (s *RouteTable) SetRoutes(v []*Route) *RouteTable

SetRoutes sets the Routes field's value.

func (*RouteTable) SetTags

func (s *RouteTable) SetTags(v []*Tag) *RouteTable

SetTags sets the Tags field's value.

func (*RouteTable) SetVpcId

func (s *RouteTable) SetVpcId(v string) *RouteTable

SetVpcId sets the VpcId field's value.

func (RouteTable) String

func (s RouteTable) String() string

String returns the string representation

type RouteTableAssociation

Describes an association between a route table and a subnet. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RouteTableAssociation

type RouteTableAssociation struct {

    // Indicates whether this is the main route table.
    Main *bool `locationName:"main" type:"boolean"`

    // The ID of the association between a route table and a subnet.
    RouteTableAssociationId *string `locationName:"routeTableAssociationId" type:"string"`

    // The ID of the route table.
    RouteTableId *string `locationName:"routeTableId" type:"string"`

    // The ID of the subnet. A subnet ID is not returned for an implicit association.
    SubnetId *string `locationName:"subnetId" type:"string"`
    // contains filtered or unexported fields
}

func (RouteTableAssociation) GoString

func (s RouteTableAssociation) GoString() string

GoString returns the string representation

func (*RouteTableAssociation) SetMain

func (s *RouteTableAssociation) SetMain(v bool) *RouteTableAssociation

SetMain sets the Main field's value.

func (*RouteTableAssociation) SetRouteTableAssociationId

func (s *RouteTableAssociation) SetRouteTableAssociationId(v string) *RouteTableAssociation

SetRouteTableAssociationId sets the RouteTableAssociationId field's value.

func (*RouteTableAssociation) SetRouteTableId

func (s *RouteTableAssociation) SetRouteTableId(v string) *RouteTableAssociation

SetRouteTableId sets the RouteTableId field's value.

func (*RouteTableAssociation) SetSubnetId

func (s *RouteTableAssociation) SetSubnetId(v string) *RouteTableAssociation

SetSubnetId sets the SubnetId field's value.

func (RouteTableAssociation) String

func (s RouteTableAssociation) String() string

String returns the string representation

type RunInstancesInput

Contains the parameters for RunInstances. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RunInstancesRequest

type RunInstancesInput struct {

    // Reserved.
    AdditionalInfo *string `locationName:"additionalInfo" type:"string"`

    // The block device mapping.
    //
    // Supplying both a snapshot ID and an encryption value as arguments for block-device
    // mapping results in an error. This is because only blank volumes can be encrypted
    // on start, and these are not created from a snapshot. If a snapshot is the
    // basis for the volume, it contains data by definition and its encryption status
    // cannot be changed using this action.
    BlockDeviceMappings []*BlockDeviceMapping `locationName:"BlockDeviceMapping" locationNameList:"BlockDeviceMapping" type:"list"`

    // Unique, case-sensitive identifier you provide to ensure the idempotency of
    // the request. For more information, see Ensuring Idempotency (http://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html).
    //
    // Constraints: Maximum 64 ASCII characters
    ClientToken *string `locationName:"clientToken" type:"string"`

    // If you set this parameter to true, you can't terminate the instance using
    // the Amazon EC2 console, CLI, or API; otherwise, you can. To change this attribute
    // to false after launch, use ModifyInstanceAttribute. Alternatively, if you
    // set InstanceInitiatedShutdownBehavior to terminate, you can terminate the
    // instance by running the shutdown command from the instance.
    //
    // Default: false
    DisableApiTermination *bool `locationName:"disableApiTermination" type:"boolean"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // Indicates whether the instance is optimized for EBS I/O. This optimization
    // provides dedicated throughput to Amazon EBS and an optimized configuration
    // stack to provide optimal EBS I/O performance. This optimization isn't available
    // with all instance types. Additional usage charges apply when using an EBS-optimized
    // instance.
    //
    // Default: false
    EbsOptimized *bool `locationName:"ebsOptimized" type:"boolean"`

    // The IAM instance profile.
    IamInstanceProfile *IamInstanceProfileSpecification `locationName:"iamInstanceProfile" type:"structure"`

    // The ID of the AMI, which you can get by calling DescribeImages.
    //
    // ImageId is a required field
    ImageId *string `type:"string" required:"true"`

    // Indicates whether an instance stops or terminates when you initiate shutdown
    // from the instance (using the operating system command for system shutdown).
    //
    // Default: stop
    InstanceInitiatedShutdownBehavior *string `locationName:"instanceInitiatedShutdownBehavior" type:"string" enum:"ShutdownBehavior"`

    // The instance type. For more information, see Instance Types (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html)
    // in the Amazon Elastic Compute Cloud User Guide.
    //
    // Default: m1.small
    InstanceType *string `type:"string" enum:"InstanceType"`

    // [EC2-VPC] A number of IPv6 addresses to associate with the primary network
    // interface. Amazon EC2 chooses the IPv6 addresses from the range of your subnet.
    // You cannot specify this option and the option to assign specific IPv6 addresses
    // in the same request. You can specify this option if you've specified a minimum
    // number of instances to launch.
    Ipv6AddressCount *int64 `type:"integer"`

    // [EC2-VPC] Specify one or more IPv6 addresses from the range of the subnet
    // to associate with the primary network interface. You cannot specify this
    // option and the option to assign a number of IPv6 addresses in the same request.
    // You cannot specify this option if you've specified a minimum number of instances
    // to launch.
    Ipv6Addresses []*InstanceIpv6Address `locationName:"Ipv6Address" locationNameList:"item" type:"list"`

    // The ID of the kernel.
    //
    // We recommend that you use PV-GRUB instead of kernels and RAM disks. For more
    // information, see  PV-GRUB (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/UserProvidedkernels.html)
    // in the Amazon Elastic Compute Cloud User Guide.
    KernelId *string `type:"string"`

    // The name of the key pair. You can create a key pair using CreateKeyPair or
    // ImportKeyPair.
    //
    // If you do not specify a key pair, you can't connect to the instance unless
    // you choose an AMI that is configured to allow users another way to log in.
    KeyName *string `type:"string"`

    // The maximum number of instances to launch. If you specify more instances
    // than Amazon EC2 can launch in the target Availability Zone, Amazon EC2 launches
    // the largest possible number of instances above MinCount.
    //
    // Constraints: Between 1 and the maximum number you're allowed for the specified
    // instance type. For more information about the default limits, and how to
    // request an increase, see How many instances can I run in Amazon EC2 (http://aws.amazon.com/ec2/faqs/#How_many_instances_can_I_run_in_Amazon_EC2)
    // in the Amazon EC2 FAQ.
    //
    // MaxCount is a required field
    MaxCount *int64 `type:"integer" required:"true"`

    // The minimum number of instances to launch. If you specify a minimum that
    // is more instances than Amazon EC2 can launch in the target Availability Zone,
    // Amazon EC2 launches no instances.
    //
    // Constraints: Between 1 and the maximum number you're allowed for the specified
    // instance type. For more information about the default limits, and how to
    // request an increase, see How many instances can I run in Amazon EC2 (http://aws.amazon.com/ec2/faqs/#How_many_instances_can_I_run_in_Amazon_EC2)
    // in the Amazon EC2 General FAQ.
    //
    // MinCount is a required field
    MinCount *int64 `type:"integer" required:"true"`

    // The monitoring for the instance.
    Monitoring *RunInstancesMonitoringEnabled `type:"structure"`

    // One or more network interfaces.
    NetworkInterfaces []*InstanceNetworkInterfaceSpecification `locationName:"networkInterface" locationNameList:"item" type:"list"`

    // The placement for the instance.
    Placement *Placement `type:"structure"`

    // [EC2-VPC] The primary IPv4 address. You must specify a value from the IPv4
    // address range of the subnet.
    //
    // Only one private IP address can be designated as primary. You can't specify
    // this option if you've specified the option to designate a private IP address
    // as the primary IP address in a network interface specification. You cannot
    // specify this option if you're launching more than one instance in the request.
    PrivateIpAddress *string `locationName:"privateIpAddress" type:"string"`

    // The ID of the RAM disk.
    //
    // We recommend that you use PV-GRUB instead of kernels and RAM disks. For more
    // information, see  PV-GRUB (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/UserProvidedkernels.html)
    // in the Amazon Elastic Compute Cloud User Guide.
    RamdiskId *string `type:"string"`

    // One or more security group IDs. You can create a security group using CreateSecurityGroup.
    //
    // Default: Amazon EC2 uses the default security group.
    SecurityGroupIds []*string `locationName:"SecurityGroupId" locationNameList:"SecurityGroupId" type:"list"`

    // [EC2-Classic, default VPC] One or more security group names. For a nondefault
    // VPC, you must use security group IDs instead.
    //
    // Default: Amazon EC2 uses the default security group.
    SecurityGroups []*string `locationName:"SecurityGroup" locationNameList:"SecurityGroup" type:"list"`

    // [EC2-VPC] The ID of the subnet to launch the instance into.
    SubnetId *string `type:"string"`

    // The tags to apply to the resources during launch. You can tag instances and
    // volumes. The specified tags are applied to all instances or volumes that
    // are created during launch.
    TagSpecifications []*TagSpecification `locationName:"TagSpecification" locationNameList:"item" type:"list"`

    // The user data to make available to the instance. For more information, see
    // Running Commands on Your Linux Instance at Launch (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/user-data.html)
    // (Linux) and Adding User Data (http://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/ec2-instance-metadata.html#instancedata-add-user-data)
    // (Windows). If you are using an AWS SDK or command line tool, Base64-encoding
    // is performed for you, and you can load the text from a file. Otherwise, you
    // must provide Base64-encoded text.
    UserData *string `type:"string"`
    // contains filtered or unexported fields
}

func (RunInstancesInput) GoString

func (s RunInstancesInput) GoString() string

GoString returns the string representation

func (*RunInstancesInput) SetAdditionalInfo

func (s *RunInstancesInput) SetAdditionalInfo(v string) *RunInstancesInput

SetAdditionalInfo sets the AdditionalInfo field's value.

func (*RunInstancesInput) SetBlockDeviceMappings

func (s *RunInstancesInput) SetBlockDeviceMappings(v []*BlockDeviceMapping) *RunInstancesInput

SetBlockDeviceMappings sets the BlockDeviceMappings field's value.

func (*RunInstancesInput) SetClientToken

func (s *RunInstancesInput) SetClientToken(v string) *RunInstancesInput

SetClientToken sets the ClientToken field's value.

func (*RunInstancesInput) SetDisableApiTermination

func (s *RunInstancesInput) SetDisableApiTermination(v bool) *RunInstancesInput

SetDisableApiTermination sets the DisableApiTermination field's value.

func (*RunInstancesInput) SetDryRun

func (s *RunInstancesInput) SetDryRun(v bool) *RunInstancesInput

SetDryRun sets the DryRun field's value.

func (*RunInstancesInput) SetEbsOptimized

func (s *RunInstancesInput) SetEbsOptimized(v bool) *RunInstancesInput

SetEbsOptimized sets the EbsOptimized field's value.

func (*RunInstancesInput) SetIamInstanceProfile

func (s *RunInstancesInput) SetIamInstanceProfile(v *IamInstanceProfileSpecification) *RunInstancesInput

SetIamInstanceProfile sets the IamInstanceProfile field's value.

func (*RunInstancesInput) SetImageId

func (s *RunInstancesInput) SetImageId(v string) *RunInstancesInput

SetImageId sets the ImageId field's value.

func (*RunInstancesInput) SetInstanceInitiatedShutdownBehavior

func (s *RunInstancesInput) SetInstanceInitiatedShutdownBehavior(v string) *RunInstancesInput

SetInstanceInitiatedShutdownBehavior sets the InstanceInitiatedShutdownBehavior field's value.

func (*RunInstancesInput) SetInstanceType

func (s *RunInstancesInput) SetInstanceType(v string) *RunInstancesInput

SetInstanceType sets the InstanceType field's value.

func (*RunInstancesInput) SetIpv6AddressCount

func (s *RunInstancesInput) SetIpv6AddressCount(v int64) *RunInstancesInput

SetIpv6AddressCount sets the Ipv6AddressCount field's value.

func (*RunInstancesInput) SetIpv6Addresses

func (s *RunInstancesInput) SetIpv6Addresses(v []*InstanceIpv6Address) *RunInstancesInput

SetIpv6Addresses sets the Ipv6Addresses field's value.

func (*RunInstancesInput) SetKernelId

func (s *RunInstancesInput) SetKernelId(v string) *RunInstancesInput

SetKernelId sets the KernelId field's value.

func (*RunInstancesInput) SetKeyName

func (s *RunInstancesInput) SetKeyName(v string) *RunInstancesInput

SetKeyName sets the KeyName field's value.

func (*RunInstancesInput) SetMaxCount

func (s *RunInstancesInput) SetMaxCount(v int64) *RunInstancesInput

SetMaxCount sets the MaxCount field's value.

func (*RunInstancesInput) SetMinCount

func (s *RunInstancesInput) SetMinCount(v int64) *RunInstancesInput

SetMinCount sets the MinCount field's value.

func (*RunInstancesInput) SetMonitoring

func (s *RunInstancesInput) SetMonitoring(v *RunInstancesMonitoringEnabled) *RunInstancesInput

SetMonitoring sets the Monitoring field's value.

func (*RunInstancesInput) SetNetworkInterfaces

func (s *RunInstancesInput) SetNetworkInterfaces(v []*InstanceNetworkInterfaceSpecification) *RunInstancesInput

SetNetworkInterfaces sets the NetworkInterfaces field's value.

func (*RunInstancesInput) SetPlacement

func (s *RunInstancesInput) SetPlacement(v *Placement) *RunInstancesInput

SetPlacement sets the Placement field's value.

func (*RunInstancesInput) SetPrivateIpAddress

func (s *RunInstancesInput) SetPrivateIpAddress(v string) *RunInstancesInput

SetPrivateIpAddress sets the PrivateIpAddress field's value.

func (*RunInstancesInput) SetRamdiskId

func (s *RunInstancesInput) SetRamdiskId(v string) *RunInstancesInput

SetRamdiskId sets the RamdiskId field's value.

func (*RunInstancesInput) SetSecurityGroupIds

func (s *RunInstancesInput) SetSecurityGroupIds(v []*string) *RunInstancesInput

SetSecurityGroupIds sets the SecurityGroupIds field's value.

func (*RunInstancesInput) SetSecurityGroups

func (s *RunInstancesInput) SetSecurityGroups(v []*string) *RunInstancesInput

SetSecurityGroups sets the SecurityGroups field's value.

func (*RunInstancesInput) SetSubnetId

func (s *RunInstancesInput) SetSubnetId(v string) *RunInstancesInput

SetSubnetId sets the SubnetId field's value.

func (*RunInstancesInput) SetTagSpecifications

func (s *RunInstancesInput) SetTagSpecifications(v []*TagSpecification) *RunInstancesInput

SetTagSpecifications sets the TagSpecifications field's value.

func (*RunInstancesInput) SetUserData

func (s *RunInstancesInput) SetUserData(v string) *RunInstancesInput

SetUserData sets the UserData field's value.

func (RunInstancesInput) String

func (s RunInstancesInput) String() string

String returns the string representation

func (*RunInstancesInput) Validate

func (s *RunInstancesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type RunInstancesMonitoringEnabled

Describes the monitoring of an instance. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RunInstancesMonitoringEnabled

type RunInstancesMonitoringEnabled struct {

    // Indicates whether detailed monitoring is enabled. Otherwise, basic monitoring
    // is enabled.
    //
    // Enabled is a required field
    Enabled *bool `locationName:"enabled" type:"boolean" required:"true"`
    // contains filtered or unexported fields
}

func (RunInstancesMonitoringEnabled) GoString

func (s RunInstancesMonitoringEnabled) GoString() string

GoString returns the string representation

func (*RunInstancesMonitoringEnabled) SetEnabled

func (s *RunInstancesMonitoringEnabled) SetEnabled(v bool) *RunInstancesMonitoringEnabled

SetEnabled sets the Enabled field's value.

func (RunInstancesMonitoringEnabled) String

func (s RunInstancesMonitoringEnabled) String() string

String returns the string representation

func (*RunInstancesMonitoringEnabled) Validate

func (s *RunInstancesMonitoringEnabled) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type RunScheduledInstancesInput

Contains the parameters for RunScheduledInstances. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RunScheduledInstancesRequest

type RunScheduledInstancesInput struct {

    // Unique, case-sensitive identifier that ensures the idempotency of the request.
    // For more information, see Ensuring Idempotency (http://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html).
    ClientToken *string `type:"string" idempotencyToken:"true"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `type:"boolean"`

    // The number of instances.
    //
    // Default: 1
    InstanceCount *int64 `type:"integer"`

    // The launch specification. You must match the instance type, Availability
    // Zone, network, and platform of the schedule that you purchased.
    //
    // LaunchSpecification is a required field
    LaunchSpecification *ScheduledInstancesLaunchSpecification `type:"structure" required:"true"`

    // The Scheduled Instance ID.
    //
    // ScheduledInstanceId is a required field
    ScheduledInstanceId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (RunScheduledInstancesInput) GoString

func (s RunScheduledInstancesInput) GoString() string

GoString returns the string representation

func (*RunScheduledInstancesInput) SetClientToken

func (s *RunScheduledInstancesInput) SetClientToken(v string) *RunScheduledInstancesInput

SetClientToken sets the ClientToken field's value.

func (*RunScheduledInstancesInput) SetDryRun

func (s *RunScheduledInstancesInput) SetDryRun(v bool) *RunScheduledInstancesInput

SetDryRun sets the DryRun field's value.

func (*RunScheduledInstancesInput) SetInstanceCount

func (s *RunScheduledInstancesInput) SetInstanceCount(v int64) *RunScheduledInstancesInput

SetInstanceCount sets the InstanceCount field's value.

func (*RunScheduledInstancesInput) SetLaunchSpecification

func (s *RunScheduledInstancesInput) SetLaunchSpecification(v *ScheduledInstancesLaunchSpecification) *RunScheduledInstancesInput

SetLaunchSpecification sets the LaunchSpecification field's value.

func (*RunScheduledInstancesInput) SetScheduledInstanceId

func (s *RunScheduledInstancesInput) SetScheduledInstanceId(v string) *RunScheduledInstancesInput

SetScheduledInstanceId sets the ScheduledInstanceId field's value.

func (RunScheduledInstancesInput) String

func (s RunScheduledInstancesInput) String() string

String returns the string representation

func (*RunScheduledInstancesInput) Validate

func (s *RunScheduledInstancesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type RunScheduledInstancesOutput

Contains the output of RunScheduledInstances. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RunScheduledInstancesResult

type RunScheduledInstancesOutput struct {

    // The IDs of the newly launched instances.
    InstanceIdSet []*string `locationName:"instanceIdSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (RunScheduledInstancesOutput) GoString

func (s RunScheduledInstancesOutput) GoString() string

GoString returns the string representation

func (*RunScheduledInstancesOutput) SetInstanceIdSet

func (s *RunScheduledInstancesOutput) SetInstanceIdSet(v []*string) *RunScheduledInstancesOutput

SetInstanceIdSet sets the InstanceIdSet field's value.

func (RunScheduledInstancesOutput) String

func (s RunScheduledInstancesOutput) String() string

String returns the string representation

type S3Storage

Describes the storage parameters for S3 and S3 buckets for an instance store-backed AMI. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/S3Storage

type S3Storage struct {

    // The access key ID of the owner of the bucket. Before you specify a value
    // for your access key ID, review and follow the guidance in Best Practices
    // for Managing AWS Access Keys (http://docs.aws.amazon.com/general/latest/gr/aws-access-keys-best-practices.html).
    AWSAccessKeyId *string `type:"string"`

    // The bucket in which to store the AMI. You can specify a bucket that you already
    // own or a new bucket that Amazon EC2 creates on your behalf. If you specify
    // a bucket that belongs to someone else, Amazon EC2 returns an error.
    Bucket *string `locationName:"bucket" type:"string"`

    // The beginning of the file name of the AMI.
    Prefix *string `locationName:"prefix" type:"string"`

    // An Amazon S3 upload policy that gives Amazon EC2 permission to upload items
    // into Amazon S3 on your behalf.
    //
    // UploadPolicy is automatically base64 encoded/decoded by the SDK.
    UploadPolicy []byte `locationName:"uploadPolicy" type:"blob"`

    // The signature of the JSON document.
    UploadPolicySignature *string `locationName:"uploadPolicySignature" type:"string"`
    // contains filtered or unexported fields
}

func (S3Storage) GoString

func (s S3Storage) GoString() string

GoString returns the string representation

func (*S3Storage) SetAWSAccessKeyId

func (s *S3Storage) SetAWSAccessKeyId(v string) *S3Storage

SetAWSAccessKeyId sets the AWSAccessKeyId field's value.

func (*S3Storage) SetBucket

func (s *S3Storage) SetBucket(v string) *S3Storage

SetBucket sets the Bucket field's value.

func (*S3Storage) SetPrefix

func (s *S3Storage) SetPrefix(v string) *S3Storage

SetPrefix sets the Prefix field's value.

func (*S3Storage) SetUploadPolicy

func (s *S3Storage) SetUploadPolicy(v []byte) *S3Storage

SetUploadPolicy sets the UploadPolicy field's value.

func (*S3Storage) SetUploadPolicySignature

func (s *S3Storage) SetUploadPolicySignature(v string) *S3Storage

SetUploadPolicySignature sets the UploadPolicySignature field's value.

func (S3Storage) String

func (s S3Storage) String() string

String returns the string representation

type ScheduledInstance

Describes a Scheduled Instance. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ScheduledInstance

type ScheduledInstance struct {

    // The Availability Zone.
    AvailabilityZone *string `locationName:"availabilityZone" type:"string"`

    // The date when the Scheduled Instance was purchased.
    CreateDate *time.Time `locationName:"createDate" type:"timestamp" timestampFormat:"iso8601"`

    // The hourly price for a single instance.
    HourlyPrice *string `locationName:"hourlyPrice" type:"string"`

    // The number of instances.
    InstanceCount *int64 `locationName:"instanceCount" type:"integer"`

    // The instance type.
    InstanceType *string `locationName:"instanceType" type:"string"`

    // The network platform (EC2-Classic or EC2-VPC).
    NetworkPlatform *string `locationName:"networkPlatform" type:"string"`

    // The time for the next schedule to start.
    NextSlotStartTime *time.Time `locationName:"nextSlotStartTime" type:"timestamp" timestampFormat:"iso8601"`

    // The platform (Linux/UNIX or Windows).
    Platform *string `locationName:"platform" type:"string"`

    // The time that the previous schedule ended or will end.
    PreviousSlotEndTime *time.Time `locationName:"previousSlotEndTime" type:"timestamp" timestampFormat:"iso8601"`

    // The schedule recurrence.
    Recurrence *ScheduledInstanceRecurrence `locationName:"recurrence" type:"structure"`

    // The Scheduled Instance ID.
    ScheduledInstanceId *string `locationName:"scheduledInstanceId" type:"string"`

    // The number of hours in the schedule.
    SlotDurationInHours *int64 `locationName:"slotDurationInHours" type:"integer"`

    // The end date for the Scheduled Instance.
    TermEndDate *time.Time `locationName:"termEndDate" type:"timestamp" timestampFormat:"iso8601"`

    // The start date for the Scheduled Instance.
    TermStartDate *time.Time `locationName:"termStartDate" type:"timestamp" timestampFormat:"iso8601"`

    // The total number of hours for a single instance for the entire term.
    TotalScheduledInstanceHours *int64 `locationName:"totalScheduledInstanceHours" type:"integer"`
    // contains filtered or unexported fields
}

func (ScheduledInstance) GoString

func (s ScheduledInstance) GoString() string

GoString returns the string representation

func (*ScheduledInstance) SetAvailabilityZone

func (s *ScheduledInstance) SetAvailabilityZone(v string) *ScheduledInstance

SetAvailabilityZone sets the AvailabilityZone field's value.

func (*ScheduledInstance) SetCreateDate

func (s *ScheduledInstance) SetCreateDate(v time.Time) *ScheduledInstance

SetCreateDate sets the CreateDate field's value.

func (*ScheduledInstance) SetHourlyPrice

func (s *ScheduledInstance) SetHourlyPrice(v string) *ScheduledInstance

SetHourlyPrice sets the HourlyPrice field's value.

func (*ScheduledInstance) SetInstanceCount

func (s *ScheduledInstance) SetInstanceCount(v int64) *ScheduledInstance

SetInstanceCount sets the InstanceCount field's value.

func (*ScheduledInstance) SetInstanceType

func (s *ScheduledInstance) SetInstanceType(v string) *ScheduledInstance

SetInstanceType sets the InstanceType field's value.

func (*ScheduledInstance) SetNetworkPlatform

func (s *ScheduledInstance) SetNetworkPlatform(v string) *ScheduledInstance

SetNetworkPlatform sets the NetworkPlatform field's value.

func (*ScheduledInstance) SetNextSlotStartTime

func (s *ScheduledInstance) SetNextSlotStartTime(v time.Time) *ScheduledInstance

SetNextSlotStartTime sets the NextSlotStartTime field's value.

func (*ScheduledInstance) SetPlatform

func (s *ScheduledInstance) SetPlatform(v string) *ScheduledInstance

SetPlatform sets the Platform field's value.

func (*ScheduledInstance) SetPreviousSlotEndTime

func (s *ScheduledInstance) SetPreviousSlotEndTime(v time.Time) *ScheduledInstance

SetPreviousSlotEndTime sets the PreviousSlotEndTime field's value.

func (*ScheduledInstance) SetRecurrence

func (s *ScheduledInstance) SetRecurrence(v *ScheduledInstanceRecurrence) *ScheduledInstance

SetRecurrence sets the Recurrence field's value.

func (*ScheduledInstance) SetScheduledInstanceId

func (s *ScheduledInstance) SetScheduledInstanceId(v string) *ScheduledInstance

SetScheduledInstanceId sets the ScheduledInstanceId field's value.

func (*ScheduledInstance) SetSlotDurationInHours

func (s *ScheduledInstance) SetSlotDurationInHours(v int64) *ScheduledInstance

SetSlotDurationInHours sets the SlotDurationInHours field's value.

func (*ScheduledInstance) SetTermEndDate

func (s *ScheduledInstance) SetTermEndDate(v time.Time) *ScheduledInstance

SetTermEndDate sets the TermEndDate field's value.

func (*ScheduledInstance) SetTermStartDate

func (s *ScheduledInstance) SetTermStartDate(v time.Time) *ScheduledInstance

SetTermStartDate sets the TermStartDate field's value.

func (*ScheduledInstance) SetTotalScheduledInstanceHours

func (s *ScheduledInstance) SetTotalScheduledInstanceHours(v int64) *ScheduledInstance

SetTotalScheduledInstanceHours sets the TotalScheduledInstanceHours field's value.

func (ScheduledInstance) String

func (s ScheduledInstance) String() string

String returns the string representation

type ScheduledInstanceAvailability

Describes a schedule that is available for your Scheduled Instances. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ScheduledInstanceAvailability

type ScheduledInstanceAvailability struct {

    // The Availability Zone.
    AvailabilityZone *string `locationName:"availabilityZone" type:"string"`

    // The number of available instances.
    AvailableInstanceCount *int64 `locationName:"availableInstanceCount" type:"integer"`

    // The time period for the first schedule to start.
    FirstSlotStartTime *time.Time `locationName:"firstSlotStartTime" type:"timestamp" timestampFormat:"iso8601"`

    // The hourly price for a single instance.
    HourlyPrice *string `locationName:"hourlyPrice" type:"string"`

    // The instance type. You can specify one of the C3, C4, M4, or R3 instance
    // types.
    InstanceType *string `locationName:"instanceType" type:"string"`

    // The maximum term. The only possible value is 365 days.
    MaxTermDurationInDays *int64 `locationName:"maxTermDurationInDays" type:"integer"`

    // The minimum term. The only possible value is 365 days.
    MinTermDurationInDays *int64 `locationName:"minTermDurationInDays" type:"integer"`

    // The network platform (EC2-Classic or EC2-VPC).
    NetworkPlatform *string `locationName:"networkPlatform" type:"string"`

    // The platform (Linux/UNIX or Windows).
    Platform *string `locationName:"platform" type:"string"`

    // The purchase token. This token expires in two hours.
    PurchaseToken *string `locationName:"purchaseToken" type:"string"`

    // The schedule recurrence.
    Recurrence *ScheduledInstanceRecurrence `locationName:"recurrence" type:"structure"`

    // The number of hours in the schedule.
    SlotDurationInHours *int64 `locationName:"slotDurationInHours" type:"integer"`

    // The total number of hours for a single instance for the entire term.
    TotalScheduledInstanceHours *int64 `locationName:"totalScheduledInstanceHours" type:"integer"`
    // contains filtered or unexported fields
}

func (ScheduledInstanceAvailability) GoString

func (s ScheduledInstanceAvailability) GoString() string

GoString returns the string representation

func (*ScheduledInstanceAvailability) SetAvailabilityZone

func (s *ScheduledInstanceAvailability) SetAvailabilityZone(v string) *ScheduledInstanceAvailability

SetAvailabilityZone sets the AvailabilityZone field's value.

func (*ScheduledInstanceAvailability) SetAvailableInstanceCount

func (s *ScheduledInstanceAvailability) SetAvailableInstanceCount(v int64) *ScheduledInstanceAvailability

SetAvailableInstanceCount sets the AvailableInstanceCount field's value.

func (*ScheduledInstanceAvailability) SetFirstSlotStartTime

func (s *ScheduledInstanceAvailability) SetFirstSlotStartTime(v time.Time) *ScheduledInstanceAvailability

SetFirstSlotStartTime sets the FirstSlotStartTime field's value.

func (*ScheduledInstanceAvailability) SetHourlyPrice

func (s *ScheduledInstanceAvailability) SetHourlyPrice(v string) *ScheduledInstanceAvailability

SetHourlyPrice sets the HourlyPrice field's value.

func (*ScheduledInstanceAvailability) SetInstanceType

func (s *ScheduledInstanceAvailability) SetInstanceType(v string) *ScheduledInstanceAvailability

SetInstanceType sets the InstanceType field's value.

func (*ScheduledInstanceAvailability) SetMaxTermDurationInDays

func (s *ScheduledInstanceAvailability) SetMaxTermDurationInDays(v int64) *ScheduledInstanceAvailability

SetMaxTermDurationInDays sets the MaxTermDurationInDays field's value.

func (*ScheduledInstanceAvailability) SetMinTermDurationInDays

func (s *ScheduledInstanceAvailability) SetMinTermDurationInDays(v int64) *ScheduledInstanceAvailability

SetMinTermDurationInDays sets the MinTermDurationInDays field's value.

func (*ScheduledInstanceAvailability) SetNetworkPlatform

func (s *ScheduledInstanceAvailability) SetNetworkPlatform(v string) *ScheduledInstanceAvailability

SetNetworkPlatform sets the NetworkPlatform field's value.

func (*ScheduledInstanceAvailability) SetPlatform

func (s *ScheduledInstanceAvailability) SetPlatform(v string) *ScheduledInstanceAvailability

SetPlatform sets the Platform field's value.

func (*ScheduledInstanceAvailability) SetPurchaseToken

func (s *ScheduledInstanceAvailability) SetPurchaseToken(v string) *ScheduledInstanceAvailability

SetPurchaseToken sets the PurchaseToken field's value.

func (*ScheduledInstanceAvailability) SetRecurrence

func (s *ScheduledInstanceAvailability) SetRecurrence(v *ScheduledInstanceRecurrence) *ScheduledInstanceAvailability

SetRecurrence sets the Recurrence field's value.

func (*ScheduledInstanceAvailability) SetSlotDurationInHours

func (s *ScheduledInstanceAvailability) SetSlotDurationInHours(v int64) *ScheduledInstanceAvailability

SetSlotDurationInHours sets the SlotDurationInHours field's value.

func (*ScheduledInstanceAvailability) SetTotalScheduledInstanceHours

func (s *ScheduledInstanceAvailability) SetTotalScheduledInstanceHours(v int64) *ScheduledInstanceAvailability

SetTotalScheduledInstanceHours sets the TotalScheduledInstanceHours field's value.

func (ScheduledInstanceAvailability) String

func (s ScheduledInstanceAvailability) String() string

String returns the string representation

type ScheduledInstanceRecurrence

Describes the recurring schedule for a Scheduled Instance. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ScheduledInstanceRecurrence

type ScheduledInstanceRecurrence struct {

    // The frequency (Daily, Weekly, or Monthly).
    Frequency *string `locationName:"frequency" type:"string"`

    // The interval quantity. The interval unit depends on the value of frequency.
    // For example, every 2 weeks or every 2 months.
    Interval *int64 `locationName:"interval" type:"integer"`

    // The days. For a monthly schedule, this is one or more days of the month (1-31).
    // For a weekly schedule, this is one or more days of the week (1-7, where 1
    // is Sunday).
    OccurrenceDaySet []*int64 `locationName:"occurrenceDaySet" locationNameList:"item" type:"list"`

    // Indicates whether the occurrence is relative to the end of the specified
    // week or month.
    OccurrenceRelativeToEnd *bool `locationName:"occurrenceRelativeToEnd" type:"boolean"`

    // The unit for occurrenceDaySet (DayOfWeek or DayOfMonth).
    OccurrenceUnit *string `locationName:"occurrenceUnit" type:"string"`
    // contains filtered or unexported fields
}

func (ScheduledInstanceRecurrence) GoString

func (s ScheduledInstanceRecurrence) GoString() string

GoString returns the string representation

func (*ScheduledInstanceRecurrence) SetFrequency

func (s *ScheduledInstanceRecurrence) SetFrequency(v string) *ScheduledInstanceRecurrence

SetFrequency sets the Frequency field's value.

func (*ScheduledInstanceRecurrence) SetInterval

func (s *ScheduledInstanceRecurrence) SetInterval(v int64) *ScheduledInstanceRecurrence

SetInterval sets the Interval field's value.

func (*ScheduledInstanceRecurrence) SetOccurrenceDaySet

func (s *ScheduledInstanceRecurrence) SetOccurrenceDaySet(v []*int64) *ScheduledInstanceRecurrence

SetOccurrenceDaySet sets the OccurrenceDaySet field's value.

func (*ScheduledInstanceRecurrence) SetOccurrenceRelativeToEnd

func (s *ScheduledInstanceRecurrence) SetOccurrenceRelativeToEnd(v bool) *ScheduledInstanceRecurrence

SetOccurrenceRelativeToEnd sets the OccurrenceRelativeToEnd field's value.

func (*ScheduledInstanceRecurrence) SetOccurrenceUnit

func (s *ScheduledInstanceRecurrence) SetOccurrenceUnit(v string) *ScheduledInstanceRecurrence

SetOccurrenceUnit sets the OccurrenceUnit field's value.

func (ScheduledInstanceRecurrence) String

func (s ScheduledInstanceRecurrence) String() string

String returns the string representation

type ScheduledInstanceRecurrenceRequest

Describes the recurring schedule for a Scheduled Instance. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ScheduledInstanceRecurrenceRequest

type ScheduledInstanceRecurrenceRequest struct {

    // The frequency (Daily, Weekly, or Monthly).
    Frequency *string `type:"string"`

    // The interval quantity. The interval unit depends on the value of Frequency.
    // For example, every 2 weeks or every 2 months.
    Interval *int64 `type:"integer"`

    // The days. For a monthly schedule, this is one or more days of the month (1-31).
    // For a weekly schedule, this is one or more days of the week (1-7, where 1
    // is Sunday). You can't specify this value with a daily schedule. If the occurrence
    // is relative to the end of the month, you can specify only a single day.
    OccurrenceDays []*int64 `locationName:"OccurrenceDay" locationNameList:"OccurenceDay" type:"list"`

    // Indicates whether the occurrence is relative to the end of the specified
    // week or month. You can't specify this value with a daily schedule.
    OccurrenceRelativeToEnd *bool `type:"boolean"`

    // The unit for OccurrenceDays (DayOfWeek or DayOfMonth). This value is required
    // for a monthly schedule. You can't specify DayOfWeek with a weekly schedule.
    // You can't specify this value with a daily schedule.
    OccurrenceUnit *string `type:"string"`
    // contains filtered or unexported fields
}

func (ScheduledInstanceRecurrenceRequest) GoString

func (s ScheduledInstanceRecurrenceRequest) GoString() string

GoString returns the string representation

func (*ScheduledInstanceRecurrenceRequest) SetFrequency

func (s *ScheduledInstanceRecurrenceRequest) SetFrequency(v string) *ScheduledInstanceRecurrenceRequest

SetFrequency sets the Frequency field's value.

func (*ScheduledInstanceRecurrenceRequest) SetInterval

func (s *ScheduledInstanceRecurrenceRequest) SetInterval(v int64) *ScheduledInstanceRecurrenceRequest

SetInterval sets the Interval field's value.

func (*ScheduledInstanceRecurrenceRequest) SetOccurrenceDays

func (s *ScheduledInstanceRecurrenceRequest) SetOccurrenceDays(v []*int64) *ScheduledInstanceRecurrenceRequest

SetOccurrenceDays sets the OccurrenceDays field's value.

func (*ScheduledInstanceRecurrenceRequest) SetOccurrenceRelativeToEnd

func (s *ScheduledInstanceRecurrenceRequest) SetOccurrenceRelativeToEnd(v bool) *ScheduledInstanceRecurrenceRequest

SetOccurrenceRelativeToEnd sets the OccurrenceRelativeToEnd field's value.

func (*ScheduledInstanceRecurrenceRequest) SetOccurrenceUnit

func (s *ScheduledInstanceRecurrenceRequest) SetOccurrenceUnit(v string) *ScheduledInstanceRecurrenceRequest

SetOccurrenceUnit sets the OccurrenceUnit field's value.

func (ScheduledInstanceRecurrenceRequest) String

func (s ScheduledInstanceRecurrenceRequest) String() string

String returns the string representation

type ScheduledInstancesBlockDeviceMapping

Describes a block device mapping for a Scheduled Instance. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ScheduledInstancesBlockDeviceMapping

type ScheduledInstancesBlockDeviceMapping struct {

    // The device name exposed to the instance (for example, /dev/sdh or xvdh).
    DeviceName *string `type:"string"`

    // Parameters used to set up EBS volumes automatically when the instance is
    // launched.
    Ebs *ScheduledInstancesEbs `type:"structure"`

    // Suppresses the specified device included in the block device mapping of the
    // AMI.
    NoDevice *string `type:"string"`

    // The virtual device name (ephemeralN). Instance store volumes are numbered
    // starting from 0. An instance type with two available instance store volumes
    // can specify mappings for ephemeral0 and ephemeral1.The number of available
    // instance store volumes depends on the instance type. After you connect to
    // the instance, you must mount the volume.
    //
    // Constraints: For M3 instances, you must specify instance store volumes in
    // the block device mapping for the instance. When you launch an M3 instance,
    // we ignore any instance store volumes specified in the block device mapping
    // for the AMI.
    VirtualName *string `type:"string"`
    // contains filtered or unexported fields
}

func (ScheduledInstancesBlockDeviceMapping) GoString

func (s ScheduledInstancesBlockDeviceMapping) GoString() string

GoString returns the string representation

func (*ScheduledInstancesBlockDeviceMapping) SetDeviceName

func (s *ScheduledInstancesBlockDeviceMapping) SetDeviceName(v string) *ScheduledInstancesBlockDeviceMapping

SetDeviceName sets the DeviceName field's value.

func (*ScheduledInstancesBlockDeviceMapping) SetEbs

func (s *ScheduledInstancesBlockDeviceMapping) SetEbs(v *ScheduledInstancesEbs) *ScheduledInstancesBlockDeviceMapping

SetEbs sets the Ebs field's value.

func (*ScheduledInstancesBlockDeviceMapping) SetNoDevice

func (s *ScheduledInstancesBlockDeviceMapping) SetNoDevice(v string) *ScheduledInstancesBlockDeviceMapping

SetNoDevice sets the NoDevice field's value.

func (*ScheduledInstancesBlockDeviceMapping) SetVirtualName

func (s *ScheduledInstancesBlockDeviceMapping) SetVirtualName(v string) *ScheduledInstancesBlockDeviceMapping

SetVirtualName sets the VirtualName field's value.

func (ScheduledInstancesBlockDeviceMapping) String

func (s ScheduledInstancesBlockDeviceMapping) String() string

String returns the string representation

type ScheduledInstancesEbs

Describes an EBS volume for a Scheduled Instance. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ScheduledInstancesEbs

type ScheduledInstancesEbs struct {

    // Indicates whether the volume is deleted on instance termination.
    DeleteOnTermination *bool `type:"boolean"`

    // Indicates whether the volume is encrypted. You can attached encrypted volumes
    // only to instances that support them.
    Encrypted *bool `type:"boolean"`

    // The number of I/O operations per second (IOPS) that the volume supports.
    // For io1 volumes, this represents the number of IOPS that are provisioned
    // for the volume. For gp2 volumes, this represents the baseline performance
    // of the volume and the rate at which the volume accumulates I/O credits for
    // bursting. For more information about gp2 baseline performance, I/O credits,
    // and bursting, see Amazon EBS Volume Types (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSVolumeTypes.html)
    // in the Amazon Elastic Compute Cloud User Guide.
    //
    // Constraint: Range is 100-20000 IOPS for io1 volumes and 100-10000 IOPS for
    // gp2 volumes.
    //
    // Condition: This parameter is required for requests to create io1volumes;
    // it is not used in requests to create gp2, st1, sc1, or standard volumes.
    Iops *int64 `type:"integer"`

    // The ID of the snapshot.
    SnapshotId *string `type:"string"`

    // The size of the volume, in GiB.
    //
    // Default: If you're creating the volume from a snapshot and don't specify
    // a volume size, the default is the snapshot size.
    VolumeSize *int64 `type:"integer"`

    // The volume type. gp2 for General Purpose SSD, io1 for Provisioned IOPS SSD,
    // Throughput Optimized HDD for st1, Cold HDD for sc1, or standard for Magnetic.
    //
    // Default: standard
    VolumeType *string `type:"string"`
    // contains filtered or unexported fields
}

func (ScheduledInstancesEbs) GoString

func (s ScheduledInstancesEbs) GoString() string

GoString returns the string representation

func (*ScheduledInstancesEbs) SetDeleteOnTermination

func (s *ScheduledInstancesEbs) SetDeleteOnTermination(v bool) *ScheduledInstancesEbs

SetDeleteOnTermination sets the DeleteOnTermination field's value.

func (*ScheduledInstancesEbs) SetEncrypted

func (s *ScheduledInstancesEbs) SetEncrypted(v bool) *ScheduledInstancesEbs

SetEncrypted sets the Encrypted field's value.

func (*ScheduledInstancesEbs) SetIops

func (s *ScheduledInstancesEbs) SetIops(v int64) *ScheduledInstancesEbs

SetIops sets the Iops field's value.

func (*ScheduledInstancesEbs) SetSnapshotId

func (s *ScheduledInstancesEbs) SetSnapshotId(v string) *ScheduledInstancesEbs

SetSnapshotId sets the SnapshotId field's value.

func (*ScheduledInstancesEbs) SetVolumeSize

func (s *ScheduledInstancesEbs) SetVolumeSize(v int64) *ScheduledInstancesEbs

SetVolumeSize sets the VolumeSize field's value.

func (*ScheduledInstancesEbs) SetVolumeType

func (s *ScheduledInstancesEbs) SetVolumeType(v string) *ScheduledInstancesEbs

SetVolumeType sets the VolumeType field's value.

func (ScheduledInstancesEbs) String

func (s ScheduledInstancesEbs) String() string

String returns the string representation

type ScheduledInstancesIamInstanceProfile

Describes an IAM instance profile for a Scheduled Instance. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ScheduledInstancesIamInstanceProfile

type ScheduledInstancesIamInstanceProfile struct {

    // The Amazon Resource Name (ARN).
    Arn *string `type:"string"`

    // The name.
    Name *string `type:"string"`
    // contains filtered or unexported fields
}

func (ScheduledInstancesIamInstanceProfile) GoString

func (s ScheduledInstancesIamInstanceProfile) GoString() string

GoString returns the string representation

func (*ScheduledInstancesIamInstanceProfile) SetArn

func (s *ScheduledInstancesIamInstanceProfile) SetArn(v string) *ScheduledInstancesIamInstanceProfile

SetArn sets the Arn field's value.

func (*ScheduledInstancesIamInstanceProfile) SetName

func (s *ScheduledInstancesIamInstanceProfile) SetName(v string) *ScheduledInstancesIamInstanceProfile

SetName sets the Name field's value.

func (ScheduledInstancesIamInstanceProfile) String

func (s ScheduledInstancesIamInstanceProfile) String() string

String returns the string representation

type ScheduledInstancesIpv6Address

Describes an IPv6 address. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ScheduledInstancesIpv6Address

type ScheduledInstancesIpv6Address struct {

    // The IPv6 address.
    Ipv6Address *string `type:"string"`
    // contains filtered or unexported fields
}

func (ScheduledInstancesIpv6Address) GoString

func (s ScheduledInstancesIpv6Address) GoString() string

GoString returns the string representation

func (*ScheduledInstancesIpv6Address) SetIpv6Address

func (s *ScheduledInstancesIpv6Address) SetIpv6Address(v string) *ScheduledInstancesIpv6Address

SetIpv6Address sets the Ipv6Address field's value.

func (ScheduledInstancesIpv6Address) String

func (s ScheduledInstancesIpv6Address) String() string

String returns the string representation

type ScheduledInstancesLaunchSpecification

Describes the launch specification for a Scheduled Instance.

If you are launching the Scheduled Instance in EC2-VPC, you must specify the ID of the subnet. You can specify the subnet using either SubnetId or NetworkInterface. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ScheduledInstancesLaunchSpecification

type ScheduledInstancesLaunchSpecification struct {

    // One or more block device mapping entries.
    BlockDeviceMappings []*ScheduledInstancesBlockDeviceMapping `locationName:"BlockDeviceMapping" locationNameList:"BlockDeviceMapping" type:"list"`

    // Indicates whether the instances are optimized for EBS I/O. This optimization
    // provides dedicated throughput to Amazon EBS and an optimized configuration
    // stack to provide optimal EBS I/O performance. This optimization isn't available
    // with all instance types. Additional usage charges apply when using an EBS-optimized
    // instance.
    //
    // Default: false
    EbsOptimized *bool `type:"boolean"`

    // The IAM instance profile.
    IamInstanceProfile *ScheduledInstancesIamInstanceProfile `type:"structure"`

    // The ID of the Amazon Machine Image (AMI).
    //
    // ImageId is a required field
    ImageId *string `type:"string" required:"true"`

    // The instance type.
    InstanceType *string `type:"string"`

    // The ID of the kernel.
    KernelId *string `type:"string"`

    // The name of the key pair.
    KeyName *string `type:"string"`

    // Enable or disable monitoring for the instances.
    Monitoring *ScheduledInstancesMonitoring `type:"structure"`

    // One or more network interfaces.
    NetworkInterfaces []*ScheduledInstancesNetworkInterface `locationName:"NetworkInterface" locationNameList:"NetworkInterface" type:"list"`

    // The placement information.
    Placement *ScheduledInstancesPlacement `type:"structure"`

    // The ID of the RAM disk.
    RamdiskId *string `type:"string"`

    // The IDs of one or more security groups.
    SecurityGroupIds []*string `locationName:"SecurityGroupId" locationNameList:"SecurityGroupId" type:"list"`

    // The ID of the subnet in which to launch the instances.
    SubnetId *string `type:"string"`

    // The base64-encoded MIME user data.
    UserData *string `type:"string"`
    // contains filtered or unexported fields
}

func (ScheduledInstancesLaunchSpecification) GoString

func (s ScheduledInstancesLaunchSpecification) GoString() string

GoString returns the string representation

func (*ScheduledInstancesLaunchSpecification) SetBlockDeviceMappings

func (s *ScheduledInstancesLaunchSpecification) SetBlockDeviceMappings(v []*ScheduledInstancesBlockDeviceMapping) *ScheduledInstancesLaunchSpecification

SetBlockDeviceMappings sets the BlockDeviceMappings field's value.

func (*ScheduledInstancesLaunchSpecification) SetEbsOptimized

func (s *ScheduledInstancesLaunchSpecification) SetEbsOptimized(v bool) *ScheduledInstancesLaunchSpecification

SetEbsOptimized sets the EbsOptimized field's value.

func (*ScheduledInstancesLaunchSpecification) SetIamInstanceProfile

func (s *ScheduledInstancesLaunchSpecification) SetIamInstanceProfile(v *ScheduledInstancesIamInstanceProfile) *ScheduledInstancesLaunchSpecification

SetIamInstanceProfile sets the IamInstanceProfile field's value.

func (*ScheduledInstancesLaunchSpecification) SetImageId

func (s *ScheduledInstancesLaunchSpecification) SetImageId(v string) *ScheduledInstancesLaunchSpecification

SetImageId sets the ImageId field's value.

func (*ScheduledInstancesLaunchSpecification) SetInstanceType

func (s *ScheduledInstancesLaunchSpecification) SetInstanceType(v string) *ScheduledInstancesLaunchSpecification

SetInstanceType sets the InstanceType field's value.

func (*ScheduledInstancesLaunchSpecification) SetKernelId

func (s *ScheduledInstancesLaunchSpecification) SetKernelId(v string) *ScheduledInstancesLaunchSpecification

SetKernelId sets the KernelId field's value.

func (*ScheduledInstancesLaunchSpecification) SetKeyName

func (s *ScheduledInstancesLaunchSpecification) SetKeyName(v string) *ScheduledInstancesLaunchSpecification

SetKeyName sets the KeyName field's value.

func (*ScheduledInstancesLaunchSpecification) SetMonitoring

func (s *ScheduledInstancesLaunchSpecification) SetMonitoring(v *ScheduledInstancesMonitoring) *ScheduledInstancesLaunchSpecification

SetMonitoring sets the Monitoring field's value.

func (*ScheduledInstancesLaunchSpecification) SetNetworkInterfaces

func (s *ScheduledInstancesLaunchSpecification) SetNetworkInterfaces(v []*ScheduledInstancesNetworkInterface) *ScheduledInstancesLaunchSpecification

SetNetworkInterfaces sets the NetworkInterfaces field's value.

func (*ScheduledInstancesLaunchSpecification) SetPlacement

func (s *ScheduledInstancesLaunchSpecification) SetPlacement(v *ScheduledInstancesPlacement) *ScheduledInstancesLaunchSpecification

SetPlacement sets the Placement field's value.

func (*ScheduledInstancesLaunchSpecification) SetRamdiskId

func (s *ScheduledInstancesLaunchSpecification) SetRamdiskId(v string) *ScheduledInstancesLaunchSpecification

SetRamdiskId sets the RamdiskId field's value.

func (*ScheduledInstancesLaunchSpecification) SetSecurityGroupIds

func (s *ScheduledInstancesLaunchSpecification) SetSecurityGroupIds(v []*string) *ScheduledInstancesLaunchSpecification

SetSecurityGroupIds sets the SecurityGroupIds field's value.

func (*ScheduledInstancesLaunchSpecification) SetSubnetId

func (s *ScheduledInstancesLaunchSpecification) SetSubnetId(v string) *ScheduledInstancesLaunchSpecification

SetSubnetId sets the SubnetId field's value.

func (*ScheduledInstancesLaunchSpecification) SetUserData

func (s *ScheduledInstancesLaunchSpecification) SetUserData(v string) *ScheduledInstancesLaunchSpecification

SetUserData sets the UserData field's value.

func (ScheduledInstancesLaunchSpecification) String

func (s ScheduledInstancesLaunchSpecification) String() string

String returns the string representation

func (*ScheduledInstancesLaunchSpecification) Validate

func (s *ScheduledInstancesLaunchSpecification) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ScheduledInstancesMonitoring

Describes whether monitoring is enabled for a Scheduled Instance. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ScheduledInstancesMonitoring

type ScheduledInstancesMonitoring struct {

    // Indicates whether monitoring is enabled.
    Enabled *bool `type:"boolean"`
    // contains filtered or unexported fields
}

func (ScheduledInstancesMonitoring) GoString

func (s ScheduledInstancesMonitoring) GoString() string

GoString returns the string representation

func (*ScheduledInstancesMonitoring) SetEnabled

func (s *ScheduledInstancesMonitoring) SetEnabled(v bool) *ScheduledInstancesMonitoring

SetEnabled sets the Enabled field's value.

func (ScheduledInstancesMonitoring) String

func (s ScheduledInstancesMonitoring) String() string

String returns the string representation

type ScheduledInstancesNetworkInterface

Describes a network interface for a Scheduled Instance. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ScheduledInstancesNetworkInterface

type ScheduledInstancesNetworkInterface struct {

    // Indicates whether to assign a public IPv4 address to instances launched in
    // a VPC. The public IPv4 address can only be assigned to a network interface
    // for eth0, and can only be assigned to a new network interface, not an existing
    // one. You cannot specify more than one network interface in the request. If
    // launching into a default subnet, the default value is true.
    AssociatePublicIpAddress *bool `type:"boolean"`

    // Indicates whether to delete the interface when the instance is terminated.
    DeleteOnTermination *bool `type:"boolean"`

    // The description.
    Description *string `type:"string"`

    // The index of the device for the network interface attachment.
    DeviceIndex *int64 `type:"integer"`

    // The IDs of one or more security groups.
    Groups []*string `locationName:"Group" locationNameList:"SecurityGroupId" type:"list"`

    // The number of IPv6 addresses to assign to the network interface. The IPv6
    // addresses are automatically selected from the subnet range.
    Ipv6AddressCount *int64 `type:"integer"`

    // One or more specific IPv6 addresses from the subnet range.
    Ipv6Addresses []*ScheduledInstancesIpv6Address `locationName:"Ipv6Address" locationNameList:"Ipv6Address" type:"list"`

    // The ID of the network interface.
    NetworkInterfaceId *string `type:"string"`

    // The IPv4 address of the network interface within the subnet.
    PrivateIpAddress *string `type:"string"`

    // The private IPv4 addresses.
    PrivateIpAddressConfigs []*ScheduledInstancesPrivateIpAddressConfig `locationName:"PrivateIpAddressConfig" locationNameList:"PrivateIpAddressConfigSet" type:"list"`

    // The number of secondary private IPv4 addresses.
    SecondaryPrivateIpAddressCount *int64 `type:"integer"`

    // The ID of the subnet.
    SubnetId *string `type:"string"`
    // contains filtered or unexported fields
}

func (ScheduledInstancesNetworkInterface) GoString

func (s ScheduledInstancesNetworkInterface) GoString() string

GoString returns the string representation

func (*ScheduledInstancesNetworkInterface) SetAssociatePublicIpAddress

func (s *ScheduledInstancesNetworkInterface) SetAssociatePublicIpAddress(v bool) *ScheduledInstancesNetworkInterface

SetAssociatePublicIpAddress sets the AssociatePublicIpAddress field's value.

func (*ScheduledInstancesNetworkInterface) SetDeleteOnTermination

func (s *ScheduledInstancesNetworkInterface) SetDeleteOnTermination(v bool) *ScheduledInstancesNetworkInterface

SetDeleteOnTermination sets the DeleteOnTermination field's value.

func (*ScheduledInstancesNetworkInterface) SetDescription

func (s *ScheduledInstancesNetworkInterface) SetDescription(v string) *ScheduledInstancesNetworkInterface

SetDescription sets the Description field's value.

func (*ScheduledInstancesNetworkInterface) SetDeviceIndex

func (s *ScheduledInstancesNetworkInterface) SetDeviceIndex(v int64) *ScheduledInstancesNetworkInterface

SetDeviceIndex sets the DeviceIndex field's value.

func (*ScheduledInstancesNetworkInterface) SetGroups

func (s *ScheduledInstancesNetworkInterface) SetGroups(v []*string) *ScheduledInstancesNetworkInterface

SetGroups sets the Groups field's value.

func (*ScheduledInstancesNetworkInterface) SetIpv6AddressCount

func (s *ScheduledInstancesNetworkInterface) SetIpv6AddressCount(v int64) *ScheduledInstancesNetworkInterface

SetIpv6AddressCount sets the Ipv6AddressCount field's value.

func (*ScheduledInstancesNetworkInterface) SetIpv6Addresses

func (s *ScheduledInstancesNetworkInterface) SetIpv6Addresses(v []*ScheduledInstancesIpv6Address) *ScheduledInstancesNetworkInterface

SetIpv6Addresses sets the Ipv6Addresses field's value.

func (*ScheduledInstancesNetworkInterface) SetNetworkInterfaceId

func (s *ScheduledInstancesNetworkInterface) SetNetworkInterfaceId(v string) *ScheduledInstancesNetworkInterface

SetNetworkInterfaceId sets the NetworkInterfaceId field's value.

func (*ScheduledInstancesNetworkInterface) SetPrivateIpAddress

func (s *ScheduledInstancesNetworkInterface) SetPrivateIpAddress(v string) *ScheduledInstancesNetworkInterface

SetPrivateIpAddress sets the PrivateIpAddress field's value.

func (*ScheduledInstancesNetworkInterface) SetPrivateIpAddressConfigs

func (s *ScheduledInstancesNetworkInterface) SetPrivateIpAddressConfigs(v []*ScheduledInstancesPrivateIpAddressConfig) *ScheduledInstancesNetworkInterface

SetPrivateIpAddressConfigs sets the PrivateIpAddressConfigs field's value.

func (*ScheduledInstancesNetworkInterface) SetSecondaryPrivateIpAddressCount

func (s *ScheduledInstancesNetworkInterface) SetSecondaryPrivateIpAddressCount(v int64) *ScheduledInstancesNetworkInterface

SetSecondaryPrivateIpAddressCount sets the SecondaryPrivateIpAddressCount field's value.

func (*ScheduledInstancesNetworkInterface) SetSubnetId

func (s *ScheduledInstancesNetworkInterface) SetSubnetId(v string) *ScheduledInstancesNetworkInterface

SetSubnetId sets the SubnetId field's value.

func (ScheduledInstancesNetworkInterface) String

func (s ScheduledInstancesNetworkInterface) String() string

String returns the string representation

type ScheduledInstancesPlacement

Describes the placement for a Scheduled Instance. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ScheduledInstancesPlacement

type ScheduledInstancesPlacement struct {

    // The Availability Zone.
    AvailabilityZone *string `type:"string"`

    // The name of the placement group.
    GroupName *string `type:"string"`
    // contains filtered or unexported fields
}

func (ScheduledInstancesPlacement) GoString

func (s ScheduledInstancesPlacement) GoString() string

GoString returns the string representation

func (*ScheduledInstancesPlacement) SetAvailabilityZone

func (s *ScheduledInstancesPlacement) SetAvailabilityZone(v string) *ScheduledInstancesPlacement

SetAvailabilityZone sets the AvailabilityZone field's value.

func (*ScheduledInstancesPlacement) SetGroupName

func (s *ScheduledInstancesPlacement) SetGroupName(v string) *ScheduledInstancesPlacement

SetGroupName sets the GroupName field's value.

func (ScheduledInstancesPlacement) String

func (s ScheduledInstancesPlacement) String() string

String returns the string representation

type ScheduledInstancesPrivateIpAddressConfig

Describes a private IPv4 address for a Scheduled Instance. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ScheduledInstancesPrivateIpAddressConfig

type ScheduledInstancesPrivateIpAddressConfig struct {

    // Indicates whether this is a primary IPv4 address. Otherwise, this is a secondary
    // IPv4 address.
    Primary *bool `type:"boolean"`

    // The IPv4 address.
    PrivateIpAddress *string `type:"string"`
    // contains filtered or unexported fields
}

func (ScheduledInstancesPrivateIpAddressConfig) GoString

func (s ScheduledInstancesPrivateIpAddressConfig) GoString() string

GoString returns the string representation

func (*ScheduledInstancesPrivateIpAddressConfig) SetPrimary

func (s *ScheduledInstancesPrivateIpAddressConfig) SetPrimary(v bool) *ScheduledInstancesPrivateIpAddressConfig

SetPrimary sets the Primary field's value.

func (*ScheduledInstancesPrivateIpAddressConfig) SetPrivateIpAddress

func (s *ScheduledInstancesPrivateIpAddressConfig) SetPrivateIpAddress(v string) *ScheduledInstancesPrivateIpAddressConfig

SetPrivateIpAddress sets the PrivateIpAddress field's value.

func (ScheduledInstancesPrivateIpAddressConfig) String

func (s ScheduledInstancesPrivateIpAddressConfig) String() string

String returns the string representation

type SecurityGroup

Describes a security group Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SecurityGroup

type SecurityGroup struct {

    // A description of the security group.
    Description *string `locationName:"groupDescription" type:"string"`

    // The ID of the security group.
    GroupId *string `locationName:"groupId" type:"string"`

    // The name of the security group.
    GroupName *string `locationName:"groupName" type:"string"`

    // One or more inbound rules associated with the security group.
    IpPermissions []*IpPermission `locationName:"ipPermissions" locationNameList:"item" type:"list"`

    // [EC2-VPC] One or more outbound rules associated with the security group.
    IpPermissionsEgress []*IpPermission `locationName:"ipPermissionsEgress" locationNameList:"item" type:"list"`

    // The AWS account ID of the owner of the security group.
    OwnerId *string `locationName:"ownerId" type:"string"`

    // Any tags assigned to the security group.
    Tags []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"`

    // [EC2-VPC] The ID of the VPC for the security group.
    VpcId *string `locationName:"vpcId" type:"string"`
    // contains filtered or unexported fields
}

func (SecurityGroup) GoString

func (s SecurityGroup) GoString() string

GoString returns the string representation

func (*SecurityGroup) SetDescription

func (s *SecurityGroup) SetDescription(v string) *SecurityGroup

SetDescription sets the Description field's value.

func (*SecurityGroup) SetGroupId

func (s *SecurityGroup) SetGroupId(v string) *SecurityGroup

SetGroupId sets the GroupId field's value.

func (*SecurityGroup) SetGroupName

func (s *SecurityGroup) SetGroupName(v string) *SecurityGroup

SetGroupName sets the GroupName field's value.

func (*SecurityGroup) SetIpPermissions

func (s *SecurityGroup) SetIpPermissions(v []*IpPermission) *SecurityGroup

SetIpPermissions sets the IpPermissions field's value.

func (*SecurityGroup) SetIpPermissionsEgress

func (s *SecurityGroup) SetIpPermissionsEgress(v []*IpPermission) *SecurityGroup

SetIpPermissionsEgress sets the IpPermissionsEgress field's value.

func (*SecurityGroup) SetOwnerId

func (s *SecurityGroup) SetOwnerId(v string) *SecurityGroup

SetOwnerId sets the OwnerId field's value.

func (*SecurityGroup) SetTags

func (s *SecurityGroup) SetTags(v []*Tag) *SecurityGroup

SetTags sets the Tags field's value.

func (*SecurityGroup) SetVpcId

func (s *SecurityGroup) SetVpcId(v string) *SecurityGroup

SetVpcId sets the VpcId field's value.

func (SecurityGroup) String

func (s SecurityGroup) String() string

String returns the string representation

type SecurityGroupReference

Describes a VPC with a security group that references your security group. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SecurityGroupReference

type SecurityGroupReference struct {

    // The ID of your security group.
    //
    // GroupId is a required field
    GroupId *string `locationName:"groupId" type:"string" required:"true"`

    // The ID of the VPC with the referencing security group.
    //
    // ReferencingVpcId is a required field
    ReferencingVpcId *string `locationName:"referencingVpcId" type:"string" required:"true"`

    // The ID of the VPC peering connection.
    VpcPeeringConnectionId *string `locationName:"vpcPeeringConnectionId" type:"string"`
    // contains filtered or unexported fields
}

func (SecurityGroupReference) GoString

func (s SecurityGroupReference) GoString() string

GoString returns the string representation

func (*SecurityGroupReference) SetGroupId

func (s *SecurityGroupReference) SetGroupId(v string) *SecurityGroupReference

SetGroupId sets the GroupId field's value.

func (*SecurityGroupReference) SetReferencingVpcId

func (s *SecurityGroupReference) SetReferencingVpcId(v string) *SecurityGroupReference

SetReferencingVpcId sets the ReferencingVpcId field's value.

func (*SecurityGroupReference) SetVpcPeeringConnectionId

func (s *SecurityGroupReference) SetVpcPeeringConnectionId(v string) *SecurityGroupReference

SetVpcPeeringConnectionId sets the VpcPeeringConnectionId field's value.

func (SecurityGroupReference) String

func (s SecurityGroupReference) String() string

String returns the string representation

type SlotDateTimeRangeRequest

Describes the time period for a Scheduled Instance to start its first schedule. The time period must span less than one day. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SlotDateTimeRangeRequest

type SlotDateTimeRangeRequest struct {

    // The earliest date and time, in UTC, for the Scheduled Instance to start.
    //
    // EarliestTime is a required field
    EarliestTime *time.Time `type:"timestamp" timestampFormat:"iso8601" required:"true"`

    // The latest date and time, in UTC, for the Scheduled Instance to start. This
    // value must be later than or equal to the earliest date and at most three
    // months in the future.
    //
    // LatestTime is a required field
    LatestTime *time.Time `type:"timestamp" timestampFormat:"iso8601" required:"true"`
    // contains filtered or unexported fields
}

func (SlotDateTimeRangeRequest) GoString

func (s SlotDateTimeRangeRequest) GoString() string

GoString returns the string representation

func (*SlotDateTimeRangeRequest) SetEarliestTime

func (s *SlotDateTimeRangeRequest) SetEarliestTime(v time.Time) *SlotDateTimeRangeRequest

SetEarliestTime sets the EarliestTime field's value.

func (*SlotDateTimeRangeRequest) SetLatestTime

func (s *SlotDateTimeRangeRequest) SetLatestTime(v time.Time) *SlotDateTimeRangeRequest

SetLatestTime sets the LatestTime field's value.

func (SlotDateTimeRangeRequest) String

func (s SlotDateTimeRangeRequest) String() string

String returns the string representation

func (*SlotDateTimeRangeRequest) Validate

func (s *SlotDateTimeRangeRequest) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type SlotStartTimeRangeRequest

Describes the time period for a Scheduled Instance to start its first schedule. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SlotStartTimeRangeRequest

type SlotStartTimeRangeRequest struct {

    // The earliest date and time, in UTC, for the Scheduled Instance to start.
    EarliestTime *time.Time `type:"timestamp" timestampFormat:"iso8601"`

    // The latest date and time, in UTC, for the Scheduled Instance to start.
    LatestTime *time.Time `type:"timestamp" timestampFormat:"iso8601"`
    // contains filtered or unexported fields
}

func (SlotStartTimeRangeRequest) GoString

func (s SlotStartTimeRangeRequest) GoString() string

GoString returns the string representation

func (*SlotStartTimeRangeRequest) SetEarliestTime

func (s *SlotStartTimeRangeRequest) SetEarliestTime(v time.Time) *SlotStartTimeRangeRequest

SetEarliestTime sets the EarliestTime field's value.

func (*SlotStartTimeRangeRequest) SetLatestTime

func (s *SlotStartTimeRangeRequest) SetLatestTime(v time.Time) *SlotStartTimeRangeRequest

SetLatestTime sets the LatestTime field's value.

func (SlotStartTimeRangeRequest) String

func (s SlotStartTimeRangeRequest) String() string

String returns the string representation

type Snapshot

Describes a snapshot. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Snapshot

type Snapshot struct {

    // The data encryption key identifier for the snapshot. This value is a unique
    // identifier that corresponds to the data encryption key that was used to encrypt
    // the original volume or snapshot copy. Because data encryption keys are inherited
    // by volumes created from snapshots, and vice versa, if snapshots share the
    // same data encryption key identifier, then they belong to the same volume/snapshot
    // lineage. This parameter is only returned by the DescribeSnapshots API operation.
    DataEncryptionKeyId *string `locationName:"dataEncryptionKeyId" type:"string"`

    // The description for the snapshot.
    Description *string `locationName:"description" type:"string"`

    // Indicates whether the snapshot is encrypted.
    Encrypted *bool `locationName:"encrypted" type:"boolean"`

    // The full ARN of the AWS Key Management Service (AWS KMS) customer master
    // key (CMK) that was used to protect the volume encryption key for the parent
    // volume.
    KmsKeyId *string `locationName:"kmsKeyId" type:"string"`

    // Value from an Amazon-maintained list (amazon | aws-marketplace | microsoft)
    // of snapshot owners. Not to be confused with the user-configured AWS account
    // alias, which is set from the IAM console.
    OwnerAlias *string `locationName:"ownerAlias" type:"string"`

    // The AWS account ID of the EBS snapshot owner.
    OwnerId *string `locationName:"ownerId" type:"string"`

    // The progress of the snapshot, as a percentage.
    Progress *string `locationName:"progress" type:"string"`

    // The ID of the snapshot. Each snapshot receives a unique identifier when it
    // is created.
    SnapshotId *string `locationName:"snapshotId" type:"string"`

    // The time stamp when the snapshot was initiated.
    StartTime *time.Time `locationName:"startTime" type:"timestamp" timestampFormat:"iso8601"`

    // The snapshot state.
    State *string `locationName:"status" type:"string" enum:"SnapshotState"`

    // Encrypted Amazon EBS snapshots are copied asynchronously. If a snapshot copy
    // operation fails (for example, if the proper AWS Key Management Service (AWS
    // KMS) permissions are not obtained) this field displays error state details
    // to help you diagnose why the error occurred. This parameter is only returned
    // by the DescribeSnapshots API operation.
    StateMessage *string `locationName:"statusMessage" type:"string"`

    // Any tags assigned to the snapshot.
    Tags []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"`

    // The ID of the volume that was used to create the snapshot. Snapshots created
    // by the CopySnapshot action have an arbitrary volume ID that should not be
    // used for any purpose.
    VolumeId *string `locationName:"volumeId" type:"string"`

    // The size of the volume, in GiB.
    VolumeSize *int64 `locationName:"volumeSize" type:"integer"`
    // contains filtered or unexported fields
}

func (Snapshot) GoString

func (s Snapshot) GoString() string

GoString returns the string representation

func (*Snapshot) SetDataEncryptionKeyId

func (s *Snapshot) SetDataEncryptionKeyId(v string) *Snapshot

SetDataEncryptionKeyId sets the DataEncryptionKeyId field's value.

func (*Snapshot) SetDescription

func (s *Snapshot) SetDescription(v string) *Snapshot

SetDescription sets the Description field's value.

func (*Snapshot) SetEncrypted

func (s *Snapshot) SetEncrypted(v bool) *Snapshot

SetEncrypted sets the Encrypted field's value.

func (*Snapshot) SetKmsKeyId

func (s *Snapshot) SetKmsKeyId(v string) *Snapshot

SetKmsKeyId sets the KmsKeyId field's value.

func (*Snapshot) SetOwnerAlias

func (s *Snapshot) SetOwnerAlias(v string) *Snapshot

SetOwnerAlias sets the OwnerAlias field's value.

func (*Snapshot) SetOwnerId

func (s *Snapshot) SetOwnerId(v string) *Snapshot

SetOwnerId sets the OwnerId field's value.

func (*Snapshot) SetProgress

func (s *Snapshot) SetProgress(v string) *Snapshot

SetProgress sets the Progress field's value.

func (*Snapshot) SetSnapshotId

func (s *Snapshot) SetSnapshotId(v string) *Snapshot

SetSnapshotId sets the SnapshotId field's value.

func (*Snapshot) SetStartTime

func (s *Snapshot) SetStartTime(v time.Time) *Snapshot

SetStartTime sets the StartTime field's value.

func (*Snapshot) SetState

func (s *Snapshot) SetState(v string) *Snapshot

SetState sets the State field's value.

func (*Snapshot) SetStateMessage

func (s *Snapshot) SetStateMessage(v string) *Snapshot

SetStateMessage sets the StateMessage field's value.

func (*Snapshot) SetTags

func (s *Snapshot) SetTags(v []*Tag) *Snapshot

SetTags sets the Tags field's value.

func (*Snapshot) SetVolumeId

func (s *Snapshot) SetVolumeId(v string) *Snapshot

SetVolumeId sets the VolumeId field's value.

func (*Snapshot) SetVolumeSize

func (s *Snapshot) SetVolumeSize(v int64) *Snapshot

SetVolumeSize sets the VolumeSize field's value.

func (Snapshot) String

func (s Snapshot) String() string

String returns the string representation

type SnapshotDetail

Describes the snapshot created from the imported disk. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SnapshotDetail

type SnapshotDetail struct {

    // A description for the snapshot.
    Description *string `locationName:"description" type:"string"`

    // The block device mapping for the snapshot.
    DeviceName *string `locationName:"deviceName" type:"string"`

    // The size of the disk in the snapshot, in GiB.
    DiskImageSize *float64 `locationName:"diskImageSize" type:"double"`

    // The format of the disk image from which the snapshot is created.
    Format *string `locationName:"format" type:"string"`

    // The percentage of progress for the task.
    Progress *string `locationName:"progress" type:"string"`

    // The snapshot ID of the disk being imported.
    SnapshotId *string `locationName:"snapshotId" type:"string"`

    // A brief status of the snapshot creation.
    Status *string `locationName:"status" type:"string"`

    // A detailed status message for the snapshot creation.
    StatusMessage *string `locationName:"statusMessage" type:"string"`

    // The URL used to access the disk image.
    Url *string `locationName:"url" type:"string"`

    // The S3 bucket for the disk image.
    UserBucket *UserBucketDetails `locationName:"userBucket" type:"structure"`
    // contains filtered or unexported fields
}

func (SnapshotDetail) GoString

func (s SnapshotDetail) GoString() string

GoString returns the string representation

func (*SnapshotDetail) SetDescription

func (s *SnapshotDetail) SetDescription(v string) *SnapshotDetail

SetDescription sets the Description field's value.

func (*SnapshotDetail) SetDeviceName

func (s *SnapshotDetail) SetDeviceName(v string) *SnapshotDetail

SetDeviceName sets the DeviceName field's value.

func (*SnapshotDetail) SetDiskImageSize

func (s *SnapshotDetail) SetDiskImageSize(v float64) *SnapshotDetail

SetDiskImageSize sets the DiskImageSize field's value.

func (*SnapshotDetail) SetFormat

func (s *SnapshotDetail) SetFormat(v string) *SnapshotDetail

SetFormat sets the Format field's value.

func (*SnapshotDetail) SetProgress

func (s *SnapshotDetail) SetProgress(v string) *SnapshotDetail

SetProgress sets the Progress field's value.

func (*SnapshotDetail) SetSnapshotId

func (s *SnapshotDetail) SetSnapshotId(v string) *SnapshotDetail

SetSnapshotId sets the SnapshotId field's value.

func (*SnapshotDetail) SetStatus

func (s *SnapshotDetail) SetStatus(v string) *SnapshotDetail

SetStatus sets the Status field's value.

func (*SnapshotDetail) SetStatusMessage

func (s *SnapshotDetail) SetStatusMessage(v string) *SnapshotDetail

SetStatusMessage sets the StatusMessage field's value.

func (*SnapshotDetail) SetUrl

func (s *SnapshotDetail) SetUrl(v string) *SnapshotDetail

SetUrl sets the Url field's value.

func (*SnapshotDetail) SetUserBucket

func (s *SnapshotDetail) SetUserBucket(v *UserBucketDetails) *SnapshotDetail

SetUserBucket sets the UserBucket field's value.

func (SnapshotDetail) String

func (s SnapshotDetail) String() string

String returns the string representation

type SnapshotDiskContainer

The disk container object for the import snapshot request. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SnapshotDiskContainer

type SnapshotDiskContainer struct {

    // The description of the disk image being imported.
    Description *string `type:"string"`

    // The format of the disk image being imported.
    //
    // Valid values: RAW | VHD | VMDK | OVA
    Format *string `type:"string"`

    // The URL to the Amazon S3-based disk image being imported. It can either be
    // a https URL (https://..) or an Amazon S3 URL (s3://..).
    Url *string `type:"string"`

    // The S3 bucket for the disk image.
    UserBucket *UserBucket `type:"structure"`
    // contains filtered or unexported fields
}

func (SnapshotDiskContainer) GoString

func (s SnapshotDiskContainer) GoString() string

GoString returns the string representation

func (*SnapshotDiskContainer) SetDescription

func (s *SnapshotDiskContainer) SetDescription(v string) *SnapshotDiskContainer

SetDescription sets the Description field's value.

func (*SnapshotDiskContainer) SetFormat

func (s *SnapshotDiskContainer) SetFormat(v string) *SnapshotDiskContainer

SetFormat sets the Format field's value.

func (*SnapshotDiskContainer) SetUrl

func (s *SnapshotDiskContainer) SetUrl(v string) *SnapshotDiskContainer

SetUrl sets the Url field's value.

func (*SnapshotDiskContainer) SetUserBucket

func (s *SnapshotDiskContainer) SetUserBucket(v *UserBucket) *SnapshotDiskContainer

SetUserBucket sets the UserBucket field's value.

func (SnapshotDiskContainer) String

func (s SnapshotDiskContainer) String() string

String returns the string representation

type SnapshotTaskDetail

Details about the import snapshot task. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SnapshotTaskDetail

type SnapshotTaskDetail struct {

    // The description of the snapshot.
    Description *string `locationName:"description" type:"string"`

    // The size of the disk in the snapshot, in GiB.
    DiskImageSize *float64 `locationName:"diskImageSize" type:"double"`

    // The format of the disk image from which the snapshot is created.
    Format *string `locationName:"format" type:"string"`

    // The percentage of completion for the import snapshot task.
    Progress *string `locationName:"progress" type:"string"`

    // The snapshot ID of the disk being imported.
    SnapshotId *string `locationName:"snapshotId" type:"string"`

    // A brief status for the import snapshot task.
    Status *string `locationName:"status" type:"string"`

    // A detailed status message for the import snapshot task.
    StatusMessage *string `locationName:"statusMessage" type:"string"`

    // The URL of the disk image from which the snapshot is created.
    Url *string `locationName:"url" type:"string"`

    // The S3 bucket for the disk image.
    UserBucket *UserBucketDetails `locationName:"userBucket" type:"structure"`
    // contains filtered or unexported fields
}

func (SnapshotTaskDetail) GoString

func (s SnapshotTaskDetail) GoString() string

GoString returns the string representation

func (*SnapshotTaskDetail) SetDescription

func (s *SnapshotTaskDetail) SetDescription(v string) *SnapshotTaskDetail

SetDescription sets the Description field's value.

func (*SnapshotTaskDetail) SetDiskImageSize

func (s *SnapshotTaskDetail) SetDiskImageSize(v float64) *SnapshotTaskDetail

SetDiskImageSize sets the DiskImageSize field's value.

func (*SnapshotTaskDetail) SetFormat

func (s *SnapshotTaskDetail) SetFormat(v string) *SnapshotTaskDetail

SetFormat sets the Format field's value.

func (*SnapshotTaskDetail) SetProgress

func (s *SnapshotTaskDetail) SetProgress(v string) *SnapshotTaskDetail

SetProgress sets the Progress field's value.

func (*SnapshotTaskDetail) SetSnapshotId

func (s *SnapshotTaskDetail) SetSnapshotId(v string) *SnapshotTaskDetail

SetSnapshotId sets the SnapshotId field's value.

func (*SnapshotTaskDetail) SetStatus

func (s *SnapshotTaskDetail) SetStatus(v string) *SnapshotTaskDetail

SetStatus sets the Status field's value.

func (*SnapshotTaskDetail) SetStatusMessage

func (s *SnapshotTaskDetail) SetStatusMessage(v string) *SnapshotTaskDetail

SetStatusMessage sets the StatusMessage field's value.

func (*SnapshotTaskDetail) SetUrl

func (s *SnapshotTaskDetail) SetUrl(v string) *SnapshotTaskDetail

SetUrl sets the Url field's value.

func (*SnapshotTaskDetail) SetUserBucket

func (s *SnapshotTaskDetail) SetUserBucket(v *UserBucketDetails) *SnapshotTaskDetail

SetUserBucket sets the UserBucket field's value.

func (SnapshotTaskDetail) String

func (s SnapshotTaskDetail) String() string

String returns the string representation

type SpotDatafeedSubscription

Describes the data feed for a Spot instance. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SpotDatafeedSubscription

type SpotDatafeedSubscription struct {

    // The Amazon S3 bucket where the Spot instance data feed is located.
    Bucket *string `locationName:"bucket" type:"string"`

    // The fault codes for the Spot instance request, if any.
    Fault *SpotInstanceStateFault `locationName:"fault" type:"structure"`

    // The AWS account ID of the account.
    OwnerId *string `locationName:"ownerId" type:"string"`

    // The prefix that is prepended to data feed files.
    Prefix *string `locationName:"prefix" type:"string"`

    // The state of the Spot instance data feed subscription.
    State *string `locationName:"state" type:"string" enum:"DatafeedSubscriptionState"`
    // contains filtered or unexported fields
}

func (SpotDatafeedSubscription) GoString

func (s SpotDatafeedSubscription) GoString() string

GoString returns the string representation

func (*SpotDatafeedSubscription) SetBucket

func (s *SpotDatafeedSubscription) SetBucket(v string) *SpotDatafeedSubscription

SetBucket sets the Bucket field's value.

func (*SpotDatafeedSubscription) SetFault

func (s *SpotDatafeedSubscription) SetFault(v *SpotInstanceStateFault) *SpotDatafeedSubscription

SetFault sets the Fault field's value.

func (*SpotDatafeedSubscription) SetOwnerId

func (s *SpotDatafeedSubscription) SetOwnerId(v string) *SpotDatafeedSubscription

SetOwnerId sets the OwnerId field's value.

func (*SpotDatafeedSubscription) SetPrefix

func (s *SpotDatafeedSubscription) SetPrefix(v string) *SpotDatafeedSubscription

SetPrefix sets the Prefix field's value.

func (*SpotDatafeedSubscription) SetState

func (s *SpotDatafeedSubscription) SetState(v string) *SpotDatafeedSubscription

SetState sets the State field's value.

func (SpotDatafeedSubscription) String

func (s SpotDatafeedSubscription) String() string

String returns the string representation

type SpotFleetLaunchSpecification

Describes the launch specification for one or more Spot instances. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SpotFleetLaunchSpecification

type SpotFleetLaunchSpecification struct {

    // Deprecated.
    AddressingType *string `locationName:"addressingType" type:"string"`

    // One or more block device mapping entries.
    BlockDeviceMappings []*BlockDeviceMapping `locationName:"blockDeviceMapping" locationNameList:"item" type:"list"`

    // Indicates whether the instances are optimized for EBS I/O. This optimization
    // provides dedicated throughput to Amazon EBS and an optimized configuration
    // stack to provide optimal EBS I/O performance. This optimization isn't available
    // with all instance types. Additional usage charges apply when using an EBS
    // Optimized instance.
    //
    // Default: false
    EbsOptimized *bool `locationName:"ebsOptimized" type:"boolean"`

    // The IAM instance profile.
    IamInstanceProfile *IamInstanceProfileSpecification `locationName:"iamInstanceProfile" type:"structure"`

    // The ID of the AMI.
    ImageId *string `locationName:"imageId" type:"string"`

    // The instance type. Note that T2 and HS1 instance types are not supported.
    InstanceType *string `locationName:"instanceType" type:"string" enum:"InstanceType"`

    // The ID of the kernel.
    KernelId *string `locationName:"kernelId" type:"string"`

    // The name of the key pair.
    KeyName *string `locationName:"keyName" type:"string"`

    // Enable or disable monitoring for the instances.
    Monitoring *SpotFleetMonitoring `locationName:"monitoring" type:"structure"`

    // One or more network interfaces. If you specify a network interface, you must
    // specify subnet IDs and security group IDs using the network interface.
    NetworkInterfaces []*InstanceNetworkInterfaceSpecification `locationName:"networkInterfaceSet" locationNameList:"item" type:"list"`

    // The placement information.
    Placement *SpotPlacement `locationName:"placement" type:"structure"`

    // The ID of the RAM disk.
    RamdiskId *string `locationName:"ramdiskId" type:"string"`

    // One or more security groups. When requesting instances in a VPC, you must
    // specify the IDs of the security groups. When requesting instances in EC2-Classic,
    // you can specify the names or the IDs of the security groups.
    SecurityGroups []*GroupIdentifier `locationName:"groupSet" locationNameList:"item" type:"list"`

    // The bid price per unit hour for the specified instance type. If this value
    // is not specified, the default is the Spot bid price specified for the fleet.
    // To determine the bid price per unit hour, divide the Spot bid price by the
    // value of WeightedCapacity.
    SpotPrice *string `locationName:"spotPrice" type:"string"`

    // The ID of the subnet in which to launch the instances. To specify multiple
    // subnets, separate them using commas; for example, "subnet-a61dafcf, subnet-65ea5f08".
    SubnetId *string `locationName:"subnetId" type:"string"`

    // The user data to make available to the instances. If you are using an AWS
    // SDK or command line tool, Base64-encoding is performed for you, and you can
    // load the text from a file. Otherwise, you must provide Base64-encoded text.
    UserData *string `locationName:"userData" type:"string"`

    // The number of units provided by the specified instance type. These are the
    // same units that you chose to set the target capacity in terms (instances
    // or a performance characteristic such as vCPUs, memory, or I/O).
    //
    // If the target capacity divided by this value is not a whole number, we round
    // the number of instances to the next whole number. If this value is not specified,
    // the default is 1.
    WeightedCapacity *float64 `locationName:"weightedCapacity" type:"double"`
    // contains filtered or unexported fields
}

func (SpotFleetLaunchSpecification) GoString

func (s SpotFleetLaunchSpecification) GoString() string

GoString returns the string representation

func (*SpotFleetLaunchSpecification) SetAddressingType

func (s *SpotFleetLaunchSpecification) SetAddressingType(v string) *SpotFleetLaunchSpecification

SetAddressingType sets the AddressingType field's value.

func (*SpotFleetLaunchSpecification) SetBlockDeviceMappings

func (s *SpotFleetLaunchSpecification) SetBlockDeviceMappings(v []*BlockDeviceMapping) *SpotFleetLaunchSpecification

SetBlockDeviceMappings sets the BlockDeviceMappings field's value.

func (*SpotFleetLaunchSpecification) SetEbsOptimized

func (s *SpotFleetLaunchSpecification) SetEbsOptimized(v bool) *SpotFleetLaunchSpecification

SetEbsOptimized sets the EbsOptimized field's value.

func (*SpotFleetLaunchSpecification) SetIamInstanceProfile

func (s *SpotFleetLaunchSpecification) SetIamInstanceProfile(v *IamInstanceProfileSpecification) *SpotFleetLaunchSpecification

SetIamInstanceProfile sets the IamInstanceProfile field's value.

func (*SpotFleetLaunchSpecification) SetImageId

func (s *SpotFleetLaunchSpecification) SetImageId(v string) *SpotFleetLaunchSpecification

SetImageId sets the ImageId field's value.

func (*SpotFleetLaunchSpecification) SetInstanceType

func (s *SpotFleetLaunchSpecification) SetInstanceType(v string) *SpotFleetLaunchSpecification

SetInstanceType sets the InstanceType field's value.

func (*SpotFleetLaunchSpecification) SetKernelId

func (s *SpotFleetLaunchSpecification) SetKernelId(v string) *SpotFleetLaunchSpecification

SetKernelId sets the KernelId field's value.

func (*SpotFleetLaunchSpecification) SetKeyName

func (s *SpotFleetLaunchSpecification) SetKeyName(v string) *SpotFleetLaunchSpecification

SetKeyName sets the KeyName field's value.

func (*SpotFleetLaunchSpecification) SetMonitoring

func (s *SpotFleetLaunchSpecification) SetMonitoring(v *SpotFleetMonitoring) *SpotFleetLaunchSpecification

SetMonitoring sets the Monitoring field's value.

func (*SpotFleetLaunchSpecification) SetNetworkInterfaces

func (s *SpotFleetLaunchSpecification) SetNetworkInterfaces(v []*InstanceNetworkInterfaceSpecification) *SpotFleetLaunchSpecification

SetNetworkInterfaces sets the NetworkInterfaces field's value.

func (*SpotFleetLaunchSpecification) SetPlacement

func (s *SpotFleetLaunchSpecification) SetPlacement(v *SpotPlacement) *SpotFleetLaunchSpecification

SetPlacement sets the Placement field's value.

func (*SpotFleetLaunchSpecification) SetRamdiskId

func (s *SpotFleetLaunchSpecification) SetRamdiskId(v string) *SpotFleetLaunchSpecification

SetRamdiskId sets the RamdiskId field's value.

func (*SpotFleetLaunchSpecification) SetSecurityGroups

func (s *SpotFleetLaunchSpecification) SetSecurityGroups(v []*GroupIdentifier) *SpotFleetLaunchSpecification

SetSecurityGroups sets the SecurityGroups field's value.

func (*SpotFleetLaunchSpecification) SetSpotPrice

func (s *SpotFleetLaunchSpecification) SetSpotPrice(v string) *SpotFleetLaunchSpecification

SetSpotPrice sets the SpotPrice field's value.

func (*SpotFleetLaunchSpecification) SetSubnetId

func (s *SpotFleetLaunchSpecification) SetSubnetId(v string) *SpotFleetLaunchSpecification

SetSubnetId sets the SubnetId field's value.

func (*SpotFleetLaunchSpecification) SetUserData

func (s *SpotFleetLaunchSpecification) SetUserData(v string) *SpotFleetLaunchSpecification

SetUserData sets the UserData field's value.

func (*SpotFleetLaunchSpecification) SetWeightedCapacity

func (s *SpotFleetLaunchSpecification) SetWeightedCapacity(v float64) *SpotFleetLaunchSpecification

SetWeightedCapacity sets the WeightedCapacity field's value.

func (SpotFleetLaunchSpecification) String

func (s SpotFleetLaunchSpecification) String() string

String returns the string representation

func (*SpotFleetLaunchSpecification) Validate

func (s *SpotFleetLaunchSpecification) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type SpotFleetMonitoring

Describes whether monitoring is enabled. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SpotFleetMonitoring

type SpotFleetMonitoring struct {

    // Enables monitoring for the instance.
    //
    // Default: false
    Enabled *bool `locationName:"enabled" type:"boolean"`
    // contains filtered or unexported fields
}

func (SpotFleetMonitoring) GoString

func (s SpotFleetMonitoring) GoString() string

GoString returns the string representation

func (*SpotFleetMonitoring) SetEnabled

func (s *SpotFleetMonitoring) SetEnabled(v bool) *SpotFleetMonitoring

SetEnabled sets the Enabled field's value.

func (SpotFleetMonitoring) String

func (s SpotFleetMonitoring) String() string

String returns the string representation

type SpotFleetRequestConfig

Describes a Spot fleet request. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SpotFleetRequestConfig

type SpotFleetRequestConfig struct {

    // The progress of the Spot fleet request. If there is an error, the status
    // is error. After all bids are placed, the status is pending_fulfillment. If
    // the size of the fleet is equal to or greater than its target capacity, the
    // status is fulfilled. If the size of the fleet is decreased, the status is
    // pending_termination while Spot instances are terminating.
    ActivityStatus *string `locationName:"activityStatus" type:"string" enum:"ActivityStatus"`

    // The creation date and time of the request.
    //
    // CreateTime is a required field
    CreateTime *time.Time `locationName:"createTime" type:"timestamp" timestampFormat:"iso8601" required:"true"`

    // Information about the configuration of the Spot fleet request.
    //
    // SpotFleetRequestConfig is a required field
    SpotFleetRequestConfig *SpotFleetRequestConfigData `locationName:"spotFleetRequestConfig" type:"structure" required:"true"`

    // The ID of the Spot fleet request.
    //
    // SpotFleetRequestId is a required field
    SpotFleetRequestId *string `locationName:"spotFleetRequestId" type:"string" required:"true"`

    // The state of the Spot fleet request.
    //
    // SpotFleetRequestState is a required field
    SpotFleetRequestState *string `locationName:"spotFleetRequestState" type:"string" required:"true" enum:"BatchState"`
    // contains filtered or unexported fields
}

func (SpotFleetRequestConfig) GoString

func (s SpotFleetRequestConfig) GoString() string

GoString returns the string representation

func (*SpotFleetRequestConfig) SetActivityStatus

func (s *SpotFleetRequestConfig) SetActivityStatus(v string) *SpotFleetRequestConfig

SetActivityStatus sets the ActivityStatus field's value.

func (*SpotFleetRequestConfig) SetCreateTime

func (s *SpotFleetRequestConfig) SetCreateTime(v time.Time) *SpotFleetRequestConfig

SetCreateTime sets the CreateTime field's value.

func (*SpotFleetRequestConfig) SetSpotFleetRequestConfig

func (s *SpotFleetRequestConfig) SetSpotFleetRequestConfig(v *SpotFleetRequestConfigData) *SpotFleetRequestConfig

SetSpotFleetRequestConfig sets the SpotFleetRequestConfig field's value.

func (*SpotFleetRequestConfig) SetSpotFleetRequestId

func (s *SpotFleetRequestConfig) SetSpotFleetRequestId(v string) *SpotFleetRequestConfig

SetSpotFleetRequestId sets the SpotFleetRequestId field's value.

func (*SpotFleetRequestConfig) SetSpotFleetRequestState

func (s *SpotFleetRequestConfig) SetSpotFleetRequestState(v string) *SpotFleetRequestConfig

SetSpotFleetRequestState sets the SpotFleetRequestState field's value.

func (SpotFleetRequestConfig) String

func (s SpotFleetRequestConfig) String() string

String returns the string representation

type SpotFleetRequestConfigData

Describes the configuration of a Spot fleet request. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SpotFleetRequestConfigData

type SpotFleetRequestConfigData struct {

    // Indicates how to allocate the target capacity across the Spot pools specified
    // by the Spot fleet request. The default is lowestPrice.
    AllocationStrategy *string `locationName:"allocationStrategy" type:"string" enum:"AllocationStrategy"`

    // A unique, case-sensitive identifier you provide to ensure idempotency of
    // your listings. This helps avoid duplicate listings. For more information,
    // see Ensuring Idempotency (http://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html).
    ClientToken *string `locationName:"clientToken" type:"string"`

    // Indicates whether running Spot instances should be terminated if the target
    // capacity of the Spot fleet request is decreased below the current size of
    // the Spot fleet.
    ExcessCapacityTerminationPolicy *string `locationName:"excessCapacityTerminationPolicy" type:"string" enum:"ExcessCapacityTerminationPolicy"`

    // The number of units fulfilled by this request compared to the set target
    // capacity.
    FulfilledCapacity *float64 `locationName:"fulfilledCapacity" type:"double"`

    // Grants the Spot fleet permission to terminate Spot instances on your behalf
    // when you cancel its Spot fleet request using CancelSpotFleetRequests or when
    // the Spot fleet request expires, if you set terminateInstancesWithExpiration.
    //
    // IamFleetRole is a required field
    IamFleetRole *string `locationName:"iamFleetRole" type:"string" required:"true"`

    // Information about the launch specifications for the Spot fleet request.
    //
    // LaunchSpecifications is a required field
    LaunchSpecifications []*SpotFleetLaunchSpecification `locationName:"launchSpecifications" locationNameList:"item" min:"1" type:"list" required:"true"`

    // Indicates whether Spot fleet should replace unhealthy instances.
    ReplaceUnhealthyInstances *bool `locationName:"replaceUnhealthyInstances" type:"boolean"`

    // The bid price per unit hour.
    //
    // SpotPrice is a required field
    SpotPrice *string `locationName:"spotPrice" type:"string" required:"true"`

    // The number of units to request. You can choose to set the target capacity
    // in terms of instances or a performance characteristic that is important to
    // your application workload, such as vCPUs, memory, or I/O.
    //
    // TargetCapacity is a required field
    TargetCapacity *int64 `locationName:"targetCapacity" type:"integer" required:"true"`

    // Indicates whether running Spot instances should be terminated when the Spot
    // fleet request expires.
    TerminateInstancesWithExpiration *bool `locationName:"terminateInstancesWithExpiration" type:"boolean"`

    // The type of request. Indicates whether the fleet will only request the target
    // capacity or also attempt to maintain it. When you request a certain target
    // capacity, the fleet will only place the required bids. It will not attempt
    // to replenish Spot instances if capacity is diminished, nor will it submit
    // bids in alternative Spot pools if capacity is not available. When you want
    // to maintain a certain target capacity, fleet will place the required bids
    // to meet this target capacity. It will also automatically replenish any interrupted
    // instances. Default: maintain.
    Type *string `locationName:"type" type:"string" enum:"FleetType"`

    // The start date and time of the request, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ).
    // The default is to start fulfilling the request immediately.
    ValidFrom *time.Time `locationName:"validFrom" type:"timestamp" timestampFormat:"iso8601"`

    // The end date and time of the request, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ).
    // At this point, no new Spot instance requests are placed or enabled to fulfill
    // the request.
    ValidUntil *time.Time `locationName:"validUntil" type:"timestamp" timestampFormat:"iso8601"`
    // contains filtered or unexported fields
}

func (SpotFleetRequestConfigData) GoString

func (s SpotFleetRequestConfigData) GoString() string

GoString returns the string representation

func (*SpotFleetRequestConfigData) SetAllocationStrategy

func (s *SpotFleetRequestConfigData) SetAllocationStrategy(v string) *SpotFleetRequestConfigData

SetAllocationStrategy sets the AllocationStrategy field's value.

func (*SpotFleetRequestConfigData) SetClientToken

func (s *SpotFleetRequestConfigData) SetClientToken(v string) *SpotFleetRequestConfigData

SetClientToken sets the ClientToken field's value.

func (*SpotFleetRequestConfigData) SetExcessCapacityTerminationPolicy

func (s *SpotFleetRequestConfigData) SetExcessCapacityTerminationPolicy(v string) *SpotFleetRequestConfigData

SetExcessCapacityTerminationPolicy sets the ExcessCapacityTerminationPolicy field's value.

func (*SpotFleetRequestConfigData) SetFulfilledCapacity

func (s *SpotFleetRequestConfigData) SetFulfilledCapacity(v float64) *SpotFleetRequestConfigData

SetFulfilledCapacity sets the FulfilledCapacity field's value.

func (*SpotFleetRequestConfigData) SetIamFleetRole

func (s *SpotFleetRequestConfigData) SetIamFleetRole(v string) *SpotFleetRequestConfigData

SetIamFleetRole sets the IamFleetRole field's value.

func (*SpotFleetRequestConfigData) SetLaunchSpecifications

func (s *SpotFleetRequestConfigData) SetLaunchSpecifications(v []*SpotFleetLaunchSpecification) *SpotFleetRequestConfigData

SetLaunchSpecifications sets the LaunchSpecifications field's value.

func (*SpotFleetRequestConfigData) SetReplaceUnhealthyInstances

func (s *SpotFleetRequestConfigData) SetReplaceUnhealthyInstances(v bool) *SpotFleetRequestConfigData

SetReplaceUnhealthyInstances sets the ReplaceUnhealthyInstances field's value.

func (*SpotFleetRequestConfigData) SetSpotPrice

func (s *SpotFleetRequestConfigData) SetSpotPrice(v string) *SpotFleetRequestConfigData

SetSpotPrice sets the SpotPrice field's value.

func (*SpotFleetRequestConfigData) SetTargetCapacity

func (s *SpotFleetRequestConfigData) SetTargetCapacity(v int64) *SpotFleetRequestConfigData

SetTargetCapacity sets the TargetCapacity field's value.

func (*SpotFleetRequestConfigData) SetTerminateInstancesWithExpiration

func (s *SpotFleetRequestConfigData) SetTerminateInstancesWithExpiration(v bool) *SpotFleetRequestConfigData

SetTerminateInstancesWithExpiration sets the TerminateInstancesWithExpiration field's value.

func (*SpotFleetRequestConfigData) SetType

func (s *SpotFleetRequestConfigData) SetType(v string) *SpotFleetRequestConfigData

SetType sets the Type field's value.

func (*SpotFleetRequestConfigData) SetValidFrom

func (s *SpotFleetRequestConfigData) SetValidFrom(v time.Time) *SpotFleetRequestConfigData

SetValidFrom sets the ValidFrom field's value.

func (*SpotFleetRequestConfigData) SetValidUntil

func (s *SpotFleetRequestConfigData) SetValidUntil(v time.Time) *SpotFleetRequestConfigData

SetValidUntil sets the ValidUntil field's value.

func (SpotFleetRequestConfigData) String

func (s SpotFleetRequestConfigData) String() string

String returns the string representation

func (*SpotFleetRequestConfigData) Validate

func (s *SpotFleetRequestConfigData) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type SpotInstanceRequest

Describes a Spot instance request. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SpotInstanceRequest

type SpotInstanceRequest struct {

    // If you specified a duration and your Spot instance request was fulfilled,
    // this is the fixed hourly price in effect for the Spot instance while it runs.
    ActualBlockHourlyPrice *string `locationName:"actualBlockHourlyPrice" type:"string"`

    // The Availability Zone group. If you specify the same Availability Zone group
    // for all Spot instance requests, all Spot instances are launched in the same
    // Availability Zone.
    AvailabilityZoneGroup *string `locationName:"availabilityZoneGroup" type:"string"`

    // The duration for the Spot instance, in minutes.
    BlockDurationMinutes *int64 `locationName:"blockDurationMinutes" type:"integer"`

    // The date and time when the Spot instance request was created, in UTC format
    // (for example, YYYY-MM-DDTHH:MM:SSZ).
    CreateTime *time.Time `locationName:"createTime" type:"timestamp" timestampFormat:"iso8601"`

    // The fault codes for the Spot instance request, if any.
    Fault *SpotInstanceStateFault `locationName:"fault" type:"structure"`

    // The instance ID, if an instance has been launched to fulfill the Spot instance
    // request.
    InstanceId *string `locationName:"instanceId" type:"string"`

    // The instance launch group. Launch groups are Spot instances that launch together
    // and terminate together.
    LaunchGroup *string `locationName:"launchGroup" type:"string"`

    // Additional information for launching instances.
    LaunchSpecification *LaunchSpecification `locationName:"launchSpecification" type:"structure"`

    // The Availability Zone in which the bid is launched.
    LaunchedAvailabilityZone *string `locationName:"launchedAvailabilityZone" type:"string"`

    // The product description associated with the Spot instance.
    ProductDescription *string `locationName:"productDescription" type:"string" enum:"RIProductDescription"`

    // The ID of the Spot instance request.
    SpotInstanceRequestId *string `locationName:"spotInstanceRequestId" type:"string"`

    // The maximum hourly price (bid) for the Spot instance launched to fulfill
    // the request.
    SpotPrice *string `locationName:"spotPrice" type:"string"`

    // The state of the Spot instance request. Spot bid status information can help
    // you track your Spot instance requests. For more information, see Spot Bid
    // Status (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-bid-status.html)
    // in the Amazon Elastic Compute Cloud User Guide.
    State *string `locationName:"state" type:"string" enum:"SpotInstanceState"`

    // The status code and status message describing the Spot instance request.
    Status *SpotInstanceStatus `locationName:"status" type:"structure"`

    // Any tags assigned to the resource.
    Tags []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"`

    // The Spot instance request type.
    Type *string `locationName:"type" type:"string" enum:"SpotInstanceType"`

    // The start date of the request, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ).
    // The request becomes active at this date and time.
    ValidFrom *time.Time `locationName:"validFrom" type:"timestamp" timestampFormat:"iso8601"`

    // The end date of the request, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ).
    // If this is a one-time request, it remains active until all instances launch,
    // the request is canceled, or this date is reached. If the request is persistent,
    // it remains active until it is canceled or this date is reached.
    ValidUntil *time.Time `locationName:"validUntil" type:"timestamp" timestampFormat:"iso8601"`
    // contains filtered or unexported fields
}

func (SpotInstanceRequest) GoString

func (s SpotInstanceRequest) GoString() string

GoString returns the string representation

func (*SpotInstanceRequest) SetActualBlockHourlyPrice

func (s *SpotInstanceRequest) SetActualBlockHourlyPrice(v string) *SpotInstanceRequest

SetActualBlockHourlyPrice sets the ActualBlockHourlyPrice field's value.

func (*SpotInstanceRequest) SetAvailabilityZoneGroup

func (s *SpotInstanceRequest) SetAvailabilityZoneGroup(v string) *SpotInstanceRequest

SetAvailabilityZoneGroup sets the AvailabilityZoneGroup field's value.

func (*SpotInstanceRequest) SetBlockDurationMinutes

func (s *SpotInstanceRequest) SetBlockDurationMinutes(v int64) *SpotInstanceRequest

SetBlockDurationMinutes sets the BlockDurationMinutes field's value.

func (*SpotInstanceRequest) SetCreateTime

func (s *SpotInstanceRequest) SetCreateTime(v time.Time) *SpotInstanceRequest

SetCreateTime sets the CreateTime field's value.

func (*SpotInstanceRequest) SetFault

func (s *SpotInstanceRequest) SetFault(v *SpotInstanceStateFault) *SpotInstanceRequest

SetFault sets the Fault field's value.

func (*SpotInstanceRequest) SetInstanceId

func (s *SpotInstanceRequest) SetInstanceId(v string) *SpotInstanceRequest

SetInstanceId sets the InstanceId field's value.

func (*SpotInstanceRequest) SetLaunchGroup

func (s *SpotInstanceRequest) SetLaunchGroup(v string) *SpotInstanceRequest

SetLaunchGroup sets the LaunchGroup field's value.

func (*SpotInstanceRequest) SetLaunchSpecification

func (s *SpotInstanceRequest) SetLaunchSpecification(v *LaunchSpecification) *SpotInstanceRequest

SetLaunchSpecification sets the LaunchSpecification field's value.

func (*SpotInstanceRequest) SetLaunchedAvailabilityZone

func (s *SpotInstanceRequest) SetLaunchedAvailabilityZone(v string) *SpotInstanceRequest

SetLaunchedAvailabilityZone sets the LaunchedAvailabilityZone field's value.

func (*SpotInstanceRequest) SetProductDescription

func (s *SpotInstanceRequest) SetProductDescription(v string) *SpotInstanceRequest

SetProductDescription sets the ProductDescription field's value.

func (*SpotInstanceRequest) SetSpotInstanceRequestId

func (s *SpotInstanceRequest) SetSpotInstanceRequestId(v string) *SpotInstanceRequest

SetSpotInstanceRequestId sets the SpotInstanceRequestId field's value.

func (*SpotInstanceRequest) SetSpotPrice

func (s *SpotInstanceRequest) SetSpotPrice(v string) *SpotInstanceRequest

SetSpotPrice sets the SpotPrice field's value.

func (*SpotInstanceRequest) SetState

func (s *SpotInstanceRequest) SetState(v string) *SpotInstanceRequest

SetState sets the State field's value.

func (*SpotInstanceRequest) SetStatus

func (s *SpotInstanceRequest) SetStatus(v *SpotInstanceStatus) *SpotInstanceRequest

SetStatus sets the Status field's value.

func (*SpotInstanceRequest) SetTags

func (s *SpotInstanceRequest) SetTags(v []*Tag) *SpotInstanceRequest

SetTags sets the Tags field's value.

func (*SpotInstanceRequest) SetType

func (s *SpotInstanceRequest) SetType(v string) *SpotInstanceRequest

SetType sets the Type field's value.

func (*SpotInstanceRequest) SetValidFrom

func (s *SpotInstanceRequest) SetValidFrom(v time.Time) *SpotInstanceRequest

SetValidFrom sets the ValidFrom field's value.

func (*SpotInstanceRequest) SetValidUntil

func (s *SpotInstanceRequest) SetValidUntil(v time.Time) *SpotInstanceRequest

SetValidUntil sets the ValidUntil field's value.

func (SpotInstanceRequest) String

func (s SpotInstanceRequest) String() string

String returns the string representation

type SpotInstanceStateFault

Describes a Spot instance state change. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SpotInstanceStateFault

type SpotInstanceStateFault struct {

    // The reason code for the Spot instance state change.
    Code *string `locationName:"code" type:"string"`

    // The message for the Spot instance state change.
    Message *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

func (SpotInstanceStateFault) GoString

func (s SpotInstanceStateFault) GoString() string

GoString returns the string representation

func (*SpotInstanceStateFault) SetCode

func (s *SpotInstanceStateFault) SetCode(v string) *SpotInstanceStateFault

SetCode sets the Code field's value.

func (*SpotInstanceStateFault) SetMessage

func (s *SpotInstanceStateFault) SetMessage(v string) *SpotInstanceStateFault

SetMessage sets the Message field's value.

func (SpotInstanceStateFault) String

func (s SpotInstanceStateFault) String() string

String returns the string representation

type SpotInstanceStatus

Describes the status of a Spot instance request. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SpotInstanceStatus

type SpotInstanceStatus struct {

    // The status code. For a list of status codes, see Spot Bid Status Codes (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-bid-status.html#spot-instance-bid-status-understand)
    // in the Amazon Elastic Compute Cloud User Guide.
    Code *string `locationName:"code" type:"string"`

    // The description for the status code.
    Message *string `locationName:"message" type:"string"`

    // The date and time of the most recent status update, in UTC format (for example,
    // YYYY-MM-DDTHH:MM:SSZ).
    UpdateTime *time.Time `locationName:"updateTime" type:"timestamp" timestampFormat:"iso8601"`
    // contains filtered or unexported fields
}

func (SpotInstanceStatus) GoString

func (s SpotInstanceStatus) GoString() string

GoString returns the string representation

func (*SpotInstanceStatus) SetCode

func (s *SpotInstanceStatus) SetCode(v string) *SpotInstanceStatus

SetCode sets the Code field's value.

func (*SpotInstanceStatus) SetMessage

func (s *SpotInstanceStatus) SetMessage(v string) *SpotInstanceStatus

SetMessage sets the Message field's value.

func (*SpotInstanceStatus) SetUpdateTime

func (s *SpotInstanceStatus) SetUpdateTime(v time.Time) *SpotInstanceStatus

SetUpdateTime sets the UpdateTime field's value.

func (SpotInstanceStatus) String

func (s SpotInstanceStatus) String() string

String returns the string representation

type SpotPlacement

Describes Spot instance placement. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SpotPlacement

type SpotPlacement struct {

    // The Availability Zone.
    //
    // [Spot fleet only] To specify multiple Availability Zones, separate them using
    // commas; for example, "us-west-2a, us-west-2b".
    AvailabilityZone *string `locationName:"availabilityZone" type:"string"`

    // The name of the placement group (for cluster instances).
    GroupName *string `locationName:"groupName" type:"string"`

    // The tenancy of the instance (if the instance is running in a VPC). An instance
    // with a tenancy of dedicated runs on single-tenant hardware. The host tenancy
    // is not supported for Spot instances.
    Tenancy *string `locationName:"tenancy" type:"string" enum:"Tenancy"`
    // contains filtered or unexported fields
}

func (SpotPlacement) GoString

func (s SpotPlacement) GoString() string

GoString returns the string representation

func (*SpotPlacement) SetAvailabilityZone

func (s *SpotPlacement) SetAvailabilityZone(v string) *SpotPlacement

SetAvailabilityZone sets the AvailabilityZone field's value.

func (*SpotPlacement) SetGroupName

func (s *SpotPlacement) SetGroupName(v string) *SpotPlacement

SetGroupName sets the GroupName field's value.

func (*SpotPlacement) SetTenancy

func (s *SpotPlacement) SetTenancy(v string) *SpotPlacement

SetTenancy sets the Tenancy field's value.

func (SpotPlacement) String

func (s SpotPlacement) String() string

String returns the string representation

type SpotPrice

Describes the maximum hourly price (bid) for any Spot instance launched to fulfill the request. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SpotPrice

type SpotPrice struct {

    // The Availability Zone.
    AvailabilityZone *string `locationName:"availabilityZone" type:"string"`

    // The instance type. Note that T2 and HS1 instance types are not supported.
    InstanceType *string `locationName:"instanceType" type:"string" enum:"InstanceType"`

    // A general description of the AMI.
    ProductDescription *string `locationName:"productDescription" type:"string" enum:"RIProductDescription"`

    // The maximum price (bid) that you are willing to pay for a Spot instance.
    SpotPrice *string `locationName:"spotPrice" type:"string"`

    // The date and time the request was created, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ).
    Timestamp *time.Time `locationName:"timestamp" type:"timestamp" timestampFormat:"iso8601"`
    // contains filtered or unexported fields
}

func (SpotPrice) GoString

func (s SpotPrice) GoString() string

GoString returns the string representation

func (*SpotPrice) SetAvailabilityZone

func (s *SpotPrice) SetAvailabilityZone(v string) *SpotPrice

SetAvailabilityZone sets the AvailabilityZone field's value.

func (*SpotPrice) SetInstanceType

func (s *SpotPrice) SetInstanceType(v string) *SpotPrice

SetInstanceType sets the InstanceType field's value.

func (*SpotPrice) SetProductDescription

func (s *SpotPrice) SetProductDescription(v string) *SpotPrice

SetProductDescription sets the ProductDescription field's value.

func (*SpotPrice) SetSpotPrice

func (s *SpotPrice) SetSpotPrice(v string) *SpotPrice

SetSpotPrice sets the SpotPrice field's value.

func (*SpotPrice) SetTimestamp

func (s *SpotPrice) SetTimestamp(v time.Time) *SpotPrice

SetTimestamp sets the Timestamp field's value.

func (SpotPrice) String

func (s SpotPrice) String() string

String returns the string representation

type StaleIpPermission

Describes a stale rule in a security group. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/StaleIpPermission

type StaleIpPermission struct {

    // The start of the port range for the TCP and UDP protocols, or an ICMP type
    // number. A value of -1 indicates all ICMP types.
    FromPort *int64 `locationName:"fromPort" type:"integer"`

    // The IP protocol name (for tcp, udp, and icmp) or number (see Protocol Numbers)
    // (http://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml).
    IpProtocol *string `locationName:"ipProtocol" type:"string"`

    // One or more IP ranges. Not applicable for stale security group rules.
    IpRanges []*string `locationName:"ipRanges" locationNameList:"item" type:"list"`

    // One or more prefix list IDs for an AWS service. Not applicable for stale
    // security group rules.
    PrefixListIds []*string `locationName:"prefixListIds" locationNameList:"item" type:"list"`

    // The end of the port range for the TCP and UDP protocols, or an ICMP type
    // number. A value of -1 indicates all ICMP types.
    ToPort *int64 `locationName:"toPort" type:"integer"`

    // One or more security group pairs. Returns the ID of the referenced security
    // group and VPC, and the ID and status of the VPC peering connection.
    UserIdGroupPairs []*UserIdGroupPair `locationName:"groups" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (StaleIpPermission) GoString

func (s StaleIpPermission) GoString() string

GoString returns the string representation

func (*StaleIpPermission) SetFromPort

func (s *StaleIpPermission) SetFromPort(v int64) *StaleIpPermission

SetFromPort sets the FromPort field's value.

func (*StaleIpPermission) SetIpProtocol

func (s *StaleIpPermission) SetIpProtocol(v string) *StaleIpPermission

SetIpProtocol sets the IpProtocol field's value.

func (*StaleIpPermission) SetIpRanges

func (s *StaleIpPermission) SetIpRanges(v []*string) *StaleIpPermission

SetIpRanges sets the IpRanges field's value.

func (*StaleIpPermission) SetPrefixListIds

func (s *StaleIpPermission) SetPrefixListIds(v []*string) *StaleIpPermission

SetPrefixListIds sets the PrefixListIds field's value.

func (*StaleIpPermission) SetToPort

func (s *StaleIpPermission) SetToPort(v int64) *StaleIpPermission

SetToPort sets the ToPort field's value.

func (*StaleIpPermission) SetUserIdGroupPairs

func (s *StaleIpPermission) SetUserIdGroupPairs(v []*UserIdGroupPair) *StaleIpPermission

SetUserIdGroupPairs sets the UserIdGroupPairs field's value.

func (StaleIpPermission) String

func (s StaleIpPermission) String() string

String returns the string representation

type StaleSecurityGroup

Describes a stale security group (a security group that contains stale rules). Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/StaleSecurityGroup

type StaleSecurityGroup struct {

    // The description of the security group.
    Description *string `locationName:"description" type:"string"`

    // The ID of the security group.
    //
    // GroupId is a required field
    GroupId *string `locationName:"groupId" type:"string" required:"true"`

    // The name of the security group.
    GroupName *string `locationName:"groupName" type:"string"`

    // Information about the stale inbound rules in the security group.
    StaleIpPermissions []*StaleIpPermission `locationName:"staleIpPermissions" locationNameList:"item" type:"list"`

    // Information about the stale outbound rules in the security group.
    StaleIpPermissionsEgress []*StaleIpPermission `locationName:"staleIpPermissionsEgress" locationNameList:"item" type:"list"`

    // The ID of the VPC for the security group.
    VpcId *string `locationName:"vpcId" type:"string"`
    // contains filtered or unexported fields
}

func (StaleSecurityGroup) GoString

func (s StaleSecurityGroup) GoString() string

GoString returns the string representation

func (*StaleSecurityGroup) SetDescription

func (s *StaleSecurityGroup) SetDescription(v string) *StaleSecurityGroup

SetDescription sets the Description field's value.

func (*StaleSecurityGroup) SetGroupId

func (s *StaleSecurityGroup) SetGroupId(v string) *StaleSecurityGroup

SetGroupId sets the GroupId field's value.

func (*StaleSecurityGroup) SetGroupName

func (s *StaleSecurityGroup) SetGroupName(v string) *StaleSecurityGroup

SetGroupName sets the GroupName field's value.

func (*StaleSecurityGroup) SetStaleIpPermissions

func (s *StaleSecurityGroup) SetStaleIpPermissions(v []*StaleIpPermission) *StaleSecurityGroup

SetStaleIpPermissions sets the StaleIpPermissions field's value.

func (*StaleSecurityGroup) SetStaleIpPermissionsEgress

func (s *StaleSecurityGroup) SetStaleIpPermissionsEgress(v []*StaleIpPermission) *StaleSecurityGroup

SetStaleIpPermissionsEgress sets the StaleIpPermissionsEgress field's value.

func (*StaleSecurityGroup) SetVpcId

func (s *StaleSecurityGroup) SetVpcId(v string) *StaleSecurityGroup

SetVpcId sets the VpcId field's value.

func (StaleSecurityGroup) String

func (s StaleSecurityGroup) String() string

String returns the string representation

type StartInstancesInput

Contains the parameters for StartInstances. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/StartInstancesRequest

type StartInstancesInput struct {

    // Reserved.
    AdditionalInfo *string `locationName:"additionalInfo" type:"string"`

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // One or more instance IDs.
    //
    // InstanceIds is a required field
    InstanceIds []*string `locationName:"InstanceId" locationNameList:"InstanceId" type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (StartInstancesInput) GoString

func (s StartInstancesInput) GoString() string

GoString returns the string representation

func (*StartInstancesInput) SetAdditionalInfo

func (s *StartInstancesInput) SetAdditionalInfo(v string) *StartInstancesInput

SetAdditionalInfo sets the AdditionalInfo field's value.

func (*StartInstancesInput) SetDryRun

func (s *StartInstancesInput) SetDryRun(v bool) *StartInstancesInput

SetDryRun sets the DryRun field's value.

func (*StartInstancesInput) SetInstanceIds

func (s *StartInstancesInput) SetInstanceIds(v []*string) *StartInstancesInput

SetInstanceIds sets the InstanceIds field's value.

func (StartInstancesInput) String

func (s StartInstancesInput) String() string

String returns the string representation

func (*StartInstancesInput) Validate

func (s *StartInstancesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type StartInstancesOutput

Contains the output of StartInstances. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/StartInstancesResult

type StartInstancesOutput struct {

    // Information about one or more started instances.
    StartingInstances []*InstanceStateChange `locationName:"instancesSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (StartInstancesOutput) GoString

func (s StartInstancesOutput) GoString() string

GoString returns the string representation

func (*StartInstancesOutput) SetStartingInstances

func (s *StartInstancesOutput) SetStartingInstances(v []*InstanceStateChange) *StartInstancesOutput

SetStartingInstances sets the StartingInstances field's value.

func (StartInstancesOutput) String

func (s StartInstancesOutput) String() string

String returns the string representation

type StateReason

Describes a state change. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/StateReason

type StateReason struct {

    // The reason code for the state change.
    Code *string `locationName:"code" type:"string"`

    // The message for the state change.
    //
    //    * Server.InsufficientInstanceCapacity: There was insufficient instance
    //    capacity to satisfy the launch request.
    //
    //    * Server.InternalError: An internal error occurred during instance launch,
    //    resulting in termination.
    //
    //    * Server.ScheduledStop: The instance was stopped due to a scheduled retirement.
    //
    //    * Server.SpotInstanceTermination: A Spot instance was terminated due to
    //    an increase in the market price.
    //
    //    * Client.InternalError: A client error caused the instance to terminate
    //    on launch.
    //
    //    * Client.InstanceInitiatedShutdown: The instance was shut down using the
    //    shutdown -h command from the instance.
    //
    //    * Client.UserInitiatedShutdown: The instance was shut down using the Amazon
    //    EC2 API.
    //
    //    * Client.VolumeLimitExceeded: The limit on the number of EBS volumes or
    //    total storage was exceeded. Decrease usage or request an increase in your
    //    limits.
    //
    //    * Client.InvalidSnapshot.NotFound: The specified snapshot was not found.
    Message *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

func (StateReason) GoString

func (s StateReason) GoString() string

GoString returns the string representation

func (*StateReason) SetCode

func (s *StateReason) SetCode(v string) *StateReason

SetCode sets the Code field's value.

func (*StateReason) SetMessage

func (s *StateReason) SetMessage(v string) *StateReason

SetMessage sets the Message field's value.

func (StateReason) String

func (s StateReason) String() string

String returns the string representation

type StopInstancesInput

Contains the parameters for StopInstances. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/StopInstancesRequest

type StopInstancesInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // Forces the instances to stop. The instances do not have an opportunity to
    // flush file system caches or file system metadata. If you use this option,
    // you must perform file system check and repair procedures. This option is
    // not recommended for Windows instances.
    //
    // Default: false
    Force *bool `locationName:"force" type:"boolean"`

    // One or more instance IDs.
    //
    // InstanceIds is a required field
    InstanceIds []*string `locationName:"InstanceId" locationNameList:"InstanceId" type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (StopInstancesInput) GoString

func (s StopInstancesInput) GoString() string

GoString returns the string representation

func (*StopInstancesInput) SetDryRun

func (s *StopInstancesInput) SetDryRun(v bool) *StopInstancesInput

SetDryRun sets the DryRun field's value.

func (*StopInstancesInput) SetForce

func (s *StopInstancesInput) SetForce(v bool) *StopInstancesInput

SetForce sets the Force field's value.

func (*StopInstancesInput) SetInstanceIds

func (s *StopInstancesInput) SetInstanceIds(v []*string) *StopInstancesInput

SetInstanceIds sets the InstanceIds field's value.

func (StopInstancesInput) String

func (s StopInstancesInput) String() string

String returns the string representation

func (*StopInstancesInput) Validate

func (s *StopInstancesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type StopInstancesOutput

Contains the output of StopInstances. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/StopInstancesResult

type StopInstancesOutput struct {

    // Information about one or more stopped instances.
    StoppingInstances []*InstanceStateChange `locationName:"instancesSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (StopInstancesOutput) GoString

func (s StopInstancesOutput) GoString() string

GoString returns the string representation

func (*StopInstancesOutput) SetStoppingInstances

func (s *StopInstancesOutput) SetStoppingInstances(v []*InstanceStateChange) *StopInstancesOutput

SetStoppingInstances sets the StoppingInstances field's value.

func (StopInstancesOutput) String

func (s StopInstancesOutput) String() string

String returns the string representation

type Storage

Describes the storage location for an instance store-backed AMI. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Storage

type Storage struct {

    // An Amazon S3 storage location.
    S3 *S3Storage `type:"structure"`
    // contains filtered or unexported fields
}

func (Storage) GoString

func (s Storage) GoString() string

GoString returns the string representation

func (*Storage) SetS3

func (s *Storage) SetS3(v *S3Storage) *Storage

SetS3 sets the S3 field's value.

func (Storage) String

func (s Storage) String() string

String returns the string representation

type StorageLocation

Describes a storage location in Amazon S3. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/StorageLocation

type StorageLocation struct {

    // The name of the S3 bucket.
    Bucket *string `type:"string"`

    // The key.
    Key *string `type:"string"`
    // contains filtered or unexported fields
}

func (StorageLocation) GoString

func (s StorageLocation) GoString() string

GoString returns the string representation

func (*StorageLocation) SetBucket

func (s *StorageLocation) SetBucket(v string) *StorageLocation

SetBucket sets the Bucket field's value.

func (*StorageLocation) SetKey

func (s *StorageLocation) SetKey(v string) *StorageLocation

SetKey sets the Key field's value.

func (StorageLocation) String

func (s StorageLocation) String() string

String returns the string representation

type Subnet

Describes a subnet. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Subnet

type Subnet struct {

    // Indicates whether a network interface created in this subnet (including a
    // network interface created by RunInstances) receives an IPv6 address.
    AssignIpv6AddressOnCreation *bool `locationName:"assignIpv6AddressOnCreation" type:"boolean"`

    // The Availability Zone of the subnet.
    AvailabilityZone *string `locationName:"availabilityZone" type:"string"`

    // The number of unused private IPv4 addresses in the subnet. Note that the
    // IPv4 addresses for any stopped instances are considered unavailable.
    AvailableIpAddressCount *int64 `locationName:"availableIpAddressCount" type:"integer"`

    // The IPv4 CIDR block assigned to the subnet.
    CidrBlock *string `locationName:"cidrBlock" type:"string"`

    // Indicates whether this is the default subnet for the Availability Zone.
    DefaultForAz *bool `locationName:"defaultForAz" type:"boolean"`

    // Information about the IPv6 CIDR blocks associated with the subnet.
    Ipv6CidrBlockAssociationSet []*SubnetIpv6CidrBlockAssociation `locationName:"ipv6CidrBlockAssociationSet" locationNameList:"item" type:"list"`

    // Indicates whether instances launched in this subnet receive a public IPv4
    // address.
    MapPublicIpOnLaunch *bool `locationName:"mapPublicIpOnLaunch" type:"boolean"`

    // The current state of the subnet.
    State *string `locationName:"state" type:"string" enum:"SubnetState"`

    // The ID of the subnet.
    SubnetId *string `locationName:"subnetId" type:"string"`

    // Any tags assigned to the subnet.
    Tags []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"`

    // The ID of the VPC the subnet is in.
    VpcId *string `locationName:"vpcId" type:"string"`
    // contains filtered or unexported fields
}

func (Subnet) GoString

func (s Subnet) GoString() string

GoString returns the string representation

func (*Subnet) SetAssignIpv6AddressOnCreation

func (s *Subnet) SetAssignIpv6AddressOnCreation(v bool) *Subnet

SetAssignIpv6AddressOnCreation sets the AssignIpv6AddressOnCreation field's value.

func (*Subnet) SetAvailabilityZone

func (s *Subnet) SetAvailabilityZone(v string) *Subnet

SetAvailabilityZone sets the AvailabilityZone field's value.

func (*Subnet) SetAvailableIpAddressCount

func (s *Subnet) SetAvailableIpAddressCount(v int64) *Subnet

SetAvailableIpAddressCount sets the AvailableIpAddressCount field's value.

func (*Subnet) SetCidrBlock

func (s *Subnet) SetCidrBlock(v string) *Subnet

SetCidrBlock sets the CidrBlock field's value.

func (*Subnet) SetDefaultForAz

func (s *Subnet) SetDefaultForAz(v bool) *Subnet

SetDefaultForAz sets the DefaultForAz field's value.

func (*Subnet) SetIpv6CidrBlockAssociationSet

func (s *Subnet) SetIpv6CidrBlockAssociationSet(v []*SubnetIpv6CidrBlockAssociation) *Subnet

SetIpv6CidrBlockAssociationSet sets the Ipv6CidrBlockAssociationSet field's value.

func (*Subnet) SetMapPublicIpOnLaunch

func (s *Subnet) SetMapPublicIpOnLaunch(v bool) *Subnet

SetMapPublicIpOnLaunch sets the MapPublicIpOnLaunch field's value.

func (*Subnet) SetState

func (s *Subnet) SetState(v string) *Subnet

SetState sets the State field's value.

func (*Subnet) SetSubnetId

func (s *Subnet) SetSubnetId(v string) *Subnet

SetSubnetId sets the SubnetId field's value.

func (*Subnet) SetTags

func (s *Subnet) SetTags(v []*Tag) *Subnet

SetTags sets the Tags field's value.

func (*Subnet) SetVpcId

func (s *Subnet) SetVpcId(v string) *Subnet

SetVpcId sets the VpcId field's value.

func (Subnet) String

func (s Subnet) String() string

String returns the string representation

type SubnetCidrBlockState

Describes the state of a CIDR block. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SubnetCidrBlockState

type SubnetCidrBlockState struct {

    // The state of a CIDR block.
    State *string `locationName:"state" type:"string" enum:"SubnetCidrBlockStateCode"`

    // A message about the status of the CIDR block, if applicable.
    StatusMessage *string `locationName:"statusMessage" type:"string"`
    // contains filtered or unexported fields
}

func (SubnetCidrBlockState) GoString

func (s SubnetCidrBlockState) GoString() string

GoString returns the string representation

func (*SubnetCidrBlockState) SetState

func (s *SubnetCidrBlockState) SetState(v string) *SubnetCidrBlockState

SetState sets the State field's value.

func (*SubnetCidrBlockState) SetStatusMessage

func (s *SubnetCidrBlockState) SetStatusMessage(v string) *SubnetCidrBlockState

SetStatusMessage sets the StatusMessage field's value.

func (SubnetCidrBlockState) String

func (s SubnetCidrBlockState) String() string

String returns the string representation

type SubnetIpv6CidrBlockAssociation

Describes an IPv6 CIDR block associated with a subnet. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SubnetIpv6CidrBlockAssociation

type SubnetIpv6CidrBlockAssociation struct {

    // The association ID for the CIDR block.
    AssociationId *string `locationName:"associationId" type:"string"`

    // The IPv6 CIDR block.
    Ipv6CidrBlock *string `locationName:"ipv6CidrBlock" type:"string"`

    // Information about the state of the CIDR block.
    Ipv6CidrBlockState *SubnetCidrBlockState `locationName:"ipv6CidrBlockState" type:"structure"`
    // contains filtered or unexported fields
}

func (SubnetIpv6CidrBlockAssociation) GoString

func (s SubnetIpv6CidrBlockAssociation) GoString() string

GoString returns the string representation

func (*SubnetIpv6CidrBlockAssociation) SetAssociationId

func (s *SubnetIpv6CidrBlockAssociation) SetAssociationId(v string) *SubnetIpv6CidrBlockAssociation

SetAssociationId sets the AssociationId field's value.

func (*SubnetIpv6CidrBlockAssociation) SetIpv6CidrBlock

func (s *SubnetIpv6CidrBlockAssociation) SetIpv6CidrBlock(v string) *SubnetIpv6CidrBlockAssociation

SetIpv6CidrBlock sets the Ipv6CidrBlock field's value.

func (*SubnetIpv6CidrBlockAssociation) SetIpv6CidrBlockState

func (s *SubnetIpv6CidrBlockAssociation) SetIpv6CidrBlockState(v *SubnetCidrBlockState) *SubnetIpv6CidrBlockAssociation

SetIpv6CidrBlockState sets the Ipv6CidrBlockState field's value.

func (SubnetIpv6CidrBlockAssociation) String

func (s SubnetIpv6CidrBlockAssociation) String() string

String returns the string representation

type Tag

Describes a tag. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Tag

type Tag struct {

    // The key of the tag.
    //
    // Constraints: Tag keys are case-sensitive and accept a maximum of 127 Unicode
    // characters. May not begin with aws:
    Key *string `locationName:"key" type:"string"`

    // The value of the tag.
    //
    // Constraints: Tag values are case-sensitive and accept a maximum of 255 Unicode
    // characters.
    Value *string `locationName:"value" type:"string"`
    // contains filtered or unexported fields
}

func (Tag) GoString

func (s Tag) GoString() string

GoString returns the string representation

func (*Tag) SetKey

func (s *Tag) SetKey(v string) *Tag

SetKey sets the Key field's value.

func (*Tag) SetValue

func (s *Tag) SetValue(v string) *Tag

SetValue sets the Value field's value.

func (Tag) String

func (s Tag) String() string

String returns the string representation

type TagDescription

Describes a tag. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/TagDescription

type TagDescription struct {

    // The tag key.
    Key *string `locationName:"key" type:"string"`

    // The ID of the resource. For example, ami-1a2b3c4d.
    ResourceId *string `locationName:"resourceId" type:"string"`

    // The resource type.
    ResourceType *string `locationName:"resourceType" type:"string" enum:"ResourceType"`

    // The tag value.
    Value *string `locationName:"value" type:"string"`
    // contains filtered or unexported fields
}

func (TagDescription) GoString

func (s TagDescription) GoString() string

GoString returns the string representation

func (*TagDescription) SetKey

func (s *TagDescription) SetKey(v string) *TagDescription

SetKey sets the Key field's value.

func (*TagDescription) SetResourceId

func (s *TagDescription) SetResourceId(v string) *TagDescription

SetResourceId sets the ResourceId field's value.

func (*TagDescription) SetResourceType

func (s *TagDescription) SetResourceType(v string) *TagDescription

SetResourceType sets the ResourceType field's value.

func (*TagDescription) SetValue

func (s *TagDescription) SetValue(v string) *TagDescription

SetValue sets the Value field's value.

func (TagDescription) String

func (s TagDescription) String() string

String returns the string representation

type TagSpecification

The tags to apply to a resource when the resource is being created. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/TagSpecification

type TagSpecification struct {

    // The type of resource to tag. Currently, the resource types that support tagging
    // on creation are instance and volume.
    ResourceType *string `locationName:"resourceType" type:"string" enum:"ResourceType"`

    // The tags to apply to the resource.
    Tags []*Tag `locationName:"Tag" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (TagSpecification) GoString

func (s TagSpecification) GoString() string

GoString returns the string representation

func (*TagSpecification) SetResourceType

func (s *TagSpecification) SetResourceType(v string) *TagSpecification

SetResourceType sets the ResourceType field's value.

func (*TagSpecification) SetTags

func (s *TagSpecification) SetTags(v []*Tag) *TagSpecification

SetTags sets the Tags field's value.

func (TagSpecification) String

func (s TagSpecification) String() string

String returns the string representation

type TargetConfiguration

Information about the Convertible Reserved Instance offering. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/TargetConfiguration

type TargetConfiguration struct {

    // The number of instances the Convertible Reserved Instance offering can be
    // applied to. This parameter is reserved and cannot be specified in a request
    InstanceCount *int64 `locationName:"instanceCount" type:"integer"`

    // The ID of the Convertible Reserved Instance offering.
    OfferingId *string `locationName:"offeringId" type:"string"`
    // contains filtered or unexported fields
}

func (TargetConfiguration) GoString

func (s TargetConfiguration) GoString() string

GoString returns the string representation

func (*TargetConfiguration) SetInstanceCount

func (s *TargetConfiguration) SetInstanceCount(v int64) *TargetConfiguration

SetInstanceCount sets the InstanceCount field's value.

func (*TargetConfiguration) SetOfferingId

func (s *TargetConfiguration) SetOfferingId(v string) *TargetConfiguration

SetOfferingId sets the OfferingId field's value.

func (TargetConfiguration) String

func (s TargetConfiguration) String() string

String returns the string representation

type TargetConfigurationRequest

Details about the target configuration. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/TargetConfigurationRequest

type TargetConfigurationRequest struct {

    // The number of instances the Covertible Reserved Instance offering can be
    // applied to. This parameter is reserved and cannot be specified in a request
    InstanceCount *int64 `type:"integer"`

    // The Convertible Reserved Instance offering ID.
    //
    // OfferingId is a required field
    OfferingId *string `type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (TargetConfigurationRequest) GoString

func (s TargetConfigurationRequest) GoString() string

GoString returns the string representation

func (*TargetConfigurationRequest) SetInstanceCount

func (s *TargetConfigurationRequest) SetInstanceCount(v int64) *TargetConfigurationRequest

SetInstanceCount sets the InstanceCount field's value.

func (*TargetConfigurationRequest) SetOfferingId

func (s *TargetConfigurationRequest) SetOfferingId(v string) *TargetConfigurationRequest

SetOfferingId sets the OfferingId field's value.

func (TargetConfigurationRequest) String

func (s TargetConfigurationRequest) String() string

String returns the string representation

func (*TargetConfigurationRequest) Validate

func (s *TargetConfigurationRequest) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type TargetReservationValue

The total value of the new Convertible Reserved Instances. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/TargetReservationValue

type TargetReservationValue struct {

    // The total value of the Convertible Reserved Instances that make up the exchange.
    // This is the sum of the list value, remaining upfront price, and additional
    // upfront cost of the exchange.
    ReservationValue *ReservationValue `locationName:"reservationValue" type:"structure"`

    // The configuration of the Convertible Reserved Instances that make up the
    // exchange.
    TargetConfiguration *TargetConfiguration `locationName:"targetConfiguration" type:"structure"`
    // contains filtered or unexported fields
}

func (TargetReservationValue) GoString

func (s TargetReservationValue) GoString() string

GoString returns the string representation

func (*TargetReservationValue) SetReservationValue

func (s *TargetReservationValue) SetReservationValue(v *ReservationValue) *TargetReservationValue

SetReservationValue sets the ReservationValue field's value.

func (*TargetReservationValue) SetTargetConfiguration

func (s *TargetReservationValue) SetTargetConfiguration(v *TargetConfiguration) *TargetReservationValue

SetTargetConfiguration sets the TargetConfiguration field's value.

func (TargetReservationValue) String

func (s TargetReservationValue) String() string

String returns the string representation

type TerminateInstancesInput

Contains the parameters for TerminateInstances. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/TerminateInstancesRequest

type TerminateInstancesInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // One or more instance IDs.
    //
    // Constraints: Up to 1000 instance IDs. We recommend breaking up this request
    // into smaller batches.
    //
    // InstanceIds is a required field
    InstanceIds []*string `locationName:"InstanceId" locationNameList:"InstanceId" type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (TerminateInstancesInput) GoString

func (s TerminateInstancesInput) GoString() string

GoString returns the string representation

func (*TerminateInstancesInput) SetDryRun

func (s *TerminateInstancesInput) SetDryRun(v bool) *TerminateInstancesInput

SetDryRun sets the DryRun field's value.

func (*TerminateInstancesInput) SetInstanceIds

func (s *TerminateInstancesInput) SetInstanceIds(v []*string) *TerminateInstancesInput

SetInstanceIds sets the InstanceIds field's value.

func (TerminateInstancesInput) String

func (s TerminateInstancesInput) String() string

String returns the string representation

func (*TerminateInstancesInput) Validate

func (s *TerminateInstancesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type TerminateInstancesOutput

Contains the output of TerminateInstances. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/TerminateInstancesResult

type TerminateInstancesOutput struct {

    // Information about one or more terminated instances.
    TerminatingInstances []*InstanceStateChange `locationName:"instancesSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (TerminateInstancesOutput) GoString

func (s TerminateInstancesOutput) GoString() string

GoString returns the string representation

func (*TerminateInstancesOutput) SetTerminatingInstances

func (s *TerminateInstancesOutput) SetTerminatingInstances(v []*InstanceStateChange) *TerminateInstancesOutput

SetTerminatingInstances sets the TerminatingInstances field's value.

func (TerminateInstancesOutput) String

func (s TerminateInstancesOutput) String() string

String returns the string representation

type UnassignIpv6AddressesInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/UnassignIpv6AddressesRequest

type UnassignIpv6AddressesInput struct {

    // The IPv6 addresses to unassign from the network interface.
    //
    // Ipv6Addresses is a required field
    Ipv6Addresses []*string `locationName:"ipv6Addresses" locationNameList:"item" type:"list" required:"true"`

    // The ID of the network interface.
    //
    // NetworkInterfaceId is a required field
    NetworkInterfaceId *string `locationName:"networkInterfaceId" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (UnassignIpv6AddressesInput) GoString

func (s UnassignIpv6AddressesInput) GoString() string

GoString returns the string representation

func (*UnassignIpv6AddressesInput) SetIpv6Addresses

func (s *UnassignIpv6AddressesInput) SetIpv6Addresses(v []*string) *UnassignIpv6AddressesInput

SetIpv6Addresses sets the Ipv6Addresses field's value.

func (*UnassignIpv6AddressesInput) SetNetworkInterfaceId

func (s *UnassignIpv6AddressesInput) SetNetworkInterfaceId(v string) *UnassignIpv6AddressesInput

SetNetworkInterfaceId sets the NetworkInterfaceId field's value.

func (UnassignIpv6AddressesInput) String

func (s UnassignIpv6AddressesInput) String() string

String returns the string representation

func (*UnassignIpv6AddressesInput) Validate

func (s *UnassignIpv6AddressesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type UnassignIpv6AddressesOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/UnassignIpv6AddressesResult

type UnassignIpv6AddressesOutput struct {

    // The ID of the network interface.
    NetworkInterfaceId *string `locationName:"networkInterfaceId" type:"string"`

    // The IPv6 addresses that have been unassigned from the network interface.
    UnassignedIpv6Addresses []*string `locationName:"unassignedIpv6Addresses" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (UnassignIpv6AddressesOutput) GoString

func (s UnassignIpv6AddressesOutput) GoString() string

GoString returns the string representation

func (*UnassignIpv6AddressesOutput) SetNetworkInterfaceId

func (s *UnassignIpv6AddressesOutput) SetNetworkInterfaceId(v string) *UnassignIpv6AddressesOutput

SetNetworkInterfaceId sets the NetworkInterfaceId field's value.

func (*UnassignIpv6AddressesOutput) SetUnassignedIpv6Addresses

func (s *UnassignIpv6AddressesOutput) SetUnassignedIpv6Addresses(v []*string) *UnassignIpv6AddressesOutput

SetUnassignedIpv6Addresses sets the UnassignedIpv6Addresses field's value.

func (UnassignIpv6AddressesOutput) String

func (s UnassignIpv6AddressesOutput) String() string

String returns the string representation

type UnassignPrivateIpAddressesInput

Contains the parameters for UnassignPrivateIpAddresses. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/UnassignPrivateIpAddressesRequest

type UnassignPrivateIpAddressesInput struct {

    // The ID of the network interface.
    //
    // NetworkInterfaceId is a required field
    NetworkInterfaceId *string `locationName:"networkInterfaceId" type:"string" required:"true"`

    // The secondary private IP addresses to unassign from the network interface.
    // You can specify this option multiple times to unassign more than one IP address.
    //
    // PrivateIpAddresses is a required field
    PrivateIpAddresses []*string `locationName:"privateIpAddress" locationNameList:"PrivateIpAddress" type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (UnassignPrivateIpAddressesInput) GoString

func (s UnassignPrivateIpAddressesInput) GoString() string

GoString returns the string representation

func (*UnassignPrivateIpAddressesInput) SetNetworkInterfaceId

func (s *UnassignPrivateIpAddressesInput) SetNetworkInterfaceId(v string) *UnassignPrivateIpAddressesInput

SetNetworkInterfaceId sets the NetworkInterfaceId field's value.

func (*UnassignPrivateIpAddressesInput) SetPrivateIpAddresses

func (s *UnassignPrivateIpAddressesInput) SetPrivateIpAddresses(v []*string) *UnassignPrivateIpAddressesInput

SetPrivateIpAddresses sets the PrivateIpAddresses field's value.

func (UnassignPrivateIpAddressesInput) String

func (s UnassignPrivateIpAddressesInput) String() string

String returns the string representation

func (*UnassignPrivateIpAddressesInput) Validate

func (s *UnassignPrivateIpAddressesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type UnassignPrivateIpAddressesOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/UnassignPrivateIpAddressesOutput

type UnassignPrivateIpAddressesOutput struct {
    // contains filtered or unexported fields
}

func (UnassignPrivateIpAddressesOutput) GoString

func (s UnassignPrivateIpAddressesOutput) GoString() string

GoString returns the string representation

func (UnassignPrivateIpAddressesOutput) String

func (s UnassignPrivateIpAddressesOutput) String() string

String returns the string representation

type UnmonitorInstancesInput

Contains the parameters for UnmonitorInstances. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/UnmonitorInstancesRequest

type UnmonitorInstancesInput struct {

    // Checks whether you have the required permissions for the action, without
    // actually making the request, and provides an error response. If you have
    // the required permissions, the error response is DryRunOperation. Otherwise,
    // it is UnauthorizedOperation.
    DryRun *bool `locationName:"dryRun" type:"boolean"`

    // One or more instance IDs.
    //
    // InstanceIds is a required field
    InstanceIds []*string `locationName:"InstanceId" locationNameList:"InstanceId" type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (UnmonitorInstancesInput) GoString

func (s UnmonitorInstancesInput) GoString() string

GoString returns the string representation

func (*UnmonitorInstancesInput) SetDryRun

func (s *UnmonitorInstancesInput) SetDryRun(v bool) *UnmonitorInstancesInput

SetDryRun sets the DryRun field's value.

func (*UnmonitorInstancesInput) SetInstanceIds

func (s *UnmonitorInstancesInput) SetInstanceIds(v []*string) *UnmonitorInstancesInput

SetInstanceIds sets the InstanceIds field's value.

func (UnmonitorInstancesInput) String

func (s UnmonitorInstancesInput) String() string

String returns the string representation

func (*UnmonitorInstancesInput) Validate

func (s *UnmonitorInstancesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type UnmonitorInstancesOutput

Contains the output of UnmonitorInstances. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/UnmonitorInstancesResult

type UnmonitorInstancesOutput struct {

    // The monitoring information.
    InstanceMonitorings []*InstanceMonitoring `locationName:"instancesSet" locationNameList:"item" type:"list"`
    // contains filtered or unexported fields
}

func (UnmonitorInstancesOutput) GoString

func (s UnmonitorInstancesOutput) GoString() string

GoString returns the string representation

func (*UnmonitorInstancesOutput) SetInstanceMonitorings

func (s *UnmonitorInstancesOutput) SetInstanceMonitorings(v []*InstanceMonitoring) *UnmonitorInstancesOutput

SetInstanceMonitorings sets the InstanceMonitorings field's value.

func (UnmonitorInstancesOutput) String

func (s UnmonitorInstancesOutput) String() string

String returns the string representation

type UnsuccessfulItem

Information about items that were not successfully processed in a batch call. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/UnsuccessfulItem

type UnsuccessfulItem struct {

    // Information about the error.
    //
    // Error is a required field
    Error *UnsuccessfulItemError `locationName:"error" type:"structure" required:"true"`

    // The ID of the resource.
    ResourceId *string `locationName:"resourceId" type:"string"`
    // contains filtered or unexported fields
}

func (UnsuccessfulItem) GoString

func (s UnsuccessfulItem) GoString() string

GoString returns the string representation

func (*UnsuccessfulItem) SetError

func (s *UnsuccessfulItem) SetError(v *UnsuccessfulItemError) *UnsuccessfulItem

SetError sets the Error field's value.

func (*UnsuccessfulItem) SetResourceId

func (s *UnsuccessfulItem) SetResourceId(v string) *UnsuccessfulItem

SetResourceId sets the ResourceId field's value.

func (UnsuccessfulItem) String

func (s UnsuccessfulItem) String() string

String returns the string representation

type UnsuccessfulItemError

Information about the error that occurred. For more information about errors, see Error Codes (http://docs.aws.amazon.com/AWSEC2/latest/APIReference/errors-overview.html). Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/UnsuccessfulItemError

type UnsuccessfulItemError struct {

    // The error code.
    //
    // Code is a required field
    Code *string `locationName:"code" type:"string" required:"true"`

    // The error message accompanying the error code.
    //
    // Message is a required field
    Message *string `locationName:"message" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (UnsuccessfulItemError) GoString

func (s UnsuccessfulItemError) GoString() string

GoString returns the string representation

func (*UnsuccessfulItemError) SetCode

func (s *UnsuccessfulItemError) SetCode(v string) *UnsuccessfulItemError

SetCode sets the Code field's value.

func (*UnsuccessfulItemError) SetMessage

func (s *UnsuccessfulItemError) SetMessage(v string) *UnsuccessfulItemError

SetMessage sets the Message field's value.

func (UnsuccessfulItemError) String

func (s UnsuccessfulItemError) String() string

String returns the string representation

type UserBucket

Describes the S3 bucket for the disk image. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/UserBucket

type UserBucket struct {

    // The name of the S3 bucket where the disk image is located.
    S3Bucket *string `type:"string"`

    // The file name of the disk image.
    S3Key *string `type:"string"`
    // contains filtered or unexported fields
}

func (UserBucket) GoString

func (s UserBucket) GoString() string

GoString returns the string representation

func (*UserBucket) SetS3Bucket

func (s *UserBucket) SetS3Bucket(v string) *UserBucket

SetS3Bucket sets the S3Bucket field's value.

func (*UserBucket) SetS3Key

func (s *UserBucket) SetS3Key(v string) *UserBucket

SetS3Key sets the S3Key field's value.

func (UserBucket) String

func (s UserBucket) String() string

String returns the string representation

type UserBucketDetails

Describes the S3 bucket for the disk image. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/UserBucketDetails

type UserBucketDetails struct {

    // The S3 bucket from which the disk image was created.
    S3Bucket *string `locationName:"s3Bucket" type:"string"`

    // The file name of the disk image.
    S3Key *string `locationName:"s3Key" type:"string"`
    // contains filtered or unexported fields
}

func (UserBucketDetails) GoString

func (s UserBucketDetails) GoString() string

GoString returns the string representation

func (*UserBucketDetails) SetS3Bucket

func (s *UserBucketDetails) SetS3Bucket(v string) *UserBucketDetails

SetS3Bucket sets the S3Bucket field's value.

func (*UserBucketDetails) SetS3Key

func (s *UserBucketDetails) SetS3Key(v string) *UserBucketDetails

SetS3Key sets the S3Key field's value.

func (UserBucketDetails) String

func (s UserBucketDetails) String() string

String returns the string representation

type UserData

Describes the user data for an instance. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/UserData

type UserData struct {

    // The user data. If you are using an AWS SDK or command line tool, Base64-encoding
    // is performed for you, and you can load the text from a file. Otherwise, you
    // must provide Base64-encoded text.
    Data *string `locationName:"data" type:"string"`
    // contains filtered or unexported fields
}

func (UserData) GoString

func (s UserData) GoString() string

GoString returns the string representation

func (*UserData) SetData

func (s *UserData) SetData(v string) *UserData

SetData sets the Data field's value.

func (UserData) String

func (s UserData) String() string

String returns the string representation

type UserIdGroupPair

Describes a security group and AWS account ID pair. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/UserIdGroupPair

type UserIdGroupPair struct {

    // The ID of the security group.
    GroupId *string `locationName:"groupId" type:"string"`

    // The name of the security group. In a request, use this parameter for a security
    // group in EC2-Classic or a default VPC only. For a security group in a nondefault
    // VPC, use the security group ID.
    GroupName *string `locationName:"groupName" type:"string"`

    // The status of a VPC peering connection, if applicable.
    PeeringStatus *string `locationName:"peeringStatus" type:"string"`

    // The ID of an AWS account. For a referenced security group in another VPC,
    // the account ID of the referenced security group is returned.
    //
    // [EC2-Classic] Required when adding or removing rules that reference a security
    // group in another AWS account.
    UserId *string `locationName:"userId" type:"string"`

    // The ID of the VPC for the referenced security group, if applicable.
    VpcId *string `locationName:"vpcId" type:"string"`

    // The ID of the VPC peering connection, if applicable.
    VpcPeeringConnectionId *string `locationName:"vpcPeeringConnectionId" type:"string"`
    // contains filtered or unexported fields
}

func (UserIdGroupPair) GoString

func (s UserIdGroupPair) GoString() string

GoString returns the string representation

func (*UserIdGroupPair) SetGroupId

func (s *UserIdGroupPair) SetGroupId(v string) *UserIdGroupPair

SetGroupId sets the GroupId field's value.

func (*UserIdGroupPair) SetGroupName

func (s *UserIdGroupPair) SetGroupName(v string) *UserIdGroupPair

SetGroupName sets the GroupName field's value.

func (*UserIdGroupPair) SetPeeringStatus

func (s *UserIdGroupPair) SetPeeringStatus(v string) *UserIdGroupPair

SetPeeringStatus sets the PeeringStatus field's value.

func (*UserIdGroupPair) SetUserId

func (s *UserIdGroupPair) SetUserId(v string) *UserIdGroupPair

SetUserId sets the UserId field's value.

func (*UserIdGroupPair) SetVpcId

func (s *UserIdGroupPair) SetVpcId(v string) *UserIdGroupPair

SetVpcId sets the VpcId field's value.

func (*UserIdGroupPair) SetVpcPeeringConnectionId

func (s *UserIdGroupPair) SetVpcPeeringConnectionId(v string) *UserIdGroupPair

SetVpcPeeringConnectionId sets the VpcPeeringConnectionId field's value.

func (UserIdGroupPair) String

func (s UserIdGroupPair) String() string

String returns the string representation

type VgwTelemetry

Describes telemetry for a VPN tunnel. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VgwTelemetry

type VgwTelemetry struct {

    // The number of accepted routes.
    AcceptedRouteCount *int64 `locationName:"acceptedRouteCount" type:"integer"`

    // The date and time of the last change in status.
    LastStatusChange *time.Time `locationName:"lastStatusChange" type:"timestamp" timestampFormat:"iso8601"`

    // The Internet-routable IP address of the virtual private gateway's outside
    // interface.
    OutsideIpAddress *string `locationName:"outsideIpAddress" type:"string"`

    // The status of the VPN tunnel.
    Status *string `locationName:"status" type:"string" enum:"TelemetryStatus"`

    // If an error occurs, a description of the error.
    StatusMessage *string `locationName:"statusMessage" type:"string"`
    // contains filtered or unexported fields
}

func (VgwTelemetry) GoString

func (s VgwTelemetry) GoString() string

GoString returns the string representation

func (*VgwTelemetry) SetAcceptedRouteCount

func (s *VgwTelemetry) SetAcceptedRouteCount(v int64) *VgwTelemetry

SetAcceptedRouteCount sets the AcceptedRouteCount field's value.

func (*VgwTelemetry) SetLastStatusChange

func (s *VgwTelemetry) SetLastStatusChange(v time.Time) *VgwTelemetry

SetLastStatusChange sets the LastStatusChange field's value.

func (*VgwTelemetry) SetOutsideIpAddress

func (s *VgwTelemetry) SetOutsideIpAddress(v string) *VgwTelemetry

SetOutsideIpAddress sets the OutsideIpAddress field's value.

func (*VgwTelemetry) SetStatus

func (s *VgwTelemetry) SetStatus(v string) *VgwTelemetry

SetStatus sets the Status field's value.

func (*VgwTelemetry) SetStatusMessage

func (s *VgwTelemetry) SetStatusMessage(v string) *VgwTelemetry

SetStatusMessage sets the StatusMessage field's value.

func (VgwTelemetry) String

func (s VgwTelemetry) String() string

String returns the string representation

type Volume

Describes a volume. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Volume

type Volume struct {

    // Information about the volume attachments.
    Attachments []*VolumeAttachment `locationName:"attachmentSet" locationNameList:"item" type:"list"`

    // The Availability Zone for the volume.
    AvailabilityZone *string `locationName:"availabilityZone" type:"string"`

    // The time stamp when volume creation was initiated.
    CreateTime *time.Time `locationName:"createTime" type:"timestamp" timestampFormat:"iso8601"`

    // Indicates whether the volume will be encrypted.
    Encrypted *bool `locationName:"encrypted" type:"boolean"`

    // The number of I/O operations per second (IOPS) that the volume supports.
    // For Provisioned IOPS SSD volumes, this represents the number of IOPS that
    // are provisioned for the volume. For General Purpose SSD volumes, this represents
    // the baseline performance of the volume and the rate at which the volume accumulates
    // I/O credits for bursting. For more information on General Purpose SSD baseline
    // performance, I/O credits, and bursting, see Amazon EBS Volume Types (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSVolumeTypes.html)
    // in the Amazon Elastic Compute Cloud User Guide.
    //
    // Constraint: Range is 100-20000 IOPS for io1 volumes and 100-10000 IOPS for
    // gp2 volumes.
    //
    // Condition: This parameter is required for requests to create io1 volumes;
    // it is not used in requests to create gp2, st1, sc1, or standard volumes.
    Iops *int64 `locationName:"iops" type:"integer"`

    // The full ARN of the AWS Key Management Service (AWS KMS) customer master
    // key (CMK) that was used to protect the volume encryption key for the volume.
    KmsKeyId *string `locationName:"kmsKeyId" type:"string"`

    // The size of the volume, in GiBs.
    Size *int64 `locationName:"size" type:"integer"`

    // The snapshot from which the volume was created, if applicable.
    SnapshotId *string `locationName:"snapshotId" type:"string"`

    // The volume state.
    State *string `locationName:"status" type:"string" enum:"VolumeState"`

    // Any tags assigned to the volume.
    Tags []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"`

    // The ID of the volume.
    VolumeId *string `locationName:"volumeId" type:"string"`

    // The volume type. This can be gp2 for General Purpose SSD, io1 for Provisioned
    // IOPS SSD, st1 for Throughput Optimized HDD, sc1 for Cold HDD, or standard
    // for Magnetic volumes.
    VolumeType *string `locationName:"volumeType" type:"string" enum:"VolumeType"`
    // contains filtered or unexported fields
}

func (Volume) GoString

func (s Volume) GoString() string

GoString returns the string representation

func (*Volume) SetAttachments

func (s *Volume) SetAttachments(v []*VolumeAttachment) *Volume

SetAttachments sets the Attachments field's value.

func (*Volume) SetAvailabilityZone

func (s *Volume) SetAvailabilityZone(v string) *Volume

SetAvailabilityZone sets the AvailabilityZone field's value.

func (*Volume) SetCreateTime

func (s *Volume) SetCreateTime(v time.Time) *Volume

SetCreateTime sets the CreateTime field's value.

func (*Volume) SetEncrypted

func (s *Volume) SetEncrypted(v bool) *Volume

SetEncrypted sets the Encrypted field's value.

func (*Volume) SetIops

func (s *Volume) SetIops(v int64) *Volume

SetIops sets the Iops field's value.

func (*Volume) SetKmsKeyId

func (s *Volume) SetKmsKeyId(v string) *Volume

SetKmsKeyId sets the KmsKeyId field's value.

func (*Volume) SetSize

func (s *Volume) SetSize(v int64) *Volume

SetSize sets the Size field's value.

func (*Volume) SetSnapshotId

func (s *Volume) SetSnapshotId(v string) *Volume

SetSnapshotId sets the SnapshotId field's value.

func (*Volume) SetState

func (s *Volume) SetState(v string) *Volume

SetState sets the State field's value.

func (*Volume) SetTags

func (s *Volume) SetTags(v []*Tag) *Volume

SetTags sets the Tags field's value.

func (*Volume) SetVolumeId

func (s *Volume) SetVolumeId(v string) *Volume

SetVolumeId sets the VolumeId field's value.

func (*Volume) SetVolumeType

func (s *Volume) SetVolumeType(v string) *Volume

SetVolumeType sets the VolumeType field's value.

func (Volume) String

func (s Volume) String() string

String returns the string representation

type VolumeAttachment

Describes volume attachment details. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VolumeAttachment

type VolumeAttachment struct {

    // The time stamp when the attachment initiated.
    AttachTime *time.Time `locationName:"attachTime" type:"timestamp" timestampFormat:"iso8601"`

    // Indicates whether the EBS volume is deleted on instance termination.
    DeleteOnTermination *bool `locationName:"deleteOnTermination" type:"boolean"`

    // The device name.
    Device *string `locationName:"device" type:"string"`

    // The ID of the instance.
    InstanceId *string `locationName:"instanceId" type:"string"`

    // The attachment state of the volume.
    State *string `locationName:"status" type:"string" enum:"VolumeAttachmentState"`

    // The ID of the volume.
    VolumeId *string `locationName:"volumeId" type:"string"`
    // contains filtered or unexported fields
}

func (VolumeAttachment) GoString

func (s VolumeAttachment) GoString() string

GoString returns the string representation

func (*VolumeAttachment) SetAttachTime

func (s *VolumeAttachment) SetAttachTime(v time.Time) *VolumeAttachment

SetAttachTime sets the AttachTime field's value.

func (*VolumeAttachment) SetDeleteOnTermination

func (s *VolumeAttachment) SetDeleteOnTermination(v bool) *VolumeAttachment

SetDeleteOnTermination sets the DeleteOnTermination field's value.

func (*VolumeAttachment) SetDevice

func (s *VolumeAttachment) SetDevice(v string) *VolumeAttachment

SetDevice sets the Device field's value.

func (*VolumeAttachment) SetInstanceId

func (s *VolumeAttachment) SetInstanceId(v string) *VolumeAttachment

SetInstanceId sets the InstanceId field's value.

func (*VolumeAttachment) SetState

func (s *VolumeAttachment) SetState(v string) *VolumeAttachment

SetState sets the State field's value.

func (*VolumeAttachment) SetVolumeId

func (s *VolumeAttachment) SetVolumeId(v string) *VolumeAttachment

SetVolumeId sets the VolumeId field's value.

func (VolumeAttachment) String

func (s VolumeAttachment) String() string

String returns the string representation

type VolumeDetail

Describes an EBS volume. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VolumeDetail

type VolumeDetail struct {

    // The size of the volume, in GiB.
    //
    // Size is a required field
    Size *int64 `locationName:"size" type:"long" required:"true"`
    // contains filtered or unexported fields
}

func (VolumeDetail) GoString

func (s VolumeDetail) GoString() string

GoString returns the string representation

func (*VolumeDetail) SetSize

func (s *VolumeDetail) SetSize(v int64) *VolumeDetail

SetSize sets the Size field's value.

func (VolumeDetail) String

func (s VolumeDetail) String() string

String returns the string representation

func (*VolumeDetail) Validate

func (s *VolumeDetail) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type VolumeModification

Describes the modification status of an EBS volume.

If the volume has never been modified, some element values will be null. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VolumeModification

type VolumeModification struct {

    // Modification completion or failure time.
    EndTime *time.Time `locationName:"endTime" type:"timestamp" timestampFormat:"iso8601"`

    // Current state of modification. Modification state is null for unmodified
    // volumes.
    ModificationState *string `locationName:"modificationState" type:"string" enum:"VolumeModificationState"`

    // Original IOPS rate of the volume being modified.
    OriginalIops *int64 `locationName:"originalIops" type:"integer"`

    // Original size of the volume being modified.
    OriginalSize *int64 `locationName:"originalSize" type:"integer"`

    // Original EBS volume type of the volume being modified.
    OriginalVolumeType *string `locationName:"originalVolumeType" type:"string" enum:"VolumeType"`

    // Modification progress from 0 to 100%.
    Progress *int64 `locationName:"progress" type:"long"`

    // Modification start time
    StartTime *time.Time `locationName:"startTime" type:"timestamp" timestampFormat:"iso8601"`

    // Generic status message on modification progress or failure.
    StatusMessage *string `locationName:"statusMessage" type:"string"`

    // Target IOPS rate of the volume being modified.
    TargetIops *int64 `locationName:"targetIops" type:"integer"`

    // Target size of the volume being modified.
    TargetSize *int64 `locationName:"targetSize" type:"integer"`

    // Target EBS volume type of the volume being modified.
    TargetVolumeType *string `locationName:"targetVolumeType" type:"string" enum:"VolumeType"`

    // ID of the volume being modified.
    VolumeId *string `locationName:"volumeId" type:"string"`
    // contains filtered or unexported fields
}

func (VolumeModification) GoString

func (s VolumeModification) GoString() string

GoString returns the string representation

func (*VolumeModification) SetEndTime

func (s *VolumeModification) SetEndTime(v time.Time) *VolumeModification

SetEndTime sets the EndTime field's value.

func (*VolumeModification) SetModificationState

func (s *VolumeModification) SetModificationState(v string) *VolumeModification

SetModificationState sets the ModificationState field's value.

func (*VolumeModification) SetOriginalIops

func (s *VolumeModification) SetOriginalIops(v int64) *VolumeModification

SetOriginalIops sets the OriginalIops field's value.

func (*VolumeModification) SetOriginalSize

func (s *VolumeModification) SetOriginalSize(v int64) *VolumeModification

SetOriginalSize sets the OriginalSize field's value.

func (*VolumeModification) SetOriginalVolumeType

func (s *VolumeModification) SetOriginalVolumeType(v string) *VolumeModification

SetOriginalVolumeType sets the OriginalVolumeType field's value.

func (*VolumeModification) SetProgress

func (s *VolumeModification) SetProgress(v int64) *VolumeModification

SetProgress sets the Progress field's value.

func (*VolumeModification) SetStartTime

func (s *VolumeModification) SetStartTime(v time.Time) *VolumeModification

SetStartTime sets the StartTime field's value.

func (*VolumeModification) SetStatusMessage

func (s *VolumeModification) SetStatusMessage(v string) *VolumeModification

SetStatusMessage sets the StatusMessage field's value.

func (*VolumeModification) SetTargetIops

func (s *VolumeModification) SetTargetIops(v int64) *VolumeModification

SetTargetIops sets the TargetIops field's value.

func (*VolumeModification) SetTargetSize

func (s *VolumeModification) SetTargetSize(v int64) *VolumeModification

SetTargetSize sets the TargetSize field's value.

func (*VolumeModification) SetTargetVolumeType

func (s *VolumeModification) SetTargetVolumeType(v string) *VolumeModification

SetTargetVolumeType sets the TargetVolumeType field's value.

func (*VolumeModification) SetVolumeId

func (s *VolumeModification) SetVolumeId(v string) *VolumeModification

SetVolumeId sets the VolumeId field's value.

func (VolumeModification) String

func (s VolumeModification) String() string

String returns the string representation

type VolumeStatusAction

Describes a volume status operation code. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VolumeStatusAction

type VolumeStatusAction struct {

    // The code identifying the operation, for example, enable-volume-io.
    Code *string `locationName:"code" type:"string"`

    // A description of the operation.
    Description *string `locationName:"description" type:"string"`

    // The ID of the event associated with this operation.
    EventId *string `locationName:"eventId" type:"string"`

    // The event type associated with this operation.
    EventType *string `locationName:"eventType" type:"string"`
    // contains filtered or unexported fields
}

func (VolumeStatusAction) GoString

func (s VolumeStatusAction) GoString() string

GoString returns the string representation

func (*VolumeStatusAction) SetCode

func (s *VolumeStatusAction) SetCode(v string) *VolumeStatusAction

SetCode sets the Code field's value.

func (*VolumeStatusAction) SetDescription

func (s *VolumeStatusAction) SetDescription(v string) *VolumeStatusAction

SetDescription sets the Description field's value.

func (*VolumeStatusAction) SetEventId

func (s *VolumeStatusAction) SetEventId(v string) *VolumeStatusAction

SetEventId sets the EventId field's value.

func (*VolumeStatusAction) SetEventType

func (s *VolumeStatusAction) SetEventType(v string) *VolumeStatusAction

SetEventType sets the EventType field's value.

func (VolumeStatusAction) String

func (s VolumeStatusAction) String() string

String returns the string representation

type VolumeStatusDetails

Describes a volume status. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VolumeStatusDetails

type VolumeStatusDetails struct {

    // The name of the volume status.
    Name *string `locationName:"name" type:"string" enum:"VolumeStatusName"`

    // The intended status of the volume status.
    Status *string `locationName:"status" type:"string"`
    // contains filtered or unexported fields
}

func (VolumeStatusDetails) GoString

func (s VolumeStatusDetails) GoString() string

GoString returns the string representation

func (*VolumeStatusDetails) SetName

func (s *VolumeStatusDetails) SetName(v string) *VolumeStatusDetails

SetName sets the Name field's value.

func (*VolumeStatusDetails) SetStatus

func (s *VolumeStatusDetails) SetStatus(v string) *VolumeStatusDetails

SetStatus sets the Status field's value.

func (VolumeStatusDetails) String

func (s VolumeStatusDetails) String() string

String returns the string representation

type VolumeStatusEvent

Describes a volume status event. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VolumeStatusEvent

type VolumeStatusEvent struct {

    // A description of the event.
    Description *string `locationName:"description" type:"string"`

    // The ID of this event.
    EventId *string `locationName:"eventId" type:"string"`

    // The type of this event.
    EventType *string `locationName:"eventType" type:"string"`

    // The latest end time of the event.
    NotAfter *time.Time `locationName:"notAfter" type:"timestamp" timestampFormat:"iso8601"`

    // The earliest start time of the event.
    NotBefore *time.Time `locationName:"notBefore" type:"timestamp" timestampFormat:"iso8601"`
    // contains filtered or unexported fields
}

func (VolumeStatusEvent) GoString

func (s VolumeStatusEvent) GoString() string

GoString returns the string representation

func (*VolumeStatusEvent) SetDescription

func (s *VolumeStatusEvent) SetDescription(v string) *VolumeStatusEvent

SetDescription sets the Description field's value.

func (*VolumeStatusEvent) SetEventId

func (s *VolumeStatusEvent) SetEventId(v string) *VolumeStatusEvent

SetEventId sets the EventId field's value.

func (*VolumeStatusEvent) SetEventType

func (s *VolumeStatusEvent) SetEventType(v string) *VolumeStatusEvent

SetEventType sets the EventType field's value.

func (*VolumeStatusEvent) SetNotAfter

func (s *VolumeStatusEvent) SetNotAfter(v time.Time) *VolumeStatusEvent

SetNotAfter sets the NotAfter field's value.

func (*VolumeStatusEvent) SetNotBefore

func (s *VolumeStatusEvent) SetNotBefore(v time.Time) *VolumeStatusEvent

SetNotBefore sets the NotBefore field's value.

func (VolumeStatusEvent) String

func (s VolumeStatusEvent) String() string

String returns the string representation

type VolumeStatusInfo

Describes the status of a volume. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VolumeStatusInfo

type VolumeStatusInfo struct {

    // The details of the volume status.
    Details []*VolumeStatusDetails `locationName:"details" locationNameList:"item" type:"list"`

    // The status of the volume.
    Status *string `locationName:"status" type:"string" enum:"VolumeStatusInfoStatus"`
    // contains filtered or unexported fields
}

func (VolumeStatusInfo) GoString

func (s VolumeStatusInfo) GoString() string

GoString returns the string representation

func (*VolumeStatusInfo) SetDetails

func (s *VolumeStatusInfo) SetDetails(v []*VolumeStatusDetails) *VolumeStatusInfo

SetDetails sets the Details field's value.

func (*VolumeStatusInfo) SetStatus

func (s *VolumeStatusInfo) SetStatus(v string) *VolumeStatusInfo

SetStatus sets the Status field's value.

func (VolumeStatusInfo) String

func (s VolumeStatusInfo) String() string

String returns the string representation

type VolumeStatusItem

Describes the volume status. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VolumeStatusItem

type VolumeStatusItem struct {

    // The details of the operation.
    Actions []*VolumeStatusAction `locationName:"actionsSet" locationNameList:"item" type:"list"`

    // The Availability Zone of the volume.
    AvailabilityZone *string `locationName:"availabilityZone" type:"string"`

    // A list of events associated with the volume.
    Events []*VolumeStatusEvent `locationName:"eventsSet" locationNameList:"item" type:"list"`

    // The volume ID.
    VolumeId *string `locationName:"volumeId" type:"string"`

    // The volume status.
    VolumeStatus *VolumeStatusInfo `locationName:"volumeStatus" type:"structure"`
    // contains filtered or unexported fields
}

func (VolumeStatusItem) GoString

func (s VolumeStatusItem) GoString() string

GoString returns the string representation

func (*VolumeStatusItem) SetActions

func (s *VolumeStatusItem) SetActions(v []*VolumeStatusAction) *VolumeStatusItem

SetActions sets the Actions field's value.

func (*VolumeStatusItem) SetAvailabilityZone

func (s *VolumeStatusItem) SetAvailabilityZone(v string) *VolumeStatusItem

SetAvailabilityZone sets the AvailabilityZone field's value.

func (*VolumeStatusItem) SetEvents

func (s *VolumeStatusItem) SetEvents(v []*VolumeStatusEvent) *VolumeStatusItem

SetEvents sets the Events field's value.

func (*VolumeStatusItem) SetVolumeId

func (s *VolumeStatusItem) SetVolumeId(v string) *VolumeStatusItem

SetVolumeId sets the VolumeId field's value.

func (*VolumeStatusItem) SetVolumeStatus

func (s *VolumeStatusItem) SetVolumeStatus(v *VolumeStatusInfo) *VolumeStatusItem

SetVolumeStatus sets the VolumeStatus field's value.

func (VolumeStatusItem) String

func (s VolumeStatusItem) String() string

String returns the string representation

type Vpc

Describes a VPC. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Vpc

type Vpc struct {

    // The IPv4 CIDR block for the VPC.
    CidrBlock *string `locationName:"cidrBlock" type:"string"`

    // The ID of the set of DHCP options you've associated with the VPC (or default
    // if the default options are associated with the VPC).
    DhcpOptionsId *string `locationName:"dhcpOptionsId" type:"string"`

    // The allowed tenancy of instances launched into the VPC.
    InstanceTenancy *string `locationName:"instanceTenancy" type:"string" enum:"Tenancy"`

    // Information about the IPv6 CIDR blocks associated with the VPC.
    Ipv6CidrBlockAssociationSet []*VpcIpv6CidrBlockAssociation `locationName:"ipv6CidrBlockAssociationSet" locationNameList:"item" type:"list"`

    // Indicates whether the VPC is the default VPC.
    IsDefault *bool `locationName:"isDefault" type:"boolean"`

    // The current state of the VPC.
    State *string `locationName:"state" type:"string" enum:"VpcState"`

    // Any tags assigned to the VPC.
    Tags []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"`

    // The ID of the VPC.
    VpcId *string `locationName:"vpcId" type:"string"`
    // contains filtered or unexported fields
}

func (Vpc) GoString

func (s Vpc) GoString() string

GoString returns the string representation

func (*Vpc) SetCidrBlock

func (s *Vpc) SetCidrBlock(v string) *Vpc

SetCidrBlock sets the CidrBlock field's value.

func (*Vpc) SetDhcpOptionsId

func (s *Vpc) SetDhcpOptionsId(v string) *Vpc

SetDhcpOptionsId sets the DhcpOptionsId field's value.

func (*Vpc) SetInstanceTenancy

func (s *Vpc) SetInstanceTenancy(v string) *Vpc

SetInstanceTenancy sets the InstanceTenancy field's value.

func (*Vpc) SetIpv6CidrBlockAssociationSet

func (s *Vpc) SetIpv6CidrBlockAssociationSet(v []*VpcIpv6CidrBlockAssociation) *Vpc

SetIpv6CidrBlockAssociationSet sets the Ipv6CidrBlockAssociationSet field's value.

func (*Vpc) SetIsDefault

func (s *Vpc) SetIsDefault(v bool) *Vpc

SetIsDefault sets the IsDefault field's value.

func (*Vpc) SetState

func (s *Vpc) SetState(v string) *Vpc

SetState sets the State field's value.

func (*Vpc) SetTags

func (s *Vpc) SetTags(v []*Tag) *Vpc

SetTags sets the Tags field's value.

func (*Vpc) SetVpcId

func (s *Vpc) SetVpcId(v string) *Vpc

SetVpcId sets the VpcId field's value.

func (Vpc) String

func (s Vpc) String() string

String returns the string representation

type VpcAttachment

Describes an attachment between a virtual private gateway and a VPC. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VpcAttachment

type VpcAttachment struct {

    // The current state of the attachment.
    State *string `locationName:"state" type:"string" enum:"AttachmentStatus"`

    // The ID of the VPC.
    VpcId *string `locationName:"vpcId" type:"string"`
    // contains filtered or unexported fields
}

func (VpcAttachment) GoString

func (s VpcAttachment) GoString() string

GoString returns the string representation

func (*VpcAttachment) SetState

func (s *VpcAttachment) SetState(v string) *VpcAttachment

SetState sets the State field's value.

func (*VpcAttachment) SetVpcId

func (s *VpcAttachment) SetVpcId(v string) *VpcAttachment

SetVpcId sets the VpcId field's value.

func (VpcAttachment) String

func (s VpcAttachment) String() string

String returns the string representation

type VpcCidrBlockState

Describes the state of a CIDR block. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VpcCidrBlockState

type VpcCidrBlockState struct {

    // The state of the CIDR block.
    State *string `locationName:"state" type:"string" enum:"VpcCidrBlockStateCode"`

    // A message about the status of the CIDR block, if applicable.
    StatusMessage *string `locationName:"statusMessage" type:"string"`
    // contains filtered or unexported fields
}

func (VpcCidrBlockState) GoString

func (s VpcCidrBlockState) GoString() string

GoString returns the string representation

func (*VpcCidrBlockState) SetState

func (s *VpcCidrBlockState) SetState(v string) *VpcCidrBlockState

SetState sets the State field's value.

func (*VpcCidrBlockState) SetStatusMessage

func (s *VpcCidrBlockState) SetStatusMessage(v string) *VpcCidrBlockState

SetStatusMessage sets the StatusMessage field's value.

func (VpcCidrBlockState) String

func (s VpcCidrBlockState) String() string

String returns the string representation

Describes whether a VPC is enabled for ClassicLink. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VpcClassicLink

type VpcClassicLink struct {

    // Indicates whether the VPC is enabled for ClassicLink.
    ClassicLinkEnabled *bool `locationName:"classicLinkEnabled" type:"boolean"`

    // Any tags assigned to the VPC.
    Tags []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"`

    // The ID of the VPC.
    VpcId *string `locationName:"vpcId" type:"string"`
    // contains filtered or unexported fields
}

func (VpcClassicLink) GoString

func (s VpcClassicLink) GoString() string

GoString returns the string representation

func (*VpcClassicLink) SetClassicLinkEnabled

func (s *VpcClassicLink) SetClassicLinkEnabled(v bool) *VpcClassicLink

SetClassicLinkEnabled sets the ClassicLinkEnabled field's value.

func (*VpcClassicLink) SetTags

func (s *VpcClassicLink) SetTags(v []*Tag) *VpcClassicLink

SetTags sets the Tags field's value.

func (*VpcClassicLink) SetVpcId

func (s *VpcClassicLink) SetVpcId(v string) *VpcClassicLink

SetVpcId sets the VpcId field's value.

func (VpcClassicLink) String

func (s VpcClassicLink) String() string

String returns the string representation

type VpcEndpoint

Describes a VPC endpoint. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VpcEndpoint

type VpcEndpoint struct {

    // The date and time the VPC endpoint was created.
    CreationTimestamp *time.Time `locationName:"creationTimestamp" type:"timestamp" timestampFormat:"iso8601"`

    // The policy document associated with the endpoint.
    PolicyDocument *string `locationName:"policyDocument" type:"string"`

    // One or more route tables associated with the endpoint.
    RouteTableIds []*string `locationName:"routeTableIdSet" locationNameList:"item" type:"list"`

    // The name of the AWS service to which the endpoint is associated.
    ServiceName *string `locationName:"serviceName" type:"string"`

    // The state of the VPC endpoint.
    State *string `locationName:"state" type:"string" enum:"State"`

    // The ID of the VPC endpoint.
    VpcEndpointId *string `locationName:"vpcEndpointId" type:"string"`

    // The ID of the VPC to which the endpoint is associated.
    VpcId *string `locationName:"vpcId" type:"string"`
    // contains filtered or unexported fields
}

func (VpcEndpoint) GoString

func (s VpcEndpoint) GoString() string

GoString returns the string representation

func (*VpcEndpoint) SetCreationTimestamp

func (s *VpcEndpoint) SetCreationTimestamp(v time.Time) *VpcEndpoint

SetCreationTimestamp sets the CreationTimestamp field's value.

func (*VpcEndpoint) SetPolicyDocument

func (s *VpcEndpoint) SetPolicyDocument(v string) *VpcEndpoint

SetPolicyDocument sets the PolicyDocument field's value.

func (*VpcEndpoint) SetRouteTableIds

func (s *VpcEndpoint) SetRouteTableIds(v []*string) *VpcEndpoint

SetRouteTableIds sets the RouteTableIds field's value.

func (*VpcEndpoint) SetServiceName

func (s *VpcEndpoint) SetServiceName(v string) *VpcEndpoint

SetServiceName sets the ServiceName field's value.

func (*VpcEndpoint) SetState

func (s *VpcEndpoint) SetState(v string) *VpcEndpoint

SetState sets the State field's value.

func (*VpcEndpoint) SetVpcEndpointId

func (s *VpcEndpoint) SetVpcEndpointId(v string) *VpcEndpoint

SetVpcEndpointId sets the VpcEndpointId field's value.

func (*VpcEndpoint) SetVpcId

func (s *VpcEndpoint) SetVpcId(v string) *VpcEndpoint

SetVpcId sets the VpcId field's value.

func (VpcEndpoint) String

func (s VpcEndpoint) String() string

String returns the string representation

type VpcIpv6CidrBlockAssociation

Describes an IPv6 CIDR block associated with a VPC. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VpcIpv6CidrBlockAssociation

type VpcIpv6CidrBlockAssociation struct {

    // The association ID for the IPv6 CIDR block.
    AssociationId *string `locationName:"associationId" type:"string"`

    // The IPv6 CIDR block.
    Ipv6CidrBlock *string `locationName:"ipv6CidrBlock" type:"string"`

    // Information about the state of the CIDR block.
    Ipv6CidrBlockState *VpcCidrBlockState `locationName:"ipv6CidrBlockState" type:"structure"`
    // contains filtered or unexported fields
}

func (VpcIpv6CidrBlockAssociation) GoString

func (s VpcIpv6CidrBlockAssociation) GoString() string

GoString returns the string representation

func (*VpcIpv6CidrBlockAssociation) SetAssociationId

func (s *VpcIpv6CidrBlockAssociation) SetAssociationId(v string) *VpcIpv6CidrBlockAssociation

SetAssociationId sets the AssociationId field's value.

func (*VpcIpv6CidrBlockAssociation) SetIpv6CidrBlock

func (s *VpcIpv6CidrBlockAssociation) SetIpv6CidrBlock(v string) *VpcIpv6CidrBlockAssociation

SetIpv6CidrBlock sets the Ipv6CidrBlock field's value.

func (*VpcIpv6CidrBlockAssociation) SetIpv6CidrBlockState

func (s *VpcIpv6CidrBlockAssociation) SetIpv6CidrBlockState(v *VpcCidrBlockState) *VpcIpv6CidrBlockAssociation

SetIpv6CidrBlockState sets the Ipv6CidrBlockState field's value.

func (VpcIpv6CidrBlockAssociation) String

func (s VpcIpv6CidrBlockAssociation) String() string

String returns the string representation

type VpcPeeringConnection

Describes a VPC peering connection. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VpcPeeringConnection

type VpcPeeringConnection struct {

    // Information about the accepter VPC. CIDR block information is only returned
    // when describing an active VPC peering connection.
    AccepterVpcInfo *VpcPeeringConnectionVpcInfo `locationName:"accepterVpcInfo" type:"structure"`

    // The time that an unaccepted VPC peering connection will expire.
    ExpirationTime *time.Time `locationName:"expirationTime" type:"timestamp" timestampFormat:"iso8601"`

    // Information about the requester VPC. CIDR block information is only returned
    // when describing an active VPC peering connection.
    RequesterVpcInfo *VpcPeeringConnectionVpcInfo `locationName:"requesterVpcInfo" type:"structure"`

    // The status of the VPC peering connection.
    Status *VpcPeeringConnectionStateReason `locationName:"status" type:"structure"`

    // Any tags assigned to the resource.
    Tags []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"`

    // The ID of the VPC peering connection.
    VpcPeeringConnectionId *string `locationName:"vpcPeeringConnectionId" type:"string"`
    // contains filtered or unexported fields
}

func (VpcPeeringConnection) GoString

func (s VpcPeeringConnection) GoString() string

GoString returns the string representation

func (*VpcPeeringConnection) SetAccepterVpcInfo

func (s *VpcPeeringConnection) SetAccepterVpcInfo(v *VpcPeeringConnectionVpcInfo) *VpcPeeringConnection

SetAccepterVpcInfo sets the AccepterVpcInfo field's value.

func (*VpcPeeringConnection) SetExpirationTime

func (s *VpcPeeringConnection) SetExpirationTime(v time.Time) *VpcPeeringConnection

SetExpirationTime sets the ExpirationTime field's value.

func (*VpcPeeringConnection) SetRequesterVpcInfo

func (s *VpcPeeringConnection) SetRequesterVpcInfo(v *VpcPeeringConnectionVpcInfo) *VpcPeeringConnection

SetRequesterVpcInfo sets the RequesterVpcInfo field's value.

func (*VpcPeeringConnection) SetStatus

func (s *VpcPeeringConnection) SetStatus(v *VpcPeeringConnectionStateReason) *VpcPeeringConnection

SetStatus sets the Status field's value.

func (*VpcPeeringConnection) SetTags

func (s *VpcPeeringConnection) SetTags(v []*Tag) *VpcPeeringConnection

SetTags sets the Tags field's value.

func (*VpcPeeringConnection) SetVpcPeeringConnectionId

func (s *VpcPeeringConnection) SetVpcPeeringConnectionId(v string) *VpcPeeringConnection

SetVpcPeeringConnectionId sets the VpcPeeringConnectionId field's value.

func (VpcPeeringConnection) String

func (s VpcPeeringConnection) String() string

String returns the string representation

type VpcPeeringConnectionOptionsDescription

Describes the VPC peering connection options. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VpcPeeringConnectionOptionsDescription

type VpcPeeringConnectionOptionsDescription struct {

    // Indicates whether a local VPC can resolve public DNS hostnames to private
    // IP addresses when queried from instances in a peer VPC.
    AllowDnsResolutionFromRemoteVpc *bool `locationName:"allowDnsResolutionFromRemoteVpc" type:"boolean"`

    // Indicates whether a local ClassicLink connection can communicate with the
    // peer VPC over the VPC peering connection.
    AllowEgressFromLocalClassicLinkToRemoteVpc *bool `locationName:"allowEgressFromLocalClassicLinkToRemoteVpc" type:"boolean"`

    // Indicates whether a local VPC can communicate with a ClassicLink connection
    // in the peer VPC over the VPC peering connection.
    AllowEgressFromLocalVpcToRemoteClassicLink *bool `locationName:"allowEgressFromLocalVpcToRemoteClassicLink" type:"boolean"`
    // contains filtered or unexported fields
}

func (VpcPeeringConnectionOptionsDescription) GoString

func (s VpcPeeringConnectionOptionsDescription) GoString() string

GoString returns the string representation

func (*VpcPeeringConnectionOptionsDescription) SetAllowDnsResolutionFromRemoteVpc

func (s *VpcPeeringConnectionOptionsDescription) SetAllowDnsResolutionFromRemoteVpc(v bool) *VpcPeeringConnectionOptionsDescription

SetAllowDnsResolutionFromRemoteVpc sets the AllowDnsResolutionFromRemoteVpc field's value.

func (*VpcPeeringConnectionOptionsDescription) SetAllowEgressFromLocalClassicLinkToRemoteVpc

func (s *VpcPeeringConnectionOptionsDescription) SetAllowEgressFromLocalClassicLinkToRemoteVpc(v bool) *VpcPeeringConnectionOptionsDescription

SetAllowEgressFromLocalClassicLinkToRemoteVpc sets the AllowEgressFromLocalClassicLinkToRemoteVpc field's value.

func (s *VpcPeeringConnectionOptionsDescription) SetAllowEgressFromLocalVpcToRemoteClassicLink(v bool) *VpcPeeringConnectionOptionsDescription

SetAllowEgressFromLocalVpcToRemoteClassicLink sets the AllowEgressFromLocalVpcToRemoteClassicLink field's value.

func (VpcPeeringConnectionOptionsDescription) String

func (s VpcPeeringConnectionOptionsDescription) String() string

String returns the string representation

type VpcPeeringConnectionStateReason

Describes the status of a VPC peering connection. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VpcPeeringConnectionStateReason

type VpcPeeringConnectionStateReason struct {

    // The status of the VPC peering connection.
    Code *string `locationName:"code" type:"string" enum:"VpcPeeringConnectionStateReasonCode"`

    // A message that provides more information about the status, if applicable.
    Message *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

func (VpcPeeringConnectionStateReason) GoString

func (s VpcPeeringConnectionStateReason) GoString() string

GoString returns the string representation

func (*VpcPeeringConnectionStateReason) SetCode

func (s *VpcPeeringConnectionStateReason) SetCode(v string) *VpcPeeringConnectionStateReason

SetCode sets the Code field's value.

func (*VpcPeeringConnectionStateReason) SetMessage

func (s *VpcPeeringConnectionStateReason) SetMessage(v string) *VpcPeeringConnectionStateReason

SetMessage sets the Message field's value.

func (VpcPeeringConnectionStateReason) String

func (s VpcPeeringConnectionStateReason) String() string

String returns the string representation

type VpcPeeringConnectionVpcInfo

Describes a VPC in a VPC peering connection. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VpcPeeringConnectionVpcInfo

type VpcPeeringConnectionVpcInfo struct {

    // The IPv4 CIDR block for the VPC.
    CidrBlock *string `locationName:"cidrBlock" type:"string"`

    // The IPv6 CIDR block for the VPC.
    Ipv6CidrBlockSet []*Ipv6CidrBlock `locationName:"ipv6CidrBlockSet" locationNameList:"item" type:"list"`

    // The AWS account ID of the VPC owner.
    OwnerId *string `locationName:"ownerId" type:"string"`

    // Information about the VPC peering connection options for the accepter or
    // requester VPC.
    PeeringOptions *VpcPeeringConnectionOptionsDescription `locationName:"peeringOptions" type:"structure"`

    // The ID of the VPC.
    VpcId *string `locationName:"vpcId" type:"string"`
    // contains filtered or unexported fields
}

func (VpcPeeringConnectionVpcInfo) GoString

func (s VpcPeeringConnectionVpcInfo) GoString() string

GoString returns the string representation

func (*VpcPeeringConnectionVpcInfo) SetCidrBlock

func (s *VpcPeeringConnectionVpcInfo) SetCidrBlock(v string) *VpcPeeringConnectionVpcInfo

SetCidrBlock sets the CidrBlock field's value.

func (*VpcPeeringConnectionVpcInfo) SetIpv6CidrBlockSet

func (s *VpcPeeringConnectionVpcInfo) SetIpv6CidrBlockSet(v []*Ipv6CidrBlock) *VpcPeeringConnectionVpcInfo

SetIpv6CidrBlockSet sets the Ipv6CidrBlockSet field's value.

func (*VpcPeeringConnectionVpcInfo) SetOwnerId

func (s *VpcPeeringConnectionVpcInfo) SetOwnerId(v string) *VpcPeeringConnectionVpcInfo

SetOwnerId sets the OwnerId field's value.

func (*VpcPeeringConnectionVpcInfo) SetPeeringOptions

func (s *VpcPeeringConnectionVpcInfo) SetPeeringOptions(v *VpcPeeringConnectionOptionsDescription) *VpcPeeringConnectionVpcInfo

SetPeeringOptions sets the PeeringOptions field's value.

func (*VpcPeeringConnectionVpcInfo) SetVpcId

func (s *VpcPeeringConnectionVpcInfo) SetVpcId(v string) *VpcPeeringConnectionVpcInfo

SetVpcId sets the VpcId field's value.

func (VpcPeeringConnectionVpcInfo) String

func (s VpcPeeringConnectionVpcInfo) String() string

String returns the string representation

type VpnConnection

Describes a VPN connection. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VpnConnection

type VpnConnection struct {

    // The configuration information for the VPN connection's customer gateway (in
    // the native XML format). This element is always present in the CreateVpnConnection
    // response; however, it's present in the DescribeVpnConnections response only
    // if the VPN connection is in the pending or available state.
    CustomerGatewayConfiguration *string `locationName:"customerGatewayConfiguration" type:"string"`

    // The ID of the customer gateway at your end of the VPN connection.
    CustomerGatewayId *string `locationName:"customerGatewayId" type:"string"`

    // The VPN connection options.
    Options *VpnConnectionOptions `locationName:"options" type:"structure"`

    // The static routes associated with the VPN connection.
    Routes []*VpnStaticRoute `locationName:"routes" locationNameList:"item" type:"list"`

    // The current state of the VPN connection.
    State *string `locationName:"state" type:"string" enum:"VpnState"`

    // Any tags assigned to the VPN connection.
    Tags []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"`

    // The type of VPN connection.
    Type *string `locationName:"type" type:"string" enum:"GatewayType"`

    // Information about the VPN tunnel.
    VgwTelemetry []*VgwTelemetry `locationName:"vgwTelemetry" locationNameList:"item" type:"list"`

    // The ID of the VPN connection.
    VpnConnectionId *string `locationName:"vpnConnectionId" type:"string"`

    // The ID of the virtual private gateway at the AWS side of the VPN connection.
    VpnGatewayId *string `locationName:"vpnGatewayId" type:"string"`
    // contains filtered or unexported fields
}

func (VpnConnection) GoString

func (s VpnConnection) GoString() string

GoString returns the string representation

func (*VpnConnection) SetCustomerGatewayConfiguration

func (s *VpnConnection) SetCustomerGatewayConfiguration(v string) *VpnConnection

SetCustomerGatewayConfiguration sets the CustomerGatewayConfiguration field's value.

func (*VpnConnection) SetCustomerGatewayId

func (s *VpnConnection) SetCustomerGatewayId(v string) *VpnConnection

SetCustomerGatewayId sets the CustomerGatewayId field's value.

func (*VpnConnection) SetOptions

func (s *VpnConnection) SetOptions(v *VpnConnectionOptions) *VpnConnection

SetOptions sets the Options field's value.

func (*VpnConnection) SetRoutes

func (s *VpnConnection) SetRoutes(v []*VpnStaticRoute) *VpnConnection

SetRoutes sets the Routes field's value.

func (*VpnConnection) SetState

func (s *VpnConnection) SetState(v string) *VpnConnection

SetState sets the State field's value.

func (*VpnConnection) SetTags

func (s *VpnConnection) SetTags(v []*Tag) *VpnConnection

SetTags sets the Tags field's value.

func (*VpnConnection) SetType

func (s *VpnConnection) SetType(v string) *VpnConnection

SetType sets the Type field's value.

func (*VpnConnection) SetVgwTelemetry

func (s *VpnConnection) SetVgwTelemetry(v []*VgwTelemetry) *VpnConnection

SetVgwTelemetry sets the VgwTelemetry field's value.

func (*VpnConnection) SetVpnConnectionId

func (s *VpnConnection) SetVpnConnectionId(v string) *VpnConnection

SetVpnConnectionId sets the VpnConnectionId field's value.

func (*VpnConnection) SetVpnGatewayId

func (s *VpnConnection) SetVpnGatewayId(v string) *VpnConnection

SetVpnGatewayId sets the VpnGatewayId field's value.

func (VpnConnection) String

func (s VpnConnection) String() string

String returns the string representation

type VpnConnectionOptions

Describes VPN connection options. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VpnConnectionOptions

type VpnConnectionOptions struct {

    // Indicates whether the VPN connection uses static routes only. Static routes
    // must be used for devices that don't support BGP.
    StaticRoutesOnly *bool `locationName:"staticRoutesOnly" type:"boolean"`
    // contains filtered or unexported fields
}

func (VpnConnectionOptions) GoString

func (s VpnConnectionOptions) GoString() string

GoString returns the string representation

func (*VpnConnectionOptions) SetStaticRoutesOnly

func (s *VpnConnectionOptions) SetStaticRoutesOnly(v bool) *VpnConnectionOptions

SetStaticRoutesOnly sets the StaticRoutesOnly field's value.

func (VpnConnectionOptions) String

func (s VpnConnectionOptions) String() string

String returns the string representation

type VpnConnectionOptionsSpecification

Describes VPN connection options. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VpnConnectionOptionsSpecification

type VpnConnectionOptionsSpecification struct {

    // Indicates whether the VPN connection uses static routes only. Static routes
    // must be used for devices that don't support BGP.
    StaticRoutesOnly *bool `locationName:"staticRoutesOnly" type:"boolean"`
    // contains filtered or unexported fields
}

func (VpnConnectionOptionsSpecification) GoString

func (s VpnConnectionOptionsSpecification) GoString() string

GoString returns the string representation

func (*VpnConnectionOptionsSpecification) SetStaticRoutesOnly

func (s *VpnConnectionOptionsSpecification) SetStaticRoutesOnly(v bool) *VpnConnectionOptionsSpecification

SetStaticRoutesOnly sets the StaticRoutesOnly field's value.

func (VpnConnectionOptionsSpecification) String

func (s VpnConnectionOptionsSpecification) String() string

String returns the string representation

type VpnGateway

Describes a virtual private gateway. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VpnGateway

type VpnGateway struct {

    // The Availability Zone where the virtual private gateway was created, if applicable.
    // This field may be empty or not returned.
    AvailabilityZone *string `locationName:"availabilityZone" type:"string"`

    // The current state of the virtual private gateway.
    State *string `locationName:"state" type:"string" enum:"VpnState"`

    // Any tags assigned to the virtual private gateway.
    Tags []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"`

    // The type of VPN connection the virtual private gateway supports.
    Type *string `locationName:"type" type:"string" enum:"GatewayType"`

    // Any VPCs attached to the virtual private gateway.
    VpcAttachments []*VpcAttachment `locationName:"attachments" locationNameList:"item" type:"list"`

    // The ID of the virtual private gateway.
    VpnGatewayId *string `locationName:"vpnGatewayId" type:"string"`
    // contains filtered or unexported fields
}

func (VpnGateway) GoString

func (s VpnGateway) GoString() string

GoString returns the string representation

func (*VpnGateway) SetAvailabilityZone

func (s *VpnGateway) SetAvailabilityZone(v string) *VpnGateway

SetAvailabilityZone sets the AvailabilityZone field's value.

func (*VpnGateway) SetState

func (s *VpnGateway) SetState(v string) *VpnGateway

SetState sets the State field's value.

func (*VpnGateway) SetTags

func (s *VpnGateway) SetTags(v []*Tag) *VpnGateway

SetTags sets the Tags field's value.

func (*VpnGateway) SetType

func (s *VpnGateway) SetType(v string) *VpnGateway

SetType sets the Type field's value.

func (*VpnGateway) SetVpcAttachments

func (s *VpnGateway) SetVpcAttachments(v []*VpcAttachment) *VpnGateway

SetVpcAttachments sets the VpcAttachments field's value.

func (*VpnGateway) SetVpnGatewayId

func (s *VpnGateway) SetVpnGatewayId(v string) *VpnGateway

SetVpnGatewayId sets the VpnGatewayId field's value.

func (VpnGateway) String

func (s VpnGateway) String() string

String returns the string representation

type VpnStaticRoute

Describes a static route for a VPN connection. Please also see https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VpnStaticRoute

type VpnStaticRoute struct {

    // The CIDR block associated with the local subnet of the customer data center.
    DestinationCidrBlock *string `locationName:"destinationCidrBlock" type:"string"`

    // Indicates how the routes were provided.
    Source *string `locationName:"source" type:"string" enum:"VpnStaticRouteSource"`

    // The current state of the static route.
    State *string `locationName:"state" type:"string" enum:"VpnState"`
    // contains filtered or unexported fields
}

func (VpnStaticRoute) GoString

func (s VpnStaticRoute) GoString() string

GoString returns the string representation

func (*VpnStaticRoute) SetDestinationCidrBlock

func (s *VpnStaticRoute) SetDestinationCidrBlock(v string) *VpnStaticRoute

SetDestinationCidrBlock sets the DestinationCidrBlock field's value.

func (*VpnStaticRoute) SetSource

func (s *VpnStaticRoute) SetSource(v string) *VpnStaticRoute

SetSource sets the Source field's value.

func (*VpnStaticRoute) SetState

func (s *VpnStaticRoute) SetState(v string) *VpnStaticRoute

SetState sets the State field's value.

func (VpnStaticRoute) String

func (s VpnStaticRoute) String() string

String returns the string representation

Subdirectories

Name Synopsis
..
ec2iface Package ec2iface provides an interface to enable mocking the Amazon Elastic Compute Cloud service client for testing your code.