cloud

package
v1.23.0 Latest Latest
Warning

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

Go to latest
Published: Sep 15, 2023 License: Apache-2.0 Imports: 31 Imported by: 4

Documentation

Overview

Package cloud is a generated GoMock package.

Package cloud is a generated GoMock package.

Package cloud is a generated GoMock package.

Index

Constants

View Source
const (
	// VolumeTypeIO1 represents a provisioned IOPS SSD type of volume.
	VolumeTypeIO1 = "io1"
	// VolumeTypeIO2 represents a provisioned IOPS SSD type of volume.
	VolumeTypeIO2 = "io2"
	// VolumeTypeGP2 represents a general purpose SSD type of volume.
	VolumeTypeGP2 = "gp2"
	// VolumeTypeGP3 represents a general purpose SSD type of volume.
	VolumeTypeGP3 = "gp3"
	// VolumeTypeSC1 represents a cold HDD (sc1) type of volume.
	VolumeTypeSC1 = "sc1"
	// VolumeTypeST1 represents a throughput-optimized HDD type of volume.
	VolumeTypeST1 = "st1"
	// VolumeTypeSBG1 represents a capacity-optimized HDD type of volume. Only for SBE devices.
	VolumeTypeSBG1 = "sbg1"
	// VolumeTypeSBP1 represents a performance-optimized SSD type of volume. Only for SBE devices.
	VolumeTypeSBP1 = "sbp1"
	// VolumeTypeStandard represents a previous type of  volume.
	VolumeTypeStandard = "standard"
)

AWS volume types

View Source
const (
	// MaxNumTagsPerResource represents the maximum number of tags per AWS resource.
	MaxNumTagsPerResource = 50
	// MinTagKeyLength represents the minimum key length for a tag.
	MinTagKeyLength = 1
	// MaxTagKeyLength represents the maximum key length for a tag.
	MaxTagKeyLength = 128
	// MaxTagValueLength represents the maximum value length for a tag.
	MaxTagValueLength = 256
)

AWS provisioning limits. Source:

https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html#tag-restrictions
View Source
const (
	// VolumeNameTagKey is the key value that refers to the volume's name.
	VolumeNameTagKey = "CSIVolumeName"
	// SnapshotNameTagKey is the key value that refers to the snapshot's name.
	SnapshotNameTagKey = "CSIVolumeSnapshotName"
	// KubernetesTagKeyPrefix is the prefix of the key value that is reserved for Kubernetes.
	KubernetesTagKeyPrefix = "kubernetes.io"
	// AWSTagKeyPrefix is the prefix of the key value that is reserved for AWS.
	AWSTagKeyPrefix = "aws:"
	//AwsEbsDriverTagKey is the tag to identify if a volume/snapshot is managed by ebs csi driver
	AwsEbsDriverTagKey = "ebs.csi.aws.com/cluster"
)

Tags

View Source
const (
	// DefaultVolumeSize represents the default volume size.
	DefaultVolumeSize int64 = 100 * util.GiB
)

Defaults

Variables

View Source
var (
	// ErrMultiDisks is an error that is returned when multiple
	// disks are found with the same volume name.
	ErrMultiDisks = errors.New("Multiple disks with same name")

	// ErrDiskExistsDiffSize is an error that is returned if a disk with a given
	// name, but different size, is found.
	ErrDiskExistsDiffSize = errors.New("There is already a disk with same name and different size")

	// ErrNotFound is returned when a resource is not found.
	ErrNotFound = errors.New("Resource was not found")

	// ErrIdempotent is returned when another request with same idempotent token is in-flight.
	ErrIdempotentParameterMismatch = errors.New("Parameters on this idempotent request are inconsistent with parameters used in previous request(s)")

	// ErrAlreadyExists is returned when a resource is already existent.
	ErrAlreadyExists = errors.New("Resource already exists")

	// ErrVolumeInUse is returned when a volume is already attached to an instance.
	ErrVolumeInUse = errors.New("Request volume is already attached to an instance")

	// ErrMultiSnapshots is returned when multiple snapshots are found
	// with the same ID
	ErrMultiSnapshots = errors.New("Multiple snapshots with the same name found")

	// ErrInvalidMaxResults is returned when a MaxResults pagination parameter is between 1 and 4
	ErrInvalidMaxResults = errors.New("MaxResults parameter must be 0 or greater than or equal to 5")

	// VolumeNotBeingModified is returned if volume being described is not being modified
	VolumeNotBeingModified = fmt.Errorf("volume is not being modified")
)
View Source
var DefaultEC2MetadataClient = func() (EC2Metadata, error) {
	sess := session.Must(session.NewSession(&aws.Config{}))
	svc := ec2metadata.New(sess)
	return svc, nil
}
View Source
var DefaultKubernetesAPIClient = func() (kubernetes.Interface, error) {

	config, err := rest.InClusterConfig()
	if err != nil {
		return nil, err
	}

	clientset, err := kubernetes.NewForConfig(config)
	if err != nil {
		return nil, err
	}
	return clientset, nil
}

Functions

func GetDedicatedLimitForInstanceType added in v1.22.0

func GetDedicatedLimitForInstanceType(it string) int

func GetEBSLimitForInstanceType added in v1.6.0

func GetEBSLimitForInstanceType(it string) (int, bool)

func GetMaxAttachments added in v1.6.0

func GetMaxAttachments(nitro bool) int

func GetNVMeInstanceStoreVolumesForInstanceType added in v1.6.0

func GetNVMeInstanceStoreVolumesForInstanceType(it string) int

func IsNitroInstanceType added in v1.6.0

func IsNitroInstanceType(it string) bool

func RecordRequestsHandler added in v1.0.0

func RecordRequestsHandler(r *request.Request)

RecordRequestsComplete is added to the Complete chain; called after any request

func RecordThrottledRequestsHandler added in v1.0.0

func RecordThrottledRequestsHandler(r *request.Request)

RecordThrottlesAfterRetry is added to the AfterRetry chain; called after any error

func RegisterMetrics added in v1.0.0

func RegisterMetrics()

Types

type Cloud

type Cloud interface {
	CreateDisk(ctx context.Context, volumeName string, diskOptions *DiskOptions) (disk *Disk, err error)
	DeleteDisk(ctx context.Context, volumeID string) (success bool, err error)
	AttachDisk(ctx context.Context, volumeID string, nodeID string) (devicePath string, err error)
	DetachDisk(ctx context.Context, volumeID string, nodeID string) (err error)
	ResizeOrModifyDisk(ctx context.Context, volumeID string, newSizeBytes int64, options *ModifyDiskOptions) (newSize int64, err error)
	WaitForAttachmentState(ctx context.Context, volumeID, expectedState string, expectedInstance string, expectedDevice string, alreadyAssigned bool) (*ec2.VolumeAttachment, error)
	GetDiskByName(ctx context.Context, name string, capacityBytes int64) (disk *Disk, err error)
	GetDiskByID(ctx context.Context, volumeID string) (disk *Disk, err error)
	IsExistInstance(ctx context.Context, nodeID string) (success bool)
	CreateSnapshot(ctx context.Context, volumeID string, snapshotOptions *SnapshotOptions) (snapshot *Snapshot, err error)
	DeleteSnapshot(ctx context.Context, snapshotID string) (success bool, err error)
	GetSnapshotByName(ctx context.Context, name string) (snapshot *Snapshot, err error)
	GetSnapshotByID(ctx context.Context, snapshotID string) (snapshot *Snapshot, err error)
	ListSnapshots(ctx context.Context, volumeID string, maxResults int64, nextToken string) (listSnapshotsResponse *ListSnapshotsResponse, err error)
	EnableFastSnapshotRestores(ctx context.Context, availabilityZones []string, snapshotID string) (*ec2.EnableFastSnapshotRestoresOutput, error)
	AvailabilityZones(ctx context.Context) (map[string]struct{}, error)
}

func NewCloud

func NewCloud(region string, awsSdkDebugLog bool, userAgentExtra string) (Cloud, error)

NewCloud returns a new instance of AWS cloud It panics if session is invalid

type Disk

type Disk struct {
	VolumeID         string
	CapacityGiB      int64
	AvailabilityZone string
	SnapshotID       string
	OutpostArn       string
	Attachments      []string
}

Disk represents a EBS volume

type DiskOptions

type DiskOptions struct {
	CapacityBytes          int64
	Tags                   map[string]string
	VolumeType             string
	IOPSPerGB              int
	AllowIOPSPerGBIncrease bool
	IOPS                   int
	Throughput             int
	AvailabilityZone       string
	OutpostArn             string
	Encrypted              bool
	BlockExpress           bool
	// KmsKeyID represents a fully qualified resource name to the key to use for encryption.
	// example: arn:aws:kms:us-east-1:012345678910:key/abcd1234-a123-456a-a12b-a123b4cd56ef
	KmsKeyID   string
	SnapshotID string
}

DiskOptions represents parameters to create an EBS volume

type EC2Metadata

type EC2Metadata interface {
	Available() bool
	// ec2 instance metadata endpoints: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-data-retrieval.html
	GetMetadata(string) (string, error)
	GetInstanceIdentityDocument() (ec2metadata.EC2InstanceIdentityDocument, error)
}

type EC2MetadataClient added in v1.2.0

type EC2MetadataClient func() (EC2Metadata, error)

type KubernetesAPIClient added in v1.2.0

type KubernetesAPIClient func() (kubernetes.Interface, error)

type ListSnapshotsResponse added in v0.4.0

type ListSnapshotsResponse struct {
	Snapshots []*Snapshot
	NextToken string
}

ListSnapshotsResponse is the container for our snapshots along with a pagination token to pass back to the caller

type Metadata added in v0.4.0

type Metadata struct {
	InstanceID             string
	InstanceType           string
	Region                 string
	AvailabilityZone       string
	NumAttachedENIs        int
	NumBlockDeviceMappings int
	OutpostArn             arn.ARN
}

Metadata is info about the ec2 instance on which the driver is running

func EC2MetadataInstanceInfo added in v1.2.0

func EC2MetadataInstanceInfo(svc EC2Metadata, regionFromSession string) (*Metadata, error)

func KubernetesAPIInstanceInfo added in v1.2.0

func KubernetesAPIInstanceInfo(clientset kubernetes.Interface) (*Metadata, error)

func (*Metadata) GetAvailabilityZone added in v0.4.0

func (m *Metadata) GetAvailabilityZone() string

GetAvailabilityZone returns the Availability Zone which the instance is in.

func (*Metadata) GetInstanceID added in v0.4.0

func (m *Metadata) GetInstanceID() string

GetInstanceID returns the instance identification.

func (*Metadata) GetInstanceType added in v0.4.0

func (m *Metadata) GetInstanceType() string

GetInstanceType returns the instance type.

func (*Metadata) GetNumAttachedENIs added in v1.6.0

func (m *Metadata) GetNumAttachedENIs() int

func (*Metadata) GetNumBlockDeviceMappings added in v1.6.0

func (m *Metadata) GetNumBlockDeviceMappings() int

func (*Metadata) GetOutpostArn added in v0.7.0

func (m *Metadata) GetOutpostArn() arn.ARN

GetOutpostArn returns outpost arn if instance is running on an outpost. empty otherwise.

func (*Metadata) GetRegion added in v0.4.0

func (m *Metadata) GetRegion() string

GetRegion returns the region which the instance is in.

type MetadataService

type MetadataService interface {
	GetInstanceID() string
	GetInstanceType() string
	GetRegion() string
	GetAvailabilityZone() string
	GetNumAttachedENIs() int
	GetNumBlockDeviceMappings() int
	GetOutpostArn() arn.ARN
}

MetadataService represents AWS metadata service.

func NewMetadataService

func NewMetadataService(ec2MetadataClient EC2MetadataClient, k8sAPIClient KubernetesAPIClient, region string) (MetadataService, error)

type MockCloud added in v1.4.0

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

MockCloud is a mock of Cloud interface.

func NewMockCloud added in v1.4.0

func NewMockCloud(ctrl *gomock.Controller) *MockCloud

NewMockCloud creates a new mock instance.

func (*MockCloud) AttachDisk added in v1.4.0

func (m *MockCloud) AttachDisk(ctx context.Context, volumeID, nodeID string) (string, error)

AttachDisk mocks base method.

func (*MockCloud) AvailabilityZones added in v1.18.0

func (m *MockCloud) AvailabilityZones(ctx context.Context) (map[string]struct{}, error)

AvailabilityZones mocks base method.

func (*MockCloud) CreateDisk added in v1.4.0

func (m *MockCloud) CreateDisk(ctx context.Context, volumeName string, diskOptions *DiskOptions) (*Disk, error)

CreateDisk mocks base method.

func (*MockCloud) CreateSnapshot added in v1.4.0

func (m *MockCloud) CreateSnapshot(ctx context.Context, volumeID string, snapshotOptions *SnapshotOptions) (*Snapshot, error)

CreateSnapshot mocks base method.

func (*MockCloud) DeleteDisk added in v1.4.0

func (m *MockCloud) DeleteDisk(ctx context.Context, volumeID string) (bool, error)

DeleteDisk mocks base method.

func (*MockCloud) DeleteSnapshot added in v1.4.0

func (m *MockCloud) DeleteSnapshot(ctx context.Context, snapshotID string) (bool, error)

DeleteSnapshot mocks base method.

func (*MockCloud) DetachDisk added in v1.4.0

func (m *MockCloud) DetachDisk(ctx context.Context, volumeID, nodeID string) error

DetachDisk mocks base method.

func (*MockCloud) EXPECT added in v1.4.0

func (m *MockCloud) EXPECT() *MockCloudMockRecorder

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockCloud) EnableFastSnapshotRestores added in v1.18.0

func (m *MockCloud) EnableFastSnapshotRestores(ctx context.Context, availabilityZones []string, snapshotID string) (*ec2.EnableFastSnapshotRestoresOutput, error)

EnableFastSnapshotRestores mocks base method.

func (*MockCloud) GetDiskByID added in v1.4.0

func (m *MockCloud) GetDiskByID(ctx context.Context, volumeID string) (*Disk, error)

GetDiskByID mocks base method.

func (*MockCloud) GetDiskByName added in v1.4.0

func (m *MockCloud) GetDiskByName(ctx context.Context, name string, capacityBytes int64) (*Disk, error)

GetDiskByName mocks base method.

func (*MockCloud) GetSnapshotByID added in v1.4.0

func (m *MockCloud) GetSnapshotByID(ctx context.Context, snapshotID string) (*Snapshot, error)

GetSnapshotByID mocks base method.

func (*MockCloud) GetSnapshotByName added in v1.4.0

func (m *MockCloud) GetSnapshotByName(ctx context.Context, name string) (*Snapshot, error)

GetSnapshotByName mocks base method.

func (*MockCloud) IsExistInstance added in v1.4.0

func (m *MockCloud) IsExistInstance(ctx context.Context, nodeID string) bool

IsExistInstance mocks base method.

func (*MockCloud) ListSnapshots added in v1.4.0

func (m *MockCloud) ListSnapshots(ctx context.Context, volumeID string, maxResults int64, nextToken string) (*ListSnapshotsResponse, error)

ListSnapshots mocks base method.

func (*MockCloud) ResizeOrModifyDisk added in v1.22.0

func (m *MockCloud) ResizeOrModifyDisk(ctx context.Context, volumeID string, newSizeBytes int64, options *ModifyDiskOptions) (int64, error)

ResizeOrModifyDisk mocks base method.

func (*MockCloud) WaitForAttachmentState added in v1.4.0

func (m *MockCloud) WaitForAttachmentState(ctx context.Context, volumeID, expectedState, expectedInstance, expectedDevice string, alreadyAssigned bool) (*ec2.VolumeAttachment, error)

WaitForAttachmentState mocks base method.

type MockCloudMockRecorder added in v1.4.0

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

MockCloudMockRecorder is the mock recorder for MockCloud.

func (*MockCloudMockRecorder) AttachDisk added in v1.4.0

func (mr *MockCloudMockRecorder) AttachDisk(ctx, volumeID, nodeID interface{}) *gomock.Call

AttachDisk indicates an expected call of AttachDisk.

func (*MockCloudMockRecorder) AvailabilityZones added in v1.18.0

func (mr *MockCloudMockRecorder) AvailabilityZones(ctx interface{}) *gomock.Call

AvailabilityZones indicates an expected call of AvailabilityZones.

func (*MockCloudMockRecorder) CreateDisk added in v1.4.0

func (mr *MockCloudMockRecorder) CreateDisk(ctx, volumeName, diskOptions interface{}) *gomock.Call

CreateDisk indicates an expected call of CreateDisk.

func (*MockCloudMockRecorder) CreateSnapshot added in v1.4.0

func (mr *MockCloudMockRecorder) CreateSnapshot(ctx, volumeID, snapshotOptions interface{}) *gomock.Call

CreateSnapshot indicates an expected call of CreateSnapshot.

func (*MockCloudMockRecorder) DeleteDisk added in v1.4.0

func (mr *MockCloudMockRecorder) DeleteDisk(ctx, volumeID interface{}) *gomock.Call

DeleteDisk indicates an expected call of DeleteDisk.

func (*MockCloudMockRecorder) DeleteSnapshot added in v1.4.0

func (mr *MockCloudMockRecorder) DeleteSnapshot(ctx, snapshotID interface{}) *gomock.Call

DeleteSnapshot indicates an expected call of DeleteSnapshot.

func (*MockCloudMockRecorder) DetachDisk added in v1.4.0

func (mr *MockCloudMockRecorder) DetachDisk(ctx, volumeID, nodeID interface{}) *gomock.Call

DetachDisk indicates an expected call of DetachDisk.

func (*MockCloudMockRecorder) EnableFastSnapshotRestores added in v1.18.0

func (mr *MockCloudMockRecorder) EnableFastSnapshotRestores(ctx, availabilityZones, snapshotID interface{}) *gomock.Call

EnableFastSnapshotRestores indicates an expected call of EnableFastSnapshotRestores.

func (*MockCloudMockRecorder) GetDiskByID added in v1.4.0

func (mr *MockCloudMockRecorder) GetDiskByID(ctx, volumeID interface{}) *gomock.Call

GetDiskByID indicates an expected call of GetDiskByID.

func (*MockCloudMockRecorder) GetDiskByName added in v1.4.0

func (mr *MockCloudMockRecorder) GetDiskByName(ctx, name, capacityBytes interface{}) *gomock.Call

GetDiskByName indicates an expected call of GetDiskByName.

func (*MockCloudMockRecorder) GetSnapshotByID added in v1.4.0

func (mr *MockCloudMockRecorder) GetSnapshotByID(ctx, snapshotID interface{}) *gomock.Call

GetSnapshotByID indicates an expected call of GetSnapshotByID.

func (*MockCloudMockRecorder) GetSnapshotByName added in v1.4.0

func (mr *MockCloudMockRecorder) GetSnapshotByName(ctx, name interface{}) *gomock.Call

GetSnapshotByName indicates an expected call of GetSnapshotByName.

func (*MockCloudMockRecorder) IsExistInstance added in v1.4.0

func (mr *MockCloudMockRecorder) IsExistInstance(ctx, nodeID interface{}) *gomock.Call

IsExistInstance indicates an expected call of IsExistInstance.

func (*MockCloudMockRecorder) ListSnapshots added in v1.4.0

func (mr *MockCloudMockRecorder) ListSnapshots(ctx, volumeID, maxResults, nextToken interface{}) *gomock.Call

ListSnapshots indicates an expected call of ListSnapshots.

func (*MockCloudMockRecorder) ResizeOrModifyDisk added in v1.22.0

func (mr *MockCloudMockRecorder) ResizeOrModifyDisk(ctx, volumeID, newSizeBytes, options interface{}) *gomock.Call

ResizeOrModifyDisk indicates an expected call of ResizeOrModifyDisk.

func (*MockCloudMockRecorder) WaitForAttachmentState added in v1.4.0

func (mr *MockCloudMockRecorder) WaitForAttachmentState(ctx, volumeID, expectedState, expectedInstance, expectedDevice, alreadyAssigned interface{}) *gomock.Call

WaitForAttachmentState indicates an expected call of WaitForAttachmentState.

type MockEC2API added in v1.19.0

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

MockEC2API is a mock of EC2API interface.

func NewMockEC2API added in v1.19.0

func NewMockEC2API(ctrl *gomock.Controller) *MockEC2API

NewMockEC2API creates a new mock instance.

func (*MockEC2API) AcceptAddressTransfer added in v1.19.0

func (m *MockEC2API) AcceptAddressTransfer(arg0 *ec2.AcceptAddressTransferInput) (*ec2.AcceptAddressTransferOutput, error)

AcceptAddressTransfer mocks base method.

func (*MockEC2API) AcceptAddressTransferRequest added in v1.19.0

func (m *MockEC2API) AcceptAddressTransferRequest(arg0 *ec2.AcceptAddressTransferInput) (*request.Request, *ec2.AcceptAddressTransferOutput)

AcceptAddressTransferRequest mocks base method.

func (*MockEC2API) AcceptAddressTransferWithContext added in v1.19.0

func (m *MockEC2API) AcceptAddressTransferWithContext(arg0 context.Context, arg1 *ec2.AcceptAddressTransferInput, arg2 ...request.Option) (*ec2.AcceptAddressTransferOutput, error)

AcceptAddressTransferWithContext mocks base method.

func (*MockEC2API) AcceptReservedInstancesExchangeQuote added in v1.19.0

AcceptReservedInstancesExchangeQuote mocks base method.

func (*MockEC2API) AcceptReservedInstancesExchangeQuoteRequest added in v1.19.0

AcceptReservedInstancesExchangeQuoteRequest mocks base method.

func (*MockEC2API) AcceptReservedInstancesExchangeQuoteWithContext added in v1.19.0

func (m *MockEC2API) AcceptReservedInstancesExchangeQuoteWithContext(arg0 context.Context, arg1 *ec2.AcceptReservedInstancesExchangeQuoteInput, arg2 ...request.Option) (*ec2.AcceptReservedInstancesExchangeQuoteOutput, error)

AcceptReservedInstancesExchangeQuoteWithContext mocks base method.

func (*MockEC2API) AcceptTransitGatewayMulticastDomainAssociations added in v1.19.0

AcceptTransitGatewayMulticastDomainAssociations mocks base method.

func (*MockEC2API) AcceptTransitGatewayMulticastDomainAssociationsRequest added in v1.19.0

AcceptTransitGatewayMulticastDomainAssociationsRequest mocks base method.

func (*MockEC2API) AcceptTransitGatewayMulticastDomainAssociationsWithContext added in v1.19.0

func (m *MockEC2API) AcceptTransitGatewayMulticastDomainAssociationsWithContext(arg0 context.Context, arg1 *ec2.AcceptTransitGatewayMulticastDomainAssociationsInput, arg2 ...request.Option) (*ec2.AcceptTransitGatewayMulticastDomainAssociationsOutput, error)

AcceptTransitGatewayMulticastDomainAssociationsWithContext mocks base method.

func (*MockEC2API) AcceptTransitGatewayPeeringAttachment added in v1.19.0

AcceptTransitGatewayPeeringAttachment mocks base method.

func (*MockEC2API) AcceptTransitGatewayPeeringAttachmentRequest added in v1.19.0

AcceptTransitGatewayPeeringAttachmentRequest mocks base method.

func (*MockEC2API) AcceptTransitGatewayPeeringAttachmentWithContext added in v1.19.0

func (m *MockEC2API) AcceptTransitGatewayPeeringAttachmentWithContext(arg0 context.Context, arg1 *ec2.AcceptTransitGatewayPeeringAttachmentInput, arg2 ...request.Option) (*ec2.AcceptTransitGatewayPeeringAttachmentOutput, error)

AcceptTransitGatewayPeeringAttachmentWithContext mocks base method.

func (*MockEC2API) AcceptTransitGatewayVpcAttachment added in v1.19.0

AcceptTransitGatewayVpcAttachment mocks base method.

func (*MockEC2API) AcceptTransitGatewayVpcAttachmentRequest added in v1.19.0

AcceptTransitGatewayVpcAttachmentRequest mocks base method.

func (*MockEC2API) AcceptTransitGatewayVpcAttachmentWithContext added in v1.19.0

func (m *MockEC2API) AcceptTransitGatewayVpcAttachmentWithContext(arg0 context.Context, arg1 *ec2.AcceptTransitGatewayVpcAttachmentInput, arg2 ...request.Option) (*ec2.AcceptTransitGatewayVpcAttachmentOutput, error)

AcceptTransitGatewayVpcAttachmentWithContext mocks base method.

func (*MockEC2API) AcceptVpcEndpointConnections added in v1.19.0

AcceptVpcEndpointConnections mocks base method.

func (*MockEC2API) AcceptVpcEndpointConnectionsRequest added in v1.19.0

func (m *MockEC2API) AcceptVpcEndpointConnectionsRequest(arg0 *ec2.AcceptVpcEndpointConnectionsInput) (*request.Request, *ec2.AcceptVpcEndpointConnectionsOutput)

AcceptVpcEndpointConnectionsRequest mocks base method.

func (*MockEC2API) AcceptVpcEndpointConnectionsWithContext added in v1.19.0

func (m *MockEC2API) AcceptVpcEndpointConnectionsWithContext(arg0 context.Context, arg1 *ec2.AcceptVpcEndpointConnectionsInput, arg2 ...request.Option) (*ec2.AcceptVpcEndpointConnectionsOutput, error)

AcceptVpcEndpointConnectionsWithContext mocks base method.

func (*MockEC2API) AcceptVpcPeeringConnection added in v1.19.0

AcceptVpcPeeringConnection mocks base method.

func (*MockEC2API) AcceptVpcPeeringConnectionRequest added in v1.19.0

func (m *MockEC2API) AcceptVpcPeeringConnectionRequest(arg0 *ec2.AcceptVpcPeeringConnectionInput) (*request.Request, *ec2.AcceptVpcPeeringConnectionOutput)

AcceptVpcPeeringConnectionRequest mocks base method.

func (*MockEC2API) AcceptVpcPeeringConnectionWithContext added in v1.19.0

func (m *MockEC2API) AcceptVpcPeeringConnectionWithContext(arg0 context.Context, arg1 *ec2.AcceptVpcPeeringConnectionInput, arg2 ...request.Option) (*ec2.AcceptVpcPeeringConnectionOutput, error)

AcceptVpcPeeringConnectionWithContext mocks base method.

func (*MockEC2API) AdvertiseByoipCidr added in v1.19.0

func (m *MockEC2API) AdvertiseByoipCidr(arg0 *ec2.AdvertiseByoipCidrInput) (*ec2.AdvertiseByoipCidrOutput, error)

AdvertiseByoipCidr mocks base method.

func (*MockEC2API) AdvertiseByoipCidrRequest added in v1.19.0

func (m *MockEC2API) AdvertiseByoipCidrRequest(arg0 *ec2.AdvertiseByoipCidrInput) (*request.Request, *ec2.AdvertiseByoipCidrOutput)

AdvertiseByoipCidrRequest mocks base method.

func (*MockEC2API) AdvertiseByoipCidrWithContext added in v1.19.0

func (m *MockEC2API) AdvertiseByoipCidrWithContext(arg0 context.Context, arg1 *ec2.AdvertiseByoipCidrInput, arg2 ...request.Option) (*ec2.AdvertiseByoipCidrOutput, error)

AdvertiseByoipCidrWithContext mocks base method.

func (*MockEC2API) AllocateAddress added in v1.19.0

func (m *MockEC2API) AllocateAddress(arg0 *ec2.AllocateAddressInput) (*ec2.AllocateAddressOutput, error)

AllocateAddress mocks base method.

func (*MockEC2API) AllocateAddressRequest added in v1.19.0

func (m *MockEC2API) AllocateAddressRequest(arg0 *ec2.AllocateAddressInput) (*request.Request, *ec2.AllocateAddressOutput)

AllocateAddressRequest mocks base method.

func (*MockEC2API) AllocateAddressWithContext added in v1.19.0

func (m *MockEC2API) AllocateAddressWithContext(arg0 context.Context, arg1 *ec2.AllocateAddressInput, arg2 ...request.Option) (*ec2.AllocateAddressOutput, error)

AllocateAddressWithContext mocks base method.

func (*MockEC2API) AllocateHosts added in v1.19.0

func (m *MockEC2API) AllocateHosts(arg0 *ec2.AllocateHostsInput) (*ec2.AllocateHostsOutput, error)

AllocateHosts mocks base method.

func (*MockEC2API) AllocateHostsRequest added in v1.19.0

func (m *MockEC2API) AllocateHostsRequest(arg0 *ec2.AllocateHostsInput) (*request.Request, *ec2.AllocateHostsOutput)

AllocateHostsRequest mocks base method.

func (*MockEC2API) AllocateHostsWithContext added in v1.19.0

func (m *MockEC2API) AllocateHostsWithContext(arg0 context.Context, arg1 *ec2.AllocateHostsInput, arg2 ...request.Option) (*ec2.AllocateHostsOutput, error)

AllocateHostsWithContext mocks base method.

func (*MockEC2API) AllocateIpamPoolCidr added in v1.19.0

func (m *MockEC2API) AllocateIpamPoolCidr(arg0 *ec2.AllocateIpamPoolCidrInput) (*ec2.AllocateIpamPoolCidrOutput, error)

AllocateIpamPoolCidr mocks base method.

func (*MockEC2API) AllocateIpamPoolCidrRequest added in v1.19.0

func (m *MockEC2API) AllocateIpamPoolCidrRequest(arg0 *ec2.AllocateIpamPoolCidrInput) (*request.Request, *ec2.AllocateIpamPoolCidrOutput)

AllocateIpamPoolCidrRequest mocks base method.

func (*MockEC2API) AllocateIpamPoolCidrWithContext added in v1.19.0

func (m *MockEC2API) AllocateIpamPoolCidrWithContext(arg0 context.Context, arg1 *ec2.AllocateIpamPoolCidrInput, arg2 ...request.Option) (*ec2.AllocateIpamPoolCidrOutput, error)

AllocateIpamPoolCidrWithContext mocks base method.

func (*MockEC2API) ApplySecurityGroupsToClientVpnTargetNetwork added in v1.19.0

ApplySecurityGroupsToClientVpnTargetNetwork mocks base method.

func (*MockEC2API) ApplySecurityGroupsToClientVpnTargetNetworkRequest added in v1.19.0

ApplySecurityGroupsToClientVpnTargetNetworkRequest mocks base method.

func (*MockEC2API) ApplySecurityGroupsToClientVpnTargetNetworkWithContext added in v1.19.0

func (m *MockEC2API) ApplySecurityGroupsToClientVpnTargetNetworkWithContext(arg0 context.Context, arg1 *ec2.ApplySecurityGroupsToClientVpnTargetNetworkInput, arg2 ...request.Option) (*ec2.ApplySecurityGroupsToClientVpnTargetNetworkOutput, error)

ApplySecurityGroupsToClientVpnTargetNetworkWithContext mocks base method.

func (*MockEC2API) AssignIpv6Addresses added in v1.19.0

func (m *MockEC2API) AssignIpv6Addresses(arg0 *ec2.AssignIpv6AddressesInput) (*ec2.AssignIpv6AddressesOutput, error)

AssignIpv6Addresses mocks base method.

func (*MockEC2API) AssignIpv6AddressesRequest added in v1.19.0

func (m *MockEC2API) AssignIpv6AddressesRequest(arg0 *ec2.AssignIpv6AddressesInput) (*request.Request, *ec2.AssignIpv6AddressesOutput)

AssignIpv6AddressesRequest mocks base method.

func (*MockEC2API) AssignIpv6AddressesWithContext added in v1.19.0

func (m *MockEC2API) AssignIpv6AddressesWithContext(arg0 context.Context, arg1 *ec2.AssignIpv6AddressesInput, arg2 ...request.Option) (*ec2.AssignIpv6AddressesOutput, error)

AssignIpv6AddressesWithContext mocks base method.

func (*MockEC2API) AssignPrivateIpAddresses added in v1.19.0

AssignPrivateIpAddresses mocks base method.

func (*MockEC2API) AssignPrivateIpAddressesRequest added in v1.19.0

func (m *MockEC2API) AssignPrivateIpAddressesRequest(arg0 *ec2.AssignPrivateIpAddressesInput) (*request.Request, *ec2.AssignPrivateIpAddressesOutput)

AssignPrivateIpAddressesRequest mocks base method.

func (*MockEC2API) AssignPrivateIpAddressesWithContext added in v1.19.0

func (m *MockEC2API) AssignPrivateIpAddressesWithContext(arg0 context.Context, arg1 *ec2.AssignPrivateIpAddressesInput, arg2 ...request.Option) (*ec2.AssignPrivateIpAddressesOutput, error)

AssignPrivateIpAddressesWithContext mocks base method.

func (*MockEC2API) AssignPrivateNatGatewayAddress added in v1.19.0

AssignPrivateNatGatewayAddress mocks base method.

func (*MockEC2API) AssignPrivateNatGatewayAddressRequest added in v1.19.0

func (m *MockEC2API) AssignPrivateNatGatewayAddressRequest(arg0 *ec2.AssignPrivateNatGatewayAddressInput) (*request.Request, *ec2.AssignPrivateNatGatewayAddressOutput)

AssignPrivateNatGatewayAddressRequest mocks base method.

func (*MockEC2API) AssignPrivateNatGatewayAddressWithContext added in v1.19.0

func (m *MockEC2API) AssignPrivateNatGatewayAddressWithContext(arg0 context.Context, arg1 *ec2.AssignPrivateNatGatewayAddressInput, arg2 ...request.Option) (*ec2.AssignPrivateNatGatewayAddressOutput, error)

AssignPrivateNatGatewayAddressWithContext mocks base method.

func (*MockEC2API) AssociateAddress added in v1.19.0

func (m *MockEC2API) AssociateAddress(arg0 *ec2.AssociateAddressInput) (*ec2.AssociateAddressOutput, error)

AssociateAddress mocks base method.

func (*MockEC2API) AssociateAddressRequest added in v1.19.0

func (m *MockEC2API) AssociateAddressRequest(arg0 *ec2.AssociateAddressInput) (*request.Request, *ec2.AssociateAddressOutput)

AssociateAddressRequest mocks base method.

func (*MockEC2API) AssociateAddressWithContext added in v1.19.0

func (m *MockEC2API) AssociateAddressWithContext(arg0 context.Context, arg1 *ec2.AssociateAddressInput, arg2 ...request.Option) (*ec2.AssociateAddressOutput, error)

AssociateAddressWithContext mocks base method.

func (*MockEC2API) AssociateClientVpnTargetNetwork added in v1.19.0

AssociateClientVpnTargetNetwork mocks base method.

func (*MockEC2API) AssociateClientVpnTargetNetworkRequest added in v1.19.0

func (m *MockEC2API) AssociateClientVpnTargetNetworkRequest(arg0 *ec2.AssociateClientVpnTargetNetworkInput) (*request.Request, *ec2.AssociateClientVpnTargetNetworkOutput)

AssociateClientVpnTargetNetworkRequest mocks base method.

func (*MockEC2API) AssociateClientVpnTargetNetworkWithContext added in v1.19.0

func (m *MockEC2API) AssociateClientVpnTargetNetworkWithContext(arg0 context.Context, arg1 *ec2.AssociateClientVpnTargetNetworkInput, arg2 ...request.Option) (*ec2.AssociateClientVpnTargetNetworkOutput, error)

AssociateClientVpnTargetNetworkWithContext mocks base method.

func (*MockEC2API) AssociateDhcpOptions added in v1.19.0

func (m *MockEC2API) AssociateDhcpOptions(arg0 *ec2.AssociateDhcpOptionsInput) (*ec2.AssociateDhcpOptionsOutput, error)

AssociateDhcpOptions mocks base method.

func (*MockEC2API) AssociateDhcpOptionsRequest added in v1.19.0

func (m *MockEC2API) AssociateDhcpOptionsRequest(arg0 *ec2.AssociateDhcpOptionsInput) (*request.Request, *ec2.AssociateDhcpOptionsOutput)

AssociateDhcpOptionsRequest mocks base method.

func (*MockEC2API) AssociateDhcpOptionsWithContext added in v1.19.0

func (m *MockEC2API) AssociateDhcpOptionsWithContext(arg0 context.Context, arg1 *ec2.AssociateDhcpOptionsInput, arg2 ...request.Option) (*ec2.AssociateDhcpOptionsOutput, error)

AssociateDhcpOptionsWithContext mocks base method.

func (*MockEC2API) AssociateEnclaveCertificateIamRole added in v1.19.0

AssociateEnclaveCertificateIamRole mocks base method.

func (*MockEC2API) AssociateEnclaveCertificateIamRoleRequest added in v1.19.0

AssociateEnclaveCertificateIamRoleRequest mocks base method.

func (*MockEC2API) AssociateEnclaveCertificateIamRoleWithContext added in v1.19.0

func (m *MockEC2API) AssociateEnclaveCertificateIamRoleWithContext(arg0 context.Context, arg1 *ec2.AssociateEnclaveCertificateIamRoleInput, arg2 ...request.Option) (*ec2.AssociateEnclaveCertificateIamRoleOutput, error)

AssociateEnclaveCertificateIamRoleWithContext mocks base method.

func (*MockEC2API) AssociateIamInstanceProfile added in v1.19.0

AssociateIamInstanceProfile mocks base method.

func (*MockEC2API) AssociateIamInstanceProfileRequest added in v1.19.0

func (m *MockEC2API) AssociateIamInstanceProfileRequest(arg0 *ec2.AssociateIamInstanceProfileInput) (*request.Request, *ec2.AssociateIamInstanceProfileOutput)

AssociateIamInstanceProfileRequest mocks base method.

func (*MockEC2API) AssociateIamInstanceProfileWithContext added in v1.19.0

func (m *MockEC2API) AssociateIamInstanceProfileWithContext(arg0 context.Context, arg1 *ec2.AssociateIamInstanceProfileInput, arg2 ...request.Option) (*ec2.AssociateIamInstanceProfileOutput, error)

AssociateIamInstanceProfileWithContext mocks base method.

func (*MockEC2API) AssociateInstanceEventWindow added in v1.19.0

AssociateInstanceEventWindow mocks base method.

func (*MockEC2API) AssociateInstanceEventWindowRequest added in v1.19.0

func (m *MockEC2API) AssociateInstanceEventWindowRequest(arg0 *ec2.AssociateInstanceEventWindowInput) (*request.Request, *ec2.AssociateInstanceEventWindowOutput)

AssociateInstanceEventWindowRequest mocks base method.

func (*MockEC2API) AssociateInstanceEventWindowWithContext added in v1.19.0

func (m *MockEC2API) AssociateInstanceEventWindowWithContext(arg0 context.Context, arg1 *ec2.AssociateInstanceEventWindowInput, arg2 ...request.Option) (*ec2.AssociateInstanceEventWindowOutput, error)

AssociateInstanceEventWindowWithContext mocks base method.

func (*MockEC2API) AssociateIpamResourceDiscovery added in v1.19.0

AssociateIpamResourceDiscovery mocks base method.

func (*MockEC2API) AssociateIpamResourceDiscoveryRequest added in v1.19.0

func (m *MockEC2API) AssociateIpamResourceDiscoveryRequest(arg0 *ec2.AssociateIpamResourceDiscoveryInput) (*request.Request, *ec2.AssociateIpamResourceDiscoveryOutput)

AssociateIpamResourceDiscoveryRequest mocks base method.

func (*MockEC2API) AssociateIpamResourceDiscoveryWithContext added in v1.19.0

func (m *MockEC2API) AssociateIpamResourceDiscoveryWithContext(arg0 context.Context, arg1 *ec2.AssociateIpamResourceDiscoveryInput, arg2 ...request.Option) (*ec2.AssociateIpamResourceDiscoveryOutput, error)

AssociateIpamResourceDiscoveryWithContext mocks base method.

func (*MockEC2API) AssociateNatGatewayAddress added in v1.19.0

AssociateNatGatewayAddress mocks base method.

func (*MockEC2API) AssociateNatGatewayAddressRequest added in v1.19.0

func (m *MockEC2API) AssociateNatGatewayAddressRequest(arg0 *ec2.AssociateNatGatewayAddressInput) (*request.Request, *ec2.AssociateNatGatewayAddressOutput)

AssociateNatGatewayAddressRequest mocks base method.

func (*MockEC2API) AssociateNatGatewayAddressWithContext added in v1.19.0

func (m *MockEC2API) AssociateNatGatewayAddressWithContext(arg0 context.Context, arg1 *ec2.AssociateNatGatewayAddressInput, arg2 ...request.Option) (*ec2.AssociateNatGatewayAddressOutput, error)

AssociateNatGatewayAddressWithContext mocks base method.

func (*MockEC2API) AssociateRouteTable added in v1.19.0

func (m *MockEC2API) AssociateRouteTable(arg0 *ec2.AssociateRouteTableInput) (*ec2.AssociateRouteTableOutput, error)

AssociateRouteTable mocks base method.

func (*MockEC2API) AssociateRouteTableRequest added in v1.19.0

func (m *MockEC2API) AssociateRouteTableRequest(arg0 *ec2.AssociateRouteTableInput) (*request.Request, *ec2.AssociateRouteTableOutput)

AssociateRouteTableRequest mocks base method.

func (*MockEC2API) AssociateRouteTableWithContext added in v1.19.0

func (m *MockEC2API) AssociateRouteTableWithContext(arg0 context.Context, arg1 *ec2.AssociateRouteTableInput, arg2 ...request.Option) (*ec2.AssociateRouteTableOutput, error)

AssociateRouteTableWithContext mocks base method.

func (*MockEC2API) AssociateSubnetCidrBlock added in v1.19.0

AssociateSubnetCidrBlock mocks base method.

func (*MockEC2API) AssociateSubnetCidrBlockRequest added in v1.19.0

func (m *MockEC2API) AssociateSubnetCidrBlockRequest(arg0 *ec2.AssociateSubnetCidrBlockInput) (*request.Request, *ec2.AssociateSubnetCidrBlockOutput)

AssociateSubnetCidrBlockRequest mocks base method.

func (*MockEC2API) AssociateSubnetCidrBlockWithContext added in v1.19.0

func (m *MockEC2API) AssociateSubnetCidrBlockWithContext(arg0 context.Context, arg1 *ec2.AssociateSubnetCidrBlockInput, arg2 ...request.Option) (*ec2.AssociateSubnetCidrBlockOutput, error)

AssociateSubnetCidrBlockWithContext mocks base method.

func (*MockEC2API) AssociateTransitGatewayMulticastDomain added in v1.19.0

AssociateTransitGatewayMulticastDomain mocks base method.

func (*MockEC2API) AssociateTransitGatewayMulticastDomainRequest added in v1.19.0

AssociateTransitGatewayMulticastDomainRequest mocks base method.

func (*MockEC2API) AssociateTransitGatewayMulticastDomainWithContext added in v1.19.0

func (m *MockEC2API) AssociateTransitGatewayMulticastDomainWithContext(arg0 context.Context, arg1 *ec2.AssociateTransitGatewayMulticastDomainInput, arg2 ...request.Option) (*ec2.AssociateTransitGatewayMulticastDomainOutput, error)

AssociateTransitGatewayMulticastDomainWithContext mocks base method.

func (*MockEC2API) AssociateTransitGatewayPolicyTable added in v1.19.0

AssociateTransitGatewayPolicyTable mocks base method.

func (*MockEC2API) AssociateTransitGatewayPolicyTableRequest added in v1.19.0

AssociateTransitGatewayPolicyTableRequest mocks base method.

func (*MockEC2API) AssociateTransitGatewayPolicyTableWithContext added in v1.19.0

func (m *MockEC2API) AssociateTransitGatewayPolicyTableWithContext(arg0 context.Context, arg1 *ec2.AssociateTransitGatewayPolicyTableInput, arg2 ...request.Option) (*ec2.AssociateTransitGatewayPolicyTableOutput, error)

AssociateTransitGatewayPolicyTableWithContext mocks base method.

func (*MockEC2API) AssociateTransitGatewayRouteTable added in v1.19.0

AssociateTransitGatewayRouteTable mocks base method.

func (*MockEC2API) AssociateTransitGatewayRouteTableRequest added in v1.19.0

AssociateTransitGatewayRouteTableRequest mocks base method.

func (*MockEC2API) AssociateTransitGatewayRouteTableWithContext added in v1.19.0

func (m *MockEC2API) AssociateTransitGatewayRouteTableWithContext(arg0 context.Context, arg1 *ec2.AssociateTransitGatewayRouteTableInput, arg2 ...request.Option) (*ec2.AssociateTransitGatewayRouteTableOutput, error)

AssociateTransitGatewayRouteTableWithContext mocks base method.

func (*MockEC2API) AssociateTrunkInterface added in v1.19.0

func (m *MockEC2API) AssociateTrunkInterface(arg0 *ec2.AssociateTrunkInterfaceInput) (*ec2.AssociateTrunkInterfaceOutput, error)

AssociateTrunkInterface mocks base method.

func (*MockEC2API) AssociateTrunkInterfaceRequest added in v1.19.0

func (m *MockEC2API) AssociateTrunkInterfaceRequest(arg0 *ec2.AssociateTrunkInterfaceInput) (*request.Request, *ec2.AssociateTrunkInterfaceOutput)

AssociateTrunkInterfaceRequest mocks base method.

func (*MockEC2API) AssociateTrunkInterfaceWithContext added in v1.19.0

func (m *MockEC2API) AssociateTrunkInterfaceWithContext(arg0 context.Context, arg1 *ec2.AssociateTrunkInterfaceInput, arg2 ...request.Option) (*ec2.AssociateTrunkInterfaceOutput, error)

AssociateTrunkInterfaceWithContext mocks base method.

func (*MockEC2API) AssociateVpcCidrBlock added in v1.19.0

func (m *MockEC2API) AssociateVpcCidrBlock(arg0 *ec2.AssociateVpcCidrBlockInput) (*ec2.AssociateVpcCidrBlockOutput, error)

AssociateVpcCidrBlock mocks base method.

func (*MockEC2API) AssociateVpcCidrBlockRequest added in v1.19.0

func (m *MockEC2API) AssociateVpcCidrBlockRequest(arg0 *ec2.AssociateVpcCidrBlockInput) (*request.Request, *ec2.AssociateVpcCidrBlockOutput)

AssociateVpcCidrBlockRequest mocks base method.

func (*MockEC2API) AssociateVpcCidrBlockWithContext added in v1.19.0

func (m *MockEC2API) AssociateVpcCidrBlockWithContext(arg0 context.Context, arg1 *ec2.AssociateVpcCidrBlockInput, arg2 ...request.Option) (*ec2.AssociateVpcCidrBlockOutput, error)

AssociateVpcCidrBlockWithContext mocks base method.

func (*MockEC2API) AttachClassicLinkVpc added in v1.19.0

func (m *MockEC2API) AttachClassicLinkVpc(arg0 *ec2.AttachClassicLinkVpcInput) (*ec2.AttachClassicLinkVpcOutput, error)

AttachClassicLinkVpc mocks base method.

func (*MockEC2API) AttachClassicLinkVpcRequest added in v1.19.0

func (m *MockEC2API) AttachClassicLinkVpcRequest(arg0 *ec2.AttachClassicLinkVpcInput) (*request.Request, *ec2.AttachClassicLinkVpcOutput)

AttachClassicLinkVpcRequest mocks base method.

func (*MockEC2API) AttachClassicLinkVpcWithContext added in v1.19.0

func (m *MockEC2API) AttachClassicLinkVpcWithContext(arg0 context.Context, arg1 *ec2.AttachClassicLinkVpcInput, arg2 ...request.Option) (*ec2.AttachClassicLinkVpcOutput, error)

AttachClassicLinkVpcWithContext mocks base method.

func (*MockEC2API) AttachInternetGateway added in v1.19.0

func (m *MockEC2API) AttachInternetGateway(arg0 *ec2.AttachInternetGatewayInput) (*ec2.AttachInternetGatewayOutput, error)

AttachInternetGateway mocks base method.

func (*MockEC2API) AttachInternetGatewayRequest added in v1.19.0

func (m *MockEC2API) AttachInternetGatewayRequest(arg0 *ec2.AttachInternetGatewayInput) (*request.Request, *ec2.AttachInternetGatewayOutput)

AttachInternetGatewayRequest mocks base method.

func (*MockEC2API) AttachInternetGatewayWithContext added in v1.19.0

func (m *MockEC2API) AttachInternetGatewayWithContext(arg0 context.Context, arg1 *ec2.AttachInternetGatewayInput, arg2 ...request.Option) (*ec2.AttachInternetGatewayOutput, error)

AttachInternetGatewayWithContext mocks base method.

func (*MockEC2API) AttachNetworkInterface added in v1.19.0

func (m *MockEC2API) AttachNetworkInterface(arg0 *ec2.AttachNetworkInterfaceInput) (*ec2.AttachNetworkInterfaceOutput, error)

AttachNetworkInterface mocks base method.

func (*MockEC2API) AttachNetworkInterfaceRequest added in v1.19.0

func (m *MockEC2API) AttachNetworkInterfaceRequest(arg0 *ec2.AttachNetworkInterfaceInput) (*request.Request, *ec2.AttachNetworkInterfaceOutput)

AttachNetworkInterfaceRequest mocks base method.

func (*MockEC2API) AttachNetworkInterfaceWithContext added in v1.19.0

func (m *MockEC2API) AttachNetworkInterfaceWithContext(arg0 context.Context, arg1 *ec2.AttachNetworkInterfaceInput, arg2 ...request.Option) (*ec2.AttachNetworkInterfaceOutput, error)

AttachNetworkInterfaceWithContext mocks base method.

func (*MockEC2API) AttachVerifiedAccessTrustProvider added in v1.19.0

AttachVerifiedAccessTrustProvider mocks base method.

func (*MockEC2API) AttachVerifiedAccessTrustProviderRequest added in v1.19.0

AttachVerifiedAccessTrustProviderRequest mocks base method.

func (*MockEC2API) AttachVerifiedAccessTrustProviderWithContext added in v1.19.0

func (m *MockEC2API) AttachVerifiedAccessTrustProviderWithContext(arg0 context.Context, arg1 *ec2.AttachVerifiedAccessTrustProviderInput, arg2 ...request.Option) (*ec2.AttachVerifiedAccessTrustProviderOutput, error)

AttachVerifiedAccessTrustProviderWithContext mocks base method.

func (*MockEC2API) AttachVolume added in v1.19.0

func (m *MockEC2API) AttachVolume(arg0 *ec2.AttachVolumeInput) (*ec2.VolumeAttachment, error)

AttachVolume mocks base method.

func (*MockEC2API) AttachVolumeRequest added in v1.19.0

func (m *MockEC2API) AttachVolumeRequest(arg0 *ec2.AttachVolumeInput) (*request.Request, *ec2.VolumeAttachment)

AttachVolumeRequest mocks base method.

func (*MockEC2API) AttachVolumeWithContext added in v1.19.0

func (m *MockEC2API) AttachVolumeWithContext(arg0 context.Context, arg1 *ec2.AttachVolumeInput, arg2 ...request.Option) (*ec2.VolumeAttachment, error)

AttachVolumeWithContext mocks base method.

func (*MockEC2API) AttachVpnGateway added in v1.19.0

func (m *MockEC2API) AttachVpnGateway(arg0 *ec2.AttachVpnGatewayInput) (*ec2.AttachVpnGatewayOutput, error)

AttachVpnGateway mocks base method.

func (*MockEC2API) AttachVpnGatewayRequest added in v1.19.0

func (m *MockEC2API) AttachVpnGatewayRequest(arg0 *ec2.AttachVpnGatewayInput) (*request.Request, *ec2.AttachVpnGatewayOutput)

AttachVpnGatewayRequest mocks base method.

func (*MockEC2API) AttachVpnGatewayWithContext added in v1.19.0

func (m *MockEC2API) AttachVpnGatewayWithContext(arg0 context.Context, arg1 *ec2.AttachVpnGatewayInput, arg2 ...request.Option) (*ec2.AttachVpnGatewayOutput, error)

AttachVpnGatewayWithContext mocks base method.

func (*MockEC2API) AuthorizeClientVpnIngress added in v1.19.0

AuthorizeClientVpnIngress mocks base method.

func (*MockEC2API) AuthorizeClientVpnIngressRequest added in v1.19.0

func (m *MockEC2API) AuthorizeClientVpnIngressRequest(arg0 *ec2.AuthorizeClientVpnIngressInput) (*request.Request, *ec2.AuthorizeClientVpnIngressOutput)

AuthorizeClientVpnIngressRequest mocks base method.

func (*MockEC2API) AuthorizeClientVpnIngressWithContext added in v1.19.0

func (m *MockEC2API) AuthorizeClientVpnIngressWithContext(arg0 context.Context, arg1 *ec2.AuthorizeClientVpnIngressInput, arg2 ...request.Option) (*ec2.AuthorizeClientVpnIngressOutput, error)

AuthorizeClientVpnIngressWithContext mocks base method.

func (*MockEC2API) AuthorizeSecurityGroupEgress added in v1.19.0

AuthorizeSecurityGroupEgress mocks base method.

func (*MockEC2API) AuthorizeSecurityGroupEgressRequest added in v1.19.0

func (m *MockEC2API) AuthorizeSecurityGroupEgressRequest(arg0 *ec2.AuthorizeSecurityGroupEgressInput) (*request.Request, *ec2.AuthorizeSecurityGroupEgressOutput)

AuthorizeSecurityGroupEgressRequest mocks base method.

func (*MockEC2API) AuthorizeSecurityGroupEgressWithContext added in v1.19.0

func (m *MockEC2API) AuthorizeSecurityGroupEgressWithContext(arg0 context.Context, arg1 *ec2.AuthorizeSecurityGroupEgressInput, arg2 ...request.Option) (*ec2.AuthorizeSecurityGroupEgressOutput, error)

AuthorizeSecurityGroupEgressWithContext mocks base method.

func (*MockEC2API) AuthorizeSecurityGroupIngress added in v1.19.0

AuthorizeSecurityGroupIngress mocks base method.

func (*MockEC2API) AuthorizeSecurityGroupIngressRequest added in v1.19.0

func (m *MockEC2API) AuthorizeSecurityGroupIngressRequest(arg0 *ec2.AuthorizeSecurityGroupIngressInput) (*request.Request, *ec2.AuthorizeSecurityGroupIngressOutput)

AuthorizeSecurityGroupIngressRequest mocks base method.

func (*MockEC2API) AuthorizeSecurityGroupIngressWithContext added in v1.19.0

func (m *MockEC2API) AuthorizeSecurityGroupIngressWithContext(arg0 context.Context, arg1 *ec2.AuthorizeSecurityGroupIngressInput, arg2 ...request.Option) (*ec2.AuthorizeSecurityGroupIngressOutput, error)

AuthorizeSecurityGroupIngressWithContext mocks base method.

func (*MockEC2API) BundleInstance added in v1.19.0

func (m *MockEC2API) BundleInstance(arg0 *ec2.BundleInstanceInput) (*ec2.BundleInstanceOutput, error)

BundleInstance mocks base method.

func (*MockEC2API) BundleInstanceRequest added in v1.19.0

func (m *MockEC2API) BundleInstanceRequest(arg0 *ec2.BundleInstanceInput) (*request.Request, *ec2.BundleInstanceOutput)

BundleInstanceRequest mocks base method.

func (*MockEC2API) BundleInstanceWithContext added in v1.19.0

func (m *MockEC2API) BundleInstanceWithContext(arg0 context.Context, arg1 *ec2.BundleInstanceInput, arg2 ...request.Option) (*ec2.BundleInstanceOutput, error)

BundleInstanceWithContext mocks base method.

func (*MockEC2API) CancelBundleTask added in v1.19.0

func (m *MockEC2API) CancelBundleTask(arg0 *ec2.CancelBundleTaskInput) (*ec2.CancelBundleTaskOutput, error)

CancelBundleTask mocks base method.

func (*MockEC2API) CancelBundleTaskRequest added in v1.19.0

func (m *MockEC2API) CancelBundleTaskRequest(arg0 *ec2.CancelBundleTaskInput) (*request.Request, *ec2.CancelBundleTaskOutput)

CancelBundleTaskRequest mocks base method.

func (*MockEC2API) CancelBundleTaskWithContext added in v1.19.0

func (m *MockEC2API) CancelBundleTaskWithContext(arg0 context.Context, arg1 *ec2.CancelBundleTaskInput, arg2 ...request.Option) (*ec2.CancelBundleTaskOutput, error)

CancelBundleTaskWithContext mocks base method.

func (*MockEC2API) CancelCapacityReservation added in v1.19.0

CancelCapacityReservation mocks base method.

func (*MockEC2API) CancelCapacityReservationFleets added in v1.19.0

CancelCapacityReservationFleets mocks base method.

func (*MockEC2API) CancelCapacityReservationFleetsRequest added in v1.19.0

func (m *MockEC2API) CancelCapacityReservationFleetsRequest(arg0 *ec2.CancelCapacityReservationFleetsInput) (*request.Request, *ec2.CancelCapacityReservationFleetsOutput)

CancelCapacityReservationFleetsRequest mocks base method.

func (*MockEC2API) CancelCapacityReservationFleetsWithContext added in v1.19.0

func (m *MockEC2API) CancelCapacityReservationFleetsWithContext(arg0 context.Context, arg1 *ec2.CancelCapacityReservationFleetsInput, arg2 ...request.Option) (*ec2.CancelCapacityReservationFleetsOutput, error)

CancelCapacityReservationFleetsWithContext mocks base method.

func (*MockEC2API) CancelCapacityReservationRequest added in v1.19.0

func (m *MockEC2API) CancelCapacityReservationRequest(arg0 *ec2.CancelCapacityReservationInput) (*request.Request, *ec2.CancelCapacityReservationOutput)

CancelCapacityReservationRequest mocks base method.

func (*MockEC2API) CancelCapacityReservationWithContext added in v1.19.0

func (m *MockEC2API) CancelCapacityReservationWithContext(arg0 context.Context, arg1 *ec2.CancelCapacityReservationInput, arg2 ...request.Option) (*ec2.CancelCapacityReservationOutput, error)

CancelCapacityReservationWithContext mocks base method.

func (*MockEC2API) CancelConversionTask added in v1.19.0

func (m *MockEC2API) CancelConversionTask(arg0 *ec2.CancelConversionTaskInput) (*ec2.CancelConversionTaskOutput, error)

CancelConversionTask mocks base method.

func (*MockEC2API) CancelConversionTaskRequest added in v1.19.0

func (m *MockEC2API) CancelConversionTaskRequest(arg0 *ec2.CancelConversionTaskInput) (*request.Request, *ec2.CancelConversionTaskOutput)

CancelConversionTaskRequest mocks base method.

func (*MockEC2API) CancelConversionTaskWithContext added in v1.19.0

func (m *MockEC2API) CancelConversionTaskWithContext(arg0 context.Context, arg1 *ec2.CancelConversionTaskInput, arg2 ...request.Option) (*ec2.CancelConversionTaskOutput, error)

CancelConversionTaskWithContext mocks base method.

func (*MockEC2API) CancelExportTask added in v1.19.0

func (m *MockEC2API) CancelExportTask(arg0 *ec2.CancelExportTaskInput) (*ec2.CancelExportTaskOutput, error)

CancelExportTask mocks base method.

func (*MockEC2API) CancelExportTaskRequest added in v1.19.0

func (m *MockEC2API) CancelExportTaskRequest(arg0 *ec2.CancelExportTaskInput) (*request.Request, *ec2.CancelExportTaskOutput)

CancelExportTaskRequest mocks base method.

func (*MockEC2API) CancelExportTaskWithContext added in v1.19.0

func (m *MockEC2API) CancelExportTaskWithContext(arg0 context.Context, arg1 *ec2.CancelExportTaskInput, arg2 ...request.Option) (*ec2.CancelExportTaskOutput, error)

CancelExportTaskWithContext mocks base method.

func (*MockEC2API) CancelImageLaunchPermission added in v1.19.0

CancelImageLaunchPermission mocks base method.

func (*MockEC2API) CancelImageLaunchPermissionRequest added in v1.19.0

func (m *MockEC2API) CancelImageLaunchPermissionRequest(arg0 *ec2.CancelImageLaunchPermissionInput) (*request.Request, *ec2.CancelImageLaunchPermissionOutput)

CancelImageLaunchPermissionRequest mocks base method.

func (*MockEC2API) CancelImageLaunchPermissionWithContext added in v1.19.0

func (m *MockEC2API) CancelImageLaunchPermissionWithContext(arg0 context.Context, arg1 *ec2.CancelImageLaunchPermissionInput, arg2 ...request.Option) (*ec2.CancelImageLaunchPermissionOutput, error)

CancelImageLaunchPermissionWithContext mocks base method.

func (*MockEC2API) CancelImportTask added in v1.19.0

func (m *MockEC2API) CancelImportTask(arg0 *ec2.CancelImportTaskInput) (*ec2.CancelImportTaskOutput, error)

CancelImportTask mocks base method.

func (*MockEC2API) CancelImportTaskRequest added in v1.19.0

func (m *MockEC2API) CancelImportTaskRequest(arg0 *ec2.CancelImportTaskInput) (*request.Request, *ec2.CancelImportTaskOutput)

CancelImportTaskRequest mocks base method.

func (*MockEC2API) CancelImportTaskWithContext added in v1.19.0

func (m *MockEC2API) CancelImportTaskWithContext(arg0 context.Context, arg1 *ec2.CancelImportTaskInput, arg2 ...request.Option) (*ec2.CancelImportTaskOutput, error)

CancelImportTaskWithContext mocks base method.

func (*MockEC2API) CancelReservedInstancesListing added in v1.19.0

CancelReservedInstancesListing mocks base method.

func (*MockEC2API) CancelReservedInstancesListingRequest added in v1.19.0

func (m *MockEC2API) CancelReservedInstancesListingRequest(arg0 *ec2.CancelReservedInstancesListingInput) (*request.Request, *ec2.CancelReservedInstancesListingOutput)

CancelReservedInstancesListingRequest mocks base method.

func (*MockEC2API) CancelReservedInstancesListingWithContext added in v1.19.0

func (m *MockEC2API) CancelReservedInstancesListingWithContext(arg0 context.Context, arg1 *ec2.CancelReservedInstancesListingInput, arg2 ...request.Option) (*ec2.CancelReservedInstancesListingOutput, error)

CancelReservedInstancesListingWithContext mocks base method.

func (*MockEC2API) CancelSpotFleetRequests added in v1.19.0

func (m *MockEC2API) CancelSpotFleetRequests(arg0 *ec2.CancelSpotFleetRequestsInput) (*ec2.CancelSpotFleetRequestsOutput, error)

CancelSpotFleetRequests mocks base method.

func (*MockEC2API) CancelSpotFleetRequestsRequest added in v1.19.0

func (m *MockEC2API) CancelSpotFleetRequestsRequest(arg0 *ec2.CancelSpotFleetRequestsInput) (*request.Request, *ec2.CancelSpotFleetRequestsOutput)

CancelSpotFleetRequestsRequest mocks base method.

func (*MockEC2API) CancelSpotFleetRequestsWithContext added in v1.19.0

func (m *MockEC2API) CancelSpotFleetRequestsWithContext(arg0 context.Context, arg1 *ec2.CancelSpotFleetRequestsInput, arg2 ...request.Option) (*ec2.CancelSpotFleetRequestsOutput, error)

CancelSpotFleetRequestsWithContext mocks base method.

func (*MockEC2API) CancelSpotInstanceRequests added in v1.19.0

CancelSpotInstanceRequests mocks base method.

func (*MockEC2API) CancelSpotInstanceRequestsRequest added in v1.19.0

func (m *MockEC2API) CancelSpotInstanceRequestsRequest(arg0 *ec2.CancelSpotInstanceRequestsInput) (*request.Request, *ec2.CancelSpotInstanceRequestsOutput)

CancelSpotInstanceRequestsRequest mocks base method.

func (*MockEC2API) CancelSpotInstanceRequestsWithContext added in v1.19.0

func (m *MockEC2API) CancelSpotInstanceRequestsWithContext(arg0 context.Context, arg1 *ec2.CancelSpotInstanceRequestsInput, arg2 ...request.Option) (*ec2.CancelSpotInstanceRequestsOutput, error)

CancelSpotInstanceRequestsWithContext mocks base method.

func (*MockEC2API) ConfirmProductInstance added in v1.19.0

func (m *MockEC2API) ConfirmProductInstance(arg0 *ec2.ConfirmProductInstanceInput) (*ec2.ConfirmProductInstanceOutput, error)

ConfirmProductInstance mocks base method.

func (*MockEC2API) ConfirmProductInstanceRequest added in v1.19.0

func (m *MockEC2API) ConfirmProductInstanceRequest(arg0 *ec2.ConfirmProductInstanceInput) (*request.Request, *ec2.ConfirmProductInstanceOutput)

ConfirmProductInstanceRequest mocks base method.

func (*MockEC2API) ConfirmProductInstanceWithContext added in v1.19.0

func (m *MockEC2API) ConfirmProductInstanceWithContext(arg0 context.Context, arg1 *ec2.ConfirmProductInstanceInput, arg2 ...request.Option) (*ec2.ConfirmProductInstanceOutput, error)

ConfirmProductInstanceWithContext mocks base method.

func (*MockEC2API) CopyFpgaImage added in v1.19.0

func (m *MockEC2API) CopyFpgaImage(arg0 *ec2.CopyFpgaImageInput) (*ec2.CopyFpgaImageOutput, error)

CopyFpgaImage mocks base method.

func (*MockEC2API) CopyFpgaImageRequest added in v1.19.0

func (m *MockEC2API) CopyFpgaImageRequest(arg0 *ec2.CopyFpgaImageInput) (*request.Request, *ec2.CopyFpgaImageOutput)

CopyFpgaImageRequest mocks base method.

func (*MockEC2API) CopyFpgaImageWithContext added in v1.19.0

func (m *MockEC2API) CopyFpgaImageWithContext(arg0 context.Context, arg1 *ec2.CopyFpgaImageInput, arg2 ...request.Option) (*ec2.CopyFpgaImageOutput, error)

CopyFpgaImageWithContext mocks base method.

func (*MockEC2API) CopyImage added in v1.19.0

func (m *MockEC2API) CopyImage(arg0 *ec2.CopyImageInput) (*ec2.CopyImageOutput, error)

CopyImage mocks base method.

func (*MockEC2API) CopyImageRequest added in v1.19.0

func (m *MockEC2API) CopyImageRequest(arg0 *ec2.CopyImageInput) (*request.Request, *ec2.CopyImageOutput)

CopyImageRequest mocks base method.

func (*MockEC2API) CopyImageWithContext added in v1.19.0

func (m *MockEC2API) CopyImageWithContext(arg0 context.Context, arg1 *ec2.CopyImageInput, arg2 ...request.Option) (*ec2.CopyImageOutput, error)

CopyImageWithContext mocks base method.

func (*MockEC2API) CopySnapshot added in v1.19.0

func (m *MockEC2API) CopySnapshot(arg0 *ec2.CopySnapshotInput) (*ec2.CopySnapshotOutput, error)

CopySnapshot mocks base method.

func (*MockEC2API) CopySnapshotRequest added in v1.19.0

func (m *MockEC2API) CopySnapshotRequest(arg0 *ec2.CopySnapshotInput) (*request.Request, *ec2.CopySnapshotOutput)

CopySnapshotRequest mocks base method.

func (*MockEC2API) CopySnapshotWithContext added in v1.19.0

func (m *MockEC2API) CopySnapshotWithContext(arg0 context.Context, arg1 *ec2.CopySnapshotInput, arg2 ...request.Option) (*ec2.CopySnapshotOutput, error)

CopySnapshotWithContext mocks base method.

func (*MockEC2API) CreateCapacityReservation added in v1.19.0

CreateCapacityReservation mocks base method.

func (*MockEC2API) CreateCapacityReservationFleet added in v1.19.0

CreateCapacityReservationFleet mocks base method.

func (*MockEC2API) CreateCapacityReservationFleetRequest added in v1.19.0

func (m *MockEC2API) CreateCapacityReservationFleetRequest(arg0 *ec2.CreateCapacityReservationFleetInput) (*request.Request, *ec2.CreateCapacityReservationFleetOutput)

CreateCapacityReservationFleetRequest mocks base method.

func (*MockEC2API) CreateCapacityReservationFleetWithContext added in v1.19.0

func (m *MockEC2API) CreateCapacityReservationFleetWithContext(arg0 context.Context, arg1 *ec2.CreateCapacityReservationFleetInput, arg2 ...request.Option) (*ec2.CreateCapacityReservationFleetOutput, error)

CreateCapacityReservationFleetWithContext mocks base method.

func (*MockEC2API) CreateCapacityReservationRequest added in v1.19.0

func (m *MockEC2API) CreateCapacityReservationRequest(arg0 *ec2.CreateCapacityReservationInput) (*request.Request, *ec2.CreateCapacityReservationOutput)

CreateCapacityReservationRequest mocks base method.

func (*MockEC2API) CreateCapacityReservationWithContext added in v1.19.0

func (m *MockEC2API) CreateCapacityReservationWithContext(arg0 context.Context, arg1 *ec2.CreateCapacityReservationInput, arg2 ...request.Option) (*ec2.CreateCapacityReservationOutput, error)

CreateCapacityReservationWithContext mocks base method.

func (*MockEC2API) CreateCarrierGateway added in v1.19.0

func (m *MockEC2API) CreateCarrierGateway(arg0 *ec2.CreateCarrierGatewayInput) (*ec2.CreateCarrierGatewayOutput, error)

CreateCarrierGateway mocks base method.

func (*MockEC2API) CreateCarrierGatewayRequest added in v1.19.0

func (m *MockEC2API) CreateCarrierGatewayRequest(arg0 *ec2.CreateCarrierGatewayInput) (*request.Request, *ec2.CreateCarrierGatewayOutput)

CreateCarrierGatewayRequest mocks base method.

func (*MockEC2API) CreateCarrierGatewayWithContext added in v1.19.0

func (m *MockEC2API) CreateCarrierGatewayWithContext(arg0 context.Context, arg1 *ec2.CreateCarrierGatewayInput, arg2 ...request.Option) (*ec2.CreateCarrierGatewayOutput, error)

CreateCarrierGatewayWithContext mocks base method.

func (*MockEC2API) CreateClientVpnEndpoint added in v1.19.0

func (m *MockEC2API) CreateClientVpnEndpoint(arg0 *ec2.CreateClientVpnEndpointInput) (*ec2.CreateClientVpnEndpointOutput, error)

CreateClientVpnEndpoint mocks base method.

func (*MockEC2API) CreateClientVpnEndpointRequest added in v1.19.0

func (m *MockEC2API) CreateClientVpnEndpointRequest(arg0 *ec2.CreateClientVpnEndpointInput) (*request.Request, *ec2.CreateClientVpnEndpointOutput)

CreateClientVpnEndpointRequest mocks base method.

func (*MockEC2API) CreateClientVpnEndpointWithContext added in v1.19.0

func (m *MockEC2API) CreateClientVpnEndpointWithContext(arg0 context.Context, arg1 *ec2.CreateClientVpnEndpointInput, arg2 ...request.Option) (*ec2.CreateClientVpnEndpointOutput, error)

CreateClientVpnEndpointWithContext mocks base method.

func (*MockEC2API) CreateClientVpnRoute added in v1.19.0

func (m *MockEC2API) CreateClientVpnRoute(arg0 *ec2.CreateClientVpnRouteInput) (*ec2.CreateClientVpnRouteOutput, error)

CreateClientVpnRoute mocks base method.

func (*MockEC2API) CreateClientVpnRouteRequest added in v1.19.0

func (m *MockEC2API) CreateClientVpnRouteRequest(arg0 *ec2.CreateClientVpnRouteInput) (*request.Request, *ec2.CreateClientVpnRouteOutput)

CreateClientVpnRouteRequest mocks base method.

func (*MockEC2API) CreateClientVpnRouteWithContext added in v1.19.0

func (m *MockEC2API) CreateClientVpnRouteWithContext(arg0 context.Context, arg1 *ec2.CreateClientVpnRouteInput, arg2 ...request.Option) (*ec2.CreateClientVpnRouteOutput, error)

CreateClientVpnRouteWithContext mocks base method.

func (*MockEC2API) CreateCoipCidr added in v1.19.0

func (m *MockEC2API) CreateCoipCidr(arg0 *ec2.CreateCoipCidrInput) (*ec2.CreateCoipCidrOutput, error)

CreateCoipCidr mocks base method.

func (*MockEC2API) CreateCoipCidrRequest added in v1.19.0

func (m *MockEC2API) CreateCoipCidrRequest(arg0 *ec2.CreateCoipCidrInput) (*request.Request, *ec2.CreateCoipCidrOutput)

CreateCoipCidrRequest mocks base method.

func (*MockEC2API) CreateCoipCidrWithContext added in v1.19.0

func (m *MockEC2API) CreateCoipCidrWithContext(arg0 context.Context, arg1 *ec2.CreateCoipCidrInput, arg2 ...request.Option) (*ec2.CreateCoipCidrOutput, error)

CreateCoipCidrWithContext mocks base method.

func (*MockEC2API) CreateCoipPool added in v1.19.0

func (m *MockEC2API) CreateCoipPool(arg0 *ec2.CreateCoipPoolInput) (*ec2.CreateCoipPoolOutput, error)

CreateCoipPool mocks base method.

func (*MockEC2API) CreateCoipPoolRequest added in v1.19.0

func (m *MockEC2API) CreateCoipPoolRequest(arg0 *ec2.CreateCoipPoolInput) (*request.Request, *ec2.CreateCoipPoolOutput)

CreateCoipPoolRequest mocks base method.

func (*MockEC2API) CreateCoipPoolWithContext added in v1.19.0

func (m *MockEC2API) CreateCoipPoolWithContext(arg0 context.Context, arg1 *ec2.CreateCoipPoolInput, arg2 ...request.Option) (*ec2.CreateCoipPoolOutput, error)

CreateCoipPoolWithContext mocks base method.

func (*MockEC2API) CreateCustomerGateway added in v1.19.0

func (m *MockEC2API) CreateCustomerGateway(arg0 *ec2.CreateCustomerGatewayInput) (*ec2.CreateCustomerGatewayOutput, error)

CreateCustomerGateway mocks base method.

func (*MockEC2API) CreateCustomerGatewayRequest added in v1.19.0

func (m *MockEC2API) CreateCustomerGatewayRequest(arg0 *ec2.CreateCustomerGatewayInput) (*request.Request, *ec2.CreateCustomerGatewayOutput)

CreateCustomerGatewayRequest mocks base method.

func (*MockEC2API) CreateCustomerGatewayWithContext added in v1.19.0

func (m *MockEC2API) CreateCustomerGatewayWithContext(arg0 context.Context, arg1 *ec2.CreateCustomerGatewayInput, arg2 ...request.Option) (*ec2.CreateCustomerGatewayOutput, error)

CreateCustomerGatewayWithContext mocks base method.

func (*MockEC2API) CreateDefaultSubnet added in v1.19.0

func (m *MockEC2API) CreateDefaultSubnet(arg0 *ec2.CreateDefaultSubnetInput) (*ec2.CreateDefaultSubnetOutput, error)

CreateDefaultSubnet mocks base method.

func (*MockEC2API) CreateDefaultSubnetRequest added in v1.19.0

func (m *MockEC2API) CreateDefaultSubnetRequest(arg0 *ec2.CreateDefaultSubnetInput) (*request.Request, *ec2.CreateDefaultSubnetOutput)

CreateDefaultSubnetRequest mocks base method.

func (*MockEC2API) CreateDefaultSubnetWithContext added in v1.19.0

func (m *MockEC2API) CreateDefaultSubnetWithContext(arg0 context.Context, arg1 *ec2.CreateDefaultSubnetInput, arg2 ...request.Option) (*ec2.CreateDefaultSubnetOutput, error)

CreateDefaultSubnetWithContext mocks base method.

func (*MockEC2API) CreateDefaultVpc added in v1.19.0

func (m *MockEC2API) CreateDefaultVpc(arg0 *ec2.CreateDefaultVpcInput) (*ec2.CreateDefaultVpcOutput, error)

CreateDefaultVpc mocks base method.

func (*MockEC2API) CreateDefaultVpcRequest added in v1.19.0

func (m *MockEC2API) CreateDefaultVpcRequest(arg0 *ec2.CreateDefaultVpcInput) (*request.Request, *ec2.CreateDefaultVpcOutput)

CreateDefaultVpcRequest mocks base method.

func (*MockEC2API) CreateDefaultVpcWithContext added in v1.19.0

func (m *MockEC2API) CreateDefaultVpcWithContext(arg0 context.Context, arg1 *ec2.CreateDefaultVpcInput, arg2 ...request.Option) (*ec2.CreateDefaultVpcOutput, error)

CreateDefaultVpcWithContext mocks base method.

func (*MockEC2API) CreateDhcpOptions added in v1.19.0

func (m *MockEC2API) CreateDhcpOptions(arg0 *ec2.CreateDhcpOptionsInput) (*ec2.CreateDhcpOptionsOutput, error)

CreateDhcpOptions mocks base method.

func (*MockEC2API) CreateDhcpOptionsRequest added in v1.19.0

func (m *MockEC2API) CreateDhcpOptionsRequest(arg0 *ec2.CreateDhcpOptionsInput) (*request.Request, *ec2.CreateDhcpOptionsOutput)

CreateDhcpOptionsRequest mocks base method.

func (*MockEC2API) CreateDhcpOptionsWithContext added in v1.19.0

func (m *MockEC2API) CreateDhcpOptionsWithContext(arg0 context.Context, arg1 *ec2.CreateDhcpOptionsInput, arg2 ...request.Option) (*ec2.CreateDhcpOptionsOutput, error)

CreateDhcpOptionsWithContext mocks base method.

func (*MockEC2API) CreateEgressOnlyInternetGateway added in v1.19.0

CreateEgressOnlyInternetGateway mocks base method.

func (*MockEC2API) CreateEgressOnlyInternetGatewayRequest added in v1.19.0

func (m *MockEC2API) CreateEgressOnlyInternetGatewayRequest(arg0 *ec2.CreateEgressOnlyInternetGatewayInput) (*request.Request, *ec2.CreateEgressOnlyInternetGatewayOutput)

CreateEgressOnlyInternetGatewayRequest mocks base method.

func (*MockEC2API) CreateEgressOnlyInternetGatewayWithContext added in v1.19.0

func (m *MockEC2API) CreateEgressOnlyInternetGatewayWithContext(arg0 context.Context, arg1 *ec2.CreateEgressOnlyInternetGatewayInput, arg2 ...request.Option) (*ec2.CreateEgressOnlyInternetGatewayOutput, error)

CreateEgressOnlyInternetGatewayWithContext mocks base method.

func (*MockEC2API) CreateFleet added in v1.19.0

func (m *MockEC2API) CreateFleet(arg0 *ec2.CreateFleetInput) (*ec2.CreateFleetOutput, error)

CreateFleet mocks base method.

func (*MockEC2API) CreateFleetRequest added in v1.19.0

func (m *MockEC2API) CreateFleetRequest(arg0 *ec2.CreateFleetInput) (*request.Request, *ec2.CreateFleetOutput)

CreateFleetRequest mocks base method.

func (*MockEC2API) CreateFleetWithContext added in v1.19.0

func (m *MockEC2API) CreateFleetWithContext(arg0 context.Context, arg1 *ec2.CreateFleetInput, arg2 ...request.Option) (*ec2.CreateFleetOutput, error)

CreateFleetWithContext mocks base method.

func (*MockEC2API) CreateFlowLogs added in v1.19.0

func (m *MockEC2API) CreateFlowLogs(arg0 *ec2.CreateFlowLogsInput) (*ec2.CreateFlowLogsOutput, error)

CreateFlowLogs mocks base method.

func (*MockEC2API) CreateFlowLogsRequest added in v1.19.0

func (m *MockEC2API) CreateFlowLogsRequest(arg0 *ec2.CreateFlowLogsInput) (*request.Request, *ec2.CreateFlowLogsOutput)

CreateFlowLogsRequest mocks base method.

func (*MockEC2API) CreateFlowLogsWithContext added in v1.19.0

func (m *MockEC2API) CreateFlowLogsWithContext(arg0 context.Context, arg1 *ec2.CreateFlowLogsInput, arg2 ...request.Option) (*ec2.CreateFlowLogsOutput, error)

CreateFlowLogsWithContext mocks base method.

func (*MockEC2API) CreateFpgaImage added in v1.19.0

func (m *MockEC2API) CreateFpgaImage(arg0 *ec2.CreateFpgaImageInput) (*ec2.CreateFpgaImageOutput, error)

CreateFpgaImage mocks base method.

func (*MockEC2API) CreateFpgaImageRequest added in v1.19.0

func (m *MockEC2API) CreateFpgaImageRequest(arg0 *ec2.CreateFpgaImageInput) (*request.Request, *ec2.CreateFpgaImageOutput)

CreateFpgaImageRequest mocks base method.

func (*MockEC2API) CreateFpgaImageWithContext added in v1.19.0

func (m *MockEC2API) CreateFpgaImageWithContext(arg0 context.Context, arg1 *ec2.CreateFpgaImageInput, arg2 ...request.Option) (*ec2.CreateFpgaImageOutput, error)

CreateFpgaImageWithContext mocks base method.

func (*MockEC2API) CreateImage added in v1.19.0

func (m *MockEC2API) CreateImage(arg0 *ec2.CreateImageInput) (*ec2.CreateImageOutput, error)

CreateImage mocks base method.

func (*MockEC2API) CreateImageRequest added in v1.19.0

func (m *MockEC2API) CreateImageRequest(arg0 *ec2.CreateImageInput) (*request.Request, *ec2.CreateImageOutput)

CreateImageRequest mocks base method.

func (*MockEC2API) CreateImageWithContext added in v1.19.0

func (m *MockEC2API) CreateImageWithContext(arg0 context.Context, arg1 *ec2.CreateImageInput, arg2 ...request.Option) (*ec2.CreateImageOutput, error)

CreateImageWithContext mocks base method.

func (*MockEC2API) CreateInstanceConnectEndpoint added in v1.20.0

CreateInstanceConnectEndpoint mocks base method.

func (*MockEC2API) CreateInstanceConnectEndpointRequest added in v1.20.0

func (m *MockEC2API) CreateInstanceConnectEndpointRequest(arg0 *ec2.CreateInstanceConnectEndpointInput) (*request.Request, *ec2.CreateInstanceConnectEndpointOutput)

CreateInstanceConnectEndpointRequest mocks base method.

func (*MockEC2API) CreateInstanceConnectEndpointWithContext added in v1.20.0

func (m *MockEC2API) CreateInstanceConnectEndpointWithContext(arg0 context.Context, arg1 *ec2.CreateInstanceConnectEndpointInput, arg2 ...request.Option) (*ec2.CreateInstanceConnectEndpointOutput, error)

CreateInstanceConnectEndpointWithContext mocks base method.

func (*MockEC2API) CreateInstanceEventWindow added in v1.19.0

CreateInstanceEventWindow mocks base method.

func (*MockEC2API) CreateInstanceEventWindowRequest added in v1.19.0

func (m *MockEC2API) CreateInstanceEventWindowRequest(arg0 *ec2.CreateInstanceEventWindowInput) (*request.Request, *ec2.CreateInstanceEventWindowOutput)

CreateInstanceEventWindowRequest mocks base method.

func (*MockEC2API) CreateInstanceEventWindowWithContext added in v1.19.0

func (m *MockEC2API) CreateInstanceEventWindowWithContext(arg0 context.Context, arg1 *ec2.CreateInstanceEventWindowInput, arg2 ...request.Option) (*ec2.CreateInstanceEventWindowOutput, error)

CreateInstanceEventWindowWithContext mocks base method.

func (*MockEC2API) CreateInstanceExportTask added in v1.19.0

CreateInstanceExportTask mocks base method.

func (*MockEC2API) CreateInstanceExportTaskRequest added in v1.19.0

func (m *MockEC2API) CreateInstanceExportTaskRequest(arg0 *ec2.CreateInstanceExportTaskInput) (*request.Request, *ec2.CreateInstanceExportTaskOutput)

CreateInstanceExportTaskRequest mocks base method.

func (*MockEC2API) CreateInstanceExportTaskWithContext added in v1.19.0

func (m *MockEC2API) CreateInstanceExportTaskWithContext(arg0 context.Context, arg1 *ec2.CreateInstanceExportTaskInput, arg2 ...request.Option) (*ec2.CreateInstanceExportTaskOutput, error)

CreateInstanceExportTaskWithContext mocks base method.

func (*MockEC2API) CreateInternetGateway added in v1.19.0

func (m *MockEC2API) CreateInternetGateway(arg0 *ec2.CreateInternetGatewayInput) (*ec2.CreateInternetGatewayOutput, error)

CreateInternetGateway mocks base method.

func (*MockEC2API) CreateInternetGatewayRequest added in v1.19.0

func (m *MockEC2API) CreateInternetGatewayRequest(arg0 *ec2.CreateInternetGatewayInput) (*request.Request, *ec2.CreateInternetGatewayOutput)

CreateInternetGatewayRequest mocks base method.

func (*MockEC2API) CreateInternetGatewayWithContext added in v1.19.0

func (m *MockEC2API) CreateInternetGatewayWithContext(arg0 context.Context, arg1 *ec2.CreateInternetGatewayInput, arg2 ...request.Option) (*ec2.CreateInternetGatewayOutput, error)

CreateInternetGatewayWithContext mocks base method.

func (*MockEC2API) CreateIpam added in v1.19.0

func (m *MockEC2API) CreateIpam(arg0 *ec2.CreateIpamInput) (*ec2.CreateIpamOutput, error)

CreateIpam mocks base method.

func (*MockEC2API) CreateIpamPool added in v1.19.0

func (m *MockEC2API) CreateIpamPool(arg0 *ec2.CreateIpamPoolInput) (*ec2.CreateIpamPoolOutput, error)

CreateIpamPool mocks base method.

func (*MockEC2API) CreateIpamPoolRequest added in v1.19.0

func (m *MockEC2API) CreateIpamPoolRequest(arg0 *ec2.CreateIpamPoolInput) (*request.Request, *ec2.CreateIpamPoolOutput)

CreateIpamPoolRequest mocks base method.

func (*MockEC2API) CreateIpamPoolWithContext added in v1.19.0

func (m *MockEC2API) CreateIpamPoolWithContext(arg0 context.Context, arg1 *ec2.CreateIpamPoolInput, arg2 ...request.Option) (*ec2.CreateIpamPoolOutput, error)

CreateIpamPoolWithContext mocks base method.

func (*MockEC2API) CreateIpamRequest added in v1.19.0

func (m *MockEC2API) CreateIpamRequest(arg0 *ec2.CreateIpamInput) (*request.Request, *ec2.CreateIpamOutput)

CreateIpamRequest mocks base method.

func (*MockEC2API) CreateIpamResourceDiscovery added in v1.19.0

CreateIpamResourceDiscovery mocks base method.

func (*MockEC2API) CreateIpamResourceDiscoveryRequest added in v1.19.0

func (m *MockEC2API) CreateIpamResourceDiscoveryRequest(arg0 *ec2.CreateIpamResourceDiscoveryInput) (*request.Request, *ec2.CreateIpamResourceDiscoveryOutput)

CreateIpamResourceDiscoveryRequest mocks base method.

func (*MockEC2API) CreateIpamResourceDiscoveryWithContext added in v1.19.0

func (m *MockEC2API) CreateIpamResourceDiscoveryWithContext(arg0 context.Context, arg1 *ec2.CreateIpamResourceDiscoveryInput, arg2 ...request.Option) (*ec2.CreateIpamResourceDiscoveryOutput, error)

CreateIpamResourceDiscoveryWithContext mocks base method.

func (*MockEC2API) CreateIpamScope added in v1.19.0

func (m *MockEC2API) CreateIpamScope(arg0 *ec2.CreateIpamScopeInput) (*ec2.CreateIpamScopeOutput, error)

CreateIpamScope mocks base method.

func (*MockEC2API) CreateIpamScopeRequest added in v1.19.0

func (m *MockEC2API) CreateIpamScopeRequest(arg0 *ec2.CreateIpamScopeInput) (*request.Request, *ec2.CreateIpamScopeOutput)

CreateIpamScopeRequest mocks base method.

func (*MockEC2API) CreateIpamScopeWithContext added in v1.19.0

func (m *MockEC2API) CreateIpamScopeWithContext(arg0 context.Context, arg1 *ec2.CreateIpamScopeInput, arg2 ...request.Option) (*ec2.CreateIpamScopeOutput, error)

CreateIpamScopeWithContext mocks base method.

func (*MockEC2API) CreateIpamWithContext added in v1.19.0

func (m *MockEC2API) CreateIpamWithContext(arg0 context.Context, arg1 *ec2.CreateIpamInput, arg2 ...request.Option) (*ec2.CreateIpamOutput, error)

CreateIpamWithContext mocks base method.

func (*MockEC2API) CreateKeyPair added in v1.19.0

func (m *MockEC2API) CreateKeyPair(arg0 *ec2.CreateKeyPairInput) (*ec2.CreateKeyPairOutput, error)

CreateKeyPair mocks base method.

func (*MockEC2API) CreateKeyPairRequest added in v1.19.0

func (m *MockEC2API) CreateKeyPairRequest(arg0 *ec2.CreateKeyPairInput) (*request.Request, *ec2.CreateKeyPairOutput)

CreateKeyPairRequest mocks base method.

func (*MockEC2API) CreateKeyPairWithContext added in v1.19.0

func (m *MockEC2API) CreateKeyPairWithContext(arg0 context.Context, arg1 *ec2.CreateKeyPairInput, arg2 ...request.Option) (*ec2.CreateKeyPairOutput, error)

CreateKeyPairWithContext mocks base method.

func (*MockEC2API) CreateLaunchTemplate added in v1.19.0

func (m *MockEC2API) CreateLaunchTemplate(arg0 *ec2.CreateLaunchTemplateInput) (*ec2.CreateLaunchTemplateOutput, error)

CreateLaunchTemplate mocks base method.

func (*MockEC2API) CreateLaunchTemplateRequest added in v1.19.0

func (m *MockEC2API) CreateLaunchTemplateRequest(arg0 *ec2.CreateLaunchTemplateInput) (*request.Request, *ec2.CreateLaunchTemplateOutput)

CreateLaunchTemplateRequest mocks base method.

func (*MockEC2API) CreateLaunchTemplateVersion added in v1.19.0

CreateLaunchTemplateVersion mocks base method.

func (*MockEC2API) CreateLaunchTemplateVersionRequest added in v1.19.0

func (m *MockEC2API) CreateLaunchTemplateVersionRequest(arg0 *ec2.CreateLaunchTemplateVersionInput) (*request.Request, *ec2.CreateLaunchTemplateVersionOutput)

CreateLaunchTemplateVersionRequest mocks base method.

func (*MockEC2API) CreateLaunchTemplateVersionWithContext added in v1.19.0

func (m *MockEC2API) CreateLaunchTemplateVersionWithContext(arg0 context.Context, arg1 *ec2.CreateLaunchTemplateVersionInput, arg2 ...request.Option) (*ec2.CreateLaunchTemplateVersionOutput, error)

CreateLaunchTemplateVersionWithContext mocks base method.

func (*MockEC2API) CreateLaunchTemplateWithContext added in v1.19.0

func (m *MockEC2API) CreateLaunchTemplateWithContext(arg0 context.Context, arg1 *ec2.CreateLaunchTemplateInput, arg2 ...request.Option) (*ec2.CreateLaunchTemplateOutput, error)

CreateLaunchTemplateWithContext mocks base method.

func (*MockEC2API) CreateLocalGatewayRoute added in v1.19.0

func (m *MockEC2API) CreateLocalGatewayRoute(arg0 *ec2.CreateLocalGatewayRouteInput) (*ec2.CreateLocalGatewayRouteOutput, error)

CreateLocalGatewayRoute mocks base method.

func (*MockEC2API) CreateLocalGatewayRouteRequest added in v1.19.0

func (m *MockEC2API) CreateLocalGatewayRouteRequest(arg0 *ec2.CreateLocalGatewayRouteInput) (*request.Request, *ec2.CreateLocalGatewayRouteOutput)

CreateLocalGatewayRouteRequest mocks base method.

func (*MockEC2API) CreateLocalGatewayRouteTable added in v1.19.0

CreateLocalGatewayRouteTable mocks base method.

func (*MockEC2API) CreateLocalGatewayRouteTableRequest added in v1.19.0

func (m *MockEC2API) CreateLocalGatewayRouteTableRequest(arg0 *ec2.CreateLocalGatewayRouteTableInput) (*request.Request, *ec2.CreateLocalGatewayRouteTableOutput)

CreateLocalGatewayRouteTableRequest mocks base method.

func (*MockEC2API) CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociation added in v1.19.0

CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociation mocks base method.

func (*MockEC2API) CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationRequest added in v1.19.0

CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationRequest mocks base method.

func (*MockEC2API) CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationWithContext added in v1.19.0

CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationWithContext mocks base method.

func (*MockEC2API) CreateLocalGatewayRouteTableVpcAssociation added in v1.19.0

CreateLocalGatewayRouteTableVpcAssociation mocks base method.

func (*MockEC2API) CreateLocalGatewayRouteTableVpcAssociationRequest added in v1.19.0

CreateLocalGatewayRouteTableVpcAssociationRequest mocks base method.

func (*MockEC2API) CreateLocalGatewayRouteTableVpcAssociationWithContext added in v1.19.0

func (m *MockEC2API) CreateLocalGatewayRouteTableVpcAssociationWithContext(arg0 context.Context, arg1 *ec2.CreateLocalGatewayRouteTableVpcAssociationInput, arg2 ...request.Option) (*ec2.CreateLocalGatewayRouteTableVpcAssociationOutput, error)

CreateLocalGatewayRouteTableVpcAssociationWithContext mocks base method.

func (*MockEC2API) CreateLocalGatewayRouteTableWithContext added in v1.19.0

func (m *MockEC2API) CreateLocalGatewayRouteTableWithContext(arg0 context.Context, arg1 *ec2.CreateLocalGatewayRouteTableInput, arg2 ...request.Option) (*ec2.CreateLocalGatewayRouteTableOutput, error)

CreateLocalGatewayRouteTableWithContext mocks base method.

func (*MockEC2API) CreateLocalGatewayRouteWithContext added in v1.19.0

func (m *MockEC2API) CreateLocalGatewayRouteWithContext(arg0 context.Context, arg1 *ec2.CreateLocalGatewayRouteInput, arg2 ...request.Option) (*ec2.CreateLocalGatewayRouteOutput, error)

CreateLocalGatewayRouteWithContext mocks base method.

func (*MockEC2API) CreateManagedPrefixList added in v1.19.0

func (m *MockEC2API) CreateManagedPrefixList(arg0 *ec2.CreateManagedPrefixListInput) (*ec2.CreateManagedPrefixListOutput, error)

CreateManagedPrefixList mocks base method.

func (*MockEC2API) CreateManagedPrefixListRequest added in v1.19.0

func (m *MockEC2API) CreateManagedPrefixListRequest(arg0 *ec2.CreateManagedPrefixListInput) (*request.Request, *ec2.CreateManagedPrefixListOutput)

CreateManagedPrefixListRequest mocks base method.

func (*MockEC2API) CreateManagedPrefixListWithContext added in v1.19.0

func (m *MockEC2API) CreateManagedPrefixListWithContext(arg0 context.Context, arg1 *ec2.CreateManagedPrefixListInput, arg2 ...request.Option) (*ec2.CreateManagedPrefixListOutput, error)

CreateManagedPrefixListWithContext mocks base method.

func (*MockEC2API) CreateNatGateway added in v1.19.0

func (m *MockEC2API) CreateNatGateway(arg0 *ec2.CreateNatGatewayInput) (*ec2.CreateNatGatewayOutput, error)

CreateNatGateway mocks base method.

func (*MockEC2API) CreateNatGatewayRequest added in v1.19.0

func (m *MockEC2API) CreateNatGatewayRequest(arg0 *ec2.CreateNatGatewayInput) (*request.Request, *ec2.CreateNatGatewayOutput)

CreateNatGatewayRequest mocks base method.

func (*MockEC2API) CreateNatGatewayWithContext added in v1.19.0

func (m *MockEC2API) CreateNatGatewayWithContext(arg0 context.Context, arg1 *ec2.CreateNatGatewayInput, arg2 ...request.Option) (*ec2.CreateNatGatewayOutput, error)

CreateNatGatewayWithContext mocks base method.

func (*MockEC2API) CreateNetworkAcl added in v1.19.0

func (m *MockEC2API) CreateNetworkAcl(arg0 *ec2.CreateNetworkAclInput) (*ec2.CreateNetworkAclOutput, error)

CreateNetworkAcl mocks base method.

func (*MockEC2API) CreateNetworkAclEntry added in v1.19.0

func (m *MockEC2API) CreateNetworkAclEntry(arg0 *ec2.CreateNetworkAclEntryInput) (*ec2.CreateNetworkAclEntryOutput, error)

CreateNetworkAclEntry mocks base method.

func (*MockEC2API) CreateNetworkAclEntryRequest added in v1.19.0

func (m *MockEC2API) CreateNetworkAclEntryRequest(arg0 *ec2.CreateNetworkAclEntryInput) (*request.Request, *ec2.CreateNetworkAclEntryOutput)

CreateNetworkAclEntryRequest mocks base method.

func (*MockEC2API) CreateNetworkAclEntryWithContext added in v1.19.0

func (m *MockEC2API) CreateNetworkAclEntryWithContext(arg0 context.Context, arg1 *ec2.CreateNetworkAclEntryInput, arg2 ...request.Option) (*ec2.CreateNetworkAclEntryOutput, error)

CreateNetworkAclEntryWithContext mocks base method.

func (*MockEC2API) CreateNetworkAclRequest added in v1.19.0

func (m *MockEC2API) CreateNetworkAclRequest(arg0 *ec2.CreateNetworkAclInput) (*request.Request, *ec2.CreateNetworkAclOutput)

CreateNetworkAclRequest mocks base method.

func (*MockEC2API) CreateNetworkAclWithContext added in v1.19.0

func (m *MockEC2API) CreateNetworkAclWithContext(arg0 context.Context, arg1 *ec2.CreateNetworkAclInput, arg2 ...request.Option) (*ec2.CreateNetworkAclOutput, error)

CreateNetworkAclWithContext mocks base method.

func (*MockEC2API) CreateNetworkInsightsAccessScope added in v1.19.0

CreateNetworkInsightsAccessScope mocks base method.

func (*MockEC2API) CreateNetworkInsightsAccessScopeRequest added in v1.19.0

func (m *MockEC2API) CreateNetworkInsightsAccessScopeRequest(arg0 *ec2.CreateNetworkInsightsAccessScopeInput) (*request.Request, *ec2.CreateNetworkInsightsAccessScopeOutput)

CreateNetworkInsightsAccessScopeRequest mocks base method.

func (*MockEC2API) CreateNetworkInsightsAccessScopeWithContext added in v1.19.0

func (m *MockEC2API) CreateNetworkInsightsAccessScopeWithContext(arg0 context.Context, arg1 *ec2.CreateNetworkInsightsAccessScopeInput, arg2 ...request.Option) (*ec2.CreateNetworkInsightsAccessScopeOutput, error)

CreateNetworkInsightsAccessScopeWithContext mocks base method.

func (*MockEC2API) CreateNetworkInsightsPath added in v1.19.0

CreateNetworkInsightsPath mocks base method.

func (*MockEC2API) CreateNetworkInsightsPathRequest added in v1.19.0

func (m *MockEC2API) CreateNetworkInsightsPathRequest(arg0 *ec2.CreateNetworkInsightsPathInput) (*request.Request, *ec2.CreateNetworkInsightsPathOutput)

CreateNetworkInsightsPathRequest mocks base method.

func (*MockEC2API) CreateNetworkInsightsPathWithContext added in v1.19.0

func (m *MockEC2API) CreateNetworkInsightsPathWithContext(arg0 context.Context, arg1 *ec2.CreateNetworkInsightsPathInput, arg2 ...request.Option) (*ec2.CreateNetworkInsightsPathOutput, error)

CreateNetworkInsightsPathWithContext mocks base method.

func (*MockEC2API) CreateNetworkInterface added in v1.19.0

func (m *MockEC2API) CreateNetworkInterface(arg0 *ec2.CreateNetworkInterfaceInput) (*ec2.CreateNetworkInterfaceOutput, error)

CreateNetworkInterface mocks base method.

func (*MockEC2API) CreateNetworkInterfacePermission added in v1.19.0

CreateNetworkInterfacePermission mocks base method.

func (*MockEC2API) CreateNetworkInterfacePermissionRequest added in v1.19.0

func (m *MockEC2API) CreateNetworkInterfacePermissionRequest(arg0 *ec2.CreateNetworkInterfacePermissionInput) (*request.Request, *ec2.CreateNetworkInterfacePermissionOutput)

CreateNetworkInterfacePermissionRequest mocks base method.

func (*MockEC2API) CreateNetworkInterfacePermissionWithContext added in v1.19.0

func (m *MockEC2API) CreateNetworkInterfacePermissionWithContext(arg0 context.Context, arg1 *ec2.CreateNetworkInterfacePermissionInput, arg2 ...request.Option) (*ec2.CreateNetworkInterfacePermissionOutput, error)

CreateNetworkInterfacePermissionWithContext mocks base method.

func (*MockEC2API) CreateNetworkInterfaceRequest added in v1.19.0

func (m *MockEC2API) CreateNetworkInterfaceRequest(arg0 *ec2.CreateNetworkInterfaceInput) (*request.Request, *ec2.CreateNetworkInterfaceOutput)

CreateNetworkInterfaceRequest mocks base method.

func (*MockEC2API) CreateNetworkInterfaceWithContext added in v1.19.0

func (m *MockEC2API) CreateNetworkInterfaceWithContext(arg0 context.Context, arg1 *ec2.CreateNetworkInterfaceInput, arg2 ...request.Option) (*ec2.CreateNetworkInterfaceOutput, error)

CreateNetworkInterfaceWithContext mocks base method.

func (*MockEC2API) CreatePlacementGroup added in v1.19.0

func (m *MockEC2API) CreatePlacementGroup(arg0 *ec2.CreatePlacementGroupInput) (*ec2.CreatePlacementGroupOutput, error)

CreatePlacementGroup mocks base method.

func (*MockEC2API) CreatePlacementGroupRequest added in v1.19.0

func (m *MockEC2API) CreatePlacementGroupRequest(arg0 *ec2.CreatePlacementGroupInput) (*request.Request, *ec2.CreatePlacementGroupOutput)

CreatePlacementGroupRequest mocks base method.

func (*MockEC2API) CreatePlacementGroupWithContext added in v1.19.0

func (m *MockEC2API) CreatePlacementGroupWithContext(arg0 context.Context, arg1 *ec2.CreatePlacementGroupInput, arg2 ...request.Option) (*ec2.CreatePlacementGroupOutput, error)

CreatePlacementGroupWithContext mocks base method.

func (*MockEC2API) CreatePublicIpv4Pool added in v1.19.0

func (m *MockEC2API) CreatePublicIpv4Pool(arg0 *ec2.CreatePublicIpv4PoolInput) (*ec2.CreatePublicIpv4PoolOutput, error)

CreatePublicIpv4Pool mocks base method.

func (*MockEC2API) CreatePublicIpv4PoolRequest added in v1.19.0

func (m *MockEC2API) CreatePublicIpv4PoolRequest(arg0 *ec2.CreatePublicIpv4PoolInput) (*request.Request, *ec2.CreatePublicIpv4PoolOutput)

CreatePublicIpv4PoolRequest mocks base method.

func (*MockEC2API) CreatePublicIpv4PoolWithContext added in v1.19.0

func (m *MockEC2API) CreatePublicIpv4PoolWithContext(arg0 context.Context, arg1 *ec2.CreatePublicIpv4PoolInput, arg2 ...request.Option) (*ec2.CreatePublicIpv4PoolOutput, error)

CreatePublicIpv4PoolWithContext mocks base method.

func (*MockEC2API) CreateReplaceRootVolumeTask added in v1.19.0

CreateReplaceRootVolumeTask mocks base method.

func (*MockEC2API) CreateReplaceRootVolumeTaskRequest added in v1.19.0

func (m *MockEC2API) CreateReplaceRootVolumeTaskRequest(arg0 *ec2.CreateReplaceRootVolumeTaskInput) (*request.Request, *ec2.CreateReplaceRootVolumeTaskOutput)

CreateReplaceRootVolumeTaskRequest mocks base method.

func (*MockEC2API) CreateReplaceRootVolumeTaskWithContext added in v1.19.0

func (m *MockEC2API) CreateReplaceRootVolumeTaskWithContext(arg0 context.Context, arg1 *ec2.CreateReplaceRootVolumeTaskInput, arg2 ...request.Option) (*ec2.CreateReplaceRootVolumeTaskOutput, error)

CreateReplaceRootVolumeTaskWithContext mocks base method.

func (*MockEC2API) CreateReservedInstancesListing added in v1.19.0

CreateReservedInstancesListing mocks base method.

func (*MockEC2API) CreateReservedInstancesListingRequest added in v1.19.0

func (m *MockEC2API) CreateReservedInstancesListingRequest(arg0 *ec2.CreateReservedInstancesListingInput) (*request.Request, *ec2.CreateReservedInstancesListingOutput)

CreateReservedInstancesListingRequest mocks base method.

func (*MockEC2API) CreateReservedInstancesListingWithContext added in v1.19.0

func (m *MockEC2API) CreateReservedInstancesListingWithContext(arg0 context.Context, arg1 *ec2.CreateReservedInstancesListingInput, arg2 ...request.Option) (*ec2.CreateReservedInstancesListingOutput, error)

CreateReservedInstancesListingWithContext mocks base method.

func (*MockEC2API) CreateRestoreImageTask added in v1.19.0

func (m *MockEC2API) CreateRestoreImageTask(arg0 *ec2.CreateRestoreImageTaskInput) (*ec2.CreateRestoreImageTaskOutput, error)

CreateRestoreImageTask mocks base method.

func (*MockEC2API) CreateRestoreImageTaskRequest added in v1.19.0

func (m *MockEC2API) CreateRestoreImageTaskRequest(arg0 *ec2.CreateRestoreImageTaskInput) (*request.Request, *ec2.CreateRestoreImageTaskOutput)

CreateRestoreImageTaskRequest mocks base method.

func (*MockEC2API) CreateRestoreImageTaskWithContext added in v1.19.0

func (m *MockEC2API) CreateRestoreImageTaskWithContext(arg0 context.Context, arg1 *ec2.CreateRestoreImageTaskInput, arg2 ...request.Option) (*ec2.CreateRestoreImageTaskOutput, error)

CreateRestoreImageTaskWithContext mocks base method.

func (*MockEC2API) CreateRoute added in v1.19.0

func (m *MockEC2API) CreateRoute(arg0 *ec2.CreateRouteInput) (*ec2.CreateRouteOutput, error)

CreateRoute mocks base method.

func (*MockEC2API) CreateRouteRequest added in v1.19.0

func (m *MockEC2API) CreateRouteRequest(arg0 *ec2.CreateRouteInput) (*request.Request, *ec2.CreateRouteOutput)

CreateRouteRequest mocks base method.

func (*MockEC2API) CreateRouteTable added in v1.19.0

func (m *MockEC2API) CreateRouteTable(arg0 *ec2.CreateRouteTableInput) (*ec2.CreateRouteTableOutput, error)

CreateRouteTable mocks base method.

func (*MockEC2API) CreateRouteTableRequest added in v1.19.0

func (m *MockEC2API) CreateRouteTableRequest(arg0 *ec2.CreateRouteTableInput) (*request.Request, *ec2.CreateRouteTableOutput)

CreateRouteTableRequest mocks base method.

func (*MockEC2API) CreateRouteTableWithContext added in v1.19.0

func (m *MockEC2API) CreateRouteTableWithContext(arg0 context.Context, arg1 *ec2.CreateRouteTableInput, arg2 ...request.Option) (*ec2.CreateRouteTableOutput, error)

CreateRouteTableWithContext mocks base method.

func (*MockEC2API) CreateRouteWithContext added in v1.19.0

func (m *MockEC2API) CreateRouteWithContext(arg0 context.Context, arg1 *ec2.CreateRouteInput, arg2 ...request.Option) (*ec2.CreateRouteOutput, error)

CreateRouteWithContext mocks base method.

func (*MockEC2API) CreateSecurityGroup added in v1.19.0

func (m *MockEC2API) CreateSecurityGroup(arg0 *ec2.CreateSecurityGroupInput) (*ec2.CreateSecurityGroupOutput, error)

CreateSecurityGroup mocks base method.

func (*MockEC2API) CreateSecurityGroupRequest added in v1.19.0

func (m *MockEC2API) CreateSecurityGroupRequest(arg0 *ec2.CreateSecurityGroupInput) (*request.Request, *ec2.CreateSecurityGroupOutput)

CreateSecurityGroupRequest mocks base method.

func (*MockEC2API) CreateSecurityGroupWithContext added in v1.19.0

func (m *MockEC2API) CreateSecurityGroupWithContext(arg0 context.Context, arg1 *ec2.CreateSecurityGroupInput, arg2 ...request.Option) (*ec2.CreateSecurityGroupOutput, error)

CreateSecurityGroupWithContext mocks base method.

func (*MockEC2API) CreateSnapshot added in v1.19.0

func (m *MockEC2API) CreateSnapshot(arg0 *ec2.CreateSnapshotInput) (*ec2.Snapshot, error)

CreateSnapshot mocks base method.

func (*MockEC2API) CreateSnapshotRequest added in v1.19.0

func (m *MockEC2API) CreateSnapshotRequest(arg0 *ec2.CreateSnapshotInput) (*request.Request, *ec2.Snapshot)

CreateSnapshotRequest mocks base method.

func (*MockEC2API) CreateSnapshotWithContext added in v1.19.0

func (m *MockEC2API) CreateSnapshotWithContext(arg0 context.Context, arg1 *ec2.CreateSnapshotInput, arg2 ...request.Option) (*ec2.Snapshot, error)

CreateSnapshotWithContext mocks base method.

func (*MockEC2API) CreateSnapshots added in v1.19.0

func (m *MockEC2API) CreateSnapshots(arg0 *ec2.CreateSnapshotsInput) (*ec2.CreateSnapshotsOutput, error)

CreateSnapshots mocks base method.

func (*MockEC2API) CreateSnapshotsRequest added in v1.19.0

func (m *MockEC2API) CreateSnapshotsRequest(arg0 *ec2.CreateSnapshotsInput) (*request.Request, *ec2.CreateSnapshotsOutput)

CreateSnapshotsRequest mocks base method.

func (*MockEC2API) CreateSnapshotsWithContext added in v1.19.0

func (m *MockEC2API) CreateSnapshotsWithContext(arg0 context.Context, arg1 *ec2.CreateSnapshotsInput, arg2 ...request.Option) (*ec2.CreateSnapshotsOutput, error)

CreateSnapshotsWithContext mocks base method.

func (*MockEC2API) CreateSpotDatafeedSubscription added in v1.19.0

CreateSpotDatafeedSubscription mocks base method.

func (*MockEC2API) CreateSpotDatafeedSubscriptionRequest added in v1.19.0

func (m *MockEC2API) CreateSpotDatafeedSubscriptionRequest(arg0 *ec2.CreateSpotDatafeedSubscriptionInput) (*request.Request, *ec2.CreateSpotDatafeedSubscriptionOutput)

CreateSpotDatafeedSubscriptionRequest mocks base method.

func (*MockEC2API) CreateSpotDatafeedSubscriptionWithContext added in v1.19.0

func (m *MockEC2API) CreateSpotDatafeedSubscriptionWithContext(arg0 context.Context, arg1 *ec2.CreateSpotDatafeedSubscriptionInput, arg2 ...request.Option) (*ec2.CreateSpotDatafeedSubscriptionOutput, error)

CreateSpotDatafeedSubscriptionWithContext mocks base method.

func (*MockEC2API) CreateStoreImageTask added in v1.19.0

func (m *MockEC2API) CreateStoreImageTask(arg0 *ec2.CreateStoreImageTaskInput) (*ec2.CreateStoreImageTaskOutput, error)

CreateStoreImageTask mocks base method.

func (*MockEC2API) CreateStoreImageTaskRequest added in v1.19.0

func (m *MockEC2API) CreateStoreImageTaskRequest(arg0 *ec2.CreateStoreImageTaskInput) (*request.Request, *ec2.CreateStoreImageTaskOutput)

CreateStoreImageTaskRequest mocks base method.

func (*MockEC2API) CreateStoreImageTaskWithContext added in v1.19.0

func (m *MockEC2API) CreateStoreImageTaskWithContext(arg0 context.Context, arg1 *ec2.CreateStoreImageTaskInput, arg2 ...request.Option) (*ec2.CreateStoreImageTaskOutput, error)

CreateStoreImageTaskWithContext mocks base method.

func (*MockEC2API) CreateSubnet added in v1.19.0

func (m *MockEC2API) CreateSubnet(arg0 *ec2.CreateSubnetInput) (*ec2.CreateSubnetOutput, error)

CreateSubnet mocks base method.

func (*MockEC2API) CreateSubnetCidrReservation added in v1.19.0

CreateSubnetCidrReservation mocks base method.

func (*MockEC2API) CreateSubnetCidrReservationRequest added in v1.19.0

func (m *MockEC2API) CreateSubnetCidrReservationRequest(arg0 *ec2.CreateSubnetCidrReservationInput) (*request.Request, *ec2.CreateSubnetCidrReservationOutput)

CreateSubnetCidrReservationRequest mocks base method.

func (*MockEC2API) CreateSubnetCidrReservationWithContext added in v1.19.0

func (m *MockEC2API) CreateSubnetCidrReservationWithContext(arg0 context.Context, arg1 *ec2.CreateSubnetCidrReservationInput, arg2 ...request.Option) (*ec2.CreateSubnetCidrReservationOutput, error)

CreateSubnetCidrReservationWithContext mocks base method.

func (*MockEC2API) CreateSubnetRequest added in v1.19.0

func (m *MockEC2API) CreateSubnetRequest(arg0 *ec2.CreateSubnetInput) (*request.Request, *ec2.CreateSubnetOutput)

CreateSubnetRequest mocks base method.

func (*MockEC2API) CreateSubnetWithContext added in v1.19.0

func (m *MockEC2API) CreateSubnetWithContext(arg0 context.Context, arg1 *ec2.CreateSubnetInput, arg2 ...request.Option) (*ec2.CreateSubnetOutput, error)

CreateSubnetWithContext mocks base method.

func (*MockEC2API) CreateTags added in v1.19.0

func (m *MockEC2API) CreateTags(arg0 *ec2.CreateTagsInput) (*ec2.CreateTagsOutput, error)

CreateTags mocks base method.

func (*MockEC2API) CreateTagsRequest added in v1.19.0

func (m *MockEC2API) CreateTagsRequest(arg0 *ec2.CreateTagsInput) (*request.Request, *ec2.CreateTagsOutput)

CreateTagsRequest mocks base method.

func (*MockEC2API) CreateTagsWithContext added in v1.19.0

func (m *MockEC2API) CreateTagsWithContext(arg0 context.Context, arg1 *ec2.CreateTagsInput, arg2 ...request.Option) (*ec2.CreateTagsOutput, error)

CreateTagsWithContext mocks base method.

func (*MockEC2API) CreateTrafficMirrorFilter added in v1.19.0

CreateTrafficMirrorFilter mocks base method.

func (*MockEC2API) CreateTrafficMirrorFilterRequest added in v1.19.0

func (m *MockEC2API) CreateTrafficMirrorFilterRequest(arg0 *ec2.CreateTrafficMirrorFilterInput) (*request.Request, *ec2.CreateTrafficMirrorFilterOutput)

CreateTrafficMirrorFilterRequest mocks base method.

func (*MockEC2API) CreateTrafficMirrorFilterRule added in v1.19.0

CreateTrafficMirrorFilterRule mocks base method.

func (*MockEC2API) CreateTrafficMirrorFilterRuleRequest added in v1.19.0

func (m *MockEC2API) CreateTrafficMirrorFilterRuleRequest(arg0 *ec2.CreateTrafficMirrorFilterRuleInput) (*request.Request, *ec2.CreateTrafficMirrorFilterRuleOutput)

CreateTrafficMirrorFilterRuleRequest mocks base method.

func (*MockEC2API) CreateTrafficMirrorFilterRuleWithContext added in v1.19.0

func (m *MockEC2API) CreateTrafficMirrorFilterRuleWithContext(arg0 context.Context, arg1 *ec2.CreateTrafficMirrorFilterRuleInput, arg2 ...request.Option) (*ec2.CreateTrafficMirrorFilterRuleOutput, error)

CreateTrafficMirrorFilterRuleWithContext mocks base method.

func (*MockEC2API) CreateTrafficMirrorFilterWithContext added in v1.19.0

func (m *MockEC2API) CreateTrafficMirrorFilterWithContext(arg0 context.Context, arg1 *ec2.CreateTrafficMirrorFilterInput, arg2 ...request.Option) (*ec2.CreateTrafficMirrorFilterOutput, error)

CreateTrafficMirrorFilterWithContext mocks base method.

func (*MockEC2API) CreateTrafficMirrorSession added in v1.19.0

CreateTrafficMirrorSession mocks base method.

func (*MockEC2API) CreateTrafficMirrorSessionRequest added in v1.19.0

func (m *MockEC2API) CreateTrafficMirrorSessionRequest(arg0 *ec2.CreateTrafficMirrorSessionInput) (*request.Request, *ec2.CreateTrafficMirrorSessionOutput)

CreateTrafficMirrorSessionRequest mocks base method.

func (*MockEC2API) CreateTrafficMirrorSessionWithContext added in v1.19.0

func (m *MockEC2API) CreateTrafficMirrorSessionWithContext(arg0 context.Context, arg1 *ec2.CreateTrafficMirrorSessionInput, arg2 ...request.Option) (*ec2.CreateTrafficMirrorSessionOutput, error)

CreateTrafficMirrorSessionWithContext mocks base method.

func (*MockEC2API) CreateTrafficMirrorTarget added in v1.19.0

CreateTrafficMirrorTarget mocks base method.

func (*MockEC2API) CreateTrafficMirrorTargetRequest added in v1.19.0

func (m *MockEC2API) CreateTrafficMirrorTargetRequest(arg0 *ec2.CreateTrafficMirrorTargetInput) (*request.Request, *ec2.CreateTrafficMirrorTargetOutput)

CreateTrafficMirrorTargetRequest mocks base method.

func (*MockEC2API) CreateTrafficMirrorTargetWithContext added in v1.19.0

func (m *MockEC2API) CreateTrafficMirrorTargetWithContext(arg0 context.Context, arg1 *ec2.CreateTrafficMirrorTargetInput, arg2 ...request.Option) (*ec2.CreateTrafficMirrorTargetOutput, error)

CreateTrafficMirrorTargetWithContext mocks base method.

func (*MockEC2API) CreateTransitGateway added in v1.19.0

func (m *MockEC2API) CreateTransitGateway(arg0 *ec2.CreateTransitGatewayInput) (*ec2.CreateTransitGatewayOutput, error)

CreateTransitGateway mocks base method.

func (*MockEC2API) CreateTransitGatewayConnect added in v1.19.0

CreateTransitGatewayConnect mocks base method.

func (*MockEC2API) CreateTransitGatewayConnectPeer added in v1.19.0

CreateTransitGatewayConnectPeer mocks base method.

func (*MockEC2API) CreateTransitGatewayConnectPeerRequest added in v1.19.0

func (m *MockEC2API) CreateTransitGatewayConnectPeerRequest(arg0 *ec2.CreateTransitGatewayConnectPeerInput) (*request.Request, *ec2.CreateTransitGatewayConnectPeerOutput)

CreateTransitGatewayConnectPeerRequest mocks base method.

func (*MockEC2API) CreateTransitGatewayConnectPeerWithContext added in v1.19.0

func (m *MockEC2API) CreateTransitGatewayConnectPeerWithContext(arg0 context.Context, arg1 *ec2.CreateTransitGatewayConnectPeerInput, arg2 ...request.Option) (*ec2.CreateTransitGatewayConnectPeerOutput, error)

CreateTransitGatewayConnectPeerWithContext mocks base method.

func (*MockEC2API) CreateTransitGatewayConnectRequest added in v1.19.0

func (m *MockEC2API) CreateTransitGatewayConnectRequest(arg0 *ec2.CreateTransitGatewayConnectInput) (*request.Request, *ec2.CreateTransitGatewayConnectOutput)

CreateTransitGatewayConnectRequest mocks base method.

func (*MockEC2API) CreateTransitGatewayConnectWithContext added in v1.19.0

func (m *MockEC2API) CreateTransitGatewayConnectWithContext(arg0 context.Context, arg1 *ec2.CreateTransitGatewayConnectInput, arg2 ...request.Option) (*ec2.CreateTransitGatewayConnectOutput, error)

CreateTransitGatewayConnectWithContext mocks base method.

func (*MockEC2API) CreateTransitGatewayMulticastDomain added in v1.19.0

CreateTransitGatewayMulticastDomain mocks base method.

func (*MockEC2API) CreateTransitGatewayMulticastDomainRequest added in v1.19.0

CreateTransitGatewayMulticastDomainRequest mocks base method.

func (*MockEC2API) CreateTransitGatewayMulticastDomainWithContext added in v1.19.0

func (m *MockEC2API) CreateTransitGatewayMulticastDomainWithContext(arg0 context.Context, arg1 *ec2.CreateTransitGatewayMulticastDomainInput, arg2 ...request.Option) (*ec2.CreateTransitGatewayMulticastDomainOutput, error)

CreateTransitGatewayMulticastDomainWithContext mocks base method.

func (*MockEC2API) CreateTransitGatewayPeeringAttachment added in v1.19.0

CreateTransitGatewayPeeringAttachment mocks base method.

func (*MockEC2API) CreateTransitGatewayPeeringAttachmentRequest added in v1.19.0

CreateTransitGatewayPeeringAttachmentRequest mocks base method.

func (*MockEC2API) CreateTransitGatewayPeeringAttachmentWithContext added in v1.19.0

func (m *MockEC2API) CreateTransitGatewayPeeringAttachmentWithContext(arg0 context.Context, arg1 *ec2.CreateTransitGatewayPeeringAttachmentInput, arg2 ...request.Option) (*ec2.CreateTransitGatewayPeeringAttachmentOutput, error)

CreateTransitGatewayPeeringAttachmentWithContext mocks base method.

func (*MockEC2API) CreateTransitGatewayPolicyTable added in v1.19.0

CreateTransitGatewayPolicyTable mocks base method.

func (*MockEC2API) CreateTransitGatewayPolicyTableRequest added in v1.19.0

func (m *MockEC2API) CreateTransitGatewayPolicyTableRequest(arg0 *ec2.CreateTransitGatewayPolicyTableInput) (*request.Request, *ec2.CreateTransitGatewayPolicyTableOutput)

CreateTransitGatewayPolicyTableRequest mocks base method.

func (*MockEC2API) CreateTransitGatewayPolicyTableWithContext added in v1.19.0

func (m *MockEC2API) CreateTransitGatewayPolicyTableWithContext(arg0 context.Context, arg1 *ec2.CreateTransitGatewayPolicyTableInput, arg2 ...request.Option) (*ec2.CreateTransitGatewayPolicyTableOutput, error)

CreateTransitGatewayPolicyTableWithContext mocks base method.

func (*MockEC2API) CreateTransitGatewayPrefixListReference added in v1.19.0

CreateTransitGatewayPrefixListReference mocks base method.

func (*MockEC2API) CreateTransitGatewayPrefixListReferenceRequest added in v1.19.0

CreateTransitGatewayPrefixListReferenceRequest mocks base method.

func (*MockEC2API) CreateTransitGatewayPrefixListReferenceWithContext added in v1.19.0

func (m *MockEC2API) CreateTransitGatewayPrefixListReferenceWithContext(arg0 context.Context, arg1 *ec2.CreateTransitGatewayPrefixListReferenceInput, arg2 ...request.Option) (*ec2.CreateTransitGatewayPrefixListReferenceOutput, error)

CreateTransitGatewayPrefixListReferenceWithContext mocks base method.

func (*MockEC2API) CreateTransitGatewayRequest added in v1.19.0

func (m *MockEC2API) CreateTransitGatewayRequest(arg0 *ec2.CreateTransitGatewayInput) (*request.Request, *ec2.CreateTransitGatewayOutput)

CreateTransitGatewayRequest mocks base method.

func (*MockEC2API) CreateTransitGatewayRoute added in v1.19.0

CreateTransitGatewayRoute mocks base method.

func (*MockEC2API) CreateTransitGatewayRouteRequest added in v1.19.0

func (m *MockEC2API) CreateTransitGatewayRouteRequest(arg0 *ec2.CreateTransitGatewayRouteInput) (*request.Request, *ec2.CreateTransitGatewayRouteOutput)

CreateTransitGatewayRouteRequest mocks base method.

func (*MockEC2API) CreateTransitGatewayRouteTable added in v1.19.0

CreateTransitGatewayRouteTable mocks base method.

func (*MockEC2API) CreateTransitGatewayRouteTableAnnouncement added in v1.19.0

CreateTransitGatewayRouteTableAnnouncement mocks base method.

func (*MockEC2API) CreateTransitGatewayRouteTableAnnouncementRequest added in v1.19.0

CreateTransitGatewayRouteTableAnnouncementRequest mocks base method.

func (*MockEC2API) CreateTransitGatewayRouteTableAnnouncementWithContext added in v1.19.0

func (m *MockEC2API) CreateTransitGatewayRouteTableAnnouncementWithContext(arg0 context.Context, arg1 *ec2.CreateTransitGatewayRouteTableAnnouncementInput, arg2 ...request.Option) (*ec2.CreateTransitGatewayRouteTableAnnouncementOutput, error)

CreateTransitGatewayRouteTableAnnouncementWithContext mocks base method.

func (*MockEC2API) CreateTransitGatewayRouteTableRequest added in v1.19.0

func (m *MockEC2API) CreateTransitGatewayRouteTableRequest(arg0 *ec2.CreateTransitGatewayRouteTableInput) (*request.Request, *ec2.CreateTransitGatewayRouteTableOutput)

CreateTransitGatewayRouteTableRequest mocks base method.

func (*MockEC2API) CreateTransitGatewayRouteTableWithContext added in v1.19.0

func (m *MockEC2API) CreateTransitGatewayRouteTableWithContext(arg0 context.Context, arg1 *ec2.CreateTransitGatewayRouteTableInput, arg2 ...request.Option) (*ec2.CreateTransitGatewayRouteTableOutput, error)

CreateTransitGatewayRouteTableWithContext mocks base method.

func (*MockEC2API) CreateTransitGatewayRouteWithContext added in v1.19.0

func (m *MockEC2API) CreateTransitGatewayRouteWithContext(arg0 context.Context, arg1 *ec2.CreateTransitGatewayRouteInput, arg2 ...request.Option) (*ec2.CreateTransitGatewayRouteOutput, error)

CreateTransitGatewayRouteWithContext mocks base method.

func (*MockEC2API) CreateTransitGatewayVpcAttachment added in v1.19.0

CreateTransitGatewayVpcAttachment mocks base method.

func (*MockEC2API) CreateTransitGatewayVpcAttachmentRequest added in v1.19.0

CreateTransitGatewayVpcAttachmentRequest mocks base method.

func (*MockEC2API) CreateTransitGatewayVpcAttachmentWithContext added in v1.19.0

func (m *MockEC2API) CreateTransitGatewayVpcAttachmentWithContext(arg0 context.Context, arg1 *ec2.CreateTransitGatewayVpcAttachmentInput, arg2 ...request.Option) (*ec2.CreateTransitGatewayVpcAttachmentOutput, error)

CreateTransitGatewayVpcAttachmentWithContext mocks base method.

func (*MockEC2API) CreateTransitGatewayWithContext added in v1.19.0

func (m *MockEC2API) CreateTransitGatewayWithContext(arg0 context.Context, arg1 *ec2.CreateTransitGatewayInput, arg2 ...request.Option) (*ec2.CreateTransitGatewayOutput, error)

CreateTransitGatewayWithContext mocks base method.

func (*MockEC2API) CreateVerifiedAccessEndpoint added in v1.19.0

CreateVerifiedAccessEndpoint mocks base method.

func (*MockEC2API) CreateVerifiedAccessEndpointRequest added in v1.19.0

func (m *MockEC2API) CreateVerifiedAccessEndpointRequest(arg0 *ec2.CreateVerifiedAccessEndpointInput) (*request.Request, *ec2.CreateVerifiedAccessEndpointOutput)

CreateVerifiedAccessEndpointRequest mocks base method.

func (*MockEC2API) CreateVerifiedAccessEndpointWithContext added in v1.19.0

func (m *MockEC2API) CreateVerifiedAccessEndpointWithContext(arg0 context.Context, arg1 *ec2.CreateVerifiedAccessEndpointInput, arg2 ...request.Option) (*ec2.CreateVerifiedAccessEndpointOutput, error)

CreateVerifiedAccessEndpointWithContext mocks base method.

func (*MockEC2API) CreateVerifiedAccessGroup added in v1.19.0

CreateVerifiedAccessGroup mocks base method.

func (*MockEC2API) CreateVerifiedAccessGroupRequest added in v1.19.0

func (m *MockEC2API) CreateVerifiedAccessGroupRequest(arg0 *ec2.CreateVerifiedAccessGroupInput) (*request.Request, *ec2.CreateVerifiedAccessGroupOutput)

CreateVerifiedAccessGroupRequest mocks base method.

func (*MockEC2API) CreateVerifiedAccessGroupWithContext added in v1.19.0

func (m *MockEC2API) CreateVerifiedAccessGroupWithContext(arg0 context.Context, arg1 *ec2.CreateVerifiedAccessGroupInput, arg2 ...request.Option) (*ec2.CreateVerifiedAccessGroupOutput, error)

CreateVerifiedAccessGroupWithContext mocks base method.

func (*MockEC2API) CreateVerifiedAccessInstance added in v1.19.0

CreateVerifiedAccessInstance mocks base method.

func (*MockEC2API) CreateVerifiedAccessInstanceRequest added in v1.19.0

func (m *MockEC2API) CreateVerifiedAccessInstanceRequest(arg0 *ec2.CreateVerifiedAccessInstanceInput) (*request.Request, *ec2.CreateVerifiedAccessInstanceOutput)

CreateVerifiedAccessInstanceRequest mocks base method.

func (*MockEC2API) CreateVerifiedAccessInstanceWithContext added in v1.19.0

func (m *MockEC2API) CreateVerifiedAccessInstanceWithContext(arg0 context.Context, arg1 *ec2.CreateVerifiedAccessInstanceInput, arg2 ...request.Option) (*ec2.CreateVerifiedAccessInstanceOutput, error)

CreateVerifiedAccessInstanceWithContext mocks base method.

func (*MockEC2API) CreateVerifiedAccessTrustProvider added in v1.19.0

CreateVerifiedAccessTrustProvider mocks base method.

func (*MockEC2API) CreateVerifiedAccessTrustProviderRequest added in v1.19.0

CreateVerifiedAccessTrustProviderRequest mocks base method.

func (*MockEC2API) CreateVerifiedAccessTrustProviderWithContext added in v1.19.0

func (m *MockEC2API) CreateVerifiedAccessTrustProviderWithContext(arg0 context.Context, arg1 *ec2.CreateVerifiedAccessTrustProviderInput, arg2 ...request.Option) (*ec2.CreateVerifiedAccessTrustProviderOutput, error)

CreateVerifiedAccessTrustProviderWithContext mocks base method.

func (*MockEC2API) CreateVolume added in v1.19.0

func (m *MockEC2API) CreateVolume(arg0 *ec2.CreateVolumeInput) (*ec2.Volume, error)

CreateVolume mocks base method.

func (*MockEC2API) CreateVolumeRequest added in v1.19.0

func (m *MockEC2API) CreateVolumeRequest(arg0 *ec2.CreateVolumeInput) (*request.Request, *ec2.Volume)

CreateVolumeRequest mocks base method.

func (*MockEC2API) CreateVolumeWithContext added in v1.19.0

func (m *MockEC2API) CreateVolumeWithContext(arg0 context.Context, arg1 *ec2.CreateVolumeInput, arg2 ...request.Option) (*ec2.Volume, error)

CreateVolumeWithContext mocks base method.

func (*MockEC2API) CreateVpc added in v1.19.0

func (m *MockEC2API) CreateVpc(arg0 *ec2.CreateVpcInput) (*ec2.CreateVpcOutput, error)

CreateVpc mocks base method.

func (*MockEC2API) CreateVpcEndpoint added in v1.19.0

func (m *MockEC2API) CreateVpcEndpoint(arg0 *ec2.CreateVpcEndpointInput) (*ec2.CreateVpcEndpointOutput, error)

CreateVpcEndpoint mocks base method.

func (*MockEC2API) CreateVpcEndpointConnectionNotification added in v1.19.0

CreateVpcEndpointConnectionNotification mocks base method.

func (*MockEC2API) CreateVpcEndpointConnectionNotificationRequest added in v1.19.0

CreateVpcEndpointConnectionNotificationRequest mocks base method.

func (*MockEC2API) CreateVpcEndpointConnectionNotificationWithContext added in v1.19.0

func (m *MockEC2API) CreateVpcEndpointConnectionNotificationWithContext(arg0 context.Context, arg1 *ec2.CreateVpcEndpointConnectionNotificationInput, arg2 ...request.Option) (*ec2.CreateVpcEndpointConnectionNotificationOutput, error)

CreateVpcEndpointConnectionNotificationWithContext mocks base method.

func (*MockEC2API) CreateVpcEndpointRequest added in v1.19.0

func (m *MockEC2API) CreateVpcEndpointRequest(arg0 *ec2.CreateVpcEndpointInput) (*request.Request, *ec2.CreateVpcEndpointOutput)

CreateVpcEndpointRequest mocks base method.

func (*MockEC2API) CreateVpcEndpointServiceConfiguration added in v1.19.0

CreateVpcEndpointServiceConfiguration mocks base method.

func (*MockEC2API) CreateVpcEndpointServiceConfigurationRequest added in v1.19.0

CreateVpcEndpointServiceConfigurationRequest mocks base method.

func (*MockEC2API) CreateVpcEndpointServiceConfigurationWithContext added in v1.19.0

func (m *MockEC2API) CreateVpcEndpointServiceConfigurationWithContext(arg0 context.Context, arg1 *ec2.CreateVpcEndpointServiceConfigurationInput, arg2 ...request.Option) (*ec2.CreateVpcEndpointServiceConfigurationOutput, error)

CreateVpcEndpointServiceConfigurationWithContext mocks base method.

func (*MockEC2API) CreateVpcEndpointWithContext added in v1.19.0

func (m *MockEC2API) CreateVpcEndpointWithContext(arg0 context.Context, arg1 *ec2.CreateVpcEndpointInput, arg2 ...request.Option) (*ec2.CreateVpcEndpointOutput, error)

CreateVpcEndpointWithContext mocks base method.

func (*MockEC2API) CreateVpcPeeringConnection added in v1.19.0

CreateVpcPeeringConnection mocks base method.

func (*MockEC2API) CreateVpcPeeringConnectionRequest added in v1.19.0

func (m *MockEC2API) CreateVpcPeeringConnectionRequest(arg0 *ec2.CreateVpcPeeringConnectionInput) (*request.Request, *ec2.CreateVpcPeeringConnectionOutput)

CreateVpcPeeringConnectionRequest mocks base method.

func (*MockEC2API) CreateVpcPeeringConnectionWithContext added in v1.19.0

func (m *MockEC2API) CreateVpcPeeringConnectionWithContext(arg0 context.Context, arg1 *ec2.CreateVpcPeeringConnectionInput, arg2 ...request.Option) (*ec2.CreateVpcPeeringConnectionOutput, error)

CreateVpcPeeringConnectionWithContext mocks base method.

func (*MockEC2API) CreateVpcRequest added in v1.19.0

func (m *MockEC2API) CreateVpcRequest(arg0 *ec2.CreateVpcInput) (*request.Request, *ec2.CreateVpcOutput)

CreateVpcRequest mocks base method.

func (*MockEC2API) CreateVpcWithContext added in v1.19.0

func (m *MockEC2API) CreateVpcWithContext(arg0 context.Context, arg1 *ec2.CreateVpcInput, arg2 ...request.Option) (*ec2.CreateVpcOutput, error)

CreateVpcWithContext mocks base method.

func (*MockEC2API) CreateVpnConnection added in v1.19.0

func (m *MockEC2API) CreateVpnConnection(arg0 *ec2.CreateVpnConnectionInput) (*ec2.CreateVpnConnectionOutput, error)

CreateVpnConnection mocks base method.

func (*MockEC2API) CreateVpnConnectionRequest added in v1.19.0

func (m *MockEC2API) CreateVpnConnectionRequest(arg0 *ec2.CreateVpnConnectionInput) (*request.Request, *ec2.CreateVpnConnectionOutput)

CreateVpnConnectionRequest mocks base method.

func (*MockEC2API) CreateVpnConnectionRoute added in v1.19.0

CreateVpnConnectionRoute mocks base method.

func (*MockEC2API) CreateVpnConnectionRouteRequest added in v1.19.0

func (m *MockEC2API) CreateVpnConnectionRouteRequest(arg0 *ec2.CreateVpnConnectionRouteInput) (*request.Request, *ec2.CreateVpnConnectionRouteOutput)

CreateVpnConnectionRouteRequest mocks base method.

func (*MockEC2API) CreateVpnConnectionRouteWithContext added in v1.19.0

func (m *MockEC2API) CreateVpnConnectionRouteWithContext(arg0 context.Context, arg1 *ec2.CreateVpnConnectionRouteInput, arg2 ...request.Option) (*ec2.CreateVpnConnectionRouteOutput, error)

CreateVpnConnectionRouteWithContext mocks base method.

func (*MockEC2API) CreateVpnConnectionWithContext added in v1.19.0

func (m *MockEC2API) CreateVpnConnectionWithContext(arg0 context.Context, arg1 *ec2.CreateVpnConnectionInput, arg2 ...request.Option) (*ec2.CreateVpnConnectionOutput, error)

CreateVpnConnectionWithContext mocks base method.

func (*MockEC2API) CreateVpnGateway added in v1.19.0

func (m *MockEC2API) CreateVpnGateway(arg0 *ec2.CreateVpnGatewayInput) (*ec2.CreateVpnGatewayOutput, error)

CreateVpnGateway mocks base method.

func (*MockEC2API) CreateVpnGatewayRequest added in v1.19.0

func (m *MockEC2API) CreateVpnGatewayRequest(arg0 *ec2.CreateVpnGatewayInput) (*request.Request, *ec2.CreateVpnGatewayOutput)

CreateVpnGatewayRequest mocks base method.

func (*MockEC2API) CreateVpnGatewayWithContext added in v1.19.0

func (m *MockEC2API) CreateVpnGatewayWithContext(arg0 context.Context, arg1 *ec2.CreateVpnGatewayInput, arg2 ...request.Option) (*ec2.CreateVpnGatewayOutput, error)

CreateVpnGatewayWithContext mocks base method.

func (*MockEC2API) DeleteCarrierGateway added in v1.19.0

func (m *MockEC2API) DeleteCarrierGateway(arg0 *ec2.DeleteCarrierGatewayInput) (*ec2.DeleteCarrierGatewayOutput, error)

DeleteCarrierGateway mocks base method.

func (*MockEC2API) DeleteCarrierGatewayRequest added in v1.19.0

func (m *MockEC2API) DeleteCarrierGatewayRequest(arg0 *ec2.DeleteCarrierGatewayInput) (*request.Request, *ec2.DeleteCarrierGatewayOutput)

DeleteCarrierGatewayRequest mocks base method.

func (*MockEC2API) DeleteCarrierGatewayWithContext added in v1.19.0

func (m *MockEC2API) DeleteCarrierGatewayWithContext(arg0 context.Context, arg1 *ec2.DeleteCarrierGatewayInput, arg2 ...request.Option) (*ec2.DeleteCarrierGatewayOutput, error)

DeleteCarrierGatewayWithContext mocks base method.

func (*MockEC2API) DeleteClientVpnEndpoint added in v1.19.0

func (m *MockEC2API) DeleteClientVpnEndpoint(arg0 *ec2.DeleteClientVpnEndpointInput) (*ec2.DeleteClientVpnEndpointOutput, error)

DeleteClientVpnEndpoint mocks base method.

func (*MockEC2API) DeleteClientVpnEndpointRequest added in v1.19.0

func (m *MockEC2API) DeleteClientVpnEndpointRequest(arg0 *ec2.DeleteClientVpnEndpointInput) (*request.Request, *ec2.DeleteClientVpnEndpointOutput)

DeleteClientVpnEndpointRequest mocks base method.

func (*MockEC2API) DeleteClientVpnEndpointWithContext added in v1.19.0

func (m *MockEC2API) DeleteClientVpnEndpointWithContext(arg0 context.Context, arg1 *ec2.DeleteClientVpnEndpointInput, arg2 ...request.Option) (*ec2.DeleteClientVpnEndpointOutput, error)

DeleteClientVpnEndpointWithContext mocks base method.

func (*MockEC2API) DeleteClientVpnRoute added in v1.19.0

func (m *MockEC2API) DeleteClientVpnRoute(arg0 *ec2.DeleteClientVpnRouteInput) (*ec2.DeleteClientVpnRouteOutput, error)

DeleteClientVpnRoute mocks base method.

func (*MockEC2API) DeleteClientVpnRouteRequest added in v1.19.0

func (m *MockEC2API) DeleteClientVpnRouteRequest(arg0 *ec2.DeleteClientVpnRouteInput) (*request.Request, *ec2.DeleteClientVpnRouteOutput)

DeleteClientVpnRouteRequest mocks base method.

func (*MockEC2API) DeleteClientVpnRouteWithContext added in v1.19.0

func (m *MockEC2API) DeleteClientVpnRouteWithContext(arg0 context.Context, arg1 *ec2.DeleteClientVpnRouteInput, arg2 ...request.Option) (*ec2.DeleteClientVpnRouteOutput, error)

DeleteClientVpnRouteWithContext mocks base method.

func (*MockEC2API) DeleteCoipCidr added in v1.19.0

func (m *MockEC2API) DeleteCoipCidr(arg0 *ec2.DeleteCoipCidrInput) (*ec2.DeleteCoipCidrOutput, error)

DeleteCoipCidr mocks base method.

func (*MockEC2API) DeleteCoipCidrRequest added in v1.19.0

func (m *MockEC2API) DeleteCoipCidrRequest(arg0 *ec2.DeleteCoipCidrInput) (*request.Request, *ec2.DeleteCoipCidrOutput)

DeleteCoipCidrRequest mocks base method.

func (*MockEC2API) DeleteCoipCidrWithContext added in v1.19.0

func (m *MockEC2API) DeleteCoipCidrWithContext(arg0 context.Context, arg1 *ec2.DeleteCoipCidrInput, arg2 ...request.Option) (*ec2.DeleteCoipCidrOutput, error)

DeleteCoipCidrWithContext mocks base method.

func (*MockEC2API) DeleteCoipPool added in v1.19.0

func (m *MockEC2API) DeleteCoipPool(arg0 *ec2.DeleteCoipPoolInput) (*ec2.DeleteCoipPoolOutput, error)

DeleteCoipPool mocks base method.

func (*MockEC2API) DeleteCoipPoolRequest added in v1.19.0

func (m *MockEC2API) DeleteCoipPoolRequest(arg0 *ec2.DeleteCoipPoolInput) (*request.Request, *ec2.DeleteCoipPoolOutput)

DeleteCoipPoolRequest mocks base method.

func (*MockEC2API) DeleteCoipPoolWithContext added in v1.19.0

func (m *MockEC2API) DeleteCoipPoolWithContext(arg0 context.Context, arg1 *ec2.DeleteCoipPoolInput, arg2 ...request.Option) (*ec2.DeleteCoipPoolOutput, error)

DeleteCoipPoolWithContext mocks base method.

func (*MockEC2API) DeleteCustomerGateway added in v1.19.0

func (m *MockEC2API) DeleteCustomerGateway(arg0 *ec2.DeleteCustomerGatewayInput) (*ec2.DeleteCustomerGatewayOutput, error)

DeleteCustomerGateway mocks base method.

func (*MockEC2API) DeleteCustomerGatewayRequest added in v1.19.0

func (m *MockEC2API) DeleteCustomerGatewayRequest(arg0 *ec2.DeleteCustomerGatewayInput) (*request.Request, *ec2.DeleteCustomerGatewayOutput)

DeleteCustomerGatewayRequest mocks base method.

func (*MockEC2API) DeleteCustomerGatewayWithContext added in v1.19.0

func (m *MockEC2API) DeleteCustomerGatewayWithContext(arg0 context.Context, arg1 *ec2.DeleteCustomerGatewayInput, arg2 ...request.Option) (*ec2.DeleteCustomerGatewayOutput, error)

DeleteCustomerGatewayWithContext mocks base method.

func (*MockEC2API) DeleteDhcpOptions added in v1.19.0

func (m *MockEC2API) DeleteDhcpOptions(arg0 *ec2.DeleteDhcpOptionsInput) (*ec2.DeleteDhcpOptionsOutput, error)

DeleteDhcpOptions mocks base method.

func (*MockEC2API) DeleteDhcpOptionsRequest added in v1.19.0

func (m *MockEC2API) DeleteDhcpOptionsRequest(arg0 *ec2.DeleteDhcpOptionsInput) (*request.Request, *ec2.DeleteDhcpOptionsOutput)

DeleteDhcpOptionsRequest mocks base method.

func (*MockEC2API) DeleteDhcpOptionsWithContext added in v1.19.0

func (m *MockEC2API) DeleteDhcpOptionsWithContext(arg0 context.Context, arg1 *ec2.DeleteDhcpOptionsInput, arg2 ...request.Option) (*ec2.DeleteDhcpOptionsOutput, error)

DeleteDhcpOptionsWithContext mocks base method.

func (*MockEC2API) DeleteEgressOnlyInternetGateway added in v1.19.0

DeleteEgressOnlyInternetGateway mocks base method.

func (*MockEC2API) DeleteEgressOnlyInternetGatewayRequest added in v1.19.0

func (m *MockEC2API) DeleteEgressOnlyInternetGatewayRequest(arg0 *ec2.DeleteEgressOnlyInternetGatewayInput) (*request.Request, *ec2.DeleteEgressOnlyInternetGatewayOutput)

DeleteEgressOnlyInternetGatewayRequest mocks base method.

func (*MockEC2API) DeleteEgressOnlyInternetGatewayWithContext added in v1.19.0

func (m *MockEC2API) DeleteEgressOnlyInternetGatewayWithContext(arg0 context.Context, arg1 *ec2.DeleteEgressOnlyInternetGatewayInput, arg2 ...request.Option) (*ec2.DeleteEgressOnlyInternetGatewayOutput, error)

DeleteEgressOnlyInternetGatewayWithContext mocks base method.

func (*MockEC2API) DeleteFleets added in v1.19.0

func (m *MockEC2API) DeleteFleets(arg0 *ec2.DeleteFleetsInput) (*ec2.DeleteFleetsOutput, error)

DeleteFleets mocks base method.

func (*MockEC2API) DeleteFleetsRequest added in v1.19.0

func (m *MockEC2API) DeleteFleetsRequest(arg0 *ec2.DeleteFleetsInput) (*request.Request, *ec2.DeleteFleetsOutput)

DeleteFleetsRequest mocks base method.

func (*MockEC2API) DeleteFleetsWithContext added in v1.19.0

func (m *MockEC2API) DeleteFleetsWithContext(arg0 context.Context, arg1 *ec2.DeleteFleetsInput, arg2 ...request.Option) (*ec2.DeleteFleetsOutput, error)

DeleteFleetsWithContext mocks base method.

func (*MockEC2API) DeleteFlowLogs added in v1.19.0

func (m *MockEC2API) DeleteFlowLogs(arg0 *ec2.DeleteFlowLogsInput) (*ec2.DeleteFlowLogsOutput, error)

DeleteFlowLogs mocks base method.

func (*MockEC2API) DeleteFlowLogsRequest added in v1.19.0

func (m *MockEC2API) DeleteFlowLogsRequest(arg0 *ec2.DeleteFlowLogsInput) (*request.Request, *ec2.DeleteFlowLogsOutput)

DeleteFlowLogsRequest mocks base method.

func (*MockEC2API) DeleteFlowLogsWithContext added in v1.19.0

func (m *MockEC2API) DeleteFlowLogsWithContext(arg0 context.Context, arg1 *ec2.DeleteFlowLogsInput, arg2 ...request.Option) (*ec2.DeleteFlowLogsOutput, error)

DeleteFlowLogsWithContext mocks base method.

func (*MockEC2API) DeleteFpgaImage added in v1.19.0

func (m *MockEC2API) DeleteFpgaImage(arg0 *ec2.DeleteFpgaImageInput) (*ec2.DeleteFpgaImageOutput, error)

DeleteFpgaImage mocks base method.

func (*MockEC2API) DeleteFpgaImageRequest added in v1.19.0

func (m *MockEC2API) DeleteFpgaImageRequest(arg0 *ec2.DeleteFpgaImageInput) (*request.Request, *ec2.DeleteFpgaImageOutput)

DeleteFpgaImageRequest mocks base method.

func (*MockEC2API) DeleteFpgaImageWithContext added in v1.19.0

func (m *MockEC2API) DeleteFpgaImageWithContext(arg0 context.Context, arg1 *ec2.DeleteFpgaImageInput, arg2 ...request.Option) (*ec2.DeleteFpgaImageOutput, error)

DeleteFpgaImageWithContext mocks base method.

func (*MockEC2API) DeleteInstanceConnectEndpoint added in v1.20.0

DeleteInstanceConnectEndpoint mocks base method.

func (*MockEC2API) DeleteInstanceConnectEndpointRequest added in v1.20.0

func (m *MockEC2API) DeleteInstanceConnectEndpointRequest(arg0 *ec2.DeleteInstanceConnectEndpointInput) (*request.Request, *ec2.DeleteInstanceConnectEndpointOutput)

DeleteInstanceConnectEndpointRequest mocks base method.

func (*MockEC2API) DeleteInstanceConnectEndpointWithContext added in v1.20.0

func (m *MockEC2API) DeleteInstanceConnectEndpointWithContext(arg0 context.Context, arg1 *ec2.DeleteInstanceConnectEndpointInput, arg2 ...request.Option) (*ec2.DeleteInstanceConnectEndpointOutput, error)

DeleteInstanceConnectEndpointWithContext mocks base method.

func (*MockEC2API) DeleteInstanceEventWindow added in v1.19.0

DeleteInstanceEventWindow mocks base method.

func (*MockEC2API) DeleteInstanceEventWindowRequest added in v1.19.0

func (m *MockEC2API) DeleteInstanceEventWindowRequest(arg0 *ec2.DeleteInstanceEventWindowInput) (*request.Request, *ec2.DeleteInstanceEventWindowOutput)

DeleteInstanceEventWindowRequest mocks base method.

func (*MockEC2API) DeleteInstanceEventWindowWithContext added in v1.19.0

func (m *MockEC2API) DeleteInstanceEventWindowWithContext(arg0 context.Context, arg1 *ec2.DeleteInstanceEventWindowInput, arg2 ...request.Option) (*ec2.DeleteInstanceEventWindowOutput, error)

DeleteInstanceEventWindowWithContext mocks base method.

func (*MockEC2API) DeleteInternetGateway added in v1.19.0

func (m *MockEC2API) DeleteInternetGateway(arg0 *ec2.DeleteInternetGatewayInput) (*ec2.DeleteInternetGatewayOutput, error)

DeleteInternetGateway mocks base method.

func (*MockEC2API) DeleteInternetGatewayRequest added in v1.19.0

func (m *MockEC2API) DeleteInternetGatewayRequest(arg0 *ec2.DeleteInternetGatewayInput) (*request.Request, *ec2.DeleteInternetGatewayOutput)

DeleteInternetGatewayRequest mocks base method.

func (*MockEC2API) DeleteInternetGatewayWithContext added in v1.19.0

func (m *MockEC2API) DeleteInternetGatewayWithContext(arg0 context.Context, arg1 *ec2.DeleteInternetGatewayInput, arg2 ...request.Option) (*ec2.DeleteInternetGatewayOutput, error)

DeleteInternetGatewayWithContext mocks base method.

func (*MockEC2API) DeleteIpam added in v1.19.0

func (m *MockEC2API) DeleteIpam(arg0 *ec2.DeleteIpamInput) (*ec2.DeleteIpamOutput, error)

DeleteIpam mocks base method.

func (*MockEC2API) DeleteIpamPool added in v1.19.0

func (m *MockEC2API) DeleteIpamPool(arg0 *ec2.DeleteIpamPoolInput) (*ec2.DeleteIpamPoolOutput, error)

DeleteIpamPool mocks base method.

func (*MockEC2API) DeleteIpamPoolRequest added in v1.19.0

func (m *MockEC2API) DeleteIpamPoolRequest(arg0 *ec2.DeleteIpamPoolInput) (*request.Request, *ec2.DeleteIpamPoolOutput)

DeleteIpamPoolRequest mocks base method.

func (*MockEC2API) DeleteIpamPoolWithContext added in v1.19.0

func (m *MockEC2API) DeleteIpamPoolWithContext(arg0 context.Context, arg1 *ec2.DeleteIpamPoolInput, arg2 ...request.Option) (*ec2.DeleteIpamPoolOutput, error)

DeleteIpamPoolWithContext mocks base method.

func (*MockEC2API) DeleteIpamRequest added in v1.19.0

func (m *MockEC2API) DeleteIpamRequest(arg0 *ec2.DeleteIpamInput) (*request.Request, *ec2.DeleteIpamOutput)

DeleteIpamRequest mocks base method.

func (*MockEC2API) DeleteIpamResourceDiscovery added in v1.19.0

DeleteIpamResourceDiscovery mocks base method.

func (*MockEC2API) DeleteIpamResourceDiscoveryRequest added in v1.19.0

func (m *MockEC2API) DeleteIpamResourceDiscoveryRequest(arg0 *ec2.DeleteIpamResourceDiscoveryInput) (*request.Request, *ec2.DeleteIpamResourceDiscoveryOutput)

DeleteIpamResourceDiscoveryRequest mocks base method.

func (*MockEC2API) DeleteIpamResourceDiscoveryWithContext added in v1.19.0

func (m *MockEC2API) DeleteIpamResourceDiscoveryWithContext(arg0 context.Context, arg1 *ec2.DeleteIpamResourceDiscoveryInput, arg2 ...request.Option) (*ec2.DeleteIpamResourceDiscoveryOutput, error)

DeleteIpamResourceDiscoveryWithContext mocks base method.

func (*MockEC2API) DeleteIpamScope added in v1.19.0

func (m *MockEC2API) DeleteIpamScope(arg0 *ec2.DeleteIpamScopeInput) (*ec2.DeleteIpamScopeOutput, error)

DeleteIpamScope mocks base method.

func (*MockEC2API) DeleteIpamScopeRequest added in v1.19.0

func (m *MockEC2API) DeleteIpamScopeRequest(arg0 *ec2.DeleteIpamScopeInput) (*request.Request, *ec2.DeleteIpamScopeOutput)

DeleteIpamScopeRequest mocks base method.

func (*MockEC2API) DeleteIpamScopeWithContext added in v1.19.0

func (m *MockEC2API) DeleteIpamScopeWithContext(arg0 context.Context, arg1 *ec2.DeleteIpamScopeInput, arg2 ...request.Option) (*ec2.DeleteIpamScopeOutput, error)

DeleteIpamScopeWithContext mocks base method.

func (*MockEC2API) DeleteIpamWithContext added in v1.19.0

func (m *MockEC2API) DeleteIpamWithContext(arg0 context.Context, arg1 *ec2.DeleteIpamInput, arg2 ...request.Option) (*ec2.DeleteIpamOutput, error)

DeleteIpamWithContext mocks base method.

func (*MockEC2API) DeleteKeyPair added in v1.19.0

func (m *MockEC2API) DeleteKeyPair(arg0 *ec2.DeleteKeyPairInput) (*ec2.DeleteKeyPairOutput, error)

DeleteKeyPair mocks base method.

func (*MockEC2API) DeleteKeyPairRequest added in v1.19.0

func (m *MockEC2API) DeleteKeyPairRequest(arg0 *ec2.DeleteKeyPairInput) (*request.Request, *ec2.DeleteKeyPairOutput)

DeleteKeyPairRequest mocks base method.

func (*MockEC2API) DeleteKeyPairWithContext added in v1.19.0

func (m *MockEC2API) DeleteKeyPairWithContext(arg0 context.Context, arg1 *ec2.DeleteKeyPairInput, arg2 ...request.Option) (*ec2.DeleteKeyPairOutput, error)

DeleteKeyPairWithContext mocks base method.

func (*MockEC2API) DeleteLaunchTemplate added in v1.19.0

func (m *MockEC2API) DeleteLaunchTemplate(arg0 *ec2.DeleteLaunchTemplateInput) (*ec2.DeleteLaunchTemplateOutput, error)

DeleteLaunchTemplate mocks base method.

func (*MockEC2API) DeleteLaunchTemplateRequest added in v1.19.0

func (m *MockEC2API) DeleteLaunchTemplateRequest(arg0 *ec2.DeleteLaunchTemplateInput) (*request.Request, *ec2.DeleteLaunchTemplateOutput)

DeleteLaunchTemplateRequest mocks base method.

func (*MockEC2API) DeleteLaunchTemplateVersions added in v1.19.0

DeleteLaunchTemplateVersions mocks base method.

func (*MockEC2API) DeleteLaunchTemplateVersionsRequest added in v1.19.0

func (m *MockEC2API) DeleteLaunchTemplateVersionsRequest(arg0 *ec2.DeleteLaunchTemplateVersionsInput) (*request.Request, *ec2.DeleteLaunchTemplateVersionsOutput)

DeleteLaunchTemplateVersionsRequest mocks base method.

func (*MockEC2API) DeleteLaunchTemplateVersionsWithContext added in v1.19.0

func (m *MockEC2API) DeleteLaunchTemplateVersionsWithContext(arg0 context.Context, arg1 *ec2.DeleteLaunchTemplateVersionsInput, arg2 ...request.Option) (*ec2.DeleteLaunchTemplateVersionsOutput, error)

DeleteLaunchTemplateVersionsWithContext mocks base method.

func (*MockEC2API) DeleteLaunchTemplateWithContext added in v1.19.0

func (m *MockEC2API) DeleteLaunchTemplateWithContext(arg0 context.Context, arg1 *ec2.DeleteLaunchTemplateInput, arg2 ...request.Option) (*ec2.DeleteLaunchTemplateOutput, error)

DeleteLaunchTemplateWithContext mocks base method.

func (*MockEC2API) DeleteLocalGatewayRoute added in v1.19.0

func (m *MockEC2API) DeleteLocalGatewayRoute(arg0 *ec2.DeleteLocalGatewayRouteInput) (*ec2.DeleteLocalGatewayRouteOutput, error)

DeleteLocalGatewayRoute mocks base method.

func (*MockEC2API) DeleteLocalGatewayRouteRequest added in v1.19.0

func (m *MockEC2API) DeleteLocalGatewayRouteRequest(arg0 *ec2.DeleteLocalGatewayRouteInput) (*request.Request, *ec2.DeleteLocalGatewayRouteOutput)

DeleteLocalGatewayRouteRequest mocks base method.

func (*MockEC2API) DeleteLocalGatewayRouteTable added in v1.19.0

DeleteLocalGatewayRouteTable mocks base method.

func (*MockEC2API) DeleteLocalGatewayRouteTableRequest added in v1.19.0

func (m *MockEC2API) DeleteLocalGatewayRouteTableRequest(arg0 *ec2.DeleteLocalGatewayRouteTableInput) (*request.Request, *ec2.DeleteLocalGatewayRouteTableOutput)

DeleteLocalGatewayRouteTableRequest mocks base method.

func (*MockEC2API) DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociation added in v1.19.0

DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociation mocks base method.

func (*MockEC2API) DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationRequest added in v1.19.0

DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationRequest mocks base method.

func (*MockEC2API) DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationWithContext added in v1.19.0

DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationWithContext mocks base method.

func (*MockEC2API) DeleteLocalGatewayRouteTableVpcAssociation added in v1.19.0

DeleteLocalGatewayRouteTableVpcAssociation mocks base method.

func (*MockEC2API) DeleteLocalGatewayRouteTableVpcAssociationRequest added in v1.19.0

DeleteLocalGatewayRouteTableVpcAssociationRequest mocks base method.

func (*MockEC2API) DeleteLocalGatewayRouteTableVpcAssociationWithContext added in v1.19.0

func (m *MockEC2API) DeleteLocalGatewayRouteTableVpcAssociationWithContext(arg0 context.Context, arg1 *ec2.DeleteLocalGatewayRouteTableVpcAssociationInput, arg2 ...request.Option) (*ec2.DeleteLocalGatewayRouteTableVpcAssociationOutput, error)

DeleteLocalGatewayRouteTableVpcAssociationWithContext mocks base method.

func (*MockEC2API) DeleteLocalGatewayRouteTableWithContext added in v1.19.0

func (m *MockEC2API) DeleteLocalGatewayRouteTableWithContext(arg0 context.Context, arg1 *ec2.DeleteLocalGatewayRouteTableInput, arg2 ...request.Option) (*ec2.DeleteLocalGatewayRouteTableOutput, error)

DeleteLocalGatewayRouteTableWithContext mocks base method.

func (*MockEC2API) DeleteLocalGatewayRouteWithContext added in v1.19.0

func (m *MockEC2API) DeleteLocalGatewayRouteWithContext(arg0 context.Context, arg1 *ec2.DeleteLocalGatewayRouteInput, arg2 ...request.Option) (*ec2.DeleteLocalGatewayRouteOutput, error)

DeleteLocalGatewayRouteWithContext mocks base method.

func (*MockEC2API) DeleteManagedPrefixList added in v1.19.0

func (m *MockEC2API) DeleteManagedPrefixList(arg0 *ec2.DeleteManagedPrefixListInput) (*ec2.DeleteManagedPrefixListOutput, error)

DeleteManagedPrefixList mocks base method.

func (*MockEC2API) DeleteManagedPrefixListRequest added in v1.19.0

func (m *MockEC2API) DeleteManagedPrefixListRequest(arg0 *ec2.DeleteManagedPrefixListInput) (*request.Request, *ec2.DeleteManagedPrefixListOutput)

DeleteManagedPrefixListRequest mocks base method.

func (*MockEC2API) DeleteManagedPrefixListWithContext added in v1.19.0

func (m *MockEC2API) DeleteManagedPrefixListWithContext(arg0 context.Context, arg1 *ec2.DeleteManagedPrefixListInput, arg2 ...request.Option) (*ec2.DeleteManagedPrefixListOutput, error)

DeleteManagedPrefixListWithContext mocks base method.

func (*MockEC2API) DeleteNatGateway added in v1.19.0

func (m *MockEC2API) DeleteNatGateway(arg0 *ec2.DeleteNatGatewayInput) (*ec2.DeleteNatGatewayOutput, error)

DeleteNatGateway mocks base method.

func (*MockEC2API) DeleteNatGatewayRequest added in v1.19.0

func (m *MockEC2API) DeleteNatGatewayRequest(arg0 *ec2.DeleteNatGatewayInput) (*request.Request, *ec2.DeleteNatGatewayOutput)

DeleteNatGatewayRequest mocks base method.

func (*MockEC2API) DeleteNatGatewayWithContext added in v1.19.0

func (m *MockEC2API) DeleteNatGatewayWithContext(arg0 context.Context, arg1 *ec2.DeleteNatGatewayInput, arg2 ...request.Option) (*ec2.DeleteNatGatewayOutput, error)

DeleteNatGatewayWithContext mocks base method.

func (*MockEC2API) DeleteNetworkAcl added in v1.19.0

func (m *MockEC2API) DeleteNetworkAcl(arg0 *ec2.DeleteNetworkAclInput) (*ec2.DeleteNetworkAclOutput, error)

DeleteNetworkAcl mocks base method.

func (*MockEC2API) DeleteNetworkAclEntry added in v1.19.0

func (m *MockEC2API) DeleteNetworkAclEntry(arg0 *ec2.DeleteNetworkAclEntryInput) (*ec2.DeleteNetworkAclEntryOutput, error)

DeleteNetworkAclEntry mocks base method.

func (*MockEC2API) DeleteNetworkAclEntryRequest added in v1.19.0

func (m *MockEC2API) DeleteNetworkAclEntryRequest(arg0 *ec2.DeleteNetworkAclEntryInput) (*request.Request, *ec2.DeleteNetworkAclEntryOutput)

DeleteNetworkAclEntryRequest mocks base method.

func (*MockEC2API) DeleteNetworkAclEntryWithContext added in v1.19.0

func (m *MockEC2API) DeleteNetworkAclEntryWithContext(arg0 context.Context, arg1 *ec2.DeleteNetworkAclEntryInput, arg2 ...request.Option) (*ec2.DeleteNetworkAclEntryOutput, error)

DeleteNetworkAclEntryWithContext mocks base method.

func (*MockEC2API) DeleteNetworkAclRequest added in v1.19.0

func (m *MockEC2API) DeleteNetworkAclRequest(arg0 *ec2.DeleteNetworkAclInput) (*request.Request, *ec2.DeleteNetworkAclOutput)

DeleteNetworkAclRequest mocks base method.

func (*MockEC2API) DeleteNetworkAclWithContext added in v1.19.0

func (m *MockEC2API) DeleteNetworkAclWithContext(arg0 context.Context, arg1 *ec2.DeleteNetworkAclInput, arg2 ...request.Option) (*ec2.DeleteNetworkAclOutput, error)

DeleteNetworkAclWithContext mocks base method.

func (*MockEC2API) DeleteNetworkInsightsAccessScope added in v1.19.0

DeleteNetworkInsightsAccessScope mocks base method.

func (*MockEC2API) DeleteNetworkInsightsAccessScopeAnalysis added in v1.19.0

DeleteNetworkInsightsAccessScopeAnalysis mocks base method.

func (*MockEC2API) DeleteNetworkInsightsAccessScopeAnalysisRequest added in v1.19.0

DeleteNetworkInsightsAccessScopeAnalysisRequest mocks base method.

func (*MockEC2API) DeleteNetworkInsightsAccessScopeAnalysisWithContext added in v1.19.0

func (m *MockEC2API) DeleteNetworkInsightsAccessScopeAnalysisWithContext(arg0 context.Context, arg1 *ec2.DeleteNetworkInsightsAccessScopeAnalysisInput, arg2 ...request.Option) (*ec2.DeleteNetworkInsightsAccessScopeAnalysisOutput, error)

DeleteNetworkInsightsAccessScopeAnalysisWithContext mocks base method.

func (*MockEC2API) DeleteNetworkInsightsAccessScopeRequest added in v1.19.0

func (m *MockEC2API) DeleteNetworkInsightsAccessScopeRequest(arg0 *ec2.DeleteNetworkInsightsAccessScopeInput) (*request.Request, *ec2.DeleteNetworkInsightsAccessScopeOutput)

DeleteNetworkInsightsAccessScopeRequest mocks base method.

func (*MockEC2API) DeleteNetworkInsightsAccessScopeWithContext added in v1.19.0

func (m *MockEC2API) DeleteNetworkInsightsAccessScopeWithContext(arg0 context.Context, arg1 *ec2.DeleteNetworkInsightsAccessScopeInput, arg2 ...request.Option) (*ec2.DeleteNetworkInsightsAccessScopeOutput, error)

DeleteNetworkInsightsAccessScopeWithContext mocks base method.

func (*MockEC2API) DeleteNetworkInsightsAnalysis added in v1.19.0

DeleteNetworkInsightsAnalysis mocks base method.

func (*MockEC2API) DeleteNetworkInsightsAnalysisRequest added in v1.19.0

func (m *MockEC2API) DeleteNetworkInsightsAnalysisRequest(arg0 *ec2.DeleteNetworkInsightsAnalysisInput) (*request.Request, *ec2.DeleteNetworkInsightsAnalysisOutput)

DeleteNetworkInsightsAnalysisRequest mocks base method.

func (*MockEC2API) DeleteNetworkInsightsAnalysisWithContext added in v1.19.0

func (m *MockEC2API) DeleteNetworkInsightsAnalysisWithContext(arg0 context.Context, arg1 *ec2.DeleteNetworkInsightsAnalysisInput, arg2 ...request.Option) (*ec2.DeleteNetworkInsightsAnalysisOutput, error)

DeleteNetworkInsightsAnalysisWithContext mocks base method.

func (*MockEC2API) DeleteNetworkInsightsPath added in v1.19.0

DeleteNetworkInsightsPath mocks base method.

func (*MockEC2API) DeleteNetworkInsightsPathRequest added in v1.19.0

func (m *MockEC2API) DeleteNetworkInsightsPathRequest(arg0 *ec2.DeleteNetworkInsightsPathInput) (*request.Request, *ec2.DeleteNetworkInsightsPathOutput)

DeleteNetworkInsightsPathRequest mocks base method.

func (*MockEC2API) DeleteNetworkInsightsPathWithContext added in v1.19.0

func (m *MockEC2API) DeleteNetworkInsightsPathWithContext(arg0 context.Context, arg1 *ec2.DeleteNetworkInsightsPathInput, arg2 ...request.Option) (*ec2.DeleteNetworkInsightsPathOutput, error)

DeleteNetworkInsightsPathWithContext mocks base method.

func (*MockEC2API) DeleteNetworkInterface added in v1.19.0

func (m *MockEC2API) DeleteNetworkInterface(arg0 *ec2.DeleteNetworkInterfaceInput) (*ec2.DeleteNetworkInterfaceOutput, error)

DeleteNetworkInterface mocks base method.

func (*MockEC2API) DeleteNetworkInterfacePermission added in v1.19.0

DeleteNetworkInterfacePermission mocks base method.

func (*MockEC2API) DeleteNetworkInterfacePermissionRequest added in v1.19.0

func (m *MockEC2API) DeleteNetworkInterfacePermissionRequest(arg0 *ec2.DeleteNetworkInterfacePermissionInput) (*request.Request, *ec2.DeleteNetworkInterfacePermissionOutput)

DeleteNetworkInterfacePermissionRequest mocks base method.

func (*MockEC2API) DeleteNetworkInterfacePermissionWithContext added in v1.19.0

func (m *MockEC2API) DeleteNetworkInterfacePermissionWithContext(arg0 context.Context, arg1 *ec2.DeleteNetworkInterfacePermissionInput, arg2 ...request.Option) (*ec2.DeleteNetworkInterfacePermissionOutput, error)

DeleteNetworkInterfacePermissionWithContext mocks base method.

func (*MockEC2API) DeleteNetworkInterfaceRequest added in v1.19.0

func (m *MockEC2API) DeleteNetworkInterfaceRequest(arg0 *ec2.DeleteNetworkInterfaceInput) (*request.Request, *ec2.DeleteNetworkInterfaceOutput)

DeleteNetworkInterfaceRequest mocks base method.

func (*MockEC2API) DeleteNetworkInterfaceWithContext added in v1.19.0

func (m *MockEC2API) DeleteNetworkInterfaceWithContext(arg0 context.Context, arg1 *ec2.DeleteNetworkInterfaceInput, arg2 ...request.Option) (*ec2.DeleteNetworkInterfaceOutput, error)

DeleteNetworkInterfaceWithContext mocks base method.

func (*MockEC2API) DeletePlacementGroup added in v1.19.0

func (m *MockEC2API) DeletePlacementGroup(arg0 *ec2.DeletePlacementGroupInput) (*ec2.DeletePlacementGroupOutput, error)

DeletePlacementGroup mocks base method.

func (*MockEC2API) DeletePlacementGroupRequest added in v1.19.0

func (m *MockEC2API) DeletePlacementGroupRequest(arg0 *ec2.DeletePlacementGroupInput) (*request.Request, *ec2.DeletePlacementGroupOutput)

DeletePlacementGroupRequest mocks base method.

func (*MockEC2API) DeletePlacementGroupWithContext added in v1.19.0

func (m *MockEC2API) DeletePlacementGroupWithContext(arg0 context.Context, arg1 *ec2.DeletePlacementGroupInput, arg2 ...request.Option) (*ec2.DeletePlacementGroupOutput, error)

DeletePlacementGroupWithContext mocks base method.

func (*MockEC2API) DeletePublicIpv4Pool added in v1.19.0

func (m *MockEC2API) DeletePublicIpv4Pool(arg0 *ec2.DeletePublicIpv4PoolInput) (*ec2.DeletePublicIpv4PoolOutput, error)

DeletePublicIpv4Pool mocks base method.

func (*MockEC2API) DeletePublicIpv4PoolRequest added in v1.19.0

func (m *MockEC2API) DeletePublicIpv4PoolRequest(arg0 *ec2.DeletePublicIpv4PoolInput) (*request.Request, *ec2.DeletePublicIpv4PoolOutput)

DeletePublicIpv4PoolRequest mocks base method.

func (*MockEC2API) DeletePublicIpv4PoolWithContext added in v1.19.0

func (m *MockEC2API) DeletePublicIpv4PoolWithContext(arg0 context.Context, arg1 *ec2.DeletePublicIpv4PoolInput, arg2 ...request.Option) (*ec2.DeletePublicIpv4PoolOutput, error)

DeletePublicIpv4PoolWithContext mocks base method.

func (*MockEC2API) DeleteQueuedReservedInstances added in v1.19.0

DeleteQueuedReservedInstances mocks base method.

func (*MockEC2API) DeleteQueuedReservedInstancesRequest added in v1.19.0

func (m *MockEC2API) DeleteQueuedReservedInstancesRequest(arg0 *ec2.DeleteQueuedReservedInstancesInput) (*request.Request, *ec2.DeleteQueuedReservedInstancesOutput)

DeleteQueuedReservedInstancesRequest mocks base method.

func (*MockEC2API) DeleteQueuedReservedInstancesWithContext added in v1.19.0

func (m *MockEC2API) DeleteQueuedReservedInstancesWithContext(arg0 context.Context, arg1 *ec2.DeleteQueuedReservedInstancesInput, arg2 ...request.Option) (*ec2.DeleteQueuedReservedInstancesOutput, error)

DeleteQueuedReservedInstancesWithContext mocks base method.

func (*MockEC2API) DeleteRoute added in v1.19.0

func (m *MockEC2API) DeleteRoute(arg0 *ec2.DeleteRouteInput) (*ec2.DeleteRouteOutput, error)

DeleteRoute mocks base method.

func (*MockEC2API) DeleteRouteRequest added in v1.19.0

func (m *MockEC2API) DeleteRouteRequest(arg0 *ec2.DeleteRouteInput) (*request.Request, *ec2.DeleteRouteOutput)

DeleteRouteRequest mocks base method.

func (*MockEC2API) DeleteRouteTable added in v1.19.0

func (m *MockEC2API) DeleteRouteTable(arg0 *ec2.DeleteRouteTableInput) (*ec2.DeleteRouteTableOutput, error)

DeleteRouteTable mocks base method.

func (*MockEC2API) DeleteRouteTableRequest added in v1.19.0

func (m *MockEC2API) DeleteRouteTableRequest(arg0 *ec2.DeleteRouteTableInput) (*request.Request, *ec2.DeleteRouteTableOutput)

DeleteRouteTableRequest mocks base method.

func (*MockEC2API) DeleteRouteTableWithContext added in v1.19.0

func (m *MockEC2API) DeleteRouteTableWithContext(arg0 context.Context, arg1 *ec2.DeleteRouteTableInput, arg2 ...request.Option) (*ec2.DeleteRouteTableOutput, error)

DeleteRouteTableWithContext mocks base method.

func (*MockEC2API) DeleteRouteWithContext added in v1.19.0

func (m *MockEC2API) DeleteRouteWithContext(arg0 context.Context, arg1 *ec2.DeleteRouteInput, arg2 ...request.Option) (*ec2.DeleteRouteOutput, error)

DeleteRouteWithContext mocks base method.

func (*MockEC2API) DeleteSecurityGroup added in v1.19.0

func (m *MockEC2API) DeleteSecurityGroup(arg0 *ec2.DeleteSecurityGroupInput) (*ec2.DeleteSecurityGroupOutput, error)

DeleteSecurityGroup mocks base method.

func (*MockEC2API) DeleteSecurityGroupRequest added in v1.19.0

func (m *MockEC2API) DeleteSecurityGroupRequest(arg0 *ec2.DeleteSecurityGroupInput) (*request.Request, *ec2.DeleteSecurityGroupOutput)

DeleteSecurityGroupRequest mocks base method.

func (*MockEC2API) DeleteSecurityGroupWithContext added in v1.19.0

func (m *MockEC2API) DeleteSecurityGroupWithContext(arg0 context.Context, arg1 *ec2.DeleteSecurityGroupInput, arg2 ...request.Option) (*ec2.DeleteSecurityGroupOutput, error)

DeleteSecurityGroupWithContext mocks base method.

func (*MockEC2API) DeleteSnapshot added in v1.19.0

func (m *MockEC2API) DeleteSnapshot(arg0 *ec2.DeleteSnapshotInput) (*ec2.DeleteSnapshotOutput, error)

DeleteSnapshot mocks base method.

func (*MockEC2API) DeleteSnapshotRequest added in v1.19.0

func (m *MockEC2API) DeleteSnapshotRequest(arg0 *ec2.DeleteSnapshotInput) (*request.Request, *ec2.DeleteSnapshotOutput)

DeleteSnapshotRequest mocks base method.

func (*MockEC2API) DeleteSnapshotWithContext added in v1.19.0

func (m *MockEC2API) DeleteSnapshotWithContext(arg0 context.Context, arg1 *ec2.DeleteSnapshotInput, arg2 ...request.Option) (*ec2.DeleteSnapshotOutput, error)

DeleteSnapshotWithContext mocks base method.

func (*MockEC2API) DeleteSpotDatafeedSubscription added in v1.19.0

DeleteSpotDatafeedSubscription mocks base method.

func (*MockEC2API) DeleteSpotDatafeedSubscriptionRequest added in v1.19.0

func (m *MockEC2API) DeleteSpotDatafeedSubscriptionRequest(arg0 *ec2.DeleteSpotDatafeedSubscriptionInput) (*request.Request, *ec2.DeleteSpotDatafeedSubscriptionOutput)

DeleteSpotDatafeedSubscriptionRequest mocks base method.

func (*MockEC2API) DeleteSpotDatafeedSubscriptionWithContext added in v1.19.0

func (m *MockEC2API) DeleteSpotDatafeedSubscriptionWithContext(arg0 context.Context, arg1 *ec2.DeleteSpotDatafeedSubscriptionInput, arg2 ...request.Option) (*ec2.DeleteSpotDatafeedSubscriptionOutput, error)

DeleteSpotDatafeedSubscriptionWithContext mocks base method.

func (*MockEC2API) DeleteSubnet added in v1.19.0

func (m *MockEC2API) DeleteSubnet(arg0 *ec2.DeleteSubnetInput) (*ec2.DeleteSubnetOutput, error)

DeleteSubnet mocks base method.

func (*MockEC2API) DeleteSubnetCidrReservation added in v1.19.0

DeleteSubnetCidrReservation mocks base method.

func (*MockEC2API) DeleteSubnetCidrReservationRequest added in v1.19.0

func (m *MockEC2API) DeleteSubnetCidrReservationRequest(arg0 *ec2.DeleteSubnetCidrReservationInput) (*request.Request, *ec2.DeleteSubnetCidrReservationOutput)

DeleteSubnetCidrReservationRequest mocks base method.

func (*MockEC2API) DeleteSubnetCidrReservationWithContext added in v1.19.0

func (m *MockEC2API) DeleteSubnetCidrReservationWithContext(arg0 context.Context, arg1 *ec2.DeleteSubnetCidrReservationInput, arg2 ...request.Option) (*ec2.DeleteSubnetCidrReservationOutput, error)

DeleteSubnetCidrReservationWithContext mocks base method.

func (*MockEC2API) DeleteSubnetRequest added in v1.19.0

func (m *MockEC2API) DeleteSubnetRequest(arg0 *ec2.DeleteSubnetInput) (*request.Request, *ec2.DeleteSubnetOutput)

DeleteSubnetRequest mocks base method.

func (*MockEC2API) DeleteSubnetWithContext added in v1.19.0

func (m *MockEC2API) DeleteSubnetWithContext(arg0 context.Context, arg1 *ec2.DeleteSubnetInput, arg2 ...request.Option) (*ec2.DeleteSubnetOutput, error)

DeleteSubnetWithContext mocks base method.

func (*MockEC2API) DeleteTags added in v1.19.0

func (m *MockEC2API) DeleteTags(arg0 *ec2.DeleteTagsInput) (*ec2.DeleteTagsOutput, error)

DeleteTags mocks base method.

func (*MockEC2API) DeleteTagsRequest added in v1.19.0

func (m *MockEC2API) DeleteTagsRequest(arg0 *ec2.DeleteTagsInput) (*request.Request, *ec2.DeleteTagsOutput)

DeleteTagsRequest mocks base method.

func (*MockEC2API) DeleteTagsWithContext added in v1.19.0

func (m *MockEC2API) DeleteTagsWithContext(arg0 context.Context, arg1 *ec2.DeleteTagsInput, arg2 ...request.Option) (*ec2.DeleteTagsOutput, error)

DeleteTagsWithContext mocks base method.

func (*MockEC2API) DeleteTrafficMirrorFilter added in v1.19.0

DeleteTrafficMirrorFilter mocks base method.

func (*MockEC2API) DeleteTrafficMirrorFilterRequest added in v1.19.0

func (m *MockEC2API) DeleteTrafficMirrorFilterRequest(arg0 *ec2.DeleteTrafficMirrorFilterInput) (*request.Request, *ec2.DeleteTrafficMirrorFilterOutput)

DeleteTrafficMirrorFilterRequest mocks base method.

func (*MockEC2API) DeleteTrafficMirrorFilterRule added in v1.19.0

DeleteTrafficMirrorFilterRule mocks base method.

func (*MockEC2API) DeleteTrafficMirrorFilterRuleRequest added in v1.19.0

func (m *MockEC2API) DeleteTrafficMirrorFilterRuleRequest(arg0 *ec2.DeleteTrafficMirrorFilterRuleInput) (*request.Request, *ec2.DeleteTrafficMirrorFilterRuleOutput)

DeleteTrafficMirrorFilterRuleRequest mocks base method.

func (*MockEC2API) DeleteTrafficMirrorFilterRuleWithContext added in v1.19.0

func (m *MockEC2API) DeleteTrafficMirrorFilterRuleWithContext(arg0 context.Context, arg1 *ec2.DeleteTrafficMirrorFilterRuleInput, arg2 ...request.Option) (*ec2.DeleteTrafficMirrorFilterRuleOutput, error)

DeleteTrafficMirrorFilterRuleWithContext mocks base method.

func (*MockEC2API) DeleteTrafficMirrorFilterWithContext added in v1.19.0

func (m *MockEC2API) DeleteTrafficMirrorFilterWithContext(arg0 context.Context, arg1 *ec2.DeleteTrafficMirrorFilterInput, arg2 ...request.Option) (*ec2.DeleteTrafficMirrorFilterOutput, error)

DeleteTrafficMirrorFilterWithContext mocks base method.

func (*MockEC2API) DeleteTrafficMirrorSession added in v1.19.0

DeleteTrafficMirrorSession mocks base method.

func (*MockEC2API) DeleteTrafficMirrorSessionRequest added in v1.19.0

func (m *MockEC2API) DeleteTrafficMirrorSessionRequest(arg0 *ec2.DeleteTrafficMirrorSessionInput) (*request.Request, *ec2.DeleteTrafficMirrorSessionOutput)

DeleteTrafficMirrorSessionRequest mocks base method.

func (*MockEC2API) DeleteTrafficMirrorSessionWithContext added in v1.19.0

func (m *MockEC2API) DeleteTrafficMirrorSessionWithContext(arg0 context.Context, arg1 *ec2.DeleteTrafficMirrorSessionInput, arg2 ...request.Option) (*ec2.DeleteTrafficMirrorSessionOutput, error)

DeleteTrafficMirrorSessionWithContext mocks base method.

func (*MockEC2API) DeleteTrafficMirrorTarget added in v1.19.0

DeleteTrafficMirrorTarget mocks base method.

func (*MockEC2API) DeleteTrafficMirrorTargetRequest added in v1.19.0

func (m *MockEC2API) DeleteTrafficMirrorTargetRequest(arg0 *ec2.DeleteTrafficMirrorTargetInput) (*request.Request, *ec2.DeleteTrafficMirrorTargetOutput)

DeleteTrafficMirrorTargetRequest mocks base method.

func (*MockEC2API) DeleteTrafficMirrorTargetWithContext added in v1.19.0

func (m *MockEC2API) DeleteTrafficMirrorTargetWithContext(arg0 context.Context, arg1 *ec2.DeleteTrafficMirrorTargetInput, arg2 ...request.Option) (*ec2.DeleteTrafficMirrorTargetOutput, error)

DeleteTrafficMirrorTargetWithContext mocks base method.

func (*MockEC2API) DeleteTransitGateway added in v1.19.0

func (m *MockEC2API) DeleteTransitGateway(arg0 *ec2.DeleteTransitGatewayInput) (*ec2.DeleteTransitGatewayOutput, error)

DeleteTransitGateway mocks base method.

func (*MockEC2API) DeleteTransitGatewayConnect added in v1.19.0

DeleteTransitGatewayConnect mocks base method.

func (*MockEC2API) DeleteTransitGatewayConnectPeer added in v1.19.0

DeleteTransitGatewayConnectPeer mocks base method.

func (*MockEC2API) DeleteTransitGatewayConnectPeerRequest added in v1.19.0

func (m *MockEC2API) DeleteTransitGatewayConnectPeerRequest(arg0 *ec2.DeleteTransitGatewayConnectPeerInput) (*request.Request, *ec2.DeleteTransitGatewayConnectPeerOutput)

DeleteTransitGatewayConnectPeerRequest mocks base method.

func (*MockEC2API) DeleteTransitGatewayConnectPeerWithContext added in v1.19.0

func (m *MockEC2API) DeleteTransitGatewayConnectPeerWithContext(arg0 context.Context, arg1 *ec2.DeleteTransitGatewayConnectPeerInput, arg2 ...request.Option) (*ec2.DeleteTransitGatewayConnectPeerOutput, error)

DeleteTransitGatewayConnectPeerWithContext mocks base method.

func (*MockEC2API) DeleteTransitGatewayConnectRequest added in v1.19.0

func (m *MockEC2API) DeleteTransitGatewayConnectRequest(arg0 *ec2.DeleteTransitGatewayConnectInput) (*request.Request, *ec2.DeleteTransitGatewayConnectOutput)

DeleteTransitGatewayConnectRequest mocks base method.

func (*MockEC2API) DeleteTransitGatewayConnectWithContext added in v1.19.0

func (m *MockEC2API) DeleteTransitGatewayConnectWithContext(arg0 context.Context, arg1 *ec2.DeleteTransitGatewayConnectInput, arg2 ...request.Option) (*ec2.DeleteTransitGatewayConnectOutput, error)

DeleteTransitGatewayConnectWithContext mocks base method.

func (*MockEC2API) DeleteTransitGatewayMulticastDomain added in v1.19.0

DeleteTransitGatewayMulticastDomain mocks base method.

func (*MockEC2API) DeleteTransitGatewayMulticastDomainRequest added in v1.19.0

DeleteTransitGatewayMulticastDomainRequest mocks base method.

func (*MockEC2API) DeleteTransitGatewayMulticastDomainWithContext added in v1.19.0

func (m *MockEC2API) DeleteTransitGatewayMulticastDomainWithContext(arg0 context.Context, arg1 *ec2.DeleteTransitGatewayMulticastDomainInput, arg2 ...request.Option) (*ec2.DeleteTransitGatewayMulticastDomainOutput, error)

DeleteTransitGatewayMulticastDomainWithContext mocks base method.

func (*MockEC2API) DeleteTransitGatewayPeeringAttachment added in v1.19.0

DeleteTransitGatewayPeeringAttachment mocks base method.

func (*MockEC2API) DeleteTransitGatewayPeeringAttachmentRequest added in v1.19.0

DeleteTransitGatewayPeeringAttachmentRequest mocks base method.

func (*MockEC2API) DeleteTransitGatewayPeeringAttachmentWithContext added in v1.19.0

func (m *MockEC2API) DeleteTransitGatewayPeeringAttachmentWithContext(arg0 context.Context, arg1 *ec2.DeleteTransitGatewayPeeringAttachmentInput, arg2 ...request.Option) (*ec2.DeleteTransitGatewayPeeringAttachmentOutput, error)

DeleteTransitGatewayPeeringAttachmentWithContext mocks base method.

func (*MockEC2API) DeleteTransitGatewayPolicyTable added in v1.19.0

DeleteTransitGatewayPolicyTable mocks base method.

func (*MockEC2API) DeleteTransitGatewayPolicyTableRequest added in v1.19.0

func (m *MockEC2API) DeleteTransitGatewayPolicyTableRequest(arg0 *ec2.DeleteTransitGatewayPolicyTableInput) (*request.Request, *ec2.DeleteTransitGatewayPolicyTableOutput)

DeleteTransitGatewayPolicyTableRequest mocks base method.

func (*MockEC2API) DeleteTransitGatewayPolicyTableWithContext added in v1.19.0

func (m *MockEC2API) DeleteTransitGatewayPolicyTableWithContext(arg0 context.Context, arg1 *ec2.DeleteTransitGatewayPolicyTableInput, arg2 ...request.Option) (*ec2.DeleteTransitGatewayPolicyTableOutput, error)

DeleteTransitGatewayPolicyTableWithContext mocks base method.

func (*MockEC2API) DeleteTransitGatewayPrefixListReference added in v1.19.0

DeleteTransitGatewayPrefixListReference mocks base method.

func (*MockEC2API) DeleteTransitGatewayPrefixListReferenceRequest added in v1.19.0

DeleteTransitGatewayPrefixListReferenceRequest mocks base method.

func (*MockEC2API) DeleteTransitGatewayPrefixListReferenceWithContext added in v1.19.0

func (m *MockEC2API) DeleteTransitGatewayPrefixListReferenceWithContext(arg0 context.Context, arg1 *ec2.DeleteTransitGatewayPrefixListReferenceInput, arg2 ...request.Option) (*ec2.DeleteTransitGatewayPrefixListReferenceOutput, error)

DeleteTransitGatewayPrefixListReferenceWithContext mocks base method.

func (*MockEC2API) DeleteTransitGatewayRequest added in v1.19.0

func (m *MockEC2API) DeleteTransitGatewayRequest(arg0 *ec2.DeleteTransitGatewayInput) (*request.Request, *ec2.DeleteTransitGatewayOutput)

DeleteTransitGatewayRequest mocks base method.

func (*MockEC2API) DeleteTransitGatewayRoute added in v1.19.0

DeleteTransitGatewayRoute mocks base method.

func (*MockEC2API) DeleteTransitGatewayRouteRequest added in v1.19.0

func (m *MockEC2API) DeleteTransitGatewayRouteRequest(arg0 *ec2.DeleteTransitGatewayRouteInput) (*request.Request, *ec2.DeleteTransitGatewayRouteOutput)

DeleteTransitGatewayRouteRequest mocks base method.

func (*MockEC2API) DeleteTransitGatewayRouteTable added in v1.19.0

DeleteTransitGatewayRouteTable mocks base method.

func (*MockEC2API) DeleteTransitGatewayRouteTableAnnouncement added in v1.19.0

DeleteTransitGatewayRouteTableAnnouncement mocks base method.

func (*MockEC2API) DeleteTransitGatewayRouteTableAnnouncementRequest added in v1.19.0

DeleteTransitGatewayRouteTableAnnouncementRequest mocks base method.

func (*MockEC2API) DeleteTransitGatewayRouteTableAnnouncementWithContext added in v1.19.0

func (m *MockEC2API) DeleteTransitGatewayRouteTableAnnouncementWithContext(arg0 context.Context, arg1 *ec2.DeleteTransitGatewayRouteTableAnnouncementInput, arg2 ...request.Option) (*ec2.DeleteTransitGatewayRouteTableAnnouncementOutput, error)

DeleteTransitGatewayRouteTableAnnouncementWithContext mocks base method.

func (*MockEC2API) DeleteTransitGatewayRouteTableRequest added in v1.19.0

func (m *MockEC2API) DeleteTransitGatewayRouteTableRequest(arg0 *ec2.DeleteTransitGatewayRouteTableInput) (*request.Request, *ec2.DeleteTransitGatewayRouteTableOutput)

DeleteTransitGatewayRouteTableRequest mocks base method.

func (*MockEC2API) DeleteTransitGatewayRouteTableWithContext added in v1.19.0

func (m *MockEC2API) DeleteTransitGatewayRouteTableWithContext(arg0 context.Context, arg1 *ec2.DeleteTransitGatewayRouteTableInput, arg2 ...request.Option) (*ec2.DeleteTransitGatewayRouteTableOutput, error)

DeleteTransitGatewayRouteTableWithContext mocks base method.

func (*MockEC2API) DeleteTransitGatewayRouteWithContext added in v1.19.0

func (m *MockEC2API) DeleteTransitGatewayRouteWithContext(arg0 context.Context, arg1 *ec2.DeleteTransitGatewayRouteInput, arg2 ...request.Option) (*ec2.DeleteTransitGatewayRouteOutput, error)

DeleteTransitGatewayRouteWithContext mocks base method.

func (*MockEC2API) DeleteTransitGatewayVpcAttachment added in v1.19.0

DeleteTransitGatewayVpcAttachment mocks base method.

func (*MockEC2API) DeleteTransitGatewayVpcAttachmentRequest added in v1.19.0

DeleteTransitGatewayVpcAttachmentRequest mocks base method.

func (*MockEC2API) DeleteTransitGatewayVpcAttachmentWithContext added in v1.19.0

func (m *MockEC2API) DeleteTransitGatewayVpcAttachmentWithContext(arg0 context.Context, arg1 *ec2.DeleteTransitGatewayVpcAttachmentInput, arg2 ...request.Option) (*ec2.DeleteTransitGatewayVpcAttachmentOutput, error)

DeleteTransitGatewayVpcAttachmentWithContext mocks base method.

func (*MockEC2API) DeleteTransitGatewayWithContext added in v1.19.0

func (m *MockEC2API) DeleteTransitGatewayWithContext(arg0 context.Context, arg1 *ec2.DeleteTransitGatewayInput, arg2 ...request.Option) (*ec2.DeleteTransitGatewayOutput, error)

DeleteTransitGatewayWithContext mocks base method.

func (*MockEC2API) DeleteVerifiedAccessEndpoint added in v1.19.0

DeleteVerifiedAccessEndpoint mocks base method.

func (*MockEC2API) DeleteVerifiedAccessEndpointRequest added in v1.19.0

func (m *MockEC2API) DeleteVerifiedAccessEndpointRequest(arg0 *ec2.DeleteVerifiedAccessEndpointInput) (*request.Request, *ec2.DeleteVerifiedAccessEndpointOutput)

DeleteVerifiedAccessEndpointRequest mocks base method.

func (*MockEC2API) DeleteVerifiedAccessEndpointWithContext added in v1.19.0

func (m *MockEC2API) DeleteVerifiedAccessEndpointWithContext(arg0 context.Context, arg1 *ec2.DeleteVerifiedAccessEndpointInput, arg2 ...request.Option) (*ec2.DeleteVerifiedAccessEndpointOutput, error)

DeleteVerifiedAccessEndpointWithContext mocks base method.

func (*MockEC2API) DeleteVerifiedAccessGroup added in v1.19.0

DeleteVerifiedAccessGroup mocks base method.

func (*MockEC2API) DeleteVerifiedAccessGroupRequest added in v1.19.0

func (m *MockEC2API) DeleteVerifiedAccessGroupRequest(arg0 *ec2.DeleteVerifiedAccessGroupInput) (*request.Request, *ec2.DeleteVerifiedAccessGroupOutput)

DeleteVerifiedAccessGroupRequest mocks base method.

func (*MockEC2API) DeleteVerifiedAccessGroupWithContext added in v1.19.0

func (m *MockEC2API) DeleteVerifiedAccessGroupWithContext(arg0 context.Context, arg1 *ec2.DeleteVerifiedAccessGroupInput, arg2 ...request.Option) (*ec2.DeleteVerifiedAccessGroupOutput, error)

DeleteVerifiedAccessGroupWithContext mocks base method.

func (*MockEC2API) DeleteVerifiedAccessInstance added in v1.19.0

DeleteVerifiedAccessInstance mocks base method.

func (*MockEC2API) DeleteVerifiedAccessInstanceRequest added in v1.19.0

func (m *MockEC2API) DeleteVerifiedAccessInstanceRequest(arg0 *ec2.DeleteVerifiedAccessInstanceInput) (*request.Request, *ec2.DeleteVerifiedAccessInstanceOutput)

DeleteVerifiedAccessInstanceRequest mocks base method.

func (*MockEC2API) DeleteVerifiedAccessInstanceWithContext added in v1.19.0

func (m *MockEC2API) DeleteVerifiedAccessInstanceWithContext(arg0 context.Context, arg1 *ec2.DeleteVerifiedAccessInstanceInput, arg2 ...request.Option) (*ec2.DeleteVerifiedAccessInstanceOutput, error)

DeleteVerifiedAccessInstanceWithContext mocks base method.

func (*MockEC2API) DeleteVerifiedAccessTrustProvider added in v1.19.0

DeleteVerifiedAccessTrustProvider mocks base method.

func (*MockEC2API) DeleteVerifiedAccessTrustProviderRequest added in v1.19.0

DeleteVerifiedAccessTrustProviderRequest mocks base method.

func (*MockEC2API) DeleteVerifiedAccessTrustProviderWithContext added in v1.19.0

func (m *MockEC2API) DeleteVerifiedAccessTrustProviderWithContext(arg0 context.Context, arg1 *ec2.DeleteVerifiedAccessTrustProviderInput, arg2 ...request.Option) (*ec2.DeleteVerifiedAccessTrustProviderOutput, error)

DeleteVerifiedAccessTrustProviderWithContext mocks base method.

func (*MockEC2API) DeleteVolume added in v1.19.0

func (m *MockEC2API) DeleteVolume(arg0 *ec2.DeleteVolumeInput) (*ec2.DeleteVolumeOutput, error)

DeleteVolume mocks base method.

func (*MockEC2API) DeleteVolumeRequest added in v1.19.0

func (m *MockEC2API) DeleteVolumeRequest(arg0 *ec2.DeleteVolumeInput) (*request.Request, *ec2.DeleteVolumeOutput)

DeleteVolumeRequest mocks base method.

func (*MockEC2API) DeleteVolumeWithContext added in v1.19.0

func (m *MockEC2API) DeleteVolumeWithContext(arg0 context.Context, arg1 *ec2.DeleteVolumeInput, arg2 ...request.Option) (*ec2.DeleteVolumeOutput, error)

DeleteVolumeWithContext mocks base method.

func (*MockEC2API) DeleteVpc added in v1.19.0

func (m *MockEC2API) DeleteVpc(arg0 *ec2.DeleteVpcInput) (*ec2.DeleteVpcOutput, error)

DeleteVpc mocks base method.

func (*MockEC2API) DeleteVpcEndpointConnectionNotifications added in v1.19.0

DeleteVpcEndpointConnectionNotifications mocks base method.

func (*MockEC2API) DeleteVpcEndpointConnectionNotificationsRequest added in v1.19.0

DeleteVpcEndpointConnectionNotificationsRequest mocks base method.

func (*MockEC2API) DeleteVpcEndpointConnectionNotificationsWithContext added in v1.19.0

func (m *MockEC2API) DeleteVpcEndpointConnectionNotificationsWithContext(arg0 context.Context, arg1 *ec2.DeleteVpcEndpointConnectionNotificationsInput, arg2 ...request.Option) (*ec2.DeleteVpcEndpointConnectionNotificationsOutput, error)

DeleteVpcEndpointConnectionNotificationsWithContext mocks base method.

func (*MockEC2API) DeleteVpcEndpointServiceConfigurations added in v1.19.0

DeleteVpcEndpointServiceConfigurations mocks base method.

func (*MockEC2API) DeleteVpcEndpointServiceConfigurationsRequest added in v1.19.0

DeleteVpcEndpointServiceConfigurationsRequest mocks base method.

func (*MockEC2API) DeleteVpcEndpointServiceConfigurationsWithContext added in v1.19.0

func (m *MockEC2API) DeleteVpcEndpointServiceConfigurationsWithContext(arg0 context.Context, arg1 *ec2.DeleteVpcEndpointServiceConfigurationsInput, arg2 ...request.Option) (*ec2.DeleteVpcEndpointServiceConfigurationsOutput, error)

DeleteVpcEndpointServiceConfigurationsWithContext mocks base method.

func (*MockEC2API) DeleteVpcEndpoints added in v1.19.0

func (m *MockEC2API) DeleteVpcEndpoints(arg0 *ec2.DeleteVpcEndpointsInput) (*ec2.DeleteVpcEndpointsOutput, error)

DeleteVpcEndpoints mocks base method.

func (*MockEC2API) DeleteVpcEndpointsRequest added in v1.19.0

func (m *MockEC2API) DeleteVpcEndpointsRequest(arg0 *ec2.DeleteVpcEndpointsInput) (*request.Request, *ec2.DeleteVpcEndpointsOutput)

DeleteVpcEndpointsRequest mocks base method.

func (*MockEC2API) DeleteVpcEndpointsWithContext added in v1.19.0

func (m *MockEC2API) DeleteVpcEndpointsWithContext(arg0 context.Context, arg1 *ec2.DeleteVpcEndpointsInput, arg2 ...request.Option) (*ec2.DeleteVpcEndpointsOutput, error)

DeleteVpcEndpointsWithContext mocks base method.

func (*MockEC2API) DeleteVpcPeeringConnection added in v1.19.0

DeleteVpcPeeringConnection mocks base method.

func (*MockEC2API) DeleteVpcPeeringConnectionRequest added in v1.19.0

func (m *MockEC2API) DeleteVpcPeeringConnectionRequest(arg0 *ec2.DeleteVpcPeeringConnectionInput) (*request.Request, *ec2.DeleteVpcPeeringConnectionOutput)

DeleteVpcPeeringConnectionRequest mocks base method.

func (*MockEC2API) DeleteVpcPeeringConnectionWithContext added in v1.19.0

func (m *MockEC2API) DeleteVpcPeeringConnectionWithContext(arg0 context.Context, arg1 *ec2.DeleteVpcPeeringConnectionInput, arg2 ...request.Option) (*ec2.DeleteVpcPeeringConnectionOutput, error)

DeleteVpcPeeringConnectionWithContext mocks base method.

func (*MockEC2API) DeleteVpcRequest added in v1.19.0

func (m *MockEC2API) DeleteVpcRequest(arg0 *ec2.DeleteVpcInput) (*request.Request, *ec2.DeleteVpcOutput)

DeleteVpcRequest mocks base method.

func (*MockEC2API) DeleteVpcWithContext added in v1.19.0

func (m *MockEC2API) DeleteVpcWithContext(arg0 context.Context, arg1 *ec2.DeleteVpcInput, arg2 ...request.Option) (*ec2.DeleteVpcOutput, error)

DeleteVpcWithContext mocks base method.

func (*MockEC2API) DeleteVpnConnection added in v1.19.0

func (m *MockEC2API) DeleteVpnConnection(arg0 *ec2.DeleteVpnConnectionInput) (*ec2.DeleteVpnConnectionOutput, error)

DeleteVpnConnection mocks base method.

func (*MockEC2API) DeleteVpnConnectionRequest added in v1.19.0

func (m *MockEC2API) DeleteVpnConnectionRequest(arg0 *ec2.DeleteVpnConnectionInput) (*request.Request, *ec2.DeleteVpnConnectionOutput)

DeleteVpnConnectionRequest mocks base method.

func (*MockEC2API) DeleteVpnConnectionRoute added in v1.19.0

DeleteVpnConnectionRoute mocks base method.

func (*MockEC2API) DeleteVpnConnectionRouteRequest added in v1.19.0

func (m *MockEC2API) DeleteVpnConnectionRouteRequest(arg0 *ec2.DeleteVpnConnectionRouteInput) (*request.Request, *ec2.DeleteVpnConnectionRouteOutput)

DeleteVpnConnectionRouteRequest mocks base method.

func (*MockEC2API) DeleteVpnConnectionRouteWithContext added in v1.19.0

func (m *MockEC2API) DeleteVpnConnectionRouteWithContext(arg0 context.Context, arg1 *ec2.DeleteVpnConnectionRouteInput, arg2 ...request.Option) (*ec2.DeleteVpnConnectionRouteOutput, error)

DeleteVpnConnectionRouteWithContext mocks base method.

func (*MockEC2API) DeleteVpnConnectionWithContext added in v1.19.0

func (m *MockEC2API) DeleteVpnConnectionWithContext(arg0 context.Context, arg1 *ec2.DeleteVpnConnectionInput, arg2 ...request.Option) (*ec2.DeleteVpnConnectionOutput, error)

DeleteVpnConnectionWithContext mocks base method.

func (*MockEC2API) DeleteVpnGateway added in v1.19.0

func (m *MockEC2API) DeleteVpnGateway(arg0 *ec2.DeleteVpnGatewayInput) (*ec2.DeleteVpnGatewayOutput, error)

DeleteVpnGateway mocks base method.

func (*MockEC2API) DeleteVpnGatewayRequest added in v1.19.0

func (m *MockEC2API) DeleteVpnGatewayRequest(arg0 *ec2.DeleteVpnGatewayInput) (*request.Request, *ec2.DeleteVpnGatewayOutput)

DeleteVpnGatewayRequest mocks base method.

func (*MockEC2API) DeleteVpnGatewayWithContext added in v1.19.0

func (m *MockEC2API) DeleteVpnGatewayWithContext(arg0 context.Context, arg1 *ec2.DeleteVpnGatewayInput, arg2 ...request.Option) (*ec2.DeleteVpnGatewayOutput, error)

DeleteVpnGatewayWithContext mocks base method.

func (*MockEC2API) DeprovisionByoipCidr added in v1.19.0

func (m *MockEC2API) DeprovisionByoipCidr(arg0 *ec2.DeprovisionByoipCidrInput) (*ec2.DeprovisionByoipCidrOutput, error)

DeprovisionByoipCidr mocks base method.

func (*MockEC2API) DeprovisionByoipCidrRequest added in v1.19.0

func (m *MockEC2API) DeprovisionByoipCidrRequest(arg0 *ec2.DeprovisionByoipCidrInput) (*request.Request, *ec2.DeprovisionByoipCidrOutput)

DeprovisionByoipCidrRequest mocks base method.

func (*MockEC2API) DeprovisionByoipCidrWithContext added in v1.19.0

func (m *MockEC2API) DeprovisionByoipCidrWithContext(arg0 context.Context, arg1 *ec2.DeprovisionByoipCidrInput, arg2 ...request.Option) (*ec2.DeprovisionByoipCidrOutput, error)

DeprovisionByoipCidrWithContext mocks base method.

func (*MockEC2API) DeprovisionIpamPoolCidr added in v1.19.0

func (m *MockEC2API) DeprovisionIpamPoolCidr(arg0 *ec2.DeprovisionIpamPoolCidrInput) (*ec2.DeprovisionIpamPoolCidrOutput, error)

DeprovisionIpamPoolCidr mocks base method.

func (*MockEC2API) DeprovisionIpamPoolCidrRequest added in v1.19.0

func (m *MockEC2API) DeprovisionIpamPoolCidrRequest(arg0 *ec2.DeprovisionIpamPoolCidrInput) (*request.Request, *ec2.DeprovisionIpamPoolCidrOutput)

DeprovisionIpamPoolCidrRequest mocks base method.

func (*MockEC2API) DeprovisionIpamPoolCidrWithContext added in v1.19.0

func (m *MockEC2API) DeprovisionIpamPoolCidrWithContext(arg0 context.Context, arg1 *ec2.DeprovisionIpamPoolCidrInput, arg2 ...request.Option) (*ec2.DeprovisionIpamPoolCidrOutput, error)

DeprovisionIpamPoolCidrWithContext mocks base method.

func (*MockEC2API) DeprovisionPublicIpv4PoolCidr added in v1.19.0

DeprovisionPublicIpv4PoolCidr mocks base method.

func (*MockEC2API) DeprovisionPublicIpv4PoolCidrRequest added in v1.19.0

func (m *MockEC2API) DeprovisionPublicIpv4PoolCidrRequest(arg0 *ec2.DeprovisionPublicIpv4PoolCidrInput) (*request.Request, *ec2.DeprovisionPublicIpv4PoolCidrOutput)

DeprovisionPublicIpv4PoolCidrRequest mocks base method.

func (*MockEC2API) DeprovisionPublicIpv4PoolCidrWithContext added in v1.19.0

func (m *MockEC2API) DeprovisionPublicIpv4PoolCidrWithContext(arg0 context.Context, arg1 *ec2.DeprovisionPublicIpv4PoolCidrInput, arg2 ...request.Option) (*ec2.DeprovisionPublicIpv4PoolCidrOutput, error)

DeprovisionPublicIpv4PoolCidrWithContext mocks base method.

func (*MockEC2API) DeregisterImage added in v1.19.0

func (m *MockEC2API) DeregisterImage(arg0 *ec2.DeregisterImageInput) (*ec2.DeregisterImageOutput, error)

DeregisterImage mocks base method.

func (*MockEC2API) DeregisterImageRequest added in v1.19.0

func (m *MockEC2API) DeregisterImageRequest(arg0 *ec2.DeregisterImageInput) (*request.Request, *ec2.DeregisterImageOutput)

DeregisterImageRequest mocks base method.

func (*MockEC2API) DeregisterImageWithContext added in v1.19.0

func (m *MockEC2API) DeregisterImageWithContext(arg0 context.Context, arg1 *ec2.DeregisterImageInput, arg2 ...request.Option) (*ec2.DeregisterImageOutput, error)

DeregisterImageWithContext mocks base method.

func (*MockEC2API) DeregisterInstanceEventNotificationAttributes added in v1.19.0

DeregisterInstanceEventNotificationAttributes mocks base method.

func (*MockEC2API) DeregisterInstanceEventNotificationAttributesRequest added in v1.19.0

DeregisterInstanceEventNotificationAttributesRequest mocks base method.

func (*MockEC2API) DeregisterInstanceEventNotificationAttributesWithContext added in v1.19.0

func (m *MockEC2API) DeregisterInstanceEventNotificationAttributesWithContext(arg0 context.Context, arg1 *ec2.DeregisterInstanceEventNotificationAttributesInput, arg2 ...request.Option) (*ec2.DeregisterInstanceEventNotificationAttributesOutput, error)

DeregisterInstanceEventNotificationAttributesWithContext mocks base method.

func (*MockEC2API) DeregisterTransitGatewayMulticastGroupMembers added in v1.19.0

DeregisterTransitGatewayMulticastGroupMembers mocks base method.

func (*MockEC2API) DeregisterTransitGatewayMulticastGroupMembersRequest added in v1.19.0

DeregisterTransitGatewayMulticastGroupMembersRequest mocks base method.

func (*MockEC2API) DeregisterTransitGatewayMulticastGroupMembersWithContext added in v1.19.0

func (m *MockEC2API) DeregisterTransitGatewayMulticastGroupMembersWithContext(arg0 context.Context, arg1 *ec2.DeregisterTransitGatewayMulticastGroupMembersInput, arg2 ...request.Option) (*ec2.DeregisterTransitGatewayMulticastGroupMembersOutput, error)

DeregisterTransitGatewayMulticastGroupMembersWithContext mocks base method.

func (*MockEC2API) DeregisterTransitGatewayMulticastGroupSources added in v1.19.0

DeregisterTransitGatewayMulticastGroupSources mocks base method.

func (*MockEC2API) DeregisterTransitGatewayMulticastGroupSourcesRequest added in v1.19.0

DeregisterTransitGatewayMulticastGroupSourcesRequest mocks base method.

func (*MockEC2API) DeregisterTransitGatewayMulticastGroupSourcesWithContext added in v1.19.0

func (m *MockEC2API) DeregisterTransitGatewayMulticastGroupSourcesWithContext(arg0 context.Context, arg1 *ec2.DeregisterTransitGatewayMulticastGroupSourcesInput, arg2 ...request.Option) (*ec2.DeregisterTransitGatewayMulticastGroupSourcesOutput, error)

DeregisterTransitGatewayMulticastGroupSourcesWithContext mocks base method.

func (*MockEC2API) DescribeAccountAttributes added in v1.19.0

DescribeAccountAttributes mocks base method.

func (*MockEC2API) DescribeAccountAttributesRequest added in v1.19.0

func (m *MockEC2API) DescribeAccountAttributesRequest(arg0 *ec2.DescribeAccountAttributesInput) (*request.Request, *ec2.DescribeAccountAttributesOutput)

DescribeAccountAttributesRequest mocks base method.

func (*MockEC2API) DescribeAccountAttributesWithContext added in v1.19.0

func (m *MockEC2API) DescribeAccountAttributesWithContext(arg0 context.Context, arg1 *ec2.DescribeAccountAttributesInput, arg2 ...request.Option) (*ec2.DescribeAccountAttributesOutput, error)

DescribeAccountAttributesWithContext mocks base method.

func (*MockEC2API) DescribeAddressTransfers added in v1.19.0

DescribeAddressTransfers mocks base method.

func (*MockEC2API) DescribeAddressTransfersPages added in v1.19.0

func (m *MockEC2API) DescribeAddressTransfersPages(arg0 *ec2.DescribeAddressTransfersInput, arg1 func(*ec2.DescribeAddressTransfersOutput, bool) bool) error

DescribeAddressTransfersPages mocks base method.

func (*MockEC2API) DescribeAddressTransfersPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeAddressTransfersPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeAddressTransfersInput, arg2 func(*ec2.DescribeAddressTransfersOutput, bool) bool, arg3 ...request.Option) error

DescribeAddressTransfersPagesWithContext mocks base method.

func (*MockEC2API) DescribeAddressTransfersRequest added in v1.19.0

func (m *MockEC2API) DescribeAddressTransfersRequest(arg0 *ec2.DescribeAddressTransfersInput) (*request.Request, *ec2.DescribeAddressTransfersOutput)

DescribeAddressTransfersRequest mocks base method.

func (*MockEC2API) DescribeAddressTransfersWithContext added in v1.19.0

func (m *MockEC2API) DescribeAddressTransfersWithContext(arg0 context.Context, arg1 *ec2.DescribeAddressTransfersInput, arg2 ...request.Option) (*ec2.DescribeAddressTransfersOutput, error)

DescribeAddressTransfersWithContext mocks base method.

func (*MockEC2API) DescribeAddresses added in v1.19.0

func (m *MockEC2API) DescribeAddresses(arg0 *ec2.DescribeAddressesInput) (*ec2.DescribeAddressesOutput, error)

DescribeAddresses mocks base method.

func (*MockEC2API) DescribeAddressesAttribute added in v1.19.0

DescribeAddressesAttribute mocks base method.

func (*MockEC2API) DescribeAddressesAttributePages added in v1.19.0

func (m *MockEC2API) DescribeAddressesAttributePages(arg0 *ec2.DescribeAddressesAttributeInput, arg1 func(*ec2.DescribeAddressesAttributeOutput, bool) bool) error

DescribeAddressesAttributePages mocks base method.

func (*MockEC2API) DescribeAddressesAttributePagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeAddressesAttributePagesWithContext(arg0 context.Context, arg1 *ec2.DescribeAddressesAttributeInput, arg2 func(*ec2.DescribeAddressesAttributeOutput, bool) bool, arg3 ...request.Option) error

DescribeAddressesAttributePagesWithContext mocks base method.

func (*MockEC2API) DescribeAddressesAttributeRequest added in v1.19.0

func (m *MockEC2API) DescribeAddressesAttributeRequest(arg0 *ec2.DescribeAddressesAttributeInput) (*request.Request, *ec2.DescribeAddressesAttributeOutput)

DescribeAddressesAttributeRequest mocks base method.

func (*MockEC2API) DescribeAddressesAttributeWithContext added in v1.19.0

func (m *MockEC2API) DescribeAddressesAttributeWithContext(arg0 context.Context, arg1 *ec2.DescribeAddressesAttributeInput, arg2 ...request.Option) (*ec2.DescribeAddressesAttributeOutput, error)

DescribeAddressesAttributeWithContext mocks base method.

func (*MockEC2API) DescribeAddressesRequest added in v1.19.0

func (m *MockEC2API) DescribeAddressesRequest(arg0 *ec2.DescribeAddressesInput) (*request.Request, *ec2.DescribeAddressesOutput)

DescribeAddressesRequest mocks base method.

func (*MockEC2API) DescribeAddressesWithContext added in v1.19.0

func (m *MockEC2API) DescribeAddressesWithContext(arg0 context.Context, arg1 *ec2.DescribeAddressesInput, arg2 ...request.Option) (*ec2.DescribeAddressesOutput, error)

DescribeAddressesWithContext mocks base method.

func (*MockEC2API) DescribeAggregateIdFormat added in v1.19.0

DescribeAggregateIdFormat mocks base method.

func (*MockEC2API) DescribeAggregateIdFormatRequest added in v1.19.0

func (m *MockEC2API) DescribeAggregateIdFormatRequest(arg0 *ec2.DescribeAggregateIdFormatInput) (*request.Request, *ec2.DescribeAggregateIdFormatOutput)

DescribeAggregateIdFormatRequest mocks base method.

func (*MockEC2API) DescribeAggregateIdFormatWithContext added in v1.19.0

func (m *MockEC2API) DescribeAggregateIdFormatWithContext(arg0 context.Context, arg1 *ec2.DescribeAggregateIdFormatInput, arg2 ...request.Option) (*ec2.DescribeAggregateIdFormatOutput, error)

DescribeAggregateIdFormatWithContext mocks base method.

func (*MockEC2API) DescribeAvailabilityZones added in v1.19.0

DescribeAvailabilityZones mocks base method.

func (*MockEC2API) DescribeAvailabilityZonesRequest added in v1.19.0

func (m *MockEC2API) DescribeAvailabilityZonesRequest(arg0 *ec2.DescribeAvailabilityZonesInput) (*request.Request, *ec2.DescribeAvailabilityZonesOutput)

DescribeAvailabilityZonesRequest mocks base method.

func (*MockEC2API) DescribeAvailabilityZonesWithContext added in v1.19.0

func (m *MockEC2API) DescribeAvailabilityZonesWithContext(arg0 context.Context, arg1 *ec2.DescribeAvailabilityZonesInput, arg2 ...request.Option) (*ec2.DescribeAvailabilityZonesOutput, error)

DescribeAvailabilityZonesWithContext mocks base method.

func (*MockEC2API) DescribeAwsNetworkPerformanceMetricSubscriptions added in v1.19.0

DescribeAwsNetworkPerformanceMetricSubscriptions mocks base method.

func (*MockEC2API) DescribeAwsNetworkPerformanceMetricSubscriptionsPages added in v1.19.0

func (m *MockEC2API) DescribeAwsNetworkPerformanceMetricSubscriptionsPages(arg0 *ec2.DescribeAwsNetworkPerformanceMetricSubscriptionsInput, arg1 func(*ec2.DescribeAwsNetworkPerformanceMetricSubscriptionsOutput, bool) bool) error

DescribeAwsNetworkPerformanceMetricSubscriptionsPages mocks base method.

func (*MockEC2API) DescribeAwsNetworkPerformanceMetricSubscriptionsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeAwsNetworkPerformanceMetricSubscriptionsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeAwsNetworkPerformanceMetricSubscriptionsInput, arg2 func(*ec2.DescribeAwsNetworkPerformanceMetricSubscriptionsOutput, bool) bool, arg3 ...request.Option) error

DescribeAwsNetworkPerformanceMetricSubscriptionsPagesWithContext mocks base method.

func (*MockEC2API) DescribeAwsNetworkPerformanceMetricSubscriptionsRequest added in v1.19.0

DescribeAwsNetworkPerformanceMetricSubscriptionsRequest mocks base method.

func (*MockEC2API) DescribeAwsNetworkPerformanceMetricSubscriptionsWithContext added in v1.19.0

func (m *MockEC2API) DescribeAwsNetworkPerformanceMetricSubscriptionsWithContext(arg0 context.Context, arg1 *ec2.DescribeAwsNetworkPerformanceMetricSubscriptionsInput, arg2 ...request.Option) (*ec2.DescribeAwsNetworkPerformanceMetricSubscriptionsOutput, error)

DescribeAwsNetworkPerformanceMetricSubscriptionsWithContext mocks base method.

func (*MockEC2API) DescribeBundleTasks added in v1.19.0

func (m *MockEC2API) DescribeBundleTasks(arg0 *ec2.DescribeBundleTasksInput) (*ec2.DescribeBundleTasksOutput, error)

DescribeBundleTasks mocks base method.

func (*MockEC2API) DescribeBundleTasksRequest added in v1.19.0

func (m *MockEC2API) DescribeBundleTasksRequest(arg0 *ec2.DescribeBundleTasksInput) (*request.Request, *ec2.DescribeBundleTasksOutput)

DescribeBundleTasksRequest mocks base method.

func (*MockEC2API) DescribeBundleTasksWithContext added in v1.19.0

func (m *MockEC2API) DescribeBundleTasksWithContext(arg0 context.Context, arg1 *ec2.DescribeBundleTasksInput, arg2 ...request.Option) (*ec2.DescribeBundleTasksOutput, error)

DescribeBundleTasksWithContext mocks base method.

func (*MockEC2API) DescribeByoipCidrs added in v1.19.0

func (m *MockEC2API) DescribeByoipCidrs(arg0 *ec2.DescribeByoipCidrsInput) (*ec2.DescribeByoipCidrsOutput, error)

DescribeByoipCidrs mocks base method.

func (*MockEC2API) DescribeByoipCidrsPages added in v1.19.0

func (m *MockEC2API) DescribeByoipCidrsPages(arg0 *ec2.DescribeByoipCidrsInput, arg1 func(*ec2.DescribeByoipCidrsOutput, bool) bool) error

DescribeByoipCidrsPages mocks base method.

func (*MockEC2API) DescribeByoipCidrsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeByoipCidrsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeByoipCidrsInput, arg2 func(*ec2.DescribeByoipCidrsOutput, bool) bool, arg3 ...request.Option) error

DescribeByoipCidrsPagesWithContext mocks base method.

func (*MockEC2API) DescribeByoipCidrsRequest added in v1.19.0

func (m *MockEC2API) DescribeByoipCidrsRequest(arg0 *ec2.DescribeByoipCidrsInput) (*request.Request, *ec2.DescribeByoipCidrsOutput)

DescribeByoipCidrsRequest mocks base method.

func (*MockEC2API) DescribeByoipCidrsWithContext added in v1.19.0

func (m *MockEC2API) DescribeByoipCidrsWithContext(arg0 context.Context, arg1 *ec2.DescribeByoipCidrsInput, arg2 ...request.Option) (*ec2.DescribeByoipCidrsOutput, error)

DescribeByoipCidrsWithContext mocks base method.

func (*MockEC2API) DescribeCapacityReservationFleets added in v1.19.0

DescribeCapacityReservationFleets mocks base method.

func (*MockEC2API) DescribeCapacityReservationFleetsPages added in v1.19.0

func (m *MockEC2API) DescribeCapacityReservationFleetsPages(arg0 *ec2.DescribeCapacityReservationFleetsInput, arg1 func(*ec2.DescribeCapacityReservationFleetsOutput, bool) bool) error

DescribeCapacityReservationFleetsPages mocks base method.

func (*MockEC2API) DescribeCapacityReservationFleetsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeCapacityReservationFleetsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeCapacityReservationFleetsInput, arg2 func(*ec2.DescribeCapacityReservationFleetsOutput, bool) bool, arg3 ...request.Option) error

DescribeCapacityReservationFleetsPagesWithContext mocks base method.

func (*MockEC2API) DescribeCapacityReservationFleetsRequest added in v1.19.0

DescribeCapacityReservationFleetsRequest mocks base method.

func (*MockEC2API) DescribeCapacityReservationFleetsWithContext added in v1.19.0

func (m *MockEC2API) DescribeCapacityReservationFleetsWithContext(arg0 context.Context, arg1 *ec2.DescribeCapacityReservationFleetsInput, arg2 ...request.Option) (*ec2.DescribeCapacityReservationFleetsOutput, error)

DescribeCapacityReservationFleetsWithContext mocks base method.

func (*MockEC2API) DescribeCapacityReservations added in v1.19.0

DescribeCapacityReservations mocks base method.

func (*MockEC2API) DescribeCapacityReservationsPages added in v1.19.0

func (m *MockEC2API) DescribeCapacityReservationsPages(arg0 *ec2.DescribeCapacityReservationsInput, arg1 func(*ec2.DescribeCapacityReservationsOutput, bool) bool) error

DescribeCapacityReservationsPages mocks base method.

func (*MockEC2API) DescribeCapacityReservationsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeCapacityReservationsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeCapacityReservationsInput, arg2 func(*ec2.DescribeCapacityReservationsOutput, bool) bool, arg3 ...request.Option) error

DescribeCapacityReservationsPagesWithContext mocks base method.

func (*MockEC2API) DescribeCapacityReservationsRequest added in v1.19.0

func (m *MockEC2API) DescribeCapacityReservationsRequest(arg0 *ec2.DescribeCapacityReservationsInput) (*request.Request, *ec2.DescribeCapacityReservationsOutput)

DescribeCapacityReservationsRequest mocks base method.

func (*MockEC2API) DescribeCapacityReservationsWithContext added in v1.19.0

func (m *MockEC2API) DescribeCapacityReservationsWithContext(arg0 context.Context, arg1 *ec2.DescribeCapacityReservationsInput, arg2 ...request.Option) (*ec2.DescribeCapacityReservationsOutput, error)

DescribeCapacityReservationsWithContext mocks base method.

func (*MockEC2API) DescribeCarrierGateways added in v1.19.0

func (m *MockEC2API) DescribeCarrierGateways(arg0 *ec2.DescribeCarrierGatewaysInput) (*ec2.DescribeCarrierGatewaysOutput, error)

DescribeCarrierGateways mocks base method.

func (*MockEC2API) DescribeCarrierGatewaysPages added in v1.19.0

func (m *MockEC2API) DescribeCarrierGatewaysPages(arg0 *ec2.DescribeCarrierGatewaysInput, arg1 func(*ec2.DescribeCarrierGatewaysOutput, bool) bool) error

DescribeCarrierGatewaysPages mocks base method.

func (*MockEC2API) DescribeCarrierGatewaysPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeCarrierGatewaysPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeCarrierGatewaysInput, arg2 func(*ec2.DescribeCarrierGatewaysOutput, bool) bool, arg3 ...request.Option) error

DescribeCarrierGatewaysPagesWithContext mocks base method.

func (*MockEC2API) DescribeCarrierGatewaysRequest added in v1.19.0

func (m *MockEC2API) DescribeCarrierGatewaysRequest(arg0 *ec2.DescribeCarrierGatewaysInput) (*request.Request, *ec2.DescribeCarrierGatewaysOutput)

DescribeCarrierGatewaysRequest mocks base method.

func (*MockEC2API) DescribeCarrierGatewaysWithContext added in v1.19.0

func (m *MockEC2API) DescribeCarrierGatewaysWithContext(arg0 context.Context, arg1 *ec2.DescribeCarrierGatewaysInput, arg2 ...request.Option) (*ec2.DescribeCarrierGatewaysOutput, error)

DescribeCarrierGatewaysWithContext mocks base method.

func (*MockEC2API) DescribeClassicLinkInstances added in v1.19.0

DescribeClassicLinkInstances mocks base method.

func (*MockEC2API) DescribeClassicLinkInstancesPages added in v1.19.0

func (m *MockEC2API) DescribeClassicLinkInstancesPages(arg0 *ec2.DescribeClassicLinkInstancesInput, arg1 func(*ec2.DescribeClassicLinkInstancesOutput, bool) bool) error

DescribeClassicLinkInstancesPages mocks base method.

func (*MockEC2API) DescribeClassicLinkInstancesPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeClassicLinkInstancesPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeClassicLinkInstancesInput, arg2 func(*ec2.DescribeClassicLinkInstancesOutput, bool) bool, arg3 ...request.Option) error

DescribeClassicLinkInstancesPagesWithContext mocks base method.

func (*MockEC2API) DescribeClassicLinkInstancesRequest added in v1.19.0

func (m *MockEC2API) DescribeClassicLinkInstancesRequest(arg0 *ec2.DescribeClassicLinkInstancesInput) (*request.Request, *ec2.DescribeClassicLinkInstancesOutput)

DescribeClassicLinkInstancesRequest mocks base method.

func (*MockEC2API) DescribeClassicLinkInstancesWithContext added in v1.19.0

func (m *MockEC2API) DescribeClassicLinkInstancesWithContext(arg0 context.Context, arg1 *ec2.DescribeClassicLinkInstancesInput, arg2 ...request.Option) (*ec2.DescribeClassicLinkInstancesOutput, error)

DescribeClassicLinkInstancesWithContext mocks base method.

func (*MockEC2API) DescribeClientVpnAuthorizationRules added in v1.19.0

DescribeClientVpnAuthorizationRules mocks base method.

func (*MockEC2API) DescribeClientVpnAuthorizationRulesPages added in v1.19.0

func (m *MockEC2API) DescribeClientVpnAuthorizationRulesPages(arg0 *ec2.DescribeClientVpnAuthorizationRulesInput, arg1 func(*ec2.DescribeClientVpnAuthorizationRulesOutput, bool) bool) error

DescribeClientVpnAuthorizationRulesPages mocks base method.

func (*MockEC2API) DescribeClientVpnAuthorizationRulesPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeClientVpnAuthorizationRulesPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeClientVpnAuthorizationRulesInput, arg2 func(*ec2.DescribeClientVpnAuthorizationRulesOutput, bool) bool, arg3 ...request.Option) error

DescribeClientVpnAuthorizationRulesPagesWithContext mocks base method.

func (*MockEC2API) DescribeClientVpnAuthorizationRulesRequest added in v1.19.0

DescribeClientVpnAuthorizationRulesRequest mocks base method.

func (*MockEC2API) DescribeClientVpnAuthorizationRulesWithContext added in v1.19.0

func (m *MockEC2API) DescribeClientVpnAuthorizationRulesWithContext(arg0 context.Context, arg1 *ec2.DescribeClientVpnAuthorizationRulesInput, arg2 ...request.Option) (*ec2.DescribeClientVpnAuthorizationRulesOutput, error)

DescribeClientVpnAuthorizationRulesWithContext mocks base method.

func (*MockEC2API) DescribeClientVpnConnections added in v1.19.0

DescribeClientVpnConnections mocks base method.

func (*MockEC2API) DescribeClientVpnConnectionsPages added in v1.19.0

func (m *MockEC2API) DescribeClientVpnConnectionsPages(arg0 *ec2.DescribeClientVpnConnectionsInput, arg1 func(*ec2.DescribeClientVpnConnectionsOutput, bool) bool) error

DescribeClientVpnConnectionsPages mocks base method.

func (*MockEC2API) DescribeClientVpnConnectionsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeClientVpnConnectionsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeClientVpnConnectionsInput, arg2 func(*ec2.DescribeClientVpnConnectionsOutput, bool) bool, arg3 ...request.Option) error

DescribeClientVpnConnectionsPagesWithContext mocks base method.

func (*MockEC2API) DescribeClientVpnConnectionsRequest added in v1.19.0

func (m *MockEC2API) DescribeClientVpnConnectionsRequest(arg0 *ec2.DescribeClientVpnConnectionsInput) (*request.Request, *ec2.DescribeClientVpnConnectionsOutput)

DescribeClientVpnConnectionsRequest mocks base method.

func (*MockEC2API) DescribeClientVpnConnectionsWithContext added in v1.19.0

func (m *MockEC2API) DescribeClientVpnConnectionsWithContext(arg0 context.Context, arg1 *ec2.DescribeClientVpnConnectionsInput, arg2 ...request.Option) (*ec2.DescribeClientVpnConnectionsOutput, error)

DescribeClientVpnConnectionsWithContext mocks base method.

func (*MockEC2API) DescribeClientVpnEndpoints added in v1.19.0

DescribeClientVpnEndpoints mocks base method.

func (*MockEC2API) DescribeClientVpnEndpointsPages added in v1.19.0

func (m *MockEC2API) DescribeClientVpnEndpointsPages(arg0 *ec2.DescribeClientVpnEndpointsInput, arg1 func(*ec2.DescribeClientVpnEndpointsOutput, bool) bool) error

DescribeClientVpnEndpointsPages mocks base method.

func (*MockEC2API) DescribeClientVpnEndpointsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeClientVpnEndpointsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeClientVpnEndpointsInput, arg2 func(*ec2.DescribeClientVpnEndpointsOutput, bool) bool, arg3 ...request.Option) error

DescribeClientVpnEndpointsPagesWithContext mocks base method.

func (*MockEC2API) DescribeClientVpnEndpointsRequest added in v1.19.0

func (m *MockEC2API) DescribeClientVpnEndpointsRequest(arg0 *ec2.DescribeClientVpnEndpointsInput) (*request.Request, *ec2.DescribeClientVpnEndpointsOutput)

DescribeClientVpnEndpointsRequest mocks base method.

func (*MockEC2API) DescribeClientVpnEndpointsWithContext added in v1.19.0

func (m *MockEC2API) DescribeClientVpnEndpointsWithContext(arg0 context.Context, arg1 *ec2.DescribeClientVpnEndpointsInput, arg2 ...request.Option) (*ec2.DescribeClientVpnEndpointsOutput, error)

DescribeClientVpnEndpointsWithContext mocks base method.

func (*MockEC2API) DescribeClientVpnRoutes added in v1.19.0

func (m *MockEC2API) DescribeClientVpnRoutes(arg0 *ec2.DescribeClientVpnRoutesInput) (*ec2.DescribeClientVpnRoutesOutput, error)

DescribeClientVpnRoutes mocks base method.

func (*MockEC2API) DescribeClientVpnRoutesPages added in v1.19.0

func (m *MockEC2API) DescribeClientVpnRoutesPages(arg0 *ec2.DescribeClientVpnRoutesInput, arg1 func(*ec2.DescribeClientVpnRoutesOutput, bool) bool) error

DescribeClientVpnRoutesPages mocks base method.

func (*MockEC2API) DescribeClientVpnRoutesPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeClientVpnRoutesPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeClientVpnRoutesInput, arg2 func(*ec2.DescribeClientVpnRoutesOutput, bool) bool, arg3 ...request.Option) error

DescribeClientVpnRoutesPagesWithContext mocks base method.

func (*MockEC2API) DescribeClientVpnRoutesRequest added in v1.19.0

func (m *MockEC2API) DescribeClientVpnRoutesRequest(arg0 *ec2.DescribeClientVpnRoutesInput) (*request.Request, *ec2.DescribeClientVpnRoutesOutput)

DescribeClientVpnRoutesRequest mocks base method.

func (*MockEC2API) DescribeClientVpnRoutesWithContext added in v1.19.0

func (m *MockEC2API) DescribeClientVpnRoutesWithContext(arg0 context.Context, arg1 *ec2.DescribeClientVpnRoutesInput, arg2 ...request.Option) (*ec2.DescribeClientVpnRoutesOutput, error)

DescribeClientVpnRoutesWithContext mocks base method.

func (*MockEC2API) DescribeClientVpnTargetNetworks added in v1.19.0

DescribeClientVpnTargetNetworks mocks base method.

func (*MockEC2API) DescribeClientVpnTargetNetworksPages added in v1.19.0

func (m *MockEC2API) DescribeClientVpnTargetNetworksPages(arg0 *ec2.DescribeClientVpnTargetNetworksInput, arg1 func(*ec2.DescribeClientVpnTargetNetworksOutput, bool) bool) error

DescribeClientVpnTargetNetworksPages mocks base method.

func (*MockEC2API) DescribeClientVpnTargetNetworksPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeClientVpnTargetNetworksPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeClientVpnTargetNetworksInput, arg2 func(*ec2.DescribeClientVpnTargetNetworksOutput, bool) bool, arg3 ...request.Option) error

DescribeClientVpnTargetNetworksPagesWithContext mocks base method.

func (*MockEC2API) DescribeClientVpnTargetNetworksRequest added in v1.19.0

func (m *MockEC2API) DescribeClientVpnTargetNetworksRequest(arg0 *ec2.DescribeClientVpnTargetNetworksInput) (*request.Request, *ec2.DescribeClientVpnTargetNetworksOutput)

DescribeClientVpnTargetNetworksRequest mocks base method.

func (*MockEC2API) DescribeClientVpnTargetNetworksWithContext added in v1.19.0

func (m *MockEC2API) DescribeClientVpnTargetNetworksWithContext(arg0 context.Context, arg1 *ec2.DescribeClientVpnTargetNetworksInput, arg2 ...request.Option) (*ec2.DescribeClientVpnTargetNetworksOutput, error)

DescribeClientVpnTargetNetworksWithContext mocks base method.

func (*MockEC2API) DescribeCoipPools added in v1.19.0

func (m *MockEC2API) DescribeCoipPools(arg0 *ec2.DescribeCoipPoolsInput) (*ec2.DescribeCoipPoolsOutput, error)

DescribeCoipPools mocks base method.

func (*MockEC2API) DescribeCoipPoolsPages added in v1.19.0

func (m *MockEC2API) DescribeCoipPoolsPages(arg0 *ec2.DescribeCoipPoolsInput, arg1 func(*ec2.DescribeCoipPoolsOutput, bool) bool) error

DescribeCoipPoolsPages mocks base method.

func (*MockEC2API) DescribeCoipPoolsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeCoipPoolsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeCoipPoolsInput, arg2 func(*ec2.DescribeCoipPoolsOutput, bool) bool, arg3 ...request.Option) error

DescribeCoipPoolsPagesWithContext mocks base method.

func (*MockEC2API) DescribeCoipPoolsRequest added in v1.19.0

func (m *MockEC2API) DescribeCoipPoolsRequest(arg0 *ec2.DescribeCoipPoolsInput) (*request.Request, *ec2.DescribeCoipPoolsOutput)

DescribeCoipPoolsRequest mocks base method.

func (*MockEC2API) DescribeCoipPoolsWithContext added in v1.19.0

func (m *MockEC2API) DescribeCoipPoolsWithContext(arg0 context.Context, arg1 *ec2.DescribeCoipPoolsInput, arg2 ...request.Option) (*ec2.DescribeCoipPoolsOutput, error)

DescribeCoipPoolsWithContext mocks base method.

func (*MockEC2API) DescribeConversionTasks added in v1.19.0

func (m *MockEC2API) DescribeConversionTasks(arg0 *ec2.DescribeConversionTasksInput) (*ec2.DescribeConversionTasksOutput, error)

DescribeConversionTasks mocks base method.

func (*MockEC2API) DescribeConversionTasksRequest added in v1.19.0

func (m *MockEC2API) DescribeConversionTasksRequest(arg0 *ec2.DescribeConversionTasksInput) (*request.Request, *ec2.DescribeConversionTasksOutput)

DescribeConversionTasksRequest mocks base method.

func (*MockEC2API) DescribeConversionTasksWithContext added in v1.19.0

func (m *MockEC2API) DescribeConversionTasksWithContext(arg0 context.Context, arg1 *ec2.DescribeConversionTasksInput, arg2 ...request.Option) (*ec2.DescribeConversionTasksOutput, error)

DescribeConversionTasksWithContext mocks base method.

func (*MockEC2API) DescribeCustomerGateways added in v1.19.0

DescribeCustomerGateways mocks base method.

func (*MockEC2API) DescribeCustomerGatewaysRequest added in v1.19.0

func (m *MockEC2API) DescribeCustomerGatewaysRequest(arg0 *ec2.DescribeCustomerGatewaysInput) (*request.Request, *ec2.DescribeCustomerGatewaysOutput)

DescribeCustomerGatewaysRequest mocks base method.

func (*MockEC2API) DescribeCustomerGatewaysWithContext added in v1.19.0

func (m *MockEC2API) DescribeCustomerGatewaysWithContext(arg0 context.Context, arg1 *ec2.DescribeCustomerGatewaysInput, arg2 ...request.Option) (*ec2.DescribeCustomerGatewaysOutput, error)

DescribeCustomerGatewaysWithContext mocks base method.

func (*MockEC2API) DescribeDhcpOptions added in v1.19.0

func (m *MockEC2API) DescribeDhcpOptions(arg0 *ec2.DescribeDhcpOptionsInput) (*ec2.DescribeDhcpOptionsOutput, error)

DescribeDhcpOptions mocks base method.

func (*MockEC2API) DescribeDhcpOptionsPages added in v1.19.0

func (m *MockEC2API) DescribeDhcpOptionsPages(arg0 *ec2.DescribeDhcpOptionsInput, arg1 func(*ec2.DescribeDhcpOptionsOutput, bool) bool) error

DescribeDhcpOptionsPages mocks base method.

func (*MockEC2API) DescribeDhcpOptionsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeDhcpOptionsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeDhcpOptionsInput, arg2 func(*ec2.DescribeDhcpOptionsOutput, bool) bool, arg3 ...request.Option) error

DescribeDhcpOptionsPagesWithContext mocks base method.

func (*MockEC2API) DescribeDhcpOptionsRequest added in v1.19.0

func (m *MockEC2API) DescribeDhcpOptionsRequest(arg0 *ec2.DescribeDhcpOptionsInput) (*request.Request, *ec2.DescribeDhcpOptionsOutput)

DescribeDhcpOptionsRequest mocks base method.

func (*MockEC2API) DescribeDhcpOptionsWithContext added in v1.19.0

func (m *MockEC2API) DescribeDhcpOptionsWithContext(arg0 context.Context, arg1 *ec2.DescribeDhcpOptionsInput, arg2 ...request.Option) (*ec2.DescribeDhcpOptionsOutput, error)

DescribeDhcpOptionsWithContext mocks base method.

func (*MockEC2API) DescribeEgressOnlyInternetGateways added in v1.19.0

DescribeEgressOnlyInternetGateways mocks base method.

func (*MockEC2API) DescribeEgressOnlyInternetGatewaysPages added in v1.19.0

func (m *MockEC2API) DescribeEgressOnlyInternetGatewaysPages(arg0 *ec2.DescribeEgressOnlyInternetGatewaysInput, arg1 func(*ec2.DescribeEgressOnlyInternetGatewaysOutput, bool) bool) error

DescribeEgressOnlyInternetGatewaysPages mocks base method.

func (*MockEC2API) DescribeEgressOnlyInternetGatewaysPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeEgressOnlyInternetGatewaysPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeEgressOnlyInternetGatewaysInput, arg2 func(*ec2.DescribeEgressOnlyInternetGatewaysOutput, bool) bool, arg3 ...request.Option) error

DescribeEgressOnlyInternetGatewaysPagesWithContext mocks base method.

func (*MockEC2API) DescribeEgressOnlyInternetGatewaysRequest added in v1.19.0

DescribeEgressOnlyInternetGatewaysRequest mocks base method.

func (*MockEC2API) DescribeEgressOnlyInternetGatewaysWithContext added in v1.19.0

func (m *MockEC2API) DescribeEgressOnlyInternetGatewaysWithContext(arg0 context.Context, arg1 *ec2.DescribeEgressOnlyInternetGatewaysInput, arg2 ...request.Option) (*ec2.DescribeEgressOnlyInternetGatewaysOutput, error)

DescribeEgressOnlyInternetGatewaysWithContext mocks base method.

func (*MockEC2API) DescribeElasticGpus added in v1.19.0

func (m *MockEC2API) DescribeElasticGpus(arg0 *ec2.DescribeElasticGpusInput) (*ec2.DescribeElasticGpusOutput, error)

DescribeElasticGpus mocks base method.

func (*MockEC2API) DescribeElasticGpusRequest added in v1.19.0

func (m *MockEC2API) DescribeElasticGpusRequest(arg0 *ec2.DescribeElasticGpusInput) (*request.Request, *ec2.DescribeElasticGpusOutput)

DescribeElasticGpusRequest mocks base method.

func (*MockEC2API) DescribeElasticGpusWithContext added in v1.19.0

func (m *MockEC2API) DescribeElasticGpusWithContext(arg0 context.Context, arg1 *ec2.DescribeElasticGpusInput, arg2 ...request.Option) (*ec2.DescribeElasticGpusOutput, error)

DescribeElasticGpusWithContext mocks base method.

func (*MockEC2API) DescribeExportImageTasks added in v1.19.0

DescribeExportImageTasks mocks base method.

func (*MockEC2API) DescribeExportImageTasksPages added in v1.19.0

func (m *MockEC2API) DescribeExportImageTasksPages(arg0 *ec2.DescribeExportImageTasksInput, arg1 func(*ec2.DescribeExportImageTasksOutput, bool) bool) error

DescribeExportImageTasksPages mocks base method.

func (*MockEC2API) DescribeExportImageTasksPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeExportImageTasksPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeExportImageTasksInput, arg2 func(*ec2.DescribeExportImageTasksOutput, bool) bool, arg3 ...request.Option) error

DescribeExportImageTasksPagesWithContext mocks base method.

func (*MockEC2API) DescribeExportImageTasksRequest added in v1.19.0

func (m *MockEC2API) DescribeExportImageTasksRequest(arg0 *ec2.DescribeExportImageTasksInput) (*request.Request, *ec2.DescribeExportImageTasksOutput)

DescribeExportImageTasksRequest mocks base method.

func (*MockEC2API) DescribeExportImageTasksWithContext added in v1.19.0

func (m *MockEC2API) DescribeExportImageTasksWithContext(arg0 context.Context, arg1 *ec2.DescribeExportImageTasksInput, arg2 ...request.Option) (*ec2.DescribeExportImageTasksOutput, error)

DescribeExportImageTasksWithContext mocks base method.

func (*MockEC2API) DescribeExportTasks added in v1.19.0

func (m *MockEC2API) DescribeExportTasks(arg0 *ec2.DescribeExportTasksInput) (*ec2.DescribeExportTasksOutput, error)

DescribeExportTasks mocks base method.

func (*MockEC2API) DescribeExportTasksRequest added in v1.19.0

func (m *MockEC2API) DescribeExportTasksRequest(arg0 *ec2.DescribeExportTasksInput) (*request.Request, *ec2.DescribeExportTasksOutput)

DescribeExportTasksRequest mocks base method.

func (*MockEC2API) DescribeExportTasksWithContext added in v1.19.0

func (m *MockEC2API) DescribeExportTasksWithContext(arg0 context.Context, arg1 *ec2.DescribeExportTasksInput, arg2 ...request.Option) (*ec2.DescribeExportTasksOutput, error)

DescribeExportTasksWithContext mocks base method.

func (*MockEC2API) DescribeFastLaunchImages added in v1.19.0

DescribeFastLaunchImages mocks base method.

func (*MockEC2API) DescribeFastLaunchImagesPages added in v1.19.0

func (m *MockEC2API) DescribeFastLaunchImagesPages(arg0 *ec2.DescribeFastLaunchImagesInput, arg1 func(*ec2.DescribeFastLaunchImagesOutput, bool) bool) error

DescribeFastLaunchImagesPages mocks base method.

func (*MockEC2API) DescribeFastLaunchImagesPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeFastLaunchImagesPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeFastLaunchImagesInput, arg2 func(*ec2.DescribeFastLaunchImagesOutput, bool) bool, arg3 ...request.Option) error

DescribeFastLaunchImagesPagesWithContext mocks base method.

func (*MockEC2API) DescribeFastLaunchImagesRequest added in v1.19.0

func (m *MockEC2API) DescribeFastLaunchImagesRequest(arg0 *ec2.DescribeFastLaunchImagesInput) (*request.Request, *ec2.DescribeFastLaunchImagesOutput)

DescribeFastLaunchImagesRequest mocks base method.

func (*MockEC2API) DescribeFastLaunchImagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeFastLaunchImagesWithContext(arg0 context.Context, arg1 *ec2.DescribeFastLaunchImagesInput, arg2 ...request.Option) (*ec2.DescribeFastLaunchImagesOutput, error)

DescribeFastLaunchImagesWithContext mocks base method.

func (*MockEC2API) DescribeFastSnapshotRestores added in v1.19.0

DescribeFastSnapshotRestores mocks base method.

func (*MockEC2API) DescribeFastSnapshotRestoresPages added in v1.19.0

func (m *MockEC2API) DescribeFastSnapshotRestoresPages(arg0 *ec2.DescribeFastSnapshotRestoresInput, arg1 func(*ec2.DescribeFastSnapshotRestoresOutput, bool) bool) error

DescribeFastSnapshotRestoresPages mocks base method.

func (*MockEC2API) DescribeFastSnapshotRestoresPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeFastSnapshotRestoresPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeFastSnapshotRestoresInput, arg2 func(*ec2.DescribeFastSnapshotRestoresOutput, bool) bool, arg3 ...request.Option) error

DescribeFastSnapshotRestoresPagesWithContext mocks base method.

func (*MockEC2API) DescribeFastSnapshotRestoresRequest added in v1.19.0

func (m *MockEC2API) DescribeFastSnapshotRestoresRequest(arg0 *ec2.DescribeFastSnapshotRestoresInput) (*request.Request, *ec2.DescribeFastSnapshotRestoresOutput)

DescribeFastSnapshotRestoresRequest mocks base method.

func (*MockEC2API) DescribeFastSnapshotRestoresWithContext added in v1.19.0

func (m *MockEC2API) DescribeFastSnapshotRestoresWithContext(arg0 context.Context, arg1 *ec2.DescribeFastSnapshotRestoresInput, arg2 ...request.Option) (*ec2.DescribeFastSnapshotRestoresOutput, error)

DescribeFastSnapshotRestoresWithContext mocks base method.

func (*MockEC2API) DescribeFleetHistory added in v1.19.0

func (m *MockEC2API) DescribeFleetHistory(arg0 *ec2.DescribeFleetHistoryInput) (*ec2.DescribeFleetHistoryOutput, error)

DescribeFleetHistory mocks base method.

func (*MockEC2API) DescribeFleetHistoryRequest added in v1.19.0

func (m *MockEC2API) DescribeFleetHistoryRequest(arg0 *ec2.DescribeFleetHistoryInput) (*request.Request, *ec2.DescribeFleetHistoryOutput)

DescribeFleetHistoryRequest mocks base method.

func (*MockEC2API) DescribeFleetHistoryWithContext added in v1.19.0

func (m *MockEC2API) DescribeFleetHistoryWithContext(arg0 context.Context, arg1 *ec2.DescribeFleetHistoryInput, arg2 ...request.Option) (*ec2.DescribeFleetHistoryOutput, error)

DescribeFleetHistoryWithContext mocks base method.

func (*MockEC2API) DescribeFleetInstances added in v1.19.0

func (m *MockEC2API) DescribeFleetInstances(arg0 *ec2.DescribeFleetInstancesInput) (*ec2.DescribeFleetInstancesOutput, error)

DescribeFleetInstances mocks base method.

func (*MockEC2API) DescribeFleetInstancesRequest added in v1.19.0

func (m *MockEC2API) DescribeFleetInstancesRequest(arg0 *ec2.DescribeFleetInstancesInput) (*request.Request, *ec2.DescribeFleetInstancesOutput)

DescribeFleetInstancesRequest mocks base method.

func (*MockEC2API) DescribeFleetInstancesWithContext added in v1.19.0

func (m *MockEC2API) DescribeFleetInstancesWithContext(arg0 context.Context, arg1 *ec2.DescribeFleetInstancesInput, arg2 ...request.Option) (*ec2.DescribeFleetInstancesOutput, error)

DescribeFleetInstancesWithContext mocks base method.

func (*MockEC2API) DescribeFleets added in v1.19.0

func (m *MockEC2API) DescribeFleets(arg0 *ec2.DescribeFleetsInput) (*ec2.DescribeFleetsOutput, error)

DescribeFleets mocks base method.

func (*MockEC2API) DescribeFleetsPages added in v1.19.0

func (m *MockEC2API) DescribeFleetsPages(arg0 *ec2.DescribeFleetsInput, arg1 func(*ec2.DescribeFleetsOutput, bool) bool) error

DescribeFleetsPages mocks base method.

func (*MockEC2API) DescribeFleetsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeFleetsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeFleetsInput, arg2 func(*ec2.DescribeFleetsOutput, bool) bool, arg3 ...request.Option) error

DescribeFleetsPagesWithContext mocks base method.

func (*MockEC2API) DescribeFleetsRequest added in v1.19.0

func (m *MockEC2API) DescribeFleetsRequest(arg0 *ec2.DescribeFleetsInput) (*request.Request, *ec2.DescribeFleetsOutput)

DescribeFleetsRequest mocks base method.

func (*MockEC2API) DescribeFleetsWithContext added in v1.19.0

func (m *MockEC2API) DescribeFleetsWithContext(arg0 context.Context, arg1 *ec2.DescribeFleetsInput, arg2 ...request.Option) (*ec2.DescribeFleetsOutput, error)

DescribeFleetsWithContext mocks base method.

func (*MockEC2API) DescribeFlowLogs added in v1.19.0

func (m *MockEC2API) DescribeFlowLogs(arg0 *ec2.DescribeFlowLogsInput) (*ec2.DescribeFlowLogsOutput, error)

DescribeFlowLogs mocks base method.

func (*MockEC2API) DescribeFlowLogsPages added in v1.19.0

func (m *MockEC2API) DescribeFlowLogsPages(arg0 *ec2.DescribeFlowLogsInput, arg1 func(*ec2.DescribeFlowLogsOutput, bool) bool) error

DescribeFlowLogsPages mocks base method.

func (*MockEC2API) DescribeFlowLogsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeFlowLogsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeFlowLogsInput, arg2 func(*ec2.DescribeFlowLogsOutput, bool) bool, arg3 ...request.Option) error

DescribeFlowLogsPagesWithContext mocks base method.

func (*MockEC2API) DescribeFlowLogsRequest added in v1.19.0

func (m *MockEC2API) DescribeFlowLogsRequest(arg0 *ec2.DescribeFlowLogsInput) (*request.Request, *ec2.DescribeFlowLogsOutput)

DescribeFlowLogsRequest mocks base method.

func (*MockEC2API) DescribeFlowLogsWithContext added in v1.19.0

func (m *MockEC2API) DescribeFlowLogsWithContext(arg0 context.Context, arg1 *ec2.DescribeFlowLogsInput, arg2 ...request.Option) (*ec2.DescribeFlowLogsOutput, error)

DescribeFlowLogsWithContext mocks base method.

func (*MockEC2API) DescribeFpgaImageAttribute added in v1.19.0

DescribeFpgaImageAttribute mocks base method.

func (*MockEC2API) DescribeFpgaImageAttributeRequest added in v1.19.0

func (m *MockEC2API) DescribeFpgaImageAttributeRequest(arg0 *ec2.DescribeFpgaImageAttributeInput) (*request.Request, *ec2.DescribeFpgaImageAttributeOutput)

DescribeFpgaImageAttributeRequest mocks base method.

func (*MockEC2API) DescribeFpgaImageAttributeWithContext added in v1.19.0

func (m *MockEC2API) DescribeFpgaImageAttributeWithContext(arg0 context.Context, arg1 *ec2.DescribeFpgaImageAttributeInput, arg2 ...request.Option) (*ec2.DescribeFpgaImageAttributeOutput, error)

DescribeFpgaImageAttributeWithContext mocks base method.

func (*MockEC2API) DescribeFpgaImages added in v1.19.0

func (m *MockEC2API) DescribeFpgaImages(arg0 *ec2.DescribeFpgaImagesInput) (*ec2.DescribeFpgaImagesOutput, error)

DescribeFpgaImages mocks base method.

func (*MockEC2API) DescribeFpgaImagesPages added in v1.19.0

func (m *MockEC2API) DescribeFpgaImagesPages(arg0 *ec2.DescribeFpgaImagesInput, arg1 func(*ec2.DescribeFpgaImagesOutput, bool) bool) error

DescribeFpgaImagesPages mocks base method.

func (*MockEC2API) DescribeFpgaImagesPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeFpgaImagesPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeFpgaImagesInput, arg2 func(*ec2.DescribeFpgaImagesOutput, bool) bool, arg3 ...request.Option) error

DescribeFpgaImagesPagesWithContext mocks base method.

func (*MockEC2API) DescribeFpgaImagesRequest added in v1.19.0

func (m *MockEC2API) DescribeFpgaImagesRequest(arg0 *ec2.DescribeFpgaImagesInput) (*request.Request, *ec2.DescribeFpgaImagesOutput)

DescribeFpgaImagesRequest mocks base method.

func (*MockEC2API) DescribeFpgaImagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeFpgaImagesWithContext(arg0 context.Context, arg1 *ec2.DescribeFpgaImagesInput, arg2 ...request.Option) (*ec2.DescribeFpgaImagesOutput, error)

DescribeFpgaImagesWithContext mocks base method.

func (*MockEC2API) DescribeHostReservationOfferings added in v1.19.0

DescribeHostReservationOfferings mocks base method.

func (*MockEC2API) DescribeHostReservationOfferingsPages added in v1.19.0

func (m *MockEC2API) DescribeHostReservationOfferingsPages(arg0 *ec2.DescribeHostReservationOfferingsInput, arg1 func(*ec2.DescribeHostReservationOfferingsOutput, bool) bool) error

DescribeHostReservationOfferingsPages mocks base method.

func (*MockEC2API) DescribeHostReservationOfferingsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeHostReservationOfferingsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeHostReservationOfferingsInput, arg2 func(*ec2.DescribeHostReservationOfferingsOutput, bool) bool, arg3 ...request.Option) error

DescribeHostReservationOfferingsPagesWithContext mocks base method.

func (*MockEC2API) DescribeHostReservationOfferingsRequest added in v1.19.0

func (m *MockEC2API) DescribeHostReservationOfferingsRequest(arg0 *ec2.DescribeHostReservationOfferingsInput) (*request.Request, *ec2.DescribeHostReservationOfferingsOutput)

DescribeHostReservationOfferingsRequest mocks base method.

func (*MockEC2API) DescribeHostReservationOfferingsWithContext added in v1.19.0

func (m *MockEC2API) DescribeHostReservationOfferingsWithContext(arg0 context.Context, arg1 *ec2.DescribeHostReservationOfferingsInput, arg2 ...request.Option) (*ec2.DescribeHostReservationOfferingsOutput, error)

DescribeHostReservationOfferingsWithContext mocks base method.

func (*MockEC2API) DescribeHostReservations added in v1.19.0

DescribeHostReservations mocks base method.

func (*MockEC2API) DescribeHostReservationsPages added in v1.19.0

func (m *MockEC2API) DescribeHostReservationsPages(arg0 *ec2.DescribeHostReservationsInput, arg1 func(*ec2.DescribeHostReservationsOutput, bool) bool) error

DescribeHostReservationsPages mocks base method.

func (*MockEC2API) DescribeHostReservationsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeHostReservationsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeHostReservationsInput, arg2 func(*ec2.DescribeHostReservationsOutput, bool) bool, arg3 ...request.Option) error

DescribeHostReservationsPagesWithContext mocks base method.

func (*MockEC2API) DescribeHostReservationsRequest added in v1.19.0

func (m *MockEC2API) DescribeHostReservationsRequest(arg0 *ec2.DescribeHostReservationsInput) (*request.Request, *ec2.DescribeHostReservationsOutput)

DescribeHostReservationsRequest mocks base method.

func (*MockEC2API) DescribeHostReservationsWithContext added in v1.19.0

func (m *MockEC2API) DescribeHostReservationsWithContext(arg0 context.Context, arg1 *ec2.DescribeHostReservationsInput, arg2 ...request.Option) (*ec2.DescribeHostReservationsOutput, error)

DescribeHostReservationsWithContext mocks base method.

func (*MockEC2API) DescribeHosts added in v1.19.0

func (m *MockEC2API) DescribeHosts(arg0 *ec2.DescribeHostsInput) (*ec2.DescribeHostsOutput, error)

DescribeHosts mocks base method.

func (*MockEC2API) DescribeHostsPages added in v1.19.0

func (m *MockEC2API) DescribeHostsPages(arg0 *ec2.DescribeHostsInput, arg1 func(*ec2.DescribeHostsOutput, bool) bool) error

DescribeHostsPages mocks base method.

func (*MockEC2API) DescribeHostsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeHostsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeHostsInput, arg2 func(*ec2.DescribeHostsOutput, bool) bool, arg3 ...request.Option) error

DescribeHostsPagesWithContext mocks base method.

func (*MockEC2API) DescribeHostsRequest added in v1.19.0

func (m *MockEC2API) DescribeHostsRequest(arg0 *ec2.DescribeHostsInput) (*request.Request, *ec2.DescribeHostsOutput)

DescribeHostsRequest mocks base method.

func (*MockEC2API) DescribeHostsWithContext added in v1.19.0

func (m *MockEC2API) DescribeHostsWithContext(arg0 context.Context, arg1 *ec2.DescribeHostsInput, arg2 ...request.Option) (*ec2.DescribeHostsOutput, error)

DescribeHostsWithContext mocks base method.

func (*MockEC2API) DescribeIamInstanceProfileAssociations added in v1.19.0

DescribeIamInstanceProfileAssociations mocks base method.

func (*MockEC2API) DescribeIamInstanceProfileAssociationsPages added in v1.19.0

func (m *MockEC2API) DescribeIamInstanceProfileAssociationsPages(arg0 *ec2.DescribeIamInstanceProfileAssociationsInput, arg1 func(*ec2.DescribeIamInstanceProfileAssociationsOutput, bool) bool) error

DescribeIamInstanceProfileAssociationsPages mocks base method.

func (*MockEC2API) DescribeIamInstanceProfileAssociationsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeIamInstanceProfileAssociationsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeIamInstanceProfileAssociationsInput, arg2 func(*ec2.DescribeIamInstanceProfileAssociationsOutput, bool) bool, arg3 ...request.Option) error

DescribeIamInstanceProfileAssociationsPagesWithContext mocks base method.

func (*MockEC2API) DescribeIamInstanceProfileAssociationsRequest added in v1.19.0

DescribeIamInstanceProfileAssociationsRequest mocks base method.

func (*MockEC2API) DescribeIamInstanceProfileAssociationsWithContext added in v1.19.0

func (m *MockEC2API) DescribeIamInstanceProfileAssociationsWithContext(arg0 context.Context, arg1 *ec2.DescribeIamInstanceProfileAssociationsInput, arg2 ...request.Option) (*ec2.DescribeIamInstanceProfileAssociationsOutput, error)

DescribeIamInstanceProfileAssociationsWithContext mocks base method.

func (*MockEC2API) DescribeIdFormat added in v1.19.0

func (m *MockEC2API) DescribeIdFormat(arg0 *ec2.DescribeIdFormatInput) (*ec2.DescribeIdFormatOutput, error)

DescribeIdFormat mocks base method.

func (*MockEC2API) DescribeIdFormatRequest added in v1.19.0

func (m *MockEC2API) DescribeIdFormatRequest(arg0 *ec2.DescribeIdFormatInput) (*request.Request, *ec2.DescribeIdFormatOutput)

DescribeIdFormatRequest mocks base method.

func (*MockEC2API) DescribeIdFormatWithContext added in v1.19.0

func (m *MockEC2API) DescribeIdFormatWithContext(arg0 context.Context, arg1 *ec2.DescribeIdFormatInput, arg2 ...request.Option) (*ec2.DescribeIdFormatOutput, error)

DescribeIdFormatWithContext mocks base method.

func (*MockEC2API) DescribeIdentityIdFormat added in v1.19.0

DescribeIdentityIdFormat mocks base method.

func (*MockEC2API) DescribeIdentityIdFormatRequest added in v1.19.0

func (m *MockEC2API) DescribeIdentityIdFormatRequest(arg0 *ec2.DescribeIdentityIdFormatInput) (*request.Request, *ec2.DescribeIdentityIdFormatOutput)

DescribeIdentityIdFormatRequest mocks base method.

func (*MockEC2API) DescribeIdentityIdFormatWithContext added in v1.19.0

func (m *MockEC2API) DescribeIdentityIdFormatWithContext(arg0 context.Context, arg1 *ec2.DescribeIdentityIdFormatInput, arg2 ...request.Option) (*ec2.DescribeIdentityIdFormatOutput, error)

DescribeIdentityIdFormatWithContext mocks base method.

func (*MockEC2API) DescribeImageAttribute added in v1.19.0

func (m *MockEC2API) DescribeImageAttribute(arg0 *ec2.DescribeImageAttributeInput) (*ec2.DescribeImageAttributeOutput, error)

DescribeImageAttribute mocks base method.

func (*MockEC2API) DescribeImageAttributeRequest added in v1.19.0

func (m *MockEC2API) DescribeImageAttributeRequest(arg0 *ec2.DescribeImageAttributeInput) (*request.Request, *ec2.DescribeImageAttributeOutput)

DescribeImageAttributeRequest mocks base method.

func (*MockEC2API) DescribeImageAttributeWithContext added in v1.19.0

func (m *MockEC2API) DescribeImageAttributeWithContext(arg0 context.Context, arg1 *ec2.DescribeImageAttributeInput, arg2 ...request.Option) (*ec2.DescribeImageAttributeOutput, error)

DescribeImageAttributeWithContext mocks base method.

func (*MockEC2API) DescribeImages added in v1.19.0

func (m *MockEC2API) DescribeImages(arg0 *ec2.DescribeImagesInput) (*ec2.DescribeImagesOutput, error)

DescribeImages mocks base method.

func (*MockEC2API) DescribeImagesPages added in v1.19.0

func (m *MockEC2API) DescribeImagesPages(arg0 *ec2.DescribeImagesInput, arg1 func(*ec2.DescribeImagesOutput, bool) bool) error

DescribeImagesPages mocks base method.

func (*MockEC2API) DescribeImagesPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeImagesPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeImagesInput, arg2 func(*ec2.DescribeImagesOutput, bool) bool, arg3 ...request.Option) error

DescribeImagesPagesWithContext mocks base method.

func (*MockEC2API) DescribeImagesRequest added in v1.19.0

func (m *MockEC2API) DescribeImagesRequest(arg0 *ec2.DescribeImagesInput) (*request.Request, *ec2.DescribeImagesOutput)

DescribeImagesRequest mocks base method.

func (*MockEC2API) DescribeImagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeImagesWithContext(arg0 context.Context, arg1 *ec2.DescribeImagesInput, arg2 ...request.Option) (*ec2.DescribeImagesOutput, error)

DescribeImagesWithContext mocks base method.

func (*MockEC2API) DescribeImportImageTasks added in v1.19.0

DescribeImportImageTasks mocks base method.

func (*MockEC2API) DescribeImportImageTasksPages added in v1.19.0

func (m *MockEC2API) DescribeImportImageTasksPages(arg0 *ec2.DescribeImportImageTasksInput, arg1 func(*ec2.DescribeImportImageTasksOutput, bool) bool) error

DescribeImportImageTasksPages mocks base method.

func (*MockEC2API) DescribeImportImageTasksPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeImportImageTasksPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeImportImageTasksInput, arg2 func(*ec2.DescribeImportImageTasksOutput, bool) bool, arg3 ...request.Option) error

DescribeImportImageTasksPagesWithContext mocks base method.

func (*MockEC2API) DescribeImportImageTasksRequest added in v1.19.0

func (m *MockEC2API) DescribeImportImageTasksRequest(arg0 *ec2.DescribeImportImageTasksInput) (*request.Request, *ec2.DescribeImportImageTasksOutput)

DescribeImportImageTasksRequest mocks base method.

func (*MockEC2API) DescribeImportImageTasksWithContext added in v1.19.0

func (m *MockEC2API) DescribeImportImageTasksWithContext(arg0 context.Context, arg1 *ec2.DescribeImportImageTasksInput, arg2 ...request.Option) (*ec2.DescribeImportImageTasksOutput, error)

DescribeImportImageTasksWithContext mocks base method.

func (*MockEC2API) DescribeImportSnapshotTasks added in v1.19.0

DescribeImportSnapshotTasks mocks base method.

func (*MockEC2API) DescribeImportSnapshotTasksPages added in v1.19.0

func (m *MockEC2API) DescribeImportSnapshotTasksPages(arg0 *ec2.DescribeImportSnapshotTasksInput, arg1 func(*ec2.DescribeImportSnapshotTasksOutput, bool) bool) error

DescribeImportSnapshotTasksPages mocks base method.

func (*MockEC2API) DescribeImportSnapshotTasksPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeImportSnapshotTasksPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeImportSnapshotTasksInput, arg2 func(*ec2.DescribeImportSnapshotTasksOutput, bool) bool, arg3 ...request.Option) error

DescribeImportSnapshotTasksPagesWithContext mocks base method.

func (*MockEC2API) DescribeImportSnapshotTasksRequest added in v1.19.0

func (m *MockEC2API) DescribeImportSnapshotTasksRequest(arg0 *ec2.DescribeImportSnapshotTasksInput) (*request.Request, *ec2.DescribeImportSnapshotTasksOutput)

DescribeImportSnapshotTasksRequest mocks base method.

func (*MockEC2API) DescribeImportSnapshotTasksWithContext added in v1.19.0

func (m *MockEC2API) DescribeImportSnapshotTasksWithContext(arg0 context.Context, arg1 *ec2.DescribeImportSnapshotTasksInput, arg2 ...request.Option) (*ec2.DescribeImportSnapshotTasksOutput, error)

DescribeImportSnapshotTasksWithContext mocks base method.

func (*MockEC2API) DescribeInstanceAttribute added in v1.19.0

DescribeInstanceAttribute mocks base method.

func (*MockEC2API) DescribeInstanceAttributeRequest added in v1.19.0

func (m *MockEC2API) DescribeInstanceAttributeRequest(arg0 *ec2.DescribeInstanceAttributeInput) (*request.Request, *ec2.DescribeInstanceAttributeOutput)

DescribeInstanceAttributeRequest mocks base method.

func (*MockEC2API) DescribeInstanceAttributeWithContext added in v1.19.0

func (m *MockEC2API) DescribeInstanceAttributeWithContext(arg0 context.Context, arg1 *ec2.DescribeInstanceAttributeInput, arg2 ...request.Option) (*ec2.DescribeInstanceAttributeOutput, error)

DescribeInstanceAttributeWithContext mocks base method.

func (*MockEC2API) DescribeInstanceConnectEndpoints added in v1.20.0

DescribeInstanceConnectEndpoints mocks base method.

func (*MockEC2API) DescribeInstanceConnectEndpointsPages added in v1.20.0

func (m *MockEC2API) DescribeInstanceConnectEndpointsPages(arg0 *ec2.DescribeInstanceConnectEndpointsInput, arg1 func(*ec2.DescribeInstanceConnectEndpointsOutput, bool) bool) error

DescribeInstanceConnectEndpointsPages mocks base method.

func (*MockEC2API) DescribeInstanceConnectEndpointsPagesWithContext added in v1.20.0

func (m *MockEC2API) DescribeInstanceConnectEndpointsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeInstanceConnectEndpointsInput, arg2 func(*ec2.DescribeInstanceConnectEndpointsOutput, bool) bool, arg3 ...request.Option) error

DescribeInstanceConnectEndpointsPagesWithContext mocks base method.

func (*MockEC2API) DescribeInstanceConnectEndpointsRequest added in v1.20.0

func (m *MockEC2API) DescribeInstanceConnectEndpointsRequest(arg0 *ec2.DescribeInstanceConnectEndpointsInput) (*request.Request, *ec2.DescribeInstanceConnectEndpointsOutput)

DescribeInstanceConnectEndpointsRequest mocks base method.

func (*MockEC2API) DescribeInstanceConnectEndpointsWithContext added in v1.20.0

func (m *MockEC2API) DescribeInstanceConnectEndpointsWithContext(arg0 context.Context, arg1 *ec2.DescribeInstanceConnectEndpointsInput, arg2 ...request.Option) (*ec2.DescribeInstanceConnectEndpointsOutput, error)

DescribeInstanceConnectEndpointsWithContext mocks base method.

func (*MockEC2API) DescribeInstanceCreditSpecifications added in v1.19.0

DescribeInstanceCreditSpecifications mocks base method.

func (*MockEC2API) DescribeInstanceCreditSpecificationsPages added in v1.19.0

func (m *MockEC2API) DescribeInstanceCreditSpecificationsPages(arg0 *ec2.DescribeInstanceCreditSpecificationsInput, arg1 func(*ec2.DescribeInstanceCreditSpecificationsOutput, bool) bool) error

DescribeInstanceCreditSpecificationsPages mocks base method.

func (*MockEC2API) DescribeInstanceCreditSpecificationsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeInstanceCreditSpecificationsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeInstanceCreditSpecificationsInput, arg2 func(*ec2.DescribeInstanceCreditSpecificationsOutput, bool) bool, arg3 ...request.Option) error

DescribeInstanceCreditSpecificationsPagesWithContext mocks base method.

func (*MockEC2API) DescribeInstanceCreditSpecificationsRequest added in v1.19.0

DescribeInstanceCreditSpecificationsRequest mocks base method.

func (*MockEC2API) DescribeInstanceCreditSpecificationsWithContext added in v1.19.0

func (m *MockEC2API) DescribeInstanceCreditSpecificationsWithContext(arg0 context.Context, arg1 *ec2.DescribeInstanceCreditSpecificationsInput, arg2 ...request.Option) (*ec2.DescribeInstanceCreditSpecificationsOutput, error)

DescribeInstanceCreditSpecificationsWithContext mocks base method.

func (*MockEC2API) DescribeInstanceEventNotificationAttributes added in v1.19.0

DescribeInstanceEventNotificationAttributes mocks base method.

func (*MockEC2API) DescribeInstanceEventNotificationAttributesRequest added in v1.19.0

DescribeInstanceEventNotificationAttributesRequest mocks base method.

func (*MockEC2API) DescribeInstanceEventNotificationAttributesWithContext added in v1.19.0

func (m *MockEC2API) DescribeInstanceEventNotificationAttributesWithContext(arg0 context.Context, arg1 *ec2.DescribeInstanceEventNotificationAttributesInput, arg2 ...request.Option) (*ec2.DescribeInstanceEventNotificationAttributesOutput, error)

DescribeInstanceEventNotificationAttributesWithContext mocks base method.

func (*MockEC2API) DescribeInstanceEventWindows added in v1.19.0

DescribeInstanceEventWindows mocks base method.

func (*MockEC2API) DescribeInstanceEventWindowsPages added in v1.19.0

func (m *MockEC2API) DescribeInstanceEventWindowsPages(arg0 *ec2.DescribeInstanceEventWindowsInput, arg1 func(*ec2.DescribeInstanceEventWindowsOutput, bool) bool) error

DescribeInstanceEventWindowsPages mocks base method.

func (*MockEC2API) DescribeInstanceEventWindowsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeInstanceEventWindowsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeInstanceEventWindowsInput, arg2 func(*ec2.DescribeInstanceEventWindowsOutput, bool) bool, arg3 ...request.Option) error

DescribeInstanceEventWindowsPagesWithContext mocks base method.

func (*MockEC2API) DescribeInstanceEventWindowsRequest added in v1.19.0

func (m *MockEC2API) DescribeInstanceEventWindowsRequest(arg0 *ec2.DescribeInstanceEventWindowsInput) (*request.Request, *ec2.DescribeInstanceEventWindowsOutput)

DescribeInstanceEventWindowsRequest mocks base method.

func (*MockEC2API) DescribeInstanceEventWindowsWithContext added in v1.19.0

func (m *MockEC2API) DescribeInstanceEventWindowsWithContext(arg0 context.Context, arg1 *ec2.DescribeInstanceEventWindowsInput, arg2 ...request.Option) (*ec2.DescribeInstanceEventWindowsOutput, error)

DescribeInstanceEventWindowsWithContext mocks base method.

func (*MockEC2API) DescribeInstanceStatus added in v1.19.0

func (m *MockEC2API) DescribeInstanceStatus(arg0 *ec2.DescribeInstanceStatusInput) (*ec2.DescribeInstanceStatusOutput, error)

DescribeInstanceStatus mocks base method.

func (*MockEC2API) DescribeInstanceStatusPages added in v1.19.0

func (m *MockEC2API) DescribeInstanceStatusPages(arg0 *ec2.DescribeInstanceStatusInput, arg1 func(*ec2.DescribeInstanceStatusOutput, bool) bool) error

DescribeInstanceStatusPages mocks base method.

func (*MockEC2API) DescribeInstanceStatusPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeInstanceStatusPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeInstanceStatusInput, arg2 func(*ec2.DescribeInstanceStatusOutput, bool) bool, arg3 ...request.Option) error

DescribeInstanceStatusPagesWithContext mocks base method.

func (*MockEC2API) DescribeInstanceStatusRequest added in v1.19.0

func (m *MockEC2API) DescribeInstanceStatusRequest(arg0 *ec2.DescribeInstanceStatusInput) (*request.Request, *ec2.DescribeInstanceStatusOutput)

DescribeInstanceStatusRequest mocks base method.

func (*MockEC2API) DescribeInstanceStatusWithContext added in v1.19.0

func (m *MockEC2API) DescribeInstanceStatusWithContext(arg0 context.Context, arg1 *ec2.DescribeInstanceStatusInput, arg2 ...request.Option) (*ec2.DescribeInstanceStatusOutput, error)

DescribeInstanceStatusWithContext mocks base method.

func (*MockEC2API) DescribeInstanceTypeOfferings added in v1.19.0

DescribeInstanceTypeOfferings mocks base method.

func (*MockEC2API) DescribeInstanceTypeOfferingsPages added in v1.19.0

func (m *MockEC2API) DescribeInstanceTypeOfferingsPages(arg0 *ec2.DescribeInstanceTypeOfferingsInput, arg1 func(*ec2.DescribeInstanceTypeOfferingsOutput, bool) bool) error

DescribeInstanceTypeOfferingsPages mocks base method.

func (*MockEC2API) DescribeInstanceTypeOfferingsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeInstanceTypeOfferingsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeInstanceTypeOfferingsInput, arg2 func(*ec2.DescribeInstanceTypeOfferingsOutput, bool) bool, arg3 ...request.Option) error

DescribeInstanceTypeOfferingsPagesWithContext mocks base method.

func (*MockEC2API) DescribeInstanceTypeOfferingsRequest added in v1.19.0

func (m *MockEC2API) DescribeInstanceTypeOfferingsRequest(arg0 *ec2.DescribeInstanceTypeOfferingsInput) (*request.Request, *ec2.DescribeInstanceTypeOfferingsOutput)

DescribeInstanceTypeOfferingsRequest mocks base method.

func (*MockEC2API) DescribeInstanceTypeOfferingsWithContext added in v1.19.0

func (m *MockEC2API) DescribeInstanceTypeOfferingsWithContext(arg0 context.Context, arg1 *ec2.DescribeInstanceTypeOfferingsInput, arg2 ...request.Option) (*ec2.DescribeInstanceTypeOfferingsOutput, error)

DescribeInstanceTypeOfferingsWithContext mocks base method.

func (*MockEC2API) DescribeInstanceTypes added in v1.19.0

func (m *MockEC2API) DescribeInstanceTypes(arg0 *ec2.DescribeInstanceTypesInput) (*ec2.DescribeInstanceTypesOutput, error)

DescribeInstanceTypes mocks base method.

func (*MockEC2API) DescribeInstanceTypesPages added in v1.19.0

func (m *MockEC2API) DescribeInstanceTypesPages(arg0 *ec2.DescribeInstanceTypesInput, arg1 func(*ec2.DescribeInstanceTypesOutput, bool) bool) error

DescribeInstanceTypesPages mocks base method.

func (*MockEC2API) DescribeInstanceTypesPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeInstanceTypesPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeInstanceTypesInput, arg2 func(*ec2.DescribeInstanceTypesOutput, bool) bool, arg3 ...request.Option) error

DescribeInstanceTypesPagesWithContext mocks base method.

func (*MockEC2API) DescribeInstanceTypesRequest added in v1.19.0

func (m *MockEC2API) DescribeInstanceTypesRequest(arg0 *ec2.DescribeInstanceTypesInput) (*request.Request, *ec2.DescribeInstanceTypesOutput)

DescribeInstanceTypesRequest mocks base method.

func (*MockEC2API) DescribeInstanceTypesWithContext added in v1.19.0

func (m *MockEC2API) DescribeInstanceTypesWithContext(arg0 context.Context, arg1 *ec2.DescribeInstanceTypesInput, arg2 ...request.Option) (*ec2.DescribeInstanceTypesOutput, error)

DescribeInstanceTypesWithContext mocks base method.

func (*MockEC2API) DescribeInstances added in v1.19.0

func (m *MockEC2API) DescribeInstances(arg0 *ec2.DescribeInstancesInput) (*ec2.DescribeInstancesOutput, error)

DescribeInstances mocks base method.

func (*MockEC2API) DescribeInstancesPages added in v1.19.0

func (m *MockEC2API) DescribeInstancesPages(arg0 *ec2.DescribeInstancesInput, arg1 func(*ec2.DescribeInstancesOutput, bool) bool) error

DescribeInstancesPages mocks base method.

func (*MockEC2API) DescribeInstancesPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeInstancesPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeInstancesInput, arg2 func(*ec2.DescribeInstancesOutput, bool) bool, arg3 ...request.Option) error

DescribeInstancesPagesWithContext mocks base method.

func (*MockEC2API) DescribeInstancesRequest added in v1.19.0

func (m *MockEC2API) DescribeInstancesRequest(arg0 *ec2.DescribeInstancesInput) (*request.Request, *ec2.DescribeInstancesOutput)

DescribeInstancesRequest mocks base method.

func (*MockEC2API) DescribeInstancesWithContext added in v1.19.0

func (m *MockEC2API) DescribeInstancesWithContext(arg0 context.Context, arg1 *ec2.DescribeInstancesInput, arg2 ...request.Option) (*ec2.DescribeInstancesOutput, error)

DescribeInstancesWithContext mocks base method.

func (*MockEC2API) DescribeInternetGateways added in v1.19.0

DescribeInternetGateways mocks base method.

func (*MockEC2API) DescribeInternetGatewaysPages added in v1.19.0

func (m *MockEC2API) DescribeInternetGatewaysPages(arg0 *ec2.DescribeInternetGatewaysInput, arg1 func(*ec2.DescribeInternetGatewaysOutput, bool) bool) error

DescribeInternetGatewaysPages mocks base method.

func (*MockEC2API) DescribeInternetGatewaysPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeInternetGatewaysPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeInternetGatewaysInput, arg2 func(*ec2.DescribeInternetGatewaysOutput, bool) bool, arg3 ...request.Option) error

DescribeInternetGatewaysPagesWithContext mocks base method.

func (*MockEC2API) DescribeInternetGatewaysRequest added in v1.19.0

func (m *MockEC2API) DescribeInternetGatewaysRequest(arg0 *ec2.DescribeInternetGatewaysInput) (*request.Request, *ec2.DescribeInternetGatewaysOutput)

DescribeInternetGatewaysRequest mocks base method.

func (*MockEC2API) DescribeInternetGatewaysWithContext added in v1.19.0

func (m *MockEC2API) DescribeInternetGatewaysWithContext(arg0 context.Context, arg1 *ec2.DescribeInternetGatewaysInput, arg2 ...request.Option) (*ec2.DescribeInternetGatewaysOutput, error)

DescribeInternetGatewaysWithContext mocks base method.

func (*MockEC2API) DescribeIpamPools added in v1.19.0

func (m *MockEC2API) DescribeIpamPools(arg0 *ec2.DescribeIpamPoolsInput) (*ec2.DescribeIpamPoolsOutput, error)

DescribeIpamPools mocks base method.

func (*MockEC2API) DescribeIpamPoolsPages added in v1.19.0

func (m *MockEC2API) DescribeIpamPoolsPages(arg0 *ec2.DescribeIpamPoolsInput, arg1 func(*ec2.DescribeIpamPoolsOutput, bool) bool) error

DescribeIpamPoolsPages mocks base method.

func (*MockEC2API) DescribeIpamPoolsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeIpamPoolsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeIpamPoolsInput, arg2 func(*ec2.DescribeIpamPoolsOutput, bool) bool, arg3 ...request.Option) error

DescribeIpamPoolsPagesWithContext mocks base method.

func (*MockEC2API) DescribeIpamPoolsRequest added in v1.19.0

func (m *MockEC2API) DescribeIpamPoolsRequest(arg0 *ec2.DescribeIpamPoolsInput) (*request.Request, *ec2.DescribeIpamPoolsOutput)

DescribeIpamPoolsRequest mocks base method.

func (*MockEC2API) DescribeIpamPoolsWithContext added in v1.19.0

func (m *MockEC2API) DescribeIpamPoolsWithContext(arg0 context.Context, arg1 *ec2.DescribeIpamPoolsInput, arg2 ...request.Option) (*ec2.DescribeIpamPoolsOutput, error)

DescribeIpamPoolsWithContext mocks base method.

func (*MockEC2API) DescribeIpamResourceDiscoveries added in v1.19.0

DescribeIpamResourceDiscoveries mocks base method.

func (*MockEC2API) DescribeIpamResourceDiscoveriesPages added in v1.19.0

func (m *MockEC2API) DescribeIpamResourceDiscoveriesPages(arg0 *ec2.DescribeIpamResourceDiscoveriesInput, arg1 func(*ec2.DescribeIpamResourceDiscoveriesOutput, bool) bool) error

DescribeIpamResourceDiscoveriesPages mocks base method.

func (*MockEC2API) DescribeIpamResourceDiscoveriesPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeIpamResourceDiscoveriesPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeIpamResourceDiscoveriesInput, arg2 func(*ec2.DescribeIpamResourceDiscoveriesOutput, bool) bool, arg3 ...request.Option) error

DescribeIpamResourceDiscoveriesPagesWithContext mocks base method.

func (*MockEC2API) DescribeIpamResourceDiscoveriesRequest added in v1.19.0

func (m *MockEC2API) DescribeIpamResourceDiscoveriesRequest(arg0 *ec2.DescribeIpamResourceDiscoveriesInput) (*request.Request, *ec2.DescribeIpamResourceDiscoveriesOutput)

DescribeIpamResourceDiscoveriesRequest mocks base method.

func (*MockEC2API) DescribeIpamResourceDiscoveriesWithContext added in v1.19.0

func (m *MockEC2API) DescribeIpamResourceDiscoveriesWithContext(arg0 context.Context, arg1 *ec2.DescribeIpamResourceDiscoveriesInput, arg2 ...request.Option) (*ec2.DescribeIpamResourceDiscoveriesOutput, error)

DescribeIpamResourceDiscoveriesWithContext mocks base method.

func (*MockEC2API) DescribeIpamResourceDiscoveryAssociations added in v1.19.0

DescribeIpamResourceDiscoveryAssociations mocks base method.

func (*MockEC2API) DescribeIpamResourceDiscoveryAssociationsPages added in v1.19.0

func (m *MockEC2API) DescribeIpamResourceDiscoveryAssociationsPages(arg0 *ec2.DescribeIpamResourceDiscoveryAssociationsInput, arg1 func(*ec2.DescribeIpamResourceDiscoveryAssociationsOutput, bool) bool) error

DescribeIpamResourceDiscoveryAssociationsPages mocks base method.

func (*MockEC2API) DescribeIpamResourceDiscoveryAssociationsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeIpamResourceDiscoveryAssociationsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeIpamResourceDiscoveryAssociationsInput, arg2 func(*ec2.DescribeIpamResourceDiscoveryAssociationsOutput, bool) bool, arg3 ...request.Option) error

DescribeIpamResourceDiscoveryAssociationsPagesWithContext mocks base method.

func (*MockEC2API) DescribeIpamResourceDiscoveryAssociationsRequest added in v1.19.0

DescribeIpamResourceDiscoveryAssociationsRequest mocks base method.

func (*MockEC2API) DescribeIpamResourceDiscoveryAssociationsWithContext added in v1.19.0

func (m *MockEC2API) DescribeIpamResourceDiscoveryAssociationsWithContext(arg0 context.Context, arg1 *ec2.DescribeIpamResourceDiscoveryAssociationsInput, arg2 ...request.Option) (*ec2.DescribeIpamResourceDiscoveryAssociationsOutput, error)

DescribeIpamResourceDiscoveryAssociationsWithContext mocks base method.

func (*MockEC2API) DescribeIpamScopes added in v1.19.0

func (m *MockEC2API) DescribeIpamScopes(arg0 *ec2.DescribeIpamScopesInput) (*ec2.DescribeIpamScopesOutput, error)

DescribeIpamScopes mocks base method.

func (*MockEC2API) DescribeIpamScopesPages added in v1.19.0

func (m *MockEC2API) DescribeIpamScopesPages(arg0 *ec2.DescribeIpamScopesInput, arg1 func(*ec2.DescribeIpamScopesOutput, bool) bool) error

DescribeIpamScopesPages mocks base method.

func (*MockEC2API) DescribeIpamScopesPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeIpamScopesPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeIpamScopesInput, arg2 func(*ec2.DescribeIpamScopesOutput, bool) bool, arg3 ...request.Option) error

DescribeIpamScopesPagesWithContext mocks base method.

func (*MockEC2API) DescribeIpamScopesRequest added in v1.19.0

func (m *MockEC2API) DescribeIpamScopesRequest(arg0 *ec2.DescribeIpamScopesInput) (*request.Request, *ec2.DescribeIpamScopesOutput)

DescribeIpamScopesRequest mocks base method.

func (*MockEC2API) DescribeIpamScopesWithContext added in v1.19.0

func (m *MockEC2API) DescribeIpamScopesWithContext(arg0 context.Context, arg1 *ec2.DescribeIpamScopesInput, arg2 ...request.Option) (*ec2.DescribeIpamScopesOutput, error)

DescribeIpamScopesWithContext mocks base method.

func (*MockEC2API) DescribeIpams added in v1.19.0

func (m *MockEC2API) DescribeIpams(arg0 *ec2.DescribeIpamsInput) (*ec2.DescribeIpamsOutput, error)

DescribeIpams mocks base method.

func (*MockEC2API) DescribeIpamsPages added in v1.19.0

func (m *MockEC2API) DescribeIpamsPages(arg0 *ec2.DescribeIpamsInput, arg1 func(*ec2.DescribeIpamsOutput, bool) bool) error

DescribeIpamsPages mocks base method.

func (*MockEC2API) DescribeIpamsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeIpamsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeIpamsInput, arg2 func(*ec2.DescribeIpamsOutput, bool) bool, arg3 ...request.Option) error

DescribeIpamsPagesWithContext mocks base method.

func (*MockEC2API) DescribeIpamsRequest added in v1.19.0

func (m *MockEC2API) DescribeIpamsRequest(arg0 *ec2.DescribeIpamsInput) (*request.Request, *ec2.DescribeIpamsOutput)

DescribeIpamsRequest mocks base method.

func (*MockEC2API) DescribeIpamsWithContext added in v1.19.0

func (m *MockEC2API) DescribeIpamsWithContext(arg0 context.Context, arg1 *ec2.DescribeIpamsInput, arg2 ...request.Option) (*ec2.DescribeIpamsOutput, error)

DescribeIpamsWithContext mocks base method.

func (*MockEC2API) DescribeIpv6Pools added in v1.19.0

func (m *MockEC2API) DescribeIpv6Pools(arg0 *ec2.DescribeIpv6PoolsInput) (*ec2.DescribeIpv6PoolsOutput, error)

DescribeIpv6Pools mocks base method.

func (*MockEC2API) DescribeIpv6PoolsPages added in v1.19.0

func (m *MockEC2API) DescribeIpv6PoolsPages(arg0 *ec2.DescribeIpv6PoolsInput, arg1 func(*ec2.DescribeIpv6PoolsOutput, bool) bool) error

DescribeIpv6PoolsPages mocks base method.

func (*MockEC2API) DescribeIpv6PoolsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeIpv6PoolsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeIpv6PoolsInput, arg2 func(*ec2.DescribeIpv6PoolsOutput, bool) bool, arg3 ...request.Option) error

DescribeIpv6PoolsPagesWithContext mocks base method.

func (*MockEC2API) DescribeIpv6PoolsRequest added in v1.19.0

func (m *MockEC2API) DescribeIpv6PoolsRequest(arg0 *ec2.DescribeIpv6PoolsInput) (*request.Request, *ec2.DescribeIpv6PoolsOutput)

DescribeIpv6PoolsRequest mocks base method.

func (*MockEC2API) DescribeIpv6PoolsWithContext added in v1.19.0

func (m *MockEC2API) DescribeIpv6PoolsWithContext(arg0 context.Context, arg1 *ec2.DescribeIpv6PoolsInput, arg2 ...request.Option) (*ec2.DescribeIpv6PoolsOutput, error)

DescribeIpv6PoolsWithContext mocks base method.

func (*MockEC2API) DescribeKeyPairs added in v1.19.0

func (m *MockEC2API) DescribeKeyPairs(arg0 *ec2.DescribeKeyPairsInput) (*ec2.DescribeKeyPairsOutput, error)

DescribeKeyPairs mocks base method.

func (*MockEC2API) DescribeKeyPairsRequest added in v1.19.0

func (m *MockEC2API) DescribeKeyPairsRequest(arg0 *ec2.DescribeKeyPairsInput) (*request.Request, *ec2.DescribeKeyPairsOutput)

DescribeKeyPairsRequest mocks base method.

func (*MockEC2API) DescribeKeyPairsWithContext added in v1.19.0

func (m *MockEC2API) DescribeKeyPairsWithContext(arg0 context.Context, arg1 *ec2.DescribeKeyPairsInput, arg2 ...request.Option) (*ec2.DescribeKeyPairsOutput, error)

DescribeKeyPairsWithContext mocks base method.

func (*MockEC2API) DescribeLaunchTemplateVersions added in v1.19.0

DescribeLaunchTemplateVersions mocks base method.

func (*MockEC2API) DescribeLaunchTemplateVersionsPages added in v1.19.0

func (m *MockEC2API) DescribeLaunchTemplateVersionsPages(arg0 *ec2.DescribeLaunchTemplateVersionsInput, arg1 func(*ec2.DescribeLaunchTemplateVersionsOutput, bool) bool) error

DescribeLaunchTemplateVersionsPages mocks base method.

func (*MockEC2API) DescribeLaunchTemplateVersionsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeLaunchTemplateVersionsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeLaunchTemplateVersionsInput, arg2 func(*ec2.DescribeLaunchTemplateVersionsOutput, bool) bool, arg3 ...request.Option) error

DescribeLaunchTemplateVersionsPagesWithContext mocks base method.

func (*MockEC2API) DescribeLaunchTemplateVersionsRequest added in v1.19.0

func (m *MockEC2API) DescribeLaunchTemplateVersionsRequest(arg0 *ec2.DescribeLaunchTemplateVersionsInput) (*request.Request, *ec2.DescribeLaunchTemplateVersionsOutput)

DescribeLaunchTemplateVersionsRequest mocks base method.

func (*MockEC2API) DescribeLaunchTemplateVersionsWithContext added in v1.19.0

func (m *MockEC2API) DescribeLaunchTemplateVersionsWithContext(arg0 context.Context, arg1 *ec2.DescribeLaunchTemplateVersionsInput, arg2 ...request.Option) (*ec2.DescribeLaunchTemplateVersionsOutput, error)

DescribeLaunchTemplateVersionsWithContext mocks base method.

func (*MockEC2API) DescribeLaunchTemplates added in v1.19.0

func (m *MockEC2API) DescribeLaunchTemplates(arg0 *ec2.DescribeLaunchTemplatesInput) (*ec2.DescribeLaunchTemplatesOutput, error)

DescribeLaunchTemplates mocks base method.

func (*MockEC2API) DescribeLaunchTemplatesPages added in v1.19.0

func (m *MockEC2API) DescribeLaunchTemplatesPages(arg0 *ec2.DescribeLaunchTemplatesInput, arg1 func(*ec2.DescribeLaunchTemplatesOutput, bool) bool) error

DescribeLaunchTemplatesPages mocks base method.

func (*MockEC2API) DescribeLaunchTemplatesPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeLaunchTemplatesPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeLaunchTemplatesInput, arg2 func(*ec2.DescribeLaunchTemplatesOutput, bool) bool, arg3 ...request.Option) error

DescribeLaunchTemplatesPagesWithContext mocks base method.

func (*MockEC2API) DescribeLaunchTemplatesRequest added in v1.19.0

func (m *MockEC2API) DescribeLaunchTemplatesRequest(arg0 *ec2.DescribeLaunchTemplatesInput) (*request.Request, *ec2.DescribeLaunchTemplatesOutput)

DescribeLaunchTemplatesRequest mocks base method.

func (*MockEC2API) DescribeLaunchTemplatesWithContext added in v1.19.0

func (m *MockEC2API) DescribeLaunchTemplatesWithContext(arg0 context.Context, arg1 *ec2.DescribeLaunchTemplatesInput, arg2 ...request.Option) (*ec2.DescribeLaunchTemplatesOutput, error)

DescribeLaunchTemplatesWithContext mocks base method.

func (*MockEC2API) DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociations added in v1.19.0

DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociations mocks base method.

func (*MockEC2API) DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsPages added in v1.19.0

DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsPages mocks base method.

func (*MockEC2API) DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsInput, arg2 func(*ec2.DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsOutput, bool) bool, arg3 ...request.Option) error

DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsPagesWithContext mocks base method.

func (*MockEC2API) DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsRequest added in v1.19.0

DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsRequest mocks base method.

func (*MockEC2API) DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsWithContext added in v1.19.0

DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsWithContext mocks base method.

func (*MockEC2API) DescribeLocalGatewayRouteTableVpcAssociations added in v1.19.0

DescribeLocalGatewayRouteTableVpcAssociations mocks base method.

func (*MockEC2API) DescribeLocalGatewayRouteTableVpcAssociationsPages added in v1.19.0

func (m *MockEC2API) DescribeLocalGatewayRouteTableVpcAssociationsPages(arg0 *ec2.DescribeLocalGatewayRouteTableVpcAssociationsInput, arg1 func(*ec2.DescribeLocalGatewayRouteTableVpcAssociationsOutput, bool) bool) error

DescribeLocalGatewayRouteTableVpcAssociationsPages mocks base method.

func (*MockEC2API) DescribeLocalGatewayRouteTableVpcAssociationsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeLocalGatewayRouteTableVpcAssociationsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeLocalGatewayRouteTableVpcAssociationsInput, arg2 func(*ec2.DescribeLocalGatewayRouteTableVpcAssociationsOutput, bool) bool, arg3 ...request.Option) error

DescribeLocalGatewayRouteTableVpcAssociationsPagesWithContext mocks base method.

func (*MockEC2API) DescribeLocalGatewayRouteTableVpcAssociationsRequest added in v1.19.0

DescribeLocalGatewayRouteTableVpcAssociationsRequest mocks base method.

func (*MockEC2API) DescribeLocalGatewayRouteTableVpcAssociationsWithContext added in v1.19.0

func (m *MockEC2API) DescribeLocalGatewayRouteTableVpcAssociationsWithContext(arg0 context.Context, arg1 *ec2.DescribeLocalGatewayRouteTableVpcAssociationsInput, arg2 ...request.Option) (*ec2.DescribeLocalGatewayRouteTableVpcAssociationsOutput, error)

DescribeLocalGatewayRouteTableVpcAssociationsWithContext mocks base method.

func (*MockEC2API) DescribeLocalGatewayRouteTables added in v1.19.0

DescribeLocalGatewayRouteTables mocks base method.

func (*MockEC2API) DescribeLocalGatewayRouteTablesPages added in v1.19.0

func (m *MockEC2API) DescribeLocalGatewayRouteTablesPages(arg0 *ec2.DescribeLocalGatewayRouteTablesInput, arg1 func(*ec2.DescribeLocalGatewayRouteTablesOutput, bool) bool) error

DescribeLocalGatewayRouteTablesPages mocks base method.

func (*MockEC2API) DescribeLocalGatewayRouteTablesPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeLocalGatewayRouteTablesPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeLocalGatewayRouteTablesInput, arg2 func(*ec2.DescribeLocalGatewayRouteTablesOutput, bool) bool, arg3 ...request.Option) error

DescribeLocalGatewayRouteTablesPagesWithContext mocks base method.

func (*MockEC2API) DescribeLocalGatewayRouteTablesRequest added in v1.19.0

func (m *MockEC2API) DescribeLocalGatewayRouteTablesRequest(arg0 *ec2.DescribeLocalGatewayRouteTablesInput) (*request.Request, *ec2.DescribeLocalGatewayRouteTablesOutput)

DescribeLocalGatewayRouteTablesRequest mocks base method.

func (*MockEC2API) DescribeLocalGatewayRouteTablesWithContext added in v1.19.0

func (m *MockEC2API) DescribeLocalGatewayRouteTablesWithContext(arg0 context.Context, arg1 *ec2.DescribeLocalGatewayRouteTablesInput, arg2 ...request.Option) (*ec2.DescribeLocalGatewayRouteTablesOutput, error)

DescribeLocalGatewayRouteTablesWithContext mocks base method.

func (*MockEC2API) DescribeLocalGatewayVirtualInterfaceGroups added in v1.19.0

DescribeLocalGatewayVirtualInterfaceGroups mocks base method.

func (*MockEC2API) DescribeLocalGatewayVirtualInterfaceGroupsPages added in v1.19.0

func (m *MockEC2API) DescribeLocalGatewayVirtualInterfaceGroupsPages(arg0 *ec2.DescribeLocalGatewayVirtualInterfaceGroupsInput, arg1 func(*ec2.DescribeLocalGatewayVirtualInterfaceGroupsOutput, bool) bool) error

DescribeLocalGatewayVirtualInterfaceGroupsPages mocks base method.

func (*MockEC2API) DescribeLocalGatewayVirtualInterfaceGroupsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeLocalGatewayVirtualInterfaceGroupsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeLocalGatewayVirtualInterfaceGroupsInput, arg2 func(*ec2.DescribeLocalGatewayVirtualInterfaceGroupsOutput, bool) bool, arg3 ...request.Option) error

DescribeLocalGatewayVirtualInterfaceGroupsPagesWithContext mocks base method.

func (*MockEC2API) DescribeLocalGatewayVirtualInterfaceGroupsRequest added in v1.19.0

DescribeLocalGatewayVirtualInterfaceGroupsRequest mocks base method.

func (*MockEC2API) DescribeLocalGatewayVirtualInterfaceGroupsWithContext added in v1.19.0

func (m *MockEC2API) DescribeLocalGatewayVirtualInterfaceGroupsWithContext(arg0 context.Context, arg1 *ec2.DescribeLocalGatewayVirtualInterfaceGroupsInput, arg2 ...request.Option) (*ec2.DescribeLocalGatewayVirtualInterfaceGroupsOutput, error)

DescribeLocalGatewayVirtualInterfaceGroupsWithContext mocks base method.

func (*MockEC2API) DescribeLocalGatewayVirtualInterfaces added in v1.19.0

DescribeLocalGatewayVirtualInterfaces mocks base method.

func (*MockEC2API) DescribeLocalGatewayVirtualInterfacesPages added in v1.19.0

func (m *MockEC2API) DescribeLocalGatewayVirtualInterfacesPages(arg0 *ec2.DescribeLocalGatewayVirtualInterfacesInput, arg1 func(*ec2.DescribeLocalGatewayVirtualInterfacesOutput, bool) bool) error

DescribeLocalGatewayVirtualInterfacesPages mocks base method.

func (*MockEC2API) DescribeLocalGatewayVirtualInterfacesPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeLocalGatewayVirtualInterfacesPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeLocalGatewayVirtualInterfacesInput, arg2 func(*ec2.DescribeLocalGatewayVirtualInterfacesOutput, bool) bool, arg3 ...request.Option) error

DescribeLocalGatewayVirtualInterfacesPagesWithContext mocks base method.

func (*MockEC2API) DescribeLocalGatewayVirtualInterfacesRequest added in v1.19.0

DescribeLocalGatewayVirtualInterfacesRequest mocks base method.

func (*MockEC2API) DescribeLocalGatewayVirtualInterfacesWithContext added in v1.19.0

func (m *MockEC2API) DescribeLocalGatewayVirtualInterfacesWithContext(arg0 context.Context, arg1 *ec2.DescribeLocalGatewayVirtualInterfacesInput, arg2 ...request.Option) (*ec2.DescribeLocalGatewayVirtualInterfacesOutput, error)

DescribeLocalGatewayVirtualInterfacesWithContext mocks base method.

func (*MockEC2API) DescribeLocalGateways added in v1.19.0

func (m *MockEC2API) DescribeLocalGateways(arg0 *ec2.DescribeLocalGatewaysInput) (*ec2.DescribeLocalGatewaysOutput, error)

DescribeLocalGateways mocks base method.

func (*MockEC2API) DescribeLocalGatewaysPages added in v1.19.0

func (m *MockEC2API) DescribeLocalGatewaysPages(arg0 *ec2.DescribeLocalGatewaysInput, arg1 func(*ec2.DescribeLocalGatewaysOutput, bool) bool) error

DescribeLocalGatewaysPages mocks base method.

func (*MockEC2API) DescribeLocalGatewaysPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeLocalGatewaysPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeLocalGatewaysInput, arg2 func(*ec2.DescribeLocalGatewaysOutput, bool) bool, arg3 ...request.Option) error

DescribeLocalGatewaysPagesWithContext mocks base method.

func (*MockEC2API) DescribeLocalGatewaysRequest added in v1.19.0

func (m *MockEC2API) DescribeLocalGatewaysRequest(arg0 *ec2.DescribeLocalGatewaysInput) (*request.Request, *ec2.DescribeLocalGatewaysOutput)

DescribeLocalGatewaysRequest mocks base method.

func (*MockEC2API) DescribeLocalGatewaysWithContext added in v1.19.0

func (m *MockEC2API) DescribeLocalGatewaysWithContext(arg0 context.Context, arg1 *ec2.DescribeLocalGatewaysInput, arg2 ...request.Option) (*ec2.DescribeLocalGatewaysOutput, error)

DescribeLocalGatewaysWithContext mocks base method.

func (*MockEC2API) DescribeManagedPrefixLists added in v1.19.0

DescribeManagedPrefixLists mocks base method.

func (*MockEC2API) DescribeManagedPrefixListsPages added in v1.19.0

func (m *MockEC2API) DescribeManagedPrefixListsPages(arg0 *ec2.DescribeManagedPrefixListsInput, arg1 func(*ec2.DescribeManagedPrefixListsOutput, bool) bool) error

DescribeManagedPrefixListsPages mocks base method.

func (*MockEC2API) DescribeManagedPrefixListsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeManagedPrefixListsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeManagedPrefixListsInput, arg2 func(*ec2.DescribeManagedPrefixListsOutput, bool) bool, arg3 ...request.Option) error

DescribeManagedPrefixListsPagesWithContext mocks base method.

func (*MockEC2API) DescribeManagedPrefixListsRequest added in v1.19.0

func (m *MockEC2API) DescribeManagedPrefixListsRequest(arg0 *ec2.DescribeManagedPrefixListsInput) (*request.Request, *ec2.DescribeManagedPrefixListsOutput)

DescribeManagedPrefixListsRequest mocks base method.

func (*MockEC2API) DescribeManagedPrefixListsWithContext added in v1.19.0

func (m *MockEC2API) DescribeManagedPrefixListsWithContext(arg0 context.Context, arg1 *ec2.DescribeManagedPrefixListsInput, arg2 ...request.Option) (*ec2.DescribeManagedPrefixListsOutput, error)

DescribeManagedPrefixListsWithContext mocks base method.

func (*MockEC2API) DescribeMovingAddresses added in v1.19.0

func (m *MockEC2API) DescribeMovingAddresses(arg0 *ec2.DescribeMovingAddressesInput) (*ec2.DescribeMovingAddressesOutput, error)

DescribeMovingAddresses mocks base method.

func (*MockEC2API) DescribeMovingAddressesPages added in v1.19.0

func (m *MockEC2API) DescribeMovingAddressesPages(arg0 *ec2.DescribeMovingAddressesInput, arg1 func(*ec2.DescribeMovingAddressesOutput, bool) bool) error

DescribeMovingAddressesPages mocks base method.

func (*MockEC2API) DescribeMovingAddressesPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeMovingAddressesPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeMovingAddressesInput, arg2 func(*ec2.DescribeMovingAddressesOutput, bool) bool, arg3 ...request.Option) error

DescribeMovingAddressesPagesWithContext mocks base method.

func (*MockEC2API) DescribeMovingAddressesRequest added in v1.19.0

func (m *MockEC2API) DescribeMovingAddressesRequest(arg0 *ec2.DescribeMovingAddressesInput) (*request.Request, *ec2.DescribeMovingAddressesOutput)

DescribeMovingAddressesRequest mocks base method.

func (*MockEC2API) DescribeMovingAddressesWithContext added in v1.19.0

func (m *MockEC2API) DescribeMovingAddressesWithContext(arg0 context.Context, arg1 *ec2.DescribeMovingAddressesInput, arg2 ...request.Option) (*ec2.DescribeMovingAddressesOutput, error)

DescribeMovingAddressesWithContext mocks base method.

func (*MockEC2API) DescribeNatGateways added in v1.19.0

func (m *MockEC2API) DescribeNatGateways(arg0 *ec2.DescribeNatGatewaysInput) (*ec2.DescribeNatGatewaysOutput, error)

DescribeNatGateways mocks base method.

func (*MockEC2API) DescribeNatGatewaysPages added in v1.19.0

func (m *MockEC2API) DescribeNatGatewaysPages(arg0 *ec2.DescribeNatGatewaysInput, arg1 func(*ec2.DescribeNatGatewaysOutput, bool) bool) error

DescribeNatGatewaysPages mocks base method.

func (*MockEC2API) DescribeNatGatewaysPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeNatGatewaysPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeNatGatewaysInput, arg2 func(*ec2.DescribeNatGatewaysOutput, bool) bool, arg3 ...request.Option) error

DescribeNatGatewaysPagesWithContext mocks base method.

func (*MockEC2API) DescribeNatGatewaysRequest added in v1.19.0

func (m *MockEC2API) DescribeNatGatewaysRequest(arg0 *ec2.DescribeNatGatewaysInput) (*request.Request, *ec2.DescribeNatGatewaysOutput)

DescribeNatGatewaysRequest mocks base method.

func (*MockEC2API) DescribeNatGatewaysWithContext added in v1.19.0

func (m *MockEC2API) DescribeNatGatewaysWithContext(arg0 context.Context, arg1 *ec2.DescribeNatGatewaysInput, arg2 ...request.Option) (*ec2.DescribeNatGatewaysOutput, error)

DescribeNatGatewaysWithContext mocks base method.

func (*MockEC2API) DescribeNetworkAcls added in v1.19.0

func (m *MockEC2API) DescribeNetworkAcls(arg0 *ec2.DescribeNetworkAclsInput) (*ec2.DescribeNetworkAclsOutput, error)

DescribeNetworkAcls mocks base method.

func (*MockEC2API) DescribeNetworkAclsPages added in v1.19.0

func (m *MockEC2API) DescribeNetworkAclsPages(arg0 *ec2.DescribeNetworkAclsInput, arg1 func(*ec2.DescribeNetworkAclsOutput, bool) bool) error

DescribeNetworkAclsPages mocks base method.

func (*MockEC2API) DescribeNetworkAclsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeNetworkAclsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeNetworkAclsInput, arg2 func(*ec2.DescribeNetworkAclsOutput, bool) bool, arg3 ...request.Option) error

DescribeNetworkAclsPagesWithContext mocks base method.

func (*MockEC2API) DescribeNetworkAclsRequest added in v1.19.0

func (m *MockEC2API) DescribeNetworkAclsRequest(arg0 *ec2.DescribeNetworkAclsInput) (*request.Request, *ec2.DescribeNetworkAclsOutput)

DescribeNetworkAclsRequest mocks base method.

func (*MockEC2API) DescribeNetworkAclsWithContext added in v1.19.0

func (m *MockEC2API) DescribeNetworkAclsWithContext(arg0 context.Context, arg1 *ec2.DescribeNetworkAclsInput, arg2 ...request.Option) (*ec2.DescribeNetworkAclsOutput, error)

DescribeNetworkAclsWithContext mocks base method.

func (*MockEC2API) DescribeNetworkInsightsAccessScopeAnalyses added in v1.19.0

DescribeNetworkInsightsAccessScopeAnalyses mocks base method.

func (*MockEC2API) DescribeNetworkInsightsAccessScopeAnalysesPages added in v1.19.0

func (m *MockEC2API) DescribeNetworkInsightsAccessScopeAnalysesPages(arg0 *ec2.DescribeNetworkInsightsAccessScopeAnalysesInput, arg1 func(*ec2.DescribeNetworkInsightsAccessScopeAnalysesOutput, bool) bool) error

DescribeNetworkInsightsAccessScopeAnalysesPages mocks base method.

func (*MockEC2API) DescribeNetworkInsightsAccessScopeAnalysesPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeNetworkInsightsAccessScopeAnalysesPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeNetworkInsightsAccessScopeAnalysesInput, arg2 func(*ec2.DescribeNetworkInsightsAccessScopeAnalysesOutput, bool) bool, arg3 ...request.Option) error

DescribeNetworkInsightsAccessScopeAnalysesPagesWithContext mocks base method.

func (*MockEC2API) DescribeNetworkInsightsAccessScopeAnalysesRequest added in v1.19.0

DescribeNetworkInsightsAccessScopeAnalysesRequest mocks base method.

func (*MockEC2API) DescribeNetworkInsightsAccessScopeAnalysesWithContext added in v1.19.0

func (m *MockEC2API) DescribeNetworkInsightsAccessScopeAnalysesWithContext(arg0 context.Context, arg1 *ec2.DescribeNetworkInsightsAccessScopeAnalysesInput, arg2 ...request.Option) (*ec2.DescribeNetworkInsightsAccessScopeAnalysesOutput, error)

DescribeNetworkInsightsAccessScopeAnalysesWithContext mocks base method.

func (*MockEC2API) DescribeNetworkInsightsAccessScopes added in v1.19.0

DescribeNetworkInsightsAccessScopes mocks base method.

func (*MockEC2API) DescribeNetworkInsightsAccessScopesPages added in v1.19.0

func (m *MockEC2API) DescribeNetworkInsightsAccessScopesPages(arg0 *ec2.DescribeNetworkInsightsAccessScopesInput, arg1 func(*ec2.DescribeNetworkInsightsAccessScopesOutput, bool) bool) error

DescribeNetworkInsightsAccessScopesPages mocks base method.

func (*MockEC2API) DescribeNetworkInsightsAccessScopesPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeNetworkInsightsAccessScopesPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeNetworkInsightsAccessScopesInput, arg2 func(*ec2.DescribeNetworkInsightsAccessScopesOutput, bool) bool, arg3 ...request.Option) error

DescribeNetworkInsightsAccessScopesPagesWithContext mocks base method.

func (*MockEC2API) DescribeNetworkInsightsAccessScopesRequest added in v1.19.0

DescribeNetworkInsightsAccessScopesRequest mocks base method.

func (*MockEC2API) DescribeNetworkInsightsAccessScopesWithContext added in v1.19.0

func (m *MockEC2API) DescribeNetworkInsightsAccessScopesWithContext(arg0 context.Context, arg1 *ec2.DescribeNetworkInsightsAccessScopesInput, arg2 ...request.Option) (*ec2.DescribeNetworkInsightsAccessScopesOutput, error)

DescribeNetworkInsightsAccessScopesWithContext mocks base method.

func (*MockEC2API) DescribeNetworkInsightsAnalyses added in v1.19.0

DescribeNetworkInsightsAnalyses mocks base method.

func (*MockEC2API) DescribeNetworkInsightsAnalysesPages added in v1.19.0

func (m *MockEC2API) DescribeNetworkInsightsAnalysesPages(arg0 *ec2.DescribeNetworkInsightsAnalysesInput, arg1 func(*ec2.DescribeNetworkInsightsAnalysesOutput, bool) bool) error

DescribeNetworkInsightsAnalysesPages mocks base method.

func (*MockEC2API) DescribeNetworkInsightsAnalysesPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeNetworkInsightsAnalysesPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeNetworkInsightsAnalysesInput, arg2 func(*ec2.DescribeNetworkInsightsAnalysesOutput, bool) bool, arg3 ...request.Option) error

DescribeNetworkInsightsAnalysesPagesWithContext mocks base method.

func (*MockEC2API) DescribeNetworkInsightsAnalysesRequest added in v1.19.0

func (m *MockEC2API) DescribeNetworkInsightsAnalysesRequest(arg0 *ec2.DescribeNetworkInsightsAnalysesInput) (*request.Request, *ec2.DescribeNetworkInsightsAnalysesOutput)

DescribeNetworkInsightsAnalysesRequest mocks base method.

func (*MockEC2API) DescribeNetworkInsightsAnalysesWithContext added in v1.19.0

func (m *MockEC2API) DescribeNetworkInsightsAnalysesWithContext(arg0 context.Context, arg1 *ec2.DescribeNetworkInsightsAnalysesInput, arg2 ...request.Option) (*ec2.DescribeNetworkInsightsAnalysesOutput, error)

DescribeNetworkInsightsAnalysesWithContext mocks base method.

func (*MockEC2API) DescribeNetworkInsightsPaths added in v1.19.0

DescribeNetworkInsightsPaths mocks base method.

func (*MockEC2API) DescribeNetworkInsightsPathsPages added in v1.19.0

func (m *MockEC2API) DescribeNetworkInsightsPathsPages(arg0 *ec2.DescribeNetworkInsightsPathsInput, arg1 func(*ec2.DescribeNetworkInsightsPathsOutput, bool) bool) error

DescribeNetworkInsightsPathsPages mocks base method.

func (*MockEC2API) DescribeNetworkInsightsPathsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeNetworkInsightsPathsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeNetworkInsightsPathsInput, arg2 func(*ec2.DescribeNetworkInsightsPathsOutput, bool) bool, arg3 ...request.Option) error

DescribeNetworkInsightsPathsPagesWithContext mocks base method.

func (*MockEC2API) DescribeNetworkInsightsPathsRequest added in v1.19.0

func (m *MockEC2API) DescribeNetworkInsightsPathsRequest(arg0 *ec2.DescribeNetworkInsightsPathsInput) (*request.Request, *ec2.DescribeNetworkInsightsPathsOutput)

DescribeNetworkInsightsPathsRequest mocks base method.

func (*MockEC2API) DescribeNetworkInsightsPathsWithContext added in v1.19.0

func (m *MockEC2API) DescribeNetworkInsightsPathsWithContext(arg0 context.Context, arg1 *ec2.DescribeNetworkInsightsPathsInput, arg2 ...request.Option) (*ec2.DescribeNetworkInsightsPathsOutput, error)

DescribeNetworkInsightsPathsWithContext mocks base method.

func (*MockEC2API) DescribeNetworkInterfaceAttribute added in v1.19.0

DescribeNetworkInterfaceAttribute mocks base method.

func (*MockEC2API) DescribeNetworkInterfaceAttributeRequest added in v1.19.0

DescribeNetworkInterfaceAttributeRequest mocks base method.

func (*MockEC2API) DescribeNetworkInterfaceAttributeWithContext added in v1.19.0

func (m *MockEC2API) DescribeNetworkInterfaceAttributeWithContext(arg0 context.Context, arg1 *ec2.DescribeNetworkInterfaceAttributeInput, arg2 ...request.Option) (*ec2.DescribeNetworkInterfaceAttributeOutput, error)

DescribeNetworkInterfaceAttributeWithContext mocks base method.

func (*MockEC2API) DescribeNetworkInterfacePermissions added in v1.19.0

DescribeNetworkInterfacePermissions mocks base method.

func (*MockEC2API) DescribeNetworkInterfacePermissionsPages added in v1.19.0

func (m *MockEC2API) DescribeNetworkInterfacePermissionsPages(arg0 *ec2.DescribeNetworkInterfacePermissionsInput, arg1 func(*ec2.DescribeNetworkInterfacePermissionsOutput, bool) bool) error

DescribeNetworkInterfacePermissionsPages mocks base method.

func (*MockEC2API) DescribeNetworkInterfacePermissionsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeNetworkInterfacePermissionsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeNetworkInterfacePermissionsInput, arg2 func(*ec2.DescribeNetworkInterfacePermissionsOutput, bool) bool, arg3 ...request.Option) error

DescribeNetworkInterfacePermissionsPagesWithContext mocks base method.

func (*MockEC2API) DescribeNetworkInterfacePermissionsRequest added in v1.19.0

DescribeNetworkInterfacePermissionsRequest mocks base method.

func (*MockEC2API) DescribeNetworkInterfacePermissionsWithContext added in v1.19.0

func (m *MockEC2API) DescribeNetworkInterfacePermissionsWithContext(arg0 context.Context, arg1 *ec2.DescribeNetworkInterfacePermissionsInput, arg2 ...request.Option) (*ec2.DescribeNetworkInterfacePermissionsOutput, error)

DescribeNetworkInterfacePermissionsWithContext mocks base method.

func (*MockEC2API) DescribeNetworkInterfaces added in v1.19.0

DescribeNetworkInterfaces mocks base method.

func (*MockEC2API) DescribeNetworkInterfacesPages added in v1.19.0

func (m *MockEC2API) DescribeNetworkInterfacesPages(arg0 *ec2.DescribeNetworkInterfacesInput, arg1 func(*ec2.DescribeNetworkInterfacesOutput, bool) bool) error

DescribeNetworkInterfacesPages mocks base method.

func (*MockEC2API) DescribeNetworkInterfacesPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeNetworkInterfacesPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeNetworkInterfacesInput, arg2 func(*ec2.DescribeNetworkInterfacesOutput, bool) bool, arg3 ...request.Option) error

DescribeNetworkInterfacesPagesWithContext mocks base method.

func (*MockEC2API) DescribeNetworkInterfacesRequest added in v1.19.0

func (m *MockEC2API) DescribeNetworkInterfacesRequest(arg0 *ec2.DescribeNetworkInterfacesInput) (*request.Request, *ec2.DescribeNetworkInterfacesOutput)

DescribeNetworkInterfacesRequest mocks base method.

func (*MockEC2API) DescribeNetworkInterfacesWithContext added in v1.19.0

func (m *MockEC2API) DescribeNetworkInterfacesWithContext(arg0 context.Context, arg1 *ec2.DescribeNetworkInterfacesInput, arg2 ...request.Option) (*ec2.DescribeNetworkInterfacesOutput, error)

DescribeNetworkInterfacesWithContext mocks base method.

func (*MockEC2API) DescribePlacementGroups added in v1.19.0

func (m *MockEC2API) DescribePlacementGroups(arg0 *ec2.DescribePlacementGroupsInput) (*ec2.DescribePlacementGroupsOutput, error)

DescribePlacementGroups mocks base method.

func (*MockEC2API) DescribePlacementGroupsRequest added in v1.19.0

func (m *MockEC2API) DescribePlacementGroupsRequest(arg0 *ec2.DescribePlacementGroupsInput) (*request.Request, *ec2.DescribePlacementGroupsOutput)

DescribePlacementGroupsRequest mocks base method.

func (*MockEC2API) DescribePlacementGroupsWithContext added in v1.19.0

func (m *MockEC2API) DescribePlacementGroupsWithContext(arg0 context.Context, arg1 *ec2.DescribePlacementGroupsInput, arg2 ...request.Option) (*ec2.DescribePlacementGroupsOutput, error)

DescribePlacementGroupsWithContext mocks base method.

func (*MockEC2API) DescribePrefixLists added in v1.19.0

func (m *MockEC2API) DescribePrefixLists(arg0 *ec2.DescribePrefixListsInput) (*ec2.DescribePrefixListsOutput, error)

DescribePrefixLists mocks base method.

func (*MockEC2API) DescribePrefixListsPages added in v1.19.0

func (m *MockEC2API) DescribePrefixListsPages(arg0 *ec2.DescribePrefixListsInput, arg1 func(*ec2.DescribePrefixListsOutput, bool) bool) error

DescribePrefixListsPages mocks base method.

func (*MockEC2API) DescribePrefixListsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribePrefixListsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribePrefixListsInput, arg2 func(*ec2.DescribePrefixListsOutput, bool) bool, arg3 ...request.Option) error

DescribePrefixListsPagesWithContext mocks base method.

func (*MockEC2API) DescribePrefixListsRequest added in v1.19.0

func (m *MockEC2API) DescribePrefixListsRequest(arg0 *ec2.DescribePrefixListsInput) (*request.Request, *ec2.DescribePrefixListsOutput)

DescribePrefixListsRequest mocks base method.

func (*MockEC2API) DescribePrefixListsWithContext added in v1.19.0

func (m *MockEC2API) DescribePrefixListsWithContext(arg0 context.Context, arg1 *ec2.DescribePrefixListsInput, arg2 ...request.Option) (*ec2.DescribePrefixListsOutput, error)

DescribePrefixListsWithContext mocks base method.

func (*MockEC2API) DescribePrincipalIdFormat added in v1.19.0

DescribePrincipalIdFormat mocks base method.

func (*MockEC2API) DescribePrincipalIdFormatPages added in v1.19.0

func (m *MockEC2API) DescribePrincipalIdFormatPages(arg0 *ec2.DescribePrincipalIdFormatInput, arg1 func(*ec2.DescribePrincipalIdFormatOutput, bool) bool) error

DescribePrincipalIdFormatPages mocks base method.

func (*MockEC2API) DescribePrincipalIdFormatPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribePrincipalIdFormatPagesWithContext(arg0 context.Context, arg1 *ec2.DescribePrincipalIdFormatInput, arg2 func(*ec2.DescribePrincipalIdFormatOutput, bool) bool, arg3 ...request.Option) error

DescribePrincipalIdFormatPagesWithContext mocks base method.

func (*MockEC2API) DescribePrincipalIdFormatRequest added in v1.19.0

func (m *MockEC2API) DescribePrincipalIdFormatRequest(arg0 *ec2.DescribePrincipalIdFormatInput) (*request.Request, *ec2.DescribePrincipalIdFormatOutput)

DescribePrincipalIdFormatRequest mocks base method.

func (*MockEC2API) DescribePrincipalIdFormatWithContext added in v1.19.0

func (m *MockEC2API) DescribePrincipalIdFormatWithContext(arg0 context.Context, arg1 *ec2.DescribePrincipalIdFormatInput, arg2 ...request.Option) (*ec2.DescribePrincipalIdFormatOutput, error)

DescribePrincipalIdFormatWithContext mocks base method.

func (*MockEC2API) DescribePublicIpv4Pools added in v1.19.0

func (m *MockEC2API) DescribePublicIpv4Pools(arg0 *ec2.DescribePublicIpv4PoolsInput) (*ec2.DescribePublicIpv4PoolsOutput, error)

DescribePublicIpv4Pools mocks base method.

func (*MockEC2API) DescribePublicIpv4PoolsPages added in v1.19.0

func (m *MockEC2API) DescribePublicIpv4PoolsPages(arg0 *ec2.DescribePublicIpv4PoolsInput, arg1 func(*ec2.DescribePublicIpv4PoolsOutput, bool) bool) error

DescribePublicIpv4PoolsPages mocks base method.

func (*MockEC2API) DescribePublicIpv4PoolsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribePublicIpv4PoolsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribePublicIpv4PoolsInput, arg2 func(*ec2.DescribePublicIpv4PoolsOutput, bool) bool, arg3 ...request.Option) error

DescribePublicIpv4PoolsPagesWithContext mocks base method.

func (*MockEC2API) DescribePublicIpv4PoolsRequest added in v1.19.0

func (m *MockEC2API) DescribePublicIpv4PoolsRequest(arg0 *ec2.DescribePublicIpv4PoolsInput) (*request.Request, *ec2.DescribePublicIpv4PoolsOutput)

DescribePublicIpv4PoolsRequest mocks base method.

func (*MockEC2API) DescribePublicIpv4PoolsWithContext added in v1.19.0

func (m *MockEC2API) DescribePublicIpv4PoolsWithContext(arg0 context.Context, arg1 *ec2.DescribePublicIpv4PoolsInput, arg2 ...request.Option) (*ec2.DescribePublicIpv4PoolsOutput, error)

DescribePublicIpv4PoolsWithContext mocks base method.

func (*MockEC2API) DescribeRegions added in v1.19.0

func (m *MockEC2API) DescribeRegions(arg0 *ec2.DescribeRegionsInput) (*ec2.DescribeRegionsOutput, error)

DescribeRegions mocks base method.

func (*MockEC2API) DescribeRegionsRequest added in v1.19.0

func (m *MockEC2API) DescribeRegionsRequest(arg0 *ec2.DescribeRegionsInput) (*request.Request, *ec2.DescribeRegionsOutput)

DescribeRegionsRequest mocks base method.

func (*MockEC2API) DescribeRegionsWithContext added in v1.19.0

func (m *MockEC2API) DescribeRegionsWithContext(arg0 context.Context, arg1 *ec2.DescribeRegionsInput, arg2 ...request.Option) (*ec2.DescribeRegionsOutput, error)

DescribeRegionsWithContext mocks base method.

func (*MockEC2API) DescribeReplaceRootVolumeTasks added in v1.19.0

DescribeReplaceRootVolumeTasks mocks base method.

func (*MockEC2API) DescribeReplaceRootVolumeTasksPages added in v1.19.0

func (m *MockEC2API) DescribeReplaceRootVolumeTasksPages(arg0 *ec2.DescribeReplaceRootVolumeTasksInput, arg1 func(*ec2.DescribeReplaceRootVolumeTasksOutput, bool) bool) error

DescribeReplaceRootVolumeTasksPages mocks base method.

func (*MockEC2API) DescribeReplaceRootVolumeTasksPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeReplaceRootVolumeTasksPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeReplaceRootVolumeTasksInput, arg2 func(*ec2.DescribeReplaceRootVolumeTasksOutput, bool) bool, arg3 ...request.Option) error

DescribeReplaceRootVolumeTasksPagesWithContext mocks base method.

func (*MockEC2API) DescribeReplaceRootVolumeTasksRequest added in v1.19.0

func (m *MockEC2API) DescribeReplaceRootVolumeTasksRequest(arg0 *ec2.DescribeReplaceRootVolumeTasksInput) (*request.Request, *ec2.DescribeReplaceRootVolumeTasksOutput)

DescribeReplaceRootVolumeTasksRequest mocks base method.

func (*MockEC2API) DescribeReplaceRootVolumeTasksWithContext added in v1.19.0

func (m *MockEC2API) DescribeReplaceRootVolumeTasksWithContext(arg0 context.Context, arg1 *ec2.DescribeReplaceRootVolumeTasksInput, arg2 ...request.Option) (*ec2.DescribeReplaceRootVolumeTasksOutput, error)

DescribeReplaceRootVolumeTasksWithContext mocks base method.

func (*MockEC2API) DescribeReservedInstances added in v1.19.0

DescribeReservedInstances mocks base method.

func (*MockEC2API) DescribeReservedInstancesListings added in v1.19.0

DescribeReservedInstancesListings mocks base method.

func (*MockEC2API) DescribeReservedInstancesListingsRequest added in v1.19.0

DescribeReservedInstancesListingsRequest mocks base method.

func (*MockEC2API) DescribeReservedInstancesListingsWithContext added in v1.19.0

func (m *MockEC2API) DescribeReservedInstancesListingsWithContext(arg0 context.Context, arg1 *ec2.DescribeReservedInstancesListingsInput, arg2 ...request.Option) (*ec2.DescribeReservedInstancesListingsOutput, error)

DescribeReservedInstancesListingsWithContext mocks base method.

func (*MockEC2API) DescribeReservedInstancesModifications added in v1.19.0

DescribeReservedInstancesModifications mocks base method.

func (*MockEC2API) DescribeReservedInstancesModificationsPages added in v1.19.0

func (m *MockEC2API) DescribeReservedInstancesModificationsPages(arg0 *ec2.DescribeReservedInstancesModificationsInput, arg1 func(*ec2.DescribeReservedInstancesModificationsOutput, bool) bool) error

DescribeReservedInstancesModificationsPages mocks base method.

func (*MockEC2API) DescribeReservedInstancesModificationsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeReservedInstancesModificationsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeReservedInstancesModificationsInput, arg2 func(*ec2.DescribeReservedInstancesModificationsOutput, bool) bool, arg3 ...request.Option) error

DescribeReservedInstancesModificationsPagesWithContext mocks base method.

func (*MockEC2API) DescribeReservedInstancesModificationsRequest added in v1.19.0

DescribeReservedInstancesModificationsRequest mocks base method.

func (*MockEC2API) DescribeReservedInstancesModificationsWithContext added in v1.19.0

func (m *MockEC2API) DescribeReservedInstancesModificationsWithContext(arg0 context.Context, arg1 *ec2.DescribeReservedInstancesModificationsInput, arg2 ...request.Option) (*ec2.DescribeReservedInstancesModificationsOutput, error)

DescribeReservedInstancesModificationsWithContext mocks base method.

func (*MockEC2API) DescribeReservedInstancesOfferings added in v1.19.0

DescribeReservedInstancesOfferings mocks base method.

func (*MockEC2API) DescribeReservedInstancesOfferingsPages added in v1.19.0

func (m *MockEC2API) DescribeReservedInstancesOfferingsPages(arg0 *ec2.DescribeReservedInstancesOfferingsInput, arg1 func(*ec2.DescribeReservedInstancesOfferingsOutput, bool) bool) error

DescribeReservedInstancesOfferingsPages mocks base method.

func (*MockEC2API) DescribeReservedInstancesOfferingsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeReservedInstancesOfferingsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeReservedInstancesOfferingsInput, arg2 func(*ec2.DescribeReservedInstancesOfferingsOutput, bool) bool, arg3 ...request.Option) error

DescribeReservedInstancesOfferingsPagesWithContext mocks base method.

func (*MockEC2API) DescribeReservedInstancesOfferingsRequest added in v1.19.0

DescribeReservedInstancesOfferingsRequest mocks base method.

func (*MockEC2API) DescribeReservedInstancesOfferingsWithContext added in v1.19.0

func (m *MockEC2API) DescribeReservedInstancesOfferingsWithContext(arg0 context.Context, arg1 *ec2.DescribeReservedInstancesOfferingsInput, arg2 ...request.Option) (*ec2.DescribeReservedInstancesOfferingsOutput, error)

DescribeReservedInstancesOfferingsWithContext mocks base method.

func (*MockEC2API) DescribeReservedInstancesRequest added in v1.19.0

func (m *MockEC2API) DescribeReservedInstancesRequest(arg0 *ec2.DescribeReservedInstancesInput) (*request.Request, *ec2.DescribeReservedInstancesOutput)

DescribeReservedInstancesRequest mocks base method.

func (*MockEC2API) DescribeReservedInstancesWithContext added in v1.19.0

func (m *MockEC2API) DescribeReservedInstancesWithContext(arg0 context.Context, arg1 *ec2.DescribeReservedInstancesInput, arg2 ...request.Option) (*ec2.DescribeReservedInstancesOutput, error)

DescribeReservedInstancesWithContext mocks base method.

func (*MockEC2API) DescribeRouteTables added in v1.19.0

func (m *MockEC2API) DescribeRouteTables(arg0 *ec2.DescribeRouteTablesInput) (*ec2.DescribeRouteTablesOutput, error)

DescribeRouteTables mocks base method.

func (*MockEC2API) DescribeRouteTablesPages added in v1.19.0

func (m *MockEC2API) DescribeRouteTablesPages(arg0 *ec2.DescribeRouteTablesInput, arg1 func(*ec2.DescribeRouteTablesOutput, bool) bool) error

DescribeRouteTablesPages mocks base method.

func (*MockEC2API) DescribeRouteTablesPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeRouteTablesPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeRouteTablesInput, arg2 func(*ec2.DescribeRouteTablesOutput, bool) bool, arg3 ...request.Option) error

DescribeRouteTablesPagesWithContext mocks base method.

func (*MockEC2API) DescribeRouteTablesRequest added in v1.19.0

func (m *MockEC2API) DescribeRouteTablesRequest(arg0 *ec2.DescribeRouteTablesInput) (*request.Request, *ec2.DescribeRouteTablesOutput)

DescribeRouteTablesRequest mocks base method.

func (*MockEC2API) DescribeRouteTablesWithContext added in v1.19.0

func (m *MockEC2API) DescribeRouteTablesWithContext(arg0 context.Context, arg1 *ec2.DescribeRouteTablesInput, arg2 ...request.Option) (*ec2.DescribeRouteTablesOutput, error)

DescribeRouteTablesWithContext mocks base method.

func (*MockEC2API) DescribeScheduledInstanceAvailability added in v1.19.0

DescribeScheduledInstanceAvailability mocks base method.

func (*MockEC2API) DescribeScheduledInstanceAvailabilityPages added in v1.19.0

func (m *MockEC2API) DescribeScheduledInstanceAvailabilityPages(arg0 *ec2.DescribeScheduledInstanceAvailabilityInput, arg1 func(*ec2.DescribeScheduledInstanceAvailabilityOutput, bool) bool) error

DescribeScheduledInstanceAvailabilityPages mocks base method.

func (*MockEC2API) DescribeScheduledInstanceAvailabilityPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeScheduledInstanceAvailabilityPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeScheduledInstanceAvailabilityInput, arg2 func(*ec2.DescribeScheduledInstanceAvailabilityOutput, bool) bool, arg3 ...request.Option) error

DescribeScheduledInstanceAvailabilityPagesWithContext mocks base method.

func (*MockEC2API) DescribeScheduledInstanceAvailabilityRequest added in v1.19.0

DescribeScheduledInstanceAvailabilityRequest mocks base method.

func (*MockEC2API) DescribeScheduledInstanceAvailabilityWithContext added in v1.19.0

func (m *MockEC2API) DescribeScheduledInstanceAvailabilityWithContext(arg0 context.Context, arg1 *ec2.DescribeScheduledInstanceAvailabilityInput, arg2 ...request.Option) (*ec2.DescribeScheduledInstanceAvailabilityOutput, error)

DescribeScheduledInstanceAvailabilityWithContext mocks base method.

func (*MockEC2API) DescribeScheduledInstances added in v1.19.0

DescribeScheduledInstances mocks base method.

func (*MockEC2API) DescribeScheduledInstancesPages added in v1.19.0

func (m *MockEC2API) DescribeScheduledInstancesPages(arg0 *ec2.DescribeScheduledInstancesInput, arg1 func(*ec2.DescribeScheduledInstancesOutput, bool) bool) error

DescribeScheduledInstancesPages mocks base method.

func (*MockEC2API) DescribeScheduledInstancesPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeScheduledInstancesPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeScheduledInstancesInput, arg2 func(*ec2.DescribeScheduledInstancesOutput, bool) bool, arg3 ...request.Option) error

DescribeScheduledInstancesPagesWithContext mocks base method.

func (*MockEC2API) DescribeScheduledInstancesRequest added in v1.19.0

func (m *MockEC2API) DescribeScheduledInstancesRequest(arg0 *ec2.DescribeScheduledInstancesInput) (*request.Request, *ec2.DescribeScheduledInstancesOutput)

DescribeScheduledInstancesRequest mocks base method.

func (*MockEC2API) DescribeScheduledInstancesWithContext added in v1.19.0

func (m *MockEC2API) DescribeScheduledInstancesWithContext(arg0 context.Context, arg1 *ec2.DescribeScheduledInstancesInput, arg2 ...request.Option) (*ec2.DescribeScheduledInstancesOutput, error)

DescribeScheduledInstancesWithContext mocks base method.

func (*MockEC2API) DescribeSecurityGroupReferences added in v1.19.0

DescribeSecurityGroupReferences mocks base method.

func (*MockEC2API) DescribeSecurityGroupReferencesRequest added in v1.19.0

func (m *MockEC2API) DescribeSecurityGroupReferencesRequest(arg0 *ec2.DescribeSecurityGroupReferencesInput) (*request.Request, *ec2.DescribeSecurityGroupReferencesOutput)

DescribeSecurityGroupReferencesRequest mocks base method.

func (*MockEC2API) DescribeSecurityGroupReferencesWithContext added in v1.19.0

func (m *MockEC2API) DescribeSecurityGroupReferencesWithContext(arg0 context.Context, arg1 *ec2.DescribeSecurityGroupReferencesInput, arg2 ...request.Option) (*ec2.DescribeSecurityGroupReferencesOutput, error)

DescribeSecurityGroupReferencesWithContext mocks base method.

func (*MockEC2API) DescribeSecurityGroupRules added in v1.19.0

DescribeSecurityGroupRules mocks base method.

func (*MockEC2API) DescribeSecurityGroupRulesPages added in v1.19.0

func (m *MockEC2API) DescribeSecurityGroupRulesPages(arg0 *ec2.DescribeSecurityGroupRulesInput, arg1 func(*ec2.DescribeSecurityGroupRulesOutput, bool) bool) error

DescribeSecurityGroupRulesPages mocks base method.

func (*MockEC2API) DescribeSecurityGroupRulesPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeSecurityGroupRulesPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeSecurityGroupRulesInput, arg2 func(*ec2.DescribeSecurityGroupRulesOutput, bool) bool, arg3 ...request.Option) error

DescribeSecurityGroupRulesPagesWithContext mocks base method.

func (*MockEC2API) DescribeSecurityGroupRulesRequest added in v1.19.0

func (m *MockEC2API) DescribeSecurityGroupRulesRequest(arg0 *ec2.DescribeSecurityGroupRulesInput) (*request.Request, *ec2.DescribeSecurityGroupRulesOutput)

DescribeSecurityGroupRulesRequest mocks base method.

func (*MockEC2API) DescribeSecurityGroupRulesWithContext added in v1.19.0

func (m *MockEC2API) DescribeSecurityGroupRulesWithContext(arg0 context.Context, arg1 *ec2.DescribeSecurityGroupRulesInput, arg2 ...request.Option) (*ec2.DescribeSecurityGroupRulesOutput, error)

DescribeSecurityGroupRulesWithContext mocks base method.

func (*MockEC2API) DescribeSecurityGroups added in v1.19.0

func (m *MockEC2API) DescribeSecurityGroups(arg0 *ec2.DescribeSecurityGroupsInput) (*ec2.DescribeSecurityGroupsOutput, error)

DescribeSecurityGroups mocks base method.

func (*MockEC2API) DescribeSecurityGroupsPages added in v1.19.0

func (m *MockEC2API) DescribeSecurityGroupsPages(arg0 *ec2.DescribeSecurityGroupsInput, arg1 func(*ec2.DescribeSecurityGroupsOutput, bool) bool) error

DescribeSecurityGroupsPages mocks base method.

func (*MockEC2API) DescribeSecurityGroupsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeSecurityGroupsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeSecurityGroupsInput, arg2 func(*ec2.DescribeSecurityGroupsOutput, bool) bool, arg3 ...request.Option) error

DescribeSecurityGroupsPagesWithContext mocks base method.

func (*MockEC2API) DescribeSecurityGroupsRequest added in v1.19.0

func (m *MockEC2API) DescribeSecurityGroupsRequest(arg0 *ec2.DescribeSecurityGroupsInput) (*request.Request, *ec2.DescribeSecurityGroupsOutput)

DescribeSecurityGroupsRequest mocks base method.

func (*MockEC2API) DescribeSecurityGroupsWithContext added in v1.19.0

func (m *MockEC2API) DescribeSecurityGroupsWithContext(arg0 context.Context, arg1 *ec2.DescribeSecurityGroupsInput, arg2 ...request.Option) (*ec2.DescribeSecurityGroupsOutput, error)

DescribeSecurityGroupsWithContext mocks base method.

func (*MockEC2API) DescribeSnapshotAttribute added in v1.19.0

DescribeSnapshotAttribute mocks base method.

func (*MockEC2API) DescribeSnapshotAttributeRequest added in v1.19.0

func (m *MockEC2API) DescribeSnapshotAttributeRequest(arg0 *ec2.DescribeSnapshotAttributeInput) (*request.Request, *ec2.DescribeSnapshotAttributeOutput)

DescribeSnapshotAttributeRequest mocks base method.

func (*MockEC2API) DescribeSnapshotAttributeWithContext added in v1.19.0

func (m *MockEC2API) DescribeSnapshotAttributeWithContext(arg0 context.Context, arg1 *ec2.DescribeSnapshotAttributeInput, arg2 ...request.Option) (*ec2.DescribeSnapshotAttributeOutput, error)

DescribeSnapshotAttributeWithContext mocks base method.

func (*MockEC2API) DescribeSnapshotTierStatus added in v1.19.0

DescribeSnapshotTierStatus mocks base method.

func (*MockEC2API) DescribeSnapshotTierStatusPages added in v1.19.0

func (m *MockEC2API) DescribeSnapshotTierStatusPages(arg0 *ec2.DescribeSnapshotTierStatusInput, arg1 func(*ec2.DescribeSnapshotTierStatusOutput, bool) bool) error

DescribeSnapshotTierStatusPages mocks base method.

func (*MockEC2API) DescribeSnapshotTierStatusPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeSnapshotTierStatusPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeSnapshotTierStatusInput, arg2 func(*ec2.DescribeSnapshotTierStatusOutput, bool) bool, arg3 ...request.Option) error

DescribeSnapshotTierStatusPagesWithContext mocks base method.

func (*MockEC2API) DescribeSnapshotTierStatusRequest added in v1.19.0

func (m *MockEC2API) DescribeSnapshotTierStatusRequest(arg0 *ec2.DescribeSnapshotTierStatusInput) (*request.Request, *ec2.DescribeSnapshotTierStatusOutput)

DescribeSnapshotTierStatusRequest mocks base method.

func (*MockEC2API) DescribeSnapshotTierStatusWithContext added in v1.19.0

func (m *MockEC2API) DescribeSnapshotTierStatusWithContext(arg0 context.Context, arg1 *ec2.DescribeSnapshotTierStatusInput, arg2 ...request.Option) (*ec2.DescribeSnapshotTierStatusOutput, error)

DescribeSnapshotTierStatusWithContext mocks base method.

func (*MockEC2API) DescribeSnapshots added in v1.19.0

func (m *MockEC2API) DescribeSnapshots(arg0 *ec2.DescribeSnapshotsInput) (*ec2.DescribeSnapshotsOutput, error)

DescribeSnapshots mocks base method.

func (*MockEC2API) DescribeSnapshotsPages added in v1.19.0

func (m *MockEC2API) DescribeSnapshotsPages(arg0 *ec2.DescribeSnapshotsInput, arg1 func(*ec2.DescribeSnapshotsOutput, bool) bool) error

DescribeSnapshotsPages mocks base method.

func (*MockEC2API) DescribeSnapshotsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeSnapshotsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeSnapshotsInput, arg2 func(*ec2.DescribeSnapshotsOutput, bool) bool, arg3 ...request.Option) error

DescribeSnapshotsPagesWithContext mocks base method.

func (*MockEC2API) DescribeSnapshotsRequest added in v1.19.0

func (m *MockEC2API) DescribeSnapshotsRequest(arg0 *ec2.DescribeSnapshotsInput) (*request.Request, *ec2.DescribeSnapshotsOutput)

DescribeSnapshotsRequest mocks base method.

func (*MockEC2API) DescribeSnapshotsWithContext added in v1.19.0

func (m *MockEC2API) DescribeSnapshotsWithContext(arg0 context.Context, arg1 *ec2.DescribeSnapshotsInput, arg2 ...request.Option) (*ec2.DescribeSnapshotsOutput, error)

DescribeSnapshotsWithContext mocks base method.

func (*MockEC2API) DescribeSpotDatafeedSubscription added in v1.19.0

DescribeSpotDatafeedSubscription mocks base method.

func (*MockEC2API) DescribeSpotDatafeedSubscriptionRequest added in v1.19.0

func (m *MockEC2API) DescribeSpotDatafeedSubscriptionRequest(arg0 *ec2.DescribeSpotDatafeedSubscriptionInput) (*request.Request, *ec2.DescribeSpotDatafeedSubscriptionOutput)

DescribeSpotDatafeedSubscriptionRequest mocks base method.

func (*MockEC2API) DescribeSpotDatafeedSubscriptionWithContext added in v1.19.0

func (m *MockEC2API) DescribeSpotDatafeedSubscriptionWithContext(arg0 context.Context, arg1 *ec2.DescribeSpotDatafeedSubscriptionInput, arg2 ...request.Option) (*ec2.DescribeSpotDatafeedSubscriptionOutput, error)

DescribeSpotDatafeedSubscriptionWithContext mocks base method.

func (*MockEC2API) DescribeSpotFleetInstances added in v1.19.0

DescribeSpotFleetInstances mocks base method.

func (*MockEC2API) DescribeSpotFleetInstancesRequest added in v1.19.0

func (m *MockEC2API) DescribeSpotFleetInstancesRequest(arg0 *ec2.DescribeSpotFleetInstancesInput) (*request.Request, *ec2.DescribeSpotFleetInstancesOutput)

DescribeSpotFleetInstancesRequest mocks base method.

func (*MockEC2API) DescribeSpotFleetInstancesWithContext added in v1.19.0

func (m *MockEC2API) DescribeSpotFleetInstancesWithContext(arg0 context.Context, arg1 *ec2.DescribeSpotFleetInstancesInput, arg2 ...request.Option) (*ec2.DescribeSpotFleetInstancesOutput, error)

DescribeSpotFleetInstancesWithContext mocks base method.

func (*MockEC2API) DescribeSpotFleetRequestHistory added in v1.19.0

DescribeSpotFleetRequestHistory mocks base method.

func (*MockEC2API) DescribeSpotFleetRequestHistoryRequest added in v1.19.0

func (m *MockEC2API) DescribeSpotFleetRequestHistoryRequest(arg0 *ec2.DescribeSpotFleetRequestHistoryInput) (*request.Request, *ec2.DescribeSpotFleetRequestHistoryOutput)

DescribeSpotFleetRequestHistoryRequest mocks base method.

func (*MockEC2API) DescribeSpotFleetRequestHistoryWithContext added in v1.19.0

func (m *MockEC2API) DescribeSpotFleetRequestHistoryWithContext(arg0 context.Context, arg1 *ec2.DescribeSpotFleetRequestHistoryInput, arg2 ...request.Option) (*ec2.DescribeSpotFleetRequestHistoryOutput, error)

DescribeSpotFleetRequestHistoryWithContext mocks base method.

func (*MockEC2API) DescribeSpotFleetRequests added in v1.19.0

DescribeSpotFleetRequests mocks base method.

func (*MockEC2API) DescribeSpotFleetRequestsPages added in v1.19.0

func (m *MockEC2API) DescribeSpotFleetRequestsPages(arg0 *ec2.DescribeSpotFleetRequestsInput, arg1 func(*ec2.DescribeSpotFleetRequestsOutput, bool) bool) error

DescribeSpotFleetRequestsPages mocks base method.

func (*MockEC2API) DescribeSpotFleetRequestsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeSpotFleetRequestsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeSpotFleetRequestsInput, arg2 func(*ec2.DescribeSpotFleetRequestsOutput, bool) bool, arg3 ...request.Option) error

DescribeSpotFleetRequestsPagesWithContext mocks base method.

func (*MockEC2API) DescribeSpotFleetRequestsRequest added in v1.19.0

func (m *MockEC2API) DescribeSpotFleetRequestsRequest(arg0 *ec2.DescribeSpotFleetRequestsInput) (*request.Request, *ec2.DescribeSpotFleetRequestsOutput)

DescribeSpotFleetRequestsRequest mocks base method.

func (*MockEC2API) DescribeSpotFleetRequestsWithContext added in v1.19.0

func (m *MockEC2API) DescribeSpotFleetRequestsWithContext(arg0 context.Context, arg1 *ec2.DescribeSpotFleetRequestsInput, arg2 ...request.Option) (*ec2.DescribeSpotFleetRequestsOutput, error)

DescribeSpotFleetRequestsWithContext mocks base method.

func (*MockEC2API) DescribeSpotInstanceRequests added in v1.19.0

DescribeSpotInstanceRequests mocks base method.

func (*MockEC2API) DescribeSpotInstanceRequestsPages added in v1.19.0

func (m *MockEC2API) DescribeSpotInstanceRequestsPages(arg0 *ec2.DescribeSpotInstanceRequestsInput, arg1 func(*ec2.DescribeSpotInstanceRequestsOutput, bool) bool) error

DescribeSpotInstanceRequestsPages mocks base method.

func (*MockEC2API) DescribeSpotInstanceRequestsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeSpotInstanceRequestsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeSpotInstanceRequestsInput, arg2 func(*ec2.DescribeSpotInstanceRequestsOutput, bool) bool, arg3 ...request.Option) error

DescribeSpotInstanceRequestsPagesWithContext mocks base method.

func (*MockEC2API) DescribeSpotInstanceRequestsRequest added in v1.19.0

func (m *MockEC2API) DescribeSpotInstanceRequestsRequest(arg0 *ec2.DescribeSpotInstanceRequestsInput) (*request.Request, *ec2.DescribeSpotInstanceRequestsOutput)

DescribeSpotInstanceRequestsRequest mocks base method.

func (*MockEC2API) DescribeSpotInstanceRequestsWithContext added in v1.19.0

func (m *MockEC2API) DescribeSpotInstanceRequestsWithContext(arg0 context.Context, arg1 *ec2.DescribeSpotInstanceRequestsInput, arg2 ...request.Option) (*ec2.DescribeSpotInstanceRequestsOutput, error)

DescribeSpotInstanceRequestsWithContext mocks base method.

func (*MockEC2API) DescribeSpotPriceHistory added in v1.19.0

DescribeSpotPriceHistory mocks base method.

func (*MockEC2API) DescribeSpotPriceHistoryPages added in v1.19.0

func (m *MockEC2API) DescribeSpotPriceHistoryPages(arg0 *ec2.DescribeSpotPriceHistoryInput, arg1 func(*ec2.DescribeSpotPriceHistoryOutput, bool) bool) error

DescribeSpotPriceHistoryPages mocks base method.

func (*MockEC2API) DescribeSpotPriceHistoryPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeSpotPriceHistoryPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeSpotPriceHistoryInput, arg2 func(*ec2.DescribeSpotPriceHistoryOutput, bool) bool, arg3 ...request.Option) error

DescribeSpotPriceHistoryPagesWithContext mocks base method.

func (*MockEC2API) DescribeSpotPriceHistoryRequest added in v1.19.0

func (m *MockEC2API) DescribeSpotPriceHistoryRequest(arg0 *ec2.DescribeSpotPriceHistoryInput) (*request.Request, *ec2.DescribeSpotPriceHistoryOutput)

DescribeSpotPriceHistoryRequest mocks base method.

func (*MockEC2API) DescribeSpotPriceHistoryWithContext added in v1.19.0

func (m *MockEC2API) DescribeSpotPriceHistoryWithContext(arg0 context.Context, arg1 *ec2.DescribeSpotPriceHistoryInput, arg2 ...request.Option) (*ec2.DescribeSpotPriceHistoryOutput, error)

DescribeSpotPriceHistoryWithContext mocks base method.

func (*MockEC2API) DescribeStaleSecurityGroups added in v1.19.0

DescribeStaleSecurityGroups mocks base method.

func (*MockEC2API) DescribeStaleSecurityGroupsPages added in v1.19.0

func (m *MockEC2API) DescribeStaleSecurityGroupsPages(arg0 *ec2.DescribeStaleSecurityGroupsInput, arg1 func(*ec2.DescribeStaleSecurityGroupsOutput, bool) bool) error

DescribeStaleSecurityGroupsPages mocks base method.

func (*MockEC2API) DescribeStaleSecurityGroupsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeStaleSecurityGroupsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeStaleSecurityGroupsInput, arg2 func(*ec2.DescribeStaleSecurityGroupsOutput, bool) bool, arg3 ...request.Option) error

DescribeStaleSecurityGroupsPagesWithContext mocks base method.

func (*MockEC2API) DescribeStaleSecurityGroupsRequest added in v1.19.0

func (m *MockEC2API) DescribeStaleSecurityGroupsRequest(arg0 *ec2.DescribeStaleSecurityGroupsInput) (*request.Request, *ec2.DescribeStaleSecurityGroupsOutput)

DescribeStaleSecurityGroupsRequest mocks base method.

func (*MockEC2API) DescribeStaleSecurityGroupsWithContext added in v1.19.0

func (m *MockEC2API) DescribeStaleSecurityGroupsWithContext(arg0 context.Context, arg1 *ec2.DescribeStaleSecurityGroupsInput, arg2 ...request.Option) (*ec2.DescribeStaleSecurityGroupsOutput, error)

DescribeStaleSecurityGroupsWithContext mocks base method.

func (*MockEC2API) DescribeStoreImageTasks added in v1.19.0

func (m *MockEC2API) DescribeStoreImageTasks(arg0 *ec2.DescribeStoreImageTasksInput) (*ec2.DescribeStoreImageTasksOutput, error)

DescribeStoreImageTasks mocks base method.

func (*MockEC2API) DescribeStoreImageTasksPages added in v1.19.0

func (m *MockEC2API) DescribeStoreImageTasksPages(arg0 *ec2.DescribeStoreImageTasksInput, arg1 func(*ec2.DescribeStoreImageTasksOutput, bool) bool) error

DescribeStoreImageTasksPages mocks base method.

func (*MockEC2API) DescribeStoreImageTasksPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeStoreImageTasksPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeStoreImageTasksInput, arg2 func(*ec2.DescribeStoreImageTasksOutput, bool) bool, arg3 ...request.Option) error

DescribeStoreImageTasksPagesWithContext mocks base method.

func (*MockEC2API) DescribeStoreImageTasksRequest added in v1.19.0

func (m *MockEC2API) DescribeStoreImageTasksRequest(arg0 *ec2.DescribeStoreImageTasksInput) (*request.Request, *ec2.DescribeStoreImageTasksOutput)

DescribeStoreImageTasksRequest mocks base method.

func (*MockEC2API) DescribeStoreImageTasksWithContext added in v1.19.0

func (m *MockEC2API) DescribeStoreImageTasksWithContext(arg0 context.Context, arg1 *ec2.DescribeStoreImageTasksInput, arg2 ...request.Option) (*ec2.DescribeStoreImageTasksOutput, error)

DescribeStoreImageTasksWithContext mocks base method.

func (*MockEC2API) DescribeSubnets added in v1.19.0

func (m *MockEC2API) DescribeSubnets(arg0 *ec2.DescribeSubnetsInput) (*ec2.DescribeSubnetsOutput, error)

DescribeSubnets mocks base method.

func (*MockEC2API) DescribeSubnetsPages added in v1.19.0

func (m *MockEC2API) DescribeSubnetsPages(arg0 *ec2.DescribeSubnetsInput, arg1 func(*ec2.DescribeSubnetsOutput, bool) bool) error

DescribeSubnetsPages mocks base method.

func (*MockEC2API) DescribeSubnetsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeSubnetsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeSubnetsInput, arg2 func(*ec2.DescribeSubnetsOutput, bool) bool, arg3 ...request.Option) error

DescribeSubnetsPagesWithContext mocks base method.

func (*MockEC2API) DescribeSubnetsRequest added in v1.19.0

func (m *MockEC2API) DescribeSubnetsRequest(arg0 *ec2.DescribeSubnetsInput) (*request.Request, *ec2.DescribeSubnetsOutput)

DescribeSubnetsRequest mocks base method.

func (*MockEC2API) DescribeSubnetsWithContext added in v1.19.0

func (m *MockEC2API) DescribeSubnetsWithContext(arg0 context.Context, arg1 *ec2.DescribeSubnetsInput, arg2 ...request.Option) (*ec2.DescribeSubnetsOutput, error)

DescribeSubnetsWithContext mocks base method.

func (*MockEC2API) DescribeTags added in v1.19.0

func (m *MockEC2API) DescribeTags(arg0 *ec2.DescribeTagsInput) (*ec2.DescribeTagsOutput, error)

DescribeTags mocks base method.

func (*MockEC2API) DescribeTagsPages added in v1.19.0

func (m *MockEC2API) DescribeTagsPages(arg0 *ec2.DescribeTagsInput, arg1 func(*ec2.DescribeTagsOutput, bool) bool) error

DescribeTagsPages mocks base method.

func (*MockEC2API) DescribeTagsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeTagsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeTagsInput, arg2 func(*ec2.DescribeTagsOutput, bool) bool, arg3 ...request.Option) error

DescribeTagsPagesWithContext mocks base method.

func (*MockEC2API) DescribeTagsRequest added in v1.19.0

func (m *MockEC2API) DescribeTagsRequest(arg0 *ec2.DescribeTagsInput) (*request.Request, *ec2.DescribeTagsOutput)

DescribeTagsRequest mocks base method.

func (*MockEC2API) DescribeTagsWithContext added in v1.19.0

func (m *MockEC2API) DescribeTagsWithContext(arg0 context.Context, arg1 *ec2.DescribeTagsInput, arg2 ...request.Option) (*ec2.DescribeTagsOutput, error)

DescribeTagsWithContext mocks base method.

func (*MockEC2API) DescribeTrafficMirrorFilters added in v1.19.0

DescribeTrafficMirrorFilters mocks base method.

func (*MockEC2API) DescribeTrafficMirrorFiltersPages added in v1.19.0

func (m *MockEC2API) DescribeTrafficMirrorFiltersPages(arg0 *ec2.DescribeTrafficMirrorFiltersInput, arg1 func(*ec2.DescribeTrafficMirrorFiltersOutput, bool) bool) error

DescribeTrafficMirrorFiltersPages mocks base method.

func (*MockEC2API) DescribeTrafficMirrorFiltersPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeTrafficMirrorFiltersPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeTrafficMirrorFiltersInput, arg2 func(*ec2.DescribeTrafficMirrorFiltersOutput, bool) bool, arg3 ...request.Option) error

DescribeTrafficMirrorFiltersPagesWithContext mocks base method.

func (*MockEC2API) DescribeTrafficMirrorFiltersRequest added in v1.19.0

func (m *MockEC2API) DescribeTrafficMirrorFiltersRequest(arg0 *ec2.DescribeTrafficMirrorFiltersInput) (*request.Request, *ec2.DescribeTrafficMirrorFiltersOutput)

DescribeTrafficMirrorFiltersRequest mocks base method.

func (*MockEC2API) DescribeTrafficMirrorFiltersWithContext added in v1.19.0

func (m *MockEC2API) DescribeTrafficMirrorFiltersWithContext(arg0 context.Context, arg1 *ec2.DescribeTrafficMirrorFiltersInput, arg2 ...request.Option) (*ec2.DescribeTrafficMirrorFiltersOutput, error)

DescribeTrafficMirrorFiltersWithContext mocks base method.

func (*MockEC2API) DescribeTrafficMirrorSessions added in v1.19.0

DescribeTrafficMirrorSessions mocks base method.

func (*MockEC2API) DescribeTrafficMirrorSessionsPages added in v1.19.0

func (m *MockEC2API) DescribeTrafficMirrorSessionsPages(arg0 *ec2.DescribeTrafficMirrorSessionsInput, arg1 func(*ec2.DescribeTrafficMirrorSessionsOutput, bool) bool) error

DescribeTrafficMirrorSessionsPages mocks base method.

func (*MockEC2API) DescribeTrafficMirrorSessionsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeTrafficMirrorSessionsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeTrafficMirrorSessionsInput, arg2 func(*ec2.DescribeTrafficMirrorSessionsOutput, bool) bool, arg3 ...request.Option) error

DescribeTrafficMirrorSessionsPagesWithContext mocks base method.

func (*MockEC2API) DescribeTrafficMirrorSessionsRequest added in v1.19.0

func (m *MockEC2API) DescribeTrafficMirrorSessionsRequest(arg0 *ec2.DescribeTrafficMirrorSessionsInput) (*request.Request, *ec2.DescribeTrafficMirrorSessionsOutput)

DescribeTrafficMirrorSessionsRequest mocks base method.

func (*MockEC2API) DescribeTrafficMirrorSessionsWithContext added in v1.19.0

func (m *MockEC2API) DescribeTrafficMirrorSessionsWithContext(arg0 context.Context, arg1 *ec2.DescribeTrafficMirrorSessionsInput, arg2 ...request.Option) (*ec2.DescribeTrafficMirrorSessionsOutput, error)

DescribeTrafficMirrorSessionsWithContext mocks base method.

func (*MockEC2API) DescribeTrafficMirrorTargets added in v1.19.0

DescribeTrafficMirrorTargets mocks base method.

func (*MockEC2API) DescribeTrafficMirrorTargetsPages added in v1.19.0

func (m *MockEC2API) DescribeTrafficMirrorTargetsPages(arg0 *ec2.DescribeTrafficMirrorTargetsInput, arg1 func(*ec2.DescribeTrafficMirrorTargetsOutput, bool) bool) error

DescribeTrafficMirrorTargetsPages mocks base method.

func (*MockEC2API) DescribeTrafficMirrorTargetsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeTrafficMirrorTargetsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeTrafficMirrorTargetsInput, arg2 func(*ec2.DescribeTrafficMirrorTargetsOutput, bool) bool, arg3 ...request.Option) error

DescribeTrafficMirrorTargetsPagesWithContext mocks base method.

func (*MockEC2API) DescribeTrafficMirrorTargetsRequest added in v1.19.0

func (m *MockEC2API) DescribeTrafficMirrorTargetsRequest(arg0 *ec2.DescribeTrafficMirrorTargetsInput) (*request.Request, *ec2.DescribeTrafficMirrorTargetsOutput)

DescribeTrafficMirrorTargetsRequest mocks base method.

func (*MockEC2API) DescribeTrafficMirrorTargetsWithContext added in v1.19.0

func (m *MockEC2API) DescribeTrafficMirrorTargetsWithContext(arg0 context.Context, arg1 *ec2.DescribeTrafficMirrorTargetsInput, arg2 ...request.Option) (*ec2.DescribeTrafficMirrorTargetsOutput, error)

DescribeTrafficMirrorTargetsWithContext mocks base method.

func (*MockEC2API) DescribeTransitGatewayAttachments added in v1.19.0

DescribeTransitGatewayAttachments mocks base method.

func (*MockEC2API) DescribeTransitGatewayAttachmentsPages added in v1.19.0

func (m *MockEC2API) DescribeTransitGatewayAttachmentsPages(arg0 *ec2.DescribeTransitGatewayAttachmentsInput, arg1 func(*ec2.DescribeTransitGatewayAttachmentsOutput, bool) bool) error

DescribeTransitGatewayAttachmentsPages mocks base method.

func (*MockEC2API) DescribeTransitGatewayAttachmentsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeTransitGatewayAttachmentsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeTransitGatewayAttachmentsInput, arg2 func(*ec2.DescribeTransitGatewayAttachmentsOutput, bool) bool, arg3 ...request.Option) error

DescribeTransitGatewayAttachmentsPagesWithContext mocks base method.

func (*MockEC2API) DescribeTransitGatewayAttachmentsRequest added in v1.19.0

DescribeTransitGatewayAttachmentsRequest mocks base method.

func (*MockEC2API) DescribeTransitGatewayAttachmentsWithContext added in v1.19.0

func (m *MockEC2API) DescribeTransitGatewayAttachmentsWithContext(arg0 context.Context, arg1 *ec2.DescribeTransitGatewayAttachmentsInput, arg2 ...request.Option) (*ec2.DescribeTransitGatewayAttachmentsOutput, error)

DescribeTransitGatewayAttachmentsWithContext mocks base method.

func (*MockEC2API) DescribeTransitGatewayConnectPeers added in v1.19.0

DescribeTransitGatewayConnectPeers mocks base method.

func (*MockEC2API) DescribeTransitGatewayConnectPeersPages added in v1.19.0

func (m *MockEC2API) DescribeTransitGatewayConnectPeersPages(arg0 *ec2.DescribeTransitGatewayConnectPeersInput, arg1 func(*ec2.DescribeTransitGatewayConnectPeersOutput, bool) bool) error

DescribeTransitGatewayConnectPeersPages mocks base method.

func (*MockEC2API) DescribeTransitGatewayConnectPeersPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeTransitGatewayConnectPeersPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeTransitGatewayConnectPeersInput, arg2 func(*ec2.DescribeTransitGatewayConnectPeersOutput, bool) bool, arg3 ...request.Option) error

DescribeTransitGatewayConnectPeersPagesWithContext mocks base method.

func (*MockEC2API) DescribeTransitGatewayConnectPeersRequest added in v1.19.0

DescribeTransitGatewayConnectPeersRequest mocks base method.

func (*MockEC2API) DescribeTransitGatewayConnectPeersWithContext added in v1.19.0

func (m *MockEC2API) DescribeTransitGatewayConnectPeersWithContext(arg0 context.Context, arg1 *ec2.DescribeTransitGatewayConnectPeersInput, arg2 ...request.Option) (*ec2.DescribeTransitGatewayConnectPeersOutput, error)

DescribeTransitGatewayConnectPeersWithContext mocks base method.

func (*MockEC2API) DescribeTransitGatewayConnects added in v1.19.0

DescribeTransitGatewayConnects mocks base method.

func (*MockEC2API) DescribeTransitGatewayConnectsPages added in v1.19.0

func (m *MockEC2API) DescribeTransitGatewayConnectsPages(arg0 *ec2.DescribeTransitGatewayConnectsInput, arg1 func(*ec2.DescribeTransitGatewayConnectsOutput, bool) bool) error

DescribeTransitGatewayConnectsPages mocks base method.

func (*MockEC2API) DescribeTransitGatewayConnectsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeTransitGatewayConnectsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeTransitGatewayConnectsInput, arg2 func(*ec2.DescribeTransitGatewayConnectsOutput, bool) bool, arg3 ...request.Option) error

DescribeTransitGatewayConnectsPagesWithContext mocks base method.

func (*MockEC2API) DescribeTransitGatewayConnectsRequest added in v1.19.0

func (m *MockEC2API) DescribeTransitGatewayConnectsRequest(arg0 *ec2.DescribeTransitGatewayConnectsInput) (*request.Request, *ec2.DescribeTransitGatewayConnectsOutput)

DescribeTransitGatewayConnectsRequest mocks base method.

func (*MockEC2API) DescribeTransitGatewayConnectsWithContext added in v1.19.0

func (m *MockEC2API) DescribeTransitGatewayConnectsWithContext(arg0 context.Context, arg1 *ec2.DescribeTransitGatewayConnectsInput, arg2 ...request.Option) (*ec2.DescribeTransitGatewayConnectsOutput, error)

DescribeTransitGatewayConnectsWithContext mocks base method.

func (*MockEC2API) DescribeTransitGatewayMulticastDomains added in v1.19.0

DescribeTransitGatewayMulticastDomains mocks base method.

func (*MockEC2API) DescribeTransitGatewayMulticastDomainsPages added in v1.19.0

func (m *MockEC2API) DescribeTransitGatewayMulticastDomainsPages(arg0 *ec2.DescribeTransitGatewayMulticastDomainsInput, arg1 func(*ec2.DescribeTransitGatewayMulticastDomainsOutput, bool) bool) error

DescribeTransitGatewayMulticastDomainsPages mocks base method.

func (*MockEC2API) DescribeTransitGatewayMulticastDomainsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeTransitGatewayMulticastDomainsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeTransitGatewayMulticastDomainsInput, arg2 func(*ec2.DescribeTransitGatewayMulticastDomainsOutput, bool) bool, arg3 ...request.Option) error

DescribeTransitGatewayMulticastDomainsPagesWithContext mocks base method.

func (*MockEC2API) DescribeTransitGatewayMulticastDomainsRequest added in v1.19.0

DescribeTransitGatewayMulticastDomainsRequest mocks base method.

func (*MockEC2API) DescribeTransitGatewayMulticastDomainsWithContext added in v1.19.0

func (m *MockEC2API) DescribeTransitGatewayMulticastDomainsWithContext(arg0 context.Context, arg1 *ec2.DescribeTransitGatewayMulticastDomainsInput, arg2 ...request.Option) (*ec2.DescribeTransitGatewayMulticastDomainsOutput, error)

DescribeTransitGatewayMulticastDomainsWithContext mocks base method.

func (*MockEC2API) DescribeTransitGatewayPeeringAttachments added in v1.19.0

DescribeTransitGatewayPeeringAttachments mocks base method.

func (*MockEC2API) DescribeTransitGatewayPeeringAttachmentsPages added in v1.19.0

func (m *MockEC2API) DescribeTransitGatewayPeeringAttachmentsPages(arg0 *ec2.DescribeTransitGatewayPeeringAttachmentsInput, arg1 func(*ec2.DescribeTransitGatewayPeeringAttachmentsOutput, bool) bool) error

DescribeTransitGatewayPeeringAttachmentsPages mocks base method.

func (*MockEC2API) DescribeTransitGatewayPeeringAttachmentsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeTransitGatewayPeeringAttachmentsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeTransitGatewayPeeringAttachmentsInput, arg2 func(*ec2.DescribeTransitGatewayPeeringAttachmentsOutput, bool) bool, arg3 ...request.Option) error

DescribeTransitGatewayPeeringAttachmentsPagesWithContext mocks base method.

func (*MockEC2API) DescribeTransitGatewayPeeringAttachmentsRequest added in v1.19.0

DescribeTransitGatewayPeeringAttachmentsRequest mocks base method.

func (*MockEC2API) DescribeTransitGatewayPeeringAttachmentsWithContext added in v1.19.0

func (m *MockEC2API) DescribeTransitGatewayPeeringAttachmentsWithContext(arg0 context.Context, arg1 *ec2.DescribeTransitGatewayPeeringAttachmentsInput, arg2 ...request.Option) (*ec2.DescribeTransitGatewayPeeringAttachmentsOutput, error)

DescribeTransitGatewayPeeringAttachmentsWithContext mocks base method.

func (*MockEC2API) DescribeTransitGatewayPolicyTables added in v1.19.0

DescribeTransitGatewayPolicyTables mocks base method.

func (*MockEC2API) DescribeTransitGatewayPolicyTablesPages added in v1.19.0

func (m *MockEC2API) DescribeTransitGatewayPolicyTablesPages(arg0 *ec2.DescribeTransitGatewayPolicyTablesInput, arg1 func(*ec2.DescribeTransitGatewayPolicyTablesOutput, bool) bool) error

DescribeTransitGatewayPolicyTablesPages mocks base method.

func (*MockEC2API) DescribeTransitGatewayPolicyTablesPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeTransitGatewayPolicyTablesPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeTransitGatewayPolicyTablesInput, arg2 func(*ec2.DescribeTransitGatewayPolicyTablesOutput, bool) bool, arg3 ...request.Option) error

DescribeTransitGatewayPolicyTablesPagesWithContext mocks base method.

func (*MockEC2API) DescribeTransitGatewayPolicyTablesRequest added in v1.19.0

DescribeTransitGatewayPolicyTablesRequest mocks base method.

func (*MockEC2API) DescribeTransitGatewayPolicyTablesWithContext added in v1.19.0

func (m *MockEC2API) DescribeTransitGatewayPolicyTablesWithContext(arg0 context.Context, arg1 *ec2.DescribeTransitGatewayPolicyTablesInput, arg2 ...request.Option) (*ec2.DescribeTransitGatewayPolicyTablesOutput, error)

DescribeTransitGatewayPolicyTablesWithContext mocks base method.

func (*MockEC2API) DescribeTransitGatewayRouteTableAnnouncements added in v1.19.0

DescribeTransitGatewayRouteTableAnnouncements mocks base method.

func (*MockEC2API) DescribeTransitGatewayRouteTableAnnouncementsPages added in v1.19.0

func (m *MockEC2API) DescribeTransitGatewayRouteTableAnnouncementsPages(arg0 *ec2.DescribeTransitGatewayRouteTableAnnouncementsInput, arg1 func(*ec2.DescribeTransitGatewayRouteTableAnnouncementsOutput, bool) bool) error

DescribeTransitGatewayRouteTableAnnouncementsPages mocks base method.

func (*MockEC2API) DescribeTransitGatewayRouteTableAnnouncementsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeTransitGatewayRouteTableAnnouncementsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeTransitGatewayRouteTableAnnouncementsInput, arg2 func(*ec2.DescribeTransitGatewayRouteTableAnnouncementsOutput, bool) bool, arg3 ...request.Option) error

DescribeTransitGatewayRouteTableAnnouncementsPagesWithContext mocks base method.

func (*MockEC2API) DescribeTransitGatewayRouteTableAnnouncementsRequest added in v1.19.0

DescribeTransitGatewayRouteTableAnnouncementsRequest mocks base method.

func (*MockEC2API) DescribeTransitGatewayRouteTableAnnouncementsWithContext added in v1.19.0

func (m *MockEC2API) DescribeTransitGatewayRouteTableAnnouncementsWithContext(arg0 context.Context, arg1 *ec2.DescribeTransitGatewayRouteTableAnnouncementsInput, arg2 ...request.Option) (*ec2.DescribeTransitGatewayRouteTableAnnouncementsOutput, error)

DescribeTransitGatewayRouteTableAnnouncementsWithContext mocks base method.

func (*MockEC2API) DescribeTransitGatewayRouteTables added in v1.19.0

DescribeTransitGatewayRouteTables mocks base method.

func (*MockEC2API) DescribeTransitGatewayRouteTablesPages added in v1.19.0

func (m *MockEC2API) DescribeTransitGatewayRouteTablesPages(arg0 *ec2.DescribeTransitGatewayRouteTablesInput, arg1 func(*ec2.DescribeTransitGatewayRouteTablesOutput, bool) bool) error

DescribeTransitGatewayRouteTablesPages mocks base method.

func (*MockEC2API) DescribeTransitGatewayRouteTablesPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeTransitGatewayRouteTablesPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeTransitGatewayRouteTablesInput, arg2 func(*ec2.DescribeTransitGatewayRouteTablesOutput, bool) bool, arg3 ...request.Option) error

DescribeTransitGatewayRouteTablesPagesWithContext mocks base method.

func (*MockEC2API) DescribeTransitGatewayRouteTablesRequest added in v1.19.0

DescribeTransitGatewayRouteTablesRequest mocks base method.

func (*MockEC2API) DescribeTransitGatewayRouteTablesWithContext added in v1.19.0

func (m *MockEC2API) DescribeTransitGatewayRouteTablesWithContext(arg0 context.Context, arg1 *ec2.DescribeTransitGatewayRouteTablesInput, arg2 ...request.Option) (*ec2.DescribeTransitGatewayRouteTablesOutput, error)

DescribeTransitGatewayRouteTablesWithContext mocks base method.

func (*MockEC2API) DescribeTransitGatewayVpcAttachments added in v1.19.0

DescribeTransitGatewayVpcAttachments mocks base method.

func (*MockEC2API) DescribeTransitGatewayVpcAttachmentsPages added in v1.19.0

func (m *MockEC2API) DescribeTransitGatewayVpcAttachmentsPages(arg0 *ec2.DescribeTransitGatewayVpcAttachmentsInput, arg1 func(*ec2.DescribeTransitGatewayVpcAttachmentsOutput, bool) bool) error

DescribeTransitGatewayVpcAttachmentsPages mocks base method.

func (*MockEC2API) DescribeTransitGatewayVpcAttachmentsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeTransitGatewayVpcAttachmentsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeTransitGatewayVpcAttachmentsInput, arg2 func(*ec2.DescribeTransitGatewayVpcAttachmentsOutput, bool) bool, arg3 ...request.Option) error

DescribeTransitGatewayVpcAttachmentsPagesWithContext mocks base method.

func (*MockEC2API) DescribeTransitGatewayVpcAttachmentsRequest added in v1.19.0

DescribeTransitGatewayVpcAttachmentsRequest mocks base method.

func (*MockEC2API) DescribeTransitGatewayVpcAttachmentsWithContext added in v1.19.0

func (m *MockEC2API) DescribeTransitGatewayVpcAttachmentsWithContext(arg0 context.Context, arg1 *ec2.DescribeTransitGatewayVpcAttachmentsInput, arg2 ...request.Option) (*ec2.DescribeTransitGatewayVpcAttachmentsOutput, error)

DescribeTransitGatewayVpcAttachmentsWithContext mocks base method.

func (*MockEC2API) DescribeTransitGateways added in v1.19.0

func (m *MockEC2API) DescribeTransitGateways(arg0 *ec2.DescribeTransitGatewaysInput) (*ec2.DescribeTransitGatewaysOutput, error)

DescribeTransitGateways mocks base method.

func (*MockEC2API) DescribeTransitGatewaysPages added in v1.19.0

func (m *MockEC2API) DescribeTransitGatewaysPages(arg0 *ec2.DescribeTransitGatewaysInput, arg1 func(*ec2.DescribeTransitGatewaysOutput, bool) bool) error

DescribeTransitGatewaysPages mocks base method.

func (*MockEC2API) DescribeTransitGatewaysPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeTransitGatewaysPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeTransitGatewaysInput, arg2 func(*ec2.DescribeTransitGatewaysOutput, bool) bool, arg3 ...request.Option) error

DescribeTransitGatewaysPagesWithContext mocks base method.

func (*MockEC2API) DescribeTransitGatewaysRequest added in v1.19.0

func (m *MockEC2API) DescribeTransitGatewaysRequest(arg0 *ec2.DescribeTransitGatewaysInput) (*request.Request, *ec2.DescribeTransitGatewaysOutput)

DescribeTransitGatewaysRequest mocks base method.

func (*MockEC2API) DescribeTransitGatewaysWithContext added in v1.19.0

func (m *MockEC2API) DescribeTransitGatewaysWithContext(arg0 context.Context, arg1 *ec2.DescribeTransitGatewaysInput, arg2 ...request.Option) (*ec2.DescribeTransitGatewaysOutput, error)

DescribeTransitGatewaysWithContext mocks base method.

func (*MockEC2API) DescribeTrunkInterfaceAssociations added in v1.19.0

DescribeTrunkInterfaceAssociations mocks base method.

func (*MockEC2API) DescribeTrunkInterfaceAssociationsPages added in v1.19.0

func (m *MockEC2API) DescribeTrunkInterfaceAssociationsPages(arg0 *ec2.DescribeTrunkInterfaceAssociationsInput, arg1 func(*ec2.DescribeTrunkInterfaceAssociationsOutput, bool) bool) error

DescribeTrunkInterfaceAssociationsPages mocks base method.

func (*MockEC2API) DescribeTrunkInterfaceAssociationsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeTrunkInterfaceAssociationsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeTrunkInterfaceAssociationsInput, arg2 func(*ec2.DescribeTrunkInterfaceAssociationsOutput, bool) bool, arg3 ...request.Option) error

DescribeTrunkInterfaceAssociationsPagesWithContext mocks base method.

func (*MockEC2API) DescribeTrunkInterfaceAssociationsRequest added in v1.19.0

DescribeTrunkInterfaceAssociationsRequest mocks base method.

func (*MockEC2API) DescribeTrunkInterfaceAssociationsWithContext added in v1.19.0

func (m *MockEC2API) DescribeTrunkInterfaceAssociationsWithContext(arg0 context.Context, arg1 *ec2.DescribeTrunkInterfaceAssociationsInput, arg2 ...request.Option) (*ec2.DescribeTrunkInterfaceAssociationsOutput, error)

DescribeTrunkInterfaceAssociationsWithContext mocks base method.

func (*MockEC2API) DescribeVerifiedAccessEndpoints added in v1.19.0

DescribeVerifiedAccessEndpoints mocks base method.

func (*MockEC2API) DescribeVerifiedAccessEndpointsPages added in v1.19.0

func (m *MockEC2API) DescribeVerifiedAccessEndpointsPages(arg0 *ec2.DescribeVerifiedAccessEndpointsInput, arg1 func(*ec2.DescribeVerifiedAccessEndpointsOutput, bool) bool) error

DescribeVerifiedAccessEndpointsPages mocks base method.

func (*MockEC2API) DescribeVerifiedAccessEndpointsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeVerifiedAccessEndpointsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeVerifiedAccessEndpointsInput, arg2 func(*ec2.DescribeVerifiedAccessEndpointsOutput, bool) bool, arg3 ...request.Option) error

DescribeVerifiedAccessEndpointsPagesWithContext mocks base method.

func (*MockEC2API) DescribeVerifiedAccessEndpointsRequest added in v1.19.0

func (m *MockEC2API) DescribeVerifiedAccessEndpointsRequest(arg0 *ec2.DescribeVerifiedAccessEndpointsInput) (*request.Request, *ec2.DescribeVerifiedAccessEndpointsOutput)

DescribeVerifiedAccessEndpointsRequest mocks base method.

func (*MockEC2API) DescribeVerifiedAccessEndpointsWithContext added in v1.19.0

func (m *MockEC2API) DescribeVerifiedAccessEndpointsWithContext(arg0 context.Context, arg1 *ec2.DescribeVerifiedAccessEndpointsInput, arg2 ...request.Option) (*ec2.DescribeVerifiedAccessEndpointsOutput, error)

DescribeVerifiedAccessEndpointsWithContext mocks base method.

func (*MockEC2API) DescribeVerifiedAccessGroups added in v1.19.0

DescribeVerifiedAccessGroups mocks base method.

func (*MockEC2API) DescribeVerifiedAccessGroupsPages added in v1.19.0

func (m *MockEC2API) DescribeVerifiedAccessGroupsPages(arg0 *ec2.DescribeVerifiedAccessGroupsInput, arg1 func(*ec2.DescribeVerifiedAccessGroupsOutput, bool) bool) error

DescribeVerifiedAccessGroupsPages mocks base method.

func (*MockEC2API) DescribeVerifiedAccessGroupsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeVerifiedAccessGroupsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeVerifiedAccessGroupsInput, arg2 func(*ec2.DescribeVerifiedAccessGroupsOutput, bool) bool, arg3 ...request.Option) error

DescribeVerifiedAccessGroupsPagesWithContext mocks base method.

func (*MockEC2API) DescribeVerifiedAccessGroupsRequest added in v1.19.0

func (m *MockEC2API) DescribeVerifiedAccessGroupsRequest(arg0 *ec2.DescribeVerifiedAccessGroupsInput) (*request.Request, *ec2.DescribeVerifiedAccessGroupsOutput)

DescribeVerifiedAccessGroupsRequest mocks base method.

func (*MockEC2API) DescribeVerifiedAccessGroupsWithContext added in v1.19.0

func (m *MockEC2API) DescribeVerifiedAccessGroupsWithContext(arg0 context.Context, arg1 *ec2.DescribeVerifiedAccessGroupsInput, arg2 ...request.Option) (*ec2.DescribeVerifiedAccessGroupsOutput, error)

DescribeVerifiedAccessGroupsWithContext mocks base method.

func (*MockEC2API) DescribeVerifiedAccessInstanceLoggingConfigurations added in v1.19.0

DescribeVerifiedAccessInstanceLoggingConfigurations mocks base method.

func (*MockEC2API) DescribeVerifiedAccessInstanceLoggingConfigurationsPages added in v1.19.0

func (m *MockEC2API) DescribeVerifiedAccessInstanceLoggingConfigurationsPages(arg0 *ec2.DescribeVerifiedAccessInstanceLoggingConfigurationsInput, arg1 func(*ec2.DescribeVerifiedAccessInstanceLoggingConfigurationsOutput, bool) bool) error

DescribeVerifiedAccessInstanceLoggingConfigurationsPages mocks base method.

func (*MockEC2API) DescribeVerifiedAccessInstanceLoggingConfigurationsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeVerifiedAccessInstanceLoggingConfigurationsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeVerifiedAccessInstanceLoggingConfigurationsInput, arg2 func(*ec2.DescribeVerifiedAccessInstanceLoggingConfigurationsOutput, bool) bool, arg3 ...request.Option) error

DescribeVerifiedAccessInstanceLoggingConfigurationsPagesWithContext mocks base method.

func (*MockEC2API) DescribeVerifiedAccessInstanceLoggingConfigurationsRequest added in v1.19.0

DescribeVerifiedAccessInstanceLoggingConfigurationsRequest mocks base method.

func (*MockEC2API) DescribeVerifiedAccessInstanceLoggingConfigurationsWithContext added in v1.19.0

func (m *MockEC2API) DescribeVerifiedAccessInstanceLoggingConfigurationsWithContext(arg0 context.Context, arg1 *ec2.DescribeVerifiedAccessInstanceLoggingConfigurationsInput, arg2 ...request.Option) (*ec2.DescribeVerifiedAccessInstanceLoggingConfigurationsOutput, error)

DescribeVerifiedAccessInstanceLoggingConfigurationsWithContext mocks base method.

func (*MockEC2API) DescribeVerifiedAccessInstances added in v1.19.0

DescribeVerifiedAccessInstances mocks base method.

func (*MockEC2API) DescribeVerifiedAccessInstancesPages added in v1.19.0

func (m *MockEC2API) DescribeVerifiedAccessInstancesPages(arg0 *ec2.DescribeVerifiedAccessInstancesInput, arg1 func(*ec2.DescribeVerifiedAccessInstancesOutput, bool) bool) error

DescribeVerifiedAccessInstancesPages mocks base method.

func (*MockEC2API) DescribeVerifiedAccessInstancesPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeVerifiedAccessInstancesPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeVerifiedAccessInstancesInput, arg2 func(*ec2.DescribeVerifiedAccessInstancesOutput, bool) bool, arg3 ...request.Option) error

DescribeVerifiedAccessInstancesPagesWithContext mocks base method.

func (*MockEC2API) DescribeVerifiedAccessInstancesRequest added in v1.19.0

func (m *MockEC2API) DescribeVerifiedAccessInstancesRequest(arg0 *ec2.DescribeVerifiedAccessInstancesInput) (*request.Request, *ec2.DescribeVerifiedAccessInstancesOutput)

DescribeVerifiedAccessInstancesRequest mocks base method.

func (*MockEC2API) DescribeVerifiedAccessInstancesWithContext added in v1.19.0

func (m *MockEC2API) DescribeVerifiedAccessInstancesWithContext(arg0 context.Context, arg1 *ec2.DescribeVerifiedAccessInstancesInput, arg2 ...request.Option) (*ec2.DescribeVerifiedAccessInstancesOutput, error)

DescribeVerifiedAccessInstancesWithContext mocks base method.

func (*MockEC2API) DescribeVerifiedAccessTrustProviders added in v1.19.0

DescribeVerifiedAccessTrustProviders mocks base method.

func (*MockEC2API) DescribeVerifiedAccessTrustProvidersPages added in v1.19.0

func (m *MockEC2API) DescribeVerifiedAccessTrustProvidersPages(arg0 *ec2.DescribeVerifiedAccessTrustProvidersInput, arg1 func(*ec2.DescribeVerifiedAccessTrustProvidersOutput, bool) bool) error

DescribeVerifiedAccessTrustProvidersPages mocks base method.

func (*MockEC2API) DescribeVerifiedAccessTrustProvidersPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeVerifiedAccessTrustProvidersPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeVerifiedAccessTrustProvidersInput, arg2 func(*ec2.DescribeVerifiedAccessTrustProvidersOutput, bool) bool, arg3 ...request.Option) error

DescribeVerifiedAccessTrustProvidersPagesWithContext mocks base method.

func (*MockEC2API) DescribeVerifiedAccessTrustProvidersRequest added in v1.19.0

DescribeVerifiedAccessTrustProvidersRequest mocks base method.

func (*MockEC2API) DescribeVerifiedAccessTrustProvidersWithContext added in v1.19.0

func (m *MockEC2API) DescribeVerifiedAccessTrustProvidersWithContext(arg0 context.Context, arg1 *ec2.DescribeVerifiedAccessTrustProvidersInput, arg2 ...request.Option) (*ec2.DescribeVerifiedAccessTrustProvidersOutput, error)

DescribeVerifiedAccessTrustProvidersWithContext mocks base method.

func (*MockEC2API) DescribeVolumeAttribute added in v1.19.0

func (m *MockEC2API) DescribeVolumeAttribute(arg0 *ec2.DescribeVolumeAttributeInput) (*ec2.DescribeVolumeAttributeOutput, error)

DescribeVolumeAttribute mocks base method.

func (*MockEC2API) DescribeVolumeAttributeRequest added in v1.19.0

func (m *MockEC2API) DescribeVolumeAttributeRequest(arg0 *ec2.DescribeVolumeAttributeInput) (*request.Request, *ec2.DescribeVolumeAttributeOutput)

DescribeVolumeAttributeRequest mocks base method.

func (*MockEC2API) DescribeVolumeAttributeWithContext added in v1.19.0

func (m *MockEC2API) DescribeVolumeAttributeWithContext(arg0 context.Context, arg1 *ec2.DescribeVolumeAttributeInput, arg2 ...request.Option) (*ec2.DescribeVolumeAttributeOutput, error)

DescribeVolumeAttributeWithContext mocks base method.

func (*MockEC2API) DescribeVolumeStatus added in v1.19.0

func (m *MockEC2API) DescribeVolumeStatus(arg0 *ec2.DescribeVolumeStatusInput) (*ec2.DescribeVolumeStatusOutput, error)

DescribeVolumeStatus mocks base method.

func (*MockEC2API) DescribeVolumeStatusPages added in v1.19.0

func (m *MockEC2API) DescribeVolumeStatusPages(arg0 *ec2.DescribeVolumeStatusInput, arg1 func(*ec2.DescribeVolumeStatusOutput, bool) bool) error

DescribeVolumeStatusPages mocks base method.

func (*MockEC2API) DescribeVolumeStatusPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeVolumeStatusPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeVolumeStatusInput, arg2 func(*ec2.DescribeVolumeStatusOutput, bool) bool, arg3 ...request.Option) error

DescribeVolumeStatusPagesWithContext mocks base method.

func (*MockEC2API) DescribeVolumeStatusRequest added in v1.19.0

func (m *MockEC2API) DescribeVolumeStatusRequest(arg0 *ec2.DescribeVolumeStatusInput) (*request.Request, *ec2.DescribeVolumeStatusOutput)

DescribeVolumeStatusRequest mocks base method.

func (*MockEC2API) DescribeVolumeStatusWithContext added in v1.19.0

func (m *MockEC2API) DescribeVolumeStatusWithContext(arg0 context.Context, arg1 *ec2.DescribeVolumeStatusInput, arg2 ...request.Option) (*ec2.DescribeVolumeStatusOutput, error)

DescribeVolumeStatusWithContext mocks base method.

func (*MockEC2API) DescribeVolumes added in v1.19.0

func (m *MockEC2API) DescribeVolumes(arg0 *ec2.DescribeVolumesInput) (*ec2.DescribeVolumesOutput, error)

DescribeVolumes mocks base method.

func (*MockEC2API) DescribeVolumesModifications added in v1.19.0

DescribeVolumesModifications mocks base method.

func (*MockEC2API) DescribeVolumesModificationsPages added in v1.19.0

func (m *MockEC2API) DescribeVolumesModificationsPages(arg0 *ec2.DescribeVolumesModificationsInput, arg1 func(*ec2.DescribeVolumesModificationsOutput, bool) bool) error

DescribeVolumesModificationsPages mocks base method.

func (*MockEC2API) DescribeVolumesModificationsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeVolumesModificationsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeVolumesModificationsInput, arg2 func(*ec2.DescribeVolumesModificationsOutput, bool) bool, arg3 ...request.Option) error

DescribeVolumesModificationsPagesWithContext mocks base method.

func (*MockEC2API) DescribeVolumesModificationsRequest added in v1.19.0

func (m *MockEC2API) DescribeVolumesModificationsRequest(arg0 *ec2.DescribeVolumesModificationsInput) (*request.Request, *ec2.DescribeVolumesModificationsOutput)

DescribeVolumesModificationsRequest mocks base method.

func (*MockEC2API) DescribeVolumesModificationsWithContext added in v1.19.0

func (m *MockEC2API) DescribeVolumesModificationsWithContext(arg0 context.Context, arg1 *ec2.DescribeVolumesModificationsInput, arg2 ...request.Option) (*ec2.DescribeVolumesModificationsOutput, error)

DescribeVolumesModificationsWithContext mocks base method.

func (*MockEC2API) DescribeVolumesPages added in v1.19.0

func (m *MockEC2API) DescribeVolumesPages(arg0 *ec2.DescribeVolumesInput, arg1 func(*ec2.DescribeVolumesOutput, bool) bool) error

DescribeVolumesPages mocks base method.

func (*MockEC2API) DescribeVolumesPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeVolumesPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeVolumesInput, arg2 func(*ec2.DescribeVolumesOutput, bool) bool, arg3 ...request.Option) error

DescribeVolumesPagesWithContext mocks base method.

func (*MockEC2API) DescribeVolumesRequest added in v1.19.0

func (m *MockEC2API) DescribeVolumesRequest(arg0 *ec2.DescribeVolumesInput) (*request.Request, *ec2.DescribeVolumesOutput)

DescribeVolumesRequest mocks base method.

func (*MockEC2API) DescribeVolumesWithContext added in v1.19.0

func (m *MockEC2API) DescribeVolumesWithContext(arg0 context.Context, arg1 *ec2.DescribeVolumesInput, arg2 ...request.Option) (*ec2.DescribeVolumesOutput, error)

DescribeVolumesWithContext mocks base method.

func (*MockEC2API) DescribeVpcAttribute added in v1.19.0

func (m *MockEC2API) DescribeVpcAttribute(arg0 *ec2.DescribeVpcAttributeInput) (*ec2.DescribeVpcAttributeOutput, error)

DescribeVpcAttribute mocks base method.

func (*MockEC2API) DescribeVpcAttributeRequest added in v1.19.0

func (m *MockEC2API) DescribeVpcAttributeRequest(arg0 *ec2.DescribeVpcAttributeInput) (*request.Request, *ec2.DescribeVpcAttributeOutput)

DescribeVpcAttributeRequest mocks base method.

func (*MockEC2API) DescribeVpcAttributeWithContext added in v1.19.0

func (m *MockEC2API) DescribeVpcAttributeWithContext(arg0 context.Context, arg1 *ec2.DescribeVpcAttributeInput, arg2 ...request.Option) (*ec2.DescribeVpcAttributeOutput, error)

DescribeVpcAttributeWithContext mocks base method.

func (m *MockEC2API) DescribeVpcClassicLink(arg0 *ec2.DescribeVpcClassicLinkInput) (*ec2.DescribeVpcClassicLinkOutput, error)

DescribeVpcClassicLink mocks base method.

func (*MockEC2API) DescribeVpcClassicLinkDnsSupport added in v1.19.0

DescribeVpcClassicLinkDnsSupport mocks base method.

func (*MockEC2API) DescribeVpcClassicLinkDnsSupportPages added in v1.19.0

func (m *MockEC2API) DescribeVpcClassicLinkDnsSupportPages(arg0 *ec2.DescribeVpcClassicLinkDnsSupportInput, arg1 func(*ec2.DescribeVpcClassicLinkDnsSupportOutput, bool) bool) error

DescribeVpcClassicLinkDnsSupportPages mocks base method.

func (*MockEC2API) DescribeVpcClassicLinkDnsSupportPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeVpcClassicLinkDnsSupportPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeVpcClassicLinkDnsSupportInput, arg2 func(*ec2.DescribeVpcClassicLinkDnsSupportOutput, bool) bool, arg3 ...request.Option) error

DescribeVpcClassicLinkDnsSupportPagesWithContext mocks base method.

func (*MockEC2API) DescribeVpcClassicLinkDnsSupportRequest added in v1.19.0

func (m *MockEC2API) DescribeVpcClassicLinkDnsSupportRequest(arg0 *ec2.DescribeVpcClassicLinkDnsSupportInput) (*request.Request, *ec2.DescribeVpcClassicLinkDnsSupportOutput)

DescribeVpcClassicLinkDnsSupportRequest mocks base method.

func (*MockEC2API) DescribeVpcClassicLinkDnsSupportWithContext added in v1.19.0

func (m *MockEC2API) DescribeVpcClassicLinkDnsSupportWithContext(arg0 context.Context, arg1 *ec2.DescribeVpcClassicLinkDnsSupportInput, arg2 ...request.Option) (*ec2.DescribeVpcClassicLinkDnsSupportOutput, error)

DescribeVpcClassicLinkDnsSupportWithContext mocks base method.

func (*MockEC2API) DescribeVpcClassicLinkRequest added in v1.19.0

func (m *MockEC2API) DescribeVpcClassicLinkRequest(arg0 *ec2.DescribeVpcClassicLinkInput) (*request.Request, *ec2.DescribeVpcClassicLinkOutput)

DescribeVpcClassicLinkRequest mocks base method.

func (*MockEC2API) DescribeVpcClassicLinkWithContext added in v1.19.0

func (m *MockEC2API) DescribeVpcClassicLinkWithContext(arg0 context.Context, arg1 *ec2.DescribeVpcClassicLinkInput, arg2 ...request.Option) (*ec2.DescribeVpcClassicLinkOutput, error)

DescribeVpcClassicLinkWithContext mocks base method.

func (*MockEC2API) DescribeVpcEndpointConnectionNotifications added in v1.19.0

DescribeVpcEndpointConnectionNotifications mocks base method.

func (*MockEC2API) DescribeVpcEndpointConnectionNotificationsPages added in v1.19.0

func (m *MockEC2API) DescribeVpcEndpointConnectionNotificationsPages(arg0 *ec2.DescribeVpcEndpointConnectionNotificationsInput, arg1 func(*ec2.DescribeVpcEndpointConnectionNotificationsOutput, bool) bool) error

DescribeVpcEndpointConnectionNotificationsPages mocks base method.

func (*MockEC2API) DescribeVpcEndpointConnectionNotificationsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeVpcEndpointConnectionNotificationsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeVpcEndpointConnectionNotificationsInput, arg2 func(*ec2.DescribeVpcEndpointConnectionNotificationsOutput, bool) bool, arg3 ...request.Option) error

DescribeVpcEndpointConnectionNotificationsPagesWithContext mocks base method.

func (*MockEC2API) DescribeVpcEndpointConnectionNotificationsRequest added in v1.19.0

DescribeVpcEndpointConnectionNotificationsRequest mocks base method.

func (*MockEC2API) DescribeVpcEndpointConnectionNotificationsWithContext added in v1.19.0

func (m *MockEC2API) DescribeVpcEndpointConnectionNotificationsWithContext(arg0 context.Context, arg1 *ec2.DescribeVpcEndpointConnectionNotificationsInput, arg2 ...request.Option) (*ec2.DescribeVpcEndpointConnectionNotificationsOutput, error)

DescribeVpcEndpointConnectionNotificationsWithContext mocks base method.

func (*MockEC2API) DescribeVpcEndpointConnections added in v1.19.0

DescribeVpcEndpointConnections mocks base method.

func (*MockEC2API) DescribeVpcEndpointConnectionsPages added in v1.19.0

func (m *MockEC2API) DescribeVpcEndpointConnectionsPages(arg0 *ec2.DescribeVpcEndpointConnectionsInput, arg1 func(*ec2.DescribeVpcEndpointConnectionsOutput, bool) bool) error

DescribeVpcEndpointConnectionsPages mocks base method.

func (*MockEC2API) DescribeVpcEndpointConnectionsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeVpcEndpointConnectionsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeVpcEndpointConnectionsInput, arg2 func(*ec2.DescribeVpcEndpointConnectionsOutput, bool) bool, arg3 ...request.Option) error

DescribeVpcEndpointConnectionsPagesWithContext mocks base method.

func (*MockEC2API) DescribeVpcEndpointConnectionsRequest added in v1.19.0

func (m *MockEC2API) DescribeVpcEndpointConnectionsRequest(arg0 *ec2.DescribeVpcEndpointConnectionsInput) (*request.Request, *ec2.DescribeVpcEndpointConnectionsOutput)

DescribeVpcEndpointConnectionsRequest mocks base method.

func (*MockEC2API) DescribeVpcEndpointConnectionsWithContext added in v1.19.0

func (m *MockEC2API) DescribeVpcEndpointConnectionsWithContext(arg0 context.Context, arg1 *ec2.DescribeVpcEndpointConnectionsInput, arg2 ...request.Option) (*ec2.DescribeVpcEndpointConnectionsOutput, error)

DescribeVpcEndpointConnectionsWithContext mocks base method.

func (*MockEC2API) DescribeVpcEndpointServiceConfigurations added in v1.19.0

DescribeVpcEndpointServiceConfigurations mocks base method.

func (*MockEC2API) DescribeVpcEndpointServiceConfigurationsPages added in v1.19.0

func (m *MockEC2API) DescribeVpcEndpointServiceConfigurationsPages(arg0 *ec2.DescribeVpcEndpointServiceConfigurationsInput, arg1 func(*ec2.DescribeVpcEndpointServiceConfigurationsOutput, bool) bool) error

DescribeVpcEndpointServiceConfigurationsPages mocks base method.

func (*MockEC2API) DescribeVpcEndpointServiceConfigurationsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeVpcEndpointServiceConfigurationsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeVpcEndpointServiceConfigurationsInput, arg2 func(*ec2.DescribeVpcEndpointServiceConfigurationsOutput, bool) bool, arg3 ...request.Option) error

DescribeVpcEndpointServiceConfigurationsPagesWithContext mocks base method.

func (*MockEC2API) DescribeVpcEndpointServiceConfigurationsRequest added in v1.19.0

DescribeVpcEndpointServiceConfigurationsRequest mocks base method.

func (*MockEC2API) DescribeVpcEndpointServiceConfigurationsWithContext added in v1.19.0

func (m *MockEC2API) DescribeVpcEndpointServiceConfigurationsWithContext(arg0 context.Context, arg1 *ec2.DescribeVpcEndpointServiceConfigurationsInput, arg2 ...request.Option) (*ec2.DescribeVpcEndpointServiceConfigurationsOutput, error)

DescribeVpcEndpointServiceConfigurationsWithContext mocks base method.

func (*MockEC2API) DescribeVpcEndpointServicePermissions added in v1.19.0

DescribeVpcEndpointServicePermissions mocks base method.

func (*MockEC2API) DescribeVpcEndpointServicePermissionsPages added in v1.19.0

func (m *MockEC2API) DescribeVpcEndpointServicePermissionsPages(arg0 *ec2.DescribeVpcEndpointServicePermissionsInput, arg1 func(*ec2.DescribeVpcEndpointServicePermissionsOutput, bool) bool) error

DescribeVpcEndpointServicePermissionsPages mocks base method.

func (*MockEC2API) DescribeVpcEndpointServicePermissionsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeVpcEndpointServicePermissionsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeVpcEndpointServicePermissionsInput, arg2 func(*ec2.DescribeVpcEndpointServicePermissionsOutput, bool) bool, arg3 ...request.Option) error

DescribeVpcEndpointServicePermissionsPagesWithContext mocks base method.

func (*MockEC2API) DescribeVpcEndpointServicePermissionsRequest added in v1.19.0

DescribeVpcEndpointServicePermissionsRequest mocks base method.

func (*MockEC2API) DescribeVpcEndpointServicePermissionsWithContext added in v1.19.0

func (m *MockEC2API) DescribeVpcEndpointServicePermissionsWithContext(arg0 context.Context, arg1 *ec2.DescribeVpcEndpointServicePermissionsInput, arg2 ...request.Option) (*ec2.DescribeVpcEndpointServicePermissionsOutput, error)

DescribeVpcEndpointServicePermissionsWithContext mocks base method.

func (*MockEC2API) DescribeVpcEndpointServices added in v1.19.0

DescribeVpcEndpointServices mocks base method.

func (*MockEC2API) DescribeVpcEndpointServicesRequest added in v1.19.0

func (m *MockEC2API) DescribeVpcEndpointServicesRequest(arg0 *ec2.DescribeVpcEndpointServicesInput) (*request.Request, *ec2.DescribeVpcEndpointServicesOutput)

DescribeVpcEndpointServicesRequest mocks base method.

func (*MockEC2API) DescribeVpcEndpointServicesWithContext added in v1.19.0

func (m *MockEC2API) DescribeVpcEndpointServicesWithContext(arg0 context.Context, arg1 *ec2.DescribeVpcEndpointServicesInput, arg2 ...request.Option) (*ec2.DescribeVpcEndpointServicesOutput, error)

DescribeVpcEndpointServicesWithContext mocks base method.

func (*MockEC2API) DescribeVpcEndpoints added in v1.19.0

func (m *MockEC2API) DescribeVpcEndpoints(arg0 *ec2.DescribeVpcEndpointsInput) (*ec2.DescribeVpcEndpointsOutput, error)

DescribeVpcEndpoints mocks base method.

func (*MockEC2API) DescribeVpcEndpointsPages added in v1.19.0

func (m *MockEC2API) DescribeVpcEndpointsPages(arg0 *ec2.DescribeVpcEndpointsInput, arg1 func(*ec2.DescribeVpcEndpointsOutput, bool) bool) error

DescribeVpcEndpointsPages mocks base method.

func (*MockEC2API) DescribeVpcEndpointsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeVpcEndpointsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeVpcEndpointsInput, arg2 func(*ec2.DescribeVpcEndpointsOutput, bool) bool, arg3 ...request.Option) error

DescribeVpcEndpointsPagesWithContext mocks base method.

func (*MockEC2API) DescribeVpcEndpointsRequest added in v1.19.0

func (m *MockEC2API) DescribeVpcEndpointsRequest(arg0 *ec2.DescribeVpcEndpointsInput) (*request.Request, *ec2.DescribeVpcEndpointsOutput)

DescribeVpcEndpointsRequest mocks base method.

func (*MockEC2API) DescribeVpcEndpointsWithContext added in v1.19.0

func (m *MockEC2API) DescribeVpcEndpointsWithContext(arg0 context.Context, arg1 *ec2.DescribeVpcEndpointsInput, arg2 ...request.Option) (*ec2.DescribeVpcEndpointsOutput, error)

DescribeVpcEndpointsWithContext mocks base method.

func (*MockEC2API) DescribeVpcPeeringConnections added in v1.19.0

DescribeVpcPeeringConnections mocks base method.

func (*MockEC2API) DescribeVpcPeeringConnectionsPages added in v1.19.0

func (m *MockEC2API) DescribeVpcPeeringConnectionsPages(arg0 *ec2.DescribeVpcPeeringConnectionsInput, arg1 func(*ec2.DescribeVpcPeeringConnectionsOutput, bool) bool) error

DescribeVpcPeeringConnectionsPages mocks base method.

func (*MockEC2API) DescribeVpcPeeringConnectionsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeVpcPeeringConnectionsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeVpcPeeringConnectionsInput, arg2 func(*ec2.DescribeVpcPeeringConnectionsOutput, bool) bool, arg3 ...request.Option) error

DescribeVpcPeeringConnectionsPagesWithContext mocks base method.

func (*MockEC2API) DescribeVpcPeeringConnectionsRequest added in v1.19.0

func (m *MockEC2API) DescribeVpcPeeringConnectionsRequest(arg0 *ec2.DescribeVpcPeeringConnectionsInput) (*request.Request, *ec2.DescribeVpcPeeringConnectionsOutput)

DescribeVpcPeeringConnectionsRequest mocks base method.

func (*MockEC2API) DescribeVpcPeeringConnectionsWithContext added in v1.19.0

func (m *MockEC2API) DescribeVpcPeeringConnectionsWithContext(arg0 context.Context, arg1 *ec2.DescribeVpcPeeringConnectionsInput, arg2 ...request.Option) (*ec2.DescribeVpcPeeringConnectionsOutput, error)

DescribeVpcPeeringConnectionsWithContext mocks base method.

func (*MockEC2API) DescribeVpcs added in v1.19.0

func (m *MockEC2API) DescribeVpcs(arg0 *ec2.DescribeVpcsInput) (*ec2.DescribeVpcsOutput, error)

DescribeVpcs mocks base method.

func (*MockEC2API) DescribeVpcsPages added in v1.19.0

func (m *MockEC2API) DescribeVpcsPages(arg0 *ec2.DescribeVpcsInput, arg1 func(*ec2.DescribeVpcsOutput, bool) bool) error

DescribeVpcsPages mocks base method.

func (*MockEC2API) DescribeVpcsPagesWithContext added in v1.19.0

func (m *MockEC2API) DescribeVpcsPagesWithContext(arg0 context.Context, arg1 *ec2.DescribeVpcsInput, arg2 func(*ec2.DescribeVpcsOutput, bool) bool, arg3 ...request.Option) error

DescribeVpcsPagesWithContext mocks base method.

func (*MockEC2API) DescribeVpcsRequest added in v1.19.0

func (m *MockEC2API) DescribeVpcsRequest(arg0 *ec2.DescribeVpcsInput) (*request.Request, *ec2.DescribeVpcsOutput)

DescribeVpcsRequest mocks base method.

func (*MockEC2API) DescribeVpcsWithContext added in v1.19.0

func (m *MockEC2API) DescribeVpcsWithContext(arg0 context.Context, arg1 *ec2.DescribeVpcsInput, arg2 ...request.Option) (*ec2.DescribeVpcsOutput, error)

DescribeVpcsWithContext mocks base method.

func (*MockEC2API) DescribeVpnConnections added in v1.19.0

func (m *MockEC2API) DescribeVpnConnections(arg0 *ec2.DescribeVpnConnectionsInput) (*ec2.DescribeVpnConnectionsOutput, error)

DescribeVpnConnections mocks base method.

func (*MockEC2API) DescribeVpnConnectionsRequest added in v1.19.0

func (m *MockEC2API) DescribeVpnConnectionsRequest(arg0 *ec2.DescribeVpnConnectionsInput) (*request.Request, *ec2.DescribeVpnConnectionsOutput)

DescribeVpnConnectionsRequest mocks base method.

func (*MockEC2API) DescribeVpnConnectionsWithContext added in v1.19.0

func (m *MockEC2API) DescribeVpnConnectionsWithContext(arg0 context.Context, arg1 *ec2.DescribeVpnConnectionsInput, arg2 ...request.Option) (*ec2.DescribeVpnConnectionsOutput, error)

DescribeVpnConnectionsWithContext mocks base method.

func (*MockEC2API) DescribeVpnGateways added in v1.19.0

func (m *MockEC2API) DescribeVpnGateways(arg0 *ec2.DescribeVpnGatewaysInput) (*ec2.DescribeVpnGatewaysOutput, error)

DescribeVpnGateways mocks base method.

func (*MockEC2API) DescribeVpnGatewaysRequest added in v1.19.0

func (m *MockEC2API) DescribeVpnGatewaysRequest(arg0 *ec2.DescribeVpnGatewaysInput) (*request.Request, *ec2.DescribeVpnGatewaysOutput)

DescribeVpnGatewaysRequest mocks base method.

func (*MockEC2API) DescribeVpnGatewaysWithContext added in v1.19.0

func (m *MockEC2API) DescribeVpnGatewaysWithContext(arg0 context.Context, arg1 *ec2.DescribeVpnGatewaysInput, arg2 ...request.Option) (*ec2.DescribeVpnGatewaysOutput, error)

DescribeVpnGatewaysWithContext mocks base method.

func (*MockEC2API) DetachClassicLinkVpc added in v1.19.0

func (m *MockEC2API) DetachClassicLinkVpc(arg0 *ec2.DetachClassicLinkVpcInput) (*ec2.DetachClassicLinkVpcOutput, error)

DetachClassicLinkVpc mocks base method.

func (*MockEC2API) DetachClassicLinkVpcRequest added in v1.19.0

func (m *MockEC2API) DetachClassicLinkVpcRequest(arg0 *ec2.DetachClassicLinkVpcInput) (*request.Request, *ec2.DetachClassicLinkVpcOutput)

DetachClassicLinkVpcRequest mocks base method.

func (*MockEC2API) DetachClassicLinkVpcWithContext added in v1.19.0

func (m *MockEC2API) DetachClassicLinkVpcWithContext(arg0 context.Context, arg1 *ec2.DetachClassicLinkVpcInput, arg2 ...request.Option) (*ec2.DetachClassicLinkVpcOutput, error)

DetachClassicLinkVpcWithContext mocks base method.

func (*MockEC2API) DetachInternetGateway added in v1.19.0

func (m *MockEC2API) DetachInternetGateway(arg0 *ec2.DetachInternetGatewayInput) (*ec2.DetachInternetGatewayOutput, error)

DetachInternetGateway mocks base method.

func (*MockEC2API) DetachInternetGatewayRequest added in v1.19.0

func (m *MockEC2API) DetachInternetGatewayRequest(arg0 *ec2.DetachInternetGatewayInput) (*request.Request, *ec2.DetachInternetGatewayOutput)

DetachInternetGatewayRequest mocks base method.

func (*MockEC2API) DetachInternetGatewayWithContext added in v1.19.0

func (m *MockEC2API) DetachInternetGatewayWithContext(arg0 context.Context, arg1 *ec2.DetachInternetGatewayInput, arg2 ...request.Option) (*ec2.DetachInternetGatewayOutput, error)

DetachInternetGatewayWithContext mocks base method.

func (*MockEC2API) DetachNetworkInterface added in v1.19.0

func (m *MockEC2API) DetachNetworkInterface(arg0 *ec2.DetachNetworkInterfaceInput) (*ec2.DetachNetworkInterfaceOutput, error)

DetachNetworkInterface mocks base method.

func (*MockEC2API) DetachNetworkInterfaceRequest added in v1.19.0

func (m *MockEC2API) DetachNetworkInterfaceRequest(arg0 *ec2.DetachNetworkInterfaceInput) (*request.Request, *ec2.DetachNetworkInterfaceOutput)

DetachNetworkInterfaceRequest mocks base method.

func (*MockEC2API) DetachNetworkInterfaceWithContext added in v1.19.0

func (m *MockEC2API) DetachNetworkInterfaceWithContext(arg0 context.Context, arg1 *ec2.DetachNetworkInterfaceInput, arg2 ...request.Option) (*ec2.DetachNetworkInterfaceOutput, error)

DetachNetworkInterfaceWithContext mocks base method.

func (*MockEC2API) DetachVerifiedAccessTrustProvider added in v1.19.0

DetachVerifiedAccessTrustProvider mocks base method.

func (*MockEC2API) DetachVerifiedAccessTrustProviderRequest added in v1.19.0

DetachVerifiedAccessTrustProviderRequest mocks base method.

func (*MockEC2API) DetachVerifiedAccessTrustProviderWithContext added in v1.19.0

func (m *MockEC2API) DetachVerifiedAccessTrustProviderWithContext(arg0 context.Context, arg1 *ec2.DetachVerifiedAccessTrustProviderInput, arg2 ...request.Option) (*ec2.DetachVerifiedAccessTrustProviderOutput, error)

DetachVerifiedAccessTrustProviderWithContext mocks base method.

func (*MockEC2API) DetachVolume added in v1.19.0

func (m *MockEC2API) DetachVolume(arg0 *ec2.DetachVolumeInput) (*ec2.VolumeAttachment, error)

DetachVolume mocks base method.

func (*MockEC2API) DetachVolumeRequest added in v1.19.0

func (m *MockEC2API) DetachVolumeRequest(arg0 *ec2.DetachVolumeInput) (*request.Request, *ec2.VolumeAttachment)

DetachVolumeRequest mocks base method.

func (*MockEC2API) DetachVolumeWithContext added in v1.19.0

func (m *MockEC2API) DetachVolumeWithContext(arg0 context.Context, arg1 *ec2.DetachVolumeInput, arg2 ...request.Option) (*ec2.VolumeAttachment, error)

DetachVolumeWithContext mocks base method.

func (*MockEC2API) DetachVpnGateway added in v1.19.0

func (m *MockEC2API) DetachVpnGateway(arg0 *ec2.DetachVpnGatewayInput) (*ec2.DetachVpnGatewayOutput, error)

DetachVpnGateway mocks base method.

func (*MockEC2API) DetachVpnGatewayRequest added in v1.19.0

func (m *MockEC2API) DetachVpnGatewayRequest(arg0 *ec2.DetachVpnGatewayInput) (*request.Request, *ec2.DetachVpnGatewayOutput)

DetachVpnGatewayRequest mocks base method.

func (*MockEC2API) DetachVpnGatewayWithContext added in v1.19.0

func (m *MockEC2API) DetachVpnGatewayWithContext(arg0 context.Context, arg1 *ec2.DetachVpnGatewayInput, arg2 ...request.Option) (*ec2.DetachVpnGatewayOutput, error)

DetachVpnGatewayWithContext mocks base method.

func (*MockEC2API) DisableAddressTransfer added in v1.19.0

func (m *MockEC2API) DisableAddressTransfer(arg0 *ec2.DisableAddressTransferInput) (*ec2.DisableAddressTransferOutput, error)

DisableAddressTransfer mocks base method.

func (*MockEC2API) DisableAddressTransferRequest added in v1.19.0

func (m *MockEC2API) DisableAddressTransferRequest(arg0 *ec2.DisableAddressTransferInput) (*request.Request, *ec2.DisableAddressTransferOutput)

DisableAddressTransferRequest mocks base method.

func (*MockEC2API) DisableAddressTransferWithContext added in v1.19.0

func (m *MockEC2API) DisableAddressTransferWithContext(arg0 context.Context, arg1 *ec2.DisableAddressTransferInput, arg2 ...request.Option) (*ec2.DisableAddressTransferOutput, error)

DisableAddressTransferWithContext mocks base method.

func (*MockEC2API) DisableAwsNetworkPerformanceMetricSubscription added in v1.19.0

DisableAwsNetworkPerformanceMetricSubscription mocks base method.

func (*MockEC2API) DisableAwsNetworkPerformanceMetricSubscriptionRequest added in v1.19.0

DisableAwsNetworkPerformanceMetricSubscriptionRequest mocks base method.

func (*MockEC2API) DisableAwsNetworkPerformanceMetricSubscriptionWithContext added in v1.19.0

func (m *MockEC2API) DisableAwsNetworkPerformanceMetricSubscriptionWithContext(arg0 context.Context, arg1 *ec2.DisableAwsNetworkPerformanceMetricSubscriptionInput, arg2 ...request.Option) (*ec2.DisableAwsNetworkPerformanceMetricSubscriptionOutput, error)

DisableAwsNetworkPerformanceMetricSubscriptionWithContext mocks base method.

func (*MockEC2API) DisableEbsEncryptionByDefault added in v1.19.0

DisableEbsEncryptionByDefault mocks base method.

func (*MockEC2API) DisableEbsEncryptionByDefaultRequest added in v1.19.0

func (m *MockEC2API) DisableEbsEncryptionByDefaultRequest(arg0 *ec2.DisableEbsEncryptionByDefaultInput) (*request.Request, *ec2.DisableEbsEncryptionByDefaultOutput)

DisableEbsEncryptionByDefaultRequest mocks base method.

func (*MockEC2API) DisableEbsEncryptionByDefaultWithContext added in v1.19.0

func (m *MockEC2API) DisableEbsEncryptionByDefaultWithContext(arg0 context.Context, arg1 *ec2.DisableEbsEncryptionByDefaultInput, arg2 ...request.Option) (*ec2.DisableEbsEncryptionByDefaultOutput, error)

DisableEbsEncryptionByDefaultWithContext mocks base method.

func (*MockEC2API) DisableFastLaunch added in v1.19.0

func (m *MockEC2API) DisableFastLaunch(arg0 *ec2.DisableFastLaunchInput) (*ec2.DisableFastLaunchOutput, error)

DisableFastLaunch mocks base method.

func (*MockEC2API) DisableFastLaunchRequest added in v1.19.0

func (m *MockEC2API) DisableFastLaunchRequest(arg0 *ec2.DisableFastLaunchInput) (*request.Request, *ec2.DisableFastLaunchOutput)

DisableFastLaunchRequest mocks base method.

func (*MockEC2API) DisableFastLaunchWithContext added in v1.19.0

func (m *MockEC2API) DisableFastLaunchWithContext(arg0 context.Context, arg1 *ec2.DisableFastLaunchInput, arg2 ...request.Option) (*ec2.DisableFastLaunchOutput, error)

DisableFastLaunchWithContext mocks base method.

func (*MockEC2API) DisableFastSnapshotRestores added in v1.19.0

DisableFastSnapshotRestores mocks base method.

func (*MockEC2API) DisableFastSnapshotRestoresRequest added in v1.19.0

func (m *MockEC2API) DisableFastSnapshotRestoresRequest(arg0 *ec2.DisableFastSnapshotRestoresInput) (*request.Request, *ec2.DisableFastSnapshotRestoresOutput)

DisableFastSnapshotRestoresRequest mocks base method.

func (*MockEC2API) DisableFastSnapshotRestoresWithContext added in v1.19.0

func (m *MockEC2API) DisableFastSnapshotRestoresWithContext(arg0 context.Context, arg1 *ec2.DisableFastSnapshotRestoresInput, arg2 ...request.Option) (*ec2.DisableFastSnapshotRestoresOutput, error)

DisableFastSnapshotRestoresWithContext mocks base method.

func (*MockEC2API) DisableImageBlockPublicAccess added in v1.23.0

DisableImageBlockPublicAccess mocks base method.

func (*MockEC2API) DisableImageBlockPublicAccessRequest added in v1.23.0

func (m *MockEC2API) DisableImageBlockPublicAccessRequest(arg0 *ec2.DisableImageBlockPublicAccessInput) (*request.Request, *ec2.DisableImageBlockPublicAccessOutput)

DisableImageBlockPublicAccessRequest mocks base method.

func (*MockEC2API) DisableImageBlockPublicAccessWithContext added in v1.23.0

func (m *MockEC2API) DisableImageBlockPublicAccessWithContext(arg0 context.Context, arg1 *ec2.DisableImageBlockPublicAccessInput, arg2 ...request.Option) (*ec2.DisableImageBlockPublicAccessOutput, error)

DisableImageBlockPublicAccessWithContext mocks base method.

func (*MockEC2API) DisableImageDeprecation added in v1.19.0

func (m *MockEC2API) DisableImageDeprecation(arg0 *ec2.DisableImageDeprecationInput) (*ec2.DisableImageDeprecationOutput, error)

DisableImageDeprecation mocks base method.

func (*MockEC2API) DisableImageDeprecationRequest added in v1.19.0

func (m *MockEC2API) DisableImageDeprecationRequest(arg0 *ec2.DisableImageDeprecationInput) (*request.Request, *ec2.DisableImageDeprecationOutput)

DisableImageDeprecationRequest mocks base method.

func (*MockEC2API) DisableImageDeprecationWithContext added in v1.19.0

func (m *MockEC2API) DisableImageDeprecationWithContext(arg0 context.Context, arg1 *ec2.DisableImageDeprecationInput, arg2 ...request.Option) (*ec2.DisableImageDeprecationOutput, error)

DisableImageDeprecationWithContext mocks base method.

func (*MockEC2API) DisableIpamOrganizationAdminAccount added in v1.19.0

DisableIpamOrganizationAdminAccount mocks base method.

func (*MockEC2API) DisableIpamOrganizationAdminAccountRequest added in v1.19.0

DisableIpamOrganizationAdminAccountRequest mocks base method.

func (*MockEC2API) DisableIpamOrganizationAdminAccountWithContext added in v1.19.0

func (m *MockEC2API) DisableIpamOrganizationAdminAccountWithContext(arg0 context.Context, arg1 *ec2.DisableIpamOrganizationAdminAccountInput, arg2 ...request.Option) (*ec2.DisableIpamOrganizationAdminAccountOutput, error)

DisableIpamOrganizationAdminAccountWithContext mocks base method.

func (*MockEC2API) DisableSerialConsoleAccess added in v1.19.0

DisableSerialConsoleAccess mocks base method.

func (*MockEC2API) DisableSerialConsoleAccessRequest added in v1.19.0

func (m *MockEC2API) DisableSerialConsoleAccessRequest(arg0 *ec2.DisableSerialConsoleAccessInput) (*request.Request, *ec2.DisableSerialConsoleAccessOutput)

DisableSerialConsoleAccessRequest mocks base method.

func (*MockEC2API) DisableSerialConsoleAccessWithContext added in v1.19.0

func (m *MockEC2API) DisableSerialConsoleAccessWithContext(arg0 context.Context, arg1 *ec2.DisableSerialConsoleAccessInput, arg2 ...request.Option) (*ec2.DisableSerialConsoleAccessOutput, error)

DisableSerialConsoleAccessWithContext mocks base method.

func (*MockEC2API) DisableTransitGatewayRouteTablePropagation added in v1.19.0

DisableTransitGatewayRouteTablePropagation mocks base method.

func (*MockEC2API) DisableTransitGatewayRouteTablePropagationRequest added in v1.19.0

DisableTransitGatewayRouteTablePropagationRequest mocks base method.

func (*MockEC2API) DisableTransitGatewayRouteTablePropagationWithContext added in v1.19.0

func (m *MockEC2API) DisableTransitGatewayRouteTablePropagationWithContext(arg0 context.Context, arg1 *ec2.DisableTransitGatewayRouteTablePropagationInput, arg2 ...request.Option) (*ec2.DisableTransitGatewayRouteTablePropagationOutput, error)

DisableTransitGatewayRouteTablePropagationWithContext mocks base method.

func (*MockEC2API) DisableVgwRoutePropagation added in v1.19.0

DisableVgwRoutePropagation mocks base method.

func (*MockEC2API) DisableVgwRoutePropagationRequest added in v1.19.0

func (m *MockEC2API) DisableVgwRoutePropagationRequest(arg0 *ec2.DisableVgwRoutePropagationInput) (*request.Request, *ec2.DisableVgwRoutePropagationOutput)

DisableVgwRoutePropagationRequest mocks base method.

func (*MockEC2API) DisableVgwRoutePropagationWithContext added in v1.19.0

func (m *MockEC2API) DisableVgwRoutePropagationWithContext(arg0 context.Context, arg1 *ec2.DisableVgwRoutePropagationInput, arg2 ...request.Option) (*ec2.DisableVgwRoutePropagationOutput, error)

DisableVgwRoutePropagationWithContext mocks base method.

func (m *MockEC2API) DisableVpcClassicLink(arg0 *ec2.DisableVpcClassicLinkInput) (*ec2.DisableVpcClassicLinkOutput, error)

DisableVpcClassicLink mocks base method.

func (*MockEC2API) DisableVpcClassicLinkDnsSupport added in v1.19.0

DisableVpcClassicLinkDnsSupport mocks base method.

func (*MockEC2API) DisableVpcClassicLinkDnsSupportRequest added in v1.19.0

func (m *MockEC2API) DisableVpcClassicLinkDnsSupportRequest(arg0 *ec2.DisableVpcClassicLinkDnsSupportInput) (*request.Request, *ec2.DisableVpcClassicLinkDnsSupportOutput)

DisableVpcClassicLinkDnsSupportRequest mocks base method.

func (*MockEC2API) DisableVpcClassicLinkDnsSupportWithContext added in v1.19.0

func (m *MockEC2API) DisableVpcClassicLinkDnsSupportWithContext(arg0 context.Context, arg1 *ec2.DisableVpcClassicLinkDnsSupportInput, arg2 ...request.Option) (*ec2.DisableVpcClassicLinkDnsSupportOutput, error)

DisableVpcClassicLinkDnsSupportWithContext mocks base method.

func (*MockEC2API) DisableVpcClassicLinkRequest added in v1.19.0

func (m *MockEC2API) DisableVpcClassicLinkRequest(arg0 *ec2.DisableVpcClassicLinkInput) (*request.Request, *ec2.DisableVpcClassicLinkOutput)

DisableVpcClassicLinkRequest mocks base method.

func (*MockEC2API) DisableVpcClassicLinkWithContext added in v1.19.0

func (m *MockEC2API) DisableVpcClassicLinkWithContext(arg0 context.Context, arg1 *ec2.DisableVpcClassicLinkInput, arg2 ...request.Option) (*ec2.DisableVpcClassicLinkOutput, error)

DisableVpcClassicLinkWithContext mocks base method.

func (*MockEC2API) DisassociateAddress added in v1.19.0

func (m *MockEC2API) DisassociateAddress(arg0 *ec2.DisassociateAddressInput) (*ec2.DisassociateAddressOutput, error)

DisassociateAddress mocks base method.

func (*MockEC2API) DisassociateAddressRequest added in v1.19.0

func (m *MockEC2API) DisassociateAddressRequest(arg0 *ec2.DisassociateAddressInput) (*request.Request, *ec2.DisassociateAddressOutput)

DisassociateAddressRequest mocks base method.

func (*MockEC2API) DisassociateAddressWithContext added in v1.19.0

func (m *MockEC2API) DisassociateAddressWithContext(arg0 context.Context, arg1 *ec2.DisassociateAddressInput, arg2 ...request.Option) (*ec2.DisassociateAddressOutput, error)

DisassociateAddressWithContext mocks base method.

func (*MockEC2API) DisassociateClientVpnTargetNetwork added in v1.19.0

DisassociateClientVpnTargetNetwork mocks base method.

func (*MockEC2API) DisassociateClientVpnTargetNetworkRequest added in v1.19.0

DisassociateClientVpnTargetNetworkRequest mocks base method.

func (*MockEC2API) DisassociateClientVpnTargetNetworkWithContext added in v1.19.0

func (m *MockEC2API) DisassociateClientVpnTargetNetworkWithContext(arg0 context.Context, arg1 *ec2.DisassociateClientVpnTargetNetworkInput, arg2 ...request.Option) (*ec2.DisassociateClientVpnTargetNetworkOutput, error)

DisassociateClientVpnTargetNetworkWithContext mocks base method.

func (*MockEC2API) DisassociateEnclaveCertificateIamRole added in v1.19.0

DisassociateEnclaveCertificateIamRole mocks base method.

func (*MockEC2API) DisassociateEnclaveCertificateIamRoleRequest added in v1.19.0

DisassociateEnclaveCertificateIamRoleRequest mocks base method.

func (*MockEC2API) DisassociateEnclaveCertificateIamRoleWithContext added in v1.19.0

func (m *MockEC2API) DisassociateEnclaveCertificateIamRoleWithContext(arg0 context.Context, arg1 *ec2.DisassociateEnclaveCertificateIamRoleInput, arg2 ...request.Option) (*ec2.DisassociateEnclaveCertificateIamRoleOutput, error)

DisassociateEnclaveCertificateIamRoleWithContext mocks base method.

func (*MockEC2API) DisassociateIamInstanceProfile added in v1.19.0

DisassociateIamInstanceProfile mocks base method.

func (*MockEC2API) DisassociateIamInstanceProfileRequest added in v1.19.0

func (m *MockEC2API) DisassociateIamInstanceProfileRequest(arg0 *ec2.DisassociateIamInstanceProfileInput) (*request.Request, *ec2.DisassociateIamInstanceProfileOutput)

DisassociateIamInstanceProfileRequest mocks base method.

func (*MockEC2API) DisassociateIamInstanceProfileWithContext added in v1.19.0

func (m *MockEC2API) DisassociateIamInstanceProfileWithContext(arg0 context.Context, arg1 *ec2.DisassociateIamInstanceProfileInput, arg2 ...request.Option) (*ec2.DisassociateIamInstanceProfileOutput, error)

DisassociateIamInstanceProfileWithContext mocks base method.

func (*MockEC2API) DisassociateInstanceEventWindow added in v1.19.0

DisassociateInstanceEventWindow mocks base method.

func (*MockEC2API) DisassociateInstanceEventWindowRequest added in v1.19.0

func (m *MockEC2API) DisassociateInstanceEventWindowRequest(arg0 *ec2.DisassociateInstanceEventWindowInput) (*request.Request, *ec2.DisassociateInstanceEventWindowOutput)

DisassociateInstanceEventWindowRequest mocks base method.

func (*MockEC2API) DisassociateInstanceEventWindowWithContext added in v1.19.0

func (m *MockEC2API) DisassociateInstanceEventWindowWithContext(arg0 context.Context, arg1 *ec2.DisassociateInstanceEventWindowInput, arg2 ...request.Option) (*ec2.DisassociateInstanceEventWindowOutput, error)

DisassociateInstanceEventWindowWithContext mocks base method.

func (*MockEC2API) DisassociateIpamResourceDiscovery added in v1.19.0

DisassociateIpamResourceDiscovery mocks base method.

func (*MockEC2API) DisassociateIpamResourceDiscoveryRequest added in v1.19.0

DisassociateIpamResourceDiscoveryRequest mocks base method.

func (*MockEC2API) DisassociateIpamResourceDiscoveryWithContext added in v1.19.0

func (m *MockEC2API) DisassociateIpamResourceDiscoveryWithContext(arg0 context.Context, arg1 *ec2.DisassociateIpamResourceDiscoveryInput, arg2 ...request.Option) (*ec2.DisassociateIpamResourceDiscoveryOutput, error)

DisassociateIpamResourceDiscoveryWithContext mocks base method.

func (*MockEC2API) DisassociateNatGatewayAddress added in v1.19.0

DisassociateNatGatewayAddress mocks base method.

func (*MockEC2API) DisassociateNatGatewayAddressRequest added in v1.19.0

func (m *MockEC2API) DisassociateNatGatewayAddressRequest(arg0 *ec2.DisassociateNatGatewayAddressInput) (*request.Request, *ec2.DisassociateNatGatewayAddressOutput)

DisassociateNatGatewayAddressRequest mocks base method.

func (*MockEC2API) DisassociateNatGatewayAddressWithContext added in v1.19.0

func (m *MockEC2API) DisassociateNatGatewayAddressWithContext(arg0 context.Context, arg1 *ec2.DisassociateNatGatewayAddressInput, arg2 ...request.Option) (*ec2.DisassociateNatGatewayAddressOutput, error)

DisassociateNatGatewayAddressWithContext mocks base method.

func (*MockEC2API) DisassociateRouteTable added in v1.19.0

func (m *MockEC2API) DisassociateRouteTable(arg0 *ec2.DisassociateRouteTableInput) (*ec2.DisassociateRouteTableOutput, error)

DisassociateRouteTable mocks base method.

func (*MockEC2API) DisassociateRouteTableRequest added in v1.19.0

func (m *MockEC2API) DisassociateRouteTableRequest(arg0 *ec2.DisassociateRouteTableInput) (*request.Request, *ec2.DisassociateRouteTableOutput)

DisassociateRouteTableRequest mocks base method.

func (*MockEC2API) DisassociateRouteTableWithContext added in v1.19.0

func (m *MockEC2API) DisassociateRouteTableWithContext(arg0 context.Context, arg1 *ec2.DisassociateRouteTableInput, arg2 ...request.Option) (*ec2.DisassociateRouteTableOutput, error)

DisassociateRouteTableWithContext mocks base method.

func (*MockEC2API) DisassociateSubnetCidrBlock added in v1.19.0

DisassociateSubnetCidrBlock mocks base method.

func (*MockEC2API) DisassociateSubnetCidrBlockRequest added in v1.19.0

func (m *MockEC2API) DisassociateSubnetCidrBlockRequest(arg0 *ec2.DisassociateSubnetCidrBlockInput) (*request.Request, *ec2.DisassociateSubnetCidrBlockOutput)

DisassociateSubnetCidrBlockRequest mocks base method.

func (*MockEC2API) DisassociateSubnetCidrBlockWithContext added in v1.19.0

func (m *MockEC2API) DisassociateSubnetCidrBlockWithContext(arg0 context.Context, arg1 *ec2.DisassociateSubnetCidrBlockInput, arg2 ...request.Option) (*ec2.DisassociateSubnetCidrBlockOutput, error)

DisassociateSubnetCidrBlockWithContext mocks base method.

func (*MockEC2API) DisassociateTransitGatewayMulticastDomain added in v1.19.0

DisassociateTransitGatewayMulticastDomain mocks base method.

func (*MockEC2API) DisassociateTransitGatewayMulticastDomainRequest added in v1.19.0

DisassociateTransitGatewayMulticastDomainRequest mocks base method.

func (*MockEC2API) DisassociateTransitGatewayMulticastDomainWithContext added in v1.19.0

func (m *MockEC2API) DisassociateTransitGatewayMulticastDomainWithContext(arg0 context.Context, arg1 *ec2.DisassociateTransitGatewayMulticastDomainInput, arg2 ...request.Option) (*ec2.DisassociateTransitGatewayMulticastDomainOutput, error)

DisassociateTransitGatewayMulticastDomainWithContext mocks base method.

func (*MockEC2API) DisassociateTransitGatewayPolicyTable added in v1.19.0

DisassociateTransitGatewayPolicyTable mocks base method.

func (*MockEC2API) DisassociateTransitGatewayPolicyTableRequest added in v1.19.0

DisassociateTransitGatewayPolicyTableRequest mocks base method.

func (*MockEC2API) DisassociateTransitGatewayPolicyTableWithContext added in v1.19.0

func (m *MockEC2API) DisassociateTransitGatewayPolicyTableWithContext(arg0 context.Context, arg1 *ec2.DisassociateTransitGatewayPolicyTableInput, arg2 ...request.Option) (*ec2.DisassociateTransitGatewayPolicyTableOutput, error)

DisassociateTransitGatewayPolicyTableWithContext mocks base method.

func (*MockEC2API) DisassociateTransitGatewayRouteTable added in v1.19.0

DisassociateTransitGatewayRouteTable mocks base method.

func (*MockEC2API) DisassociateTransitGatewayRouteTableRequest added in v1.19.0

DisassociateTransitGatewayRouteTableRequest mocks base method.

func (*MockEC2API) DisassociateTransitGatewayRouteTableWithContext added in v1.19.0

func (m *MockEC2API) DisassociateTransitGatewayRouteTableWithContext(arg0 context.Context, arg1 *ec2.DisassociateTransitGatewayRouteTableInput, arg2 ...request.Option) (*ec2.DisassociateTransitGatewayRouteTableOutput, error)

DisassociateTransitGatewayRouteTableWithContext mocks base method.

func (*MockEC2API) DisassociateTrunkInterface added in v1.19.0

DisassociateTrunkInterface mocks base method.

func (*MockEC2API) DisassociateTrunkInterfaceRequest added in v1.19.0

func (m *MockEC2API) DisassociateTrunkInterfaceRequest(arg0 *ec2.DisassociateTrunkInterfaceInput) (*request.Request, *ec2.DisassociateTrunkInterfaceOutput)

DisassociateTrunkInterfaceRequest mocks base method.

func (*MockEC2API) DisassociateTrunkInterfaceWithContext added in v1.19.0

func (m *MockEC2API) DisassociateTrunkInterfaceWithContext(arg0 context.Context, arg1 *ec2.DisassociateTrunkInterfaceInput, arg2 ...request.Option) (*ec2.DisassociateTrunkInterfaceOutput, error)

DisassociateTrunkInterfaceWithContext mocks base method.

func (*MockEC2API) DisassociateVpcCidrBlock added in v1.19.0

DisassociateVpcCidrBlock mocks base method.

func (*MockEC2API) DisassociateVpcCidrBlockRequest added in v1.19.0

func (m *MockEC2API) DisassociateVpcCidrBlockRequest(arg0 *ec2.DisassociateVpcCidrBlockInput) (*request.Request, *ec2.DisassociateVpcCidrBlockOutput)

DisassociateVpcCidrBlockRequest mocks base method.

func (*MockEC2API) DisassociateVpcCidrBlockWithContext added in v1.19.0

func (m *MockEC2API) DisassociateVpcCidrBlockWithContext(arg0 context.Context, arg1 *ec2.DisassociateVpcCidrBlockInput, arg2 ...request.Option) (*ec2.DisassociateVpcCidrBlockOutput, error)

DisassociateVpcCidrBlockWithContext mocks base method.

func (*MockEC2API) EXPECT added in v1.19.0

func (m *MockEC2API) EXPECT() *MockEC2APIMockRecorder

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockEC2API) EnableAddressTransfer added in v1.19.0

func (m *MockEC2API) EnableAddressTransfer(arg0 *ec2.EnableAddressTransferInput) (*ec2.EnableAddressTransferOutput, error)

EnableAddressTransfer mocks base method.

func (*MockEC2API) EnableAddressTransferRequest added in v1.19.0

func (m *MockEC2API) EnableAddressTransferRequest(arg0 *ec2.EnableAddressTransferInput) (*request.Request, *ec2.EnableAddressTransferOutput)

EnableAddressTransferRequest mocks base method.

func (*MockEC2API) EnableAddressTransferWithContext added in v1.19.0

func (m *MockEC2API) EnableAddressTransferWithContext(arg0 context.Context, arg1 *ec2.EnableAddressTransferInput, arg2 ...request.Option) (*ec2.EnableAddressTransferOutput, error)

EnableAddressTransferWithContext mocks base method.

func (*MockEC2API) EnableAwsNetworkPerformanceMetricSubscription added in v1.19.0

EnableAwsNetworkPerformanceMetricSubscription mocks base method.

func (*MockEC2API) EnableAwsNetworkPerformanceMetricSubscriptionRequest added in v1.19.0

EnableAwsNetworkPerformanceMetricSubscriptionRequest mocks base method.

func (*MockEC2API) EnableAwsNetworkPerformanceMetricSubscriptionWithContext added in v1.19.0

func (m *MockEC2API) EnableAwsNetworkPerformanceMetricSubscriptionWithContext(arg0 context.Context, arg1 *ec2.EnableAwsNetworkPerformanceMetricSubscriptionInput, arg2 ...request.Option) (*ec2.EnableAwsNetworkPerformanceMetricSubscriptionOutput, error)

EnableAwsNetworkPerformanceMetricSubscriptionWithContext mocks base method.

func (*MockEC2API) EnableEbsEncryptionByDefault added in v1.19.0

EnableEbsEncryptionByDefault mocks base method.

func (*MockEC2API) EnableEbsEncryptionByDefaultRequest added in v1.19.0

func (m *MockEC2API) EnableEbsEncryptionByDefaultRequest(arg0 *ec2.EnableEbsEncryptionByDefaultInput) (*request.Request, *ec2.EnableEbsEncryptionByDefaultOutput)

EnableEbsEncryptionByDefaultRequest mocks base method.

func (*MockEC2API) EnableEbsEncryptionByDefaultWithContext added in v1.19.0

func (m *MockEC2API) EnableEbsEncryptionByDefaultWithContext(arg0 context.Context, arg1 *ec2.EnableEbsEncryptionByDefaultInput, arg2 ...request.Option) (*ec2.EnableEbsEncryptionByDefaultOutput, error)

EnableEbsEncryptionByDefaultWithContext mocks base method.

func (*MockEC2API) EnableFastLaunch added in v1.19.0

func (m *MockEC2API) EnableFastLaunch(arg0 *ec2.EnableFastLaunchInput) (*ec2.EnableFastLaunchOutput, error)

EnableFastLaunch mocks base method.

func (*MockEC2API) EnableFastLaunchRequest added in v1.19.0

func (m *MockEC2API) EnableFastLaunchRequest(arg0 *ec2.EnableFastLaunchInput) (*request.Request, *ec2.EnableFastLaunchOutput)

EnableFastLaunchRequest mocks base method.

func (*MockEC2API) EnableFastLaunchWithContext added in v1.19.0

func (m *MockEC2API) EnableFastLaunchWithContext(arg0 context.Context, arg1 *ec2.EnableFastLaunchInput, arg2 ...request.Option) (*ec2.EnableFastLaunchOutput, error)

EnableFastLaunchWithContext mocks base method.

func (*MockEC2API) EnableFastSnapshotRestores added in v1.19.0

EnableFastSnapshotRestores mocks base method.

func (*MockEC2API) EnableFastSnapshotRestoresRequest added in v1.19.0

func (m *MockEC2API) EnableFastSnapshotRestoresRequest(arg0 *ec2.EnableFastSnapshotRestoresInput) (*request.Request, *ec2.EnableFastSnapshotRestoresOutput)

EnableFastSnapshotRestoresRequest mocks base method.

func (*MockEC2API) EnableFastSnapshotRestoresWithContext added in v1.19.0

func (m *MockEC2API) EnableFastSnapshotRestoresWithContext(arg0 context.Context, arg1 *ec2.EnableFastSnapshotRestoresInput, arg2 ...request.Option) (*ec2.EnableFastSnapshotRestoresOutput, error)

EnableFastSnapshotRestoresWithContext mocks base method.

func (*MockEC2API) EnableImageBlockPublicAccess added in v1.23.0

EnableImageBlockPublicAccess mocks base method.

func (*MockEC2API) EnableImageBlockPublicAccessRequest added in v1.23.0

func (m *MockEC2API) EnableImageBlockPublicAccessRequest(arg0 *ec2.EnableImageBlockPublicAccessInput) (*request.Request, *ec2.EnableImageBlockPublicAccessOutput)

EnableImageBlockPublicAccessRequest mocks base method.

func (*MockEC2API) EnableImageBlockPublicAccessWithContext added in v1.23.0

func (m *MockEC2API) EnableImageBlockPublicAccessWithContext(arg0 context.Context, arg1 *ec2.EnableImageBlockPublicAccessInput, arg2 ...request.Option) (*ec2.EnableImageBlockPublicAccessOutput, error)

EnableImageBlockPublicAccessWithContext mocks base method.

func (*MockEC2API) EnableImageDeprecation added in v1.19.0

func (m *MockEC2API) EnableImageDeprecation(arg0 *ec2.EnableImageDeprecationInput) (*ec2.EnableImageDeprecationOutput, error)

EnableImageDeprecation mocks base method.

func (*MockEC2API) EnableImageDeprecationRequest added in v1.19.0

func (m *MockEC2API) EnableImageDeprecationRequest(arg0 *ec2.EnableImageDeprecationInput) (*request.Request, *ec2.EnableImageDeprecationOutput)

EnableImageDeprecationRequest mocks base method.

func (*MockEC2API) EnableImageDeprecationWithContext added in v1.19.0

func (m *MockEC2API) EnableImageDeprecationWithContext(arg0 context.Context, arg1 *ec2.EnableImageDeprecationInput, arg2 ...request.Option) (*ec2.EnableImageDeprecationOutput, error)

EnableImageDeprecationWithContext mocks base method.

func (*MockEC2API) EnableIpamOrganizationAdminAccount added in v1.19.0

EnableIpamOrganizationAdminAccount mocks base method.

func (*MockEC2API) EnableIpamOrganizationAdminAccountRequest added in v1.19.0

EnableIpamOrganizationAdminAccountRequest mocks base method.

func (*MockEC2API) EnableIpamOrganizationAdminAccountWithContext added in v1.19.0

func (m *MockEC2API) EnableIpamOrganizationAdminAccountWithContext(arg0 context.Context, arg1 *ec2.EnableIpamOrganizationAdminAccountInput, arg2 ...request.Option) (*ec2.EnableIpamOrganizationAdminAccountOutput, error)

EnableIpamOrganizationAdminAccountWithContext mocks base method.

func (*MockEC2API) EnableReachabilityAnalyzerOrganizationSharing added in v1.19.0

EnableReachabilityAnalyzerOrganizationSharing mocks base method.

func (*MockEC2API) EnableReachabilityAnalyzerOrganizationSharingRequest added in v1.19.0

EnableReachabilityAnalyzerOrganizationSharingRequest mocks base method.

func (*MockEC2API) EnableReachabilityAnalyzerOrganizationSharingWithContext added in v1.19.0

func (m *MockEC2API) EnableReachabilityAnalyzerOrganizationSharingWithContext(arg0 context.Context, arg1 *ec2.EnableReachabilityAnalyzerOrganizationSharingInput, arg2 ...request.Option) (*ec2.EnableReachabilityAnalyzerOrganizationSharingOutput, error)

EnableReachabilityAnalyzerOrganizationSharingWithContext mocks base method.

func (*MockEC2API) EnableSerialConsoleAccess added in v1.19.0

EnableSerialConsoleAccess mocks base method.

func (*MockEC2API) EnableSerialConsoleAccessRequest added in v1.19.0

func (m *MockEC2API) EnableSerialConsoleAccessRequest(arg0 *ec2.EnableSerialConsoleAccessInput) (*request.Request, *ec2.EnableSerialConsoleAccessOutput)

EnableSerialConsoleAccessRequest mocks base method.

func (*MockEC2API) EnableSerialConsoleAccessWithContext added in v1.19.0

func (m *MockEC2API) EnableSerialConsoleAccessWithContext(arg0 context.Context, arg1 *ec2.EnableSerialConsoleAccessInput, arg2 ...request.Option) (*ec2.EnableSerialConsoleAccessOutput, error)

EnableSerialConsoleAccessWithContext mocks base method.

func (*MockEC2API) EnableTransitGatewayRouteTablePropagation added in v1.19.0

EnableTransitGatewayRouteTablePropagation mocks base method.

func (*MockEC2API) EnableTransitGatewayRouteTablePropagationRequest added in v1.19.0

EnableTransitGatewayRouteTablePropagationRequest mocks base method.

func (*MockEC2API) EnableTransitGatewayRouteTablePropagationWithContext added in v1.19.0

func (m *MockEC2API) EnableTransitGatewayRouteTablePropagationWithContext(arg0 context.Context, arg1 *ec2.EnableTransitGatewayRouteTablePropagationInput, arg2 ...request.Option) (*ec2.EnableTransitGatewayRouteTablePropagationOutput, error)

EnableTransitGatewayRouteTablePropagationWithContext mocks base method.

func (*MockEC2API) EnableVgwRoutePropagation added in v1.19.0

EnableVgwRoutePropagation mocks base method.

func (*MockEC2API) EnableVgwRoutePropagationRequest added in v1.19.0

func (m *MockEC2API) EnableVgwRoutePropagationRequest(arg0 *ec2.EnableVgwRoutePropagationInput) (*request.Request, *ec2.EnableVgwRoutePropagationOutput)

EnableVgwRoutePropagationRequest mocks base method.

func (*MockEC2API) EnableVgwRoutePropagationWithContext added in v1.19.0

func (m *MockEC2API) EnableVgwRoutePropagationWithContext(arg0 context.Context, arg1 *ec2.EnableVgwRoutePropagationInput, arg2 ...request.Option) (*ec2.EnableVgwRoutePropagationOutput, error)

EnableVgwRoutePropagationWithContext mocks base method.

func (*MockEC2API) EnableVolumeIO added in v1.19.0

func (m *MockEC2API) EnableVolumeIO(arg0 *ec2.EnableVolumeIOInput) (*ec2.EnableVolumeIOOutput, error)

EnableVolumeIO mocks base method.

func (*MockEC2API) EnableVolumeIORequest added in v1.19.0

func (m *MockEC2API) EnableVolumeIORequest(arg0 *ec2.EnableVolumeIOInput) (*request.Request, *ec2.EnableVolumeIOOutput)

EnableVolumeIORequest mocks base method.

func (*MockEC2API) EnableVolumeIOWithContext added in v1.19.0

func (m *MockEC2API) EnableVolumeIOWithContext(arg0 context.Context, arg1 *ec2.EnableVolumeIOInput, arg2 ...request.Option) (*ec2.EnableVolumeIOOutput, error)

EnableVolumeIOWithContext mocks base method.

func (m *MockEC2API) EnableVpcClassicLink(arg0 *ec2.EnableVpcClassicLinkInput) (*ec2.EnableVpcClassicLinkOutput, error)

EnableVpcClassicLink mocks base method.

func (*MockEC2API) EnableVpcClassicLinkDnsSupport added in v1.19.0

EnableVpcClassicLinkDnsSupport mocks base method.

func (*MockEC2API) EnableVpcClassicLinkDnsSupportRequest added in v1.19.0

func (m *MockEC2API) EnableVpcClassicLinkDnsSupportRequest(arg0 *ec2.EnableVpcClassicLinkDnsSupportInput) (*request.Request, *ec2.EnableVpcClassicLinkDnsSupportOutput)

EnableVpcClassicLinkDnsSupportRequest mocks base method.

func (*MockEC2API) EnableVpcClassicLinkDnsSupportWithContext added in v1.19.0

func (m *MockEC2API) EnableVpcClassicLinkDnsSupportWithContext(arg0 context.Context, arg1 *ec2.EnableVpcClassicLinkDnsSupportInput, arg2 ...request.Option) (*ec2.EnableVpcClassicLinkDnsSupportOutput, error)

EnableVpcClassicLinkDnsSupportWithContext mocks base method.

func (*MockEC2API) EnableVpcClassicLinkRequest added in v1.19.0

func (m *MockEC2API) EnableVpcClassicLinkRequest(arg0 *ec2.EnableVpcClassicLinkInput) (*request.Request, *ec2.EnableVpcClassicLinkOutput)

EnableVpcClassicLinkRequest mocks base method.

func (*MockEC2API) EnableVpcClassicLinkWithContext added in v1.19.0

func (m *MockEC2API) EnableVpcClassicLinkWithContext(arg0 context.Context, arg1 *ec2.EnableVpcClassicLinkInput, arg2 ...request.Option) (*ec2.EnableVpcClassicLinkOutput, error)

EnableVpcClassicLinkWithContext mocks base method.

func (*MockEC2API) ExportClientVpnClientCertificateRevocationList added in v1.19.0

ExportClientVpnClientCertificateRevocationList mocks base method.

func (*MockEC2API) ExportClientVpnClientCertificateRevocationListRequest added in v1.19.0

ExportClientVpnClientCertificateRevocationListRequest mocks base method.

func (*MockEC2API) ExportClientVpnClientCertificateRevocationListWithContext added in v1.19.0

func (m *MockEC2API) ExportClientVpnClientCertificateRevocationListWithContext(arg0 context.Context, arg1 *ec2.ExportClientVpnClientCertificateRevocationListInput, arg2 ...request.Option) (*ec2.ExportClientVpnClientCertificateRevocationListOutput, error)

ExportClientVpnClientCertificateRevocationListWithContext mocks base method.

func (*MockEC2API) ExportClientVpnClientConfiguration added in v1.19.0

ExportClientVpnClientConfiguration mocks base method.

func (*MockEC2API) ExportClientVpnClientConfigurationRequest added in v1.19.0

ExportClientVpnClientConfigurationRequest mocks base method.

func (*MockEC2API) ExportClientVpnClientConfigurationWithContext added in v1.19.0

func (m *MockEC2API) ExportClientVpnClientConfigurationWithContext(arg0 context.Context, arg1 *ec2.ExportClientVpnClientConfigurationInput, arg2 ...request.Option) (*ec2.ExportClientVpnClientConfigurationOutput, error)

ExportClientVpnClientConfigurationWithContext mocks base method.

func (*MockEC2API) ExportImage added in v1.19.0

func (m *MockEC2API) ExportImage(arg0 *ec2.ExportImageInput) (*ec2.ExportImageOutput, error)

ExportImage mocks base method.

func (*MockEC2API) ExportImageRequest added in v1.19.0

func (m *MockEC2API) ExportImageRequest(arg0 *ec2.ExportImageInput) (*request.Request, *ec2.ExportImageOutput)

ExportImageRequest mocks base method.

func (*MockEC2API) ExportImageWithContext added in v1.19.0

func (m *MockEC2API) ExportImageWithContext(arg0 context.Context, arg1 *ec2.ExportImageInput, arg2 ...request.Option) (*ec2.ExportImageOutput, error)

ExportImageWithContext mocks base method.

func (*MockEC2API) ExportTransitGatewayRoutes added in v1.19.0

ExportTransitGatewayRoutes mocks base method.

func (*MockEC2API) ExportTransitGatewayRoutesRequest added in v1.19.0

func (m *MockEC2API) ExportTransitGatewayRoutesRequest(arg0 *ec2.ExportTransitGatewayRoutesInput) (*request.Request, *ec2.ExportTransitGatewayRoutesOutput)

ExportTransitGatewayRoutesRequest mocks base method.

func (*MockEC2API) ExportTransitGatewayRoutesWithContext added in v1.19.0

func (m *MockEC2API) ExportTransitGatewayRoutesWithContext(arg0 context.Context, arg1 *ec2.ExportTransitGatewayRoutesInput, arg2 ...request.Option) (*ec2.ExportTransitGatewayRoutesOutput, error)

ExportTransitGatewayRoutesWithContext mocks base method.

func (*MockEC2API) GetAssociatedEnclaveCertificateIamRoles added in v1.19.0

GetAssociatedEnclaveCertificateIamRoles mocks base method.

func (*MockEC2API) GetAssociatedEnclaveCertificateIamRolesRequest added in v1.19.0

GetAssociatedEnclaveCertificateIamRolesRequest mocks base method.

func (*MockEC2API) GetAssociatedEnclaveCertificateIamRolesWithContext added in v1.19.0

func (m *MockEC2API) GetAssociatedEnclaveCertificateIamRolesWithContext(arg0 context.Context, arg1 *ec2.GetAssociatedEnclaveCertificateIamRolesInput, arg2 ...request.Option) (*ec2.GetAssociatedEnclaveCertificateIamRolesOutput, error)

GetAssociatedEnclaveCertificateIamRolesWithContext mocks base method.

func (*MockEC2API) GetAssociatedIpv6PoolCidrs added in v1.19.0

GetAssociatedIpv6PoolCidrs mocks base method.

func (*MockEC2API) GetAssociatedIpv6PoolCidrsPages added in v1.19.0

func (m *MockEC2API) GetAssociatedIpv6PoolCidrsPages(arg0 *ec2.GetAssociatedIpv6PoolCidrsInput, arg1 func(*ec2.GetAssociatedIpv6PoolCidrsOutput, bool) bool) error

GetAssociatedIpv6PoolCidrsPages mocks base method.

func (*MockEC2API) GetAssociatedIpv6PoolCidrsPagesWithContext added in v1.19.0

func (m *MockEC2API) GetAssociatedIpv6PoolCidrsPagesWithContext(arg0 context.Context, arg1 *ec2.GetAssociatedIpv6PoolCidrsInput, arg2 func(*ec2.GetAssociatedIpv6PoolCidrsOutput, bool) bool, arg3 ...request.Option) error

GetAssociatedIpv6PoolCidrsPagesWithContext mocks base method.

func (*MockEC2API) GetAssociatedIpv6PoolCidrsRequest added in v1.19.0

func (m *MockEC2API) GetAssociatedIpv6PoolCidrsRequest(arg0 *ec2.GetAssociatedIpv6PoolCidrsInput) (*request.Request, *ec2.GetAssociatedIpv6PoolCidrsOutput)

GetAssociatedIpv6PoolCidrsRequest mocks base method.

func (*MockEC2API) GetAssociatedIpv6PoolCidrsWithContext added in v1.19.0

func (m *MockEC2API) GetAssociatedIpv6PoolCidrsWithContext(arg0 context.Context, arg1 *ec2.GetAssociatedIpv6PoolCidrsInput, arg2 ...request.Option) (*ec2.GetAssociatedIpv6PoolCidrsOutput, error)

GetAssociatedIpv6PoolCidrsWithContext mocks base method.

func (*MockEC2API) GetAwsNetworkPerformanceData added in v1.19.0

GetAwsNetworkPerformanceData mocks base method.

func (*MockEC2API) GetAwsNetworkPerformanceDataPages added in v1.19.0

func (m *MockEC2API) GetAwsNetworkPerformanceDataPages(arg0 *ec2.GetAwsNetworkPerformanceDataInput, arg1 func(*ec2.GetAwsNetworkPerformanceDataOutput, bool) bool) error

GetAwsNetworkPerformanceDataPages mocks base method.

func (*MockEC2API) GetAwsNetworkPerformanceDataPagesWithContext added in v1.19.0

func (m *MockEC2API) GetAwsNetworkPerformanceDataPagesWithContext(arg0 context.Context, arg1 *ec2.GetAwsNetworkPerformanceDataInput, arg2 func(*ec2.GetAwsNetworkPerformanceDataOutput, bool) bool, arg3 ...request.Option) error

GetAwsNetworkPerformanceDataPagesWithContext mocks base method.

func (*MockEC2API) GetAwsNetworkPerformanceDataRequest added in v1.19.0

func (m *MockEC2API) GetAwsNetworkPerformanceDataRequest(arg0 *ec2.GetAwsNetworkPerformanceDataInput) (*request.Request, *ec2.GetAwsNetworkPerformanceDataOutput)

GetAwsNetworkPerformanceDataRequest mocks base method.

func (*MockEC2API) GetAwsNetworkPerformanceDataWithContext added in v1.19.0

func (m *MockEC2API) GetAwsNetworkPerformanceDataWithContext(arg0 context.Context, arg1 *ec2.GetAwsNetworkPerformanceDataInput, arg2 ...request.Option) (*ec2.GetAwsNetworkPerformanceDataOutput, error)

GetAwsNetworkPerformanceDataWithContext mocks base method.

func (*MockEC2API) GetCapacityReservationUsage added in v1.19.0

GetCapacityReservationUsage mocks base method.

func (*MockEC2API) GetCapacityReservationUsageRequest added in v1.19.0

func (m *MockEC2API) GetCapacityReservationUsageRequest(arg0 *ec2.GetCapacityReservationUsageInput) (*request.Request, *ec2.GetCapacityReservationUsageOutput)

GetCapacityReservationUsageRequest mocks base method.

func (*MockEC2API) GetCapacityReservationUsageWithContext added in v1.19.0

func (m *MockEC2API) GetCapacityReservationUsageWithContext(arg0 context.Context, arg1 *ec2.GetCapacityReservationUsageInput, arg2 ...request.Option) (*ec2.GetCapacityReservationUsageOutput, error)

GetCapacityReservationUsageWithContext mocks base method.

func (*MockEC2API) GetCoipPoolUsage added in v1.19.0

func (m *MockEC2API) GetCoipPoolUsage(arg0 *ec2.GetCoipPoolUsageInput) (*ec2.GetCoipPoolUsageOutput, error)

GetCoipPoolUsage mocks base method.

func (*MockEC2API) GetCoipPoolUsageRequest added in v1.19.0

func (m *MockEC2API) GetCoipPoolUsageRequest(arg0 *ec2.GetCoipPoolUsageInput) (*request.Request, *ec2.GetCoipPoolUsageOutput)

GetCoipPoolUsageRequest mocks base method.

func (*MockEC2API) GetCoipPoolUsageWithContext added in v1.19.0

func (m *MockEC2API) GetCoipPoolUsageWithContext(arg0 context.Context, arg1 *ec2.GetCoipPoolUsageInput, arg2 ...request.Option) (*ec2.GetCoipPoolUsageOutput, error)

GetCoipPoolUsageWithContext mocks base method.

func (*MockEC2API) GetConsoleOutput added in v1.19.0

func (m *MockEC2API) GetConsoleOutput(arg0 *ec2.GetConsoleOutputInput) (*ec2.GetConsoleOutputOutput, error)

GetConsoleOutput mocks base method.

func (*MockEC2API) GetConsoleOutputRequest added in v1.19.0

func (m *MockEC2API) GetConsoleOutputRequest(arg0 *ec2.GetConsoleOutputInput) (*request.Request, *ec2.GetConsoleOutputOutput)

GetConsoleOutputRequest mocks base method.

func (*MockEC2API) GetConsoleOutputWithContext added in v1.19.0

func (m *MockEC2API) GetConsoleOutputWithContext(arg0 context.Context, arg1 *ec2.GetConsoleOutputInput, arg2 ...request.Option) (*ec2.GetConsoleOutputOutput, error)

GetConsoleOutputWithContext mocks base method.

func (*MockEC2API) GetConsoleScreenshot added in v1.19.0

func (m *MockEC2API) GetConsoleScreenshot(arg0 *ec2.GetConsoleScreenshotInput) (*ec2.GetConsoleScreenshotOutput, error)

GetConsoleScreenshot mocks base method.

func (*MockEC2API) GetConsoleScreenshotRequest added in v1.19.0

func (m *MockEC2API) GetConsoleScreenshotRequest(arg0 *ec2.GetConsoleScreenshotInput) (*request.Request, *ec2.GetConsoleScreenshotOutput)

GetConsoleScreenshotRequest mocks base method.

func (*MockEC2API) GetConsoleScreenshotWithContext added in v1.19.0

func (m *MockEC2API) GetConsoleScreenshotWithContext(arg0 context.Context, arg1 *ec2.GetConsoleScreenshotInput, arg2 ...request.Option) (*ec2.GetConsoleScreenshotOutput, error)

GetConsoleScreenshotWithContext mocks base method.

func (*MockEC2API) GetDefaultCreditSpecification added in v1.19.0

GetDefaultCreditSpecification mocks base method.

func (*MockEC2API) GetDefaultCreditSpecificationRequest added in v1.19.0

func (m *MockEC2API) GetDefaultCreditSpecificationRequest(arg0 *ec2.GetDefaultCreditSpecificationInput) (*request.Request, *ec2.GetDefaultCreditSpecificationOutput)

GetDefaultCreditSpecificationRequest mocks base method.

func (*MockEC2API) GetDefaultCreditSpecificationWithContext added in v1.19.0

func (m *MockEC2API) GetDefaultCreditSpecificationWithContext(arg0 context.Context, arg1 *ec2.GetDefaultCreditSpecificationInput, arg2 ...request.Option) (*ec2.GetDefaultCreditSpecificationOutput, error)

GetDefaultCreditSpecificationWithContext mocks base method.

func (*MockEC2API) GetEbsDefaultKmsKeyId added in v1.19.0

func (m *MockEC2API) GetEbsDefaultKmsKeyId(arg0 *ec2.GetEbsDefaultKmsKeyIdInput) (*ec2.GetEbsDefaultKmsKeyIdOutput, error)

GetEbsDefaultKmsKeyId mocks base method.

func (*MockEC2API) GetEbsDefaultKmsKeyIdRequest added in v1.19.0

func (m *MockEC2API) GetEbsDefaultKmsKeyIdRequest(arg0 *ec2.GetEbsDefaultKmsKeyIdInput) (*request.Request, *ec2.GetEbsDefaultKmsKeyIdOutput)

GetEbsDefaultKmsKeyIdRequest mocks base method.

func (*MockEC2API) GetEbsDefaultKmsKeyIdWithContext added in v1.19.0

func (m *MockEC2API) GetEbsDefaultKmsKeyIdWithContext(arg0 context.Context, arg1 *ec2.GetEbsDefaultKmsKeyIdInput, arg2 ...request.Option) (*ec2.GetEbsDefaultKmsKeyIdOutput, error)

GetEbsDefaultKmsKeyIdWithContext mocks base method.

func (*MockEC2API) GetEbsEncryptionByDefault added in v1.19.0

GetEbsEncryptionByDefault mocks base method.

func (*MockEC2API) GetEbsEncryptionByDefaultRequest added in v1.19.0

func (m *MockEC2API) GetEbsEncryptionByDefaultRequest(arg0 *ec2.GetEbsEncryptionByDefaultInput) (*request.Request, *ec2.GetEbsEncryptionByDefaultOutput)

GetEbsEncryptionByDefaultRequest mocks base method.

func (*MockEC2API) GetEbsEncryptionByDefaultWithContext added in v1.19.0

func (m *MockEC2API) GetEbsEncryptionByDefaultWithContext(arg0 context.Context, arg1 *ec2.GetEbsEncryptionByDefaultInput, arg2 ...request.Option) (*ec2.GetEbsEncryptionByDefaultOutput, error)

GetEbsEncryptionByDefaultWithContext mocks base method.

func (*MockEC2API) GetFlowLogsIntegrationTemplate added in v1.19.0

GetFlowLogsIntegrationTemplate mocks base method.

func (*MockEC2API) GetFlowLogsIntegrationTemplateRequest added in v1.19.0

func (m *MockEC2API) GetFlowLogsIntegrationTemplateRequest(arg0 *ec2.GetFlowLogsIntegrationTemplateInput) (*request.Request, *ec2.GetFlowLogsIntegrationTemplateOutput)

GetFlowLogsIntegrationTemplateRequest mocks base method.

func (*MockEC2API) GetFlowLogsIntegrationTemplateWithContext added in v1.19.0

func (m *MockEC2API) GetFlowLogsIntegrationTemplateWithContext(arg0 context.Context, arg1 *ec2.GetFlowLogsIntegrationTemplateInput, arg2 ...request.Option) (*ec2.GetFlowLogsIntegrationTemplateOutput, error)

GetFlowLogsIntegrationTemplateWithContext mocks base method.

func (*MockEC2API) GetGroupsForCapacityReservation added in v1.19.0

GetGroupsForCapacityReservation mocks base method.

func (*MockEC2API) GetGroupsForCapacityReservationPages added in v1.19.0

func (m *MockEC2API) GetGroupsForCapacityReservationPages(arg0 *ec2.GetGroupsForCapacityReservationInput, arg1 func(*ec2.GetGroupsForCapacityReservationOutput, bool) bool) error

GetGroupsForCapacityReservationPages mocks base method.

func (*MockEC2API) GetGroupsForCapacityReservationPagesWithContext added in v1.19.0

func (m *MockEC2API) GetGroupsForCapacityReservationPagesWithContext(arg0 context.Context, arg1 *ec2.GetGroupsForCapacityReservationInput, arg2 func(*ec2.GetGroupsForCapacityReservationOutput, bool) bool, arg3 ...request.Option) error

GetGroupsForCapacityReservationPagesWithContext mocks base method.

func (*MockEC2API) GetGroupsForCapacityReservationRequest added in v1.19.0

func (m *MockEC2API) GetGroupsForCapacityReservationRequest(arg0 *ec2.GetGroupsForCapacityReservationInput) (*request.Request, *ec2.GetGroupsForCapacityReservationOutput)

GetGroupsForCapacityReservationRequest mocks base method.

func (*MockEC2API) GetGroupsForCapacityReservationWithContext added in v1.19.0

func (m *MockEC2API) GetGroupsForCapacityReservationWithContext(arg0 context.Context, arg1 *ec2.GetGroupsForCapacityReservationInput, arg2 ...request.Option) (*ec2.GetGroupsForCapacityReservationOutput, error)

GetGroupsForCapacityReservationWithContext mocks base method.

func (*MockEC2API) GetHostReservationPurchasePreview added in v1.19.0

GetHostReservationPurchasePreview mocks base method.

func (*MockEC2API) GetHostReservationPurchasePreviewRequest added in v1.19.0

GetHostReservationPurchasePreviewRequest mocks base method.

func (*MockEC2API) GetHostReservationPurchasePreviewWithContext added in v1.19.0

func (m *MockEC2API) GetHostReservationPurchasePreviewWithContext(arg0 context.Context, arg1 *ec2.GetHostReservationPurchasePreviewInput, arg2 ...request.Option) (*ec2.GetHostReservationPurchasePreviewOutput, error)

GetHostReservationPurchasePreviewWithContext mocks base method.

func (*MockEC2API) GetImageBlockPublicAccessState added in v1.23.0

GetImageBlockPublicAccessState mocks base method.

func (*MockEC2API) GetImageBlockPublicAccessStateRequest added in v1.23.0

func (m *MockEC2API) GetImageBlockPublicAccessStateRequest(arg0 *ec2.GetImageBlockPublicAccessStateInput) (*request.Request, *ec2.GetImageBlockPublicAccessStateOutput)

GetImageBlockPublicAccessStateRequest mocks base method.

func (*MockEC2API) GetImageBlockPublicAccessStateWithContext added in v1.23.0

func (m *MockEC2API) GetImageBlockPublicAccessStateWithContext(arg0 context.Context, arg1 *ec2.GetImageBlockPublicAccessStateInput, arg2 ...request.Option) (*ec2.GetImageBlockPublicAccessStateOutput, error)

GetImageBlockPublicAccessStateWithContext mocks base method.

func (*MockEC2API) GetInstanceTypesFromInstanceRequirements added in v1.19.0

GetInstanceTypesFromInstanceRequirements mocks base method.

func (*MockEC2API) GetInstanceTypesFromInstanceRequirementsPages added in v1.19.0

func (m *MockEC2API) GetInstanceTypesFromInstanceRequirementsPages(arg0 *ec2.GetInstanceTypesFromInstanceRequirementsInput, arg1 func(*ec2.GetInstanceTypesFromInstanceRequirementsOutput, bool) bool) error

GetInstanceTypesFromInstanceRequirementsPages mocks base method.

func (*MockEC2API) GetInstanceTypesFromInstanceRequirementsPagesWithContext added in v1.19.0

func (m *MockEC2API) GetInstanceTypesFromInstanceRequirementsPagesWithContext(arg0 context.Context, arg1 *ec2.GetInstanceTypesFromInstanceRequirementsInput, arg2 func(*ec2.GetInstanceTypesFromInstanceRequirementsOutput, bool) bool, arg3 ...request.Option) error

GetInstanceTypesFromInstanceRequirementsPagesWithContext mocks base method.

func (*MockEC2API) GetInstanceTypesFromInstanceRequirementsRequest added in v1.19.0

GetInstanceTypesFromInstanceRequirementsRequest mocks base method.

func (*MockEC2API) GetInstanceTypesFromInstanceRequirementsWithContext added in v1.19.0

func (m *MockEC2API) GetInstanceTypesFromInstanceRequirementsWithContext(arg0 context.Context, arg1 *ec2.GetInstanceTypesFromInstanceRequirementsInput, arg2 ...request.Option) (*ec2.GetInstanceTypesFromInstanceRequirementsOutput, error)

GetInstanceTypesFromInstanceRequirementsWithContext mocks base method.

func (*MockEC2API) GetInstanceUefiData added in v1.19.0

func (m *MockEC2API) GetInstanceUefiData(arg0 *ec2.GetInstanceUefiDataInput) (*ec2.GetInstanceUefiDataOutput, error)

GetInstanceUefiData mocks base method.

func (*MockEC2API) GetInstanceUefiDataRequest added in v1.19.0

func (m *MockEC2API) GetInstanceUefiDataRequest(arg0 *ec2.GetInstanceUefiDataInput) (*request.Request, *ec2.GetInstanceUefiDataOutput)

GetInstanceUefiDataRequest mocks base method.

func (*MockEC2API) GetInstanceUefiDataWithContext added in v1.19.0

func (m *MockEC2API) GetInstanceUefiDataWithContext(arg0 context.Context, arg1 *ec2.GetInstanceUefiDataInput, arg2 ...request.Option) (*ec2.GetInstanceUefiDataOutput, error)

GetInstanceUefiDataWithContext mocks base method.

func (*MockEC2API) GetIpamAddressHistory added in v1.19.0

func (m *MockEC2API) GetIpamAddressHistory(arg0 *ec2.GetIpamAddressHistoryInput) (*ec2.GetIpamAddressHistoryOutput, error)

GetIpamAddressHistory mocks base method.

func (*MockEC2API) GetIpamAddressHistoryPages added in v1.19.0

func (m *MockEC2API) GetIpamAddressHistoryPages(arg0 *ec2.GetIpamAddressHistoryInput, arg1 func(*ec2.GetIpamAddressHistoryOutput, bool) bool) error

GetIpamAddressHistoryPages mocks base method.

func (*MockEC2API) GetIpamAddressHistoryPagesWithContext added in v1.19.0

func (m *MockEC2API) GetIpamAddressHistoryPagesWithContext(arg0 context.Context, arg1 *ec2.GetIpamAddressHistoryInput, arg2 func(*ec2.GetIpamAddressHistoryOutput, bool) bool, arg3 ...request.Option) error

GetIpamAddressHistoryPagesWithContext mocks base method.

func (*MockEC2API) GetIpamAddressHistoryRequest added in v1.19.0

func (m *MockEC2API) GetIpamAddressHistoryRequest(arg0 *ec2.GetIpamAddressHistoryInput) (*request.Request, *ec2.GetIpamAddressHistoryOutput)

GetIpamAddressHistoryRequest mocks base method.

func (*MockEC2API) GetIpamAddressHistoryWithContext added in v1.19.0

func (m *MockEC2API) GetIpamAddressHistoryWithContext(arg0 context.Context, arg1 *ec2.GetIpamAddressHistoryInput, arg2 ...request.Option) (*ec2.GetIpamAddressHistoryOutput, error)

GetIpamAddressHistoryWithContext mocks base method.

func (*MockEC2API) GetIpamDiscoveredAccounts added in v1.19.0

GetIpamDiscoveredAccounts mocks base method.

func (*MockEC2API) GetIpamDiscoveredAccountsPages added in v1.19.0

func (m *MockEC2API) GetIpamDiscoveredAccountsPages(arg0 *ec2.GetIpamDiscoveredAccountsInput, arg1 func(*ec2.GetIpamDiscoveredAccountsOutput, bool) bool) error

GetIpamDiscoveredAccountsPages mocks base method.

func (*MockEC2API) GetIpamDiscoveredAccountsPagesWithContext added in v1.19.0

func (m *MockEC2API) GetIpamDiscoveredAccountsPagesWithContext(arg0 context.Context, arg1 *ec2.GetIpamDiscoveredAccountsInput, arg2 func(*ec2.GetIpamDiscoveredAccountsOutput, bool) bool, arg3 ...request.Option) error

GetIpamDiscoveredAccountsPagesWithContext mocks base method.

func (*MockEC2API) GetIpamDiscoveredAccountsRequest added in v1.19.0

func (m *MockEC2API) GetIpamDiscoveredAccountsRequest(arg0 *ec2.GetIpamDiscoveredAccountsInput) (*request.Request, *ec2.GetIpamDiscoveredAccountsOutput)

GetIpamDiscoveredAccountsRequest mocks base method.

func (*MockEC2API) GetIpamDiscoveredAccountsWithContext added in v1.19.0

func (m *MockEC2API) GetIpamDiscoveredAccountsWithContext(arg0 context.Context, arg1 *ec2.GetIpamDiscoveredAccountsInput, arg2 ...request.Option) (*ec2.GetIpamDiscoveredAccountsOutput, error)

GetIpamDiscoveredAccountsWithContext mocks base method.

func (*MockEC2API) GetIpamDiscoveredResourceCidrs added in v1.19.0

GetIpamDiscoveredResourceCidrs mocks base method.

func (*MockEC2API) GetIpamDiscoveredResourceCidrsPages added in v1.19.0

func (m *MockEC2API) GetIpamDiscoveredResourceCidrsPages(arg0 *ec2.GetIpamDiscoveredResourceCidrsInput, arg1 func(*ec2.GetIpamDiscoveredResourceCidrsOutput, bool) bool) error

GetIpamDiscoveredResourceCidrsPages mocks base method.

func (*MockEC2API) GetIpamDiscoveredResourceCidrsPagesWithContext added in v1.19.0

func (m *MockEC2API) GetIpamDiscoveredResourceCidrsPagesWithContext(arg0 context.Context, arg1 *ec2.GetIpamDiscoveredResourceCidrsInput, arg2 func(*ec2.GetIpamDiscoveredResourceCidrsOutput, bool) bool, arg3 ...request.Option) error

GetIpamDiscoveredResourceCidrsPagesWithContext mocks base method.

func (*MockEC2API) GetIpamDiscoveredResourceCidrsRequest added in v1.19.0

func (m *MockEC2API) GetIpamDiscoveredResourceCidrsRequest(arg0 *ec2.GetIpamDiscoveredResourceCidrsInput) (*request.Request, *ec2.GetIpamDiscoveredResourceCidrsOutput)

GetIpamDiscoveredResourceCidrsRequest mocks base method.

func (*MockEC2API) GetIpamDiscoveredResourceCidrsWithContext added in v1.19.0

func (m *MockEC2API) GetIpamDiscoveredResourceCidrsWithContext(arg0 context.Context, arg1 *ec2.GetIpamDiscoveredResourceCidrsInput, arg2 ...request.Option) (*ec2.GetIpamDiscoveredResourceCidrsOutput, error)

GetIpamDiscoveredResourceCidrsWithContext mocks base method.

func (*MockEC2API) GetIpamPoolAllocations added in v1.19.0

func (m *MockEC2API) GetIpamPoolAllocations(arg0 *ec2.GetIpamPoolAllocationsInput) (*ec2.GetIpamPoolAllocationsOutput, error)

GetIpamPoolAllocations mocks base method.

func (*MockEC2API) GetIpamPoolAllocationsPages added in v1.19.0

func (m *MockEC2API) GetIpamPoolAllocationsPages(arg0 *ec2.GetIpamPoolAllocationsInput, arg1 func(*ec2.GetIpamPoolAllocationsOutput, bool) bool) error

GetIpamPoolAllocationsPages mocks base method.

func (*MockEC2API) GetIpamPoolAllocationsPagesWithContext added in v1.19.0

func (m *MockEC2API) GetIpamPoolAllocationsPagesWithContext(arg0 context.Context, arg1 *ec2.GetIpamPoolAllocationsInput, arg2 func(*ec2.GetIpamPoolAllocationsOutput, bool) bool, arg3 ...request.Option) error

GetIpamPoolAllocationsPagesWithContext mocks base method.

func (*MockEC2API) GetIpamPoolAllocationsRequest added in v1.19.0

func (m *MockEC2API) GetIpamPoolAllocationsRequest(arg0 *ec2.GetIpamPoolAllocationsInput) (*request.Request, *ec2.GetIpamPoolAllocationsOutput)

GetIpamPoolAllocationsRequest mocks base method.

func (*MockEC2API) GetIpamPoolAllocationsWithContext added in v1.19.0

func (m *MockEC2API) GetIpamPoolAllocationsWithContext(arg0 context.Context, arg1 *ec2.GetIpamPoolAllocationsInput, arg2 ...request.Option) (*ec2.GetIpamPoolAllocationsOutput, error)

GetIpamPoolAllocationsWithContext mocks base method.

func (*MockEC2API) GetIpamPoolCidrs added in v1.19.0

func (m *MockEC2API) GetIpamPoolCidrs(arg0 *ec2.GetIpamPoolCidrsInput) (*ec2.GetIpamPoolCidrsOutput, error)

GetIpamPoolCidrs mocks base method.

func (*MockEC2API) GetIpamPoolCidrsPages added in v1.19.0

func (m *MockEC2API) GetIpamPoolCidrsPages(arg0 *ec2.GetIpamPoolCidrsInput, arg1 func(*ec2.GetIpamPoolCidrsOutput, bool) bool) error

GetIpamPoolCidrsPages mocks base method.

func (*MockEC2API) GetIpamPoolCidrsPagesWithContext added in v1.19.0

func (m *MockEC2API) GetIpamPoolCidrsPagesWithContext(arg0 context.Context, arg1 *ec2.GetIpamPoolCidrsInput, arg2 func(*ec2.GetIpamPoolCidrsOutput, bool) bool, arg3 ...request.Option) error

GetIpamPoolCidrsPagesWithContext mocks base method.

func (*MockEC2API) GetIpamPoolCidrsRequest added in v1.19.0

func (m *MockEC2API) GetIpamPoolCidrsRequest(arg0 *ec2.GetIpamPoolCidrsInput) (*request.Request, *ec2.GetIpamPoolCidrsOutput)

GetIpamPoolCidrsRequest mocks base method.

func (*MockEC2API) GetIpamPoolCidrsWithContext added in v1.19.0

func (m *MockEC2API) GetIpamPoolCidrsWithContext(arg0 context.Context, arg1 *ec2.GetIpamPoolCidrsInput, arg2 ...request.Option) (*ec2.GetIpamPoolCidrsOutput, error)

GetIpamPoolCidrsWithContext mocks base method.

func (*MockEC2API) GetIpamResourceCidrs added in v1.19.0

func (m *MockEC2API) GetIpamResourceCidrs(arg0 *ec2.GetIpamResourceCidrsInput) (*ec2.GetIpamResourceCidrsOutput, error)

GetIpamResourceCidrs mocks base method.

func (*MockEC2API) GetIpamResourceCidrsPages added in v1.19.0

func (m *MockEC2API) GetIpamResourceCidrsPages(arg0 *ec2.GetIpamResourceCidrsInput, arg1 func(*ec2.GetIpamResourceCidrsOutput, bool) bool) error

GetIpamResourceCidrsPages mocks base method.

func (*MockEC2API) GetIpamResourceCidrsPagesWithContext added in v1.19.0

func (m *MockEC2API) GetIpamResourceCidrsPagesWithContext(arg0 context.Context, arg1 *ec2.GetIpamResourceCidrsInput, arg2 func(*ec2.GetIpamResourceCidrsOutput, bool) bool, arg3 ...request.Option) error

GetIpamResourceCidrsPagesWithContext mocks base method.

func (*MockEC2API) GetIpamResourceCidrsRequest added in v1.19.0

func (m *MockEC2API) GetIpamResourceCidrsRequest(arg0 *ec2.GetIpamResourceCidrsInput) (*request.Request, *ec2.GetIpamResourceCidrsOutput)

GetIpamResourceCidrsRequest mocks base method.

func (*MockEC2API) GetIpamResourceCidrsWithContext added in v1.19.0

func (m *MockEC2API) GetIpamResourceCidrsWithContext(arg0 context.Context, arg1 *ec2.GetIpamResourceCidrsInput, arg2 ...request.Option) (*ec2.GetIpamResourceCidrsOutput, error)

GetIpamResourceCidrsWithContext mocks base method.

func (*MockEC2API) GetLaunchTemplateData added in v1.19.0

func (m *MockEC2API) GetLaunchTemplateData(arg0 *ec2.GetLaunchTemplateDataInput) (*ec2.GetLaunchTemplateDataOutput, error)

GetLaunchTemplateData mocks base method.

func (*MockEC2API) GetLaunchTemplateDataRequest added in v1.19.0

func (m *MockEC2API) GetLaunchTemplateDataRequest(arg0 *ec2.GetLaunchTemplateDataInput) (*request.Request, *ec2.GetLaunchTemplateDataOutput)

GetLaunchTemplateDataRequest mocks base method.

func (*MockEC2API) GetLaunchTemplateDataWithContext added in v1.19.0

func (m *MockEC2API) GetLaunchTemplateDataWithContext(arg0 context.Context, arg1 *ec2.GetLaunchTemplateDataInput, arg2 ...request.Option) (*ec2.GetLaunchTemplateDataOutput, error)

GetLaunchTemplateDataWithContext mocks base method.

func (*MockEC2API) GetManagedPrefixListAssociations added in v1.19.0

GetManagedPrefixListAssociations mocks base method.

func (*MockEC2API) GetManagedPrefixListAssociationsPages added in v1.19.0

func (m *MockEC2API) GetManagedPrefixListAssociationsPages(arg0 *ec2.GetManagedPrefixListAssociationsInput, arg1 func(*ec2.GetManagedPrefixListAssociationsOutput, bool) bool) error

GetManagedPrefixListAssociationsPages mocks base method.

func (*MockEC2API) GetManagedPrefixListAssociationsPagesWithContext added in v1.19.0

func (m *MockEC2API) GetManagedPrefixListAssociationsPagesWithContext(arg0 context.Context, arg1 *ec2.GetManagedPrefixListAssociationsInput, arg2 func(*ec2.GetManagedPrefixListAssociationsOutput, bool) bool, arg3 ...request.Option) error

GetManagedPrefixListAssociationsPagesWithContext mocks base method.

func (*MockEC2API) GetManagedPrefixListAssociationsRequest added in v1.19.0

func (m *MockEC2API) GetManagedPrefixListAssociationsRequest(arg0 *ec2.GetManagedPrefixListAssociationsInput) (*request.Request, *ec2.GetManagedPrefixListAssociationsOutput)

GetManagedPrefixListAssociationsRequest mocks base method.

func (*MockEC2API) GetManagedPrefixListAssociationsWithContext added in v1.19.0

func (m *MockEC2API) GetManagedPrefixListAssociationsWithContext(arg0 context.Context, arg1 *ec2.GetManagedPrefixListAssociationsInput, arg2 ...request.Option) (*ec2.GetManagedPrefixListAssociationsOutput, error)

GetManagedPrefixListAssociationsWithContext mocks base method.

func (*MockEC2API) GetManagedPrefixListEntries added in v1.19.0

GetManagedPrefixListEntries mocks base method.

func (*MockEC2API) GetManagedPrefixListEntriesPages added in v1.19.0

func (m *MockEC2API) GetManagedPrefixListEntriesPages(arg0 *ec2.GetManagedPrefixListEntriesInput, arg1 func(*ec2.GetManagedPrefixListEntriesOutput, bool) bool) error

GetManagedPrefixListEntriesPages mocks base method.

func (*MockEC2API) GetManagedPrefixListEntriesPagesWithContext added in v1.19.0

func (m *MockEC2API) GetManagedPrefixListEntriesPagesWithContext(arg0 context.Context, arg1 *ec2.GetManagedPrefixListEntriesInput, arg2 func(*ec2.GetManagedPrefixListEntriesOutput, bool) bool, arg3 ...request.Option) error

GetManagedPrefixListEntriesPagesWithContext mocks base method.

func (*MockEC2API) GetManagedPrefixListEntriesRequest added in v1.19.0

func (m *MockEC2API) GetManagedPrefixListEntriesRequest(arg0 *ec2.GetManagedPrefixListEntriesInput) (*request.Request, *ec2.GetManagedPrefixListEntriesOutput)

GetManagedPrefixListEntriesRequest mocks base method.

func (*MockEC2API) GetManagedPrefixListEntriesWithContext added in v1.19.0

func (m *MockEC2API) GetManagedPrefixListEntriesWithContext(arg0 context.Context, arg1 *ec2.GetManagedPrefixListEntriesInput, arg2 ...request.Option) (*ec2.GetManagedPrefixListEntriesOutput, error)

GetManagedPrefixListEntriesWithContext mocks base method.

func (*MockEC2API) GetNetworkInsightsAccessScopeAnalysisFindings added in v1.19.0

GetNetworkInsightsAccessScopeAnalysisFindings mocks base method.

func (*MockEC2API) GetNetworkInsightsAccessScopeAnalysisFindingsPages added in v1.19.0

func (m *MockEC2API) GetNetworkInsightsAccessScopeAnalysisFindingsPages(arg0 *ec2.GetNetworkInsightsAccessScopeAnalysisFindingsInput, arg1 func(*ec2.GetNetworkInsightsAccessScopeAnalysisFindingsOutput, bool) bool) error

GetNetworkInsightsAccessScopeAnalysisFindingsPages mocks base method.

func (*MockEC2API) GetNetworkInsightsAccessScopeAnalysisFindingsPagesWithContext added in v1.19.0

func (m *MockEC2API) GetNetworkInsightsAccessScopeAnalysisFindingsPagesWithContext(arg0 context.Context, arg1 *ec2.GetNetworkInsightsAccessScopeAnalysisFindingsInput, arg2 func(*ec2.GetNetworkInsightsAccessScopeAnalysisFindingsOutput, bool) bool, arg3 ...request.Option) error

GetNetworkInsightsAccessScopeAnalysisFindingsPagesWithContext mocks base method.

func (*MockEC2API) GetNetworkInsightsAccessScopeAnalysisFindingsRequest added in v1.19.0

GetNetworkInsightsAccessScopeAnalysisFindingsRequest mocks base method.

func (*MockEC2API) GetNetworkInsightsAccessScopeAnalysisFindingsWithContext added in v1.19.0

func (m *MockEC2API) GetNetworkInsightsAccessScopeAnalysisFindingsWithContext(arg0 context.Context, arg1 *ec2.GetNetworkInsightsAccessScopeAnalysisFindingsInput, arg2 ...request.Option) (*ec2.GetNetworkInsightsAccessScopeAnalysisFindingsOutput, error)

GetNetworkInsightsAccessScopeAnalysisFindingsWithContext mocks base method.

func (*MockEC2API) GetNetworkInsightsAccessScopeContent added in v1.19.0

GetNetworkInsightsAccessScopeContent mocks base method.

func (*MockEC2API) GetNetworkInsightsAccessScopeContentRequest added in v1.19.0

GetNetworkInsightsAccessScopeContentRequest mocks base method.

func (*MockEC2API) GetNetworkInsightsAccessScopeContentWithContext added in v1.19.0

func (m *MockEC2API) GetNetworkInsightsAccessScopeContentWithContext(arg0 context.Context, arg1 *ec2.GetNetworkInsightsAccessScopeContentInput, arg2 ...request.Option) (*ec2.GetNetworkInsightsAccessScopeContentOutput, error)

GetNetworkInsightsAccessScopeContentWithContext mocks base method.

func (*MockEC2API) GetPasswordData added in v1.19.0

func (m *MockEC2API) GetPasswordData(arg0 *ec2.GetPasswordDataInput) (*ec2.GetPasswordDataOutput, error)

GetPasswordData mocks base method.

func (*MockEC2API) GetPasswordDataRequest added in v1.19.0

func (m *MockEC2API) GetPasswordDataRequest(arg0 *ec2.GetPasswordDataInput) (*request.Request, *ec2.GetPasswordDataOutput)

GetPasswordDataRequest mocks base method.

func (*MockEC2API) GetPasswordDataWithContext added in v1.19.0

func (m *MockEC2API) GetPasswordDataWithContext(arg0 context.Context, arg1 *ec2.GetPasswordDataInput, arg2 ...request.Option) (*ec2.GetPasswordDataOutput, error)

GetPasswordDataWithContext mocks base method.

func (*MockEC2API) GetReservedInstancesExchangeQuote added in v1.19.0

GetReservedInstancesExchangeQuote mocks base method.

func (*MockEC2API) GetReservedInstancesExchangeQuoteRequest added in v1.19.0

GetReservedInstancesExchangeQuoteRequest mocks base method.

func (*MockEC2API) GetReservedInstancesExchangeQuoteWithContext added in v1.19.0

func (m *MockEC2API) GetReservedInstancesExchangeQuoteWithContext(arg0 context.Context, arg1 *ec2.GetReservedInstancesExchangeQuoteInput, arg2 ...request.Option) (*ec2.GetReservedInstancesExchangeQuoteOutput, error)

GetReservedInstancesExchangeQuoteWithContext mocks base method.

func (*MockEC2API) GetSerialConsoleAccessStatus added in v1.19.0

GetSerialConsoleAccessStatus mocks base method.

func (*MockEC2API) GetSerialConsoleAccessStatusRequest added in v1.19.0

func (m *MockEC2API) GetSerialConsoleAccessStatusRequest(arg0 *ec2.GetSerialConsoleAccessStatusInput) (*request.Request, *ec2.GetSerialConsoleAccessStatusOutput)

GetSerialConsoleAccessStatusRequest mocks base method.

func (*MockEC2API) GetSerialConsoleAccessStatusWithContext added in v1.19.0

func (m *MockEC2API) GetSerialConsoleAccessStatusWithContext(arg0 context.Context, arg1 *ec2.GetSerialConsoleAccessStatusInput, arg2 ...request.Option) (*ec2.GetSerialConsoleAccessStatusOutput, error)

GetSerialConsoleAccessStatusWithContext mocks base method.

func (*MockEC2API) GetSpotPlacementScores added in v1.19.0

func (m *MockEC2API) GetSpotPlacementScores(arg0 *ec2.GetSpotPlacementScoresInput) (*ec2.GetSpotPlacementScoresOutput, error)

GetSpotPlacementScores mocks base method.

func (*MockEC2API) GetSpotPlacementScoresPages added in v1.19.0

func (m *MockEC2API) GetSpotPlacementScoresPages(arg0 *ec2.GetSpotPlacementScoresInput, arg1 func(*ec2.GetSpotPlacementScoresOutput, bool) bool) error

GetSpotPlacementScoresPages mocks base method.

func (*MockEC2API) GetSpotPlacementScoresPagesWithContext added in v1.19.0

func (m *MockEC2API) GetSpotPlacementScoresPagesWithContext(arg0 context.Context, arg1 *ec2.GetSpotPlacementScoresInput, arg2 func(*ec2.GetSpotPlacementScoresOutput, bool) bool, arg3 ...request.Option) error

GetSpotPlacementScoresPagesWithContext mocks base method.

func (*MockEC2API) GetSpotPlacementScoresRequest added in v1.19.0

func (m *MockEC2API) GetSpotPlacementScoresRequest(arg0 *ec2.GetSpotPlacementScoresInput) (*request.Request, *ec2.GetSpotPlacementScoresOutput)

GetSpotPlacementScoresRequest mocks base method.

func (*MockEC2API) GetSpotPlacementScoresWithContext added in v1.19.0

func (m *MockEC2API) GetSpotPlacementScoresWithContext(arg0 context.Context, arg1 *ec2.GetSpotPlacementScoresInput, arg2 ...request.Option) (*ec2.GetSpotPlacementScoresOutput, error)

GetSpotPlacementScoresWithContext mocks base method.

func (*MockEC2API) GetSubnetCidrReservations added in v1.19.0

GetSubnetCidrReservations mocks base method.

func (*MockEC2API) GetSubnetCidrReservationsRequest added in v1.19.0

func (m *MockEC2API) GetSubnetCidrReservationsRequest(arg0 *ec2.GetSubnetCidrReservationsInput) (*request.Request, *ec2.GetSubnetCidrReservationsOutput)

GetSubnetCidrReservationsRequest mocks base method.

func (*MockEC2API) GetSubnetCidrReservationsWithContext added in v1.19.0

func (m *MockEC2API) GetSubnetCidrReservationsWithContext(arg0 context.Context, arg1 *ec2.GetSubnetCidrReservationsInput, arg2 ...request.Option) (*ec2.GetSubnetCidrReservationsOutput, error)

GetSubnetCidrReservationsWithContext mocks base method.

func (*MockEC2API) GetTransitGatewayAttachmentPropagations added in v1.19.0

GetTransitGatewayAttachmentPropagations mocks base method.

func (*MockEC2API) GetTransitGatewayAttachmentPropagationsPages added in v1.19.0

func (m *MockEC2API) GetTransitGatewayAttachmentPropagationsPages(arg0 *ec2.GetTransitGatewayAttachmentPropagationsInput, arg1 func(*ec2.GetTransitGatewayAttachmentPropagationsOutput, bool) bool) error

GetTransitGatewayAttachmentPropagationsPages mocks base method.

func (*MockEC2API) GetTransitGatewayAttachmentPropagationsPagesWithContext added in v1.19.0

func (m *MockEC2API) GetTransitGatewayAttachmentPropagationsPagesWithContext(arg0 context.Context, arg1 *ec2.GetTransitGatewayAttachmentPropagationsInput, arg2 func(*ec2.GetTransitGatewayAttachmentPropagationsOutput, bool) bool, arg3 ...request.Option) error

GetTransitGatewayAttachmentPropagationsPagesWithContext mocks base method.

func (*MockEC2API) GetTransitGatewayAttachmentPropagationsRequest added in v1.19.0

GetTransitGatewayAttachmentPropagationsRequest mocks base method.

func (*MockEC2API) GetTransitGatewayAttachmentPropagationsWithContext added in v1.19.0

func (m *MockEC2API) GetTransitGatewayAttachmentPropagationsWithContext(arg0 context.Context, arg1 *ec2.GetTransitGatewayAttachmentPropagationsInput, arg2 ...request.Option) (*ec2.GetTransitGatewayAttachmentPropagationsOutput, error)

GetTransitGatewayAttachmentPropagationsWithContext mocks base method.

func (*MockEC2API) GetTransitGatewayMulticastDomainAssociations added in v1.19.0

GetTransitGatewayMulticastDomainAssociations mocks base method.

func (*MockEC2API) GetTransitGatewayMulticastDomainAssociationsPages added in v1.19.0

func (m *MockEC2API) GetTransitGatewayMulticastDomainAssociationsPages(arg0 *ec2.GetTransitGatewayMulticastDomainAssociationsInput, arg1 func(*ec2.GetTransitGatewayMulticastDomainAssociationsOutput, bool) bool) error

GetTransitGatewayMulticastDomainAssociationsPages mocks base method.

func (*MockEC2API) GetTransitGatewayMulticastDomainAssociationsPagesWithContext added in v1.19.0

func (m *MockEC2API) GetTransitGatewayMulticastDomainAssociationsPagesWithContext(arg0 context.Context, arg1 *ec2.GetTransitGatewayMulticastDomainAssociationsInput, arg2 func(*ec2.GetTransitGatewayMulticastDomainAssociationsOutput, bool) bool, arg3 ...request.Option) error

GetTransitGatewayMulticastDomainAssociationsPagesWithContext mocks base method.

func (*MockEC2API) GetTransitGatewayMulticastDomainAssociationsRequest added in v1.19.0

GetTransitGatewayMulticastDomainAssociationsRequest mocks base method.

func (*MockEC2API) GetTransitGatewayMulticastDomainAssociationsWithContext added in v1.19.0

func (m *MockEC2API) GetTransitGatewayMulticastDomainAssociationsWithContext(arg0 context.Context, arg1 *ec2.GetTransitGatewayMulticastDomainAssociationsInput, arg2 ...request.Option) (*ec2.GetTransitGatewayMulticastDomainAssociationsOutput, error)

GetTransitGatewayMulticastDomainAssociationsWithContext mocks base method.

func (*MockEC2API) GetTransitGatewayPolicyTableAssociations added in v1.19.0

GetTransitGatewayPolicyTableAssociations mocks base method.

func (*MockEC2API) GetTransitGatewayPolicyTableAssociationsPages added in v1.19.0

func (m *MockEC2API) GetTransitGatewayPolicyTableAssociationsPages(arg0 *ec2.GetTransitGatewayPolicyTableAssociationsInput, arg1 func(*ec2.GetTransitGatewayPolicyTableAssociationsOutput, bool) bool) error

GetTransitGatewayPolicyTableAssociationsPages mocks base method.

func (*MockEC2API) GetTransitGatewayPolicyTableAssociationsPagesWithContext added in v1.19.0

func (m *MockEC2API) GetTransitGatewayPolicyTableAssociationsPagesWithContext(arg0 context.Context, arg1 *ec2.GetTransitGatewayPolicyTableAssociationsInput, arg2 func(*ec2.GetTransitGatewayPolicyTableAssociationsOutput, bool) bool, arg3 ...request.Option) error

GetTransitGatewayPolicyTableAssociationsPagesWithContext mocks base method.

func (*MockEC2API) GetTransitGatewayPolicyTableAssociationsRequest added in v1.19.0

GetTransitGatewayPolicyTableAssociationsRequest mocks base method.

func (*MockEC2API) GetTransitGatewayPolicyTableAssociationsWithContext added in v1.19.0

func (m *MockEC2API) GetTransitGatewayPolicyTableAssociationsWithContext(arg0 context.Context, arg1 *ec2.GetTransitGatewayPolicyTableAssociationsInput, arg2 ...request.Option) (*ec2.GetTransitGatewayPolicyTableAssociationsOutput, error)

GetTransitGatewayPolicyTableAssociationsWithContext mocks base method.

func (*MockEC2API) GetTransitGatewayPolicyTableEntries added in v1.19.0

GetTransitGatewayPolicyTableEntries mocks base method.

func (*MockEC2API) GetTransitGatewayPolicyTableEntriesRequest added in v1.19.0

GetTransitGatewayPolicyTableEntriesRequest mocks base method.

func (*MockEC2API) GetTransitGatewayPolicyTableEntriesWithContext added in v1.19.0

func (m *MockEC2API) GetTransitGatewayPolicyTableEntriesWithContext(arg0 context.Context, arg1 *ec2.GetTransitGatewayPolicyTableEntriesInput, arg2 ...request.Option) (*ec2.GetTransitGatewayPolicyTableEntriesOutput, error)

GetTransitGatewayPolicyTableEntriesWithContext mocks base method.

func (*MockEC2API) GetTransitGatewayPrefixListReferences added in v1.19.0

GetTransitGatewayPrefixListReferences mocks base method.

func (*MockEC2API) GetTransitGatewayPrefixListReferencesPages added in v1.19.0

func (m *MockEC2API) GetTransitGatewayPrefixListReferencesPages(arg0 *ec2.GetTransitGatewayPrefixListReferencesInput, arg1 func(*ec2.GetTransitGatewayPrefixListReferencesOutput, bool) bool) error

GetTransitGatewayPrefixListReferencesPages mocks base method.

func (*MockEC2API) GetTransitGatewayPrefixListReferencesPagesWithContext added in v1.19.0

func (m *MockEC2API) GetTransitGatewayPrefixListReferencesPagesWithContext(arg0 context.Context, arg1 *ec2.GetTransitGatewayPrefixListReferencesInput, arg2 func(*ec2.GetTransitGatewayPrefixListReferencesOutput, bool) bool, arg3 ...request.Option) error

GetTransitGatewayPrefixListReferencesPagesWithContext mocks base method.

func (*MockEC2API) GetTransitGatewayPrefixListReferencesRequest added in v1.19.0

GetTransitGatewayPrefixListReferencesRequest mocks base method.

func (*MockEC2API) GetTransitGatewayPrefixListReferencesWithContext added in v1.19.0

func (m *MockEC2API) GetTransitGatewayPrefixListReferencesWithContext(arg0 context.Context, arg1 *ec2.GetTransitGatewayPrefixListReferencesInput, arg2 ...request.Option) (*ec2.GetTransitGatewayPrefixListReferencesOutput, error)

GetTransitGatewayPrefixListReferencesWithContext mocks base method.

func (*MockEC2API) GetTransitGatewayRouteTableAssociations added in v1.19.0

GetTransitGatewayRouteTableAssociations mocks base method.

func (*MockEC2API) GetTransitGatewayRouteTableAssociationsPages added in v1.19.0

func (m *MockEC2API) GetTransitGatewayRouteTableAssociationsPages(arg0 *ec2.GetTransitGatewayRouteTableAssociationsInput, arg1 func(*ec2.GetTransitGatewayRouteTableAssociationsOutput, bool) bool) error

GetTransitGatewayRouteTableAssociationsPages mocks base method.

func (*MockEC2API) GetTransitGatewayRouteTableAssociationsPagesWithContext added in v1.19.0

func (m *MockEC2API) GetTransitGatewayRouteTableAssociationsPagesWithContext(arg0 context.Context, arg1 *ec2.GetTransitGatewayRouteTableAssociationsInput, arg2 func(*ec2.GetTransitGatewayRouteTableAssociationsOutput, bool) bool, arg3 ...request.Option) error

GetTransitGatewayRouteTableAssociationsPagesWithContext mocks base method.

func (*MockEC2API) GetTransitGatewayRouteTableAssociationsRequest added in v1.19.0

GetTransitGatewayRouteTableAssociationsRequest mocks base method.

func (*MockEC2API) GetTransitGatewayRouteTableAssociationsWithContext added in v1.19.0

func (m *MockEC2API) GetTransitGatewayRouteTableAssociationsWithContext(arg0 context.Context, arg1 *ec2.GetTransitGatewayRouteTableAssociationsInput, arg2 ...request.Option) (*ec2.GetTransitGatewayRouteTableAssociationsOutput, error)

GetTransitGatewayRouteTableAssociationsWithContext mocks base method.

func (*MockEC2API) GetTransitGatewayRouteTablePropagations added in v1.19.0

GetTransitGatewayRouteTablePropagations mocks base method.

func (*MockEC2API) GetTransitGatewayRouteTablePropagationsPages added in v1.19.0

func (m *MockEC2API) GetTransitGatewayRouteTablePropagationsPages(arg0 *ec2.GetTransitGatewayRouteTablePropagationsInput, arg1 func(*ec2.GetTransitGatewayRouteTablePropagationsOutput, bool) bool) error

GetTransitGatewayRouteTablePropagationsPages mocks base method.

func (*MockEC2API) GetTransitGatewayRouteTablePropagationsPagesWithContext added in v1.19.0

func (m *MockEC2API) GetTransitGatewayRouteTablePropagationsPagesWithContext(arg0 context.Context, arg1 *ec2.GetTransitGatewayRouteTablePropagationsInput, arg2 func(*ec2.GetTransitGatewayRouteTablePropagationsOutput, bool) bool, arg3 ...request.Option) error

GetTransitGatewayRouteTablePropagationsPagesWithContext mocks base method.

func (*MockEC2API) GetTransitGatewayRouteTablePropagationsRequest added in v1.19.0

GetTransitGatewayRouteTablePropagationsRequest mocks base method.

func (*MockEC2API) GetTransitGatewayRouteTablePropagationsWithContext added in v1.19.0

func (m *MockEC2API) GetTransitGatewayRouteTablePropagationsWithContext(arg0 context.Context, arg1 *ec2.GetTransitGatewayRouteTablePropagationsInput, arg2 ...request.Option) (*ec2.GetTransitGatewayRouteTablePropagationsOutput, error)

GetTransitGatewayRouteTablePropagationsWithContext mocks base method.

func (*MockEC2API) GetVerifiedAccessEndpointPolicy added in v1.19.0

GetVerifiedAccessEndpointPolicy mocks base method.

func (*MockEC2API) GetVerifiedAccessEndpointPolicyRequest added in v1.19.0

func (m *MockEC2API) GetVerifiedAccessEndpointPolicyRequest(arg0 *ec2.GetVerifiedAccessEndpointPolicyInput) (*request.Request, *ec2.GetVerifiedAccessEndpointPolicyOutput)

GetVerifiedAccessEndpointPolicyRequest mocks base method.

func (*MockEC2API) GetVerifiedAccessEndpointPolicyWithContext added in v1.19.0

func (m *MockEC2API) GetVerifiedAccessEndpointPolicyWithContext(arg0 context.Context, arg1 *ec2.GetVerifiedAccessEndpointPolicyInput, arg2 ...request.Option) (*ec2.GetVerifiedAccessEndpointPolicyOutput, error)

GetVerifiedAccessEndpointPolicyWithContext mocks base method.

func (*MockEC2API) GetVerifiedAccessGroupPolicy added in v1.19.0

GetVerifiedAccessGroupPolicy mocks base method.

func (*MockEC2API) GetVerifiedAccessGroupPolicyRequest added in v1.19.0

func (m *MockEC2API) GetVerifiedAccessGroupPolicyRequest(arg0 *ec2.GetVerifiedAccessGroupPolicyInput) (*request.Request, *ec2.GetVerifiedAccessGroupPolicyOutput)

GetVerifiedAccessGroupPolicyRequest mocks base method.

func (*MockEC2API) GetVerifiedAccessGroupPolicyWithContext added in v1.19.0

func (m *MockEC2API) GetVerifiedAccessGroupPolicyWithContext(arg0 context.Context, arg1 *ec2.GetVerifiedAccessGroupPolicyInput, arg2 ...request.Option) (*ec2.GetVerifiedAccessGroupPolicyOutput, error)

GetVerifiedAccessGroupPolicyWithContext mocks base method.

func (*MockEC2API) GetVpnConnectionDeviceSampleConfiguration added in v1.19.0

GetVpnConnectionDeviceSampleConfiguration mocks base method.

func (*MockEC2API) GetVpnConnectionDeviceSampleConfigurationRequest added in v1.19.0

GetVpnConnectionDeviceSampleConfigurationRequest mocks base method.

func (*MockEC2API) GetVpnConnectionDeviceSampleConfigurationWithContext added in v1.19.0

func (m *MockEC2API) GetVpnConnectionDeviceSampleConfigurationWithContext(arg0 context.Context, arg1 *ec2.GetVpnConnectionDeviceSampleConfigurationInput, arg2 ...request.Option) (*ec2.GetVpnConnectionDeviceSampleConfigurationOutput, error)

GetVpnConnectionDeviceSampleConfigurationWithContext mocks base method.

func (*MockEC2API) GetVpnConnectionDeviceTypes added in v1.19.0

GetVpnConnectionDeviceTypes mocks base method.

func (*MockEC2API) GetVpnConnectionDeviceTypesPages added in v1.19.0

func (m *MockEC2API) GetVpnConnectionDeviceTypesPages(arg0 *ec2.GetVpnConnectionDeviceTypesInput, arg1 func(*ec2.GetVpnConnectionDeviceTypesOutput, bool) bool) error

GetVpnConnectionDeviceTypesPages mocks base method.

func (*MockEC2API) GetVpnConnectionDeviceTypesPagesWithContext added in v1.19.0

func (m *MockEC2API) GetVpnConnectionDeviceTypesPagesWithContext(arg0 context.Context, arg1 *ec2.GetVpnConnectionDeviceTypesInput, arg2 func(*ec2.GetVpnConnectionDeviceTypesOutput, bool) bool, arg3 ...request.Option) error

GetVpnConnectionDeviceTypesPagesWithContext mocks base method.

func (*MockEC2API) GetVpnConnectionDeviceTypesRequest added in v1.19.0

func (m *MockEC2API) GetVpnConnectionDeviceTypesRequest(arg0 *ec2.GetVpnConnectionDeviceTypesInput) (*request.Request, *ec2.GetVpnConnectionDeviceTypesOutput)

GetVpnConnectionDeviceTypesRequest mocks base method.

func (*MockEC2API) GetVpnConnectionDeviceTypesWithContext added in v1.19.0

func (m *MockEC2API) GetVpnConnectionDeviceTypesWithContext(arg0 context.Context, arg1 *ec2.GetVpnConnectionDeviceTypesInput, arg2 ...request.Option) (*ec2.GetVpnConnectionDeviceTypesOutput, error)

GetVpnConnectionDeviceTypesWithContext mocks base method.

func (*MockEC2API) GetVpnTunnelReplacementStatus added in v1.19.0

GetVpnTunnelReplacementStatus mocks base method.

func (*MockEC2API) GetVpnTunnelReplacementStatusRequest added in v1.19.0

func (m *MockEC2API) GetVpnTunnelReplacementStatusRequest(arg0 *ec2.GetVpnTunnelReplacementStatusInput) (*request.Request, *ec2.GetVpnTunnelReplacementStatusOutput)

GetVpnTunnelReplacementStatusRequest mocks base method.

func (*MockEC2API) GetVpnTunnelReplacementStatusWithContext added in v1.19.0

func (m *MockEC2API) GetVpnTunnelReplacementStatusWithContext(arg0 context.Context, arg1 *ec2.GetVpnTunnelReplacementStatusInput, arg2 ...request.Option) (*ec2.GetVpnTunnelReplacementStatusOutput, error)

GetVpnTunnelReplacementStatusWithContext mocks base method.

func (*MockEC2API) ImportClientVpnClientCertificateRevocationList added in v1.19.0

ImportClientVpnClientCertificateRevocationList mocks base method.

func (*MockEC2API) ImportClientVpnClientCertificateRevocationListRequest added in v1.19.0

ImportClientVpnClientCertificateRevocationListRequest mocks base method.

func (*MockEC2API) ImportClientVpnClientCertificateRevocationListWithContext added in v1.19.0

func (m *MockEC2API) ImportClientVpnClientCertificateRevocationListWithContext(arg0 context.Context, arg1 *ec2.ImportClientVpnClientCertificateRevocationListInput, arg2 ...request.Option) (*ec2.ImportClientVpnClientCertificateRevocationListOutput, error)

ImportClientVpnClientCertificateRevocationListWithContext mocks base method.

func (*MockEC2API) ImportImage added in v1.19.0

func (m *MockEC2API) ImportImage(arg0 *ec2.ImportImageInput) (*ec2.ImportImageOutput, error)

ImportImage mocks base method.

func (*MockEC2API) ImportImageRequest added in v1.19.0

func (m *MockEC2API) ImportImageRequest(arg0 *ec2.ImportImageInput) (*request.Request, *ec2.ImportImageOutput)

ImportImageRequest mocks base method.

func (*MockEC2API) ImportImageWithContext added in v1.19.0

func (m *MockEC2API) ImportImageWithContext(arg0 context.Context, arg1 *ec2.ImportImageInput, arg2 ...request.Option) (*ec2.ImportImageOutput, error)

ImportImageWithContext mocks base method.

func (*MockEC2API) ImportInstance added in v1.19.0

func (m *MockEC2API) ImportInstance(arg0 *ec2.ImportInstanceInput) (*ec2.ImportInstanceOutput, error)

ImportInstance mocks base method.

func (*MockEC2API) ImportInstanceRequest added in v1.19.0

func (m *MockEC2API) ImportInstanceRequest(arg0 *ec2.ImportInstanceInput) (*request.Request, *ec2.ImportInstanceOutput)

ImportInstanceRequest mocks base method.

func (*MockEC2API) ImportInstanceWithContext added in v1.19.0

func (m *MockEC2API) ImportInstanceWithContext(arg0 context.Context, arg1 *ec2.ImportInstanceInput, arg2 ...request.Option) (*ec2.ImportInstanceOutput, error)

ImportInstanceWithContext mocks base method.

func (*MockEC2API) ImportKeyPair added in v1.19.0

func (m *MockEC2API) ImportKeyPair(arg0 *ec2.ImportKeyPairInput) (*ec2.ImportKeyPairOutput, error)

ImportKeyPair mocks base method.

func (*MockEC2API) ImportKeyPairRequest added in v1.19.0

func (m *MockEC2API) ImportKeyPairRequest(arg0 *ec2.ImportKeyPairInput) (*request.Request, *ec2.ImportKeyPairOutput)

ImportKeyPairRequest mocks base method.

func (*MockEC2API) ImportKeyPairWithContext added in v1.19.0

func (m *MockEC2API) ImportKeyPairWithContext(arg0 context.Context, arg1 *ec2.ImportKeyPairInput, arg2 ...request.Option) (*ec2.ImportKeyPairOutput, error)

ImportKeyPairWithContext mocks base method.

func (*MockEC2API) ImportSnapshot added in v1.19.0

func (m *MockEC2API) ImportSnapshot(arg0 *ec2.ImportSnapshotInput) (*ec2.ImportSnapshotOutput, error)

ImportSnapshot mocks base method.

func (*MockEC2API) ImportSnapshotRequest added in v1.19.0

func (m *MockEC2API) ImportSnapshotRequest(arg0 *ec2.ImportSnapshotInput) (*request.Request, *ec2.ImportSnapshotOutput)

ImportSnapshotRequest mocks base method.

func (*MockEC2API) ImportSnapshotWithContext added in v1.19.0

func (m *MockEC2API) ImportSnapshotWithContext(arg0 context.Context, arg1 *ec2.ImportSnapshotInput, arg2 ...request.Option) (*ec2.ImportSnapshotOutput, error)

ImportSnapshotWithContext mocks base method.

func (*MockEC2API) ImportVolume added in v1.19.0

func (m *MockEC2API) ImportVolume(arg0 *ec2.ImportVolumeInput) (*ec2.ImportVolumeOutput, error)

ImportVolume mocks base method.

func (*MockEC2API) ImportVolumeRequest added in v1.19.0

func (m *MockEC2API) ImportVolumeRequest(arg0 *ec2.ImportVolumeInput) (*request.Request, *ec2.ImportVolumeOutput)

ImportVolumeRequest mocks base method.

func (*MockEC2API) ImportVolumeWithContext added in v1.19.0

func (m *MockEC2API) ImportVolumeWithContext(arg0 context.Context, arg1 *ec2.ImportVolumeInput, arg2 ...request.Option) (*ec2.ImportVolumeOutput, error)

ImportVolumeWithContext mocks base method.

func (*MockEC2API) ListImagesInRecycleBin added in v1.19.0

func (m *MockEC2API) ListImagesInRecycleBin(arg0 *ec2.ListImagesInRecycleBinInput) (*ec2.ListImagesInRecycleBinOutput, error)

ListImagesInRecycleBin mocks base method.

func (*MockEC2API) ListImagesInRecycleBinPages added in v1.19.0

func (m *MockEC2API) ListImagesInRecycleBinPages(arg0 *ec2.ListImagesInRecycleBinInput, arg1 func(*ec2.ListImagesInRecycleBinOutput, bool) bool) error

ListImagesInRecycleBinPages mocks base method.

func (*MockEC2API) ListImagesInRecycleBinPagesWithContext added in v1.19.0

func (m *MockEC2API) ListImagesInRecycleBinPagesWithContext(arg0 context.Context, arg1 *ec2.ListImagesInRecycleBinInput, arg2 func(*ec2.ListImagesInRecycleBinOutput, bool) bool, arg3 ...request.Option) error

ListImagesInRecycleBinPagesWithContext mocks base method.

func (*MockEC2API) ListImagesInRecycleBinRequest added in v1.19.0

func (m *MockEC2API) ListImagesInRecycleBinRequest(arg0 *ec2.ListImagesInRecycleBinInput) (*request.Request, *ec2.ListImagesInRecycleBinOutput)

ListImagesInRecycleBinRequest mocks base method.

func (*MockEC2API) ListImagesInRecycleBinWithContext added in v1.19.0

func (m *MockEC2API) ListImagesInRecycleBinWithContext(arg0 context.Context, arg1 *ec2.ListImagesInRecycleBinInput, arg2 ...request.Option) (*ec2.ListImagesInRecycleBinOutput, error)

ListImagesInRecycleBinWithContext mocks base method.

func (*MockEC2API) ListSnapshotsInRecycleBin added in v1.19.0

ListSnapshotsInRecycleBin mocks base method.

func (*MockEC2API) ListSnapshotsInRecycleBinPages added in v1.19.0

func (m *MockEC2API) ListSnapshotsInRecycleBinPages(arg0 *ec2.ListSnapshotsInRecycleBinInput, arg1 func(*ec2.ListSnapshotsInRecycleBinOutput, bool) bool) error

ListSnapshotsInRecycleBinPages mocks base method.

func (*MockEC2API) ListSnapshotsInRecycleBinPagesWithContext added in v1.19.0

func (m *MockEC2API) ListSnapshotsInRecycleBinPagesWithContext(arg0 context.Context, arg1 *ec2.ListSnapshotsInRecycleBinInput, arg2 func(*ec2.ListSnapshotsInRecycleBinOutput, bool) bool, arg3 ...request.Option) error

ListSnapshotsInRecycleBinPagesWithContext mocks base method.

func (*MockEC2API) ListSnapshotsInRecycleBinRequest added in v1.19.0

func (m *MockEC2API) ListSnapshotsInRecycleBinRequest(arg0 *ec2.ListSnapshotsInRecycleBinInput) (*request.Request, *ec2.ListSnapshotsInRecycleBinOutput)

ListSnapshotsInRecycleBinRequest mocks base method.

func (*MockEC2API) ListSnapshotsInRecycleBinWithContext added in v1.19.0

func (m *MockEC2API) ListSnapshotsInRecycleBinWithContext(arg0 context.Context, arg1 *ec2.ListSnapshotsInRecycleBinInput, arg2 ...request.Option) (*ec2.ListSnapshotsInRecycleBinOutput, error)

ListSnapshotsInRecycleBinWithContext mocks base method.

func (*MockEC2API) ModifyAddressAttribute added in v1.19.0

func (m *MockEC2API) ModifyAddressAttribute(arg0 *ec2.ModifyAddressAttributeInput) (*ec2.ModifyAddressAttributeOutput, error)

ModifyAddressAttribute mocks base method.

func (*MockEC2API) ModifyAddressAttributeRequest added in v1.19.0

func (m *MockEC2API) ModifyAddressAttributeRequest(arg0 *ec2.ModifyAddressAttributeInput) (*request.Request, *ec2.ModifyAddressAttributeOutput)

ModifyAddressAttributeRequest mocks base method.

func (*MockEC2API) ModifyAddressAttributeWithContext added in v1.19.0

func (m *MockEC2API) ModifyAddressAttributeWithContext(arg0 context.Context, arg1 *ec2.ModifyAddressAttributeInput, arg2 ...request.Option) (*ec2.ModifyAddressAttributeOutput, error)

ModifyAddressAttributeWithContext mocks base method.

func (*MockEC2API) ModifyAvailabilityZoneGroup added in v1.19.0

ModifyAvailabilityZoneGroup mocks base method.

func (*MockEC2API) ModifyAvailabilityZoneGroupRequest added in v1.19.0

func (m *MockEC2API) ModifyAvailabilityZoneGroupRequest(arg0 *ec2.ModifyAvailabilityZoneGroupInput) (*request.Request, *ec2.ModifyAvailabilityZoneGroupOutput)

ModifyAvailabilityZoneGroupRequest mocks base method.

func (*MockEC2API) ModifyAvailabilityZoneGroupWithContext added in v1.19.0

func (m *MockEC2API) ModifyAvailabilityZoneGroupWithContext(arg0 context.Context, arg1 *ec2.ModifyAvailabilityZoneGroupInput, arg2 ...request.Option) (*ec2.ModifyAvailabilityZoneGroupOutput, error)

ModifyAvailabilityZoneGroupWithContext mocks base method.

func (*MockEC2API) ModifyCapacityReservation added in v1.19.0

ModifyCapacityReservation mocks base method.

func (*MockEC2API) ModifyCapacityReservationFleet added in v1.19.0

ModifyCapacityReservationFleet mocks base method.

func (*MockEC2API) ModifyCapacityReservationFleetRequest added in v1.19.0

func (m *MockEC2API) ModifyCapacityReservationFleetRequest(arg0 *ec2.ModifyCapacityReservationFleetInput) (*request.Request, *ec2.ModifyCapacityReservationFleetOutput)

ModifyCapacityReservationFleetRequest mocks base method.

func (*MockEC2API) ModifyCapacityReservationFleetWithContext added in v1.19.0

func (m *MockEC2API) ModifyCapacityReservationFleetWithContext(arg0 context.Context, arg1 *ec2.ModifyCapacityReservationFleetInput, arg2 ...request.Option) (*ec2.ModifyCapacityReservationFleetOutput, error)

ModifyCapacityReservationFleetWithContext mocks base method.

func (*MockEC2API) ModifyCapacityReservationRequest added in v1.19.0

func (m *MockEC2API) ModifyCapacityReservationRequest(arg0 *ec2.ModifyCapacityReservationInput) (*request.Request, *ec2.ModifyCapacityReservationOutput)

ModifyCapacityReservationRequest mocks base method.

func (*MockEC2API) ModifyCapacityReservationWithContext added in v1.19.0

func (m *MockEC2API) ModifyCapacityReservationWithContext(arg0 context.Context, arg1 *ec2.ModifyCapacityReservationInput, arg2 ...request.Option) (*ec2.ModifyCapacityReservationOutput, error)

ModifyCapacityReservationWithContext mocks base method.

func (*MockEC2API) ModifyClientVpnEndpoint added in v1.19.0

func (m *MockEC2API) ModifyClientVpnEndpoint(arg0 *ec2.ModifyClientVpnEndpointInput) (*ec2.ModifyClientVpnEndpointOutput, error)

ModifyClientVpnEndpoint mocks base method.

func (*MockEC2API) ModifyClientVpnEndpointRequest added in v1.19.0

func (m *MockEC2API) ModifyClientVpnEndpointRequest(arg0 *ec2.ModifyClientVpnEndpointInput) (*request.Request, *ec2.ModifyClientVpnEndpointOutput)

ModifyClientVpnEndpointRequest mocks base method.

func (*MockEC2API) ModifyClientVpnEndpointWithContext added in v1.19.0

func (m *MockEC2API) ModifyClientVpnEndpointWithContext(arg0 context.Context, arg1 *ec2.ModifyClientVpnEndpointInput, arg2 ...request.Option) (*ec2.ModifyClientVpnEndpointOutput, error)

ModifyClientVpnEndpointWithContext mocks base method.

func (*MockEC2API) ModifyDefaultCreditSpecification added in v1.19.0

ModifyDefaultCreditSpecification mocks base method.

func (*MockEC2API) ModifyDefaultCreditSpecificationRequest added in v1.19.0

func (m *MockEC2API) ModifyDefaultCreditSpecificationRequest(arg0 *ec2.ModifyDefaultCreditSpecificationInput) (*request.Request, *ec2.ModifyDefaultCreditSpecificationOutput)

ModifyDefaultCreditSpecificationRequest mocks base method.

func (*MockEC2API) ModifyDefaultCreditSpecificationWithContext added in v1.19.0

func (m *MockEC2API) ModifyDefaultCreditSpecificationWithContext(arg0 context.Context, arg1 *ec2.ModifyDefaultCreditSpecificationInput, arg2 ...request.Option) (*ec2.ModifyDefaultCreditSpecificationOutput, error)

ModifyDefaultCreditSpecificationWithContext mocks base method.

func (*MockEC2API) ModifyEbsDefaultKmsKeyId added in v1.19.0

ModifyEbsDefaultKmsKeyId mocks base method.

func (*MockEC2API) ModifyEbsDefaultKmsKeyIdRequest added in v1.19.0

func (m *MockEC2API) ModifyEbsDefaultKmsKeyIdRequest(arg0 *ec2.ModifyEbsDefaultKmsKeyIdInput) (*request.Request, *ec2.ModifyEbsDefaultKmsKeyIdOutput)

ModifyEbsDefaultKmsKeyIdRequest mocks base method.

func (*MockEC2API) ModifyEbsDefaultKmsKeyIdWithContext added in v1.19.0

func (m *MockEC2API) ModifyEbsDefaultKmsKeyIdWithContext(arg0 context.Context, arg1 *ec2.ModifyEbsDefaultKmsKeyIdInput, arg2 ...request.Option) (*ec2.ModifyEbsDefaultKmsKeyIdOutput, error)

ModifyEbsDefaultKmsKeyIdWithContext mocks base method.

func (*MockEC2API) ModifyFleet added in v1.19.0

func (m *MockEC2API) ModifyFleet(arg0 *ec2.ModifyFleetInput) (*ec2.ModifyFleetOutput, error)

ModifyFleet mocks base method.

func (*MockEC2API) ModifyFleetRequest added in v1.19.0

func (m *MockEC2API) ModifyFleetRequest(arg0 *ec2.ModifyFleetInput) (*request.Request, *ec2.ModifyFleetOutput)

ModifyFleetRequest mocks base method.

func (*MockEC2API) ModifyFleetWithContext added in v1.19.0

func (m *MockEC2API) ModifyFleetWithContext(arg0 context.Context, arg1 *ec2.ModifyFleetInput, arg2 ...request.Option) (*ec2.ModifyFleetOutput, error)

ModifyFleetWithContext mocks base method.

func (*MockEC2API) ModifyFpgaImageAttribute added in v1.19.0

ModifyFpgaImageAttribute mocks base method.

func (*MockEC2API) ModifyFpgaImageAttributeRequest added in v1.19.0

func (m *MockEC2API) ModifyFpgaImageAttributeRequest(arg0 *ec2.ModifyFpgaImageAttributeInput) (*request.Request, *ec2.ModifyFpgaImageAttributeOutput)

ModifyFpgaImageAttributeRequest mocks base method.

func (*MockEC2API) ModifyFpgaImageAttributeWithContext added in v1.19.0

func (m *MockEC2API) ModifyFpgaImageAttributeWithContext(arg0 context.Context, arg1 *ec2.ModifyFpgaImageAttributeInput, arg2 ...request.Option) (*ec2.ModifyFpgaImageAttributeOutput, error)

ModifyFpgaImageAttributeWithContext mocks base method.

func (*MockEC2API) ModifyHosts added in v1.19.0

func (m *MockEC2API) ModifyHosts(arg0 *ec2.ModifyHostsInput) (*ec2.ModifyHostsOutput, error)

ModifyHosts mocks base method.

func (*MockEC2API) ModifyHostsRequest added in v1.19.0

func (m *MockEC2API) ModifyHostsRequest(arg0 *ec2.ModifyHostsInput) (*request.Request, *ec2.ModifyHostsOutput)

ModifyHostsRequest mocks base method.

func (*MockEC2API) ModifyHostsWithContext added in v1.19.0

func (m *MockEC2API) ModifyHostsWithContext(arg0 context.Context, arg1 *ec2.ModifyHostsInput, arg2 ...request.Option) (*ec2.ModifyHostsOutput, error)

ModifyHostsWithContext mocks base method.

func (*MockEC2API) ModifyIdFormat added in v1.19.0

func (m *MockEC2API) ModifyIdFormat(arg0 *ec2.ModifyIdFormatInput) (*ec2.ModifyIdFormatOutput, error)

ModifyIdFormat mocks base method.

func (*MockEC2API) ModifyIdFormatRequest added in v1.19.0

func (m *MockEC2API) ModifyIdFormatRequest(arg0 *ec2.ModifyIdFormatInput) (*request.Request, *ec2.ModifyIdFormatOutput)

ModifyIdFormatRequest mocks base method.

func (*MockEC2API) ModifyIdFormatWithContext added in v1.19.0

func (m *MockEC2API) ModifyIdFormatWithContext(arg0 context.Context, arg1 *ec2.ModifyIdFormatInput, arg2 ...request.Option) (*ec2.ModifyIdFormatOutput, error)

ModifyIdFormatWithContext mocks base method.

func (*MockEC2API) ModifyIdentityIdFormat added in v1.19.0

func (m *MockEC2API) ModifyIdentityIdFormat(arg0 *ec2.ModifyIdentityIdFormatInput) (*ec2.ModifyIdentityIdFormatOutput, error)

ModifyIdentityIdFormat mocks base method.

func (*MockEC2API) ModifyIdentityIdFormatRequest added in v1.19.0

func (m *MockEC2API) ModifyIdentityIdFormatRequest(arg0 *ec2.ModifyIdentityIdFormatInput) (*request.Request, *ec2.ModifyIdentityIdFormatOutput)

ModifyIdentityIdFormatRequest mocks base method.

func (*MockEC2API) ModifyIdentityIdFormatWithContext added in v1.19.0

func (m *MockEC2API) ModifyIdentityIdFormatWithContext(arg0 context.Context, arg1 *ec2.ModifyIdentityIdFormatInput, arg2 ...request.Option) (*ec2.ModifyIdentityIdFormatOutput, error)

ModifyIdentityIdFormatWithContext mocks base method.

func (*MockEC2API) ModifyImageAttribute added in v1.19.0

func (m *MockEC2API) ModifyImageAttribute(arg0 *ec2.ModifyImageAttributeInput) (*ec2.ModifyImageAttributeOutput, error)

ModifyImageAttribute mocks base method.

func (*MockEC2API) ModifyImageAttributeRequest added in v1.19.0

func (m *MockEC2API) ModifyImageAttributeRequest(arg0 *ec2.ModifyImageAttributeInput) (*request.Request, *ec2.ModifyImageAttributeOutput)

ModifyImageAttributeRequest mocks base method.

func (*MockEC2API) ModifyImageAttributeWithContext added in v1.19.0

func (m *MockEC2API) ModifyImageAttributeWithContext(arg0 context.Context, arg1 *ec2.ModifyImageAttributeInput, arg2 ...request.Option) (*ec2.ModifyImageAttributeOutput, error)

ModifyImageAttributeWithContext mocks base method.

func (*MockEC2API) ModifyInstanceAttribute added in v1.19.0

func (m *MockEC2API) ModifyInstanceAttribute(arg0 *ec2.ModifyInstanceAttributeInput) (*ec2.ModifyInstanceAttributeOutput, error)

ModifyInstanceAttribute mocks base method.

func (*MockEC2API) ModifyInstanceAttributeRequest added in v1.19.0

func (m *MockEC2API) ModifyInstanceAttributeRequest(arg0 *ec2.ModifyInstanceAttributeInput) (*request.Request, *ec2.ModifyInstanceAttributeOutput)

ModifyInstanceAttributeRequest mocks base method.

func (*MockEC2API) ModifyInstanceAttributeWithContext added in v1.19.0

func (m *MockEC2API) ModifyInstanceAttributeWithContext(arg0 context.Context, arg1 *ec2.ModifyInstanceAttributeInput, arg2 ...request.Option) (*ec2.ModifyInstanceAttributeOutput, error)

ModifyInstanceAttributeWithContext mocks base method.

func (*MockEC2API) ModifyInstanceCapacityReservationAttributes added in v1.19.0

ModifyInstanceCapacityReservationAttributes mocks base method.

func (*MockEC2API) ModifyInstanceCapacityReservationAttributesRequest added in v1.19.0

ModifyInstanceCapacityReservationAttributesRequest mocks base method.

func (*MockEC2API) ModifyInstanceCapacityReservationAttributesWithContext added in v1.19.0

func (m *MockEC2API) ModifyInstanceCapacityReservationAttributesWithContext(arg0 context.Context, arg1 *ec2.ModifyInstanceCapacityReservationAttributesInput, arg2 ...request.Option) (*ec2.ModifyInstanceCapacityReservationAttributesOutput, error)

ModifyInstanceCapacityReservationAttributesWithContext mocks base method.

func (*MockEC2API) ModifyInstanceCreditSpecification added in v1.19.0

ModifyInstanceCreditSpecification mocks base method.

func (*MockEC2API) ModifyInstanceCreditSpecificationRequest added in v1.19.0

ModifyInstanceCreditSpecificationRequest mocks base method.

func (*MockEC2API) ModifyInstanceCreditSpecificationWithContext added in v1.19.0

func (m *MockEC2API) ModifyInstanceCreditSpecificationWithContext(arg0 context.Context, arg1 *ec2.ModifyInstanceCreditSpecificationInput, arg2 ...request.Option) (*ec2.ModifyInstanceCreditSpecificationOutput, error)

ModifyInstanceCreditSpecificationWithContext mocks base method.

func (*MockEC2API) ModifyInstanceEventStartTime added in v1.19.0

ModifyInstanceEventStartTime mocks base method.

func (*MockEC2API) ModifyInstanceEventStartTimeRequest added in v1.19.0

func (m *MockEC2API) ModifyInstanceEventStartTimeRequest(arg0 *ec2.ModifyInstanceEventStartTimeInput) (*request.Request, *ec2.ModifyInstanceEventStartTimeOutput)

ModifyInstanceEventStartTimeRequest mocks base method.

func (*MockEC2API) ModifyInstanceEventStartTimeWithContext added in v1.19.0

func (m *MockEC2API) ModifyInstanceEventStartTimeWithContext(arg0 context.Context, arg1 *ec2.ModifyInstanceEventStartTimeInput, arg2 ...request.Option) (*ec2.ModifyInstanceEventStartTimeOutput, error)

ModifyInstanceEventStartTimeWithContext mocks base method.

func (*MockEC2API) ModifyInstanceEventWindow added in v1.19.0

ModifyInstanceEventWindow mocks base method.

func (*MockEC2API) ModifyInstanceEventWindowRequest added in v1.19.0

func (m *MockEC2API) ModifyInstanceEventWindowRequest(arg0 *ec2.ModifyInstanceEventWindowInput) (*request.Request, *ec2.ModifyInstanceEventWindowOutput)

ModifyInstanceEventWindowRequest mocks base method.

func (*MockEC2API) ModifyInstanceEventWindowWithContext added in v1.19.0

func (m *MockEC2API) ModifyInstanceEventWindowWithContext(arg0 context.Context, arg1 *ec2.ModifyInstanceEventWindowInput, arg2 ...request.Option) (*ec2.ModifyInstanceEventWindowOutput, error)

ModifyInstanceEventWindowWithContext mocks base method.

func (*MockEC2API) ModifyInstanceMaintenanceOptions added in v1.19.0

ModifyInstanceMaintenanceOptions mocks base method.

func (*MockEC2API) ModifyInstanceMaintenanceOptionsRequest added in v1.19.0

func (m *MockEC2API) ModifyInstanceMaintenanceOptionsRequest(arg0 *ec2.ModifyInstanceMaintenanceOptionsInput) (*request.Request, *ec2.ModifyInstanceMaintenanceOptionsOutput)

ModifyInstanceMaintenanceOptionsRequest mocks base method.

func (*MockEC2API) ModifyInstanceMaintenanceOptionsWithContext added in v1.19.0

func (m *MockEC2API) ModifyInstanceMaintenanceOptionsWithContext(arg0 context.Context, arg1 *ec2.ModifyInstanceMaintenanceOptionsInput, arg2 ...request.Option) (*ec2.ModifyInstanceMaintenanceOptionsOutput, error)

ModifyInstanceMaintenanceOptionsWithContext mocks base method.

func (*MockEC2API) ModifyInstanceMetadataOptions added in v1.19.0

ModifyInstanceMetadataOptions mocks base method.

func (*MockEC2API) ModifyInstanceMetadataOptionsRequest added in v1.19.0

func (m *MockEC2API) ModifyInstanceMetadataOptionsRequest(arg0 *ec2.ModifyInstanceMetadataOptionsInput) (*request.Request, *ec2.ModifyInstanceMetadataOptionsOutput)

ModifyInstanceMetadataOptionsRequest mocks base method.

func (*MockEC2API) ModifyInstanceMetadataOptionsWithContext added in v1.19.0

func (m *MockEC2API) ModifyInstanceMetadataOptionsWithContext(arg0 context.Context, arg1 *ec2.ModifyInstanceMetadataOptionsInput, arg2 ...request.Option) (*ec2.ModifyInstanceMetadataOptionsOutput, error)

ModifyInstanceMetadataOptionsWithContext mocks base method.

func (*MockEC2API) ModifyInstancePlacement added in v1.19.0

func (m *MockEC2API) ModifyInstancePlacement(arg0 *ec2.ModifyInstancePlacementInput) (*ec2.ModifyInstancePlacementOutput, error)

ModifyInstancePlacement mocks base method.

func (*MockEC2API) ModifyInstancePlacementRequest added in v1.19.0

func (m *MockEC2API) ModifyInstancePlacementRequest(arg0 *ec2.ModifyInstancePlacementInput) (*request.Request, *ec2.ModifyInstancePlacementOutput)

ModifyInstancePlacementRequest mocks base method.

func (*MockEC2API) ModifyInstancePlacementWithContext added in v1.19.0

func (m *MockEC2API) ModifyInstancePlacementWithContext(arg0 context.Context, arg1 *ec2.ModifyInstancePlacementInput, arg2 ...request.Option) (*ec2.ModifyInstancePlacementOutput, error)

ModifyInstancePlacementWithContext mocks base method.

func (*MockEC2API) ModifyIpam added in v1.19.0

func (m *MockEC2API) ModifyIpam(arg0 *ec2.ModifyIpamInput) (*ec2.ModifyIpamOutput, error)

ModifyIpam mocks base method.

func (*MockEC2API) ModifyIpamPool added in v1.19.0

func (m *MockEC2API) ModifyIpamPool(arg0 *ec2.ModifyIpamPoolInput) (*ec2.ModifyIpamPoolOutput, error)

ModifyIpamPool mocks base method.

func (*MockEC2API) ModifyIpamPoolRequest added in v1.19.0

func (m *MockEC2API) ModifyIpamPoolRequest(arg0 *ec2.ModifyIpamPoolInput) (*request.Request, *ec2.ModifyIpamPoolOutput)

ModifyIpamPoolRequest mocks base method.

func (*MockEC2API) ModifyIpamPoolWithContext added in v1.19.0

func (m *MockEC2API) ModifyIpamPoolWithContext(arg0 context.Context, arg1 *ec2.ModifyIpamPoolInput, arg2 ...request.Option) (*ec2.ModifyIpamPoolOutput, error)

ModifyIpamPoolWithContext mocks base method.

func (*MockEC2API) ModifyIpamRequest added in v1.19.0

func (m *MockEC2API) ModifyIpamRequest(arg0 *ec2.ModifyIpamInput) (*request.Request, *ec2.ModifyIpamOutput)

ModifyIpamRequest mocks base method.

func (*MockEC2API) ModifyIpamResourceCidr added in v1.19.0

func (m *MockEC2API) ModifyIpamResourceCidr(arg0 *ec2.ModifyIpamResourceCidrInput) (*ec2.ModifyIpamResourceCidrOutput, error)

ModifyIpamResourceCidr mocks base method.

func (*MockEC2API) ModifyIpamResourceCidrRequest added in v1.19.0

func (m *MockEC2API) ModifyIpamResourceCidrRequest(arg0 *ec2.ModifyIpamResourceCidrInput) (*request.Request, *ec2.ModifyIpamResourceCidrOutput)

ModifyIpamResourceCidrRequest mocks base method.

func (*MockEC2API) ModifyIpamResourceCidrWithContext added in v1.19.0

func (m *MockEC2API) ModifyIpamResourceCidrWithContext(arg0 context.Context, arg1 *ec2.ModifyIpamResourceCidrInput, arg2 ...request.Option) (*ec2.ModifyIpamResourceCidrOutput, error)

ModifyIpamResourceCidrWithContext mocks base method.

func (*MockEC2API) ModifyIpamResourceDiscovery added in v1.19.0

ModifyIpamResourceDiscovery mocks base method.

func (*MockEC2API) ModifyIpamResourceDiscoveryRequest added in v1.19.0

func (m *MockEC2API) ModifyIpamResourceDiscoveryRequest(arg0 *ec2.ModifyIpamResourceDiscoveryInput) (*request.Request, *ec2.ModifyIpamResourceDiscoveryOutput)

ModifyIpamResourceDiscoveryRequest mocks base method.

func (*MockEC2API) ModifyIpamResourceDiscoveryWithContext added in v1.19.0

func (m *MockEC2API) ModifyIpamResourceDiscoveryWithContext(arg0 context.Context, arg1 *ec2.ModifyIpamResourceDiscoveryInput, arg2 ...request.Option) (*ec2.ModifyIpamResourceDiscoveryOutput, error)

ModifyIpamResourceDiscoveryWithContext mocks base method.

func (*MockEC2API) ModifyIpamScope added in v1.19.0

func (m *MockEC2API) ModifyIpamScope(arg0 *ec2.ModifyIpamScopeInput) (*ec2.ModifyIpamScopeOutput, error)

ModifyIpamScope mocks base method.

func (*MockEC2API) ModifyIpamScopeRequest added in v1.19.0

func (m *MockEC2API) ModifyIpamScopeRequest(arg0 *ec2.ModifyIpamScopeInput) (*request.Request, *ec2.ModifyIpamScopeOutput)

ModifyIpamScopeRequest mocks base method.

func (*MockEC2API) ModifyIpamScopeWithContext added in v1.19.0

func (m *MockEC2API) ModifyIpamScopeWithContext(arg0 context.Context, arg1 *ec2.ModifyIpamScopeInput, arg2 ...request.Option) (*ec2.ModifyIpamScopeOutput, error)

ModifyIpamScopeWithContext mocks base method.

func (*MockEC2API) ModifyIpamWithContext added in v1.19.0

func (m *MockEC2API) ModifyIpamWithContext(arg0 context.Context, arg1 *ec2.ModifyIpamInput, arg2 ...request.Option) (*ec2.ModifyIpamOutput, error)

ModifyIpamWithContext mocks base method.

func (*MockEC2API) ModifyLaunchTemplate added in v1.19.0

func (m *MockEC2API) ModifyLaunchTemplate(arg0 *ec2.ModifyLaunchTemplateInput) (*ec2.ModifyLaunchTemplateOutput, error)

ModifyLaunchTemplate mocks base method.

func (*MockEC2API) ModifyLaunchTemplateRequest added in v1.19.0

func (m *MockEC2API) ModifyLaunchTemplateRequest(arg0 *ec2.ModifyLaunchTemplateInput) (*request.Request, *ec2.ModifyLaunchTemplateOutput)

ModifyLaunchTemplateRequest mocks base method.

func (*MockEC2API) ModifyLaunchTemplateWithContext added in v1.19.0

func (m *MockEC2API) ModifyLaunchTemplateWithContext(arg0 context.Context, arg1 *ec2.ModifyLaunchTemplateInput, arg2 ...request.Option) (*ec2.ModifyLaunchTemplateOutput, error)

ModifyLaunchTemplateWithContext mocks base method.

func (*MockEC2API) ModifyLocalGatewayRoute added in v1.19.0

func (m *MockEC2API) ModifyLocalGatewayRoute(arg0 *ec2.ModifyLocalGatewayRouteInput) (*ec2.ModifyLocalGatewayRouteOutput, error)

ModifyLocalGatewayRoute mocks base method.

func (*MockEC2API) ModifyLocalGatewayRouteRequest added in v1.19.0

func (m *MockEC2API) ModifyLocalGatewayRouteRequest(arg0 *ec2.ModifyLocalGatewayRouteInput) (*request.Request, *ec2.ModifyLocalGatewayRouteOutput)

ModifyLocalGatewayRouteRequest mocks base method.

func (*MockEC2API) ModifyLocalGatewayRouteWithContext added in v1.19.0

func (m *MockEC2API) ModifyLocalGatewayRouteWithContext(arg0 context.Context, arg1 *ec2.ModifyLocalGatewayRouteInput, arg2 ...request.Option) (*ec2.ModifyLocalGatewayRouteOutput, error)

ModifyLocalGatewayRouteWithContext mocks base method.

func (*MockEC2API) ModifyManagedPrefixList added in v1.19.0

func (m *MockEC2API) ModifyManagedPrefixList(arg0 *ec2.ModifyManagedPrefixListInput) (*ec2.ModifyManagedPrefixListOutput, error)

ModifyManagedPrefixList mocks base method.

func (*MockEC2API) ModifyManagedPrefixListRequest added in v1.19.0

func (m *MockEC2API) ModifyManagedPrefixListRequest(arg0 *ec2.ModifyManagedPrefixListInput) (*request.Request, *ec2.ModifyManagedPrefixListOutput)

ModifyManagedPrefixListRequest mocks base method.

func (*MockEC2API) ModifyManagedPrefixListWithContext added in v1.19.0

func (m *MockEC2API) ModifyManagedPrefixListWithContext(arg0 context.Context, arg1 *ec2.ModifyManagedPrefixListInput, arg2 ...request.Option) (*ec2.ModifyManagedPrefixListOutput, error)

ModifyManagedPrefixListWithContext mocks base method.

func (*MockEC2API) ModifyNetworkInterfaceAttribute added in v1.19.0

ModifyNetworkInterfaceAttribute mocks base method.

func (*MockEC2API) ModifyNetworkInterfaceAttributeRequest added in v1.19.0

func (m *MockEC2API) ModifyNetworkInterfaceAttributeRequest(arg0 *ec2.ModifyNetworkInterfaceAttributeInput) (*request.Request, *ec2.ModifyNetworkInterfaceAttributeOutput)

ModifyNetworkInterfaceAttributeRequest mocks base method.

func (*MockEC2API) ModifyNetworkInterfaceAttributeWithContext added in v1.19.0

func (m *MockEC2API) ModifyNetworkInterfaceAttributeWithContext(arg0 context.Context, arg1 *ec2.ModifyNetworkInterfaceAttributeInput, arg2 ...request.Option) (*ec2.ModifyNetworkInterfaceAttributeOutput, error)

ModifyNetworkInterfaceAttributeWithContext mocks base method.

func (*MockEC2API) ModifyPrivateDnsNameOptions added in v1.19.0

ModifyPrivateDnsNameOptions mocks base method.

func (*MockEC2API) ModifyPrivateDnsNameOptionsRequest added in v1.19.0

func (m *MockEC2API) ModifyPrivateDnsNameOptionsRequest(arg0 *ec2.ModifyPrivateDnsNameOptionsInput) (*request.Request, *ec2.ModifyPrivateDnsNameOptionsOutput)

ModifyPrivateDnsNameOptionsRequest mocks base method.

func (*MockEC2API) ModifyPrivateDnsNameOptionsWithContext added in v1.19.0

func (m *MockEC2API) ModifyPrivateDnsNameOptionsWithContext(arg0 context.Context, arg1 *ec2.ModifyPrivateDnsNameOptionsInput, arg2 ...request.Option) (*ec2.ModifyPrivateDnsNameOptionsOutput, error)

ModifyPrivateDnsNameOptionsWithContext mocks base method.

func (*MockEC2API) ModifyReservedInstances added in v1.19.0

func (m *MockEC2API) ModifyReservedInstances(arg0 *ec2.ModifyReservedInstancesInput) (*ec2.ModifyReservedInstancesOutput, error)

ModifyReservedInstances mocks base method.

func (*MockEC2API) ModifyReservedInstancesRequest added in v1.19.0

func (m *MockEC2API) ModifyReservedInstancesRequest(arg0 *ec2.ModifyReservedInstancesInput) (*request.Request, *ec2.ModifyReservedInstancesOutput)

ModifyReservedInstancesRequest mocks base method.

func (*MockEC2API) ModifyReservedInstancesWithContext added in v1.19.0

func (m *MockEC2API) ModifyReservedInstancesWithContext(arg0 context.Context, arg1 *ec2.ModifyReservedInstancesInput, arg2 ...request.Option) (*ec2.ModifyReservedInstancesOutput, error)

ModifyReservedInstancesWithContext mocks base method.

func (*MockEC2API) ModifySecurityGroupRules added in v1.19.0

ModifySecurityGroupRules mocks base method.

func (*MockEC2API) ModifySecurityGroupRulesRequest added in v1.19.0

func (m *MockEC2API) ModifySecurityGroupRulesRequest(arg0 *ec2.ModifySecurityGroupRulesInput) (*request.Request, *ec2.ModifySecurityGroupRulesOutput)

ModifySecurityGroupRulesRequest mocks base method.

func (*MockEC2API) ModifySecurityGroupRulesWithContext added in v1.19.0

func (m *MockEC2API) ModifySecurityGroupRulesWithContext(arg0 context.Context, arg1 *ec2.ModifySecurityGroupRulesInput, arg2 ...request.Option) (*ec2.ModifySecurityGroupRulesOutput, error)

ModifySecurityGroupRulesWithContext mocks base method.

func (*MockEC2API) ModifySnapshotAttribute added in v1.19.0

func (m *MockEC2API) ModifySnapshotAttribute(arg0 *ec2.ModifySnapshotAttributeInput) (*ec2.ModifySnapshotAttributeOutput, error)

ModifySnapshotAttribute mocks base method.

func (*MockEC2API) ModifySnapshotAttributeRequest added in v1.19.0

func (m *MockEC2API) ModifySnapshotAttributeRequest(arg0 *ec2.ModifySnapshotAttributeInput) (*request.Request, *ec2.ModifySnapshotAttributeOutput)

ModifySnapshotAttributeRequest mocks base method.

func (*MockEC2API) ModifySnapshotAttributeWithContext added in v1.19.0

func (m *MockEC2API) ModifySnapshotAttributeWithContext(arg0 context.Context, arg1 *ec2.ModifySnapshotAttributeInput, arg2 ...request.Option) (*ec2.ModifySnapshotAttributeOutput, error)

ModifySnapshotAttributeWithContext mocks base method.

func (*MockEC2API) ModifySnapshotTier added in v1.19.0

func (m *MockEC2API) ModifySnapshotTier(arg0 *ec2.ModifySnapshotTierInput) (*ec2.ModifySnapshotTierOutput, error)

ModifySnapshotTier mocks base method.

func (*MockEC2API) ModifySnapshotTierRequest added in v1.19.0

func (m *MockEC2API) ModifySnapshotTierRequest(arg0 *ec2.ModifySnapshotTierInput) (*request.Request, *ec2.ModifySnapshotTierOutput)

ModifySnapshotTierRequest mocks base method.

func (*MockEC2API) ModifySnapshotTierWithContext added in v1.19.0

func (m *MockEC2API) ModifySnapshotTierWithContext(arg0 context.Context, arg1 *ec2.ModifySnapshotTierInput, arg2 ...request.Option) (*ec2.ModifySnapshotTierOutput, error)

ModifySnapshotTierWithContext mocks base method.

func (*MockEC2API) ModifySpotFleetRequest added in v1.19.0

func (m *MockEC2API) ModifySpotFleetRequest(arg0 *ec2.ModifySpotFleetRequestInput) (*ec2.ModifySpotFleetRequestOutput, error)

ModifySpotFleetRequest mocks base method.

func (*MockEC2API) ModifySpotFleetRequestRequest added in v1.19.0

func (m *MockEC2API) ModifySpotFleetRequestRequest(arg0 *ec2.ModifySpotFleetRequestInput) (*request.Request, *ec2.ModifySpotFleetRequestOutput)

ModifySpotFleetRequestRequest mocks base method.

func (*MockEC2API) ModifySpotFleetRequestWithContext added in v1.19.0

func (m *MockEC2API) ModifySpotFleetRequestWithContext(arg0 context.Context, arg1 *ec2.ModifySpotFleetRequestInput, arg2 ...request.Option) (*ec2.ModifySpotFleetRequestOutput, error)

ModifySpotFleetRequestWithContext mocks base method.

func (*MockEC2API) ModifySubnetAttribute added in v1.19.0

func (m *MockEC2API) ModifySubnetAttribute(arg0 *ec2.ModifySubnetAttributeInput) (*ec2.ModifySubnetAttributeOutput, error)

ModifySubnetAttribute mocks base method.

func (*MockEC2API) ModifySubnetAttributeRequest added in v1.19.0

func (m *MockEC2API) ModifySubnetAttributeRequest(arg0 *ec2.ModifySubnetAttributeInput) (*request.Request, *ec2.ModifySubnetAttributeOutput)

ModifySubnetAttributeRequest mocks base method.

func (*MockEC2API) ModifySubnetAttributeWithContext added in v1.19.0

func (m *MockEC2API) ModifySubnetAttributeWithContext(arg0 context.Context, arg1 *ec2.ModifySubnetAttributeInput, arg2 ...request.Option) (*ec2.ModifySubnetAttributeOutput, error)

ModifySubnetAttributeWithContext mocks base method.

func (*MockEC2API) ModifyTrafficMirrorFilterNetworkServices added in v1.19.0

ModifyTrafficMirrorFilterNetworkServices mocks base method.

func (*MockEC2API) ModifyTrafficMirrorFilterNetworkServicesRequest added in v1.19.0

ModifyTrafficMirrorFilterNetworkServicesRequest mocks base method.

func (*MockEC2API) ModifyTrafficMirrorFilterNetworkServicesWithContext added in v1.19.0

func (m *MockEC2API) ModifyTrafficMirrorFilterNetworkServicesWithContext(arg0 context.Context, arg1 *ec2.ModifyTrafficMirrorFilterNetworkServicesInput, arg2 ...request.Option) (*ec2.ModifyTrafficMirrorFilterNetworkServicesOutput, error)

ModifyTrafficMirrorFilterNetworkServicesWithContext mocks base method.

func (*MockEC2API) ModifyTrafficMirrorFilterRule added in v1.19.0

ModifyTrafficMirrorFilterRule mocks base method.

func (*MockEC2API) ModifyTrafficMirrorFilterRuleRequest added in v1.19.0

func (m *MockEC2API) ModifyTrafficMirrorFilterRuleRequest(arg0 *ec2.ModifyTrafficMirrorFilterRuleInput) (*request.Request, *ec2.ModifyTrafficMirrorFilterRuleOutput)

ModifyTrafficMirrorFilterRuleRequest mocks base method.

func (*MockEC2API) ModifyTrafficMirrorFilterRuleWithContext added in v1.19.0

func (m *MockEC2API) ModifyTrafficMirrorFilterRuleWithContext(arg0 context.Context, arg1 *ec2.ModifyTrafficMirrorFilterRuleInput, arg2 ...request.Option) (*ec2.ModifyTrafficMirrorFilterRuleOutput, error)

ModifyTrafficMirrorFilterRuleWithContext mocks base method.

func (*MockEC2API) ModifyTrafficMirrorSession added in v1.19.0

ModifyTrafficMirrorSession mocks base method.

func (*MockEC2API) ModifyTrafficMirrorSessionRequest added in v1.19.0

func (m *MockEC2API) ModifyTrafficMirrorSessionRequest(arg0 *ec2.ModifyTrafficMirrorSessionInput) (*request.Request, *ec2.ModifyTrafficMirrorSessionOutput)

ModifyTrafficMirrorSessionRequest mocks base method.

func (*MockEC2API) ModifyTrafficMirrorSessionWithContext added in v1.19.0

func (m *MockEC2API) ModifyTrafficMirrorSessionWithContext(arg0 context.Context, arg1 *ec2.ModifyTrafficMirrorSessionInput, arg2 ...request.Option) (*ec2.ModifyTrafficMirrorSessionOutput, error)

ModifyTrafficMirrorSessionWithContext mocks base method.

func (*MockEC2API) ModifyTransitGateway added in v1.19.0

func (m *MockEC2API) ModifyTransitGateway(arg0 *ec2.ModifyTransitGatewayInput) (*ec2.ModifyTransitGatewayOutput, error)

ModifyTransitGateway mocks base method.

func (*MockEC2API) ModifyTransitGatewayPrefixListReference added in v1.19.0

ModifyTransitGatewayPrefixListReference mocks base method.

func (*MockEC2API) ModifyTransitGatewayPrefixListReferenceRequest added in v1.19.0

ModifyTransitGatewayPrefixListReferenceRequest mocks base method.

func (*MockEC2API) ModifyTransitGatewayPrefixListReferenceWithContext added in v1.19.0

func (m *MockEC2API) ModifyTransitGatewayPrefixListReferenceWithContext(arg0 context.Context, arg1 *ec2.ModifyTransitGatewayPrefixListReferenceInput, arg2 ...request.Option) (*ec2.ModifyTransitGatewayPrefixListReferenceOutput, error)

ModifyTransitGatewayPrefixListReferenceWithContext mocks base method.

func (*MockEC2API) ModifyTransitGatewayRequest added in v1.19.0

func (m *MockEC2API) ModifyTransitGatewayRequest(arg0 *ec2.ModifyTransitGatewayInput) (*request.Request, *ec2.ModifyTransitGatewayOutput)

ModifyTransitGatewayRequest mocks base method.

func (*MockEC2API) ModifyTransitGatewayVpcAttachment added in v1.19.0

ModifyTransitGatewayVpcAttachment mocks base method.

func (*MockEC2API) ModifyTransitGatewayVpcAttachmentRequest added in v1.19.0

ModifyTransitGatewayVpcAttachmentRequest mocks base method.

func (*MockEC2API) ModifyTransitGatewayVpcAttachmentWithContext added in v1.19.0

func (m *MockEC2API) ModifyTransitGatewayVpcAttachmentWithContext(arg0 context.Context, arg1 *ec2.ModifyTransitGatewayVpcAttachmentInput, arg2 ...request.Option) (*ec2.ModifyTransitGatewayVpcAttachmentOutput, error)

ModifyTransitGatewayVpcAttachmentWithContext mocks base method.

func (*MockEC2API) ModifyTransitGatewayWithContext added in v1.19.0

func (m *MockEC2API) ModifyTransitGatewayWithContext(arg0 context.Context, arg1 *ec2.ModifyTransitGatewayInput, arg2 ...request.Option) (*ec2.ModifyTransitGatewayOutput, error)

ModifyTransitGatewayWithContext mocks base method.

func (*MockEC2API) ModifyVerifiedAccessEndpoint added in v1.19.0

ModifyVerifiedAccessEndpoint mocks base method.

func (*MockEC2API) ModifyVerifiedAccessEndpointPolicy added in v1.19.0

ModifyVerifiedAccessEndpointPolicy mocks base method.

func (*MockEC2API) ModifyVerifiedAccessEndpointPolicyRequest added in v1.19.0

ModifyVerifiedAccessEndpointPolicyRequest mocks base method.

func (*MockEC2API) ModifyVerifiedAccessEndpointPolicyWithContext added in v1.19.0

func (m *MockEC2API) ModifyVerifiedAccessEndpointPolicyWithContext(arg0 context.Context, arg1 *ec2.ModifyVerifiedAccessEndpointPolicyInput, arg2 ...request.Option) (*ec2.ModifyVerifiedAccessEndpointPolicyOutput, error)

ModifyVerifiedAccessEndpointPolicyWithContext mocks base method.

func (*MockEC2API) ModifyVerifiedAccessEndpointRequest added in v1.19.0

func (m *MockEC2API) ModifyVerifiedAccessEndpointRequest(arg0 *ec2.ModifyVerifiedAccessEndpointInput) (*request.Request, *ec2.ModifyVerifiedAccessEndpointOutput)

ModifyVerifiedAccessEndpointRequest mocks base method.

func (*MockEC2API) ModifyVerifiedAccessEndpointWithContext added in v1.19.0

func (m *MockEC2API) ModifyVerifiedAccessEndpointWithContext(arg0 context.Context, arg1 *ec2.ModifyVerifiedAccessEndpointInput, arg2 ...request.Option) (*ec2.ModifyVerifiedAccessEndpointOutput, error)

ModifyVerifiedAccessEndpointWithContext mocks base method.

func (*MockEC2API) ModifyVerifiedAccessGroup added in v1.19.0

ModifyVerifiedAccessGroup mocks base method.

func (*MockEC2API) ModifyVerifiedAccessGroupPolicy added in v1.19.0

ModifyVerifiedAccessGroupPolicy mocks base method.

func (*MockEC2API) ModifyVerifiedAccessGroupPolicyRequest added in v1.19.0

func (m *MockEC2API) ModifyVerifiedAccessGroupPolicyRequest(arg0 *ec2.ModifyVerifiedAccessGroupPolicyInput) (*request.Request, *ec2.ModifyVerifiedAccessGroupPolicyOutput)

ModifyVerifiedAccessGroupPolicyRequest mocks base method.

func (*MockEC2API) ModifyVerifiedAccessGroupPolicyWithContext added in v1.19.0

func (m *MockEC2API) ModifyVerifiedAccessGroupPolicyWithContext(arg0 context.Context, arg1 *ec2.ModifyVerifiedAccessGroupPolicyInput, arg2 ...request.Option) (*ec2.ModifyVerifiedAccessGroupPolicyOutput, error)

ModifyVerifiedAccessGroupPolicyWithContext mocks base method.

func (*MockEC2API) ModifyVerifiedAccessGroupRequest added in v1.19.0

func (m *MockEC2API) ModifyVerifiedAccessGroupRequest(arg0 *ec2.ModifyVerifiedAccessGroupInput) (*request.Request, *ec2.ModifyVerifiedAccessGroupOutput)

ModifyVerifiedAccessGroupRequest mocks base method.

func (*MockEC2API) ModifyVerifiedAccessGroupWithContext added in v1.19.0

func (m *MockEC2API) ModifyVerifiedAccessGroupWithContext(arg0 context.Context, arg1 *ec2.ModifyVerifiedAccessGroupInput, arg2 ...request.Option) (*ec2.ModifyVerifiedAccessGroupOutput, error)

ModifyVerifiedAccessGroupWithContext mocks base method.

func (*MockEC2API) ModifyVerifiedAccessInstance added in v1.19.0

ModifyVerifiedAccessInstance mocks base method.

func (*MockEC2API) ModifyVerifiedAccessInstanceLoggingConfiguration added in v1.19.0

ModifyVerifiedAccessInstanceLoggingConfiguration mocks base method.

func (*MockEC2API) ModifyVerifiedAccessInstanceLoggingConfigurationRequest added in v1.19.0

ModifyVerifiedAccessInstanceLoggingConfigurationRequest mocks base method.

func (*MockEC2API) ModifyVerifiedAccessInstanceLoggingConfigurationWithContext added in v1.19.0

func (m *MockEC2API) ModifyVerifiedAccessInstanceLoggingConfigurationWithContext(arg0 context.Context, arg1 *ec2.ModifyVerifiedAccessInstanceLoggingConfigurationInput, arg2 ...request.Option) (*ec2.ModifyVerifiedAccessInstanceLoggingConfigurationOutput, error)

ModifyVerifiedAccessInstanceLoggingConfigurationWithContext mocks base method.

func (*MockEC2API) ModifyVerifiedAccessInstanceRequest added in v1.19.0

func (m *MockEC2API) ModifyVerifiedAccessInstanceRequest(arg0 *ec2.ModifyVerifiedAccessInstanceInput) (*request.Request, *ec2.ModifyVerifiedAccessInstanceOutput)

ModifyVerifiedAccessInstanceRequest mocks base method.

func (*MockEC2API) ModifyVerifiedAccessInstanceWithContext added in v1.19.0

func (m *MockEC2API) ModifyVerifiedAccessInstanceWithContext(arg0 context.Context, arg1 *ec2.ModifyVerifiedAccessInstanceInput, arg2 ...request.Option) (*ec2.ModifyVerifiedAccessInstanceOutput, error)

ModifyVerifiedAccessInstanceWithContext mocks base method.

func (*MockEC2API) ModifyVerifiedAccessTrustProvider added in v1.19.0

ModifyVerifiedAccessTrustProvider mocks base method.

func (*MockEC2API) ModifyVerifiedAccessTrustProviderRequest added in v1.19.0

ModifyVerifiedAccessTrustProviderRequest mocks base method.

func (*MockEC2API) ModifyVerifiedAccessTrustProviderWithContext added in v1.19.0

func (m *MockEC2API) ModifyVerifiedAccessTrustProviderWithContext(arg0 context.Context, arg1 *ec2.ModifyVerifiedAccessTrustProviderInput, arg2 ...request.Option) (*ec2.ModifyVerifiedAccessTrustProviderOutput, error)

ModifyVerifiedAccessTrustProviderWithContext mocks base method.

func (*MockEC2API) ModifyVolume added in v1.19.0

func (m *MockEC2API) ModifyVolume(arg0 *ec2.ModifyVolumeInput) (*ec2.ModifyVolumeOutput, error)

ModifyVolume mocks base method.

func (*MockEC2API) ModifyVolumeAttribute added in v1.19.0

func (m *MockEC2API) ModifyVolumeAttribute(arg0 *ec2.ModifyVolumeAttributeInput) (*ec2.ModifyVolumeAttributeOutput, error)

ModifyVolumeAttribute mocks base method.

func (*MockEC2API) ModifyVolumeAttributeRequest added in v1.19.0

func (m *MockEC2API) ModifyVolumeAttributeRequest(arg0 *ec2.ModifyVolumeAttributeInput) (*request.Request, *ec2.ModifyVolumeAttributeOutput)

ModifyVolumeAttributeRequest mocks base method.

func (*MockEC2API) ModifyVolumeAttributeWithContext added in v1.19.0

func (m *MockEC2API) ModifyVolumeAttributeWithContext(arg0 context.Context, arg1 *ec2.ModifyVolumeAttributeInput, arg2 ...request.Option) (*ec2.ModifyVolumeAttributeOutput, error)

ModifyVolumeAttributeWithContext mocks base method.

func (*MockEC2API) ModifyVolumeRequest added in v1.19.0

func (m *MockEC2API) ModifyVolumeRequest(arg0 *ec2.ModifyVolumeInput) (*request.Request, *ec2.ModifyVolumeOutput)

ModifyVolumeRequest mocks base method.

func (*MockEC2API) ModifyVolumeWithContext added in v1.19.0

func (m *MockEC2API) ModifyVolumeWithContext(arg0 context.Context, arg1 *ec2.ModifyVolumeInput, arg2 ...request.Option) (*ec2.ModifyVolumeOutput, error)

ModifyVolumeWithContext mocks base method.

func (*MockEC2API) ModifyVpcAttribute added in v1.19.0

func (m *MockEC2API) ModifyVpcAttribute(arg0 *ec2.ModifyVpcAttributeInput) (*ec2.ModifyVpcAttributeOutput, error)

ModifyVpcAttribute mocks base method.

func (*MockEC2API) ModifyVpcAttributeRequest added in v1.19.0

func (m *MockEC2API) ModifyVpcAttributeRequest(arg0 *ec2.ModifyVpcAttributeInput) (*request.Request, *ec2.ModifyVpcAttributeOutput)

ModifyVpcAttributeRequest mocks base method.

func (*MockEC2API) ModifyVpcAttributeWithContext added in v1.19.0

func (m *MockEC2API) ModifyVpcAttributeWithContext(arg0 context.Context, arg1 *ec2.ModifyVpcAttributeInput, arg2 ...request.Option) (*ec2.ModifyVpcAttributeOutput, error)

ModifyVpcAttributeWithContext mocks base method.

func (*MockEC2API) ModifyVpcEndpoint added in v1.19.0

func (m *MockEC2API) ModifyVpcEndpoint(arg0 *ec2.ModifyVpcEndpointInput) (*ec2.ModifyVpcEndpointOutput, error)

ModifyVpcEndpoint mocks base method.

func (*MockEC2API) ModifyVpcEndpointConnectionNotification added in v1.19.0

ModifyVpcEndpointConnectionNotification mocks base method.

func (*MockEC2API) ModifyVpcEndpointConnectionNotificationRequest added in v1.19.0

ModifyVpcEndpointConnectionNotificationRequest mocks base method.

func (*MockEC2API) ModifyVpcEndpointConnectionNotificationWithContext added in v1.19.0

func (m *MockEC2API) ModifyVpcEndpointConnectionNotificationWithContext(arg0 context.Context, arg1 *ec2.ModifyVpcEndpointConnectionNotificationInput, arg2 ...request.Option) (*ec2.ModifyVpcEndpointConnectionNotificationOutput, error)

ModifyVpcEndpointConnectionNotificationWithContext mocks base method.

func (*MockEC2API) ModifyVpcEndpointRequest added in v1.19.0

func (m *MockEC2API) ModifyVpcEndpointRequest(arg0 *ec2.ModifyVpcEndpointInput) (*request.Request, *ec2.ModifyVpcEndpointOutput)

ModifyVpcEndpointRequest mocks base method.

func (*MockEC2API) ModifyVpcEndpointServiceConfiguration added in v1.19.0

ModifyVpcEndpointServiceConfiguration mocks base method.

func (*MockEC2API) ModifyVpcEndpointServiceConfigurationRequest added in v1.19.0

ModifyVpcEndpointServiceConfigurationRequest mocks base method.

func (*MockEC2API) ModifyVpcEndpointServiceConfigurationWithContext added in v1.19.0

func (m *MockEC2API) ModifyVpcEndpointServiceConfigurationWithContext(arg0 context.Context, arg1 *ec2.ModifyVpcEndpointServiceConfigurationInput, arg2 ...request.Option) (*ec2.ModifyVpcEndpointServiceConfigurationOutput, error)

ModifyVpcEndpointServiceConfigurationWithContext mocks base method.

func (*MockEC2API) ModifyVpcEndpointServicePayerResponsibility added in v1.19.0

ModifyVpcEndpointServicePayerResponsibility mocks base method.

func (*MockEC2API) ModifyVpcEndpointServicePayerResponsibilityRequest added in v1.19.0

ModifyVpcEndpointServicePayerResponsibilityRequest mocks base method.

func (*MockEC2API) ModifyVpcEndpointServicePayerResponsibilityWithContext added in v1.19.0

func (m *MockEC2API) ModifyVpcEndpointServicePayerResponsibilityWithContext(arg0 context.Context, arg1 *ec2.ModifyVpcEndpointServicePayerResponsibilityInput, arg2 ...request.Option) (*ec2.ModifyVpcEndpointServicePayerResponsibilityOutput, error)

ModifyVpcEndpointServicePayerResponsibilityWithContext mocks base method.

func (*MockEC2API) ModifyVpcEndpointServicePermissions added in v1.19.0

ModifyVpcEndpointServicePermissions mocks base method.

func (*MockEC2API) ModifyVpcEndpointServicePermissionsRequest added in v1.19.0

ModifyVpcEndpointServicePermissionsRequest mocks base method.

func (*MockEC2API) ModifyVpcEndpointServicePermissionsWithContext added in v1.19.0

func (m *MockEC2API) ModifyVpcEndpointServicePermissionsWithContext(arg0 context.Context, arg1 *ec2.ModifyVpcEndpointServicePermissionsInput, arg2 ...request.Option) (*ec2.ModifyVpcEndpointServicePermissionsOutput, error)

ModifyVpcEndpointServicePermissionsWithContext mocks base method.

func (*MockEC2API) ModifyVpcEndpointWithContext added in v1.19.0

func (m *MockEC2API) ModifyVpcEndpointWithContext(arg0 context.Context, arg1 *ec2.ModifyVpcEndpointInput, arg2 ...request.Option) (*ec2.ModifyVpcEndpointOutput, error)

ModifyVpcEndpointWithContext mocks base method.

func (*MockEC2API) ModifyVpcPeeringConnectionOptions added in v1.19.0

ModifyVpcPeeringConnectionOptions mocks base method.

func (*MockEC2API) ModifyVpcPeeringConnectionOptionsRequest added in v1.19.0

ModifyVpcPeeringConnectionOptionsRequest mocks base method.

func (*MockEC2API) ModifyVpcPeeringConnectionOptionsWithContext added in v1.19.0

func (m *MockEC2API) ModifyVpcPeeringConnectionOptionsWithContext(arg0 context.Context, arg1 *ec2.ModifyVpcPeeringConnectionOptionsInput, arg2 ...request.Option) (*ec2.ModifyVpcPeeringConnectionOptionsOutput, error)

ModifyVpcPeeringConnectionOptionsWithContext mocks base method.

func (*MockEC2API) ModifyVpcTenancy added in v1.19.0

func (m *MockEC2API) ModifyVpcTenancy(arg0 *ec2.ModifyVpcTenancyInput) (*ec2.ModifyVpcTenancyOutput, error)

ModifyVpcTenancy mocks base method.

func (*MockEC2API) ModifyVpcTenancyRequest added in v1.19.0

func (m *MockEC2API) ModifyVpcTenancyRequest(arg0 *ec2.ModifyVpcTenancyInput) (*request.Request, *ec2.ModifyVpcTenancyOutput)

ModifyVpcTenancyRequest mocks base method.

func (*MockEC2API) ModifyVpcTenancyWithContext added in v1.19.0

func (m *MockEC2API) ModifyVpcTenancyWithContext(arg0 context.Context, arg1 *ec2.ModifyVpcTenancyInput, arg2 ...request.Option) (*ec2.ModifyVpcTenancyOutput, error)

ModifyVpcTenancyWithContext mocks base method.

func (*MockEC2API) ModifyVpnConnection added in v1.19.0

func (m *MockEC2API) ModifyVpnConnection(arg0 *ec2.ModifyVpnConnectionInput) (*ec2.ModifyVpnConnectionOutput, error)

ModifyVpnConnection mocks base method.

func (*MockEC2API) ModifyVpnConnectionOptions added in v1.19.0

ModifyVpnConnectionOptions mocks base method.

func (*MockEC2API) ModifyVpnConnectionOptionsRequest added in v1.19.0

func (m *MockEC2API) ModifyVpnConnectionOptionsRequest(arg0 *ec2.ModifyVpnConnectionOptionsInput) (*request.Request, *ec2.ModifyVpnConnectionOptionsOutput)

ModifyVpnConnectionOptionsRequest mocks base method.

func (*MockEC2API) ModifyVpnConnectionOptionsWithContext added in v1.19.0

func (m *MockEC2API) ModifyVpnConnectionOptionsWithContext(arg0 context.Context, arg1 *ec2.ModifyVpnConnectionOptionsInput, arg2 ...request.Option) (*ec2.ModifyVpnConnectionOptionsOutput, error)

ModifyVpnConnectionOptionsWithContext mocks base method.

func (*MockEC2API) ModifyVpnConnectionRequest added in v1.19.0

func (m *MockEC2API) ModifyVpnConnectionRequest(arg0 *ec2.ModifyVpnConnectionInput) (*request.Request, *ec2.ModifyVpnConnectionOutput)

ModifyVpnConnectionRequest mocks base method.

func (*MockEC2API) ModifyVpnConnectionWithContext added in v1.19.0

func (m *MockEC2API) ModifyVpnConnectionWithContext(arg0 context.Context, arg1 *ec2.ModifyVpnConnectionInput, arg2 ...request.Option) (*ec2.ModifyVpnConnectionOutput, error)

ModifyVpnConnectionWithContext mocks base method.

func (*MockEC2API) ModifyVpnTunnelCertificate added in v1.19.0

ModifyVpnTunnelCertificate mocks base method.

func (*MockEC2API) ModifyVpnTunnelCertificateRequest added in v1.19.0

func (m *MockEC2API) ModifyVpnTunnelCertificateRequest(arg0 *ec2.ModifyVpnTunnelCertificateInput) (*request.Request, *ec2.ModifyVpnTunnelCertificateOutput)

ModifyVpnTunnelCertificateRequest mocks base method.

func (*MockEC2API) ModifyVpnTunnelCertificateWithContext added in v1.19.0

func (m *MockEC2API) ModifyVpnTunnelCertificateWithContext(arg0 context.Context, arg1 *ec2.ModifyVpnTunnelCertificateInput, arg2 ...request.Option) (*ec2.ModifyVpnTunnelCertificateOutput, error)

ModifyVpnTunnelCertificateWithContext mocks base method.

func (*MockEC2API) ModifyVpnTunnelOptions added in v1.19.0

func (m *MockEC2API) ModifyVpnTunnelOptions(arg0 *ec2.ModifyVpnTunnelOptionsInput) (*ec2.ModifyVpnTunnelOptionsOutput, error)

ModifyVpnTunnelOptions mocks base method.

func (*MockEC2API) ModifyVpnTunnelOptionsRequest added in v1.19.0

func (m *MockEC2API) ModifyVpnTunnelOptionsRequest(arg0 *ec2.ModifyVpnTunnelOptionsInput) (*request.Request, *ec2.ModifyVpnTunnelOptionsOutput)

ModifyVpnTunnelOptionsRequest mocks base method.

func (*MockEC2API) ModifyVpnTunnelOptionsWithContext added in v1.19.0

func (m *MockEC2API) ModifyVpnTunnelOptionsWithContext(arg0 context.Context, arg1 *ec2.ModifyVpnTunnelOptionsInput, arg2 ...request.Option) (*ec2.ModifyVpnTunnelOptionsOutput, error)

ModifyVpnTunnelOptionsWithContext mocks base method.

func (*MockEC2API) MonitorInstances added in v1.19.0

func (m *MockEC2API) MonitorInstances(arg0 *ec2.MonitorInstancesInput) (*ec2.MonitorInstancesOutput, error)

MonitorInstances mocks base method.

func (*MockEC2API) MonitorInstancesRequest added in v1.19.0

func (m *MockEC2API) MonitorInstancesRequest(arg0 *ec2.MonitorInstancesInput) (*request.Request, *ec2.MonitorInstancesOutput)

MonitorInstancesRequest mocks base method.

func (*MockEC2API) MonitorInstancesWithContext added in v1.19.0

func (m *MockEC2API) MonitorInstancesWithContext(arg0 context.Context, arg1 *ec2.MonitorInstancesInput, arg2 ...request.Option) (*ec2.MonitorInstancesOutput, error)

MonitorInstancesWithContext mocks base method.

func (*MockEC2API) MoveAddressToVpc added in v1.19.0

func (m *MockEC2API) MoveAddressToVpc(arg0 *ec2.MoveAddressToVpcInput) (*ec2.MoveAddressToVpcOutput, error)

MoveAddressToVpc mocks base method.

func (*MockEC2API) MoveAddressToVpcRequest added in v1.19.0

func (m *MockEC2API) MoveAddressToVpcRequest(arg0 *ec2.MoveAddressToVpcInput) (*request.Request, *ec2.MoveAddressToVpcOutput)

MoveAddressToVpcRequest mocks base method.

func (*MockEC2API) MoveAddressToVpcWithContext added in v1.19.0

func (m *MockEC2API) MoveAddressToVpcWithContext(arg0 context.Context, arg1 *ec2.MoveAddressToVpcInput, arg2 ...request.Option) (*ec2.MoveAddressToVpcOutput, error)

MoveAddressToVpcWithContext mocks base method.

func (*MockEC2API) MoveByoipCidrToIpam added in v1.19.0

func (m *MockEC2API) MoveByoipCidrToIpam(arg0 *ec2.MoveByoipCidrToIpamInput) (*ec2.MoveByoipCidrToIpamOutput, error)

MoveByoipCidrToIpam mocks base method.

func (*MockEC2API) MoveByoipCidrToIpamRequest added in v1.19.0

func (m *MockEC2API) MoveByoipCidrToIpamRequest(arg0 *ec2.MoveByoipCidrToIpamInput) (*request.Request, *ec2.MoveByoipCidrToIpamOutput)

MoveByoipCidrToIpamRequest mocks base method.

func (*MockEC2API) MoveByoipCidrToIpamWithContext added in v1.19.0

func (m *MockEC2API) MoveByoipCidrToIpamWithContext(arg0 context.Context, arg1 *ec2.MoveByoipCidrToIpamInput, arg2 ...request.Option) (*ec2.MoveByoipCidrToIpamOutput, error)

MoveByoipCidrToIpamWithContext mocks base method.

func (*MockEC2API) ProvisionByoipCidr added in v1.19.0

func (m *MockEC2API) ProvisionByoipCidr(arg0 *ec2.ProvisionByoipCidrInput) (*ec2.ProvisionByoipCidrOutput, error)

ProvisionByoipCidr mocks base method.

func (*MockEC2API) ProvisionByoipCidrRequest added in v1.19.0

func (m *MockEC2API) ProvisionByoipCidrRequest(arg0 *ec2.ProvisionByoipCidrInput) (*request.Request, *ec2.ProvisionByoipCidrOutput)

ProvisionByoipCidrRequest mocks base method.

func (*MockEC2API) ProvisionByoipCidrWithContext added in v1.19.0

func (m *MockEC2API) ProvisionByoipCidrWithContext(arg0 context.Context, arg1 *ec2.ProvisionByoipCidrInput, arg2 ...request.Option) (*ec2.ProvisionByoipCidrOutput, error)

ProvisionByoipCidrWithContext mocks base method.

func (*MockEC2API) ProvisionIpamPoolCidr added in v1.19.0

func (m *MockEC2API) ProvisionIpamPoolCidr(arg0 *ec2.ProvisionIpamPoolCidrInput) (*ec2.ProvisionIpamPoolCidrOutput, error)

ProvisionIpamPoolCidr mocks base method.

func (*MockEC2API) ProvisionIpamPoolCidrRequest added in v1.19.0

func (m *MockEC2API) ProvisionIpamPoolCidrRequest(arg0 *ec2.ProvisionIpamPoolCidrInput) (*request.Request, *ec2.ProvisionIpamPoolCidrOutput)

ProvisionIpamPoolCidrRequest mocks base method.

func (*MockEC2API) ProvisionIpamPoolCidrWithContext added in v1.19.0

func (m *MockEC2API) ProvisionIpamPoolCidrWithContext(arg0 context.Context, arg1 *ec2.ProvisionIpamPoolCidrInput, arg2 ...request.Option) (*ec2.ProvisionIpamPoolCidrOutput, error)

ProvisionIpamPoolCidrWithContext mocks base method.

func (*MockEC2API) ProvisionPublicIpv4PoolCidr added in v1.19.0

ProvisionPublicIpv4PoolCidr mocks base method.

func (*MockEC2API) ProvisionPublicIpv4PoolCidrRequest added in v1.19.0

func (m *MockEC2API) ProvisionPublicIpv4PoolCidrRequest(arg0 *ec2.ProvisionPublicIpv4PoolCidrInput) (*request.Request, *ec2.ProvisionPublicIpv4PoolCidrOutput)

ProvisionPublicIpv4PoolCidrRequest mocks base method.

func (*MockEC2API) ProvisionPublicIpv4PoolCidrWithContext added in v1.19.0

func (m *MockEC2API) ProvisionPublicIpv4PoolCidrWithContext(arg0 context.Context, arg1 *ec2.ProvisionPublicIpv4PoolCidrInput, arg2 ...request.Option) (*ec2.ProvisionPublicIpv4PoolCidrOutput, error)

ProvisionPublicIpv4PoolCidrWithContext mocks base method.

func (*MockEC2API) PurchaseHostReservation added in v1.19.0

func (m *MockEC2API) PurchaseHostReservation(arg0 *ec2.PurchaseHostReservationInput) (*ec2.PurchaseHostReservationOutput, error)

PurchaseHostReservation mocks base method.

func (*MockEC2API) PurchaseHostReservationRequest added in v1.19.0

func (m *MockEC2API) PurchaseHostReservationRequest(arg0 *ec2.PurchaseHostReservationInput) (*request.Request, *ec2.PurchaseHostReservationOutput)

PurchaseHostReservationRequest mocks base method.

func (*MockEC2API) PurchaseHostReservationWithContext added in v1.19.0

func (m *MockEC2API) PurchaseHostReservationWithContext(arg0 context.Context, arg1 *ec2.PurchaseHostReservationInput, arg2 ...request.Option) (*ec2.PurchaseHostReservationOutput, error)

PurchaseHostReservationWithContext mocks base method.

func (*MockEC2API) PurchaseReservedInstancesOffering added in v1.19.0

PurchaseReservedInstancesOffering mocks base method.

func (*MockEC2API) PurchaseReservedInstancesOfferingRequest added in v1.19.0

PurchaseReservedInstancesOfferingRequest mocks base method.

func (*MockEC2API) PurchaseReservedInstancesOfferingWithContext added in v1.19.0

func (m *MockEC2API) PurchaseReservedInstancesOfferingWithContext(arg0 context.Context, arg1 *ec2.PurchaseReservedInstancesOfferingInput, arg2 ...request.Option) (*ec2.PurchaseReservedInstancesOfferingOutput, error)

PurchaseReservedInstancesOfferingWithContext mocks base method.

func (*MockEC2API) PurchaseScheduledInstances added in v1.19.0

PurchaseScheduledInstances mocks base method.

func (*MockEC2API) PurchaseScheduledInstancesRequest added in v1.19.0

func (m *MockEC2API) PurchaseScheduledInstancesRequest(arg0 *ec2.PurchaseScheduledInstancesInput) (*request.Request, *ec2.PurchaseScheduledInstancesOutput)

PurchaseScheduledInstancesRequest mocks base method.

func (*MockEC2API) PurchaseScheduledInstancesWithContext added in v1.19.0

func (m *MockEC2API) PurchaseScheduledInstancesWithContext(arg0 context.Context, arg1 *ec2.PurchaseScheduledInstancesInput, arg2 ...request.Option) (*ec2.PurchaseScheduledInstancesOutput, error)

PurchaseScheduledInstancesWithContext mocks base method.

func (*MockEC2API) RebootInstances added in v1.19.0

func (m *MockEC2API) RebootInstances(arg0 *ec2.RebootInstancesInput) (*ec2.RebootInstancesOutput, error)

RebootInstances mocks base method.

func (*MockEC2API) RebootInstancesRequest added in v1.19.0

func (m *MockEC2API) RebootInstancesRequest(arg0 *ec2.RebootInstancesInput) (*request.Request, *ec2.RebootInstancesOutput)

RebootInstancesRequest mocks base method.

func (*MockEC2API) RebootInstancesWithContext added in v1.19.0

func (m *MockEC2API) RebootInstancesWithContext(arg0 context.Context, arg1 *ec2.RebootInstancesInput, arg2 ...request.Option) (*ec2.RebootInstancesOutput, error)

RebootInstancesWithContext mocks base method.

func (*MockEC2API) RegisterImage added in v1.19.0

func (m *MockEC2API) RegisterImage(arg0 *ec2.RegisterImageInput) (*ec2.RegisterImageOutput, error)

RegisterImage mocks base method.

func (*MockEC2API) RegisterImageRequest added in v1.19.0

func (m *MockEC2API) RegisterImageRequest(arg0 *ec2.RegisterImageInput) (*request.Request, *ec2.RegisterImageOutput)

RegisterImageRequest mocks base method.

func (*MockEC2API) RegisterImageWithContext added in v1.19.0

func (m *MockEC2API) RegisterImageWithContext(arg0 context.Context, arg1 *ec2.RegisterImageInput, arg2 ...request.Option) (*ec2.RegisterImageOutput, error)

RegisterImageWithContext mocks base method.

func (*MockEC2API) RegisterInstanceEventNotificationAttributes added in v1.19.0

RegisterInstanceEventNotificationAttributes mocks base method.

func (*MockEC2API) RegisterInstanceEventNotificationAttributesRequest added in v1.19.0

RegisterInstanceEventNotificationAttributesRequest mocks base method.

func (*MockEC2API) RegisterInstanceEventNotificationAttributesWithContext added in v1.19.0

func (m *MockEC2API) RegisterInstanceEventNotificationAttributesWithContext(arg0 context.Context, arg1 *ec2.RegisterInstanceEventNotificationAttributesInput, arg2 ...request.Option) (*ec2.RegisterInstanceEventNotificationAttributesOutput, error)

RegisterInstanceEventNotificationAttributesWithContext mocks base method.

func (*MockEC2API) RegisterTransitGatewayMulticastGroupMembers added in v1.19.0

RegisterTransitGatewayMulticastGroupMembers mocks base method.

func (*MockEC2API) RegisterTransitGatewayMulticastGroupMembersRequest added in v1.19.0

RegisterTransitGatewayMulticastGroupMembersRequest mocks base method.

func (*MockEC2API) RegisterTransitGatewayMulticastGroupMembersWithContext added in v1.19.0

func (m *MockEC2API) RegisterTransitGatewayMulticastGroupMembersWithContext(arg0 context.Context, arg1 *ec2.RegisterTransitGatewayMulticastGroupMembersInput, arg2 ...request.Option) (*ec2.RegisterTransitGatewayMulticastGroupMembersOutput, error)

RegisterTransitGatewayMulticastGroupMembersWithContext mocks base method.

func (*MockEC2API) RegisterTransitGatewayMulticastGroupSources added in v1.19.0

RegisterTransitGatewayMulticastGroupSources mocks base method.

func (*MockEC2API) RegisterTransitGatewayMulticastGroupSourcesRequest added in v1.19.0

RegisterTransitGatewayMulticastGroupSourcesRequest mocks base method.

func (*MockEC2API) RegisterTransitGatewayMulticastGroupSourcesWithContext added in v1.19.0

func (m *MockEC2API) RegisterTransitGatewayMulticastGroupSourcesWithContext(arg0 context.Context, arg1 *ec2.RegisterTransitGatewayMulticastGroupSourcesInput, arg2 ...request.Option) (*ec2.RegisterTransitGatewayMulticastGroupSourcesOutput, error)

RegisterTransitGatewayMulticastGroupSourcesWithContext mocks base method.

func (*MockEC2API) RejectTransitGatewayMulticastDomainAssociations added in v1.19.0

RejectTransitGatewayMulticastDomainAssociations mocks base method.

func (*MockEC2API) RejectTransitGatewayMulticastDomainAssociationsRequest added in v1.19.0

RejectTransitGatewayMulticastDomainAssociationsRequest mocks base method.

func (*MockEC2API) RejectTransitGatewayMulticastDomainAssociationsWithContext added in v1.19.0

func (m *MockEC2API) RejectTransitGatewayMulticastDomainAssociationsWithContext(arg0 context.Context, arg1 *ec2.RejectTransitGatewayMulticastDomainAssociationsInput, arg2 ...request.Option) (*ec2.RejectTransitGatewayMulticastDomainAssociationsOutput, error)

RejectTransitGatewayMulticastDomainAssociationsWithContext mocks base method.

func (*MockEC2API) RejectTransitGatewayPeeringAttachment added in v1.19.0

RejectTransitGatewayPeeringAttachment mocks base method.

func (*MockEC2API) RejectTransitGatewayPeeringAttachmentRequest added in v1.19.0

RejectTransitGatewayPeeringAttachmentRequest mocks base method.

func (*MockEC2API) RejectTransitGatewayPeeringAttachmentWithContext added in v1.19.0

func (m *MockEC2API) RejectTransitGatewayPeeringAttachmentWithContext(arg0 context.Context, arg1 *ec2.RejectTransitGatewayPeeringAttachmentInput, arg2 ...request.Option) (*ec2.RejectTransitGatewayPeeringAttachmentOutput, error)

RejectTransitGatewayPeeringAttachmentWithContext mocks base method.

func (*MockEC2API) RejectTransitGatewayVpcAttachment added in v1.19.0

RejectTransitGatewayVpcAttachment mocks base method.

func (*MockEC2API) RejectTransitGatewayVpcAttachmentRequest added in v1.19.0

RejectTransitGatewayVpcAttachmentRequest mocks base method.

func (*MockEC2API) RejectTransitGatewayVpcAttachmentWithContext added in v1.19.0

func (m *MockEC2API) RejectTransitGatewayVpcAttachmentWithContext(arg0 context.Context, arg1 *ec2.RejectTransitGatewayVpcAttachmentInput, arg2 ...request.Option) (*ec2.RejectTransitGatewayVpcAttachmentOutput, error)

RejectTransitGatewayVpcAttachmentWithContext mocks base method.

func (*MockEC2API) RejectVpcEndpointConnections added in v1.19.0

RejectVpcEndpointConnections mocks base method.

func (*MockEC2API) RejectVpcEndpointConnectionsRequest added in v1.19.0

func (m *MockEC2API) RejectVpcEndpointConnectionsRequest(arg0 *ec2.RejectVpcEndpointConnectionsInput) (*request.Request, *ec2.RejectVpcEndpointConnectionsOutput)

RejectVpcEndpointConnectionsRequest mocks base method.

func (*MockEC2API) RejectVpcEndpointConnectionsWithContext added in v1.19.0

func (m *MockEC2API) RejectVpcEndpointConnectionsWithContext(arg0 context.Context, arg1 *ec2.RejectVpcEndpointConnectionsInput, arg2 ...request.Option) (*ec2.RejectVpcEndpointConnectionsOutput, error)

RejectVpcEndpointConnectionsWithContext mocks base method.

func (*MockEC2API) RejectVpcPeeringConnection added in v1.19.0

RejectVpcPeeringConnection mocks base method.

func (*MockEC2API) RejectVpcPeeringConnectionRequest added in v1.19.0

func (m *MockEC2API) RejectVpcPeeringConnectionRequest(arg0 *ec2.RejectVpcPeeringConnectionInput) (*request.Request, *ec2.RejectVpcPeeringConnectionOutput)

RejectVpcPeeringConnectionRequest mocks base method.

func (*MockEC2API) RejectVpcPeeringConnectionWithContext added in v1.19.0

func (m *MockEC2API) RejectVpcPeeringConnectionWithContext(arg0 context.Context, arg1 *ec2.RejectVpcPeeringConnectionInput, arg2 ...request.Option) (*ec2.RejectVpcPeeringConnectionOutput, error)

RejectVpcPeeringConnectionWithContext mocks base method.

func (*MockEC2API) ReleaseAddress added in v1.19.0

func (m *MockEC2API) ReleaseAddress(arg0 *ec2.ReleaseAddressInput) (*ec2.ReleaseAddressOutput, error)

ReleaseAddress mocks base method.

func (*MockEC2API) ReleaseAddressRequest added in v1.19.0

func (m *MockEC2API) ReleaseAddressRequest(arg0 *ec2.ReleaseAddressInput) (*request.Request, *ec2.ReleaseAddressOutput)

ReleaseAddressRequest mocks base method.

func (*MockEC2API) ReleaseAddressWithContext added in v1.19.0

func (m *MockEC2API) ReleaseAddressWithContext(arg0 context.Context, arg1 *ec2.ReleaseAddressInput, arg2 ...request.Option) (*ec2.ReleaseAddressOutput, error)

ReleaseAddressWithContext mocks base method.

func (*MockEC2API) ReleaseHosts added in v1.19.0

func (m *MockEC2API) ReleaseHosts(arg0 *ec2.ReleaseHostsInput) (*ec2.ReleaseHostsOutput, error)

ReleaseHosts mocks base method.

func (*MockEC2API) ReleaseHostsRequest added in v1.19.0

func (m *MockEC2API) ReleaseHostsRequest(arg0 *ec2.ReleaseHostsInput) (*request.Request, *ec2.ReleaseHostsOutput)

ReleaseHostsRequest mocks base method.

func (*MockEC2API) ReleaseHostsWithContext added in v1.19.0

func (m *MockEC2API) ReleaseHostsWithContext(arg0 context.Context, arg1 *ec2.ReleaseHostsInput, arg2 ...request.Option) (*ec2.ReleaseHostsOutput, error)

ReleaseHostsWithContext mocks base method.

func (*MockEC2API) ReleaseIpamPoolAllocation added in v1.19.0

ReleaseIpamPoolAllocation mocks base method.

func (*MockEC2API) ReleaseIpamPoolAllocationRequest added in v1.19.0

func (m *MockEC2API) ReleaseIpamPoolAllocationRequest(arg0 *ec2.ReleaseIpamPoolAllocationInput) (*request.Request, *ec2.ReleaseIpamPoolAllocationOutput)

ReleaseIpamPoolAllocationRequest mocks base method.

func (*MockEC2API) ReleaseIpamPoolAllocationWithContext added in v1.19.0

func (m *MockEC2API) ReleaseIpamPoolAllocationWithContext(arg0 context.Context, arg1 *ec2.ReleaseIpamPoolAllocationInput, arg2 ...request.Option) (*ec2.ReleaseIpamPoolAllocationOutput, error)

ReleaseIpamPoolAllocationWithContext mocks base method.

func (*MockEC2API) ReplaceIamInstanceProfileAssociation added in v1.19.0

ReplaceIamInstanceProfileAssociation mocks base method.

func (*MockEC2API) ReplaceIamInstanceProfileAssociationRequest added in v1.19.0

ReplaceIamInstanceProfileAssociationRequest mocks base method.

func (*MockEC2API) ReplaceIamInstanceProfileAssociationWithContext added in v1.19.0

func (m *MockEC2API) ReplaceIamInstanceProfileAssociationWithContext(arg0 context.Context, arg1 *ec2.ReplaceIamInstanceProfileAssociationInput, arg2 ...request.Option) (*ec2.ReplaceIamInstanceProfileAssociationOutput, error)

ReplaceIamInstanceProfileAssociationWithContext mocks base method.

func (*MockEC2API) ReplaceNetworkAclAssociation added in v1.19.0

ReplaceNetworkAclAssociation mocks base method.

func (*MockEC2API) ReplaceNetworkAclAssociationRequest added in v1.19.0

func (m *MockEC2API) ReplaceNetworkAclAssociationRequest(arg0 *ec2.ReplaceNetworkAclAssociationInput) (*request.Request, *ec2.ReplaceNetworkAclAssociationOutput)

ReplaceNetworkAclAssociationRequest mocks base method.

func (*MockEC2API) ReplaceNetworkAclAssociationWithContext added in v1.19.0

func (m *MockEC2API) ReplaceNetworkAclAssociationWithContext(arg0 context.Context, arg1 *ec2.ReplaceNetworkAclAssociationInput, arg2 ...request.Option) (*ec2.ReplaceNetworkAclAssociationOutput, error)

ReplaceNetworkAclAssociationWithContext mocks base method.

func (*MockEC2API) ReplaceNetworkAclEntry added in v1.19.0

func (m *MockEC2API) ReplaceNetworkAclEntry(arg0 *ec2.ReplaceNetworkAclEntryInput) (*ec2.ReplaceNetworkAclEntryOutput, error)

ReplaceNetworkAclEntry mocks base method.

func (*MockEC2API) ReplaceNetworkAclEntryRequest added in v1.19.0

func (m *MockEC2API) ReplaceNetworkAclEntryRequest(arg0 *ec2.ReplaceNetworkAclEntryInput) (*request.Request, *ec2.ReplaceNetworkAclEntryOutput)

ReplaceNetworkAclEntryRequest mocks base method.

func (*MockEC2API) ReplaceNetworkAclEntryWithContext added in v1.19.0

func (m *MockEC2API) ReplaceNetworkAclEntryWithContext(arg0 context.Context, arg1 *ec2.ReplaceNetworkAclEntryInput, arg2 ...request.Option) (*ec2.ReplaceNetworkAclEntryOutput, error)

ReplaceNetworkAclEntryWithContext mocks base method.

func (*MockEC2API) ReplaceRoute added in v1.19.0

func (m *MockEC2API) ReplaceRoute(arg0 *ec2.ReplaceRouteInput) (*ec2.ReplaceRouteOutput, error)

ReplaceRoute mocks base method.

func (*MockEC2API) ReplaceRouteRequest added in v1.19.0

func (m *MockEC2API) ReplaceRouteRequest(arg0 *ec2.ReplaceRouteInput) (*request.Request, *ec2.ReplaceRouteOutput)

ReplaceRouteRequest mocks base method.

func (*MockEC2API) ReplaceRouteTableAssociation added in v1.19.0

ReplaceRouteTableAssociation mocks base method.

func (*MockEC2API) ReplaceRouteTableAssociationRequest added in v1.19.0

func (m *MockEC2API) ReplaceRouteTableAssociationRequest(arg0 *ec2.ReplaceRouteTableAssociationInput) (*request.Request, *ec2.ReplaceRouteTableAssociationOutput)

ReplaceRouteTableAssociationRequest mocks base method.

func (*MockEC2API) ReplaceRouteTableAssociationWithContext added in v1.19.0

func (m *MockEC2API) ReplaceRouteTableAssociationWithContext(arg0 context.Context, arg1 *ec2.ReplaceRouteTableAssociationInput, arg2 ...request.Option) (*ec2.ReplaceRouteTableAssociationOutput, error)

ReplaceRouteTableAssociationWithContext mocks base method.

func (*MockEC2API) ReplaceRouteWithContext added in v1.19.0

func (m *MockEC2API) ReplaceRouteWithContext(arg0 context.Context, arg1 *ec2.ReplaceRouteInput, arg2 ...request.Option) (*ec2.ReplaceRouteOutput, error)

ReplaceRouteWithContext mocks base method.

func (*MockEC2API) ReplaceTransitGatewayRoute added in v1.19.0

ReplaceTransitGatewayRoute mocks base method.

func (*MockEC2API) ReplaceTransitGatewayRouteRequest added in v1.19.0

func (m *MockEC2API) ReplaceTransitGatewayRouteRequest(arg0 *ec2.ReplaceTransitGatewayRouteInput) (*request.Request, *ec2.ReplaceTransitGatewayRouteOutput)

ReplaceTransitGatewayRouteRequest mocks base method.

func (*MockEC2API) ReplaceTransitGatewayRouteWithContext added in v1.19.0

func (m *MockEC2API) ReplaceTransitGatewayRouteWithContext(arg0 context.Context, arg1 *ec2.ReplaceTransitGatewayRouteInput, arg2 ...request.Option) (*ec2.ReplaceTransitGatewayRouteOutput, error)

ReplaceTransitGatewayRouteWithContext mocks base method.

func (*MockEC2API) ReplaceVpnTunnel added in v1.19.0

func (m *MockEC2API) ReplaceVpnTunnel(arg0 *ec2.ReplaceVpnTunnelInput) (*ec2.ReplaceVpnTunnelOutput, error)

ReplaceVpnTunnel mocks base method.

func (*MockEC2API) ReplaceVpnTunnelRequest added in v1.19.0

func (m *MockEC2API) ReplaceVpnTunnelRequest(arg0 *ec2.ReplaceVpnTunnelInput) (*request.Request, *ec2.ReplaceVpnTunnelOutput)

ReplaceVpnTunnelRequest mocks base method.

func (*MockEC2API) ReplaceVpnTunnelWithContext added in v1.19.0

func (m *MockEC2API) ReplaceVpnTunnelWithContext(arg0 context.Context, arg1 *ec2.ReplaceVpnTunnelInput, arg2 ...request.Option) (*ec2.ReplaceVpnTunnelOutput, error)

ReplaceVpnTunnelWithContext mocks base method.

func (*MockEC2API) ReportInstanceStatus added in v1.19.0

func (m *MockEC2API) ReportInstanceStatus(arg0 *ec2.ReportInstanceStatusInput) (*ec2.ReportInstanceStatusOutput, error)

ReportInstanceStatus mocks base method.

func (*MockEC2API) ReportInstanceStatusRequest added in v1.19.0

func (m *MockEC2API) ReportInstanceStatusRequest(arg0 *ec2.ReportInstanceStatusInput) (*request.Request, *ec2.ReportInstanceStatusOutput)

ReportInstanceStatusRequest mocks base method.

func (*MockEC2API) ReportInstanceStatusWithContext added in v1.19.0

func (m *MockEC2API) ReportInstanceStatusWithContext(arg0 context.Context, arg1 *ec2.ReportInstanceStatusInput, arg2 ...request.Option) (*ec2.ReportInstanceStatusOutput, error)

ReportInstanceStatusWithContext mocks base method.

func (*MockEC2API) RequestSpotFleet added in v1.19.0

func (m *MockEC2API) RequestSpotFleet(arg0 *ec2.RequestSpotFleetInput) (*ec2.RequestSpotFleetOutput, error)

RequestSpotFleet mocks base method.

func (*MockEC2API) RequestSpotFleetRequest added in v1.19.0

func (m *MockEC2API) RequestSpotFleetRequest(arg0 *ec2.RequestSpotFleetInput) (*request.Request, *ec2.RequestSpotFleetOutput)

RequestSpotFleetRequest mocks base method.

func (*MockEC2API) RequestSpotFleetWithContext added in v1.19.0

func (m *MockEC2API) RequestSpotFleetWithContext(arg0 context.Context, arg1 *ec2.RequestSpotFleetInput, arg2 ...request.Option) (*ec2.RequestSpotFleetOutput, error)

RequestSpotFleetWithContext mocks base method.

func (*MockEC2API) RequestSpotInstances added in v1.19.0

func (m *MockEC2API) RequestSpotInstances(arg0 *ec2.RequestSpotInstancesInput) (*ec2.RequestSpotInstancesOutput, error)

RequestSpotInstances mocks base method.

func (*MockEC2API) RequestSpotInstancesRequest added in v1.19.0

func (m *MockEC2API) RequestSpotInstancesRequest(arg0 *ec2.RequestSpotInstancesInput) (*request.Request, *ec2.RequestSpotInstancesOutput)

RequestSpotInstancesRequest mocks base method.

func (*MockEC2API) RequestSpotInstancesWithContext added in v1.19.0

func (m *MockEC2API) RequestSpotInstancesWithContext(arg0 context.Context, arg1 *ec2.RequestSpotInstancesInput, arg2 ...request.Option) (*ec2.RequestSpotInstancesOutput, error)

RequestSpotInstancesWithContext mocks base method.

func (*MockEC2API) ResetAddressAttribute added in v1.19.0

func (m *MockEC2API) ResetAddressAttribute(arg0 *ec2.ResetAddressAttributeInput) (*ec2.ResetAddressAttributeOutput, error)

ResetAddressAttribute mocks base method.

func (*MockEC2API) ResetAddressAttributeRequest added in v1.19.0

func (m *MockEC2API) ResetAddressAttributeRequest(arg0 *ec2.ResetAddressAttributeInput) (*request.Request, *ec2.ResetAddressAttributeOutput)

ResetAddressAttributeRequest mocks base method.

func (*MockEC2API) ResetAddressAttributeWithContext added in v1.19.0

func (m *MockEC2API) ResetAddressAttributeWithContext(arg0 context.Context, arg1 *ec2.ResetAddressAttributeInput, arg2 ...request.Option) (*ec2.ResetAddressAttributeOutput, error)

ResetAddressAttributeWithContext mocks base method.

func (*MockEC2API) ResetEbsDefaultKmsKeyId added in v1.19.0

func (m *MockEC2API) ResetEbsDefaultKmsKeyId(arg0 *ec2.ResetEbsDefaultKmsKeyIdInput) (*ec2.ResetEbsDefaultKmsKeyIdOutput, error)

ResetEbsDefaultKmsKeyId mocks base method.

func (*MockEC2API) ResetEbsDefaultKmsKeyIdRequest added in v1.19.0

func (m *MockEC2API) ResetEbsDefaultKmsKeyIdRequest(arg0 *ec2.ResetEbsDefaultKmsKeyIdInput) (*request.Request, *ec2.ResetEbsDefaultKmsKeyIdOutput)

ResetEbsDefaultKmsKeyIdRequest mocks base method.

func (*MockEC2API) ResetEbsDefaultKmsKeyIdWithContext added in v1.19.0

func (m *MockEC2API) ResetEbsDefaultKmsKeyIdWithContext(arg0 context.Context, arg1 *ec2.ResetEbsDefaultKmsKeyIdInput, arg2 ...request.Option) (*ec2.ResetEbsDefaultKmsKeyIdOutput, error)

ResetEbsDefaultKmsKeyIdWithContext mocks base method.

func (*MockEC2API) ResetFpgaImageAttribute added in v1.19.0

func (m *MockEC2API) ResetFpgaImageAttribute(arg0 *ec2.ResetFpgaImageAttributeInput) (*ec2.ResetFpgaImageAttributeOutput, error)

ResetFpgaImageAttribute mocks base method.

func (*MockEC2API) ResetFpgaImageAttributeRequest added in v1.19.0

func (m *MockEC2API) ResetFpgaImageAttributeRequest(arg0 *ec2.ResetFpgaImageAttributeInput) (*request.Request, *ec2.ResetFpgaImageAttributeOutput)

ResetFpgaImageAttributeRequest mocks base method.

func (*MockEC2API) ResetFpgaImageAttributeWithContext added in v1.19.0

func (m *MockEC2API) ResetFpgaImageAttributeWithContext(arg0 context.Context, arg1 *ec2.ResetFpgaImageAttributeInput, arg2 ...request.Option) (*ec2.ResetFpgaImageAttributeOutput, error)

ResetFpgaImageAttributeWithContext mocks base method.

func (*MockEC2API) ResetImageAttribute added in v1.19.0

func (m *MockEC2API) ResetImageAttribute(arg0 *ec2.ResetImageAttributeInput) (*ec2.ResetImageAttributeOutput, error)

ResetImageAttribute mocks base method.

func (*MockEC2API) ResetImageAttributeRequest added in v1.19.0

func (m *MockEC2API) ResetImageAttributeRequest(arg0 *ec2.ResetImageAttributeInput) (*request.Request, *ec2.ResetImageAttributeOutput)

ResetImageAttributeRequest mocks base method.

func (*MockEC2API) ResetImageAttributeWithContext added in v1.19.0

func (m *MockEC2API) ResetImageAttributeWithContext(arg0 context.Context, arg1 *ec2.ResetImageAttributeInput, arg2 ...request.Option) (*ec2.ResetImageAttributeOutput, error)

ResetImageAttributeWithContext mocks base method.

func (*MockEC2API) ResetInstanceAttribute added in v1.19.0

func (m *MockEC2API) ResetInstanceAttribute(arg0 *ec2.ResetInstanceAttributeInput) (*ec2.ResetInstanceAttributeOutput, error)

ResetInstanceAttribute mocks base method.

func (*MockEC2API) ResetInstanceAttributeRequest added in v1.19.0

func (m *MockEC2API) ResetInstanceAttributeRequest(arg0 *ec2.ResetInstanceAttributeInput) (*request.Request, *ec2.ResetInstanceAttributeOutput)

ResetInstanceAttributeRequest mocks base method.

func (*MockEC2API) ResetInstanceAttributeWithContext added in v1.19.0

func (m *MockEC2API) ResetInstanceAttributeWithContext(arg0 context.Context, arg1 *ec2.ResetInstanceAttributeInput, arg2 ...request.Option) (*ec2.ResetInstanceAttributeOutput, error)

ResetInstanceAttributeWithContext mocks base method.

func (*MockEC2API) ResetNetworkInterfaceAttribute added in v1.19.0

ResetNetworkInterfaceAttribute mocks base method.

func (*MockEC2API) ResetNetworkInterfaceAttributeRequest added in v1.19.0

func (m *MockEC2API) ResetNetworkInterfaceAttributeRequest(arg0 *ec2.ResetNetworkInterfaceAttributeInput) (*request.Request, *ec2.ResetNetworkInterfaceAttributeOutput)

ResetNetworkInterfaceAttributeRequest mocks base method.

func (*MockEC2API) ResetNetworkInterfaceAttributeWithContext added in v1.19.0

func (m *MockEC2API) ResetNetworkInterfaceAttributeWithContext(arg0 context.Context, arg1 *ec2.ResetNetworkInterfaceAttributeInput, arg2 ...request.Option) (*ec2.ResetNetworkInterfaceAttributeOutput, error)

ResetNetworkInterfaceAttributeWithContext mocks base method.

func (*MockEC2API) ResetSnapshotAttribute added in v1.19.0

func (m *MockEC2API) ResetSnapshotAttribute(arg0 *ec2.ResetSnapshotAttributeInput) (*ec2.ResetSnapshotAttributeOutput, error)

ResetSnapshotAttribute mocks base method.

func (*MockEC2API) ResetSnapshotAttributeRequest added in v1.19.0

func (m *MockEC2API) ResetSnapshotAttributeRequest(arg0 *ec2.ResetSnapshotAttributeInput) (*request.Request, *ec2.ResetSnapshotAttributeOutput)

ResetSnapshotAttributeRequest mocks base method.

func (*MockEC2API) ResetSnapshotAttributeWithContext added in v1.19.0

func (m *MockEC2API) ResetSnapshotAttributeWithContext(arg0 context.Context, arg1 *ec2.ResetSnapshotAttributeInput, arg2 ...request.Option) (*ec2.ResetSnapshotAttributeOutput, error)

ResetSnapshotAttributeWithContext mocks base method.

func (*MockEC2API) RestoreAddressToClassic added in v1.19.0

func (m *MockEC2API) RestoreAddressToClassic(arg0 *ec2.RestoreAddressToClassicInput) (*ec2.RestoreAddressToClassicOutput, error)

RestoreAddressToClassic mocks base method.

func (*MockEC2API) RestoreAddressToClassicRequest added in v1.19.0

func (m *MockEC2API) RestoreAddressToClassicRequest(arg0 *ec2.RestoreAddressToClassicInput) (*request.Request, *ec2.RestoreAddressToClassicOutput)

RestoreAddressToClassicRequest mocks base method.

func (*MockEC2API) RestoreAddressToClassicWithContext added in v1.19.0

func (m *MockEC2API) RestoreAddressToClassicWithContext(arg0 context.Context, arg1 *ec2.RestoreAddressToClassicInput, arg2 ...request.Option) (*ec2.RestoreAddressToClassicOutput, error)

RestoreAddressToClassicWithContext mocks base method.

func (*MockEC2API) RestoreImageFromRecycleBin added in v1.19.0

RestoreImageFromRecycleBin mocks base method.

func (*MockEC2API) RestoreImageFromRecycleBinRequest added in v1.19.0

func (m *MockEC2API) RestoreImageFromRecycleBinRequest(arg0 *ec2.RestoreImageFromRecycleBinInput) (*request.Request, *ec2.RestoreImageFromRecycleBinOutput)

RestoreImageFromRecycleBinRequest mocks base method.

func (*MockEC2API) RestoreImageFromRecycleBinWithContext added in v1.19.0

func (m *MockEC2API) RestoreImageFromRecycleBinWithContext(arg0 context.Context, arg1 *ec2.RestoreImageFromRecycleBinInput, arg2 ...request.Option) (*ec2.RestoreImageFromRecycleBinOutput, error)

RestoreImageFromRecycleBinWithContext mocks base method.

func (*MockEC2API) RestoreManagedPrefixListVersion added in v1.19.0

RestoreManagedPrefixListVersion mocks base method.

func (*MockEC2API) RestoreManagedPrefixListVersionRequest added in v1.19.0

func (m *MockEC2API) RestoreManagedPrefixListVersionRequest(arg0 *ec2.RestoreManagedPrefixListVersionInput) (*request.Request, *ec2.RestoreManagedPrefixListVersionOutput)

RestoreManagedPrefixListVersionRequest mocks base method.

func (*MockEC2API) RestoreManagedPrefixListVersionWithContext added in v1.19.0

func (m *MockEC2API) RestoreManagedPrefixListVersionWithContext(arg0 context.Context, arg1 *ec2.RestoreManagedPrefixListVersionInput, arg2 ...request.Option) (*ec2.RestoreManagedPrefixListVersionOutput, error)

RestoreManagedPrefixListVersionWithContext mocks base method.

func (*MockEC2API) RestoreSnapshotFromRecycleBin added in v1.19.0

RestoreSnapshotFromRecycleBin mocks base method.

func (*MockEC2API) RestoreSnapshotFromRecycleBinRequest added in v1.19.0

func (m *MockEC2API) RestoreSnapshotFromRecycleBinRequest(arg0 *ec2.RestoreSnapshotFromRecycleBinInput) (*request.Request, *ec2.RestoreSnapshotFromRecycleBinOutput)

RestoreSnapshotFromRecycleBinRequest mocks base method.

func (*MockEC2API) RestoreSnapshotFromRecycleBinWithContext added in v1.19.0

func (m *MockEC2API) RestoreSnapshotFromRecycleBinWithContext(arg0 context.Context, arg1 *ec2.RestoreSnapshotFromRecycleBinInput, arg2 ...request.Option) (*ec2.RestoreSnapshotFromRecycleBinOutput, error)

RestoreSnapshotFromRecycleBinWithContext mocks base method.

func (*MockEC2API) RestoreSnapshotTier added in v1.19.0

func (m *MockEC2API) RestoreSnapshotTier(arg0 *ec2.RestoreSnapshotTierInput) (*ec2.RestoreSnapshotTierOutput, error)

RestoreSnapshotTier mocks base method.

func (*MockEC2API) RestoreSnapshotTierRequest added in v1.19.0

func (m *MockEC2API) RestoreSnapshotTierRequest(arg0 *ec2.RestoreSnapshotTierInput) (*request.Request, *ec2.RestoreSnapshotTierOutput)

RestoreSnapshotTierRequest mocks base method.

func (*MockEC2API) RestoreSnapshotTierWithContext added in v1.19.0

func (m *MockEC2API) RestoreSnapshotTierWithContext(arg0 context.Context, arg1 *ec2.RestoreSnapshotTierInput, arg2 ...request.Option) (*ec2.RestoreSnapshotTierOutput, error)

RestoreSnapshotTierWithContext mocks base method.

func (*MockEC2API) RevokeClientVpnIngress added in v1.19.0

func (m *MockEC2API) RevokeClientVpnIngress(arg0 *ec2.RevokeClientVpnIngressInput) (*ec2.RevokeClientVpnIngressOutput, error)

RevokeClientVpnIngress mocks base method.

func (*MockEC2API) RevokeClientVpnIngressRequest added in v1.19.0

func (m *MockEC2API) RevokeClientVpnIngressRequest(arg0 *ec2.RevokeClientVpnIngressInput) (*request.Request, *ec2.RevokeClientVpnIngressOutput)

RevokeClientVpnIngressRequest mocks base method.

func (*MockEC2API) RevokeClientVpnIngressWithContext added in v1.19.0

func (m *MockEC2API) RevokeClientVpnIngressWithContext(arg0 context.Context, arg1 *ec2.RevokeClientVpnIngressInput, arg2 ...request.Option) (*ec2.RevokeClientVpnIngressOutput, error)

RevokeClientVpnIngressWithContext mocks base method.

func (*MockEC2API) RevokeSecurityGroupEgress added in v1.19.0

RevokeSecurityGroupEgress mocks base method.

func (*MockEC2API) RevokeSecurityGroupEgressRequest added in v1.19.0

func (m *MockEC2API) RevokeSecurityGroupEgressRequest(arg0 *ec2.RevokeSecurityGroupEgressInput) (*request.Request, *ec2.RevokeSecurityGroupEgressOutput)

RevokeSecurityGroupEgressRequest mocks base method.

func (*MockEC2API) RevokeSecurityGroupEgressWithContext added in v1.19.0

func (m *MockEC2API) RevokeSecurityGroupEgressWithContext(arg0 context.Context, arg1 *ec2.RevokeSecurityGroupEgressInput, arg2 ...request.Option) (*ec2.RevokeSecurityGroupEgressOutput, error)

RevokeSecurityGroupEgressWithContext mocks base method.

func (*MockEC2API) RevokeSecurityGroupIngress added in v1.19.0

RevokeSecurityGroupIngress mocks base method.

func (*MockEC2API) RevokeSecurityGroupIngressRequest added in v1.19.0

func (m *MockEC2API) RevokeSecurityGroupIngressRequest(arg0 *ec2.RevokeSecurityGroupIngressInput) (*request.Request, *ec2.RevokeSecurityGroupIngressOutput)

RevokeSecurityGroupIngressRequest mocks base method.

func (*MockEC2API) RevokeSecurityGroupIngressWithContext added in v1.19.0

func (m *MockEC2API) RevokeSecurityGroupIngressWithContext(arg0 context.Context, arg1 *ec2.RevokeSecurityGroupIngressInput, arg2 ...request.Option) (*ec2.RevokeSecurityGroupIngressOutput, error)

RevokeSecurityGroupIngressWithContext mocks base method.

func (*MockEC2API) RunInstances added in v1.19.0

func (m *MockEC2API) RunInstances(arg0 *ec2.RunInstancesInput) (*ec2.Reservation, error)

RunInstances mocks base method.

func (*MockEC2API) RunInstancesRequest added in v1.19.0

func (m *MockEC2API) RunInstancesRequest(arg0 *ec2.RunInstancesInput) (*request.Request, *ec2.Reservation)

RunInstancesRequest mocks base method.

func (*MockEC2API) RunInstancesWithContext added in v1.19.0

func (m *MockEC2API) RunInstancesWithContext(arg0 context.Context, arg1 *ec2.RunInstancesInput, arg2 ...request.Option) (*ec2.Reservation, error)

RunInstancesWithContext mocks base method.

func (*MockEC2API) RunScheduledInstances added in v1.19.0

func (m *MockEC2API) RunScheduledInstances(arg0 *ec2.RunScheduledInstancesInput) (*ec2.RunScheduledInstancesOutput, error)

RunScheduledInstances mocks base method.

func (*MockEC2API) RunScheduledInstancesRequest added in v1.19.0

func (m *MockEC2API) RunScheduledInstancesRequest(arg0 *ec2.RunScheduledInstancesInput) (*request.Request, *ec2.RunScheduledInstancesOutput)

RunScheduledInstancesRequest mocks base method.

func (*MockEC2API) RunScheduledInstancesWithContext added in v1.19.0

func (m *MockEC2API) RunScheduledInstancesWithContext(arg0 context.Context, arg1 *ec2.RunScheduledInstancesInput, arg2 ...request.Option) (*ec2.RunScheduledInstancesOutput, error)

RunScheduledInstancesWithContext mocks base method.

func (*MockEC2API) SearchLocalGatewayRoutes added in v1.19.0

SearchLocalGatewayRoutes mocks base method.

func (*MockEC2API) SearchLocalGatewayRoutesPages added in v1.19.0

func (m *MockEC2API) SearchLocalGatewayRoutesPages(arg0 *ec2.SearchLocalGatewayRoutesInput, arg1 func(*ec2.SearchLocalGatewayRoutesOutput, bool) bool) error

SearchLocalGatewayRoutesPages mocks base method.

func (*MockEC2API) SearchLocalGatewayRoutesPagesWithContext added in v1.19.0

func (m *MockEC2API) SearchLocalGatewayRoutesPagesWithContext(arg0 context.Context, arg1 *ec2.SearchLocalGatewayRoutesInput, arg2 func(*ec2.SearchLocalGatewayRoutesOutput, bool) bool, arg3 ...request.Option) error

SearchLocalGatewayRoutesPagesWithContext mocks base method.

func (*MockEC2API) SearchLocalGatewayRoutesRequest added in v1.19.0

func (m *MockEC2API) SearchLocalGatewayRoutesRequest(arg0 *ec2.SearchLocalGatewayRoutesInput) (*request.Request, *ec2.SearchLocalGatewayRoutesOutput)

SearchLocalGatewayRoutesRequest mocks base method.

func (*MockEC2API) SearchLocalGatewayRoutesWithContext added in v1.19.0

func (m *MockEC2API) SearchLocalGatewayRoutesWithContext(arg0 context.Context, arg1 *ec2.SearchLocalGatewayRoutesInput, arg2 ...request.Option) (*ec2.SearchLocalGatewayRoutesOutput, error)

SearchLocalGatewayRoutesWithContext mocks base method.

func (*MockEC2API) SearchTransitGatewayMulticastGroups added in v1.19.0

SearchTransitGatewayMulticastGroups mocks base method.

func (*MockEC2API) SearchTransitGatewayMulticastGroupsPages added in v1.19.0

func (m *MockEC2API) SearchTransitGatewayMulticastGroupsPages(arg0 *ec2.SearchTransitGatewayMulticastGroupsInput, arg1 func(*ec2.SearchTransitGatewayMulticastGroupsOutput, bool) bool) error

SearchTransitGatewayMulticastGroupsPages mocks base method.

func (*MockEC2API) SearchTransitGatewayMulticastGroupsPagesWithContext added in v1.19.0

func (m *MockEC2API) SearchTransitGatewayMulticastGroupsPagesWithContext(arg0 context.Context, arg1 *ec2.SearchTransitGatewayMulticastGroupsInput, arg2 func(*ec2.SearchTransitGatewayMulticastGroupsOutput, bool) bool, arg3 ...request.Option) error

SearchTransitGatewayMulticastGroupsPagesWithContext mocks base method.

func (*MockEC2API) SearchTransitGatewayMulticastGroupsRequest added in v1.19.0

SearchTransitGatewayMulticastGroupsRequest mocks base method.

func (*MockEC2API) SearchTransitGatewayMulticastGroupsWithContext added in v1.19.0

func (m *MockEC2API) SearchTransitGatewayMulticastGroupsWithContext(arg0 context.Context, arg1 *ec2.SearchTransitGatewayMulticastGroupsInput, arg2 ...request.Option) (*ec2.SearchTransitGatewayMulticastGroupsOutput, error)

SearchTransitGatewayMulticastGroupsWithContext mocks base method.

func (*MockEC2API) SearchTransitGatewayRoutes added in v1.19.0

SearchTransitGatewayRoutes mocks base method.

func (*MockEC2API) SearchTransitGatewayRoutesRequest added in v1.19.0

func (m *MockEC2API) SearchTransitGatewayRoutesRequest(arg0 *ec2.SearchTransitGatewayRoutesInput) (*request.Request, *ec2.SearchTransitGatewayRoutesOutput)

SearchTransitGatewayRoutesRequest mocks base method.

func (*MockEC2API) SearchTransitGatewayRoutesWithContext added in v1.19.0

func (m *MockEC2API) SearchTransitGatewayRoutesWithContext(arg0 context.Context, arg1 *ec2.SearchTransitGatewayRoutesInput, arg2 ...request.Option) (*ec2.SearchTransitGatewayRoutesOutput, error)

SearchTransitGatewayRoutesWithContext mocks base method.

func (*MockEC2API) SendDiagnosticInterrupt added in v1.19.0

func (m *MockEC2API) SendDiagnosticInterrupt(arg0 *ec2.SendDiagnosticInterruptInput) (*ec2.SendDiagnosticInterruptOutput, error)

SendDiagnosticInterrupt mocks base method.

func (*MockEC2API) SendDiagnosticInterruptRequest added in v1.19.0

func (m *MockEC2API) SendDiagnosticInterruptRequest(arg0 *ec2.SendDiagnosticInterruptInput) (*request.Request, *ec2.SendDiagnosticInterruptOutput)

SendDiagnosticInterruptRequest mocks base method.

func (*MockEC2API) SendDiagnosticInterruptWithContext added in v1.19.0

func (m *MockEC2API) SendDiagnosticInterruptWithContext(arg0 context.Context, arg1 *ec2.SendDiagnosticInterruptInput, arg2 ...request.Option) (*ec2.SendDiagnosticInterruptOutput, error)

SendDiagnosticInterruptWithContext mocks base method.

func (*MockEC2API) StartInstances added in v1.19.0

func (m *MockEC2API) StartInstances(arg0 *ec2.StartInstancesInput) (*ec2.StartInstancesOutput, error)

StartInstances mocks base method.

func (*MockEC2API) StartInstancesRequest added in v1.19.0

func (m *MockEC2API) StartInstancesRequest(arg0 *ec2.StartInstancesInput) (*request.Request, *ec2.StartInstancesOutput)

StartInstancesRequest mocks base method.

func (*MockEC2API) StartInstancesWithContext added in v1.19.0

func (m *MockEC2API) StartInstancesWithContext(arg0 context.Context, arg1 *ec2.StartInstancesInput, arg2 ...request.Option) (*ec2.StartInstancesOutput, error)

StartInstancesWithContext mocks base method.

func (*MockEC2API) StartNetworkInsightsAccessScopeAnalysis added in v1.19.0

StartNetworkInsightsAccessScopeAnalysis mocks base method.

func (*MockEC2API) StartNetworkInsightsAccessScopeAnalysisRequest added in v1.19.0

StartNetworkInsightsAccessScopeAnalysisRequest mocks base method.

func (*MockEC2API) StartNetworkInsightsAccessScopeAnalysisWithContext added in v1.19.0

func (m *MockEC2API) StartNetworkInsightsAccessScopeAnalysisWithContext(arg0 context.Context, arg1 *ec2.StartNetworkInsightsAccessScopeAnalysisInput, arg2 ...request.Option) (*ec2.StartNetworkInsightsAccessScopeAnalysisOutput, error)

StartNetworkInsightsAccessScopeAnalysisWithContext mocks base method.

func (*MockEC2API) StartNetworkInsightsAnalysis added in v1.19.0

StartNetworkInsightsAnalysis mocks base method.

func (*MockEC2API) StartNetworkInsightsAnalysisRequest added in v1.19.0

func (m *MockEC2API) StartNetworkInsightsAnalysisRequest(arg0 *ec2.StartNetworkInsightsAnalysisInput) (*request.Request, *ec2.StartNetworkInsightsAnalysisOutput)

StartNetworkInsightsAnalysisRequest mocks base method.

func (*MockEC2API) StartNetworkInsightsAnalysisWithContext added in v1.19.0

func (m *MockEC2API) StartNetworkInsightsAnalysisWithContext(arg0 context.Context, arg1 *ec2.StartNetworkInsightsAnalysisInput, arg2 ...request.Option) (*ec2.StartNetworkInsightsAnalysisOutput, error)

StartNetworkInsightsAnalysisWithContext mocks base method.

func (*MockEC2API) StartVpcEndpointServicePrivateDnsVerification added in v1.19.0

StartVpcEndpointServicePrivateDnsVerification mocks base method.

func (*MockEC2API) StartVpcEndpointServicePrivateDnsVerificationRequest added in v1.19.0

StartVpcEndpointServicePrivateDnsVerificationRequest mocks base method.

func (*MockEC2API) StartVpcEndpointServicePrivateDnsVerificationWithContext added in v1.19.0

func (m *MockEC2API) StartVpcEndpointServicePrivateDnsVerificationWithContext(arg0 context.Context, arg1 *ec2.StartVpcEndpointServicePrivateDnsVerificationInput, arg2 ...request.Option) (*ec2.StartVpcEndpointServicePrivateDnsVerificationOutput, error)

StartVpcEndpointServicePrivateDnsVerificationWithContext mocks base method.

func (*MockEC2API) StopInstances added in v1.19.0

func (m *MockEC2API) StopInstances(arg0 *ec2.StopInstancesInput) (*ec2.StopInstancesOutput, error)

StopInstances mocks base method.

func (*MockEC2API) StopInstancesRequest added in v1.19.0

func (m *MockEC2API) StopInstancesRequest(arg0 *ec2.StopInstancesInput) (*request.Request, *ec2.StopInstancesOutput)

StopInstancesRequest mocks base method.

func (*MockEC2API) StopInstancesWithContext added in v1.19.0

func (m *MockEC2API) StopInstancesWithContext(arg0 context.Context, arg1 *ec2.StopInstancesInput, arg2 ...request.Option) (*ec2.StopInstancesOutput, error)

StopInstancesWithContext mocks base method.

func (*MockEC2API) TerminateClientVpnConnections added in v1.19.0

TerminateClientVpnConnections mocks base method.

func (*MockEC2API) TerminateClientVpnConnectionsRequest added in v1.19.0

func (m *MockEC2API) TerminateClientVpnConnectionsRequest(arg0 *ec2.TerminateClientVpnConnectionsInput) (*request.Request, *ec2.TerminateClientVpnConnectionsOutput)

TerminateClientVpnConnectionsRequest mocks base method.

func (*MockEC2API) TerminateClientVpnConnectionsWithContext added in v1.19.0

func (m *MockEC2API) TerminateClientVpnConnectionsWithContext(arg0 context.Context, arg1 *ec2.TerminateClientVpnConnectionsInput, arg2 ...request.Option) (*ec2.TerminateClientVpnConnectionsOutput, error)

TerminateClientVpnConnectionsWithContext mocks base method.

func (*MockEC2API) TerminateInstances added in v1.19.0

func (m *MockEC2API) TerminateInstances(arg0 *ec2.TerminateInstancesInput) (*ec2.TerminateInstancesOutput, error)

TerminateInstances mocks base method.

func (*MockEC2API) TerminateInstancesRequest added in v1.19.0

func (m *MockEC2API) TerminateInstancesRequest(arg0 *ec2.TerminateInstancesInput) (*request.Request, *ec2.TerminateInstancesOutput)

TerminateInstancesRequest mocks base method.

func (*MockEC2API) TerminateInstancesWithContext added in v1.19.0

func (m *MockEC2API) TerminateInstancesWithContext(arg0 context.Context, arg1 *ec2.TerminateInstancesInput, arg2 ...request.Option) (*ec2.TerminateInstancesOutput, error)

TerminateInstancesWithContext mocks base method.

func (*MockEC2API) UnassignIpv6Addresses added in v1.19.0

func (m *MockEC2API) UnassignIpv6Addresses(arg0 *ec2.UnassignIpv6AddressesInput) (*ec2.UnassignIpv6AddressesOutput, error)

UnassignIpv6Addresses mocks base method.

func (*MockEC2API) UnassignIpv6AddressesRequest added in v1.19.0

func (m *MockEC2API) UnassignIpv6AddressesRequest(arg0 *ec2.UnassignIpv6AddressesInput) (*request.Request, *ec2.UnassignIpv6AddressesOutput)

UnassignIpv6AddressesRequest mocks base method.

func (*MockEC2API) UnassignIpv6AddressesWithContext added in v1.19.0

func (m *MockEC2API) UnassignIpv6AddressesWithContext(arg0 context.Context, arg1 *ec2.UnassignIpv6AddressesInput, arg2 ...request.Option) (*ec2.UnassignIpv6AddressesOutput, error)

UnassignIpv6AddressesWithContext mocks base method.

func (*MockEC2API) UnassignPrivateIpAddresses added in v1.19.0

UnassignPrivateIpAddresses mocks base method.

func (*MockEC2API) UnassignPrivateIpAddressesRequest added in v1.19.0

func (m *MockEC2API) UnassignPrivateIpAddressesRequest(arg0 *ec2.UnassignPrivateIpAddressesInput) (*request.Request, *ec2.UnassignPrivateIpAddressesOutput)

UnassignPrivateIpAddressesRequest mocks base method.

func (*MockEC2API) UnassignPrivateIpAddressesWithContext added in v1.19.0

func (m *MockEC2API) UnassignPrivateIpAddressesWithContext(arg0 context.Context, arg1 *ec2.UnassignPrivateIpAddressesInput, arg2 ...request.Option) (*ec2.UnassignPrivateIpAddressesOutput, error)

UnassignPrivateIpAddressesWithContext mocks base method.

func (*MockEC2API) UnassignPrivateNatGatewayAddress added in v1.19.0

UnassignPrivateNatGatewayAddress mocks base method.

func (*MockEC2API) UnassignPrivateNatGatewayAddressRequest added in v1.19.0

func (m *MockEC2API) UnassignPrivateNatGatewayAddressRequest(arg0 *ec2.UnassignPrivateNatGatewayAddressInput) (*request.Request, *ec2.UnassignPrivateNatGatewayAddressOutput)

UnassignPrivateNatGatewayAddressRequest mocks base method.

func (*MockEC2API) UnassignPrivateNatGatewayAddressWithContext added in v1.19.0

func (m *MockEC2API) UnassignPrivateNatGatewayAddressWithContext(arg0 context.Context, arg1 *ec2.UnassignPrivateNatGatewayAddressInput, arg2 ...request.Option) (*ec2.UnassignPrivateNatGatewayAddressOutput, error)

UnassignPrivateNatGatewayAddressWithContext mocks base method.

func (*MockEC2API) UnmonitorInstances added in v1.19.0

func (m *MockEC2API) UnmonitorInstances(arg0 *ec2.UnmonitorInstancesInput) (*ec2.UnmonitorInstancesOutput, error)

UnmonitorInstances mocks base method.

func (*MockEC2API) UnmonitorInstancesRequest added in v1.19.0

func (m *MockEC2API) UnmonitorInstancesRequest(arg0 *ec2.UnmonitorInstancesInput) (*request.Request, *ec2.UnmonitorInstancesOutput)

UnmonitorInstancesRequest mocks base method.

func (*MockEC2API) UnmonitorInstancesWithContext added in v1.19.0

func (m *MockEC2API) UnmonitorInstancesWithContext(arg0 context.Context, arg1 *ec2.UnmonitorInstancesInput, arg2 ...request.Option) (*ec2.UnmonitorInstancesOutput, error)

UnmonitorInstancesWithContext mocks base method.

func (*MockEC2API) UpdateSecurityGroupRuleDescriptionsEgress added in v1.19.0

UpdateSecurityGroupRuleDescriptionsEgress mocks base method.

func (*MockEC2API) UpdateSecurityGroupRuleDescriptionsEgressRequest added in v1.19.0

UpdateSecurityGroupRuleDescriptionsEgressRequest mocks base method.

func (*MockEC2API) UpdateSecurityGroupRuleDescriptionsEgressWithContext added in v1.19.0

func (m *MockEC2API) UpdateSecurityGroupRuleDescriptionsEgressWithContext(arg0 context.Context, arg1 *ec2.UpdateSecurityGroupRuleDescriptionsEgressInput, arg2 ...request.Option) (*ec2.UpdateSecurityGroupRuleDescriptionsEgressOutput, error)

UpdateSecurityGroupRuleDescriptionsEgressWithContext mocks base method.

func (*MockEC2API) UpdateSecurityGroupRuleDescriptionsIngress added in v1.19.0

UpdateSecurityGroupRuleDescriptionsIngress mocks base method.

func (*MockEC2API) UpdateSecurityGroupRuleDescriptionsIngressRequest added in v1.19.0

UpdateSecurityGroupRuleDescriptionsIngressRequest mocks base method.

func (*MockEC2API) UpdateSecurityGroupRuleDescriptionsIngressWithContext added in v1.19.0

func (m *MockEC2API) UpdateSecurityGroupRuleDescriptionsIngressWithContext(arg0 context.Context, arg1 *ec2.UpdateSecurityGroupRuleDescriptionsIngressInput, arg2 ...request.Option) (*ec2.UpdateSecurityGroupRuleDescriptionsIngressOutput, error)

UpdateSecurityGroupRuleDescriptionsIngressWithContext mocks base method.

func (*MockEC2API) WaitUntilBundleTaskComplete added in v1.19.0

func (m *MockEC2API) WaitUntilBundleTaskComplete(arg0 *ec2.DescribeBundleTasksInput) error

WaitUntilBundleTaskComplete mocks base method.

func (*MockEC2API) WaitUntilBundleTaskCompleteWithContext added in v1.19.0

func (m *MockEC2API) WaitUntilBundleTaskCompleteWithContext(arg0 context.Context, arg1 *ec2.DescribeBundleTasksInput, arg2 ...request.WaiterOption) error

WaitUntilBundleTaskCompleteWithContext mocks base method.

func (*MockEC2API) WaitUntilConversionTaskCancelled added in v1.19.0

func (m *MockEC2API) WaitUntilConversionTaskCancelled(arg0 *ec2.DescribeConversionTasksInput) error

WaitUntilConversionTaskCancelled mocks base method.

func (*MockEC2API) WaitUntilConversionTaskCancelledWithContext added in v1.19.0

func (m *MockEC2API) WaitUntilConversionTaskCancelledWithContext(arg0 context.Context, arg1 *ec2.DescribeConversionTasksInput, arg2 ...request.WaiterOption) error

WaitUntilConversionTaskCancelledWithContext mocks base method.

func (*MockEC2API) WaitUntilConversionTaskCompleted added in v1.19.0

func (m *MockEC2API) WaitUntilConversionTaskCompleted(arg0 *ec2.DescribeConversionTasksInput) error

WaitUntilConversionTaskCompleted mocks base method.

func (*MockEC2API) WaitUntilConversionTaskCompletedWithContext added in v1.19.0

func (m *MockEC2API) WaitUntilConversionTaskCompletedWithContext(arg0 context.Context, arg1 *ec2.DescribeConversionTasksInput, arg2 ...request.WaiterOption) error

WaitUntilConversionTaskCompletedWithContext mocks base method.

func (*MockEC2API) WaitUntilConversionTaskDeleted added in v1.19.0

func (m *MockEC2API) WaitUntilConversionTaskDeleted(arg0 *ec2.DescribeConversionTasksInput) error

WaitUntilConversionTaskDeleted mocks base method.

func (*MockEC2API) WaitUntilConversionTaskDeletedWithContext added in v1.19.0

func (m *MockEC2API) WaitUntilConversionTaskDeletedWithContext(arg0 context.Context, arg1 *ec2.DescribeConversionTasksInput, arg2 ...request.WaiterOption) error

WaitUntilConversionTaskDeletedWithContext mocks base method.

func (*MockEC2API) WaitUntilCustomerGatewayAvailable added in v1.19.0

func (m *MockEC2API) WaitUntilCustomerGatewayAvailable(arg0 *ec2.DescribeCustomerGatewaysInput) error

WaitUntilCustomerGatewayAvailable mocks base method.

func (*MockEC2API) WaitUntilCustomerGatewayAvailableWithContext added in v1.19.0

func (m *MockEC2API) WaitUntilCustomerGatewayAvailableWithContext(arg0 context.Context, arg1 *ec2.DescribeCustomerGatewaysInput, arg2 ...request.WaiterOption) error

WaitUntilCustomerGatewayAvailableWithContext mocks base method.

func (*MockEC2API) WaitUntilExportTaskCancelled added in v1.19.0

func (m *MockEC2API) WaitUntilExportTaskCancelled(arg0 *ec2.DescribeExportTasksInput) error

WaitUntilExportTaskCancelled mocks base method.

func (*MockEC2API) WaitUntilExportTaskCancelledWithContext added in v1.19.0

func (m *MockEC2API) WaitUntilExportTaskCancelledWithContext(arg0 context.Context, arg1 *ec2.DescribeExportTasksInput, arg2 ...request.WaiterOption) error

WaitUntilExportTaskCancelledWithContext mocks base method.

func (*MockEC2API) WaitUntilExportTaskCompleted added in v1.19.0

func (m *MockEC2API) WaitUntilExportTaskCompleted(arg0 *ec2.DescribeExportTasksInput) error

WaitUntilExportTaskCompleted mocks base method.

func (*MockEC2API) WaitUntilExportTaskCompletedWithContext added in v1.19.0

func (m *MockEC2API) WaitUntilExportTaskCompletedWithContext(arg0 context.Context, arg1 *ec2.DescribeExportTasksInput, arg2 ...request.WaiterOption) error

WaitUntilExportTaskCompletedWithContext mocks base method.

func (*MockEC2API) WaitUntilImageAvailable added in v1.19.0

func (m *MockEC2API) WaitUntilImageAvailable(arg0 *ec2.DescribeImagesInput) error

WaitUntilImageAvailable mocks base method.

func (*MockEC2API) WaitUntilImageAvailableWithContext added in v1.19.0

func (m *MockEC2API) WaitUntilImageAvailableWithContext(arg0 context.Context, arg1 *ec2.DescribeImagesInput, arg2 ...request.WaiterOption) error

WaitUntilImageAvailableWithContext mocks base method.

func (*MockEC2API) WaitUntilImageExists added in v1.19.0

func (m *MockEC2API) WaitUntilImageExists(arg0 *ec2.DescribeImagesInput) error

WaitUntilImageExists mocks base method.

func (*MockEC2API) WaitUntilImageExistsWithContext added in v1.19.0

func (m *MockEC2API) WaitUntilImageExistsWithContext(arg0 context.Context, arg1 *ec2.DescribeImagesInput, arg2 ...request.WaiterOption) error

WaitUntilImageExistsWithContext mocks base method.

func (*MockEC2API) WaitUntilInstanceExists added in v1.19.0

func (m *MockEC2API) WaitUntilInstanceExists(arg0 *ec2.DescribeInstancesInput) error

WaitUntilInstanceExists mocks base method.

func (*MockEC2API) WaitUntilInstanceExistsWithContext added in v1.19.0

func (m *MockEC2API) WaitUntilInstanceExistsWithContext(arg0 context.Context, arg1 *ec2.DescribeInstancesInput, arg2 ...request.WaiterOption) error

WaitUntilInstanceExistsWithContext mocks base method.

func (*MockEC2API) WaitUntilInstanceRunning added in v1.19.0

func (m *MockEC2API) WaitUntilInstanceRunning(arg0 *ec2.DescribeInstancesInput) error

WaitUntilInstanceRunning mocks base method.

func (*MockEC2API) WaitUntilInstanceRunningWithContext added in v1.19.0

func (m *MockEC2API) WaitUntilInstanceRunningWithContext(arg0 context.Context, arg1 *ec2.DescribeInstancesInput, arg2 ...request.WaiterOption) error

WaitUntilInstanceRunningWithContext mocks base method.

func (*MockEC2API) WaitUntilInstanceStatusOk added in v1.19.0

func (m *MockEC2API) WaitUntilInstanceStatusOk(arg0 *ec2.DescribeInstanceStatusInput) error

WaitUntilInstanceStatusOk mocks base method.

func (*MockEC2API) WaitUntilInstanceStatusOkWithContext added in v1.19.0

func (m *MockEC2API) WaitUntilInstanceStatusOkWithContext(arg0 context.Context, arg1 *ec2.DescribeInstanceStatusInput, arg2 ...request.WaiterOption) error

WaitUntilInstanceStatusOkWithContext mocks base method.

func (*MockEC2API) WaitUntilInstanceStopped added in v1.19.0

func (m *MockEC2API) WaitUntilInstanceStopped(arg0 *ec2.DescribeInstancesInput) error

WaitUntilInstanceStopped mocks base method.

func (*MockEC2API) WaitUntilInstanceStoppedWithContext added in v1.19.0

func (m *MockEC2API) WaitUntilInstanceStoppedWithContext(arg0 context.Context, arg1 *ec2.DescribeInstancesInput, arg2 ...request.WaiterOption) error

WaitUntilInstanceStoppedWithContext mocks base method.

func (*MockEC2API) WaitUntilInstanceTerminated added in v1.19.0

func (m *MockEC2API) WaitUntilInstanceTerminated(arg0 *ec2.DescribeInstancesInput) error

WaitUntilInstanceTerminated mocks base method.

func (*MockEC2API) WaitUntilInstanceTerminatedWithContext added in v1.19.0

func (m *MockEC2API) WaitUntilInstanceTerminatedWithContext(arg0 context.Context, arg1 *ec2.DescribeInstancesInput, arg2 ...request.WaiterOption) error

WaitUntilInstanceTerminatedWithContext mocks base method.

func (*MockEC2API) WaitUntilInternetGatewayExists added in v1.19.0

func (m *MockEC2API) WaitUntilInternetGatewayExists(arg0 *ec2.DescribeInternetGatewaysInput) error

WaitUntilInternetGatewayExists mocks base method.

func (*MockEC2API) WaitUntilInternetGatewayExistsWithContext added in v1.19.0

func (m *MockEC2API) WaitUntilInternetGatewayExistsWithContext(arg0 context.Context, arg1 *ec2.DescribeInternetGatewaysInput, arg2 ...request.WaiterOption) error

WaitUntilInternetGatewayExistsWithContext mocks base method.

func (*MockEC2API) WaitUntilKeyPairExists added in v1.19.0

func (m *MockEC2API) WaitUntilKeyPairExists(arg0 *ec2.DescribeKeyPairsInput) error

WaitUntilKeyPairExists mocks base method.

func (*MockEC2API) WaitUntilKeyPairExistsWithContext added in v1.19.0

func (m *MockEC2API) WaitUntilKeyPairExistsWithContext(arg0 context.Context, arg1 *ec2.DescribeKeyPairsInput, arg2 ...request.WaiterOption) error

WaitUntilKeyPairExistsWithContext mocks base method.

func (*MockEC2API) WaitUntilNatGatewayAvailable added in v1.19.0

func (m *MockEC2API) WaitUntilNatGatewayAvailable(arg0 *ec2.DescribeNatGatewaysInput) error

WaitUntilNatGatewayAvailable mocks base method.

func (*MockEC2API) WaitUntilNatGatewayAvailableWithContext added in v1.19.0

func (m *MockEC2API) WaitUntilNatGatewayAvailableWithContext(arg0 context.Context, arg1 *ec2.DescribeNatGatewaysInput, arg2 ...request.WaiterOption) error

WaitUntilNatGatewayAvailableWithContext mocks base method.

func (*MockEC2API) WaitUntilNatGatewayDeleted added in v1.19.0

func (m *MockEC2API) WaitUntilNatGatewayDeleted(arg0 *ec2.DescribeNatGatewaysInput) error

WaitUntilNatGatewayDeleted mocks base method.

func (*MockEC2API) WaitUntilNatGatewayDeletedWithContext added in v1.19.0

func (m *MockEC2API) WaitUntilNatGatewayDeletedWithContext(arg0 context.Context, arg1 *ec2.DescribeNatGatewaysInput, arg2 ...request.WaiterOption) error

WaitUntilNatGatewayDeletedWithContext mocks base method.

func (*MockEC2API) WaitUntilNetworkInterfaceAvailable added in v1.19.0

func (m *MockEC2API) WaitUntilNetworkInterfaceAvailable(arg0 *ec2.DescribeNetworkInterfacesInput) error

WaitUntilNetworkInterfaceAvailable mocks base method.

func (*MockEC2API) WaitUntilNetworkInterfaceAvailableWithContext added in v1.19.0

func (m *MockEC2API) WaitUntilNetworkInterfaceAvailableWithContext(arg0 context.Context, arg1 *ec2.DescribeNetworkInterfacesInput, arg2 ...request.WaiterOption) error

WaitUntilNetworkInterfaceAvailableWithContext mocks base method.

func (*MockEC2API) WaitUntilPasswordDataAvailable added in v1.19.0

func (m *MockEC2API) WaitUntilPasswordDataAvailable(arg0 *ec2.GetPasswordDataInput) error

WaitUntilPasswordDataAvailable mocks base method.

func (*MockEC2API) WaitUntilPasswordDataAvailableWithContext added in v1.19.0

func (m *MockEC2API) WaitUntilPasswordDataAvailableWithContext(arg0 context.Context, arg1 *ec2.GetPasswordDataInput, arg2 ...request.WaiterOption) error

WaitUntilPasswordDataAvailableWithContext mocks base method.

func (*MockEC2API) WaitUntilSecurityGroupExists added in v1.19.0

func (m *MockEC2API) WaitUntilSecurityGroupExists(arg0 *ec2.DescribeSecurityGroupsInput) error

WaitUntilSecurityGroupExists mocks base method.

func (*MockEC2API) WaitUntilSecurityGroupExistsWithContext added in v1.19.0

func (m *MockEC2API) WaitUntilSecurityGroupExistsWithContext(arg0 context.Context, arg1 *ec2.DescribeSecurityGroupsInput, arg2 ...request.WaiterOption) error

WaitUntilSecurityGroupExistsWithContext mocks base method.

func (*MockEC2API) WaitUntilSnapshotCompleted added in v1.19.0

func (m *MockEC2API) WaitUntilSnapshotCompleted(arg0 *ec2.DescribeSnapshotsInput) error

WaitUntilSnapshotCompleted mocks base method.

func (*MockEC2API) WaitUntilSnapshotCompletedWithContext added in v1.19.0

func (m *MockEC2API) WaitUntilSnapshotCompletedWithContext(arg0 context.Context, arg1 *ec2.DescribeSnapshotsInput, arg2 ...request.WaiterOption) error

WaitUntilSnapshotCompletedWithContext mocks base method.

func (*MockEC2API) WaitUntilSnapshotImported added in v1.19.0

func (m *MockEC2API) WaitUntilSnapshotImported(arg0 *ec2.DescribeImportSnapshotTasksInput) error

WaitUntilSnapshotImported mocks base method.

func (*MockEC2API) WaitUntilSnapshotImportedWithContext added in v1.19.0

func (m *MockEC2API) WaitUntilSnapshotImportedWithContext(arg0 context.Context, arg1 *ec2.DescribeImportSnapshotTasksInput, arg2 ...request.WaiterOption) error

WaitUntilSnapshotImportedWithContext mocks base method.

func (*MockEC2API) WaitUntilSpotInstanceRequestFulfilled added in v1.19.0

func (m *MockEC2API) WaitUntilSpotInstanceRequestFulfilled(arg0 *ec2.DescribeSpotInstanceRequestsInput) error

WaitUntilSpotInstanceRequestFulfilled mocks base method.

func (*MockEC2API) WaitUntilSpotInstanceRequestFulfilledWithContext added in v1.19.0

func (m *MockEC2API) WaitUntilSpotInstanceRequestFulfilledWithContext(arg0 context.Context, arg1 *ec2.DescribeSpotInstanceRequestsInput, arg2 ...request.WaiterOption) error

WaitUntilSpotInstanceRequestFulfilledWithContext mocks base method.

func (*MockEC2API) WaitUntilStoreImageTaskComplete added in v1.22.0

func (m *MockEC2API) WaitUntilStoreImageTaskComplete(arg0 *ec2.DescribeStoreImageTasksInput) error

WaitUntilStoreImageTaskComplete mocks base method.

func (*MockEC2API) WaitUntilStoreImageTaskCompleteWithContext added in v1.22.0

func (m *MockEC2API) WaitUntilStoreImageTaskCompleteWithContext(arg0 context.Context, arg1 *ec2.DescribeStoreImageTasksInput, arg2 ...request.WaiterOption) error

WaitUntilStoreImageTaskCompleteWithContext mocks base method.

func (*MockEC2API) WaitUntilSubnetAvailable added in v1.19.0

func (m *MockEC2API) WaitUntilSubnetAvailable(arg0 *ec2.DescribeSubnetsInput) error

WaitUntilSubnetAvailable mocks base method.

func (*MockEC2API) WaitUntilSubnetAvailableWithContext added in v1.19.0

func (m *MockEC2API) WaitUntilSubnetAvailableWithContext(arg0 context.Context, arg1 *ec2.DescribeSubnetsInput, arg2 ...request.WaiterOption) error

WaitUntilSubnetAvailableWithContext mocks base method.

func (*MockEC2API) WaitUntilSystemStatusOk added in v1.19.0

func (m *MockEC2API) WaitUntilSystemStatusOk(arg0 *ec2.DescribeInstanceStatusInput) error

WaitUntilSystemStatusOk mocks base method.

func (*MockEC2API) WaitUntilSystemStatusOkWithContext added in v1.19.0

func (m *MockEC2API) WaitUntilSystemStatusOkWithContext(arg0 context.Context, arg1 *ec2.DescribeInstanceStatusInput, arg2 ...request.WaiterOption) error

WaitUntilSystemStatusOkWithContext mocks base method.

func (*MockEC2API) WaitUntilVolumeAvailable added in v1.19.0

func (m *MockEC2API) WaitUntilVolumeAvailable(arg0 *ec2.DescribeVolumesInput) error

WaitUntilVolumeAvailable mocks base method.

func (*MockEC2API) WaitUntilVolumeAvailableWithContext added in v1.19.0

func (m *MockEC2API) WaitUntilVolumeAvailableWithContext(arg0 context.Context, arg1 *ec2.DescribeVolumesInput, arg2 ...request.WaiterOption) error

WaitUntilVolumeAvailableWithContext mocks base method.

func (*MockEC2API) WaitUntilVolumeDeleted added in v1.19.0

func (m *MockEC2API) WaitUntilVolumeDeleted(arg0 *ec2.DescribeVolumesInput) error

WaitUntilVolumeDeleted mocks base method.

func (*MockEC2API) WaitUntilVolumeDeletedWithContext added in v1.19.0

func (m *MockEC2API) WaitUntilVolumeDeletedWithContext(arg0 context.Context, arg1 *ec2.DescribeVolumesInput, arg2 ...request.WaiterOption) error

WaitUntilVolumeDeletedWithContext mocks base method.

func (*MockEC2API) WaitUntilVolumeInUse added in v1.19.0

func (m *MockEC2API) WaitUntilVolumeInUse(arg0 *ec2.DescribeVolumesInput) error

WaitUntilVolumeInUse mocks base method.

func (*MockEC2API) WaitUntilVolumeInUseWithContext added in v1.19.0

func (m *MockEC2API) WaitUntilVolumeInUseWithContext(arg0 context.Context, arg1 *ec2.DescribeVolumesInput, arg2 ...request.WaiterOption) error

WaitUntilVolumeInUseWithContext mocks base method.

func (*MockEC2API) WaitUntilVpcAvailable added in v1.19.0

func (m *MockEC2API) WaitUntilVpcAvailable(arg0 *ec2.DescribeVpcsInput) error

WaitUntilVpcAvailable mocks base method.

func (*MockEC2API) WaitUntilVpcAvailableWithContext added in v1.19.0

func (m *MockEC2API) WaitUntilVpcAvailableWithContext(arg0 context.Context, arg1 *ec2.DescribeVpcsInput, arg2 ...request.WaiterOption) error

WaitUntilVpcAvailableWithContext mocks base method.

func (*MockEC2API) WaitUntilVpcExists added in v1.19.0

func (m *MockEC2API) WaitUntilVpcExists(arg0 *ec2.DescribeVpcsInput) error

WaitUntilVpcExists mocks base method.

func (*MockEC2API) WaitUntilVpcExistsWithContext added in v1.19.0

func (m *MockEC2API) WaitUntilVpcExistsWithContext(arg0 context.Context, arg1 *ec2.DescribeVpcsInput, arg2 ...request.WaiterOption) error

WaitUntilVpcExistsWithContext mocks base method.

func (*MockEC2API) WaitUntilVpcPeeringConnectionDeleted added in v1.19.0

func (m *MockEC2API) WaitUntilVpcPeeringConnectionDeleted(arg0 *ec2.DescribeVpcPeeringConnectionsInput) error

WaitUntilVpcPeeringConnectionDeleted mocks base method.

func (*MockEC2API) WaitUntilVpcPeeringConnectionDeletedWithContext added in v1.19.0

func (m *MockEC2API) WaitUntilVpcPeeringConnectionDeletedWithContext(arg0 context.Context, arg1 *ec2.DescribeVpcPeeringConnectionsInput, arg2 ...request.WaiterOption) error

WaitUntilVpcPeeringConnectionDeletedWithContext mocks base method.

func (*MockEC2API) WaitUntilVpcPeeringConnectionExists added in v1.19.0

func (m *MockEC2API) WaitUntilVpcPeeringConnectionExists(arg0 *ec2.DescribeVpcPeeringConnectionsInput) error

WaitUntilVpcPeeringConnectionExists mocks base method.

func (*MockEC2API) WaitUntilVpcPeeringConnectionExistsWithContext added in v1.19.0

func (m *MockEC2API) WaitUntilVpcPeeringConnectionExistsWithContext(arg0 context.Context, arg1 *ec2.DescribeVpcPeeringConnectionsInput, arg2 ...request.WaiterOption) error

WaitUntilVpcPeeringConnectionExistsWithContext mocks base method.

func (*MockEC2API) WaitUntilVpnConnectionAvailable added in v1.19.0

func (m *MockEC2API) WaitUntilVpnConnectionAvailable(arg0 *ec2.DescribeVpnConnectionsInput) error

WaitUntilVpnConnectionAvailable mocks base method.

func (*MockEC2API) WaitUntilVpnConnectionAvailableWithContext added in v1.19.0

func (m *MockEC2API) WaitUntilVpnConnectionAvailableWithContext(arg0 context.Context, arg1 *ec2.DescribeVpnConnectionsInput, arg2 ...request.WaiterOption) error

WaitUntilVpnConnectionAvailableWithContext mocks base method.

func (*MockEC2API) WaitUntilVpnConnectionDeleted added in v1.19.0

func (m *MockEC2API) WaitUntilVpnConnectionDeleted(arg0 *ec2.DescribeVpnConnectionsInput) error

WaitUntilVpnConnectionDeleted mocks base method.

func (*MockEC2API) WaitUntilVpnConnectionDeletedWithContext added in v1.19.0

func (m *MockEC2API) WaitUntilVpnConnectionDeletedWithContext(arg0 context.Context, arg1 *ec2.DescribeVpnConnectionsInput, arg2 ...request.WaiterOption) error

WaitUntilVpnConnectionDeletedWithContext mocks base method.

func (*MockEC2API) WithdrawByoipCidr added in v1.19.0

func (m *MockEC2API) WithdrawByoipCidr(arg0 *ec2.WithdrawByoipCidrInput) (*ec2.WithdrawByoipCidrOutput, error)

WithdrawByoipCidr mocks base method.

func (*MockEC2API) WithdrawByoipCidrRequest added in v1.19.0

func (m *MockEC2API) WithdrawByoipCidrRequest(arg0 *ec2.WithdrawByoipCidrInput) (*request.Request, *ec2.WithdrawByoipCidrOutput)

WithdrawByoipCidrRequest mocks base method.

func (*MockEC2API) WithdrawByoipCidrWithContext added in v1.19.0

func (m *MockEC2API) WithdrawByoipCidrWithContext(arg0 context.Context, arg1 *ec2.WithdrawByoipCidrInput, arg2 ...request.Option) (*ec2.WithdrawByoipCidrOutput, error)

WithdrawByoipCidrWithContext mocks base method.

type MockEC2APIMockRecorder added in v1.19.0

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

MockEC2APIMockRecorder is the mock recorder for MockEC2API.

func (*MockEC2APIMockRecorder) AcceptAddressTransfer added in v1.19.0

func (mr *MockEC2APIMockRecorder) AcceptAddressTransfer(arg0 interface{}) *gomock.Call

AcceptAddressTransfer indicates an expected call of AcceptAddressTransfer.

func (*MockEC2APIMockRecorder) AcceptAddressTransferRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) AcceptAddressTransferRequest(arg0 interface{}) *gomock.Call

AcceptAddressTransferRequest indicates an expected call of AcceptAddressTransferRequest.

func (*MockEC2APIMockRecorder) AcceptAddressTransferWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) AcceptAddressTransferWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

AcceptAddressTransferWithContext indicates an expected call of AcceptAddressTransferWithContext.

func (*MockEC2APIMockRecorder) AcceptReservedInstancesExchangeQuote added in v1.19.0

func (mr *MockEC2APIMockRecorder) AcceptReservedInstancesExchangeQuote(arg0 interface{}) *gomock.Call

AcceptReservedInstancesExchangeQuote indicates an expected call of AcceptReservedInstancesExchangeQuote.

func (*MockEC2APIMockRecorder) AcceptReservedInstancesExchangeQuoteRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) AcceptReservedInstancesExchangeQuoteRequest(arg0 interface{}) *gomock.Call

AcceptReservedInstancesExchangeQuoteRequest indicates an expected call of AcceptReservedInstancesExchangeQuoteRequest.

func (*MockEC2APIMockRecorder) AcceptReservedInstancesExchangeQuoteWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) AcceptReservedInstancesExchangeQuoteWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

AcceptReservedInstancesExchangeQuoteWithContext indicates an expected call of AcceptReservedInstancesExchangeQuoteWithContext.

func (*MockEC2APIMockRecorder) AcceptTransitGatewayMulticastDomainAssociations added in v1.19.0

func (mr *MockEC2APIMockRecorder) AcceptTransitGatewayMulticastDomainAssociations(arg0 interface{}) *gomock.Call

AcceptTransitGatewayMulticastDomainAssociations indicates an expected call of AcceptTransitGatewayMulticastDomainAssociations.

func (*MockEC2APIMockRecorder) AcceptTransitGatewayMulticastDomainAssociationsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) AcceptTransitGatewayMulticastDomainAssociationsRequest(arg0 interface{}) *gomock.Call

AcceptTransitGatewayMulticastDomainAssociationsRequest indicates an expected call of AcceptTransitGatewayMulticastDomainAssociationsRequest.

func (*MockEC2APIMockRecorder) AcceptTransitGatewayMulticastDomainAssociationsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) AcceptTransitGatewayMulticastDomainAssociationsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

AcceptTransitGatewayMulticastDomainAssociationsWithContext indicates an expected call of AcceptTransitGatewayMulticastDomainAssociationsWithContext.

func (*MockEC2APIMockRecorder) AcceptTransitGatewayPeeringAttachment added in v1.19.0

func (mr *MockEC2APIMockRecorder) AcceptTransitGatewayPeeringAttachment(arg0 interface{}) *gomock.Call

AcceptTransitGatewayPeeringAttachment indicates an expected call of AcceptTransitGatewayPeeringAttachment.

func (*MockEC2APIMockRecorder) AcceptTransitGatewayPeeringAttachmentRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) AcceptTransitGatewayPeeringAttachmentRequest(arg0 interface{}) *gomock.Call

AcceptTransitGatewayPeeringAttachmentRequest indicates an expected call of AcceptTransitGatewayPeeringAttachmentRequest.

func (*MockEC2APIMockRecorder) AcceptTransitGatewayPeeringAttachmentWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) AcceptTransitGatewayPeeringAttachmentWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

AcceptTransitGatewayPeeringAttachmentWithContext indicates an expected call of AcceptTransitGatewayPeeringAttachmentWithContext.

func (*MockEC2APIMockRecorder) AcceptTransitGatewayVpcAttachment added in v1.19.0

func (mr *MockEC2APIMockRecorder) AcceptTransitGatewayVpcAttachment(arg0 interface{}) *gomock.Call

AcceptTransitGatewayVpcAttachment indicates an expected call of AcceptTransitGatewayVpcAttachment.

func (*MockEC2APIMockRecorder) AcceptTransitGatewayVpcAttachmentRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) AcceptTransitGatewayVpcAttachmentRequest(arg0 interface{}) *gomock.Call

AcceptTransitGatewayVpcAttachmentRequest indicates an expected call of AcceptTransitGatewayVpcAttachmentRequest.

func (*MockEC2APIMockRecorder) AcceptTransitGatewayVpcAttachmentWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) AcceptTransitGatewayVpcAttachmentWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

AcceptTransitGatewayVpcAttachmentWithContext indicates an expected call of AcceptTransitGatewayVpcAttachmentWithContext.

func (*MockEC2APIMockRecorder) AcceptVpcEndpointConnections added in v1.19.0

func (mr *MockEC2APIMockRecorder) AcceptVpcEndpointConnections(arg0 interface{}) *gomock.Call

AcceptVpcEndpointConnections indicates an expected call of AcceptVpcEndpointConnections.

func (*MockEC2APIMockRecorder) AcceptVpcEndpointConnectionsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) AcceptVpcEndpointConnectionsRequest(arg0 interface{}) *gomock.Call

AcceptVpcEndpointConnectionsRequest indicates an expected call of AcceptVpcEndpointConnectionsRequest.

func (*MockEC2APIMockRecorder) AcceptVpcEndpointConnectionsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) AcceptVpcEndpointConnectionsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

AcceptVpcEndpointConnectionsWithContext indicates an expected call of AcceptVpcEndpointConnectionsWithContext.

func (*MockEC2APIMockRecorder) AcceptVpcPeeringConnection added in v1.19.0

func (mr *MockEC2APIMockRecorder) AcceptVpcPeeringConnection(arg0 interface{}) *gomock.Call

AcceptVpcPeeringConnection indicates an expected call of AcceptVpcPeeringConnection.

func (*MockEC2APIMockRecorder) AcceptVpcPeeringConnectionRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) AcceptVpcPeeringConnectionRequest(arg0 interface{}) *gomock.Call

AcceptVpcPeeringConnectionRequest indicates an expected call of AcceptVpcPeeringConnectionRequest.

func (*MockEC2APIMockRecorder) AcceptVpcPeeringConnectionWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) AcceptVpcPeeringConnectionWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

AcceptVpcPeeringConnectionWithContext indicates an expected call of AcceptVpcPeeringConnectionWithContext.

func (*MockEC2APIMockRecorder) AdvertiseByoipCidr added in v1.19.0

func (mr *MockEC2APIMockRecorder) AdvertiseByoipCidr(arg0 interface{}) *gomock.Call

AdvertiseByoipCidr indicates an expected call of AdvertiseByoipCidr.

func (*MockEC2APIMockRecorder) AdvertiseByoipCidrRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) AdvertiseByoipCidrRequest(arg0 interface{}) *gomock.Call

AdvertiseByoipCidrRequest indicates an expected call of AdvertiseByoipCidrRequest.

func (*MockEC2APIMockRecorder) AdvertiseByoipCidrWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) AdvertiseByoipCidrWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

AdvertiseByoipCidrWithContext indicates an expected call of AdvertiseByoipCidrWithContext.

func (*MockEC2APIMockRecorder) AllocateAddress added in v1.19.0

func (mr *MockEC2APIMockRecorder) AllocateAddress(arg0 interface{}) *gomock.Call

AllocateAddress indicates an expected call of AllocateAddress.

func (*MockEC2APIMockRecorder) AllocateAddressRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) AllocateAddressRequest(arg0 interface{}) *gomock.Call

AllocateAddressRequest indicates an expected call of AllocateAddressRequest.

func (*MockEC2APIMockRecorder) AllocateAddressWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) AllocateAddressWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

AllocateAddressWithContext indicates an expected call of AllocateAddressWithContext.

func (*MockEC2APIMockRecorder) AllocateHosts added in v1.19.0

func (mr *MockEC2APIMockRecorder) AllocateHosts(arg0 interface{}) *gomock.Call

AllocateHosts indicates an expected call of AllocateHosts.

func (*MockEC2APIMockRecorder) AllocateHostsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) AllocateHostsRequest(arg0 interface{}) *gomock.Call

AllocateHostsRequest indicates an expected call of AllocateHostsRequest.

func (*MockEC2APIMockRecorder) AllocateHostsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) AllocateHostsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

AllocateHostsWithContext indicates an expected call of AllocateHostsWithContext.

func (*MockEC2APIMockRecorder) AllocateIpamPoolCidr added in v1.19.0

func (mr *MockEC2APIMockRecorder) AllocateIpamPoolCidr(arg0 interface{}) *gomock.Call

AllocateIpamPoolCidr indicates an expected call of AllocateIpamPoolCidr.

func (*MockEC2APIMockRecorder) AllocateIpamPoolCidrRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) AllocateIpamPoolCidrRequest(arg0 interface{}) *gomock.Call

AllocateIpamPoolCidrRequest indicates an expected call of AllocateIpamPoolCidrRequest.

func (*MockEC2APIMockRecorder) AllocateIpamPoolCidrWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) AllocateIpamPoolCidrWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

AllocateIpamPoolCidrWithContext indicates an expected call of AllocateIpamPoolCidrWithContext.

func (*MockEC2APIMockRecorder) ApplySecurityGroupsToClientVpnTargetNetwork added in v1.19.0

func (mr *MockEC2APIMockRecorder) ApplySecurityGroupsToClientVpnTargetNetwork(arg0 interface{}) *gomock.Call

ApplySecurityGroupsToClientVpnTargetNetwork indicates an expected call of ApplySecurityGroupsToClientVpnTargetNetwork.

func (*MockEC2APIMockRecorder) ApplySecurityGroupsToClientVpnTargetNetworkRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ApplySecurityGroupsToClientVpnTargetNetworkRequest(arg0 interface{}) *gomock.Call

ApplySecurityGroupsToClientVpnTargetNetworkRequest indicates an expected call of ApplySecurityGroupsToClientVpnTargetNetworkRequest.

func (*MockEC2APIMockRecorder) ApplySecurityGroupsToClientVpnTargetNetworkWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ApplySecurityGroupsToClientVpnTargetNetworkWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ApplySecurityGroupsToClientVpnTargetNetworkWithContext indicates an expected call of ApplySecurityGroupsToClientVpnTargetNetworkWithContext.

func (*MockEC2APIMockRecorder) AssignIpv6Addresses added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssignIpv6Addresses(arg0 interface{}) *gomock.Call

AssignIpv6Addresses indicates an expected call of AssignIpv6Addresses.

func (*MockEC2APIMockRecorder) AssignIpv6AddressesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssignIpv6AddressesRequest(arg0 interface{}) *gomock.Call

AssignIpv6AddressesRequest indicates an expected call of AssignIpv6AddressesRequest.

func (*MockEC2APIMockRecorder) AssignIpv6AddressesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssignIpv6AddressesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

AssignIpv6AddressesWithContext indicates an expected call of AssignIpv6AddressesWithContext.

func (*MockEC2APIMockRecorder) AssignPrivateIpAddresses added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssignPrivateIpAddresses(arg0 interface{}) *gomock.Call

AssignPrivateIpAddresses indicates an expected call of AssignPrivateIpAddresses.

func (*MockEC2APIMockRecorder) AssignPrivateIpAddressesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssignPrivateIpAddressesRequest(arg0 interface{}) *gomock.Call

AssignPrivateIpAddressesRequest indicates an expected call of AssignPrivateIpAddressesRequest.

func (*MockEC2APIMockRecorder) AssignPrivateIpAddressesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssignPrivateIpAddressesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

AssignPrivateIpAddressesWithContext indicates an expected call of AssignPrivateIpAddressesWithContext.

func (*MockEC2APIMockRecorder) AssignPrivateNatGatewayAddress added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssignPrivateNatGatewayAddress(arg0 interface{}) *gomock.Call

AssignPrivateNatGatewayAddress indicates an expected call of AssignPrivateNatGatewayAddress.

func (*MockEC2APIMockRecorder) AssignPrivateNatGatewayAddressRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssignPrivateNatGatewayAddressRequest(arg0 interface{}) *gomock.Call

AssignPrivateNatGatewayAddressRequest indicates an expected call of AssignPrivateNatGatewayAddressRequest.

func (*MockEC2APIMockRecorder) AssignPrivateNatGatewayAddressWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssignPrivateNatGatewayAddressWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

AssignPrivateNatGatewayAddressWithContext indicates an expected call of AssignPrivateNatGatewayAddressWithContext.

func (*MockEC2APIMockRecorder) AssociateAddress added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssociateAddress(arg0 interface{}) *gomock.Call

AssociateAddress indicates an expected call of AssociateAddress.

func (*MockEC2APIMockRecorder) AssociateAddressRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssociateAddressRequest(arg0 interface{}) *gomock.Call

AssociateAddressRequest indicates an expected call of AssociateAddressRequest.

func (*MockEC2APIMockRecorder) AssociateAddressWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssociateAddressWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

AssociateAddressWithContext indicates an expected call of AssociateAddressWithContext.

func (*MockEC2APIMockRecorder) AssociateClientVpnTargetNetwork added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssociateClientVpnTargetNetwork(arg0 interface{}) *gomock.Call

AssociateClientVpnTargetNetwork indicates an expected call of AssociateClientVpnTargetNetwork.

func (*MockEC2APIMockRecorder) AssociateClientVpnTargetNetworkRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssociateClientVpnTargetNetworkRequest(arg0 interface{}) *gomock.Call

AssociateClientVpnTargetNetworkRequest indicates an expected call of AssociateClientVpnTargetNetworkRequest.

func (*MockEC2APIMockRecorder) AssociateClientVpnTargetNetworkWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssociateClientVpnTargetNetworkWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

AssociateClientVpnTargetNetworkWithContext indicates an expected call of AssociateClientVpnTargetNetworkWithContext.

func (*MockEC2APIMockRecorder) AssociateDhcpOptions added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssociateDhcpOptions(arg0 interface{}) *gomock.Call

AssociateDhcpOptions indicates an expected call of AssociateDhcpOptions.

func (*MockEC2APIMockRecorder) AssociateDhcpOptionsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssociateDhcpOptionsRequest(arg0 interface{}) *gomock.Call

AssociateDhcpOptionsRequest indicates an expected call of AssociateDhcpOptionsRequest.

func (*MockEC2APIMockRecorder) AssociateDhcpOptionsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssociateDhcpOptionsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

AssociateDhcpOptionsWithContext indicates an expected call of AssociateDhcpOptionsWithContext.

func (*MockEC2APIMockRecorder) AssociateEnclaveCertificateIamRole added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssociateEnclaveCertificateIamRole(arg0 interface{}) *gomock.Call

AssociateEnclaveCertificateIamRole indicates an expected call of AssociateEnclaveCertificateIamRole.

func (*MockEC2APIMockRecorder) AssociateEnclaveCertificateIamRoleRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssociateEnclaveCertificateIamRoleRequest(arg0 interface{}) *gomock.Call

AssociateEnclaveCertificateIamRoleRequest indicates an expected call of AssociateEnclaveCertificateIamRoleRequest.

func (*MockEC2APIMockRecorder) AssociateEnclaveCertificateIamRoleWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssociateEnclaveCertificateIamRoleWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

AssociateEnclaveCertificateIamRoleWithContext indicates an expected call of AssociateEnclaveCertificateIamRoleWithContext.

func (*MockEC2APIMockRecorder) AssociateIamInstanceProfile added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssociateIamInstanceProfile(arg0 interface{}) *gomock.Call

AssociateIamInstanceProfile indicates an expected call of AssociateIamInstanceProfile.

func (*MockEC2APIMockRecorder) AssociateIamInstanceProfileRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssociateIamInstanceProfileRequest(arg0 interface{}) *gomock.Call

AssociateIamInstanceProfileRequest indicates an expected call of AssociateIamInstanceProfileRequest.

func (*MockEC2APIMockRecorder) AssociateIamInstanceProfileWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssociateIamInstanceProfileWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

AssociateIamInstanceProfileWithContext indicates an expected call of AssociateIamInstanceProfileWithContext.

func (*MockEC2APIMockRecorder) AssociateInstanceEventWindow added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssociateInstanceEventWindow(arg0 interface{}) *gomock.Call

AssociateInstanceEventWindow indicates an expected call of AssociateInstanceEventWindow.

func (*MockEC2APIMockRecorder) AssociateInstanceEventWindowRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssociateInstanceEventWindowRequest(arg0 interface{}) *gomock.Call

AssociateInstanceEventWindowRequest indicates an expected call of AssociateInstanceEventWindowRequest.

func (*MockEC2APIMockRecorder) AssociateInstanceEventWindowWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssociateInstanceEventWindowWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

AssociateInstanceEventWindowWithContext indicates an expected call of AssociateInstanceEventWindowWithContext.

func (*MockEC2APIMockRecorder) AssociateIpamResourceDiscovery added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssociateIpamResourceDiscovery(arg0 interface{}) *gomock.Call

AssociateIpamResourceDiscovery indicates an expected call of AssociateIpamResourceDiscovery.

func (*MockEC2APIMockRecorder) AssociateIpamResourceDiscoveryRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssociateIpamResourceDiscoveryRequest(arg0 interface{}) *gomock.Call

AssociateIpamResourceDiscoveryRequest indicates an expected call of AssociateIpamResourceDiscoveryRequest.

func (*MockEC2APIMockRecorder) AssociateIpamResourceDiscoveryWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssociateIpamResourceDiscoveryWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

AssociateIpamResourceDiscoveryWithContext indicates an expected call of AssociateIpamResourceDiscoveryWithContext.

func (*MockEC2APIMockRecorder) AssociateNatGatewayAddress added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssociateNatGatewayAddress(arg0 interface{}) *gomock.Call

AssociateNatGatewayAddress indicates an expected call of AssociateNatGatewayAddress.

func (*MockEC2APIMockRecorder) AssociateNatGatewayAddressRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssociateNatGatewayAddressRequest(arg0 interface{}) *gomock.Call

AssociateNatGatewayAddressRequest indicates an expected call of AssociateNatGatewayAddressRequest.

func (*MockEC2APIMockRecorder) AssociateNatGatewayAddressWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssociateNatGatewayAddressWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

AssociateNatGatewayAddressWithContext indicates an expected call of AssociateNatGatewayAddressWithContext.

func (*MockEC2APIMockRecorder) AssociateRouteTable added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssociateRouteTable(arg0 interface{}) *gomock.Call

AssociateRouteTable indicates an expected call of AssociateRouteTable.

func (*MockEC2APIMockRecorder) AssociateRouteTableRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssociateRouteTableRequest(arg0 interface{}) *gomock.Call

AssociateRouteTableRequest indicates an expected call of AssociateRouteTableRequest.

func (*MockEC2APIMockRecorder) AssociateRouteTableWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssociateRouteTableWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

AssociateRouteTableWithContext indicates an expected call of AssociateRouteTableWithContext.

func (*MockEC2APIMockRecorder) AssociateSubnetCidrBlock added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssociateSubnetCidrBlock(arg0 interface{}) *gomock.Call

AssociateSubnetCidrBlock indicates an expected call of AssociateSubnetCidrBlock.

func (*MockEC2APIMockRecorder) AssociateSubnetCidrBlockRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssociateSubnetCidrBlockRequest(arg0 interface{}) *gomock.Call

AssociateSubnetCidrBlockRequest indicates an expected call of AssociateSubnetCidrBlockRequest.

func (*MockEC2APIMockRecorder) AssociateSubnetCidrBlockWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssociateSubnetCidrBlockWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

AssociateSubnetCidrBlockWithContext indicates an expected call of AssociateSubnetCidrBlockWithContext.

func (*MockEC2APIMockRecorder) AssociateTransitGatewayMulticastDomain added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssociateTransitGatewayMulticastDomain(arg0 interface{}) *gomock.Call

AssociateTransitGatewayMulticastDomain indicates an expected call of AssociateTransitGatewayMulticastDomain.

func (*MockEC2APIMockRecorder) AssociateTransitGatewayMulticastDomainRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssociateTransitGatewayMulticastDomainRequest(arg0 interface{}) *gomock.Call

AssociateTransitGatewayMulticastDomainRequest indicates an expected call of AssociateTransitGatewayMulticastDomainRequest.

func (*MockEC2APIMockRecorder) AssociateTransitGatewayMulticastDomainWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssociateTransitGatewayMulticastDomainWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

AssociateTransitGatewayMulticastDomainWithContext indicates an expected call of AssociateTransitGatewayMulticastDomainWithContext.

func (*MockEC2APIMockRecorder) AssociateTransitGatewayPolicyTable added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssociateTransitGatewayPolicyTable(arg0 interface{}) *gomock.Call

AssociateTransitGatewayPolicyTable indicates an expected call of AssociateTransitGatewayPolicyTable.

func (*MockEC2APIMockRecorder) AssociateTransitGatewayPolicyTableRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssociateTransitGatewayPolicyTableRequest(arg0 interface{}) *gomock.Call

AssociateTransitGatewayPolicyTableRequest indicates an expected call of AssociateTransitGatewayPolicyTableRequest.

func (*MockEC2APIMockRecorder) AssociateTransitGatewayPolicyTableWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssociateTransitGatewayPolicyTableWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

AssociateTransitGatewayPolicyTableWithContext indicates an expected call of AssociateTransitGatewayPolicyTableWithContext.

func (*MockEC2APIMockRecorder) AssociateTransitGatewayRouteTable added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssociateTransitGatewayRouteTable(arg0 interface{}) *gomock.Call

AssociateTransitGatewayRouteTable indicates an expected call of AssociateTransitGatewayRouteTable.

func (*MockEC2APIMockRecorder) AssociateTransitGatewayRouteTableRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssociateTransitGatewayRouteTableRequest(arg0 interface{}) *gomock.Call

AssociateTransitGatewayRouteTableRequest indicates an expected call of AssociateTransitGatewayRouteTableRequest.

func (*MockEC2APIMockRecorder) AssociateTransitGatewayRouteTableWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssociateTransitGatewayRouteTableWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

AssociateTransitGatewayRouteTableWithContext indicates an expected call of AssociateTransitGatewayRouteTableWithContext.

func (*MockEC2APIMockRecorder) AssociateTrunkInterface added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssociateTrunkInterface(arg0 interface{}) *gomock.Call

AssociateTrunkInterface indicates an expected call of AssociateTrunkInterface.

func (*MockEC2APIMockRecorder) AssociateTrunkInterfaceRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssociateTrunkInterfaceRequest(arg0 interface{}) *gomock.Call

AssociateTrunkInterfaceRequest indicates an expected call of AssociateTrunkInterfaceRequest.

func (*MockEC2APIMockRecorder) AssociateTrunkInterfaceWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssociateTrunkInterfaceWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

AssociateTrunkInterfaceWithContext indicates an expected call of AssociateTrunkInterfaceWithContext.

func (*MockEC2APIMockRecorder) AssociateVpcCidrBlock added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssociateVpcCidrBlock(arg0 interface{}) *gomock.Call

AssociateVpcCidrBlock indicates an expected call of AssociateVpcCidrBlock.

func (*MockEC2APIMockRecorder) AssociateVpcCidrBlockRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssociateVpcCidrBlockRequest(arg0 interface{}) *gomock.Call

AssociateVpcCidrBlockRequest indicates an expected call of AssociateVpcCidrBlockRequest.

func (*MockEC2APIMockRecorder) AssociateVpcCidrBlockWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) AssociateVpcCidrBlockWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

AssociateVpcCidrBlockWithContext indicates an expected call of AssociateVpcCidrBlockWithContext.

func (*MockEC2APIMockRecorder) AttachClassicLinkVpc added in v1.19.0

func (mr *MockEC2APIMockRecorder) AttachClassicLinkVpc(arg0 interface{}) *gomock.Call

AttachClassicLinkVpc indicates an expected call of AttachClassicLinkVpc.

func (*MockEC2APIMockRecorder) AttachClassicLinkVpcRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) AttachClassicLinkVpcRequest(arg0 interface{}) *gomock.Call

AttachClassicLinkVpcRequest indicates an expected call of AttachClassicLinkVpcRequest.

func (*MockEC2APIMockRecorder) AttachClassicLinkVpcWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) AttachClassicLinkVpcWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

AttachClassicLinkVpcWithContext indicates an expected call of AttachClassicLinkVpcWithContext.

func (*MockEC2APIMockRecorder) AttachInternetGateway added in v1.19.0

func (mr *MockEC2APIMockRecorder) AttachInternetGateway(arg0 interface{}) *gomock.Call

AttachInternetGateway indicates an expected call of AttachInternetGateway.

func (*MockEC2APIMockRecorder) AttachInternetGatewayRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) AttachInternetGatewayRequest(arg0 interface{}) *gomock.Call

AttachInternetGatewayRequest indicates an expected call of AttachInternetGatewayRequest.

func (*MockEC2APIMockRecorder) AttachInternetGatewayWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) AttachInternetGatewayWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

AttachInternetGatewayWithContext indicates an expected call of AttachInternetGatewayWithContext.

func (*MockEC2APIMockRecorder) AttachNetworkInterface added in v1.19.0

func (mr *MockEC2APIMockRecorder) AttachNetworkInterface(arg0 interface{}) *gomock.Call

AttachNetworkInterface indicates an expected call of AttachNetworkInterface.

func (*MockEC2APIMockRecorder) AttachNetworkInterfaceRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) AttachNetworkInterfaceRequest(arg0 interface{}) *gomock.Call

AttachNetworkInterfaceRequest indicates an expected call of AttachNetworkInterfaceRequest.

func (*MockEC2APIMockRecorder) AttachNetworkInterfaceWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) AttachNetworkInterfaceWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

AttachNetworkInterfaceWithContext indicates an expected call of AttachNetworkInterfaceWithContext.

func (*MockEC2APIMockRecorder) AttachVerifiedAccessTrustProvider added in v1.19.0

func (mr *MockEC2APIMockRecorder) AttachVerifiedAccessTrustProvider(arg0 interface{}) *gomock.Call

AttachVerifiedAccessTrustProvider indicates an expected call of AttachVerifiedAccessTrustProvider.

func (*MockEC2APIMockRecorder) AttachVerifiedAccessTrustProviderRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) AttachVerifiedAccessTrustProviderRequest(arg0 interface{}) *gomock.Call

AttachVerifiedAccessTrustProviderRequest indicates an expected call of AttachVerifiedAccessTrustProviderRequest.

func (*MockEC2APIMockRecorder) AttachVerifiedAccessTrustProviderWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) AttachVerifiedAccessTrustProviderWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

AttachVerifiedAccessTrustProviderWithContext indicates an expected call of AttachVerifiedAccessTrustProviderWithContext.

func (*MockEC2APIMockRecorder) AttachVolume added in v1.19.0

func (mr *MockEC2APIMockRecorder) AttachVolume(arg0 interface{}) *gomock.Call

AttachVolume indicates an expected call of AttachVolume.

func (*MockEC2APIMockRecorder) AttachVolumeRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) AttachVolumeRequest(arg0 interface{}) *gomock.Call

AttachVolumeRequest indicates an expected call of AttachVolumeRequest.

func (*MockEC2APIMockRecorder) AttachVolumeWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) AttachVolumeWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

AttachVolumeWithContext indicates an expected call of AttachVolumeWithContext.

func (*MockEC2APIMockRecorder) AttachVpnGateway added in v1.19.0

func (mr *MockEC2APIMockRecorder) AttachVpnGateway(arg0 interface{}) *gomock.Call

AttachVpnGateway indicates an expected call of AttachVpnGateway.

func (*MockEC2APIMockRecorder) AttachVpnGatewayRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) AttachVpnGatewayRequest(arg0 interface{}) *gomock.Call

AttachVpnGatewayRequest indicates an expected call of AttachVpnGatewayRequest.

func (*MockEC2APIMockRecorder) AttachVpnGatewayWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) AttachVpnGatewayWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

AttachVpnGatewayWithContext indicates an expected call of AttachVpnGatewayWithContext.

func (*MockEC2APIMockRecorder) AuthorizeClientVpnIngress added in v1.19.0

func (mr *MockEC2APIMockRecorder) AuthorizeClientVpnIngress(arg0 interface{}) *gomock.Call

AuthorizeClientVpnIngress indicates an expected call of AuthorizeClientVpnIngress.

func (*MockEC2APIMockRecorder) AuthorizeClientVpnIngressRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) AuthorizeClientVpnIngressRequest(arg0 interface{}) *gomock.Call

AuthorizeClientVpnIngressRequest indicates an expected call of AuthorizeClientVpnIngressRequest.

func (*MockEC2APIMockRecorder) AuthorizeClientVpnIngressWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) AuthorizeClientVpnIngressWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

AuthorizeClientVpnIngressWithContext indicates an expected call of AuthorizeClientVpnIngressWithContext.

func (*MockEC2APIMockRecorder) AuthorizeSecurityGroupEgress added in v1.19.0

func (mr *MockEC2APIMockRecorder) AuthorizeSecurityGroupEgress(arg0 interface{}) *gomock.Call

AuthorizeSecurityGroupEgress indicates an expected call of AuthorizeSecurityGroupEgress.

func (*MockEC2APIMockRecorder) AuthorizeSecurityGroupEgressRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) AuthorizeSecurityGroupEgressRequest(arg0 interface{}) *gomock.Call

AuthorizeSecurityGroupEgressRequest indicates an expected call of AuthorizeSecurityGroupEgressRequest.

func (*MockEC2APIMockRecorder) AuthorizeSecurityGroupEgressWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) AuthorizeSecurityGroupEgressWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

AuthorizeSecurityGroupEgressWithContext indicates an expected call of AuthorizeSecurityGroupEgressWithContext.

func (*MockEC2APIMockRecorder) AuthorizeSecurityGroupIngress added in v1.19.0

func (mr *MockEC2APIMockRecorder) AuthorizeSecurityGroupIngress(arg0 interface{}) *gomock.Call

AuthorizeSecurityGroupIngress indicates an expected call of AuthorizeSecurityGroupIngress.

func (*MockEC2APIMockRecorder) AuthorizeSecurityGroupIngressRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) AuthorizeSecurityGroupIngressRequest(arg0 interface{}) *gomock.Call

AuthorizeSecurityGroupIngressRequest indicates an expected call of AuthorizeSecurityGroupIngressRequest.

func (*MockEC2APIMockRecorder) AuthorizeSecurityGroupIngressWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) AuthorizeSecurityGroupIngressWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

AuthorizeSecurityGroupIngressWithContext indicates an expected call of AuthorizeSecurityGroupIngressWithContext.

func (*MockEC2APIMockRecorder) BundleInstance added in v1.19.0

func (mr *MockEC2APIMockRecorder) BundleInstance(arg0 interface{}) *gomock.Call

BundleInstance indicates an expected call of BundleInstance.

func (*MockEC2APIMockRecorder) BundleInstanceRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) BundleInstanceRequest(arg0 interface{}) *gomock.Call

BundleInstanceRequest indicates an expected call of BundleInstanceRequest.

func (*MockEC2APIMockRecorder) BundleInstanceWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) BundleInstanceWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

BundleInstanceWithContext indicates an expected call of BundleInstanceWithContext.

func (*MockEC2APIMockRecorder) CancelBundleTask added in v1.19.0

func (mr *MockEC2APIMockRecorder) CancelBundleTask(arg0 interface{}) *gomock.Call

CancelBundleTask indicates an expected call of CancelBundleTask.

func (*MockEC2APIMockRecorder) CancelBundleTaskRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CancelBundleTaskRequest(arg0 interface{}) *gomock.Call

CancelBundleTaskRequest indicates an expected call of CancelBundleTaskRequest.

func (*MockEC2APIMockRecorder) CancelBundleTaskWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CancelBundleTaskWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CancelBundleTaskWithContext indicates an expected call of CancelBundleTaskWithContext.

func (*MockEC2APIMockRecorder) CancelCapacityReservation added in v1.19.0

func (mr *MockEC2APIMockRecorder) CancelCapacityReservation(arg0 interface{}) *gomock.Call

CancelCapacityReservation indicates an expected call of CancelCapacityReservation.

func (*MockEC2APIMockRecorder) CancelCapacityReservationFleets added in v1.19.0

func (mr *MockEC2APIMockRecorder) CancelCapacityReservationFleets(arg0 interface{}) *gomock.Call

CancelCapacityReservationFleets indicates an expected call of CancelCapacityReservationFleets.

func (*MockEC2APIMockRecorder) CancelCapacityReservationFleetsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CancelCapacityReservationFleetsRequest(arg0 interface{}) *gomock.Call

CancelCapacityReservationFleetsRequest indicates an expected call of CancelCapacityReservationFleetsRequest.

func (*MockEC2APIMockRecorder) CancelCapacityReservationFleetsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CancelCapacityReservationFleetsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CancelCapacityReservationFleetsWithContext indicates an expected call of CancelCapacityReservationFleetsWithContext.

func (*MockEC2APIMockRecorder) CancelCapacityReservationRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CancelCapacityReservationRequest(arg0 interface{}) *gomock.Call

CancelCapacityReservationRequest indicates an expected call of CancelCapacityReservationRequest.

func (*MockEC2APIMockRecorder) CancelCapacityReservationWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CancelCapacityReservationWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CancelCapacityReservationWithContext indicates an expected call of CancelCapacityReservationWithContext.

func (*MockEC2APIMockRecorder) CancelConversionTask added in v1.19.0

func (mr *MockEC2APIMockRecorder) CancelConversionTask(arg0 interface{}) *gomock.Call

CancelConversionTask indicates an expected call of CancelConversionTask.

func (*MockEC2APIMockRecorder) CancelConversionTaskRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CancelConversionTaskRequest(arg0 interface{}) *gomock.Call

CancelConversionTaskRequest indicates an expected call of CancelConversionTaskRequest.

func (*MockEC2APIMockRecorder) CancelConversionTaskWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CancelConversionTaskWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CancelConversionTaskWithContext indicates an expected call of CancelConversionTaskWithContext.

func (*MockEC2APIMockRecorder) CancelExportTask added in v1.19.0

func (mr *MockEC2APIMockRecorder) CancelExportTask(arg0 interface{}) *gomock.Call

CancelExportTask indicates an expected call of CancelExportTask.

func (*MockEC2APIMockRecorder) CancelExportTaskRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CancelExportTaskRequest(arg0 interface{}) *gomock.Call

CancelExportTaskRequest indicates an expected call of CancelExportTaskRequest.

func (*MockEC2APIMockRecorder) CancelExportTaskWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CancelExportTaskWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CancelExportTaskWithContext indicates an expected call of CancelExportTaskWithContext.

func (*MockEC2APIMockRecorder) CancelImageLaunchPermission added in v1.19.0

func (mr *MockEC2APIMockRecorder) CancelImageLaunchPermission(arg0 interface{}) *gomock.Call

CancelImageLaunchPermission indicates an expected call of CancelImageLaunchPermission.

func (*MockEC2APIMockRecorder) CancelImageLaunchPermissionRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CancelImageLaunchPermissionRequest(arg0 interface{}) *gomock.Call

CancelImageLaunchPermissionRequest indicates an expected call of CancelImageLaunchPermissionRequest.

func (*MockEC2APIMockRecorder) CancelImageLaunchPermissionWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CancelImageLaunchPermissionWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CancelImageLaunchPermissionWithContext indicates an expected call of CancelImageLaunchPermissionWithContext.

func (*MockEC2APIMockRecorder) CancelImportTask added in v1.19.0

func (mr *MockEC2APIMockRecorder) CancelImportTask(arg0 interface{}) *gomock.Call

CancelImportTask indicates an expected call of CancelImportTask.

func (*MockEC2APIMockRecorder) CancelImportTaskRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CancelImportTaskRequest(arg0 interface{}) *gomock.Call

CancelImportTaskRequest indicates an expected call of CancelImportTaskRequest.

func (*MockEC2APIMockRecorder) CancelImportTaskWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CancelImportTaskWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CancelImportTaskWithContext indicates an expected call of CancelImportTaskWithContext.

func (*MockEC2APIMockRecorder) CancelReservedInstancesListing added in v1.19.0

func (mr *MockEC2APIMockRecorder) CancelReservedInstancesListing(arg0 interface{}) *gomock.Call

CancelReservedInstancesListing indicates an expected call of CancelReservedInstancesListing.

func (*MockEC2APIMockRecorder) CancelReservedInstancesListingRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CancelReservedInstancesListingRequest(arg0 interface{}) *gomock.Call

CancelReservedInstancesListingRequest indicates an expected call of CancelReservedInstancesListingRequest.

func (*MockEC2APIMockRecorder) CancelReservedInstancesListingWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CancelReservedInstancesListingWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CancelReservedInstancesListingWithContext indicates an expected call of CancelReservedInstancesListingWithContext.

func (*MockEC2APIMockRecorder) CancelSpotFleetRequests added in v1.19.0

func (mr *MockEC2APIMockRecorder) CancelSpotFleetRequests(arg0 interface{}) *gomock.Call

CancelSpotFleetRequests indicates an expected call of CancelSpotFleetRequests.

func (*MockEC2APIMockRecorder) CancelSpotFleetRequestsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CancelSpotFleetRequestsRequest(arg0 interface{}) *gomock.Call

CancelSpotFleetRequestsRequest indicates an expected call of CancelSpotFleetRequestsRequest.

func (*MockEC2APIMockRecorder) CancelSpotFleetRequestsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CancelSpotFleetRequestsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CancelSpotFleetRequestsWithContext indicates an expected call of CancelSpotFleetRequestsWithContext.

func (*MockEC2APIMockRecorder) CancelSpotInstanceRequests added in v1.19.0

func (mr *MockEC2APIMockRecorder) CancelSpotInstanceRequests(arg0 interface{}) *gomock.Call

CancelSpotInstanceRequests indicates an expected call of CancelSpotInstanceRequests.

func (*MockEC2APIMockRecorder) CancelSpotInstanceRequestsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CancelSpotInstanceRequestsRequest(arg0 interface{}) *gomock.Call

CancelSpotInstanceRequestsRequest indicates an expected call of CancelSpotInstanceRequestsRequest.

func (*MockEC2APIMockRecorder) CancelSpotInstanceRequestsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CancelSpotInstanceRequestsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CancelSpotInstanceRequestsWithContext indicates an expected call of CancelSpotInstanceRequestsWithContext.

func (*MockEC2APIMockRecorder) ConfirmProductInstance added in v1.19.0

func (mr *MockEC2APIMockRecorder) ConfirmProductInstance(arg0 interface{}) *gomock.Call

ConfirmProductInstance indicates an expected call of ConfirmProductInstance.

func (*MockEC2APIMockRecorder) ConfirmProductInstanceRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ConfirmProductInstanceRequest(arg0 interface{}) *gomock.Call

ConfirmProductInstanceRequest indicates an expected call of ConfirmProductInstanceRequest.

func (*MockEC2APIMockRecorder) ConfirmProductInstanceWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ConfirmProductInstanceWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ConfirmProductInstanceWithContext indicates an expected call of ConfirmProductInstanceWithContext.

func (*MockEC2APIMockRecorder) CopyFpgaImage added in v1.19.0

func (mr *MockEC2APIMockRecorder) CopyFpgaImage(arg0 interface{}) *gomock.Call

CopyFpgaImage indicates an expected call of CopyFpgaImage.

func (*MockEC2APIMockRecorder) CopyFpgaImageRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CopyFpgaImageRequest(arg0 interface{}) *gomock.Call

CopyFpgaImageRequest indicates an expected call of CopyFpgaImageRequest.

func (*MockEC2APIMockRecorder) CopyFpgaImageWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CopyFpgaImageWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CopyFpgaImageWithContext indicates an expected call of CopyFpgaImageWithContext.

func (*MockEC2APIMockRecorder) CopyImage added in v1.19.0

func (mr *MockEC2APIMockRecorder) CopyImage(arg0 interface{}) *gomock.Call

CopyImage indicates an expected call of CopyImage.

func (*MockEC2APIMockRecorder) CopyImageRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CopyImageRequest(arg0 interface{}) *gomock.Call

CopyImageRequest indicates an expected call of CopyImageRequest.

func (*MockEC2APIMockRecorder) CopyImageWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CopyImageWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CopyImageWithContext indicates an expected call of CopyImageWithContext.

func (*MockEC2APIMockRecorder) CopySnapshot added in v1.19.0

func (mr *MockEC2APIMockRecorder) CopySnapshot(arg0 interface{}) *gomock.Call

CopySnapshot indicates an expected call of CopySnapshot.

func (*MockEC2APIMockRecorder) CopySnapshotRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CopySnapshotRequest(arg0 interface{}) *gomock.Call

CopySnapshotRequest indicates an expected call of CopySnapshotRequest.

func (*MockEC2APIMockRecorder) CopySnapshotWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CopySnapshotWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CopySnapshotWithContext indicates an expected call of CopySnapshotWithContext.

func (*MockEC2APIMockRecorder) CreateCapacityReservation added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateCapacityReservation(arg0 interface{}) *gomock.Call

CreateCapacityReservation indicates an expected call of CreateCapacityReservation.

func (*MockEC2APIMockRecorder) CreateCapacityReservationFleet added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateCapacityReservationFleet(arg0 interface{}) *gomock.Call

CreateCapacityReservationFleet indicates an expected call of CreateCapacityReservationFleet.

func (*MockEC2APIMockRecorder) CreateCapacityReservationFleetRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateCapacityReservationFleetRequest(arg0 interface{}) *gomock.Call

CreateCapacityReservationFleetRequest indicates an expected call of CreateCapacityReservationFleetRequest.

func (*MockEC2APIMockRecorder) CreateCapacityReservationFleetWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateCapacityReservationFleetWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateCapacityReservationFleetWithContext indicates an expected call of CreateCapacityReservationFleetWithContext.

func (*MockEC2APIMockRecorder) CreateCapacityReservationRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateCapacityReservationRequest(arg0 interface{}) *gomock.Call

CreateCapacityReservationRequest indicates an expected call of CreateCapacityReservationRequest.

func (*MockEC2APIMockRecorder) CreateCapacityReservationWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateCapacityReservationWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateCapacityReservationWithContext indicates an expected call of CreateCapacityReservationWithContext.

func (*MockEC2APIMockRecorder) CreateCarrierGateway added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateCarrierGateway(arg0 interface{}) *gomock.Call

CreateCarrierGateway indicates an expected call of CreateCarrierGateway.

func (*MockEC2APIMockRecorder) CreateCarrierGatewayRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateCarrierGatewayRequest(arg0 interface{}) *gomock.Call

CreateCarrierGatewayRequest indicates an expected call of CreateCarrierGatewayRequest.

func (*MockEC2APIMockRecorder) CreateCarrierGatewayWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateCarrierGatewayWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateCarrierGatewayWithContext indicates an expected call of CreateCarrierGatewayWithContext.

func (*MockEC2APIMockRecorder) CreateClientVpnEndpoint added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateClientVpnEndpoint(arg0 interface{}) *gomock.Call

CreateClientVpnEndpoint indicates an expected call of CreateClientVpnEndpoint.

func (*MockEC2APIMockRecorder) CreateClientVpnEndpointRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateClientVpnEndpointRequest(arg0 interface{}) *gomock.Call

CreateClientVpnEndpointRequest indicates an expected call of CreateClientVpnEndpointRequest.

func (*MockEC2APIMockRecorder) CreateClientVpnEndpointWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateClientVpnEndpointWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateClientVpnEndpointWithContext indicates an expected call of CreateClientVpnEndpointWithContext.

func (*MockEC2APIMockRecorder) CreateClientVpnRoute added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateClientVpnRoute(arg0 interface{}) *gomock.Call

CreateClientVpnRoute indicates an expected call of CreateClientVpnRoute.

func (*MockEC2APIMockRecorder) CreateClientVpnRouteRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateClientVpnRouteRequest(arg0 interface{}) *gomock.Call

CreateClientVpnRouteRequest indicates an expected call of CreateClientVpnRouteRequest.

func (*MockEC2APIMockRecorder) CreateClientVpnRouteWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateClientVpnRouteWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateClientVpnRouteWithContext indicates an expected call of CreateClientVpnRouteWithContext.

func (*MockEC2APIMockRecorder) CreateCoipCidr added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateCoipCidr(arg0 interface{}) *gomock.Call

CreateCoipCidr indicates an expected call of CreateCoipCidr.

func (*MockEC2APIMockRecorder) CreateCoipCidrRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateCoipCidrRequest(arg0 interface{}) *gomock.Call

CreateCoipCidrRequest indicates an expected call of CreateCoipCidrRequest.

func (*MockEC2APIMockRecorder) CreateCoipCidrWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateCoipCidrWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateCoipCidrWithContext indicates an expected call of CreateCoipCidrWithContext.

func (*MockEC2APIMockRecorder) CreateCoipPool added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateCoipPool(arg0 interface{}) *gomock.Call

CreateCoipPool indicates an expected call of CreateCoipPool.

func (*MockEC2APIMockRecorder) CreateCoipPoolRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateCoipPoolRequest(arg0 interface{}) *gomock.Call

CreateCoipPoolRequest indicates an expected call of CreateCoipPoolRequest.

func (*MockEC2APIMockRecorder) CreateCoipPoolWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateCoipPoolWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateCoipPoolWithContext indicates an expected call of CreateCoipPoolWithContext.

func (*MockEC2APIMockRecorder) CreateCustomerGateway added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateCustomerGateway(arg0 interface{}) *gomock.Call

CreateCustomerGateway indicates an expected call of CreateCustomerGateway.

func (*MockEC2APIMockRecorder) CreateCustomerGatewayRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateCustomerGatewayRequest(arg0 interface{}) *gomock.Call

CreateCustomerGatewayRequest indicates an expected call of CreateCustomerGatewayRequest.

func (*MockEC2APIMockRecorder) CreateCustomerGatewayWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateCustomerGatewayWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateCustomerGatewayWithContext indicates an expected call of CreateCustomerGatewayWithContext.

func (*MockEC2APIMockRecorder) CreateDefaultSubnet added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateDefaultSubnet(arg0 interface{}) *gomock.Call

CreateDefaultSubnet indicates an expected call of CreateDefaultSubnet.

func (*MockEC2APIMockRecorder) CreateDefaultSubnetRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateDefaultSubnetRequest(arg0 interface{}) *gomock.Call

CreateDefaultSubnetRequest indicates an expected call of CreateDefaultSubnetRequest.

func (*MockEC2APIMockRecorder) CreateDefaultSubnetWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateDefaultSubnetWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateDefaultSubnetWithContext indicates an expected call of CreateDefaultSubnetWithContext.

func (*MockEC2APIMockRecorder) CreateDefaultVpc added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateDefaultVpc(arg0 interface{}) *gomock.Call

CreateDefaultVpc indicates an expected call of CreateDefaultVpc.

func (*MockEC2APIMockRecorder) CreateDefaultVpcRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateDefaultVpcRequest(arg0 interface{}) *gomock.Call

CreateDefaultVpcRequest indicates an expected call of CreateDefaultVpcRequest.

func (*MockEC2APIMockRecorder) CreateDefaultVpcWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateDefaultVpcWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateDefaultVpcWithContext indicates an expected call of CreateDefaultVpcWithContext.

func (*MockEC2APIMockRecorder) CreateDhcpOptions added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateDhcpOptions(arg0 interface{}) *gomock.Call

CreateDhcpOptions indicates an expected call of CreateDhcpOptions.

func (*MockEC2APIMockRecorder) CreateDhcpOptionsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateDhcpOptionsRequest(arg0 interface{}) *gomock.Call

CreateDhcpOptionsRequest indicates an expected call of CreateDhcpOptionsRequest.

func (*MockEC2APIMockRecorder) CreateDhcpOptionsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateDhcpOptionsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateDhcpOptionsWithContext indicates an expected call of CreateDhcpOptionsWithContext.

func (*MockEC2APIMockRecorder) CreateEgressOnlyInternetGateway added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateEgressOnlyInternetGateway(arg0 interface{}) *gomock.Call

CreateEgressOnlyInternetGateway indicates an expected call of CreateEgressOnlyInternetGateway.

func (*MockEC2APIMockRecorder) CreateEgressOnlyInternetGatewayRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateEgressOnlyInternetGatewayRequest(arg0 interface{}) *gomock.Call

CreateEgressOnlyInternetGatewayRequest indicates an expected call of CreateEgressOnlyInternetGatewayRequest.

func (*MockEC2APIMockRecorder) CreateEgressOnlyInternetGatewayWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateEgressOnlyInternetGatewayWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateEgressOnlyInternetGatewayWithContext indicates an expected call of CreateEgressOnlyInternetGatewayWithContext.

func (*MockEC2APIMockRecorder) CreateFleet added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateFleet(arg0 interface{}) *gomock.Call

CreateFleet indicates an expected call of CreateFleet.

func (*MockEC2APIMockRecorder) CreateFleetRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateFleetRequest(arg0 interface{}) *gomock.Call

CreateFleetRequest indicates an expected call of CreateFleetRequest.

func (*MockEC2APIMockRecorder) CreateFleetWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateFleetWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateFleetWithContext indicates an expected call of CreateFleetWithContext.

func (*MockEC2APIMockRecorder) CreateFlowLogs added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateFlowLogs(arg0 interface{}) *gomock.Call

CreateFlowLogs indicates an expected call of CreateFlowLogs.

func (*MockEC2APIMockRecorder) CreateFlowLogsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateFlowLogsRequest(arg0 interface{}) *gomock.Call

CreateFlowLogsRequest indicates an expected call of CreateFlowLogsRequest.

func (*MockEC2APIMockRecorder) CreateFlowLogsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateFlowLogsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateFlowLogsWithContext indicates an expected call of CreateFlowLogsWithContext.

func (*MockEC2APIMockRecorder) CreateFpgaImage added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateFpgaImage(arg0 interface{}) *gomock.Call

CreateFpgaImage indicates an expected call of CreateFpgaImage.

func (*MockEC2APIMockRecorder) CreateFpgaImageRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateFpgaImageRequest(arg0 interface{}) *gomock.Call

CreateFpgaImageRequest indicates an expected call of CreateFpgaImageRequest.

func (*MockEC2APIMockRecorder) CreateFpgaImageWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateFpgaImageWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateFpgaImageWithContext indicates an expected call of CreateFpgaImageWithContext.

func (*MockEC2APIMockRecorder) CreateImage added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateImage(arg0 interface{}) *gomock.Call

CreateImage indicates an expected call of CreateImage.

func (*MockEC2APIMockRecorder) CreateImageRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateImageRequest(arg0 interface{}) *gomock.Call

CreateImageRequest indicates an expected call of CreateImageRequest.

func (*MockEC2APIMockRecorder) CreateImageWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateImageWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateImageWithContext indicates an expected call of CreateImageWithContext.

func (*MockEC2APIMockRecorder) CreateInstanceConnectEndpoint added in v1.20.0

func (mr *MockEC2APIMockRecorder) CreateInstanceConnectEndpoint(arg0 interface{}) *gomock.Call

CreateInstanceConnectEndpoint indicates an expected call of CreateInstanceConnectEndpoint.

func (*MockEC2APIMockRecorder) CreateInstanceConnectEndpointRequest added in v1.20.0

func (mr *MockEC2APIMockRecorder) CreateInstanceConnectEndpointRequest(arg0 interface{}) *gomock.Call

CreateInstanceConnectEndpointRequest indicates an expected call of CreateInstanceConnectEndpointRequest.

func (*MockEC2APIMockRecorder) CreateInstanceConnectEndpointWithContext added in v1.20.0

func (mr *MockEC2APIMockRecorder) CreateInstanceConnectEndpointWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateInstanceConnectEndpointWithContext indicates an expected call of CreateInstanceConnectEndpointWithContext.

func (*MockEC2APIMockRecorder) CreateInstanceEventWindow added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateInstanceEventWindow(arg0 interface{}) *gomock.Call

CreateInstanceEventWindow indicates an expected call of CreateInstanceEventWindow.

func (*MockEC2APIMockRecorder) CreateInstanceEventWindowRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateInstanceEventWindowRequest(arg0 interface{}) *gomock.Call

CreateInstanceEventWindowRequest indicates an expected call of CreateInstanceEventWindowRequest.

func (*MockEC2APIMockRecorder) CreateInstanceEventWindowWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateInstanceEventWindowWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateInstanceEventWindowWithContext indicates an expected call of CreateInstanceEventWindowWithContext.

func (*MockEC2APIMockRecorder) CreateInstanceExportTask added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateInstanceExportTask(arg0 interface{}) *gomock.Call

CreateInstanceExportTask indicates an expected call of CreateInstanceExportTask.

func (*MockEC2APIMockRecorder) CreateInstanceExportTaskRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateInstanceExportTaskRequest(arg0 interface{}) *gomock.Call

CreateInstanceExportTaskRequest indicates an expected call of CreateInstanceExportTaskRequest.

func (*MockEC2APIMockRecorder) CreateInstanceExportTaskWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateInstanceExportTaskWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateInstanceExportTaskWithContext indicates an expected call of CreateInstanceExportTaskWithContext.

func (*MockEC2APIMockRecorder) CreateInternetGateway added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateInternetGateway(arg0 interface{}) *gomock.Call

CreateInternetGateway indicates an expected call of CreateInternetGateway.

func (*MockEC2APIMockRecorder) CreateInternetGatewayRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateInternetGatewayRequest(arg0 interface{}) *gomock.Call

CreateInternetGatewayRequest indicates an expected call of CreateInternetGatewayRequest.

func (*MockEC2APIMockRecorder) CreateInternetGatewayWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateInternetGatewayWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateInternetGatewayWithContext indicates an expected call of CreateInternetGatewayWithContext.

func (*MockEC2APIMockRecorder) CreateIpam added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateIpam(arg0 interface{}) *gomock.Call

CreateIpam indicates an expected call of CreateIpam.

func (*MockEC2APIMockRecorder) CreateIpamPool added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateIpamPool(arg0 interface{}) *gomock.Call

CreateIpamPool indicates an expected call of CreateIpamPool.

func (*MockEC2APIMockRecorder) CreateIpamPoolRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateIpamPoolRequest(arg0 interface{}) *gomock.Call

CreateIpamPoolRequest indicates an expected call of CreateIpamPoolRequest.

func (*MockEC2APIMockRecorder) CreateIpamPoolWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateIpamPoolWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateIpamPoolWithContext indicates an expected call of CreateIpamPoolWithContext.

func (*MockEC2APIMockRecorder) CreateIpamRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateIpamRequest(arg0 interface{}) *gomock.Call

CreateIpamRequest indicates an expected call of CreateIpamRequest.

func (*MockEC2APIMockRecorder) CreateIpamResourceDiscovery added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateIpamResourceDiscovery(arg0 interface{}) *gomock.Call

CreateIpamResourceDiscovery indicates an expected call of CreateIpamResourceDiscovery.

func (*MockEC2APIMockRecorder) CreateIpamResourceDiscoveryRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateIpamResourceDiscoveryRequest(arg0 interface{}) *gomock.Call

CreateIpamResourceDiscoveryRequest indicates an expected call of CreateIpamResourceDiscoveryRequest.

func (*MockEC2APIMockRecorder) CreateIpamResourceDiscoveryWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateIpamResourceDiscoveryWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateIpamResourceDiscoveryWithContext indicates an expected call of CreateIpamResourceDiscoveryWithContext.

func (*MockEC2APIMockRecorder) CreateIpamScope added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateIpamScope(arg0 interface{}) *gomock.Call

CreateIpamScope indicates an expected call of CreateIpamScope.

func (*MockEC2APIMockRecorder) CreateIpamScopeRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateIpamScopeRequest(arg0 interface{}) *gomock.Call

CreateIpamScopeRequest indicates an expected call of CreateIpamScopeRequest.

func (*MockEC2APIMockRecorder) CreateIpamScopeWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateIpamScopeWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateIpamScopeWithContext indicates an expected call of CreateIpamScopeWithContext.

func (*MockEC2APIMockRecorder) CreateIpamWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateIpamWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateIpamWithContext indicates an expected call of CreateIpamWithContext.

func (*MockEC2APIMockRecorder) CreateKeyPair added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateKeyPair(arg0 interface{}) *gomock.Call

CreateKeyPair indicates an expected call of CreateKeyPair.

func (*MockEC2APIMockRecorder) CreateKeyPairRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateKeyPairRequest(arg0 interface{}) *gomock.Call

CreateKeyPairRequest indicates an expected call of CreateKeyPairRequest.

func (*MockEC2APIMockRecorder) CreateKeyPairWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateKeyPairWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateKeyPairWithContext indicates an expected call of CreateKeyPairWithContext.

func (*MockEC2APIMockRecorder) CreateLaunchTemplate added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateLaunchTemplate(arg0 interface{}) *gomock.Call

CreateLaunchTemplate indicates an expected call of CreateLaunchTemplate.

func (*MockEC2APIMockRecorder) CreateLaunchTemplateRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateLaunchTemplateRequest(arg0 interface{}) *gomock.Call

CreateLaunchTemplateRequest indicates an expected call of CreateLaunchTemplateRequest.

func (*MockEC2APIMockRecorder) CreateLaunchTemplateVersion added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateLaunchTemplateVersion(arg0 interface{}) *gomock.Call

CreateLaunchTemplateVersion indicates an expected call of CreateLaunchTemplateVersion.

func (*MockEC2APIMockRecorder) CreateLaunchTemplateVersionRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateLaunchTemplateVersionRequest(arg0 interface{}) *gomock.Call

CreateLaunchTemplateVersionRequest indicates an expected call of CreateLaunchTemplateVersionRequest.

func (*MockEC2APIMockRecorder) CreateLaunchTemplateVersionWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateLaunchTemplateVersionWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateLaunchTemplateVersionWithContext indicates an expected call of CreateLaunchTemplateVersionWithContext.

func (*MockEC2APIMockRecorder) CreateLaunchTemplateWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateLaunchTemplateWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateLaunchTemplateWithContext indicates an expected call of CreateLaunchTemplateWithContext.

func (*MockEC2APIMockRecorder) CreateLocalGatewayRoute added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateLocalGatewayRoute(arg0 interface{}) *gomock.Call

CreateLocalGatewayRoute indicates an expected call of CreateLocalGatewayRoute.

func (*MockEC2APIMockRecorder) CreateLocalGatewayRouteRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateLocalGatewayRouteRequest(arg0 interface{}) *gomock.Call

CreateLocalGatewayRouteRequest indicates an expected call of CreateLocalGatewayRouteRequest.

func (*MockEC2APIMockRecorder) CreateLocalGatewayRouteTable added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateLocalGatewayRouteTable(arg0 interface{}) *gomock.Call

CreateLocalGatewayRouteTable indicates an expected call of CreateLocalGatewayRouteTable.

func (*MockEC2APIMockRecorder) CreateLocalGatewayRouteTableRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateLocalGatewayRouteTableRequest(arg0 interface{}) *gomock.Call

CreateLocalGatewayRouteTableRequest indicates an expected call of CreateLocalGatewayRouteTableRequest.

func (*MockEC2APIMockRecorder) CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociation added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociation(arg0 interface{}) *gomock.Call

CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociation indicates an expected call of CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociation.

func (*MockEC2APIMockRecorder) CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationRequest(arg0 interface{}) *gomock.Call

CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationRequest indicates an expected call of CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationRequest.

func (*MockEC2APIMockRecorder) CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationWithContext indicates an expected call of CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationWithContext.

func (*MockEC2APIMockRecorder) CreateLocalGatewayRouteTableVpcAssociation added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateLocalGatewayRouteTableVpcAssociation(arg0 interface{}) *gomock.Call

CreateLocalGatewayRouteTableVpcAssociation indicates an expected call of CreateLocalGatewayRouteTableVpcAssociation.

func (*MockEC2APIMockRecorder) CreateLocalGatewayRouteTableVpcAssociationRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateLocalGatewayRouteTableVpcAssociationRequest(arg0 interface{}) *gomock.Call

CreateLocalGatewayRouteTableVpcAssociationRequest indicates an expected call of CreateLocalGatewayRouteTableVpcAssociationRequest.

func (*MockEC2APIMockRecorder) CreateLocalGatewayRouteTableVpcAssociationWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateLocalGatewayRouteTableVpcAssociationWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateLocalGatewayRouteTableVpcAssociationWithContext indicates an expected call of CreateLocalGatewayRouteTableVpcAssociationWithContext.

func (*MockEC2APIMockRecorder) CreateLocalGatewayRouteTableWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateLocalGatewayRouteTableWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateLocalGatewayRouteTableWithContext indicates an expected call of CreateLocalGatewayRouteTableWithContext.

func (*MockEC2APIMockRecorder) CreateLocalGatewayRouteWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateLocalGatewayRouteWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateLocalGatewayRouteWithContext indicates an expected call of CreateLocalGatewayRouteWithContext.

func (*MockEC2APIMockRecorder) CreateManagedPrefixList added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateManagedPrefixList(arg0 interface{}) *gomock.Call

CreateManagedPrefixList indicates an expected call of CreateManagedPrefixList.

func (*MockEC2APIMockRecorder) CreateManagedPrefixListRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateManagedPrefixListRequest(arg0 interface{}) *gomock.Call

CreateManagedPrefixListRequest indicates an expected call of CreateManagedPrefixListRequest.

func (*MockEC2APIMockRecorder) CreateManagedPrefixListWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateManagedPrefixListWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateManagedPrefixListWithContext indicates an expected call of CreateManagedPrefixListWithContext.

func (*MockEC2APIMockRecorder) CreateNatGateway added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateNatGateway(arg0 interface{}) *gomock.Call

CreateNatGateway indicates an expected call of CreateNatGateway.

func (*MockEC2APIMockRecorder) CreateNatGatewayRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateNatGatewayRequest(arg0 interface{}) *gomock.Call

CreateNatGatewayRequest indicates an expected call of CreateNatGatewayRequest.

func (*MockEC2APIMockRecorder) CreateNatGatewayWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateNatGatewayWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateNatGatewayWithContext indicates an expected call of CreateNatGatewayWithContext.

func (*MockEC2APIMockRecorder) CreateNetworkAcl added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateNetworkAcl(arg0 interface{}) *gomock.Call

CreateNetworkAcl indicates an expected call of CreateNetworkAcl.

func (*MockEC2APIMockRecorder) CreateNetworkAclEntry added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateNetworkAclEntry(arg0 interface{}) *gomock.Call

CreateNetworkAclEntry indicates an expected call of CreateNetworkAclEntry.

func (*MockEC2APIMockRecorder) CreateNetworkAclEntryRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateNetworkAclEntryRequest(arg0 interface{}) *gomock.Call

CreateNetworkAclEntryRequest indicates an expected call of CreateNetworkAclEntryRequest.

func (*MockEC2APIMockRecorder) CreateNetworkAclEntryWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateNetworkAclEntryWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateNetworkAclEntryWithContext indicates an expected call of CreateNetworkAclEntryWithContext.

func (*MockEC2APIMockRecorder) CreateNetworkAclRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateNetworkAclRequest(arg0 interface{}) *gomock.Call

CreateNetworkAclRequest indicates an expected call of CreateNetworkAclRequest.

func (*MockEC2APIMockRecorder) CreateNetworkAclWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateNetworkAclWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateNetworkAclWithContext indicates an expected call of CreateNetworkAclWithContext.

func (*MockEC2APIMockRecorder) CreateNetworkInsightsAccessScope added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateNetworkInsightsAccessScope(arg0 interface{}) *gomock.Call

CreateNetworkInsightsAccessScope indicates an expected call of CreateNetworkInsightsAccessScope.

func (*MockEC2APIMockRecorder) CreateNetworkInsightsAccessScopeRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateNetworkInsightsAccessScopeRequest(arg0 interface{}) *gomock.Call

CreateNetworkInsightsAccessScopeRequest indicates an expected call of CreateNetworkInsightsAccessScopeRequest.

func (*MockEC2APIMockRecorder) CreateNetworkInsightsAccessScopeWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateNetworkInsightsAccessScopeWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateNetworkInsightsAccessScopeWithContext indicates an expected call of CreateNetworkInsightsAccessScopeWithContext.

func (*MockEC2APIMockRecorder) CreateNetworkInsightsPath added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateNetworkInsightsPath(arg0 interface{}) *gomock.Call

CreateNetworkInsightsPath indicates an expected call of CreateNetworkInsightsPath.

func (*MockEC2APIMockRecorder) CreateNetworkInsightsPathRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateNetworkInsightsPathRequest(arg0 interface{}) *gomock.Call

CreateNetworkInsightsPathRequest indicates an expected call of CreateNetworkInsightsPathRequest.

func (*MockEC2APIMockRecorder) CreateNetworkInsightsPathWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateNetworkInsightsPathWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateNetworkInsightsPathWithContext indicates an expected call of CreateNetworkInsightsPathWithContext.

func (*MockEC2APIMockRecorder) CreateNetworkInterface added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateNetworkInterface(arg0 interface{}) *gomock.Call

CreateNetworkInterface indicates an expected call of CreateNetworkInterface.

func (*MockEC2APIMockRecorder) CreateNetworkInterfacePermission added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateNetworkInterfacePermission(arg0 interface{}) *gomock.Call

CreateNetworkInterfacePermission indicates an expected call of CreateNetworkInterfacePermission.

func (*MockEC2APIMockRecorder) CreateNetworkInterfacePermissionRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateNetworkInterfacePermissionRequest(arg0 interface{}) *gomock.Call

CreateNetworkInterfacePermissionRequest indicates an expected call of CreateNetworkInterfacePermissionRequest.

func (*MockEC2APIMockRecorder) CreateNetworkInterfacePermissionWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateNetworkInterfacePermissionWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateNetworkInterfacePermissionWithContext indicates an expected call of CreateNetworkInterfacePermissionWithContext.

func (*MockEC2APIMockRecorder) CreateNetworkInterfaceRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateNetworkInterfaceRequest(arg0 interface{}) *gomock.Call

CreateNetworkInterfaceRequest indicates an expected call of CreateNetworkInterfaceRequest.

func (*MockEC2APIMockRecorder) CreateNetworkInterfaceWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateNetworkInterfaceWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateNetworkInterfaceWithContext indicates an expected call of CreateNetworkInterfaceWithContext.

func (*MockEC2APIMockRecorder) CreatePlacementGroup added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreatePlacementGroup(arg0 interface{}) *gomock.Call

CreatePlacementGroup indicates an expected call of CreatePlacementGroup.

func (*MockEC2APIMockRecorder) CreatePlacementGroupRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreatePlacementGroupRequest(arg0 interface{}) *gomock.Call

CreatePlacementGroupRequest indicates an expected call of CreatePlacementGroupRequest.

func (*MockEC2APIMockRecorder) CreatePlacementGroupWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreatePlacementGroupWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreatePlacementGroupWithContext indicates an expected call of CreatePlacementGroupWithContext.

func (*MockEC2APIMockRecorder) CreatePublicIpv4Pool added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreatePublicIpv4Pool(arg0 interface{}) *gomock.Call

CreatePublicIpv4Pool indicates an expected call of CreatePublicIpv4Pool.

func (*MockEC2APIMockRecorder) CreatePublicIpv4PoolRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreatePublicIpv4PoolRequest(arg0 interface{}) *gomock.Call

CreatePublicIpv4PoolRequest indicates an expected call of CreatePublicIpv4PoolRequest.

func (*MockEC2APIMockRecorder) CreatePublicIpv4PoolWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreatePublicIpv4PoolWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreatePublicIpv4PoolWithContext indicates an expected call of CreatePublicIpv4PoolWithContext.

func (*MockEC2APIMockRecorder) CreateReplaceRootVolumeTask added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateReplaceRootVolumeTask(arg0 interface{}) *gomock.Call

CreateReplaceRootVolumeTask indicates an expected call of CreateReplaceRootVolumeTask.

func (*MockEC2APIMockRecorder) CreateReplaceRootVolumeTaskRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateReplaceRootVolumeTaskRequest(arg0 interface{}) *gomock.Call

CreateReplaceRootVolumeTaskRequest indicates an expected call of CreateReplaceRootVolumeTaskRequest.

func (*MockEC2APIMockRecorder) CreateReplaceRootVolumeTaskWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateReplaceRootVolumeTaskWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateReplaceRootVolumeTaskWithContext indicates an expected call of CreateReplaceRootVolumeTaskWithContext.

func (*MockEC2APIMockRecorder) CreateReservedInstancesListing added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateReservedInstancesListing(arg0 interface{}) *gomock.Call

CreateReservedInstancesListing indicates an expected call of CreateReservedInstancesListing.

func (*MockEC2APIMockRecorder) CreateReservedInstancesListingRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateReservedInstancesListingRequest(arg0 interface{}) *gomock.Call

CreateReservedInstancesListingRequest indicates an expected call of CreateReservedInstancesListingRequest.

func (*MockEC2APIMockRecorder) CreateReservedInstancesListingWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateReservedInstancesListingWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateReservedInstancesListingWithContext indicates an expected call of CreateReservedInstancesListingWithContext.

func (*MockEC2APIMockRecorder) CreateRestoreImageTask added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateRestoreImageTask(arg0 interface{}) *gomock.Call

CreateRestoreImageTask indicates an expected call of CreateRestoreImageTask.

func (*MockEC2APIMockRecorder) CreateRestoreImageTaskRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateRestoreImageTaskRequest(arg0 interface{}) *gomock.Call

CreateRestoreImageTaskRequest indicates an expected call of CreateRestoreImageTaskRequest.

func (*MockEC2APIMockRecorder) CreateRestoreImageTaskWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateRestoreImageTaskWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateRestoreImageTaskWithContext indicates an expected call of CreateRestoreImageTaskWithContext.

func (*MockEC2APIMockRecorder) CreateRoute added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateRoute(arg0 interface{}) *gomock.Call

CreateRoute indicates an expected call of CreateRoute.

func (*MockEC2APIMockRecorder) CreateRouteRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateRouteRequest(arg0 interface{}) *gomock.Call

CreateRouteRequest indicates an expected call of CreateRouteRequest.

func (*MockEC2APIMockRecorder) CreateRouteTable added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateRouteTable(arg0 interface{}) *gomock.Call

CreateRouteTable indicates an expected call of CreateRouteTable.

func (*MockEC2APIMockRecorder) CreateRouteTableRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateRouteTableRequest(arg0 interface{}) *gomock.Call

CreateRouteTableRequest indicates an expected call of CreateRouteTableRequest.

func (*MockEC2APIMockRecorder) CreateRouteTableWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateRouteTableWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateRouteTableWithContext indicates an expected call of CreateRouteTableWithContext.

func (*MockEC2APIMockRecorder) CreateRouteWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateRouteWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateRouteWithContext indicates an expected call of CreateRouteWithContext.

func (*MockEC2APIMockRecorder) CreateSecurityGroup added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateSecurityGroup(arg0 interface{}) *gomock.Call

CreateSecurityGroup indicates an expected call of CreateSecurityGroup.

func (*MockEC2APIMockRecorder) CreateSecurityGroupRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateSecurityGroupRequest(arg0 interface{}) *gomock.Call

CreateSecurityGroupRequest indicates an expected call of CreateSecurityGroupRequest.

func (*MockEC2APIMockRecorder) CreateSecurityGroupWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateSecurityGroupWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateSecurityGroupWithContext indicates an expected call of CreateSecurityGroupWithContext.

func (*MockEC2APIMockRecorder) CreateSnapshot added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateSnapshot(arg0 interface{}) *gomock.Call

CreateSnapshot indicates an expected call of CreateSnapshot.

func (*MockEC2APIMockRecorder) CreateSnapshotRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateSnapshotRequest(arg0 interface{}) *gomock.Call

CreateSnapshotRequest indicates an expected call of CreateSnapshotRequest.

func (*MockEC2APIMockRecorder) CreateSnapshotWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateSnapshotWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateSnapshotWithContext indicates an expected call of CreateSnapshotWithContext.

func (*MockEC2APIMockRecorder) CreateSnapshots added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateSnapshots(arg0 interface{}) *gomock.Call

CreateSnapshots indicates an expected call of CreateSnapshots.

func (*MockEC2APIMockRecorder) CreateSnapshotsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateSnapshotsRequest(arg0 interface{}) *gomock.Call

CreateSnapshotsRequest indicates an expected call of CreateSnapshotsRequest.

func (*MockEC2APIMockRecorder) CreateSnapshotsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateSnapshotsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateSnapshotsWithContext indicates an expected call of CreateSnapshotsWithContext.

func (*MockEC2APIMockRecorder) CreateSpotDatafeedSubscription added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateSpotDatafeedSubscription(arg0 interface{}) *gomock.Call

CreateSpotDatafeedSubscription indicates an expected call of CreateSpotDatafeedSubscription.

func (*MockEC2APIMockRecorder) CreateSpotDatafeedSubscriptionRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateSpotDatafeedSubscriptionRequest(arg0 interface{}) *gomock.Call

CreateSpotDatafeedSubscriptionRequest indicates an expected call of CreateSpotDatafeedSubscriptionRequest.

func (*MockEC2APIMockRecorder) CreateSpotDatafeedSubscriptionWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateSpotDatafeedSubscriptionWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateSpotDatafeedSubscriptionWithContext indicates an expected call of CreateSpotDatafeedSubscriptionWithContext.

func (*MockEC2APIMockRecorder) CreateStoreImageTask added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateStoreImageTask(arg0 interface{}) *gomock.Call

CreateStoreImageTask indicates an expected call of CreateStoreImageTask.

func (*MockEC2APIMockRecorder) CreateStoreImageTaskRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateStoreImageTaskRequest(arg0 interface{}) *gomock.Call

CreateStoreImageTaskRequest indicates an expected call of CreateStoreImageTaskRequest.

func (*MockEC2APIMockRecorder) CreateStoreImageTaskWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateStoreImageTaskWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateStoreImageTaskWithContext indicates an expected call of CreateStoreImageTaskWithContext.

func (*MockEC2APIMockRecorder) CreateSubnet added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateSubnet(arg0 interface{}) *gomock.Call

CreateSubnet indicates an expected call of CreateSubnet.

func (*MockEC2APIMockRecorder) CreateSubnetCidrReservation added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateSubnetCidrReservation(arg0 interface{}) *gomock.Call

CreateSubnetCidrReservation indicates an expected call of CreateSubnetCidrReservation.

func (*MockEC2APIMockRecorder) CreateSubnetCidrReservationRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateSubnetCidrReservationRequest(arg0 interface{}) *gomock.Call

CreateSubnetCidrReservationRequest indicates an expected call of CreateSubnetCidrReservationRequest.

func (*MockEC2APIMockRecorder) CreateSubnetCidrReservationWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateSubnetCidrReservationWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateSubnetCidrReservationWithContext indicates an expected call of CreateSubnetCidrReservationWithContext.

func (*MockEC2APIMockRecorder) CreateSubnetRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateSubnetRequest(arg0 interface{}) *gomock.Call

CreateSubnetRequest indicates an expected call of CreateSubnetRequest.

func (*MockEC2APIMockRecorder) CreateSubnetWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateSubnetWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateSubnetWithContext indicates an expected call of CreateSubnetWithContext.

func (*MockEC2APIMockRecorder) CreateTags added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateTags(arg0 interface{}) *gomock.Call

CreateTags indicates an expected call of CreateTags.

func (*MockEC2APIMockRecorder) CreateTagsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateTagsRequest(arg0 interface{}) *gomock.Call

CreateTagsRequest indicates an expected call of CreateTagsRequest.

func (*MockEC2APIMockRecorder) CreateTagsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateTagsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateTagsWithContext indicates an expected call of CreateTagsWithContext.

func (*MockEC2APIMockRecorder) CreateTrafficMirrorFilter added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateTrafficMirrorFilter(arg0 interface{}) *gomock.Call

CreateTrafficMirrorFilter indicates an expected call of CreateTrafficMirrorFilter.

func (*MockEC2APIMockRecorder) CreateTrafficMirrorFilterRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateTrafficMirrorFilterRequest(arg0 interface{}) *gomock.Call

CreateTrafficMirrorFilterRequest indicates an expected call of CreateTrafficMirrorFilterRequest.

func (*MockEC2APIMockRecorder) CreateTrafficMirrorFilterRule added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateTrafficMirrorFilterRule(arg0 interface{}) *gomock.Call

CreateTrafficMirrorFilterRule indicates an expected call of CreateTrafficMirrorFilterRule.

func (*MockEC2APIMockRecorder) CreateTrafficMirrorFilterRuleRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateTrafficMirrorFilterRuleRequest(arg0 interface{}) *gomock.Call

CreateTrafficMirrorFilterRuleRequest indicates an expected call of CreateTrafficMirrorFilterRuleRequest.

func (*MockEC2APIMockRecorder) CreateTrafficMirrorFilterRuleWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateTrafficMirrorFilterRuleWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateTrafficMirrorFilterRuleWithContext indicates an expected call of CreateTrafficMirrorFilterRuleWithContext.

func (*MockEC2APIMockRecorder) CreateTrafficMirrorFilterWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateTrafficMirrorFilterWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateTrafficMirrorFilterWithContext indicates an expected call of CreateTrafficMirrorFilterWithContext.

func (*MockEC2APIMockRecorder) CreateTrafficMirrorSession added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateTrafficMirrorSession(arg0 interface{}) *gomock.Call

CreateTrafficMirrorSession indicates an expected call of CreateTrafficMirrorSession.

func (*MockEC2APIMockRecorder) CreateTrafficMirrorSessionRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateTrafficMirrorSessionRequest(arg0 interface{}) *gomock.Call

CreateTrafficMirrorSessionRequest indicates an expected call of CreateTrafficMirrorSessionRequest.

func (*MockEC2APIMockRecorder) CreateTrafficMirrorSessionWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateTrafficMirrorSessionWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateTrafficMirrorSessionWithContext indicates an expected call of CreateTrafficMirrorSessionWithContext.

func (*MockEC2APIMockRecorder) CreateTrafficMirrorTarget added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateTrafficMirrorTarget(arg0 interface{}) *gomock.Call

CreateTrafficMirrorTarget indicates an expected call of CreateTrafficMirrorTarget.

func (*MockEC2APIMockRecorder) CreateTrafficMirrorTargetRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateTrafficMirrorTargetRequest(arg0 interface{}) *gomock.Call

CreateTrafficMirrorTargetRequest indicates an expected call of CreateTrafficMirrorTargetRequest.

func (*MockEC2APIMockRecorder) CreateTrafficMirrorTargetWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateTrafficMirrorTargetWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateTrafficMirrorTargetWithContext indicates an expected call of CreateTrafficMirrorTargetWithContext.

func (*MockEC2APIMockRecorder) CreateTransitGateway added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateTransitGateway(arg0 interface{}) *gomock.Call

CreateTransitGateway indicates an expected call of CreateTransitGateway.

func (*MockEC2APIMockRecorder) CreateTransitGatewayConnect added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateTransitGatewayConnect(arg0 interface{}) *gomock.Call

CreateTransitGatewayConnect indicates an expected call of CreateTransitGatewayConnect.

func (*MockEC2APIMockRecorder) CreateTransitGatewayConnectPeer added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateTransitGatewayConnectPeer(arg0 interface{}) *gomock.Call

CreateTransitGatewayConnectPeer indicates an expected call of CreateTransitGatewayConnectPeer.

func (*MockEC2APIMockRecorder) CreateTransitGatewayConnectPeerRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateTransitGatewayConnectPeerRequest(arg0 interface{}) *gomock.Call

CreateTransitGatewayConnectPeerRequest indicates an expected call of CreateTransitGatewayConnectPeerRequest.

func (*MockEC2APIMockRecorder) CreateTransitGatewayConnectPeerWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateTransitGatewayConnectPeerWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateTransitGatewayConnectPeerWithContext indicates an expected call of CreateTransitGatewayConnectPeerWithContext.

func (*MockEC2APIMockRecorder) CreateTransitGatewayConnectRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateTransitGatewayConnectRequest(arg0 interface{}) *gomock.Call

CreateTransitGatewayConnectRequest indicates an expected call of CreateTransitGatewayConnectRequest.

func (*MockEC2APIMockRecorder) CreateTransitGatewayConnectWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateTransitGatewayConnectWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateTransitGatewayConnectWithContext indicates an expected call of CreateTransitGatewayConnectWithContext.

func (*MockEC2APIMockRecorder) CreateTransitGatewayMulticastDomain added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateTransitGatewayMulticastDomain(arg0 interface{}) *gomock.Call

CreateTransitGatewayMulticastDomain indicates an expected call of CreateTransitGatewayMulticastDomain.

func (*MockEC2APIMockRecorder) CreateTransitGatewayMulticastDomainRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateTransitGatewayMulticastDomainRequest(arg0 interface{}) *gomock.Call

CreateTransitGatewayMulticastDomainRequest indicates an expected call of CreateTransitGatewayMulticastDomainRequest.

func (*MockEC2APIMockRecorder) CreateTransitGatewayMulticastDomainWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateTransitGatewayMulticastDomainWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateTransitGatewayMulticastDomainWithContext indicates an expected call of CreateTransitGatewayMulticastDomainWithContext.

func (*MockEC2APIMockRecorder) CreateTransitGatewayPeeringAttachment added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateTransitGatewayPeeringAttachment(arg0 interface{}) *gomock.Call

CreateTransitGatewayPeeringAttachment indicates an expected call of CreateTransitGatewayPeeringAttachment.

func (*MockEC2APIMockRecorder) CreateTransitGatewayPeeringAttachmentRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateTransitGatewayPeeringAttachmentRequest(arg0 interface{}) *gomock.Call

CreateTransitGatewayPeeringAttachmentRequest indicates an expected call of CreateTransitGatewayPeeringAttachmentRequest.

func (*MockEC2APIMockRecorder) CreateTransitGatewayPeeringAttachmentWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateTransitGatewayPeeringAttachmentWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateTransitGatewayPeeringAttachmentWithContext indicates an expected call of CreateTransitGatewayPeeringAttachmentWithContext.

func (*MockEC2APIMockRecorder) CreateTransitGatewayPolicyTable added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateTransitGatewayPolicyTable(arg0 interface{}) *gomock.Call

CreateTransitGatewayPolicyTable indicates an expected call of CreateTransitGatewayPolicyTable.

func (*MockEC2APIMockRecorder) CreateTransitGatewayPolicyTableRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateTransitGatewayPolicyTableRequest(arg0 interface{}) *gomock.Call

CreateTransitGatewayPolicyTableRequest indicates an expected call of CreateTransitGatewayPolicyTableRequest.

func (*MockEC2APIMockRecorder) CreateTransitGatewayPolicyTableWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateTransitGatewayPolicyTableWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateTransitGatewayPolicyTableWithContext indicates an expected call of CreateTransitGatewayPolicyTableWithContext.

func (*MockEC2APIMockRecorder) CreateTransitGatewayPrefixListReference added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateTransitGatewayPrefixListReference(arg0 interface{}) *gomock.Call

CreateTransitGatewayPrefixListReference indicates an expected call of CreateTransitGatewayPrefixListReference.

func (*MockEC2APIMockRecorder) CreateTransitGatewayPrefixListReferenceRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateTransitGatewayPrefixListReferenceRequest(arg0 interface{}) *gomock.Call

CreateTransitGatewayPrefixListReferenceRequest indicates an expected call of CreateTransitGatewayPrefixListReferenceRequest.

func (*MockEC2APIMockRecorder) CreateTransitGatewayPrefixListReferenceWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateTransitGatewayPrefixListReferenceWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateTransitGatewayPrefixListReferenceWithContext indicates an expected call of CreateTransitGatewayPrefixListReferenceWithContext.

func (*MockEC2APIMockRecorder) CreateTransitGatewayRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateTransitGatewayRequest(arg0 interface{}) *gomock.Call

CreateTransitGatewayRequest indicates an expected call of CreateTransitGatewayRequest.

func (*MockEC2APIMockRecorder) CreateTransitGatewayRoute added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateTransitGatewayRoute(arg0 interface{}) *gomock.Call

CreateTransitGatewayRoute indicates an expected call of CreateTransitGatewayRoute.

func (*MockEC2APIMockRecorder) CreateTransitGatewayRouteRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateTransitGatewayRouteRequest(arg0 interface{}) *gomock.Call

CreateTransitGatewayRouteRequest indicates an expected call of CreateTransitGatewayRouteRequest.

func (*MockEC2APIMockRecorder) CreateTransitGatewayRouteTable added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateTransitGatewayRouteTable(arg0 interface{}) *gomock.Call

CreateTransitGatewayRouteTable indicates an expected call of CreateTransitGatewayRouteTable.

func (*MockEC2APIMockRecorder) CreateTransitGatewayRouteTableAnnouncement added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateTransitGatewayRouteTableAnnouncement(arg0 interface{}) *gomock.Call

CreateTransitGatewayRouteTableAnnouncement indicates an expected call of CreateTransitGatewayRouteTableAnnouncement.

func (*MockEC2APIMockRecorder) CreateTransitGatewayRouteTableAnnouncementRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateTransitGatewayRouteTableAnnouncementRequest(arg0 interface{}) *gomock.Call

CreateTransitGatewayRouteTableAnnouncementRequest indicates an expected call of CreateTransitGatewayRouteTableAnnouncementRequest.

func (*MockEC2APIMockRecorder) CreateTransitGatewayRouteTableAnnouncementWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateTransitGatewayRouteTableAnnouncementWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateTransitGatewayRouteTableAnnouncementWithContext indicates an expected call of CreateTransitGatewayRouteTableAnnouncementWithContext.

func (*MockEC2APIMockRecorder) CreateTransitGatewayRouteTableRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateTransitGatewayRouteTableRequest(arg0 interface{}) *gomock.Call

CreateTransitGatewayRouteTableRequest indicates an expected call of CreateTransitGatewayRouteTableRequest.

func (*MockEC2APIMockRecorder) CreateTransitGatewayRouteTableWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateTransitGatewayRouteTableWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateTransitGatewayRouteTableWithContext indicates an expected call of CreateTransitGatewayRouteTableWithContext.

func (*MockEC2APIMockRecorder) CreateTransitGatewayRouteWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateTransitGatewayRouteWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateTransitGatewayRouteWithContext indicates an expected call of CreateTransitGatewayRouteWithContext.

func (*MockEC2APIMockRecorder) CreateTransitGatewayVpcAttachment added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateTransitGatewayVpcAttachment(arg0 interface{}) *gomock.Call

CreateTransitGatewayVpcAttachment indicates an expected call of CreateTransitGatewayVpcAttachment.

func (*MockEC2APIMockRecorder) CreateTransitGatewayVpcAttachmentRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateTransitGatewayVpcAttachmentRequest(arg0 interface{}) *gomock.Call

CreateTransitGatewayVpcAttachmentRequest indicates an expected call of CreateTransitGatewayVpcAttachmentRequest.

func (*MockEC2APIMockRecorder) CreateTransitGatewayVpcAttachmentWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateTransitGatewayVpcAttachmentWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateTransitGatewayVpcAttachmentWithContext indicates an expected call of CreateTransitGatewayVpcAttachmentWithContext.

func (*MockEC2APIMockRecorder) CreateTransitGatewayWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateTransitGatewayWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateTransitGatewayWithContext indicates an expected call of CreateTransitGatewayWithContext.

func (*MockEC2APIMockRecorder) CreateVerifiedAccessEndpoint added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateVerifiedAccessEndpoint(arg0 interface{}) *gomock.Call

CreateVerifiedAccessEndpoint indicates an expected call of CreateVerifiedAccessEndpoint.

func (*MockEC2APIMockRecorder) CreateVerifiedAccessEndpointRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateVerifiedAccessEndpointRequest(arg0 interface{}) *gomock.Call

CreateVerifiedAccessEndpointRequest indicates an expected call of CreateVerifiedAccessEndpointRequest.

func (*MockEC2APIMockRecorder) CreateVerifiedAccessEndpointWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateVerifiedAccessEndpointWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateVerifiedAccessEndpointWithContext indicates an expected call of CreateVerifiedAccessEndpointWithContext.

func (*MockEC2APIMockRecorder) CreateVerifiedAccessGroup added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateVerifiedAccessGroup(arg0 interface{}) *gomock.Call

CreateVerifiedAccessGroup indicates an expected call of CreateVerifiedAccessGroup.

func (*MockEC2APIMockRecorder) CreateVerifiedAccessGroupRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateVerifiedAccessGroupRequest(arg0 interface{}) *gomock.Call

CreateVerifiedAccessGroupRequest indicates an expected call of CreateVerifiedAccessGroupRequest.

func (*MockEC2APIMockRecorder) CreateVerifiedAccessGroupWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateVerifiedAccessGroupWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateVerifiedAccessGroupWithContext indicates an expected call of CreateVerifiedAccessGroupWithContext.

func (*MockEC2APIMockRecorder) CreateVerifiedAccessInstance added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateVerifiedAccessInstance(arg0 interface{}) *gomock.Call

CreateVerifiedAccessInstance indicates an expected call of CreateVerifiedAccessInstance.

func (*MockEC2APIMockRecorder) CreateVerifiedAccessInstanceRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateVerifiedAccessInstanceRequest(arg0 interface{}) *gomock.Call

CreateVerifiedAccessInstanceRequest indicates an expected call of CreateVerifiedAccessInstanceRequest.

func (*MockEC2APIMockRecorder) CreateVerifiedAccessInstanceWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateVerifiedAccessInstanceWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateVerifiedAccessInstanceWithContext indicates an expected call of CreateVerifiedAccessInstanceWithContext.

func (*MockEC2APIMockRecorder) CreateVerifiedAccessTrustProvider added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateVerifiedAccessTrustProvider(arg0 interface{}) *gomock.Call

CreateVerifiedAccessTrustProvider indicates an expected call of CreateVerifiedAccessTrustProvider.

func (*MockEC2APIMockRecorder) CreateVerifiedAccessTrustProviderRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateVerifiedAccessTrustProviderRequest(arg0 interface{}) *gomock.Call

CreateVerifiedAccessTrustProviderRequest indicates an expected call of CreateVerifiedAccessTrustProviderRequest.

func (*MockEC2APIMockRecorder) CreateVerifiedAccessTrustProviderWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateVerifiedAccessTrustProviderWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateVerifiedAccessTrustProviderWithContext indicates an expected call of CreateVerifiedAccessTrustProviderWithContext.

func (*MockEC2APIMockRecorder) CreateVolume added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateVolume(arg0 interface{}) *gomock.Call

CreateVolume indicates an expected call of CreateVolume.

func (*MockEC2APIMockRecorder) CreateVolumeRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateVolumeRequest(arg0 interface{}) *gomock.Call

CreateVolumeRequest indicates an expected call of CreateVolumeRequest.

func (*MockEC2APIMockRecorder) CreateVolumeWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateVolumeWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateVolumeWithContext indicates an expected call of CreateVolumeWithContext.

func (*MockEC2APIMockRecorder) CreateVpc added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateVpc(arg0 interface{}) *gomock.Call

CreateVpc indicates an expected call of CreateVpc.

func (*MockEC2APIMockRecorder) CreateVpcEndpoint added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateVpcEndpoint(arg0 interface{}) *gomock.Call

CreateVpcEndpoint indicates an expected call of CreateVpcEndpoint.

func (*MockEC2APIMockRecorder) CreateVpcEndpointConnectionNotification added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateVpcEndpointConnectionNotification(arg0 interface{}) *gomock.Call

CreateVpcEndpointConnectionNotification indicates an expected call of CreateVpcEndpointConnectionNotification.

func (*MockEC2APIMockRecorder) CreateVpcEndpointConnectionNotificationRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateVpcEndpointConnectionNotificationRequest(arg0 interface{}) *gomock.Call

CreateVpcEndpointConnectionNotificationRequest indicates an expected call of CreateVpcEndpointConnectionNotificationRequest.

func (*MockEC2APIMockRecorder) CreateVpcEndpointConnectionNotificationWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateVpcEndpointConnectionNotificationWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateVpcEndpointConnectionNotificationWithContext indicates an expected call of CreateVpcEndpointConnectionNotificationWithContext.

func (*MockEC2APIMockRecorder) CreateVpcEndpointRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateVpcEndpointRequest(arg0 interface{}) *gomock.Call

CreateVpcEndpointRequest indicates an expected call of CreateVpcEndpointRequest.

func (*MockEC2APIMockRecorder) CreateVpcEndpointServiceConfiguration added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateVpcEndpointServiceConfiguration(arg0 interface{}) *gomock.Call

CreateVpcEndpointServiceConfiguration indicates an expected call of CreateVpcEndpointServiceConfiguration.

func (*MockEC2APIMockRecorder) CreateVpcEndpointServiceConfigurationRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateVpcEndpointServiceConfigurationRequest(arg0 interface{}) *gomock.Call

CreateVpcEndpointServiceConfigurationRequest indicates an expected call of CreateVpcEndpointServiceConfigurationRequest.

func (*MockEC2APIMockRecorder) CreateVpcEndpointServiceConfigurationWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateVpcEndpointServiceConfigurationWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateVpcEndpointServiceConfigurationWithContext indicates an expected call of CreateVpcEndpointServiceConfigurationWithContext.

func (*MockEC2APIMockRecorder) CreateVpcEndpointWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateVpcEndpointWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateVpcEndpointWithContext indicates an expected call of CreateVpcEndpointWithContext.

func (*MockEC2APIMockRecorder) CreateVpcPeeringConnection added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateVpcPeeringConnection(arg0 interface{}) *gomock.Call

CreateVpcPeeringConnection indicates an expected call of CreateVpcPeeringConnection.

func (*MockEC2APIMockRecorder) CreateVpcPeeringConnectionRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateVpcPeeringConnectionRequest(arg0 interface{}) *gomock.Call

CreateVpcPeeringConnectionRequest indicates an expected call of CreateVpcPeeringConnectionRequest.

func (*MockEC2APIMockRecorder) CreateVpcPeeringConnectionWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateVpcPeeringConnectionWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateVpcPeeringConnectionWithContext indicates an expected call of CreateVpcPeeringConnectionWithContext.

func (*MockEC2APIMockRecorder) CreateVpcRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateVpcRequest(arg0 interface{}) *gomock.Call

CreateVpcRequest indicates an expected call of CreateVpcRequest.

func (*MockEC2APIMockRecorder) CreateVpcWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateVpcWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateVpcWithContext indicates an expected call of CreateVpcWithContext.

func (*MockEC2APIMockRecorder) CreateVpnConnection added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateVpnConnection(arg0 interface{}) *gomock.Call

CreateVpnConnection indicates an expected call of CreateVpnConnection.

func (*MockEC2APIMockRecorder) CreateVpnConnectionRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateVpnConnectionRequest(arg0 interface{}) *gomock.Call

CreateVpnConnectionRequest indicates an expected call of CreateVpnConnectionRequest.

func (*MockEC2APIMockRecorder) CreateVpnConnectionRoute added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateVpnConnectionRoute(arg0 interface{}) *gomock.Call

CreateVpnConnectionRoute indicates an expected call of CreateVpnConnectionRoute.

func (*MockEC2APIMockRecorder) CreateVpnConnectionRouteRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateVpnConnectionRouteRequest(arg0 interface{}) *gomock.Call

CreateVpnConnectionRouteRequest indicates an expected call of CreateVpnConnectionRouteRequest.

func (*MockEC2APIMockRecorder) CreateVpnConnectionRouteWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateVpnConnectionRouteWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateVpnConnectionRouteWithContext indicates an expected call of CreateVpnConnectionRouteWithContext.

func (*MockEC2APIMockRecorder) CreateVpnConnectionWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateVpnConnectionWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateVpnConnectionWithContext indicates an expected call of CreateVpnConnectionWithContext.

func (*MockEC2APIMockRecorder) CreateVpnGateway added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateVpnGateway(arg0 interface{}) *gomock.Call

CreateVpnGateway indicates an expected call of CreateVpnGateway.

func (*MockEC2APIMockRecorder) CreateVpnGatewayRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateVpnGatewayRequest(arg0 interface{}) *gomock.Call

CreateVpnGatewayRequest indicates an expected call of CreateVpnGatewayRequest.

func (*MockEC2APIMockRecorder) CreateVpnGatewayWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) CreateVpnGatewayWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

CreateVpnGatewayWithContext indicates an expected call of CreateVpnGatewayWithContext.

func (*MockEC2APIMockRecorder) DeleteCarrierGateway added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteCarrierGateway(arg0 interface{}) *gomock.Call

DeleteCarrierGateway indicates an expected call of DeleteCarrierGateway.

func (*MockEC2APIMockRecorder) DeleteCarrierGatewayRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteCarrierGatewayRequest(arg0 interface{}) *gomock.Call

DeleteCarrierGatewayRequest indicates an expected call of DeleteCarrierGatewayRequest.

func (*MockEC2APIMockRecorder) DeleteCarrierGatewayWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteCarrierGatewayWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteCarrierGatewayWithContext indicates an expected call of DeleteCarrierGatewayWithContext.

func (*MockEC2APIMockRecorder) DeleteClientVpnEndpoint added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteClientVpnEndpoint(arg0 interface{}) *gomock.Call

DeleteClientVpnEndpoint indicates an expected call of DeleteClientVpnEndpoint.

func (*MockEC2APIMockRecorder) DeleteClientVpnEndpointRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteClientVpnEndpointRequest(arg0 interface{}) *gomock.Call

DeleteClientVpnEndpointRequest indicates an expected call of DeleteClientVpnEndpointRequest.

func (*MockEC2APIMockRecorder) DeleteClientVpnEndpointWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteClientVpnEndpointWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteClientVpnEndpointWithContext indicates an expected call of DeleteClientVpnEndpointWithContext.

func (*MockEC2APIMockRecorder) DeleteClientVpnRoute added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteClientVpnRoute(arg0 interface{}) *gomock.Call

DeleteClientVpnRoute indicates an expected call of DeleteClientVpnRoute.

func (*MockEC2APIMockRecorder) DeleteClientVpnRouteRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteClientVpnRouteRequest(arg0 interface{}) *gomock.Call

DeleteClientVpnRouteRequest indicates an expected call of DeleteClientVpnRouteRequest.

func (*MockEC2APIMockRecorder) DeleteClientVpnRouteWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteClientVpnRouteWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteClientVpnRouteWithContext indicates an expected call of DeleteClientVpnRouteWithContext.

func (*MockEC2APIMockRecorder) DeleteCoipCidr added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteCoipCidr(arg0 interface{}) *gomock.Call

DeleteCoipCidr indicates an expected call of DeleteCoipCidr.

func (*MockEC2APIMockRecorder) DeleteCoipCidrRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteCoipCidrRequest(arg0 interface{}) *gomock.Call

DeleteCoipCidrRequest indicates an expected call of DeleteCoipCidrRequest.

func (*MockEC2APIMockRecorder) DeleteCoipCidrWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteCoipCidrWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteCoipCidrWithContext indicates an expected call of DeleteCoipCidrWithContext.

func (*MockEC2APIMockRecorder) DeleteCoipPool added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteCoipPool(arg0 interface{}) *gomock.Call

DeleteCoipPool indicates an expected call of DeleteCoipPool.

func (*MockEC2APIMockRecorder) DeleteCoipPoolRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteCoipPoolRequest(arg0 interface{}) *gomock.Call

DeleteCoipPoolRequest indicates an expected call of DeleteCoipPoolRequest.

func (*MockEC2APIMockRecorder) DeleteCoipPoolWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteCoipPoolWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteCoipPoolWithContext indicates an expected call of DeleteCoipPoolWithContext.

func (*MockEC2APIMockRecorder) DeleteCustomerGateway added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteCustomerGateway(arg0 interface{}) *gomock.Call

DeleteCustomerGateway indicates an expected call of DeleteCustomerGateway.

func (*MockEC2APIMockRecorder) DeleteCustomerGatewayRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteCustomerGatewayRequest(arg0 interface{}) *gomock.Call

DeleteCustomerGatewayRequest indicates an expected call of DeleteCustomerGatewayRequest.

func (*MockEC2APIMockRecorder) DeleteCustomerGatewayWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteCustomerGatewayWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteCustomerGatewayWithContext indicates an expected call of DeleteCustomerGatewayWithContext.

func (*MockEC2APIMockRecorder) DeleteDhcpOptions added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteDhcpOptions(arg0 interface{}) *gomock.Call

DeleteDhcpOptions indicates an expected call of DeleteDhcpOptions.

func (*MockEC2APIMockRecorder) DeleteDhcpOptionsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteDhcpOptionsRequest(arg0 interface{}) *gomock.Call

DeleteDhcpOptionsRequest indicates an expected call of DeleteDhcpOptionsRequest.

func (*MockEC2APIMockRecorder) DeleteDhcpOptionsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteDhcpOptionsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteDhcpOptionsWithContext indicates an expected call of DeleteDhcpOptionsWithContext.

func (*MockEC2APIMockRecorder) DeleteEgressOnlyInternetGateway added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteEgressOnlyInternetGateway(arg0 interface{}) *gomock.Call

DeleteEgressOnlyInternetGateway indicates an expected call of DeleteEgressOnlyInternetGateway.

func (*MockEC2APIMockRecorder) DeleteEgressOnlyInternetGatewayRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteEgressOnlyInternetGatewayRequest(arg0 interface{}) *gomock.Call

DeleteEgressOnlyInternetGatewayRequest indicates an expected call of DeleteEgressOnlyInternetGatewayRequest.

func (*MockEC2APIMockRecorder) DeleteEgressOnlyInternetGatewayWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteEgressOnlyInternetGatewayWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteEgressOnlyInternetGatewayWithContext indicates an expected call of DeleteEgressOnlyInternetGatewayWithContext.

func (*MockEC2APIMockRecorder) DeleteFleets added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteFleets(arg0 interface{}) *gomock.Call

DeleteFleets indicates an expected call of DeleteFleets.

func (*MockEC2APIMockRecorder) DeleteFleetsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteFleetsRequest(arg0 interface{}) *gomock.Call

DeleteFleetsRequest indicates an expected call of DeleteFleetsRequest.

func (*MockEC2APIMockRecorder) DeleteFleetsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteFleetsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteFleetsWithContext indicates an expected call of DeleteFleetsWithContext.

func (*MockEC2APIMockRecorder) DeleteFlowLogs added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteFlowLogs(arg0 interface{}) *gomock.Call

DeleteFlowLogs indicates an expected call of DeleteFlowLogs.

func (*MockEC2APIMockRecorder) DeleteFlowLogsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteFlowLogsRequest(arg0 interface{}) *gomock.Call

DeleteFlowLogsRequest indicates an expected call of DeleteFlowLogsRequest.

func (*MockEC2APIMockRecorder) DeleteFlowLogsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteFlowLogsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteFlowLogsWithContext indicates an expected call of DeleteFlowLogsWithContext.

func (*MockEC2APIMockRecorder) DeleteFpgaImage added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteFpgaImage(arg0 interface{}) *gomock.Call

DeleteFpgaImage indicates an expected call of DeleteFpgaImage.

func (*MockEC2APIMockRecorder) DeleteFpgaImageRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteFpgaImageRequest(arg0 interface{}) *gomock.Call

DeleteFpgaImageRequest indicates an expected call of DeleteFpgaImageRequest.

func (*MockEC2APIMockRecorder) DeleteFpgaImageWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteFpgaImageWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteFpgaImageWithContext indicates an expected call of DeleteFpgaImageWithContext.

func (*MockEC2APIMockRecorder) DeleteInstanceConnectEndpoint added in v1.20.0

func (mr *MockEC2APIMockRecorder) DeleteInstanceConnectEndpoint(arg0 interface{}) *gomock.Call

DeleteInstanceConnectEndpoint indicates an expected call of DeleteInstanceConnectEndpoint.

func (*MockEC2APIMockRecorder) DeleteInstanceConnectEndpointRequest added in v1.20.0

func (mr *MockEC2APIMockRecorder) DeleteInstanceConnectEndpointRequest(arg0 interface{}) *gomock.Call

DeleteInstanceConnectEndpointRequest indicates an expected call of DeleteInstanceConnectEndpointRequest.

func (*MockEC2APIMockRecorder) DeleteInstanceConnectEndpointWithContext added in v1.20.0

func (mr *MockEC2APIMockRecorder) DeleteInstanceConnectEndpointWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteInstanceConnectEndpointWithContext indicates an expected call of DeleteInstanceConnectEndpointWithContext.

func (*MockEC2APIMockRecorder) DeleteInstanceEventWindow added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteInstanceEventWindow(arg0 interface{}) *gomock.Call

DeleteInstanceEventWindow indicates an expected call of DeleteInstanceEventWindow.

func (*MockEC2APIMockRecorder) DeleteInstanceEventWindowRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteInstanceEventWindowRequest(arg0 interface{}) *gomock.Call

DeleteInstanceEventWindowRequest indicates an expected call of DeleteInstanceEventWindowRequest.

func (*MockEC2APIMockRecorder) DeleteInstanceEventWindowWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteInstanceEventWindowWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteInstanceEventWindowWithContext indicates an expected call of DeleteInstanceEventWindowWithContext.

func (*MockEC2APIMockRecorder) DeleteInternetGateway added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteInternetGateway(arg0 interface{}) *gomock.Call

DeleteInternetGateway indicates an expected call of DeleteInternetGateway.

func (*MockEC2APIMockRecorder) DeleteInternetGatewayRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteInternetGatewayRequest(arg0 interface{}) *gomock.Call

DeleteInternetGatewayRequest indicates an expected call of DeleteInternetGatewayRequest.

func (*MockEC2APIMockRecorder) DeleteInternetGatewayWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteInternetGatewayWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteInternetGatewayWithContext indicates an expected call of DeleteInternetGatewayWithContext.

func (*MockEC2APIMockRecorder) DeleteIpam added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteIpam(arg0 interface{}) *gomock.Call

DeleteIpam indicates an expected call of DeleteIpam.

func (*MockEC2APIMockRecorder) DeleteIpamPool added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteIpamPool(arg0 interface{}) *gomock.Call

DeleteIpamPool indicates an expected call of DeleteIpamPool.

func (*MockEC2APIMockRecorder) DeleteIpamPoolRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteIpamPoolRequest(arg0 interface{}) *gomock.Call

DeleteIpamPoolRequest indicates an expected call of DeleteIpamPoolRequest.

func (*MockEC2APIMockRecorder) DeleteIpamPoolWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteIpamPoolWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteIpamPoolWithContext indicates an expected call of DeleteIpamPoolWithContext.

func (*MockEC2APIMockRecorder) DeleteIpamRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteIpamRequest(arg0 interface{}) *gomock.Call

DeleteIpamRequest indicates an expected call of DeleteIpamRequest.

func (*MockEC2APIMockRecorder) DeleteIpamResourceDiscovery added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteIpamResourceDiscovery(arg0 interface{}) *gomock.Call

DeleteIpamResourceDiscovery indicates an expected call of DeleteIpamResourceDiscovery.

func (*MockEC2APIMockRecorder) DeleteIpamResourceDiscoveryRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteIpamResourceDiscoveryRequest(arg0 interface{}) *gomock.Call

DeleteIpamResourceDiscoveryRequest indicates an expected call of DeleteIpamResourceDiscoveryRequest.

func (*MockEC2APIMockRecorder) DeleteIpamResourceDiscoveryWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteIpamResourceDiscoveryWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteIpamResourceDiscoveryWithContext indicates an expected call of DeleteIpamResourceDiscoveryWithContext.

func (*MockEC2APIMockRecorder) DeleteIpamScope added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteIpamScope(arg0 interface{}) *gomock.Call

DeleteIpamScope indicates an expected call of DeleteIpamScope.

func (*MockEC2APIMockRecorder) DeleteIpamScopeRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteIpamScopeRequest(arg0 interface{}) *gomock.Call

DeleteIpamScopeRequest indicates an expected call of DeleteIpamScopeRequest.

func (*MockEC2APIMockRecorder) DeleteIpamScopeWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteIpamScopeWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteIpamScopeWithContext indicates an expected call of DeleteIpamScopeWithContext.

func (*MockEC2APIMockRecorder) DeleteIpamWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteIpamWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteIpamWithContext indicates an expected call of DeleteIpamWithContext.

func (*MockEC2APIMockRecorder) DeleteKeyPair added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteKeyPair(arg0 interface{}) *gomock.Call

DeleteKeyPair indicates an expected call of DeleteKeyPair.

func (*MockEC2APIMockRecorder) DeleteKeyPairRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteKeyPairRequest(arg0 interface{}) *gomock.Call

DeleteKeyPairRequest indicates an expected call of DeleteKeyPairRequest.

func (*MockEC2APIMockRecorder) DeleteKeyPairWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteKeyPairWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteKeyPairWithContext indicates an expected call of DeleteKeyPairWithContext.

func (*MockEC2APIMockRecorder) DeleteLaunchTemplate added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteLaunchTemplate(arg0 interface{}) *gomock.Call

DeleteLaunchTemplate indicates an expected call of DeleteLaunchTemplate.

func (*MockEC2APIMockRecorder) DeleteLaunchTemplateRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteLaunchTemplateRequest(arg0 interface{}) *gomock.Call

DeleteLaunchTemplateRequest indicates an expected call of DeleteLaunchTemplateRequest.

func (*MockEC2APIMockRecorder) DeleteLaunchTemplateVersions added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteLaunchTemplateVersions(arg0 interface{}) *gomock.Call

DeleteLaunchTemplateVersions indicates an expected call of DeleteLaunchTemplateVersions.

func (*MockEC2APIMockRecorder) DeleteLaunchTemplateVersionsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteLaunchTemplateVersionsRequest(arg0 interface{}) *gomock.Call

DeleteLaunchTemplateVersionsRequest indicates an expected call of DeleteLaunchTemplateVersionsRequest.

func (*MockEC2APIMockRecorder) DeleteLaunchTemplateVersionsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteLaunchTemplateVersionsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteLaunchTemplateVersionsWithContext indicates an expected call of DeleteLaunchTemplateVersionsWithContext.

func (*MockEC2APIMockRecorder) DeleteLaunchTemplateWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteLaunchTemplateWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteLaunchTemplateWithContext indicates an expected call of DeleteLaunchTemplateWithContext.

func (*MockEC2APIMockRecorder) DeleteLocalGatewayRoute added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteLocalGatewayRoute(arg0 interface{}) *gomock.Call

DeleteLocalGatewayRoute indicates an expected call of DeleteLocalGatewayRoute.

func (*MockEC2APIMockRecorder) DeleteLocalGatewayRouteRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteLocalGatewayRouteRequest(arg0 interface{}) *gomock.Call

DeleteLocalGatewayRouteRequest indicates an expected call of DeleteLocalGatewayRouteRequest.

func (*MockEC2APIMockRecorder) DeleteLocalGatewayRouteTable added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteLocalGatewayRouteTable(arg0 interface{}) *gomock.Call

DeleteLocalGatewayRouteTable indicates an expected call of DeleteLocalGatewayRouteTable.

func (*MockEC2APIMockRecorder) DeleteLocalGatewayRouteTableRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteLocalGatewayRouteTableRequest(arg0 interface{}) *gomock.Call

DeleteLocalGatewayRouteTableRequest indicates an expected call of DeleteLocalGatewayRouteTableRequest.

func (*MockEC2APIMockRecorder) DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociation added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociation(arg0 interface{}) *gomock.Call

DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociation indicates an expected call of DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociation.

func (*MockEC2APIMockRecorder) DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationRequest(arg0 interface{}) *gomock.Call

DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationRequest indicates an expected call of DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationRequest.

func (*MockEC2APIMockRecorder) DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationWithContext indicates an expected call of DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationWithContext.

func (*MockEC2APIMockRecorder) DeleteLocalGatewayRouteTableVpcAssociation added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteLocalGatewayRouteTableVpcAssociation(arg0 interface{}) *gomock.Call

DeleteLocalGatewayRouteTableVpcAssociation indicates an expected call of DeleteLocalGatewayRouteTableVpcAssociation.

func (*MockEC2APIMockRecorder) DeleteLocalGatewayRouteTableVpcAssociationRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteLocalGatewayRouteTableVpcAssociationRequest(arg0 interface{}) *gomock.Call

DeleteLocalGatewayRouteTableVpcAssociationRequest indicates an expected call of DeleteLocalGatewayRouteTableVpcAssociationRequest.

func (*MockEC2APIMockRecorder) DeleteLocalGatewayRouteTableVpcAssociationWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteLocalGatewayRouteTableVpcAssociationWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteLocalGatewayRouteTableVpcAssociationWithContext indicates an expected call of DeleteLocalGatewayRouteTableVpcAssociationWithContext.

func (*MockEC2APIMockRecorder) DeleteLocalGatewayRouteTableWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteLocalGatewayRouteTableWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteLocalGatewayRouteTableWithContext indicates an expected call of DeleteLocalGatewayRouteTableWithContext.

func (*MockEC2APIMockRecorder) DeleteLocalGatewayRouteWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteLocalGatewayRouteWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteLocalGatewayRouteWithContext indicates an expected call of DeleteLocalGatewayRouteWithContext.

func (*MockEC2APIMockRecorder) DeleteManagedPrefixList added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteManagedPrefixList(arg0 interface{}) *gomock.Call

DeleteManagedPrefixList indicates an expected call of DeleteManagedPrefixList.

func (*MockEC2APIMockRecorder) DeleteManagedPrefixListRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteManagedPrefixListRequest(arg0 interface{}) *gomock.Call

DeleteManagedPrefixListRequest indicates an expected call of DeleteManagedPrefixListRequest.

func (*MockEC2APIMockRecorder) DeleteManagedPrefixListWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteManagedPrefixListWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteManagedPrefixListWithContext indicates an expected call of DeleteManagedPrefixListWithContext.

func (*MockEC2APIMockRecorder) DeleteNatGateway added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteNatGateway(arg0 interface{}) *gomock.Call

DeleteNatGateway indicates an expected call of DeleteNatGateway.

func (*MockEC2APIMockRecorder) DeleteNatGatewayRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteNatGatewayRequest(arg0 interface{}) *gomock.Call

DeleteNatGatewayRequest indicates an expected call of DeleteNatGatewayRequest.

func (*MockEC2APIMockRecorder) DeleteNatGatewayWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteNatGatewayWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteNatGatewayWithContext indicates an expected call of DeleteNatGatewayWithContext.

func (*MockEC2APIMockRecorder) DeleteNetworkAcl added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteNetworkAcl(arg0 interface{}) *gomock.Call

DeleteNetworkAcl indicates an expected call of DeleteNetworkAcl.

func (*MockEC2APIMockRecorder) DeleteNetworkAclEntry added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteNetworkAclEntry(arg0 interface{}) *gomock.Call

DeleteNetworkAclEntry indicates an expected call of DeleteNetworkAclEntry.

func (*MockEC2APIMockRecorder) DeleteNetworkAclEntryRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteNetworkAclEntryRequest(arg0 interface{}) *gomock.Call

DeleteNetworkAclEntryRequest indicates an expected call of DeleteNetworkAclEntryRequest.

func (*MockEC2APIMockRecorder) DeleteNetworkAclEntryWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteNetworkAclEntryWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteNetworkAclEntryWithContext indicates an expected call of DeleteNetworkAclEntryWithContext.

func (*MockEC2APIMockRecorder) DeleteNetworkAclRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteNetworkAclRequest(arg0 interface{}) *gomock.Call

DeleteNetworkAclRequest indicates an expected call of DeleteNetworkAclRequest.

func (*MockEC2APIMockRecorder) DeleteNetworkAclWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteNetworkAclWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteNetworkAclWithContext indicates an expected call of DeleteNetworkAclWithContext.

func (*MockEC2APIMockRecorder) DeleteNetworkInsightsAccessScope added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteNetworkInsightsAccessScope(arg0 interface{}) *gomock.Call

DeleteNetworkInsightsAccessScope indicates an expected call of DeleteNetworkInsightsAccessScope.

func (*MockEC2APIMockRecorder) DeleteNetworkInsightsAccessScopeAnalysis added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteNetworkInsightsAccessScopeAnalysis(arg0 interface{}) *gomock.Call

DeleteNetworkInsightsAccessScopeAnalysis indicates an expected call of DeleteNetworkInsightsAccessScopeAnalysis.

func (*MockEC2APIMockRecorder) DeleteNetworkInsightsAccessScopeAnalysisRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteNetworkInsightsAccessScopeAnalysisRequest(arg0 interface{}) *gomock.Call

DeleteNetworkInsightsAccessScopeAnalysisRequest indicates an expected call of DeleteNetworkInsightsAccessScopeAnalysisRequest.

func (*MockEC2APIMockRecorder) DeleteNetworkInsightsAccessScopeAnalysisWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteNetworkInsightsAccessScopeAnalysisWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteNetworkInsightsAccessScopeAnalysisWithContext indicates an expected call of DeleteNetworkInsightsAccessScopeAnalysisWithContext.

func (*MockEC2APIMockRecorder) DeleteNetworkInsightsAccessScopeRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteNetworkInsightsAccessScopeRequest(arg0 interface{}) *gomock.Call

DeleteNetworkInsightsAccessScopeRequest indicates an expected call of DeleteNetworkInsightsAccessScopeRequest.

func (*MockEC2APIMockRecorder) DeleteNetworkInsightsAccessScopeWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteNetworkInsightsAccessScopeWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteNetworkInsightsAccessScopeWithContext indicates an expected call of DeleteNetworkInsightsAccessScopeWithContext.

func (*MockEC2APIMockRecorder) DeleteNetworkInsightsAnalysis added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteNetworkInsightsAnalysis(arg0 interface{}) *gomock.Call

DeleteNetworkInsightsAnalysis indicates an expected call of DeleteNetworkInsightsAnalysis.

func (*MockEC2APIMockRecorder) DeleteNetworkInsightsAnalysisRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteNetworkInsightsAnalysisRequest(arg0 interface{}) *gomock.Call

DeleteNetworkInsightsAnalysisRequest indicates an expected call of DeleteNetworkInsightsAnalysisRequest.

func (*MockEC2APIMockRecorder) DeleteNetworkInsightsAnalysisWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteNetworkInsightsAnalysisWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteNetworkInsightsAnalysisWithContext indicates an expected call of DeleteNetworkInsightsAnalysisWithContext.

func (*MockEC2APIMockRecorder) DeleteNetworkInsightsPath added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteNetworkInsightsPath(arg0 interface{}) *gomock.Call

DeleteNetworkInsightsPath indicates an expected call of DeleteNetworkInsightsPath.

func (*MockEC2APIMockRecorder) DeleteNetworkInsightsPathRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteNetworkInsightsPathRequest(arg0 interface{}) *gomock.Call

DeleteNetworkInsightsPathRequest indicates an expected call of DeleteNetworkInsightsPathRequest.

func (*MockEC2APIMockRecorder) DeleteNetworkInsightsPathWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteNetworkInsightsPathWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteNetworkInsightsPathWithContext indicates an expected call of DeleteNetworkInsightsPathWithContext.

func (*MockEC2APIMockRecorder) DeleteNetworkInterface added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteNetworkInterface(arg0 interface{}) *gomock.Call

DeleteNetworkInterface indicates an expected call of DeleteNetworkInterface.

func (*MockEC2APIMockRecorder) DeleteNetworkInterfacePermission added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteNetworkInterfacePermission(arg0 interface{}) *gomock.Call

DeleteNetworkInterfacePermission indicates an expected call of DeleteNetworkInterfacePermission.

func (*MockEC2APIMockRecorder) DeleteNetworkInterfacePermissionRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteNetworkInterfacePermissionRequest(arg0 interface{}) *gomock.Call

DeleteNetworkInterfacePermissionRequest indicates an expected call of DeleteNetworkInterfacePermissionRequest.

func (*MockEC2APIMockRecorder) DeleteNetworkInterfacePermissionWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteNetworkInterfacePermissionWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteNetworkInterfacePermissionWithContext indicates an expected call of DeleteNetworkInterfacePermissionWithContext.

func (*MockEC2APIMockRecorder) DeleteNetworkInterfaceRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteNetworkInterfaceRequest(arg0 interface{}) *gomock.Call

DeleteNetworkInterfaceRequest indicates an expected call of DeleteNetworkInterfaceRequest.

func (*MockEC2APIMockRecorder) DeleteNetworkInterfaceWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteNetworkInterfaceWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteNetworkInterfaceWithContext indicates an expected call of DeleteNetworkInterfaceWithContext.

func (*MockEC2APIMockRecorder) DeletePlacementGroup added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeletePlacementGroup(arg0 interface{}) *gomock.Call

DeletePlacementGroup indicates an expected call of DeletePlacementGroup.

func (*MockEC2APIMockRecorder) DeletePlacementGroupRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeletePlacementGroupRequest(arg0 interface{}) *gomock.Call

DeletePlacementGroupRequest indicates an expected call of DeletePlacementGroupRequest.

func (*MockEC2APIMockRecorder) DeletePlacementGroupWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeletePlacementGroupWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeletePlacementGroupWithContext indicates an expected call of DeletePlacementGroupWithContext.

func (*MockEC2APIMockRecorder) DeletePublicIpv4Pool added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeletePublicIpv4Pool(arg0 interface{}) *gomock.Call

DeletePublicIpv4Pool indicates an expected call of DeletePublicIpv4Pool.

func (*MockEC2APIMockRecorder) DeletePublicIpv4PoolRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeletePublicIpv4PoolRequest(arg0 interface{}) *gomock.Call

DeletePublicIpv4PoolRequest indicates an expected call of DeletePublicIpv4PoolRequest.

func (*MockEC2APIMockRecorder) DeletePublicIpv4PoolWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeletePublicIpv4PoolWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeletePublicIpv4PoolWithContext indicates an expected call of DeletePublicIpv4PoolWithContext.

func (*MockEC2APIMockRecorder) DeleteQueuedReservedInstances added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteQueuedReservedInstances(arg0 interface{}) *gomock.Call

DeleteQueuedReservedInstances indicates an expected call of DeleteQueuedReservedInstances.

func (*MockEC2APIMockRecorder) DeleteQueuedReservedInstancesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteQueuedReservedInstancesRequest(arg0 interface{}) *gomock.Call

DeleteQueuedReservedInstancesRequest indicates an expected call of DeleteQueuedReservedInstancesRequest.

func (*MockEC2APIMockRecorder) DeleteQueuedReservedInstancesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteQueuedReservedInstancesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteQueuedReservedInstancesWithContext indicates an expected call of DeleteQueuedReservedInstancesWithContext.

func (*MockEC2APIMockRecorder) DeleteRoute added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteRoute(arg0 interface{}) *gomock.Call

DeleteRoute indicates an expected call of DeleteRoute.

func (*MockEC2APIMockRecorder) DeleteRouteRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteRouteRequest(arg0 interface{}) *gomock.Call

DeleteRouteRequest indicates an expected call of DeleteRouteRequest.

func (*MockEC2APIMockRecorder) DeleteRouteTable added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteRouteTable(arg0 interface{}) *gomock.Call

DeleteRouteTable indicates an expected call of DeleteRouteTable.

func (*MockEC2APIMockRecorder) DeleteRouteTableRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteRouteTableRequest(arg0 interface{}) *gomock.Call

DeleteRouteTableRequest indicates an expected call of DeleteRouteTableRequest.

func (*MockEC2APIMockRecorder) DeleteRouteTableWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteRouteTableWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteRouteTableWithContext indicates an expected call of DeleteRouteTableWithContext.

func (*MockEC2APIMockRecorder) DeleteRouteWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteRouteWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteRouteWithContext indicates an expected call of DeleteRouteWithContext.

func (*MockEC2APIMockRecorder) DeleteSecurityGroup added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteSecurityGroup(arg0 interface{}) *gomock.Call

DeleteSecurityGroup indicates an expected call of DeleteSecurityGroup.

func (*MockEC2APIMockRecorder) DeleteSecurityGroupRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteSecurityGroupRequest(arg0 interface{}) *gomock.Call

DeleteSecurityGroupRequest indicates an expected call of DeleteSecurityGroupRequest.

func (*MockEC2APIMockRecorder) DeleteSecurityGroupWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteSecurityGroupWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteSecurityGroupWithContext indicates an expected call of DeleteSecurityGroupWithContext.

func (*MockEC2APIMockRecorder) DeleteSnapshot added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteSnapshot(arg0 interface{}) *gomock.Call

DeleteSnapshot indicates an expected call of DeleteSnapshot.

func (*MockEC2APIMockRecorder) DeleteSnapshotRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteSnapshotRequest(arg0 interface{}) *gomock.Call

DeleteSnapshotRequest indicates an expected call of DeleteSnapshotRequest.

func (*MockEC2APIMockRecorder) DeleteSnapshotWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteSnapshotWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteSnapshotWithContext indicates an expected call of DeleteSnapshotWithContext.

func (*MockEC2APIMockRecorder) DeleteSpotDatafeedSubscription added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteSpotDatafeedSubscription(arg0 interface{}) *gomock.Call

DeleteSpotDatafeedSubscription indicates an expected call of DeleteSpotDatafeedSubscription.

func (*MockEC2APIMockRecorder) DeleteSpotDatafeedSubscriptionRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteSpotDatafeedSubscriptionRequest(arg0 interface{}) *gomock.Call

DeleteSpotDatafeedSubscriptionRequest indicates an expected call of DeleteSpotDatafeedSubscriptionRequest.

func (*MockEC2APIMockRecorder) DeleteSpotDatafeedSubscriptionWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteSpotDatafeedSubscriptionWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteSpotDatafeedSubscriptionWithContext indicates an expected call of DeleteSpotDatafeedSubscriptionWithContext.

func (*MockEC2APIMockRecorder) DeleteSubnet added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteSubnet(arg0 interface{}) *gomock.Call

DeleteSubnet indicates an expected call of DeleteSubnet.

func (*MockEC2APIMockRecorder) DeleteSubnetCidrReservation added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteSubnetCidrReservation(arg0 interface{}) *gomock.Call

DeleteSubnetCidrReservation indicates an expected call of DeleteSubnetCidrReservation.

func (*MockEC2APIMockRecorder) DeleteSubnetCidrReservationRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteSubnetCidrReservationRequest(arg0 interface{}) *gomock.Call

DeleteSubnetCidrReservationRequest indicates an expected call of DeleteSubnetCidrReservationRequest.

func (*MockEC2APIMockRecorder) DeleteSubnetCidrReservationWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteSubnetCidrReservationWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteSubnetCidrReservationWithContext indicates an expected call of DeleteSubnetCidrReservationWithContext.

func (*MockEC2APIMockRecorder) DeleteSubnetRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteSubnetRequest(arg0 interface{}) *gomock.Call

DeleteSubnetRequest indicates an expected call of DeleteSubnetRequest.

func (*MockEC2APIMockRecorder) DeleteSubnetWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteSubnetWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteSubnetWithContext indicates an expected call of DeleteSubnetWithContext.

func (*MockEC2APIMockRecorder) DeleteTags added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteTags(arg0 interface{}) *gomock.Call

DeleteTags indicates an expected call of DeleteTags.

func (*MockEC2APIMockRecorder) DeleteTagsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteTagsRequest(arg0 interface{}) *gomock.Call

DeleteTagsRequest indicates an expected call of DeleteTagsRequest.

func (*MockEC2APIMockRecorder) DeleteTagsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteTagsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteTagsWithContext indicates an expected call of DeleteTagsWithContext.

func (*MockEC2APIMockRecorder) DeleteTrafficMirrorFilter added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteTrafficMirrorFilter(arg0 interface{}) *gomock.Call

DeleteTrafficMirrorFilter indicates an expected call of DeleteTrafficMirrorFilter.

func (*MockEC2APIMockRecorder) DeleteTrafficMirrorFilterRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteTrafficMirrorFilterRequest(arg0 interface{}) *gomock.Call

DeleteTrafficMirrorFilterRequest indicates an expected call of DeleteTrafficMirrorFilterRequest.

func (*MockEC2APIMockRecorder) DeleteTrafficMirrorFilterRule added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteTrafficMirrorFilterRule(arg0 interface{}) *gomock.Call

DeleteTrafficMirrorFilterRule indicates an expected call of DeleteTrafficMirrorFilterRule.

func (*MockEC2APIMockRecorder) DeleteTrafficMirrorFilterRuleRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteTrafficMirrorFilterRuleRequest(arg0 interface{}) *gomock.Call

DeleteTrafficMirrorFilterRuleRequest indicates an expected call of DeleteTrafficMirrorFilterRuleRequest.

func (*MockEC2APIMockRecorder) DeleteTrafficMirrorFilterRuleWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteTrafficMirrorFilterRuleWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteTrafficMirrorFilterRuleWithContext indicates an expected call of DeleteTrafficMirrorFilterRuleWithContext.

func (*MockEC2APIMockRecorder) DeleteTrafficMirrorFilterWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteTrafficMirrorFilterWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteTrafficMirrorFilterWithContext indicates an expected call of DeleteTrafficMirrorFilterWithContext.

func (*MockEC2APIMockRecorder) DeleteTrafficMirrorSession added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteTrafficMirrorSession(arg0 interface{}) *gomock.Call

DeleteTrafficMirrorSession indicates an expected call of DeleteTrafficMirrorSession.

func (*MockEC2APIMockRecorder) DeleteTrafficMirrorSessionRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteTrafficMirrorSessionRequest(arg0 interface{}) *gomock.Call

DeleteTrafficMirrorSessionRequest indicates an expected call of DeleteTrafficMirrorSessionRequest.

func (*MockEC2APIMockRecorder) DeleteTrafficMirrorSessionWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteTrafficMirrorSessionWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteTrafficMirrorSessionWithContext indicates an expected call of DeleteTrafficMirrorSessionWithContext.

func (*MockEC2APIMockRecorder) DeleteTrafficMirrorTarget added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteTrafficMirrorTarget(arg0 interface{}) *gomock.Call

DeleteTrafficMirrorTarget indicates an expected call of DeleteTrafficMirrorTarget.

func (*MockEC2APIMockRecorder) DeleteTrafficMirrorTargetRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteTrafficMirrorTargetRequest(arg0 interface{}) *gomock.Call

DeleteTrafficMirrorTargetRequest indicates an expected call of DeleteTrafficMirrorTargetRequest.

func (*MockEC2APIMockRecorder) DeleteTrafficMirrorTargetWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteTrafficMirrorTargetWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteTrafficMirrorTargetWithContext indicates an expected call of DeleteTrafficMirrorTargetWithContext.

func (*MockEC2APIMockRecorder) DeleteTransitGateway added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteTransitGateway(arg0 interface{}) *gomock.Call

DeleteTransitGateway indicates an expected call of DeleteTransitGateway.

func (*MockEC2APIMockRecorder) DeleteTransitGatewayConnect added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteTransitGatewayConnect(arg0 interface{}) *gomock.Call

DeleteTransitGatewayConnect indicates an expected call of DeleteTransitGatewayConnect.

func (*MockEC2APIMockRecorder) DeleteTransitGatewayConnectPeer added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteTransitGatewayConnectPeer(arg0 interface{}) *gomock.Call

DeleteTransitGatewayConnectPeer indicates an expected call of DeleteTransitGatewayConnectPeer.

func (*MockEC2APIMockRecorder) DeleteTransitGatewayConnectPeerRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteTransitGatewayConnectPeerRequest(arg0 interface{}) *gomock.Call

DeleteTransitGatewayConnectPeerRequest indicates an expected call of DeleteTransitGatewayConnectPeerRequest.

func (*MockEC2APIMockRecorder) DeleteTransitGatewayConnectPeerWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteTransitGatewayConnectPeerWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteTransitGatewayConnectPeerWithContext indicates an expected call of DeleteTransitGatewayConnectPeerWithContext.

func (*MockEC2APIMockRecorder) DeleteTransitGatewayConnectRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteTransitGatewayConnectRequest(arg0 interface{}) *gomock.Call

DeleteTransitGatewayConnectRequest indicates an expected call of DeleteTransitGatewayConnectRequest.

func (*MockEC2APIMockRecorder) DeleteTransitGatewayConnectWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteTransitGatewayConnectWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteTransitGatewayConnectWithContext indicates an expected call of DeleteTransitGatewayConnectWithContext.

func (*MockEC2APIMockRecorder) DeleteTransitGatewayMulticastDomain added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteTransitGatewayMulticastDomain(arg0 interface{}) *gomock.Call

DeleteTransitGatewayMulticastDomain indicates an expected call of DeleteTransitGatewayMulticastDomain.

func (*MockEC2APIMockRecorder) DeleteTransitGatewayMulticastDomainRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteTransitGatewayMulticastDomainRequest(arg0 interface{}) *gomock.Call

DeleteTransitGatewayMulticastDomainRequest indicates an expected call of DeleteTransitGatewayMulticastDomainRequest.

func (*MockEC2APIMockRecorder) DeleteTransitGatewayMulticastDomainWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteTransitGatewayMulticastDomainWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteTransitGatewayMulticastDomainWithContext indicates an expected call of DeleteTransitGatewayMulticastDomainWithContext.

func (*MockEC2APIMockRecorder) DeleteTransitGatewayPeeringAttachment added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteTransitGatewayPeeringAttachment(arg0 interface{}) *gomock.Call

DeleteTransitGatewayPeeringAttachment indicates an expected call of DeleteTransitGatewayPeeringAttachment.

func (*MockEC2APIMockRecorder) DeleteTransitGatewayPeeringAttachmentRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteTransitGatewayPeeringAttachmentRequest(arg0 interface{}) *gomock.Call

DeleteTransitGatewayPeeringAttachmentRequest indicates an expected call of DeleteTransitGatewayPeeringAttachmentRequest.

func (*MockEC2APIMockRecorder) DeleteTransitGatewayPeeringAttachmentWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteTransitGatewayPeeringAttachmentWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteTransitGatewayPeeringAttachmentWithContext indicates an expected call of DeleteTransitGatewayPeeringAttachmentWithContext.

func (*MockEC2APIMockRecorder) DeleteTransitGatewayPolicyTable added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteTransitGatewayPolicyTable(arg0 interface{}) *gomock.Call

DeleteTransitGatewayPolicyTable indicates an expected call of DeleteTransitGatewayPolicyTable.

func (*MockEC2APIMockRecorder) DeleteTransitGatewayPolicyTableRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteTransitGatewayPolicyTableRequest(arg0 interface{}) *gomock.Call

DeleteTransitGatewayPolicyTableRequest indicates an expected call of DeleteTransitGatewayPolicyTableRequest.

func (*MockEC2APIMockRecorder) DeleteTransitGatewayPolicyTableWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteTransitGatewayPolicyTableWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteTransitGatewayPolicyTableWithContext indicates an expected call of DeleteTransitGatewayPolicyTableWithContext.

func (*MockEC2APIMockRecorder) DeleteTransitGatewayPrefixListReference added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteTransitGatewayPrefixListReference(arg0 interface{}) *gomock.Call

DeleteTransitGatewayPrefixListReference indicates an expected call of DeleteTransitGatewayPrefixListReference.

func (*MockEC2APIMockRecorder) DeleteTransitGatewayPrefixListReferenceRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteTransitGatewayPrefixListReferenceRequest(arg0 interface{}) *gomock.Call

DeleteTransitGatewayPrefixListReferenceRequest indicates an expected call of DeleteTransitGatewayPrefixListReferenceRequest.

func (*MockEC2APIMockRecorder) DeleteTransitGatewayPrefixListReferenceWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteTransitGatewayPrefixListReferenceWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteTransitGatewayPrefixListReferenceWithContext indicates an expected call of DeleteTransitGatewayPrefixListReferenceWithContext.

func (*MockEC2APIMockRecorder) DeleteTransitGatewayRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteTransitGatewayRequest(arg0 interface{}) *gomock.Call

DeleteTransitGatewayRequest indicates an expected call of DeleteTransitGatewayRequest.

func (*MockEC2APIMockRecorder) DeleteTransitGatewayRoute added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteTransitGatewayRoute(arg0 interface{}) *gomock.Call

DeleteTransitGatewayRoute indicates an expected call of DeleteTransitGatewayRoute.

func (*MockEC2APIMockRecorder) DeleteTransitGatewayRouteRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteTransitGatewayRouteRequest(arg0 interface{}) *gomock.Call

DeleteTransitGatewayRouteRequest indicates an expected call of DeleteTransitGatewayRouteRequest.

func (*MockEC2APIMockRecorder) DeleteTransitGatewayRouteTable added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteTransitGatewayRouteTable(arg0 interface{}) *gomock.Call

DeleteTransitGatewayRouteTable indicates an expected call of DeleteTransitGatewayRouteTable.

func (*MockEC2APIMockRecorder) DeleteTransitGatewayRouteTableAnnouncement added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteTransitGatewayRouteTableAnnouncement(arg0 interface{}) *gomock.Call

DeleteTransitGatewayRouteTableAnnouncement indicates an expected call of DeleteTransitGatewayRouteTableAnnouncement.

func (*MockEC2APIMockRecorder) DeleteTransitGatewayRouteTableAnnouncementRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteTransitGatewayRouteTableAnnouncementRequest(arg0 interface{}) *gomock.Call

DeleteTransitGatewayRouteTableAnnouncementRequest indicates an expected call of DeleteTransitGatewayRouteTableAnnouncementRequest.

func (*MockEC2APIMockRecorder) DeleteTransitGatewayRouteTableAnnouncementWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteTransitGatewayRouteTableAnnouncementWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteTransitGatewayRouteTableAnnouncementWithContext indicates an expected call of DeleteTransitGatewayRouteTableAnnouncementWithContext.

func (*MockEC2APIMockRecorder) DeleteTransitGatewayRouteTableRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteTransitGatewayRouteTableRequest(arg0 interface{}) *gomock.Call

DeleteTransitGatewayRouteTableRequest indicates an expected call of DeleteTransitGatewayRouteTableRequest.

func (*MockEC2APIMockRecorder) DeleteTransitGatewayRouteTableWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteTransitGatewayRouteTableWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteTransitGatewayRouteTableWithContext indicates an expected call of DeleteTransitGatewayRouteTableWithContext.

func (*MockEC2APIMockRecorder) DeleteTransitGatewayRouteWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteTransitGatewayRouteWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteTransitGatewayRouteWithContext indicates an expected call of DeleteTransitGatewayRouteWithContext.

func (*MockEC2APIMockRecorder) DeleteTransitGatewayVpcAttachment added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteTransitGatewayVpcAttachment(arg0 interface{}) *gomock.Call

DeleteTransitGatewayVpcAttachment indicates an expected call of DeleteTransitGatewayVpcAttachment.

func (*MockEC2APIMockRecorder) DeleteTransitGatewayVpcAttachmentRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteTransitGatewayVpcAttachmentRequest(arg0 interface{}) *gomock.Call

DeleteTransitGatewayVpcAttachmentRequest indicates an expected call of DeleteTransitGatewayVpcAttachmentRequest.

func (*MockEC2APIMockRecorder) DeleteTransitGatewayVpcAttachmentWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteTransitGatewayVpcAttachmentWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteTransitGatewayVpcAttachmentWithContext indicates an expected call of DeleteTransitGatewayVpcAttachmentWithContext.

func (*MockEC2APIMockRecorder) DeleteTransitGatewayWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteTransitGatewayWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteTransitGatewayWithContext indicates an expected call of DeleteTransitGatewayWithContext.

func (*MockEC2APIMockRecorder) DeleteVerifiedAccessEndpoint added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteVerifiedAccessEndpoint(arg0 interface{}) *gomock.Call

DeleteVerifiedAccessEndpoint indicates an expected call of DeleteVerifiedAccessEndpoint.

func (*MockEC2APIMockRecorder) DeleteVerifiedAccessEndpointRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteVerifiedAccessEndpointRequest(arg0 interface{}) *gomock.Call

DeleteVerifiedAccessEndpointRequest indicates an expected call of DeleteVerifiedAccessEndpointRequest.

func (*MockEC2APIMockRecorder) DeleteVerifiedAccessEndpointWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteVerifiedAccessEndpointWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteVerifiedAccessEndpointWithContext indicates an expected call of DeleteVerifiedAccessEndpointWithContext.

func (*MockEC2APIMockRecorder) DeleteVerifiedAccessGroup added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteVerifiedAccessGroup(arg0 interface{}) *gomock.Call

DeleteVerifiedAccessGroup indicates an expected call of DeleteVerifiedAccessGroup.

func (*MockEC2APIMockRecorder) DeleteVerifiedAccessGroupRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteVerifiedAccessGroupRequest(arg0 interface{}) *gomock.Call

DeleteVerifiedAccessGroupRequest indicates an expected call of DeleteVerifiedAccessGroupRequest.

func (*MockEC2APIMockRecorder) DeleteVerifiedAccessGroupWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteVerifiedAccessGroupWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteVerifiedAccessGroupWithContext indicates an expected call of DeleteVerifiedAccessGroupWithContext.

func (*MockEC2APIMockRecorder) DeleteVerifiedAccessInstance added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteVerifiedAccessInstance(arg0 interface{}) *gomock.Call

DeleteVerifiedAccessInstance indicates an expected call of DeleteVerifiedAccessInstance.

func (*MockEC2APIMockRecorder) DeleteVerifiedAccessInstanceRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteVerifiedAccessInstanceRequest(arg0 interface{}) *gomock.Call

DeleteVerifiedAccessInstanceRequest indicates an expected call of DeleteVerifiedAccessInstanceRequest.

func (*MockEC2APIMockRecorder) DeleteVerifiedAccessInstanceWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteVerifiedAccessInstanceWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteVerifiedAccessInstanceWithContext indicates an expected call of DeleteVerifiedAccessInstanceWithContext.

func (*MockEC2APIMockRecorder) DeleteVerifiedAccessTrustProvider added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteVerifiedAccessTrustProvider(arg0 interface{}) *gomock.Call

DeleteVerifiedAccessTrustProvider indicates an expected call of DeleteVerifiedAccessTrustProvider.

func (*MockEC2APIMockRecorder) DeleteVerifiedAccessTrustProviderRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteVerifiedAccessTrustProviderRequest(arg0 interface{}) *gomock.Call

DeleteVerifiedAccessTrustProviderRequest indicates an expected call of DeleteVerifiedAccessTrustProviderRequest.

func (*MockEC2APIMockRecorder) DeleteVerifiedAccessTrustProviderWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteVerifiedAccessTrustProviderWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteVerifiedAccessTrustProviderWithContext indicates an expected call of DeleteVerifiedAccessTrustProviderWithContext.

func (*MockEC2APIMockRecorder) DeleteVolume added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteVolume(arg0 interface{}) *gomock.Call

DeleteVolume indicates an expected call of DeleteVolume.

func (*MockEC2APIMockRecorder) DeleteVolumeRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteVolumeRequest(arg0 interface{}) *gomock.Call

DeleteVolumeRequest indicates an expected call of DeleteVolumeRequest.

func (*MockEC2APIMockRecorder) DeleteVolumeWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteVolumeWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteVolumeWithContext indicates an expected call of DeleteVolumeWithContext.

func (*MockEC2APIMockRecorder) DeleteVpc added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteVpc(arg0 interface{}) *gomock.Call

DeleteVpc indicates an expected call of DeleteVpc.

func (*MockEC2APIMockRecorder) DeleteVpcEndpointConnectionNotifications added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteVpcEndpointConnectionNotifications(arg0 interface{}) *gomock.Call

DeleteVpcEndpointConnectionNotifications indicates an expected call of DeleteVpcEndpointConnectionNotifications.

func (*MockEC2APIMockRecorder) DeleteVpcEndpointConnectionNotificationsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteVpcEndpointConnectionNotificationsRequest(arg0 interface{}) *gomock.Call

DeleteVpcEndpointConnectionNotificationsRequest indicates an expected call of DeleteVpcEndpointConnectionNotificationsRequest.

func (*MockEC2APIMockRecorder) DeleteVpcEndpointConnectionNotificationsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteVpcEndpointConnectionNotificationsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteVpcEndpointConnectionNotificationsWithContext indicates an expected call of DeleteVpcEndpointConnectionNotificationsWithContext.

func (*MockEC2APIMockRecorder) DeleteVpcEndpointServiceConfigurations added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteVpcEndpointServiceConfigurations(arg0 interface{}) *gomock.Call

DeleteVpcEndpointServiceConfigurations indicates an expected call of DeleteVpcEndpointServiceConfigurations.

func (*MockEC2APIMockRecorder) DeleteVpcEndpointServiceConfigurationsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteVpcEndpointServiceConfigurationsRequest(arg0 interface{}) *gomock.Call

DeleteVpcEndpointServiceConfigurationsRequest indicates an expected call of DeleteVpcEndpointServiceConfigurationsRequest.

func (*MockEC2APIMockRecorder) DeleteVpcEndpointServiceConfigurationsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteVpcEndpointServiceConfigurationsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteVpcEndpointServiceConfigurationsWithContext indicates an expected call of DeleteVpcEndpointServiceConfigurationsWithContext.

func (*MockEC2APIMockRecorder) DeleteVpcEndpoints added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteVpcEndpoints(arg0 interface{}) *gomock.Call

DeleteVpcEndpoints indicates an expected call of DeleteVpcEndpoints.

func (*MockEC2APIMockRecorder) DeleteVpcEndpointsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteVpcEndpointsRequest(arg0 interface{}) *gomock.Call

DeleteVpcEndpointsRequest indicates an expected call of DeleteVpcEndpointsRequest.

func (*MockEC2APIMockRecorder) DeleteVpcEndpointsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteVpcEndpointsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteVpcEndpointsWithContext indicates an expected call of DeleteVpcEndpointsWithContext.

func (*MockEC2APIMockRecorder) DeleteVpcPeeringConnection added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteVpcPeeringConnection(arg0 interface{}) *gomock.Call

DeleteVpcPeeringConnection indicates an expected call of DeleteVpcPeeringConnection.

func (*MockEC2APIMockRecorder) DeleteVpcPeeringConnectionRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteVpcPeeringConnectionRequest(arg0 interface{}) *gomock.Call

DeleteVpcPeeringConnectionRequest indicates an expected call of DeleteVpcPeeringConnectionRequest.

func (*MockEC2APIMockRecorder) DeleteVpcPeeringConnectionWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteVpcPeeringConnectionWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteVpcPeeringConnectionWithContext indicates an expected call of DeleteVpcPeeringConnectionWithContext.

func (*MockEC2APIMockRecorder) DeleteVpcRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteVpcRequest(arg0 interface{}) *gomock.Call

DeleteVpcRequest indicates an expected call of DeleteVpcRequest.

func (*MockEC2APIMockRecorder) DeleteVpcWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteVpcWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteVpcWithContext indicates an expected call of DeleteVpcWithContext.

func (*MockEC2APIMockRecorder) DeleteVpnConnection added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteVpnConnection(arg0 interface{}) *gomock.Call

DeleteVpnConnection indicates an expected call of DeleteVpnConnection.

func (*MockEC2APIMockRecorder) DeleteVpnConnectionRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteVpnConnectionRequest(arg0 interface{}) *gomock.Call

DeleteVpnConnectionRequest indicates an expected call of DeleteVpnConnectionRequest.

func (*MockEC2APIMockRecorder) DeleteVpnConnectionRoute added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteVpnConnectionRoute(arg0 interface{}) *gomock.Call

DeleteVpnConnectionRoute indicates an expected call of DeleteVpnConnectionRoute.

func (*MockEC2APIMockRecorder) DeleteVpnConnectionRouteRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteVpnConnectionRouteRequest(arg0 interface{}) *gomock.Call

DeleteVpnConnectionRouteRequest indicates an expected call of DeleteVpnConnectionRouteRequest.

func (*MockEC2APIMockRecorder) DeleteVpnConnectionRouteWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteVpnConnectionRouteWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteVpnConnectionRouteWithContext indicates an expected call of DeleteVpnConnectionRouteWithContext.

func (*MockEC2APIMockRecorder) DeleteVpnConnectionWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteVpnConnectionWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteVpnConnectionWithContext indicates an expected call of DeleteVpnConnectionWithContext.

func (*MockEC2APIMockRecorder) DeleteVpnGateway added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteVpnGateway(arg0 interface{}) *gomock.Call

DeleteVpnGateway indicates an expected call of DeleteVpnGateway.

func (*MockEC2APIMockRecorder) DeleteVpnGatewayRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteVpnGatewayRequest(arg0 interface{}) *gomock.Call

DeleteVpnGatewayRequest indicates an expected call of DeleteVpnGatewayRequest.

func (*MockEC2APIMockRecorder) DeleteVpnGatewayWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeleteVpnGatewayWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeleteVpnGatewayWithContext indicates an expected call of DeleteVpnGatewayWithContext.

func (*MockEC2APIMockRecorder) DeprovisionByoipCidr added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeprovisionByoipCidr(arg0 interface{}) *gomock.Call

DeprovisionByoipCidr indicates an expected call of DeprovisionByoipCidr.

func (*MockEC2APIMockRecorder) DeprovisionByoipCidrRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeprovisionByoipCidrRequest(arg0 interface{}) *gomock.Call

DeprovisionByoipCidrRequest indicates an expected call of DeprovisionByoipCidrRequest.

func (*MockEC2APIMockRecorder) DeprovisionByoipCidrWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeprovisionByoipCidrWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeprovisionByoipCidrWithContext indicates an expected call of DeprovisionByoipCidrWithContext.

func (*MockEC2APIMockRecorder) DeprovisionIpamPoolCidr added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeprovisionIpamPoolCidr(arg0 interface{}) *gomock.Call

DeprovisionIpamPoolCidr indicates an expected call of DeprovisionIpamPoolCidr.

func (*MockEC2APIMockRecorder) DeprovisionIpamPoolCidrRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeprovisionIpamPoolCidrRequest(arg0 interface{}) *gomock.Call

DeprovisionIpamPoolCidrRequest indicates an expected call of DeprovisionIpamPoolCidrRequest.

func (*MockEC2APIMockRecorder) DeprovisionIpamPoolCidrWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeprovisionIpamPoolCidrWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeprovisionIpamPoolCidrWithContext indicates an expected call of DeprovisionIpamPoolCidrWithContext.

func (*MockEC2APIMockRecorder) DeprovisionPublicIpv4PoolCidr added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeprovisionPublicIpv4PoolCidr(arg0 interface{}) *gomock.Call

DeprovisionPublicIpv4PoolCidr indicates an expected call of DeprovisionPublicIpv4PoolCidr.

func (*MockEC2APIMockRecorder) DeprovisionPublicIpv4PoolCidrRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeprovisionPublicIpv4PoolCidrRequest(arg0 interface{}) *gomock.Call

DeprovisionPublicIpv4PoolCidrRequest indicates an expected call of DeprovisionPublicIpv4PoolCidrRequest.

func (*MockEC2APIMockRecorder) DeprovisionPublicIpv4PoolCidrWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeprovisionPublicIpv4PoolCidrWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeprovisionPublicIpv4PoolCidrWithContext indicates an expected call of DeprovisionPublicIpv4PoolCidrWithContext.

func (*MockEC2APIMockRecorder) DeregisterImage added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeregisterImage(arg0 interface{}) *gomock.Call

DeregisterImage indicates an expected call of DeregisterImage.

func (*MockEC2APIMockRecorder) DeregisterImageRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeregisterImageRequest(arg0 interface{}) *gomock.Call

DeregisterImageRequest indicates an expected call of DeregisterImageRequest.

func (*MockEC2APIMockRecorder) DeregisterImageWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeregisterImageWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeregisterImageWithContext indicates an expected call of DeregisterImageWithContext.

func (*MockEC2APIMockRecorder) DeregisterInstanceEventNotificationAttributes added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeregisterInstanceEventNotificationAttributes(arg0 interface{}) *gomock.Call

DeregisterInstanceEventNotificationAttributes indicates an expected call of DeregisterInstanceEventNotificationAttributes.

func (*MockEC2APIMockRecorder) DeregisterInstanceEventNotificationAttributesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeregisterInstanceEventNotificationAttributesRequest(arg0 interface{}) *gomock.Call

DeregisterInstanceEventNotificationAttributesRequest indicates an expected call of DeregisterInstanceEventNotificationAttributesRequest.

func (*MockEC2APIMockRecorder) DeregisterInstanceEventNotificationAttributesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeregisterInstanceEventNotificationAttributesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeregisterInstanceEventNotificationAttributesWithContext indicates an expected call of DeregisterInstanceEventNotificationAttributesWithContext.

func (*MockEC2APIMockRecorder) DeregisterTransitGatewayMulticastGroupMembers added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeregisterTransitGatewayMulticastGroupMembers(arg0 interface{}) *gomock.Call

DeregisterTransitGatewayMulticastGroupMembers indicates an expected call of DeregisterTransitGatewayMulticastGroupMembers.

func (*MockEC2APIMockRecorder) DeregisterTransitGatewayMulticastGroupMembersRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeregisterTransitGatewayMulticastGroupMembersRequest(arg0 interface{}) *gomock.Call

DeregisterTransitGatewayMulticastGroupMembersRequest indicates an expected call of DeregisterTransitGatewayMulticastGroupMembersRequest.

func (*MockEC2APIMockRecorder) DeregisterTransitGatewayMulticastGroupMembersWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeregisterTransitGatewayMulticastGroupMembersWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeregisterTransitGatewayMulticastGroupMembersWithContext indicates an expected call of DeregisterTransitGatewayMulticastGroupMembersWithContext.

func (*MockEC2APIMockRecorder) DeregisterTransitGatewayMulticastGroupSources added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeregisterTransitGatewayMulticastGroupSources(arg0 interface{}) *gomock.Call

DeregisterTransitGatewayMulticastGroupSources indicates an expected call of DeregisterTransitGatewayMulticastGroupSources.

func (*MockEC2APIMockRecorder) DeregisterTransitGatewayMulticastGroupSourcesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeregisterTransitGatewayMulticastGroupSourcesRequest(arg0 interface{}) *gomock.Call

DeregisterTransitGatewayMulticastGroupSourcesRequest indicates an expected call of DeregisterTransitGatewayMulticastGroupSourcesRequest.

func (*MockEC2APIMockRecorder) DeregisterTransitGatewayMulticastGroupSourcesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DeregisterTransitGatewayMulticastGroupSourcesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DeregisterTransitGatewayMulticastGroupSourcesWithContext indicates an expected call of DeregisterTransitGatewayMulticastGroupSourcesWithContext.

func (*MockEC2APIMockRecorder) DescribeAccountAttributes added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeAccountAttributes(arg0 interface{}) *gomock.Call

DescribeAccountAttributes indicates an expected call of DescribeAccountAttributes.

func (*MockEC2APIMockRecorder) DescribeAccountAttributesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeAccountAttributesRequest(arg0 interface{}) *gomock.Call

DescribeAccountAttributesRequest indicates an expected call of DescribeAccountAttributesRequest.

func (*MockEC2APIMockRecorder) DescribeAccountAttributesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeAccountAttributesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeAccountAttributesWithContext indicates an expected call of DescribeAccountAttributesWithContext.

func (*MockEC2APIMockRecorder) DescribeAddressTransfers added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeAddressTransfers(arg0 interface{}) *gomock.Call

DescribeAddressTransfers indicates an expected call of DescribeAddressTransfers.

func (*MockEC2APIMockRecorder) DescribeAddressTransfersPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeAddressTransfersPages(arg0, arg1 interface{}) *gomock.Call

DescribeAddressTransfersPages indicates an expected call of DescribeAddressTransfersPages.

func (*MockEC2APIMockRecorder) DescribeAddressTransfersPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeAddressTransfersPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeAddressTransfersPagesWithContext indicates an expected call of DescribeAddressTransfersPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeAddressTransfersRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeAddressTransfersRequest(arg0 interface{}) *gomock.Call

DescribeAddressTransfersRequest indicates an expected call of DescribeAddressTransfersRequest.

func (*MockEC2APIMockRecorder) DescribeAddressTransfersWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeAddressTransfersWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeAddressTransfersWithContext indicates an expected call of DescribeAddressTransfersWithContext.

func (*MockEC2APIMockRecorder) DescribeAddresses added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeAddresses(arg0 interface{}) *gomock.Call

DescribeAddresses indicates an expected call of DescribeAddresses.

func (*MockEC2APIMockRecorder) DescribeAddressesAttribute added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeAddressesAttribute(arg0 interface{}) *gomock.Call

DescribeAddressesAttribute indicates an expected call of DescribeAddressesAttribute.

func (*MockEC2APIMockRecorder) DescribeAddressesAttributePages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeAddressesAttributePages(arg0, arg1 interface{}) *gomock.Call

DescribeAddressesAttributePages indicates an expected call of DescribeAddressesAttributePages.

func (*MockEC2APIMockRecorder) DescribeAddressesAttributePagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeAddressesAttributePagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeAddressesAttributePagesWithContext indicates an expected call of DescribeAddressesAttributePagesWithContext.

func (*MockEC2APIMockRecorder) DescribeAddressesAttributeRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeAddressesAttributeRequest(arg0 interface{}) *gomock.Call

DescribeAddressesAttributeRequest indicates an expected call of DescribeAddressesAttributeRequest.

func (*MockEC2APIMockRecorder) DescribeAddressesAttributeWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeAddressesAttributeWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeAddressesAttributeWithContext indicates an expected call of DescribeAddressesAttributeWithContext.

func (*MockEC2APIMockRecorder) DescribeAddressesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeAddressesRequest(arg0 interface{}) *gomock.Call

DescribeAddressesRequest indicates an expected call of DescribeAddressesRequest.

func (*MockEC2APIMockRecorder) DescribeAddressesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeAddressesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeAddressesWithContext indicates an expected call of DescribeAddressesWithContext.

func (*MockEC2APIMockRecorder) DescribeAggregateIdFormat added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeAggregateIdFormat(arg0 interface{}) *gomock.Call

DescribeAggregateIdFormat indicates an expected call of DescribeAggregateIdFormat.

func (*MockEC2APIMockRecorder) DescribeAggregateIdFormatRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeAggregateIdFormatRequest(arg0 interface{}) *gomock.Call

DescribeAggregateIdFormatRequest indicates an expected call of DescribeAggregateIdFormatRequest.

func (*MockEC2APIMockRecorder) DescribeAggregateIdFormatWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeAggregateIdFormatWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeAggregateIdFormatWithContext indicates an expected call of DescribeAggregateIdFormatWithContext.

func (*MockEC2APIMockRecorder) DescribeAvailabilityZones added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeAvailabilityZones(arg0 interface{}) *gomock.Call

DescribeAvailabilityZones indicates an expected call of DescribeAvailabilityZones.

func (*MockEC2APIMockRecorder) DescribeAvailabilityZonesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeAvailabilityZonesRequest(arg0 interface{}) *gomock.Call

DescribeAvailabilityZonesRequest indicates an expected call of DescribeAvailabilityZonesRequest.

func (*MockEC2APIMockRecorder) DescribeAvailabilityZonesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeAvailabilityZonesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeAvailabilityZonesWithContext indicates an expected call of DescribeAvailabilityZonesWithContext.

func (*MockEC2APIMockRecorder) DescribeAwsNetworkPerformanceMetricSubscriptions added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeAwsNetworkPerformanceMetricSubscriptions(arg0 interface{}) *gomock.Call

DescribeAwsNetworkPerformanceMetricSubscriptions indicates an expected call of DescribeAwsNetworkPerformanceMetricSubscriptions.

func (*MockEC2APIMockRecorder) DescribeAwsNetworkPerformanceMetricSubscriptionsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeAwsNetworkPerformanceMetricSubscriptionsPages(arg0, arg1 interface{}) *gomock.Call

DescribeAwsNetworkPerformanceMetricSubscriptionsPages indicates an expected call of DescribeAwsNetworkPerformanceMetricSubscriptionsPages.

func (*MockEC2APIMockRecorder) DescribeAwsNetworkPerformanceMetricSubscriptionsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeAwsNetworkPerformanceMetricSubscriptionsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeAwsNetworkPerformanceMetricSubscriptionsPagesWithContext indicates an expected call of DescribeAwsNetworkPerformanceMetricSubscriptionsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeAwsNetworkPerformanceMetricSubscriptionsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeAwsNetworkPerformanceMetricSubscriptionsRequest(arg0 interface{}) *gomock.Call

DescribeAwsNetworkPerformanceMetricSubscriptionsRequest indicates an expected call of DescribeAwsNetworkPerformanceMetricSubscriptionsRequest.

func (*MockEC2APIMockRecorder) DescribeAwsNetworkPerformanceMetricSubscriptionsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeAwsNetworkPerformanceMetricSubscriptionsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeAwsNetworkPerformanceMetricSubscriptionsWithContext indicates an expected call of DescribeAwsNetworkPerformanceMetricSubscriptionsWithContext.

func (*MockEC2APIMockRecorder) DescribeBundleTasks added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeBundleTasks(arg0 interface{}) *gomock.Call

DescribeBundleTasks indicates an expected call of DescribeBundleTasks.

func (*MockEC2APIMockRecorder) DescribeBundleTasksRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeBundleTasksRequest(arg0 interface{}) *gomock.Call

DescribeBundleTasksRequest indicates an expected call of DescribeBundleTasksRequest.

func (*MockEC2APIMockRecorder) DescribeBundleTasksWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeBundleTasksWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeBundleTasksWithContext indicates an expected call of DescribeBundleTasksWithContext.

func (*MockEC2APIMockRecorder) DescribeByoipCidrs added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeByoipCidrs(arg0 interface{}) *gomock.Call

DescribeByoipCidrs indicates an expected call of DescribeByoipCidrs.

func (*MockEC2APIMockRecorder) DescribeByoipCidrsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeByoipCidrsPages(arg0, arg1 interface{}) *gomock.Call

DescribeByoipCidrsPages indicates an expected call of DescribeByoipCidrsPages.

func (*MockEC2APIMockRecorder) DescribeByoipCidrsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeByoipCidrsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeByoipCidrsPagesWithContext indicates an expected call of DescribeByoipCidrsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeByoipCidrsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeByoipCidrsRequest(arg0 interface{}) *gomock.Call

DescribeByoipCidrsRequest indicates an expected call of DescribeByoipCidrsRequest.

func (*MockEC2APIMockRecorder) DescribeByoipCidrsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeByoipCidrsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeByoipCidrsWithContext indicates an expected call of DescribeByoipCidrsWithContext.

func (*MockEC2APIMockRecorder) DescribeCapacityReservationFleets added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeCapacityReservationFleets(arg0 interface{}) *gomock.Call

DescribeCapacityReservationFleets indicates an expected call of DescribeCapacityReservationFleets.

func (*MockEC2APIMockRecorder) DescribeCapacityReservationFleetsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeCapacityReservationFleetsPages(arg0, arg1 interface{}) *gomock.Call

DescribeCapacityReservationFleetsPages indicates an expected call of DescribeCapacityReservationFleetsPages.

func (*MockEC2APIMockRecorder) DescribeCapacityReservationFleetsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeCapacityReservationFleetsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeCapacityReservationFleetsPagesWithContext indicates an expected call of DescribeCapacityReservationFleetsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeCapacityReservationFleetsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeCapacityReservationFleetsRequest(arg0 interface{}) *gomock.Call

DescribeCapacityReservationFleetsRequest indicates an expected call of DescribeCapacityReservationFleetsRequest.

func (*MockEC2APIMockRecorder) DescribeCapacityReservationFleetsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeCapacityReservationFleetsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeCapacityReservationFleetsWithContext indicates an expected call of DescribeCapacityReservationFleetsWithContext.

func (*MockEC2APIMockRecorder) DescribeCapacityReservations added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeCapacityReservations(arg0 interface{}) *gomock.Call

DescribeCapacityReservations indicates an expected call of DescribeCapacityReservations.

func (*MockEC2APIMockRecorder) DescribeCapacityReservationsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeCapacityReservationsPages(arg0, arg1 interface{}) *gomock.Call

DescribeCapacityReservationsPages indicates an expected call of DescribeCapacityReservationsPages.

func (*MockEC2APIMockRecorder) DescribeCapacityReservationsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeCapacityReservationsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeCapacityReservationsPagesWithContext indicates an expected call of DescribeCapacityReservationsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeCapacityReservationsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeCapacityReservationsRequest(arg0 interface{}) *gomock.Call

DescribeCapacityReservationsRequest indicates an expected call of DescribeCapacityReservationsRequest.

func (*MockEC2APIMockRecorder) DescribeCapacityReservationsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeCapacityReservationsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeCapacityReservationsWithContext indicates an expected call of DescribeCapacityReservationsWithContext.

func (*MockEC2APIMockRecorder) DescribeCarrierGateways added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeCarrierGateways(arg0 interface{}) *gomock.Call

DescribeCarrierGateways indicates an expected call of DescribeCarrierGateways.

func (*MockEC2APIMockRecorder) DescribeCarrierGatewaysPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeCarrierGatewaysPages(arg0, arg1 interface{}) *gomock.Call

DescribeCarrierGatewaysPages indicates an expected call of DescribeCarrierGatewaysPages.

func (*MockEC2APIMockRecorder) DescribeCarrierGatewaysPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeCarrierGatewaysPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeCarrierGatewaysPagesWithContext indicates an expected call of DescribeCarrierGatewaysPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeCarrierGatewaysRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeCarrierGatewaysRequest(arg0 interface{}) *gomock.Call

DescribeCarrierGatewaysRequest indicates an expected call of DescribeCarrierGatewaysRequest.

func (*MockEC2APIMockRecorder) DescribeCarrierGatewaysWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeCarrierGatewaysWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeCarrierGatewaysWithContext indicates an expected call of DescribeCarrierGatewaysWithContext.

func (*MockEC2APIMockRecorder) DescribeClassicLinkInstances added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeClassicLinkInstances(arg0 interface{}) *gomock.Call

DescribeClassicLinkInstances indicates an expected call of DescribeClassicLinkInstances.

func (*MockEC2APIMockRecorder) DescribeClassicLinkInstancesPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeClassicLinkInstancesPages(arg0, arg1 interface{}) *gomock.Call

DescribeClassicLinkInstancesPages indicates an expected call of DescribeClassicLinkInstancesPages.

func (*MockEC2APIMockRecorder) DescribeClassicLinkInstancesPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeClassicLinkInstancesPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeClassicLinkInstancesPagesWithContext indicates an expected call of DescribeClassicLinkInstancesPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeClassicLinkInstancesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeClassicLinkInstancesRequest(arg0 interface{}) *gomock.Call

DescribeClassicLinkInstancesRequest indicates an expected call of DescribeClassicLinkInstancesRequest.

func (*MockEC2APIMockRecorder) DescribeClassicLinkInstancesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeClassicLinkInstancesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeClassicLinkInstancesWithContext indicates an expected call of DescribeClassicLinkInstancesWithContext.

func (*MockEC2APIMockRecorder) DescribeClientVpnAuthorizationRules added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeClientVpnAuthorizationRules(arg0 interface{}) *gomock.Call

DescribeClientVpnAuthorizationRules indicates an expected call of DescribeClientVpnAuthorizationRules.

func (*MockEC2APIMockRecorder) DescribeClientVpnAuthorizationRulesPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeClientVpnAuthorizationRulesPages(arg0, arg1 interface{}) *gomock.Call

DescribeClientVpnAuthorizationRulesPages indicates an expected call of DescribeClientVpnAuthorizationRulesPages.

func (*MockEC2APIMockRecorder) DescribeClientVpnAuthorizationRulesPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeClientVpnAuthorizationRulesPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeClientVpnAuthorizationRulesPagesWithContext indicates an expected call of DescribeClientVpnAuthorizationRulesPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeClientVpnAuthorizationRulesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeClientVpnAuthorizationRulesRequest(arg0 interface{}) *gomock.Call

DescribeClientVpnAuthorizationRulesRequest indicates an expected call of DescribeClientVpnAuthorizationRulesRequest.

func (*MockEC2APIMockRecorder) DescribeClientVpnAuthorizationRulesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeClientVpnAuthorizationRulesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeClientVpnAuthorizationRulesWithContext indicates an expected call of DescribeClientVpnAuthorizationRulesWithContext.

func (*MockEC2APIMockRecorder) DescribeClientVpnConnections added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeClientVpnConnections(arg0 interface{}) *gomock.Call

DescribeClientVpnConnections indicates an expected call of DescribeClientVpnConnections.

func (*MockEC2APIMockRecorder) DescribeClientVpnConnectionsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeClientVpnConnectionsPages(arg0, arg1 interface{}) *gomock.Call

DescribeClientVpnConnectionsPages indicates an expected call of DescribeClientVpnConnectionsPages.

func (*MockEC2APIMockRecorder) DescribeClientVpnConnectionsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeClientVpnConnectionsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeClientVpnConnectionsPagesWithContext indicates an expected call of DescribeClientVpnConnectionsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeClientVpnConnectionsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeClientVpnConnectionsRequest(arg0 interface{}) *gomock.Call

DescribeClientVpnConnectionsRequest indicates an expected call of DescribeClientVpnConnectionsRequest.

func (*MockEC2APIMockRecorder) DescribeClientVpnConnectionsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeClientVpnConnectionsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeClientVpnConnectionsWithContext indicates an expected call of DescribeClientVpnConnectionsWithContext.

func (*MockEC2APIMockRecorder) DescribeClientVpnEndpoints added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeClientVpnEndpoints(arg0 interface{}) *gomock.Call

DescribeClientVpnEndpoints indicates an expected call of DescribeClientVpnEndpoints.

func (*MockEC2APIMockRecorder) DescribeClientVpnEndpointsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeClientVpnEndpointsPages(arg0, arg1 interface{}) *gomock.Call

DescribeClientVpnEndpointsPages indicates an expected call of DescribeClientVpnEndpointsPages.

func (*MockEC2APIMockRecorder) DescribeClientVpnEndpointsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeClientVpnEndpointsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeClientVpnEndpointsPagesWithContext indicates an expected call of DescribeClientVpnEndpointsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeClientVpnEndpointsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeClientVpnEndpointsRequest(arg0 interface{}) *gomock.Call

DescribeClientVpnEndpointsRequest indicates an expected call of DescribeClientVpnEndpointsRequest.

func (*MockEC2APIMockRecorder) DescribeClientVpnEndpointsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeClientVpnEndpointsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeClientVpnEndpointsWithContext indicates an expected call of DescribeClientVpnEndpointsWithContext.

func (*MockEC2APIMockRecorder) DescribeClientVpnRoutes added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeClientVpnRoutes(arg0 interface{}) *gomock.Call

DescribeClientVpnRoutes indicates an expected call of DescribeClientVpnRoutes.

func (*MockEC2APIMockRecorder) DescribeClientVpnRoutesPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeClientVpnRoutesPages(arg0, arg1 interface{}) *gomock.Call

DescribeClientVpnRoutesPages indicates an expected call of DescribeClientVpnRoutesPages.

func (*MockEC2APIMockRecorder) DescribeClientVpnRoutesPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeClientVpnRoutesPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeClientVpnRoutesPagesWithContext indicates an expected call of DescribeClientVpnRoutesPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeClientVpnRoutesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeClientVpnRoutesRequest(arg0 interface{}) *gomock.Call

DescribeClientVpnRoutesRequest indicates an expected call of DescribeClientVpnRoutesRequest.

func (*MockEC2APIMockRecorder) DescribeClientVpnRoutesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeClientVpnRoutesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeClientVpnRoutesWithContext indicates an expected call of DescribeClientVpnRoutesWithContext.

func (*MockEC2APIMockRecorder) DescribeClientVpnTargetNetworks added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeClientVpnTargetNetworks(arg0 interface{}) *gomock.Call

DescribeClientVpnTargetNetworks indicates an expected call of DescribeClientVpnTargetNetworks.

func (*MockEC2APIMockRecorder) DescribeClientVpnTargetNetworksPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeClientVpnTargetNetworksPages(arg0, arg1 interface{}) *gomock.Call

DescribeClientVpnTargetNetworksPages indicates an expected call of DescribeClientVpnTargetNetworksPages.

func (*MockEC2APIMockRecorder) DescribeClientVpnTargetNetworksPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeClientVpnTargetNetworksPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeClientVpnTargetNetworksPagesWithContext indicates an expected call of DescribeClientVpnTargetNetworksPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeClientVpnTargetNetworksRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeClientVpnTargetNetworksRequest(arg0 interface{}) *gomock.Call

DescribeClientVpnTargetNetworksRequest indicates an expected call of DescribeClientVpnTargetNetworksRequest.

func (*MockEC2APIMockRecorder) DescribeClientVpnTargetNetworksWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeClientVpnTargetNetworksWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeClientVpnTargetNetworksWithContext indicates an expected call of DescribeClientVpnTargetNetworksWithContext.

func (*MockEC2APIMockRecorder) DescribeCoipPools added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeCoipPools(arg0 interface{}) *gomock.Call

DescribeCoipPools indicates an expected call of DescribeCoipPools.

func (*MockEC2APIMockRecorder) DescribeCoipPoolsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeCoipPoolsPages(arg0, arg1 interface{}) *gomock.Call

DescribeCoipPoolsPages indicates an expected call of DescribeCoipPoolsPages.

func (*MockEC2APIMockRecorder) DescribeCoipPoolsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeCoipPoolsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeCoipPoolsPagesWithContext indicates an expected call of DescribeCoipPoolsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeCoipPoolsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeCoipPoolsRequest(arg0 interface{}) *gomock.Call

DescribeCoipPoolsRequest indicates an expected call of DescribeCoipPoolsRequest.

func (*MockEC2APIMockRecorder) DescribeCoipPoolsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeCoipPoolsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeCoipPoolsWithContext indicates an expected call of DescribeCoipPoolsWithContext.

func (*MockEC2APIMockRecorder) DescribeConversionTasks added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeConversionTasks(arg0 interface{}) *gomock.Call

DescribeConversionTasks indicates an expected call of DescribeConversionTasks.

func (*MockEC2APIMockRecorder) DescribeConversionTasksRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeConversionTasksRequest(arg0 interface{}) *gomock.Call

DescribeConversionTasksRequest indicates an expected call of DescribeConversionTasksRequest.

func (*MockEC2APIMockRecorder) DescribeConversionTasksWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeConversionTasksWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeConversionTasksWithContext indicates an expected call of DescribeConversionTasksWithContext.

func (*MockEC2APIMockRecorder) DescribeCustomerGateways added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeCustomerGateways(arg0 interface{}) *gomock.Call

DescribeCustomerGateways indicates an expected call of DescribeCustomerGateways.

func (*MockEC2APIMockRecorder) DescribeCustomerGatewaysRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeCustomerGatewaysRequest(arg0 interface{}) *gomock.Call

DescribeCustomerGatewaysRequest indicates an expected call of DescribeCustomerGatewaysRequest.

func (*MockEC2APIMockRecorder) DescribeCustomerGatewaysWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeCustomerGatewaysWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeCustomerGatewaysWithContext indicates an expected call of DescribeCustomerGatewaysWithContext.

func (*MockEC2APIMockRecorder) DescribeDhcpOptions added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeDhcpOptions(arg0 interface{}) *gomock.Call

DescribeDhcpOptions indicates an expected call of DescribeDhcpOptions.

func (*MockEC2APIMockRecorder) DescribeDhcpOptionsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeDhcpOptionsPages(arg0, arg1 interface{}) *gomock.Call

DescribeDhcpOptionsPages indicates an expected call of DescribeDhcpOptionsPages.

func (*MockEC2APIMockRecorder) DescribeDhcpOptionsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeDhcpOptionsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeDhcpOptionsPagesWithContext indicates an expected call of DescribeDhcpOptionsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeDhcpOptionsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeDhcpOptionsRequest(arg0 interface{}) *gomock.Call

DescribeDhcpOptionsRequest indicates an expected call of DescribeDhcpOptionsRequest.

func (*MockEC2APIMockRecorder) DescribeDhcpOptionsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeDhcpOptionsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeDhcpOptionsWithContext indicates an expected call of DescribeDhcpOptionsWithContext.

func (*MockEC2APIMockRecorder) DescribeEgressOnlyInternetGateways added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeEgressOnlyInternetGateways(arg0 interface{}) *gomock.Call

DescribeEgressOnlyInternetGateways indicates an expected call of DescribeEgressOnlyInternetGateways.

func (*MockEC2APIMockRecorder) DescribeEgressOnlyInternetGatewaysPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeEgressOnlyInternetGatewaysPages(arg0, arg1 interface{}) *gomock.Call

DescribeEgressOnlyInternetGatewaysPages indicates an expected call of DescribeEgressOnlyInternetGatewaysPages.

func (*MockEC2APIMockRecorder) DescribeEgressOnlyInternetGatewaysPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeEgressOnlyInternetGatewaysPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeEgressOnlyInternetGatewaysPagesWithContext indicates an expected call of DescribeEgressOnlyInternetGatewaysPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeEgressOnlyInternetGatewaysRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeEgressOnlyInternetGatewaysRequest(arg0 interface{}) *gomock.Call

DescribeEgressOnlyInternetGatewaysRequest indicates an expected call of DescribeEgressOnlyInternetGatewaysRequest.

func (*MockEC2APIMockRecorder) DescribeEgressOnlyInternetGatewaysWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeEgressOnlyInternetGatewaysWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeEgressOnlyInternetGatewaysWithContext indicates an expected call of DescribeEgressOnlyInternetGatewaysWithContext.

func (*MockEC2APIMockRecorder) DescribeElasticGpus added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeElasticGpus(arg0 interface{}) *gomock.Call

DescribeElasticGpus indicates an expected call of DescribeElasticGpus.

func (*MockEC2APIMockRecorder) DescribeElasticGpusRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeElasticGpusRequest(arg0 interface{}) *gomock.Call

DescribeElasticGpusRequest indicates an expected call of DescribeElasticGpusRequest.

func (*MockEC2APIMockRecorder) DescribeElasticGpusWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeElasticGpusWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeElasticGpusWithContext indicates an expected call of DescribeElasticGpusWithContext.

func (*MockEC2APIMockRecorder) DescribeExportImageTasks added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeExportImageTasks(arg0 interface{}) *gomock.Call

DescribeExportImageTasks indicates an expected call of DescribeExportImageTasks.

func (*MockEC2APIMockRecorder) DescribeExportImageTasksPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeExportImageTasksPages(arg0, arg1 interface{}) *gomock.Call

DescribeExportImageTasksPages indicates an expected call of DescribeExportImageTasksPages.

func (*MockEC2APIMockRecorder) DescribeExportImageTasksPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeExportImageTasksPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeExportImageTasksPagesWithContext indicates an expected call of DescribeExportImageTasksPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeExportImageTasksRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeExportImageTasksRequest(arg0 interface{}) *gomock.Call

DescribeExportImageTasksRequest indicates an expected call of DescribeExportImageTasksRequest.

func (*MockEC2APIMockRecorder) DescribeExportImageTasksWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeExportImageTasksWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeExportImageTasksWithContext indicates an expected call of DescribeExportImageTasksWithContext.

func (*MockEC2APIMockRecorder) DescribeExportTasks added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeExportTasks(arg0 interface{}) *gomock.Call

DescribeExportTasks indicates an expected call of DescribeExportTasks.

func (*MockEC2APIMockRecorder) DescribeExportTasksRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeExportTasksRequest(arg0 interface{}) *gomock.Call

DescribeExportTasksRequest indicates an expected call of DescribeExportTasksRequest.

func (*MockEC2APIMockRecorder) DescribeExportTasksWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeExportTasksWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeExportTasksWithContext indicates an expected call of DescribeExportTasksWithContext.

func (*MockEC2APIMockRecorder) DescribeFastLaunchImages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeFastLaunchImages(arg0 interface{}) *gomock.Call

DescribeFastLaunchImages indicates an expected call of DescribeFastLaunchImages.

func (*MockEC2APIMockRecorder) DescribeFastLaunchImagesPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeFastLaunchImagesPages(arg0, arg1 interface{}) *gomock.Call

DescribeFastLaunchImagesPages indicates an expected call of DescribeFastLaunchImagesPages.

func (*MockEC2APIMockRecorder) DescribeFastLaunchImagesPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeFastLaunchImagesPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeFastLaunchImagesPagesWithContext indicates an expected call of DescribeFastLaunchImagesPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeFastLaunchImagesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeFastLaunchImagesRequest(arg0 interface{}) *gomock.Call

DescribeFastLaunchImagesRequest indicates an expected call of DescribeFastLaunchImagesRequest.

func (*MockEC2APIMockRecorder) DescribeFastLaunchImagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeFastLaunchImagesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeFastLaunchImagesWithContext indicates an expected call of DescribeFastLaunchImagesWithContext.

func (*MockEC2APIMockRecorder) DescribeFastSnapshotRestores added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeFastSnapshotRestores(arg0 interface{}) *gomock.Call

DescribeFastSnapshotRestores indicates an expected call of DescribeFastSnapshotRestores.

func (*MockEC2APIMockRecorder) DescribeFastSnapshotRestoresPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeFastSnapshotRestoresPages(arg0, arg1 interface{}) *gomock.Call

DescribeFastSnapshotRestoresPages indicates an expected call of DescribeFastSnapshotRestoresPages.

func (*MockEC2APIMockRecorder) DescribeFastSnapshotRestoresPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeFastSnapshotRestoresPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeFastSnapshotRestoresPagesWithContext indicates an expected call of DescribeFastSnapshotRestoresPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeFastSnapshotRestoresRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeFastSnapshotRestoresRequest(arg0 interface{}) *gomock.Call

DescribeFastSnapshotRestoresRequest indicates an expected call of DescribeFastSnapshotRestoresRequest.

func (*MockEC2APIMockRecorder) DescribeFastSnapshotRestoresWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeFastSnapshotRestoresWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeFastSnapshotRestoresWithContext indicates an expected call of DescribeFastSnapshotRestoresWithContext.

func (*MockEC2APIMockRecorder) DescribeFleetHistory added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeFleetHistory(arg0 interface{}) *gomock.Call

DescribeFleetHistory indicates an expected call of DescribeFleetHistory.

func (*MockEC2APIMockRecorder) DescribeFleetHistoryRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeFleetHistoryRequest(arg0 interface{}) *gomock.Call

DescribeFleetHistoryRequest indicates an expected call of DescribeFleetHistoryRequest.

func (*MockEC2APIMockRecorder) DescribeFleetHistoryWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeFleetHistoryWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeFleetHistoryWithContext indicates an expected call of DescribeFleetHistoryWithContext.

func (*MockEC2APIMockRecorder) DescribeFleetInstances added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeFleetInstances(arg0 interface{}) *gomock.Call

DescribeFleetInstances indicates an expected call of DescribeFleetInstances.

func (*MockEC2APIMockRecorder) DescribeFleetInstancesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeFleetInstancesRequest(arg0 interface{}) *gomock.Call

DescribeFleetInstancesRequest indicates an expected call of DescribeFleetInstancesRequest.

func (*MockEC2APIMockRecorder) DescribeFleetInstancesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeFleetInstancesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeFleetInstancesWithContext indicates an expected call of DescribeFleetInstancesWithContext.

func (*MockEC2APIMockRecorder) DescribeFleets added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeFleets(arg0 interface{}) *gomock.Call

DescribeFleets indicates an expected call of DescribeFleets.

func (*MockEC2APIMockRecorder) DescribeFleetsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeFleetsPages(arg0, arg1 interface{}) *gomock.Call

DescribeFleetsPages indicates an expected call of DescribeFleetsPages.

func (*MockEC2APIMockRecorder) DescribeFleetsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeFleetsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeFleetsPagesWithContext indicates an expected call of DescribeFleetsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeFleetsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeFleetsRequest(arg0 interface{}) *gomock.Call

DescribeFleetsRequest indicates an expected call of DescribeFleetsRequest.

func (*MockEC2APIMockRecorder) DescribeFleetsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeFleetsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeFleetsWithContext indicates an expected call of DescribeFleetsWithContext.

func (*MockEC2APIMockRecorder) DescribeFlowLogs added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeFlowLogs(arg0 interface{}) *gomock.Call

DescribeFlowLogs indicates an expected call of DescribeFlowLogs.

func (*MockEC2APIMockRecorder) DescribeFlowLogsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeFlowLogsPages(arg0, arg1 interface{}) *gomock.Call

DescribeFlowLogsPages indicates an expected call of DescribeFlowLogsPages.

func (*MockEC2APIMockRecorder) DescribeFlowLogsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeFlowLogsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeFlowLogsPagesWithContext indicates an expected call of DescribeFlowLogsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeFlowLogsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeFlowLogsRequest(arg0 interface{}) *gomock.Call

DescribeFlowLogsRequest indicates an expected call of DescribeFlowLogsRequest.

func (*MockEC2APIMockRecorder) DescribeFlowLogsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeFlowLogsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeFlowLogsWithContext indicates an expected call of DescribeFlowLogsWithContext.

func (*MockEC2APIMockRecorder) DescribeFpgaImageAttribute added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeFpgaImageAttribute(arg0 interface{}) *gomock.Call

DescribeFpgaImageAttribute indicates an expected call of DescribeFpgaImageAttribute.

func (*MockEC2APIMockRecorder) DescribeFpgaImageAttributeRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeFpgaImageAttributeRequest(arg0 interface{}) *gomock.Call

DescribeFpgaImageAttributeRequest indicates an expected call of DescribeFpgaImageAttributeRequest.

func (*MockEC2APIMockRecorder) DescribeFpgaImageAttributeWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeFpgaImageAttributeWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeFpgaImageAttributeWithContext indicates an expected call of DescribeFpgaImageAttributeWithContext.

func (*MockEC2APIMockRecorder) DescribeFpgaImages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeFpgaImages(arg0 interface{}) *gomock.Call

DescribeFpgaImages indicates an expected call of DescribeFpgaImages.

func (*MockEC2APIMockRecorder) DescribeFpgaImagesPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeFpgaImagesPages(arg0, arg1 interface{}) *gomock.Call

DescribeFpgaImagesPages indicates an expected call of DescribeFpgaImagesPages.

func (*MockEC2APIMockRecorder) DescribeFpgaImagesPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeFpgaImagesPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeFpgaImagesPagesWithContext indicates an expected call of DescribeFpgaImagesPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeFpgaImagesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeFpgaImagesRequest(arg0 interface{}) *gomock.Call

DescribeFpgaImagesRequest indicates an expected call of DescribeFpgaImagesRequest.

func (*MockEC2APIMockRecorder) DescribeFpgaImagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeFpgaImagesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeFpgaImagesWithContext indicates an expected call of DescribeFpgaImagesWithContext.

func (*MockEC2APIMockRecorder) DescribeHostReservationOfferings added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeHostReservationOfferings(arg0 interface{}) *gomock.Call

DescribeHostReservationOfferings indicates an expected call of DescribeHostReservationOfferings.

func (*MockEC2APIMockRecorder) DescribeHostReservationOfferingsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeHostReservationOfferingsPages(arg0, arg1 interface{}) *gomock.Call

DescribeHostReservationOfferingsPages indicates an expected call of DescribeHostReservationOfferingsPages.

func (*MockEC2APIMockRecorder) DescribeHostReservationOfferingsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeHostReservationOfferingsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeHostReservationOfferingsPagesWithContext indicates an expected call of DescribeHostReservationOfferingsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeHostReservationOfferingsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeHostReservationOfferingsRequest(arg0 interface{}) *gomock.Call

DescribeHostReservationOfferingsRequest indicates an expected call of DescribeHostReservationOfferingsRequest.

func (*MockEC2APIMockRecorder) DescribeHostReservationOfferingsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeHostReservationOfferingsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeHostReservationOfferingsWithContext indicates an expected call of DescribeHostReservationOfferingsWithContext.

func (*MockEC2APIMockRecorder) DescribeHostReservations added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeHostReservations(arg0 interface{}) *gomock.Call

DescribeHostReservations indicates an expected call of DescribeHostReservations.

func (*MockEC2APIMockRecorder) DescribeHostReservationsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeHostReservationsPages(arg0, arg1 interface{}) *gomock.Call

DescribeHostReservationsPages indicates an expected call of DescribeHostReservationsPages.

func (*MockEC2APIMockRecorder) DescribeHostReservationsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeHostReservationsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeHostReservationsPagesWithContext indicates an expected call of DescribeHostReservationsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeHostReservationsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeHostReservationsRequest(arg0 interface{}) *gomock.Call

DescribeHostReservationsRequest indicates an expected call of DescribeHostReservationsRequest.

func (*MockEC2APIMockRecorder) DescribeHostReservationsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeHostReservationsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeHostReservationsWithContext indicates an expected call of DescribeHostReservationsWithContext.

func (*MockEC2APIMockRecorder) DescribeHosts added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeHosts(arg0 interface{}) *gomock.Call

DescribeHosts indicates an expected call of DescribeHosts.

func (*MockEC2APIMockRecorder) DescribeHostsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeHostsPages(arg0, arg1 interface{}) *gomock.Call

DescribeHostsPages indicates an expected call of DescribeHostsPages.

func (*MockEC2APIMockRecorder) DescribeHostsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeHostsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeHostsPagesWithContext indicates an expected call of DescribeHostsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeHostsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeHostsRequest(arg0 interface{}) *gomock.Call

DescribeHostsRequest indicates an expected call of DescribeHostsRequest.

func (*MockEC2APIMockRecorder) DescribeHostsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeHostsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeHostsWithContext indicates an expected call of DescribeHostsWithContext.

func (*MockEC2APIMockRecorder) DescribeIamInstanceProfileAssociations added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeIamInstanceProfileAssociations(arg0 interface{}) *gomock.Call

DescribeIamInstanceProfileAssociations indicates an expected call of DescribeIamInstanceProfileAssociations.

func (*MockEC2APIMockRecorder) DescribeIamInstanceProfileAssociationsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeIamInstanceProfileAssociationsPages(arg0, arg1 interface{}) *gomock.Call

DescribeIamInstanceProfileAssociationsPages indicates an expected call of DescribeIamInstanceProfileAssociationsPages.

func (*MockEC2APIMockRecorder) DescribeIamInstanceProfileAssociationsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeIamInstanceProfileAssociationsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeIamInstanceProfileAssociationsPagesWithContext indicates an expected call of DescribeIamInstanceProfileAssociationsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeIamInstanceProfileAssociationsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeIamInstanceProfileAssociationsRequest(arg0 interface{}) *gomock.Call

DescribeIamInstanceProfileAssociationsRequest indicates an expected call of DescribeIamInstanceProfileAssociationsRequest.

func (*MockEC2APIMockRecorder) DescribeIamInstanceProfileAssociationsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeIamInstanceProfileAssociationsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeIamInstanceProfileAssociationsWithContext indicates an expected call of DescribeIamInstanceProfileAssociationsWithContext.

func (*MockEC2APIMockRecorder) DescribeIdFormat added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeIdFormat(arg0 interface{}) *gomock.Call

DescribeIdFormat indicates an expected call of DescribeIdFormat.

func (*MockEC2APIMockRecorder) DescribeIdFormatRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeIdFormatRequest(arg0 interface{}) *gomock.Call

DescribeIdFormatRequest indicates an expected call of DescribeIdFormatRequest.

func (*MockEC2APIMockRecorder) DescribeIdFormatWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeIdFormatWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeIdFormatWithContext indicates an expected call of DescribeIdFormatWithContext.

func (*MockEC2APIMockRecorder) DescribeIdentityIdFormat added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeIdentityIdFormat(arg0 interface{}) *gomock.Call

DescribeIdentityIdFormat indicates an expected call of DescribeIdentityIdFormat.

func (*MockEC2APIMockRecorder) DescribeIdentityIdFormatRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeIdentityIdFormatRequest(arg0 interface{}) *gomock.Call

DescribeIdentityIdFormatRequest indicates an expected call of DescribeIdentityIdFormatRequest.

func (*MockEC2APIMockRecorder) DescribeIdentityIdFormatWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeIdentityIdFormatWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeIdentityIdFormatWithContext indicates an expected call of DescribeIdentityIdFormatWithContext.

func (*MockEC2APIMockRecorder) DescribeImageAttribute added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeImageAttribute(arg0 interface{}) *gomock.Call

DescribeImageAttribute indicates an expected call of DescribeImageAttribute.

func (*MockEC2APIMockRecorder) DescribeImageAttributeRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeImageAttributeRequest(arg0 interface{}) *gomock.Call

DescribeImageAttributeRequest indicates an expected call of DescribeImageAttributeRequest.

func (*MockEC2APIMockRecorder) DescribeImageAttributeWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeImageAttributeWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeImageAttributeWithContext indicates an expected call of DescribeImageAttributeWithContext.

func (*MockEC2APIMockRecorder) DescribeImages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeImages(arg0 interface{}) *gomock.Call

DescribeImages indicates an expected call of DescribeImages.

func (*MockEC2APIMockRecorder) DescribeImagesPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeImagesPages(arg0, arg1 interface{}) *gomock.Call

DescribeImagesPages indicates an expected call of DescribeImagesPages.

func (*MockEC2APIMockRecorder) DescribeImagesPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeImagesPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeImagesPagesWithContext indicates an expected call of DescribeImagesPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeImagesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeImagesRequest(arg0 interface{}) *gomock.Call

DescribeImagesRequest indicates an expected call of DescribeImagesRequest.

func (*MockEC2APIMockRecorder) DescribeImagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeImagesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeImagesWithContext indicates an expected call of DescribeImagesWithContext.

func (*MockEC2APIMockRecorder) DescribeImportImageTasks added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeImportImageTasks(arg0 interface{}) *gomock.Call

DescribeImportImageTasks indicates an expected call of DescribeImportImageTasks.

func (*MockEC2APIMockRecorder) DescribeImportImageTasksPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeImportImageTasksPages(arg0, arg1 interface{}) *gomock.Call

DescribeImportImageTasksPages indicates an expected call of DescribeImportImageTasksPages.

func (*MockEC2APIMockRecorder) DescribeImportImageTasksPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeImportImageTasksPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeImportImageTasksPagesWithContext indicates an expected call of DescribeImportImageTasksPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeImportImageTasksRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeImportImageTasksRequest(arg0 interface{}) *gomock.Call

DescribeImportImageTasksRequest indicates an expected call of DescribeImportImageTasksRequest.

func (*MockEC2APIMockRecorder) DescribeImportImageTasksWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeImportImageTasksWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeImportImageTasksWithContext indicates an expected call of DescribeImportImageTasksWithContext.

func (*MockEC2APIMockRecorder) DescribeImportSnapshotTasks added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeImportSnapshotTasks(arg0 interface{}) *gomock.Call

DescribeImportSnapshotTasks indicates an expected call of DescribeImportSnapshotTasks.

func (*MockEC2APIMockRecorder) DescribeImportSnapshotTasksPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeImportSnapshotTasksPages(arg0, arg1 interface{}) *gomock.Call

DescribeImportSnapshotTasksPages indicates an expected call of DescribeImportSnapshotTasksPages.

func (*MockEC2APIMockRecorder) DescribeImportSnapshotTasksPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeImportSnapshotTasksPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeImportSnapshotTasksPagesWithContext indicates an expected call of DescribeImportSnapshotTasksPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeImportSnapshotTasksRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeImportSnapshotTasksRequest(arg0 interface{}) *gomock.Call

DescribeImportSnapshotTasksRequest indicates an expected call of DescribeImportSnapshotTasksRequest.

func (*MockEC2APIMockRecorder) DescribeImportSnapshotTasksWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeImportSnapshotTasksWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeImportSnapshotTasksWithContext indicates an expected call of DescribeImportSnapshotTasksWithContext.

func (*MockEC2APIMockRecorder) DescribeInstanceAttribute added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeInstanceAttribute(arg0 interface{}) *gomock.Call

DescribeInstanceAttribute indicates an expected call of DescribeInstanceAttribute.

func (*MockEC2APIMockRecorder) DescribeInstanceAttributeRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeInstanceAttributeRequest(arg0 interface{}) *gomock.Call

DescribeInstanceAttributeRequest indicates an expected call of DescribeInstanceAttributeRequest.

func (*MockEC2APIMockRecorder) DescribeInstanceAttributeWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeInstanceAttributeWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeInstanceAttributeWithContext indicates an expected call of DescribeInstanceAttributeWithContext.

func (*MockEC2APIMockRecorder) DescribeInstanceConnectEndpoints added in v1.20.0

func (mr *MockEC2APIMockRecorder) DescribeInstanceConnectEndpoints(arg0 interface{}) *gomock.Call

DescribeInstanceConnectEndpoints indicates an expected call of DescribeInstanceConnectEndpoints.

func (*MockEC2APIMockRecorder) DescribeInstanceConnectEndpointsPages added in v1.20.0

func (mr *MockEC2APIMockRecorder) DescribeInstanceConnectEndpointsPages(arg0, arg1 interface{}) *gomock.Call

DescribeInstanceConnectEndpointsPages indicates an expected call of DescribeInstanceConnectEndpointsPages.

func (*MockEC2APIMockRecorder) DescribeInstanceConnectEndpointsPagesWithContext added in v1.20.0

func (mr *MockEC2APIMockRecorder) DescribeInstanceConnectEndpointsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeInstanceConnectEndpointsPagesWithContext indicates an expected call of DescribeInstanceConnectEndpointsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeInstanceConnectEndpointsRequest added in v1.20.0

func (mr *MockEC2APIMockRecorder) DescribeInstanceConnectEndpointsRequest(arg0 interface{}) *gomock.Call

DescribeInstanceConnectEndpointsRequest indicates an expected call of DescribeInstanceConnectEndpointsRequest.

func (*MockEC2APIMockRecorder) DescribeInstanceConnectEndpointsWithContext added in v1.20.0

func (mr *MockEC2APIMockRecorder) DescribeInstanceConnectEndpointsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeInstanceConnectEndpointsWithContext indicates an expected call of DescribeInstanceConnectEndpointsWithContext.

func (*MockEC2APIMockRecorder) DescribeInstanceCreditSpecifications added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeInstanceCreditSpecifications(arg0 interface{}) *gomock.Call

DescribeInstanceCreditSpecifications indicates an expected call of DescribeInstanceCreditSpecifications.

func (*MockEC2APIMockRecorder) DescribeInstanceCreditSpecificationsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeInstanceCreditSpecificationsPages(arg0, arg1 interface{}) *gomock.Call

DescribeInstanceCreditSpecificationsPages indicates an expected call of DescribeInstanceCreditSpecificationsPages.

func (*MockEC2APIMockRecorder) DescribeInstanceCreditSpecificationsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeInstanceCreditSpecificationsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeInstanceCreditSpecificationsPagesWithContext indicates an expected call of DescribeInstanceCreditSpecificationsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeInstanceCreditSpecificationsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeInstanceCreditSpecificationsRequest(arg0 interface{}) *gomock.Call

DescribeInstanceCreditSpecificationsRequest indicates an expected call of DescribeInstanceCreditSpecificationsRequest.

func (*MockEC2APIMockRecorder) DescribeInstanceCreditSpecificationsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeInstanceCreditSpecificationsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeInstanceCreditSpecificationsWithContext indicates an expected call of DescribeInstanceCreditSpecificationsWithContext.

func (*MockEC2APIMockRecorder) DescribeInstanceEventNotificationAttributes added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeInstanceEventNotificationAttributes(arg0 interface{}) *gomock.Call

DescribeInstanceEventNotificationAttributes indicates an expected call of DescribeInstanceEventNotificationAttributes.

func (*MockEC2APIMockRecorder) DescribeInstanceEventNotificationAttributesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeInstanceEventNotificationAttributesRequest(arg0 interface{}) *gomock.Call

DescribeInstanceEventNotificationAttributesRequest indicates an expected call of DescribeInstanceEventNotificationAttributesRequest.

func (*MockEC2APIMockRecorder) DescribeInstanceEventNotificationAttributesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeInstanceEventNotificationAttributesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeInstanceEventNotificationAttributesWithContext indicates an expected call of DescribeInstanceEventNotificationAttributesWithContext.

func (*MockEC2APIMockRecorder) DescribeInstanceEventWindows added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeInstanceEventWindows(arg0 interface{}) *gomock.Call

DescribeInstanceEventWindows indicates an expected call of DescribeInstanceEventWindows.

func (*MockEC2APIMockRecorder) DescribeInstanceEventWindowsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeInstanceEventWindowsPages(arg0, arg1 interface{}) *gomock.Call

DescribeInstanceEventWindowsPages indicates an expected call of DescribeInstanceEventWindowsPages.

func (*MockEC2APIMockRecorder) DescribeInstanceEventWindowsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeInstanceEventWindowsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeInstanceEventWindowsPagesWithContext indicates an expected call of DescribeInstanceEventWindowsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeInstanceEventWindowsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeInstanceEventWindowsRequest(arg0 interface{}) *gomock.Call

DescribeInstanceEventWindowsRequest indicates an expected call of DescribeInstanceEventWindowsRequest.

func (*MockEC2APIMockRecorder) DescribeInstanceEventWindowsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeInstanceEventWindowsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeInstanceEventWindowsWithContext indicates an expected call of DescribeInstanceEventWindowsWithContext.

func (*MockEC2APIMockRecorder) DescribeInstanceStatus added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeInstanceStatus(arg0 interface{}) *gomock.Call

DescribeInstanceStatus indicates an expected call of DescribeInstanceStatus.

func (*MockEC2APIMockRecorder) DescribeInstanceStatusPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeInstanceStatusPages(arg0, arg1 interface{}) *gomock.Call

DescribeInstanceStatusPages indicates an expected call of DescribeInstanceStatusPages.

func (*MockEC2APIMockRecorder) DescribeInstanceStatusPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeInstanceStatusPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeInstanceStatusPagesWithContext indicates an expected call of DescribeInstanceStatusPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeInstanceStatusRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeInstanceStatusRequest(arg0 interface{}) *gomock.Call

DescribeInstanceStatusRequest indicates an expected call of DescribeInstanceStatusRequest.

func (*MockEC2APIMockRecorder) DescribeInstanceStatusWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeInstanceStatusWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeInstanceStatusWithContext indicates an expected call of DescribeInstanceStatusWithContext.

func (*MockEC2APIMockRecorder) DescribeInstanceTypeOfferings added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeInstanceTypeOfferings(arg0 interface{}) *gomock.Call

DescribeInstanceTypeOfferings indicates an expected call of DescribeInstanceTypeOfferings.

func (*MockEC2APIMockRecorder) DescribeInstanceTypeOfferingsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeInstanceTypeOfferingsPages(arg0, arg1 interface{}) *gomock.Call

DescribeInstanceTypeOfferingsPages indicates an expected call of DescribeInstanceTypeOfferingsPages.

func (*MockEC2APIMockRecorder) DescribeInstanceTypeOfferingsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeInstanceTypeOfferingsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeInstanceTypeOfferingsPagesWithContext indicates an expected call of DescribeInstanceTypeOfferingsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeInstanceTypeOfferingsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeInstanceTypeOfferingsRequest(arg0 interface{}) *gomock.Call

DescribeInstanceTypeOfferingsRequest indicates an expected call of DescribeInstanceTypeOfferingsRequest.

func (*MockEC2APIMockRecorder) DescribeInstanceTypeOfferingsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeInstanceTypeOfferingsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeInstanceTypeOfferingsWithContext indicates an expected call of DescribeInstanceTypeOfferingsWithContext.

func (*MockEC2APIMockRecorder) DescribeInstanceTypes added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeInstanceTypes(arg0 interface{}) *gomock.Call

DescribeInstanceTypes indicates an expected call of DescribeInstanceTypes.

func (*MockEC2APIMockRecorder) DescribeInstanceTypesPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeInstanceTypesPages(arg0, arg1 interface{}) *gomock.Call

DescribeInstanceTypesPages indicates an expected call of DescribeInstanceTypesPages.

func (*MockEC2APIMockRecorder) DescribeInstanceTypesPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeInstanceTypesPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeInstanceTypesPagesWithContext indicates an expected call of DescribeInstanceTypesPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeInstanceTypesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeInstanceTypesRequest(arg0 interface{}) *gomock.Call

DescribeInstanceTypesRequest indicates an expected call of DescribeInstanceTypesRequest.

func (*MockEC2APIMockRecorder) DescribeInstanceTypesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeInstanceTypesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeInstanceTypesWithContext indicates an expected call of DescribeInstanceTypesWithContext.

func (*MockEC2APIMockRecorder) DescribeInstances added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeInstances(arg0 interface{}) *gomock.Call

DescribeInstances indicates an expected call of DescribeInstances.

func (*MockEC2APIMockRecorder) DescribeInstancesPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeInstancesPages(arg0, arg1 interface{}) *gomock.Call

DescribeInstancesPages indicates an expected call of DescribeInstancesPages.

func (*MockEC2APIMockRecorder) DescribeInstancesPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeInstancesPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeInstancesPagesWithContext indicates an expected call of DescribeInstancesPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeInstancesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeInstancesRequest(arg0 interface{}) *gomock.Call

DescribeInstancesRequest indicates an expected call of DescribeInstancesRequest.

func (*MockEC2APIMockRecorder) DescribeInstancesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeInstancesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeInstancesWithContext indicates an expected call of DescribeInstancesWithContext.

func (*MockEC2APIMockRecorder) DescribeInternetGateways added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeInternetGateways(arg0 interface{}) *gomock.Call

DescribeInternetGateways indicates an expected call of DescribeInternetGateways.

func (*MockEC2APIMockRecorder) DescribeInternetGatewaysPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeInternetGatewaysPages(arg0, arg1 interface{}) *gomock.Call

DescribeInternetGatewaysPages indicates an expected call of DescribeInternetGatewaysPages.

func (*MockEC2APIMockRecorder) DescribeInternetGatewaysPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeInternetGatewaysPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeInternetGatewaysPagesWithContext indicates an expected call of DescribeInternetGatewaysPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeInternetGatewaysRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeInternetGatewaysRequest(arg0 interface{}) *gomock.Call

DescribeInternetGatewaysRequest indicates an expected call of DescribeInternetGatewaysRequest.

func (*MockEC2APIMockRecorder) DescribeInternetGatewaysWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeInternetGatewaysWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeInternetGatewaysWithContext indicates an expected call of DescribeInternetGatewaysWithContext.

func (*MockEC2APIMockRecorder) DescribeIpamPools added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeIpamPools(arg0 interface{}) *gomock.Call

DescribeIpamPools indicates an expected call of DescribeIpamPools.

func (*MockEC2APIMockRecorder) DescribeIpamPoolsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeIpamPoolsPages(arg0, arg1 interface{}) *gomock.Call

DescribeIpamPoolsPages indicates an expected call of DescribeIpamPoolsPages.

func (*MockEC2APIMockRecorder) DescribeIpamPoolsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeIpamPoolsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeIpamPoolsPagesWithContext indicates an expected call of DescribeIpamPoolsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeIpamPoolsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeIpamPoolsRequest(arg0 interface{}) *gomock.Call

DescribeIpamPoolsRequest indicates an expected call of DescribeIpamPoolsRequest.

func (*MockEC2APIMockRecorder) DescribeIpamPoolsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeIpamPoolsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeIpamPoolsWithContext indicates an expected call of DescribeIpamPoolsWithContext.

func (*MockEC2APIMockRecorder) DescribeIpamResourceDiscoveries added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeIpamResourceDiscoveries(arg0 interface{}) *gomock.Call

DescribeIpamResourceDiscoveries indicates an expected call of DescribeIpamResourceDiscoveries.

func (*MockEC2APIMockRecorder) DescribeIpamResourceDiscoveriesPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeIpamResourceDiscoveriesPages(arg0, arg1 interface{}) *gomock.Call

DescribeIpamResourceDiscoveriesPages indicates an expected call of DescribeIpamResourceDiscoveriesPages.

func (*MockEC2APIMockRecorder) DescribeIpamResourceDiscoveriesPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeIpamResourceDiscoveriesPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeIpamResourceDiscoveriesPagesWithContext indicates an expected call of DescribeIpamResourceDiscoveriesPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeIpamResourceDiscoveriesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeIpamResourceDiscoveriesRequest(arg0 interface{}) *gomock.Call

DescribeIpamResourceDiscoveriesRequest indicates an expected call of DescribeIpamResourceDiscoveriesRequest.

func (*MockEC2APIMockRecorder) DescribeIpamResourceDiscoveriesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeIpamResourceDiscoveriesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeIpamResourceDiscoveriesWithContext indicates an expected call of DescribeIpamResourceDiscoveriesWithContext.

func (*MockEC2APIMockRecorder) DescribeIpamResourceDiscoveryAssociations added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeIpamResourceDiscoveryAssociations(arg0 interface{}) *gomock.Call

DescribeIpamResourceDiscoveryAssociations indicates an expected call of DescribeIpamResourceDiscoveryAssociations.

func (*MockEC2APIMockRecorder) DescribeIpamResourceDiscoveryAssociationsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeIpamResourceDiscoveryAssociationsPages(arg0, arg1 interface{}) *gomock.Call

DescribeIpamResourceDiscoveryAssociationsPages indicates an expected call of DescribeIpamResourceDiscoveryAssociationsPages.

func (*MockEC2APIMockRecorder) DescribeIpamResourceDiscoveryAssociationsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeIpamResourceDiscoveryAssociationsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeIpamResourceDiscoveryAssociationsPagesWithContext indicates an expected call of DescribeIpamResourceDiscoveryAssociationsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeIpamResourceDiscoveryAssociationsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeIpamResourceDiscoveryAssociationsRequest(arg0 interface{}) *gomock.Call

DescribeIpamResourceDiscoveryAssociationsRequest indicates an expected call of DescribeIpamResourceDiscoveryAssociationsRequest.

func (*MockEC2APIMockRecorder) DescribeIpamResourceDiscoveryAssociationsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeIpamResourceDiscoveryAssociationsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeIpamResourceDiscoveryAssociationsWithContext indicates an expected call of DescribeIpamResourceDiscoveryAssociationsWithContext.

func (*MockEC2APIMockRecorder) DescribeIpamScopes added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeIpamScopes(arg0 interface{}) *gomock.Call

DescribeIpamScopes indicates an expected call of DescribeIpamScopes.

func (*MockEC2APIMockRecorder) DescribeIpamScopesPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeIpamScopesPages(arg0, arg1 interface{}) *gomock.Call

DescribeIpamScopesPages indicates an expected call of DescribeIpamScopesPages.

func (*MockEC2APIMockRecorder) DescribeIpamScopesPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeIpamScopesPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeIpamScopesPagesWithContext indicates an expected call of DescribeIpamScopesPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeIpamScopesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeIpamScopesRequest(arg0 interface{}) *gomock.Call

DescribeIpamScopesRequest indicates an expected call of DescribeIpamScopesRequest.

func (*MockEC2APIMockRecorder) DescribeIpamScopesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeIpamScopesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeIpamScopesWithContext indicates an expected call of DescribeIpamScopesWithContext.

func (*MockEC2APIMockRecorder) DescribeIpams added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeIpams(arg0 interface{}) *gomock.Call

DescribeIpams indicates an expected call of DescribeIpams.

func (*MockEC2APIMockRecorder) DescribeIpamsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeIpamsPages(arg0, arg1 interface{}) *gomock.Call

DescribeIpamsPages indicates an expected call of DescribeIpamsPages.

func (*MockEC2APIMockRecorder) DescribeIpamsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeIpamsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeIpamsPagesWithContext indicates an expected call of DescribeIpamsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeIpamsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeIpamsRequest(arg0 interface{}) *gomock.Call

DescribeIpamsRequest indicates an expected call of DescribeIpamsRequest.

func (*MockEC2APIMockRecorder) DescribeIpamsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeIpamsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeIpamsWithContext indicates an expected call of DescribeIpamsWithContext.

func (*MockEC2APIMockRecorder) DescribeIpv6Pools added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeIpv6Pools(arg0 interface{}) *gomock.Call

DescribeIpv6Pools indicates an expected call of DescribeIpv6Pools.

func (*MockEC2APIMockRecorder) DescribeIpv6PoolsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeIpv6PoolsPages(arg0, arg1 interface{}) *gomock.Call

DescribeIpv6PoolsPages indicates an expected call of DescribeIpv6PoolsPages.

func (*MockEC2APIMockRecorder) DescribeIpv6PoolsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeIpv6PoolsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeIpv6PoolsPagesWithContext indicates an expected call of DescribeIpv6PoolsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeIpv6PoolsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeIpv6PoolsRequest(arg0 interface{}) *gomock.Call

DescribeIpv6PoolsRequest indicates an expected call of DescribeIpv6PoolsRequest.

func (*MockEC2APIMockRecorder) DescribeIpv6PoolsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeIpv6PoolsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeIpv6PoolsWithContext indicates an expected call of DescribeIpv6PoolsWithContext.

func (*MockEC2APIMockRecorder) DescribeKeyPairs added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeKeyPairs(arg0 interface{}) *gomock.Call

DescribeKeyPairs indicates an expected call of DescribeKeyPairs.

func (*MockEC2APIMockRecorder) DescribeKeyPairsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeKeyPairsRequest(arg0 interface{}) *gomock.Call

DescribeKeyPairsRequest indicates an expected call of DescribeKeyPairsRequest.

func (*MockEC2APIMockRecorder) DescribeKeyPairsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeKeyPairsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeKeyPairsWithContext indicates an expected call of DescribeKeyPairsWithContext.

func (*MockEC2APIMockRecorder) DescribeLaunchTemplateVersions added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeLaunchTemplateVersions(arg0 interface{}) *gomock.Call

DescribeLaunchTemplateVersions indicates an expected call of DescribeLaunchTemplateVersions.

func (*MockEC2APIMockRecorder) DescribeLaunchTemplateVersionsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeLaunchTemplateVersionsPages(arg0, arg1 interface{}) *gomock.Call

DescribeLaunchTemplateVersionsPages indicates an expected call of DescribeLaunchTemplateVersionsPages.

func (*MockEC2APIMockRecorder) DescribeLaunchTemplateVersionsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeLaunchTemplateVersionsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeLaunchTemplateVersionsPagesWithContext indicates an expected call of DescribeLaunchTemplateVersionsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeLaunchTemplateVersionsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeLaunchTemplateVersionsRequest(arg0 interface{}) *gomock.Call

DescribeLaunchTemplateVersionsRequest indicates an expected call of DescribeLaunchTemplateVersionsRequest.

func (*MockEC2APIMockRecorder) DescribeLaunchTemplateVersionsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeLaunchTemplateVersionsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeLaunchTemplateVersionsWithContext indicates an expected call of DescribeLaunchTemplateVersionsWithContext.

func (*MockEC2APIMockRecorder) DescribeLaunchTemplates added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeLaunchTemplates(arg0 interface{}) *gomock.Call

DescribeLaunchTemplates indicates an expected call of DescribeLaunchTemplates.

func (*MockEC2APIMockRecorder) DescribeLaunchTemplatesPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeLaunchTemplatesPages(arg0, arg1 interface{}) *gomock.Call

DescribeLaunchTemplatesPages indicates an expected call of DescribeLaunchTemplatesPages.

func (*MockEC2APIMockRecorder) DescribeLaunchTemplatesPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeLaunchTemplatesPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeLaunchTemplatesPagesWithContext indicates an expected call of DescribeLaunchTemplatesPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeLaunchTemplatesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeLaunchTemplatesRequest(arg0 interface{}) *gomock.Call

DescribeLaunchTemplatesRequest indicates an expected call of DescribeLaunchTemplatesRequest.

func (*MockEC2APIMockRecorder) DescribeLaunchTemplatesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeLaunchTemplatesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeLaunchTemplatesWithContext indicates an expected call of DescribeLaunchTemplatesWithContext.

func (*MockEC2APIMockRecorder) DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociations added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociations(arg0 interface{}) *gomock.Call

DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociations indicates an expected call of DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociations.

func (*MockEC2APIMockRecorder) DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsPages(arg0, arg1 interface{}) *gomock.Call

DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsPages indicates an expected call of DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsPages.

func (*MockEC2APIMockRecorder) DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsPagesWithContext indicates an expected call of DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsRequest(arg0 interface{}) *gomock.Call

DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsRequest indicates an expected call of DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsRequest.

func (*MockEC2APIMockRecorder) DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsWithContext indicates an expected call of DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsWithContext.

func (*MockEC2APIMockRecorder) DescribeLocalGatewayRouteTableVpcAssociations added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeLocalGatewayRouteTableVpcAssociations(arg0 interface{}) *gomock.Call

DescribeLocalGatewayRouteTableVpcAssociations indicates an expected call of DescribeLocalGatewayRouteTableVpcAssociations.

func (*MockEC2APIMockRecorder) DescribeLocalGatewayRouteTableVpcAssociationsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeLocalGatewayRouteTableVpcAssociationsPages(arg0, arg1 interface{}) *gomock.Call

DescribeLocalGatewayRouteTableVpcAssociationsPages indicates an expected call of DescribeLocalGatewayRouteTableVpcAssociationsPages.

func (*MockEC2APIMockRecorder) DescribeLocalGatewayRouteTableVpcAssociationsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeLocalGatewayRouteTableVpcAssociationsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeLocalGatewayRouteTableVpcAssociationsPagesWithContext indicates an expected call of DescribeLocalGatewayRouteTableVpcAssociationsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeLocalGatewayRouteTableVpcAssociationsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeLocalGatewayRouteTableVpcAssociationsRequest(arg0 interface{}) *gomock.Call

DescribeLocalGatewayRouteTableVpcAssociationsRequest indicates an expected call of DescribeLocalGatewayRouteTableVpcAssociationsRequest.

func (*MockEC2APIMockRecorder) DescribeLocalGatewayRouteTableVpcAssociationsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeLocalGatewayRouteTableVpcAssociationsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeLocalGatewayRouteTableVpcAssociationsWithContext indicates an expected call of DescribeLocalGatewayRouteTableVpcAssociationsWithContext.

func (*MockEC2APIMockRecorder) DescribeLocalGatewayRouteTables added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeLocalGatewayRouteTables(arg0 interface{}) *gomock.Call

DescribeLocalGatewayRouteTables indicates an expected call of DescribeLocalGatewayRouteTables.

func (*MockEC2APIMockRecorder) DescribeLocalGatewayRouteTablesPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeLocalGatewayRouteTablesPages(arg0, arg1 interface{}) *gomock.Call

DescribeLocalGatewayRouteTablesPages indicates an expected call of DescribeLocalGatewayRouteTablesPages.

func (*MockEC2APIMockRecorder) DescribeLocalGatewayRouteTablesPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeLocalGatewayRouteTablesPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeLocalGatewayRouteTablesPagesWithContext indicates an expected call of DescribeLocalGatewayRouteTablesPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeLocalGatewayRouteTablesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeLocalGatewayRouteTablesRequest(arg0 interface{}) *gomock.Call

DescribeLocalGatewayRouteTablesRequest indicates an expected call of DescribeLocalGatewayRouteTablesRequest.

func (*MockEC2APIMockRecorder) DescribeLocalGatewayRouteTablesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeLocalGatewayRouteTablesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeLocalGatewayRouteTablesWithContext indicates an expected call of DescribeLocalGatewayRouteTablesWithContext.

func (*MockEC2APIMockRecorder) DescribeLocalGatewayVirtualInterfaceGroups added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeLocalGatewayVirtualInterfaceGroups(arg0 interface{}) *gomock.Call

DescribeLocalGatewayVirtualInterfaceGroups indicates an expected call of DescribeLocalGatewayVirtualInterfaceGroups.

func (*MockEC2APIMockRecorder) DescribeLocalGatewayVirtualInterfaceGroupsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeLocalGatewayVirtualInterfaceGroupsPages(arg0, arg1 interface{}) *gomock.Call

DescribeLocalGatewayVirtualInterfaceGroupsPages indicates an expected call of DescribeLocalGatewayVirtualInterfaceGroupsPages.

func (*MockEC2APIMockRecorder) DescribeLocalGatewayVirtualInterfaceGroupsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeLocalGatewayVirtualInterfaceGroupsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeLocalGatewayVirtualInterfaceGroupsPagesWithContext indicates an expected call of DescribeLocalGatewayVirtualInterfaceGroupsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeLocalGatewayVirtualInterfaceGroupsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeLocalGatewayVirtualInterfaceGroupsRequest(arg0 interface{}) *gomock.Call

DescribeLocalGatewayVirtualInterfaceGroupsRequest indicates an expected call of DescribeLocalGatewayVirtualInterfaceGroupsRequest.

func (*MockEC2APIMockRecorder) DescribeLocalGatewayVirtualInterfaceGroupsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeLocalGatewayVirtualInterfaceGroupsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeLocalGatewayVirtualInterfaceGroupsWithContext indicates an expected call of DescribeLocalGatewayVirtualInterfaceGroupsWithContext.

func (*MockEC2APIMockRecorder) DescribeLocalGatewayVirtualInterfaces added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeLocalGatewayVirtualInterfaces(arg0 interface{}) *gomock.Call

DescribeLocalGatewayVirtualInterfaces indicates an expected call of DescribeLocalGatewayVirtualInterfaces.

func (*MockEC2APIMockRecorder) DescribeLocalGatewayVirtualInterfacesPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeLocalGatewayVirtualInterfacesPages(arg0, arg1 interface{}) *gomock.Call

DescribeLocalGatewayVirtualInterfacesPages indicates an expected call of DescribeLocalGatewayVirtualInterfacesPages.

func (*MockEC2APIMockRecorder) DescribeLocalGatewayVirtualInterfacesPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeLocalGatewayVirtualInterfacesPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeLocalGatewayVirtualInterfacesPagesWithContext indicates an expected call of DescribeLocalGatewayVirtualInterfacesPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeLocalGatewayVirtualInterfacesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeLocalGatewayVirtualInterfacesRequest(arg0 interface{}) *gomock.Call

DescribeLocalGatewayVirtualInterfacesRequest indicates an expected call of DescribeLocalGatewayVirtualInterfacesRequest.

func (*MockEC2APIMockRecorder) DescribeLocalGatewayVirtualInterfacesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeLocalGatewayVirtualInterfacesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeLocalGatewayVirtualInterfacesWithContext indicates an expected call of DescribeLocalGatewayVirtualInterfacesWithContext.

func (*MockEC2APIMockRecorder) DescribeLocalGateways added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeLocalGateways(arg0 interface{}) *gomock.Call

DescribeLocalGateways indicates an expected call of DescribeLocalGateways.

func (*MockEC2APIMockRecorder) DescribeLocalGatewaysPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeLocalGatewaysPages(arg0, arg1 interface{}) *gomock.Call

DescribeLocalGatewaysPages indicates an expected call of DescribeLocalGatewaysPages.

func (*MockEC2APIMockRecorder) DescribeLocalGatewaysPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeLocalGatewaysPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeLocalGatewaysPagesWithContext indicates an expected call of DescribeLocalGatewaysPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeLocalGatewaysRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeLocalGatewaysRequest(arg0 interface{}) *gomock.Call

DescribeLocalGatewaysRequest indicates an expected call of DescribeLocalGatewaysRequest.

func (*MockEC2APIMockRecorder) DescribeLocalGatewaysWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeLocalGatewaysWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeLocalGatewaysWithContext indicates an expected call of DescribeLocalGatewaysWithContext.

func (*MockEC2APIMockRecorder) DescribeManagedPrefixLists added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeManagedPrefixLists(arg0 interface{}) *gomock.Call

DescribeManagedPrefixLists indicates an expected call of DescribeManagedPrefixLists.

func (*MockEC2APIMockRecorder) DescribeManagedPrefixListsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeManagedPrefixListsPages(arg0, arg1 interface{}) *gomock.Call

DescribeManagedPrefixListsPages indicates an expected call of DescribeManagedPrefixListsPages.

func (*MockEC2APIMockRecorder) DescribeManagedPrefixListsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeManagedPrefixListsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeManagedPrefixListsPagesWithContext indicates an expected call of DescribeManagedPrefixListsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeManagedPrefixListsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeManagedPrefixListsRequest(arg0 interface{}) *gomock.Call

DescribeManagedPrefixListsRequest indicates an expected call of DescribeManagedPrefixListsRequest.

func (*MockEC2APIMockRecorder) DescribeManagedPrefixListsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeManagedPrefixListsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeManagedPrefixListsWithContext indicates an expected call of DescribeManagedPrefixListsWithContext.

func (*MockEC2APIMockRecorder) DescribeMovingAddresses added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeMovingAddresses(arg0 interface{}) *gomock.Call

DescribeMovingAddresses indicates an expected call of DescribeMovingAddresses.

func (*MockEC2APIMockRecorder) DescribeMovingAddressesPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeMovingAddressesPages(arg0, arg1 interface{}) *gomock.Call

DescribeMovingAddressesPages indicates an expected call of DescribeMovingAddressesPages.

func (*MockEC2APIMockRecorder) DescribeMovingAddressesPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeMovingAddressesPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeMovingAddressesPagesWithContext indicates an expected call of DescribeMovingAddressesPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeMovingAddressesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeMovingAddressesRequest(arg0 interface{}) *gomock.Call

DescribeMovingAddressesRequest indicates an expected call of DescribeMovingAddressesRequest.

func (*MockEC2APIMockRecorder) DescribeMovingAddressesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeMovingAddressesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeMovingAddressesWithContext indicates an expected call of DescribeMovingAddressesWithContext.

func (*MockEC2APIMockRecorder) DescribeNatGateways added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeNatGateways(arg0 interface{}) *gomock.Call

DescribeNatGateways indicates an expected call of DescribeNatGateways.

func (*MockEC2APIMockRecorder) DescribeNatGatewaysPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeNatGatewaysPages(arg0, arg1 interface{}) *gomock.Call

DescribeNatGatewaysPages indicates an expected call of DescribeNatGatewaysPages.

func (*MockEC2APIMockRecorder) DescribeNatGatewaysPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeNatGatewaysPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeNatGatewaysPagesWithContext indicates an expected call of DescribeNatGatewaysPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeNatGatewaysRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeNatGatewaysRequest(arg0 interface{}) *gomock.Call

DescribeNatGatewaysRequest indicates an expected call of DescribeNatGatewaysRequest.

func (*MockEC2APIMockRecorder) DescribeNatGatewaysWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeNatGatewaysWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeNatGatewaysWithContext indicates an expected call of DescribeNatGatewaysWithContext.

func (*MockEC2APIMockRecorder) DescribeNetworkAcls added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeNetworkAcls(arg0 interface{}) *gomock.Call

DescribeNetworkAcls indicates an expected call of DescribeNetworkAcls.

func (*MockEC2APIMockRecorder) DescribeNetworkAclsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeNetworkAclsPages(arg0, arg1 interface{}) *gomock.Call

DescribeNetworkAclsPages indicates an expected call of DescribeNetworkAclsPages.

func (*MockEC2APIMockRecorder) DescribeNetworkAclsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeNetworkAclsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeNetworkAclsPagesWithContext indicates an expected call of DescribeNetworkAclsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeNetworkAclsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeNetworkAclsRequest(arg0 interface{}) *gomock.Call

DescribeNetworkAclsRequest indicates an expected call of DescribeNetworkAclsRequest.

func (*MockEC2APIMockRecorder) DescribeNetworkAclsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeNetworkAclsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeNetworkAclsWithContext indicates an expected call of DescribeNetworkAclsWithContext.

func (*MockEC2APIMockRecorder) DescribeNetworkInsightsAccessScopeAnalyses added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeNetworkInsightsAccessScopeAnalyses(arg0 interface{}) *gomock.Call

DescribeNetworkInsightsAccessScopeAnalyses indicates an expected call of DescribeNetworkInsightsAccessScopeAnalyses.

func (*MockEC2APIMockRecorder) DescribeNetworkInsightsAccessScopeAnalysesPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeNetworkInsightsAccessScopeAnalysesPages(arg0, arg1 interface{}) *gomock.Call

DescribeNetworkInsightsAccessScopeAnalysesPages indicates an expected call of DescribeNetworkInsightsAccessScopeAnalysesPages.

func (*MockEC2APIMockRecorder) DescribeNetworkInsightsAccessScopeAnalysesPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeNetworkInsightsAccessScopeAnalysesPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeNetworkInsightsAccessScopeAnalysesPagesWithContext indicates an expected call of DescribeNetworkInsightsAccessScopeAnalysesPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeNetworkInsightsAccessScopeAnalysesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeNetworkInsightsAccessScopeAnalysesRequest(arg0 interface{}) *gomock.Call

DescribeNetworkInsightsAccessScopeAnalysesRequest indicates an expected call of DescribeNetworkInsightsAccessScopeAnalysesRequest.

func (*MockEC2APIMockRecorder) DescribeNetworkInsightsAccessScopeAnalysesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeNetworkInsightsAccessScopeAnalysesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeNetworkInsightsAccessScopeAnalysesWithContext indicates an expected call of DescribeNetworkInsightsAccessScopeAnalysesWithContext.

func (*MockEC2APIMockRecorder) DescribeNetworkInsightsAccessScopes added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeNetworkInsightsAccessScopes(arg0 interface{}) *gomock.Call

DescribeNetworkInsightsAccessScopes indicates an expected call of DescribeNetworkInsightsAccessScopes.

func (*MockEC2APIMockRecorder) DescribeNetworkInsightsAccessScopesPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeNetworkInsightsAccessScopesPages(arg0, arg1 interface{}) *gomock.Call

DescribeNetworkInsightsAccessScopesPages indicates an expected call of DescribeNetworkInsightsAccessScopesPages.

func (*MockEC2APIMockRecorder) DescribeNetworkInsightsAccessScopesPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeNetworkInsightsAccessScopesPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeNetworkInsightsAccessScopesPagesWithContext indicates an expected call of DescribeNetworkInsightsAccessScopesPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeNetworkInsightsAccessScopesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeNetworkInsightsAccessScopesRequest(arg0 interface{}) *gomock.Call

DescribeNetworkInsightsAccessScopesRequest indicates an expected call of DescribeNetworkInsightsAccessScopesRequest.

func (*MockEC2APIMockRecorder) DescribeNetworkInsightsAccessScopesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeNetworkInsightsAccessScopesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeNetworkInsightsAccessScopesWithContext indicates an expected call of DescribeNetworkInsightsAccessScopesWithContext.

func (*MockEC2APIMockRecorder) DescribeNetworkInsightsAnalyses added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeNetworkInsightsAnalyses(arg0 interface{}) *gomock.Call

DescribeNetworkInsightsAnalyses indicates an expected call of DescribeNetworkInsightsAnalyses.

func (*MockEC2APIMockRecorder) DescribeNetworkInsightsAnalysesPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeNetworkInsightsAnalysesPages(arg0, arg1 interface{}) *gomock.Call

DescribeNetworkInsightsAnalysesPages indicates an expected call of DescribeNetworkInsightsAnalysesPages.

func (*MockEC2APIMockRecorder) DescribeNetworkInsightsAnalysesPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeNetworkInsightsAnalysesPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeNetworkInsightsAnalysesPagesWithContext indicates an expected call of DescribeNetworkInsightsAnalysesPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeNetworkInsightsAnalysesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeNetworkInsightsAnalysesRequest(arg0 interface{}) *gomock.Call

DescribeNetworkInsightsAnalysesRequest indicates an expected call of DescribeNetworkInsightsAnalysesRequest.

func (*MockEC2APIMockRecorder) DescribeNetworkInsightsAnalysesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeNetworkInsightsAnalysesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeNetworkInsightsAnalysesWithContext indicates an expected call of DescribeNetworkInsightsAnalysesWithContext.

func (*MockEC2APIMockRecorder) DescribeNetworkInsightsPaths added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeNetworkInsightsPaths(arg0 interface{}) *gomock.Call

DescribeNetworkInsightsPaths indicates an expected call of DescribeNetworkInsightsPaths.

func (*MockEC2APIMockRecorder) DescribeNetworkInsightsPathsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeNetworkInsightsPathsPages(arg0, arg1 interface{}) *gomock.Call

DescribeNetworkInsightsPathsPages indicates an expected call of DescribeNetworkInsightsPathsPages.

func (*MockEC2APIMockRecorder) DescribeNetworkInsightsPathsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeNetworkInsightsPathsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeNetworkInsightsPathsPagesWithContext indicates an expected call of DescribeNetworkInsightsPathsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeNetworkInsightsPathsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeNetworkInsightsPathsRequest(arg0 interface{}) *gomock.Call

DescribeNetworkInsightsPathsRequest indicates an expected call of DescribeNetworkInsightsPathsRequest.

func (*MockEC2APIMockRecorder) DescribeNetworkInsightsPathsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeNetworkInsightsPathsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeNetworkInsightsPathsWithContext indicates an expected call of DescribeNetworkInsightsPathsWithContext.

func (*MockEC2APIMockRecorder) DescribeNetworkInterfaceAttribute added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeNetworkInterfaceAttribute(arg0 interface{}) *gomock.Call

DescribeNetworkInterfaceAttribute indicates an expected call of DescribeNetworkInterfaceAttribute.

func (*MockEC2APIMockRecorder) DescribeNetworkInterfaceAttributeRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeNetworkInterfaceAttributeRequest(arg0 interface{}) *gomock.Call

DescribeNetworkInterfaceAttributeRequest indicates an expected call of DescribeNetworkInterfaceAttributeRequest.

func (*MockEC2APIMockRecorder) DescribeNetworkInterfaceAttributeWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeNetworkInterfaceAttributeWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeNetworkInterfaceAttributeWithContext indicates an expected call of DescribeNetworkInterfaceAttributeWithContext.

func (*MockEC2APIMockRecorder) DescribeNetworkInterfacePermissions added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeNetworkInterfacePermissions(arg0 interface{}) *gomock.Call

DescribeNetworkInterfacePermissions indicates an expected call of DescribeNetworkInterfacePermissions.

func (*MockEC2APIMockRecorder) DescribeNetworkInterfacePermissionsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeNetworkInterfacePermissionsPages(arg0, arg1 interface{}) *gomock.Call

DescribeNetworkInterfacePermissionsPages indicates an expected call of DescribeNetworkInterfacePermissionsPages.

func (*MockEC2APIMockRecorder) DescribeNetworkInterfacePermissionsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeNetworkInterfacePermissionsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeNetworkInterfacePermissionsPagesWithContext indicates an expected call of DescribeNetworkInterfacePermissionsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeNetworkInterfacePermissionsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeNetworkInterfacePermissionsRequest(arg0 interface{}) *gomock.Call

DescribeNetworkInterfacePermissionsRequest indicates an expected call of DescribeNetworkInterfacePermissionsRequest.

func (*MockEC2APIMockRecorder) DescribeNetworkInterfacePermissionsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeNetworkInterfacePermissionsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeNetworkInterfacePermissionsWithContext indicates an expected call of DescribeNetworkInterfacePermissionsWithContext.

func (*MockEC2APIMockRecorder) DescribeNetworkInterfaces added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeNetworkInterfaces(arg0 interface{}) *gomock.Call

DescribeNetworkInterfaces indicates an expected call of DescribeNetworkInterfaces.

func (*MockEC2APIMockRecorder) DescribeNetworkInterfacesPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeNetworkInterfacesPages(arg0, arg1 interface{}) *gomock.Call

DescribeNetworkInterfacesPages indicates an expected call of DescribeNetworkInterfacesPages.

func (*MockEC2APIMockRecorder) DescribeNetworkInterfacesPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeNetworkInterfacesPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeNetworkInterfacesPagesWithContext indicates an expected call of DescribeNetworkInterfacesPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeNetworkInterfacesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeNetworkInterfacesRequest(arg0 interface{}) *gomock.Call

DescribeNetworkInterfacesRequest indicates an expected call of DescribeNetworkInterfacesRequest.

func (*MockEC2APIMockRecorder) DescribeNetworkInterfacesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeNetworkInterfacesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeNetworkInterfacesWithContext indicates an expected call of DescribeNetworkInterfacesWithContext.

func (*MockEC2APIMockRecorder) DescribePlacementGroups added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribePlacementGroups(arg0 interface{}) *gomock.Call

DescribePlacementGroups indicates an expected call of DescribePlacementGroups.

func (*MockEC2APIMockRecorder) DescribePlacementGroupsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribePlacementGroupsRequest(arg0 interface{}) *gomock.Call

DescribePlacementGroupsRequest indicates an expected call of DescribePlacementGroupsRequest.

func (*MockEC2APIMockRecorder) DescribePlacementGroupsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribePlacementGroupsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribePlacementGroupsWithContext indicates an expected call of DescribePlacementGroupsWithContext.

func (*MockEC2APIMockRecorder) DescribePrefixLists added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribePrefixLists(arg0 interface{}) *gomock.Call

DescribePrefixLists indicates an expected call of DescribePrefixLists.

func (*MockEC2APIMockRecorder) DescribePrefixListsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribePrefixListsPages(arg0, arg1 interface{}) *gomock.Call

DescribePrefixListsPages indicates an expected call of DescribePrefixListsPages.

func (*MockEC2APIMockRecorder) DescribePrefixListsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribePrefixListsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribePrefixListsPagesWithContext indicates an expected call of DescribePrefixListsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribePrefixListsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribePrefixListsRequest(arg0 interface{}) *gomock.Call

DescribePrefixListsRequest indicates an expected call of DescribePrefixListsRequest.

func (*MockEC2APIMockRecorder) DescribePrefixListsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribePrefixListsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribePrefixListsWithContext indicates an expected call of DescribePrefixListsWithContext.

func (*MockEC2APIMockRecorder) DescribePrincipalIdFormat added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribePrincipalIdFormat(arg0 interface{}) *gomock.Call

DescribePrincipalIdFormat indicates an expected call of DescribePrincipalIdFormat.

func (*MockEC2APIMockRecorder) DescribePrincipalIdFormatPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribePrincipalIdFormatPages(arg0, arg1 interface{}) *gomock.Call

DescribePrincipalIdFormatPages indicates an expected call of DescribePrincipalIdFormatPages.

func (*MockEC2APIMockRecorder) DescribePrincipalIdFormatPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribePrincipalIdFormatPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribePrincipalIdFormatPagesWithContext indicates an expected call of DescribePrincipalIdFormatPagesWithContext.

func (*MockEC2APIMockRecorder) DescribePrincipalIdFormatRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribePrincipalIdFormatRequest(arg0 interface{}) *gomock.Call

DescribePrincipalIdFormatRequest indicates an expected call of DescribePrincipalIdFormatRequest.

func (*MockEC2APIMockRecorder) DescribePrincipalIdFormatWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribePrincipalIdFormatWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribePrincipalIdFormatWithContext indicates an expected call of DescribePrincipalIdFormatWithContext.

func (*MockEC2APIMockRecorder) DescribePublicIpv4Pools added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribePublicIpv4Pools(arg0 interface{}) *gomock.Call

DescribePublicIpv4Pools indicates an expected call of DescribePublicIpv4Pools.

func (*MockEC2APIMockRecorder) DescribePublicIpv4PoolsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribePublicIpv4PoolsPages(arg0, arg1 interface{}) *gomock.Call

DescribePublicIpv4PoolsPages indicates an expected call of DescribePublicIpv4PoolsPages.

func (*MockEC2APIMockRecorder) DescribePublicIpv4PoolsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribePublicIpv4PoolsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribePublicIpv4PoolsPagesWithContext indicates an expected call of DescribePublicIpv4PoolsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribePublicIpv4PoolsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribePublicIpv4PoolsRequest(arg0 interface{}) *gomock.Call

DescribePublicIpv4PoolsRequest indicates an expected call of DescribePublicIpv4PoolsRequest.

func (*MockEC2APIMockRecorder) DescribePublicIpv4PoolsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribePublicIpv4PoolsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribePublicIpv4PoolsWithContext indicates an expected call of DescribePublicIpv4PoolsWithContext.

func (*MockEC2APIMockRecorder) DescribeRegions added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeRegions(arg0 interface{}) *gomock.Call

DescribeRegions indicates an expected call of DescribeRegions.

func (*MockEC2APIMockRecorder) DescribeRegionsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeRegionsRequest(arg0 interface{}) *gomock.Call

DescribeRegionsRequest indicates an expected call of DescribeRegionsRequest.

func (*MockEC2APIMockRecorder) DescribeRegionsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeRegionsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeRegionsWithContext indicates an expected call of DescribeRegionsWithContext.

func (*MockEC2APIMockRecorder) DescribeReplaceRootVolumeTasks added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeReplaceRootVolumeTasks(arg0 interface{}) *gomock.Call

DescribeReplaceRootVolumeTasks indicates an expected call of DescribeReplaceRootVolumeTasks.

func (*MockEC2APIMockRecorder) DescribeReplaceRootVolumeTasksPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeReplaceRootVolumeTasksPages(arg0, arg1 interface{}) *gomock.Call

DescribeReplaceRootVolumeTasksPages indicates an expected call of DescribeReplaceRootVolumeTasksPages.

func (*MockEC2APIMockRecorder) DescribeReplaceRootVolumeTasksPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeReplaceRootVolumeTasksPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeReplaceRootVolumeTasksPagesWithContext indicates an expected call of DescribeReplaceRootVolumeTasksPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeReplaceRootVolumeTasksRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeReplaceRootVolumeTasksRequest(arg0 interface{}) *gomock.Call

DescribeReplaceRootVolumeTasksRequest indicates an expected call of DescribeReplaceRootVolumeTasksRequest.

func (*MockEC2APIMockRecorder) DescribeReplaceRootVolumeTasksWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeReplaceRootVolumeTasksWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeReplaceRootVolumeTasksWithContext indicates an expected call of DescribeReplaceRootVolumeTasksWithContext.

func (*MockEC2APIMockRecorder) DescribeReservedInstances added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeReservedInstances(arg0 interface{}) *gomock.Call

DescribeReservedInstances indicates an expected call of DescribeReservedInstances.

func (*MockEC2APIMockRecorder) DescribeReservedInstancesListings added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeReservedInstancesListings(arg0 interface{}) *gomock.Call

DescribeReservedInstancesListings indicates an expected call of DescribeReservedInstancesListings.

func (*MockEC2APIMockRecorder) DescribeReservedInstancesListingsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeReservedInstancesListingsRequest(arg0 interface{}) *gomock.Call

DescribeReservedInstancesListingsRequest indicates an expected call of DescribeReservedInstancesListingsRequest.

func (*MockEC2APIMockRecorder) DescribeReservedInstancesListingsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeReservedInstancesListingsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeReservedInstancesListingsWithContext indicates an expected call of DescribeReservedInstancesListingsWithContext.

func (*MockEC2APIMockRecorder) DescribeReservedInstancesModifications added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeReservedInstancesModifications(arg0 interface{}) *gomock.Call

DescribeReservedInstancesModifications indicates an expected call of DescribeReservedInstancesModifications.

func (*MockEC2APIMockRecorder) DescribeReservedInstancesModificationsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeReservedInstancesModificationsPages(arg0, arg1 interface{}) *gomock.Call

DescribeReservedInstancesModificationsPages indicates an expected call of DescribeReservedInstancesModificationsPages.

func (*MockEC2APIMockRecorder) DescribeReservedInstancesModificationsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeReservedInstancesModificationsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeReservedInstancesModificationsPagesWithContext indicates an expected call of DescribeReservedInstancesModificationsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeReservedInstancesModificationsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeReservedInstancesModificationsRequest(arg0 interface{}) *gomock.Call

DescribeReservedInstancesModificationsRequest indicates an expected call of DescribeReservedInstancesModificationsRequest.

func (*MockEC2APIMockRecorder) DescribeReservedInstancesModificationsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeReservedInstancesModificationsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeReservedInstancesModificationsWithContext indicates an expected call of DescribeReservedInstancesModificationsWithContext.

func (*MockEC2APIMockRecorder) DescribeReservedInstancesOfferings added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeReservedInstancesOfferings(arg0 interface{}) *gomock.Call

DescribeReservedInstancesOfferings indicates an expected call of DescribeReservedInstancesOfferings.

func (*MockEC2APIMockRecorder) DescribeReservedInstancesOfferingsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeReservedInstancesOfferingsPages(arg0, arg1 interface{}) *gomock.Call

DescribeReservedInstancesOfferingsPages indicates an expected call of DescribeReservedInstancesOfferingsPages.

func (*MockEC2APIMockRecorder) DescribeReservedInstancesOfferingsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeReservedInstancesOfferingsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeReservedInstancesOfferingsPagesWithContext indicates an expected call of DescribeReservedInstancesOfferingsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeReservedInstancesOfferingsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeReservedInstancesOfferingsRequest(arg0 interface{}) *gomock.Call

DescribeReservedInstancesOfferingsRequest indicates an expected call of DescribeReservedInstancesOfferingsRequest.

func (*MockEC2APIMockRecorder) DescribeReservedInstancesOfferingsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeReservedInstancesOfferingsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeReservedInstancesOfferingsWithContext indicates an expected call of DescribeReservedInstancesOfferingsWithContext.

func (*MockEC2APIMockRecorder) DescribeReservedInstancesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeReservedInstancesRequest(arg0 interface{}) *gomock.Call

DescribeReservedInstancesRequest indicates an expected call of DescribeReservedInstancesRequest.

func (*MockEC2APIMockRecorder) DescribeReservedInstancesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeReservedInstancesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeReservedInstancesWithContext indicates an expected call of DescribeReservedInstancesWithContext.

func (*MockEC2APIMockRecorder) DescribeRouteTables added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeRouteTables(arg0 interface{}) *gomock.Call

DescribeRouteTables indicates an expected call of DescribeRouteTables.

func (*MockEC2APIMockRecorder) DescribeRouteTablesPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeRouteTablesPages(arg0, arg1 interface{}) *gomock.Call

DescribeRouteTablesPages indicates an expected call of DescribeRouteTablesPages.

func (*MockEC2APIMockRecorder) DescribeRouteTablesPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeRouteTablesPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeRouteTablesPagesWithContext indicates an expected call of DescribeRouteTablesPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeRouteTablesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeRouteTablesRequest(arg0 interface{}) *gomock.Call

DescribeRouteTablesRequest indicates an expected call of DescribeRouteTablesRequest.

func (*MockEC2APIMockRecorder) DescribeRouteTablesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeRouteTablesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeRouteTablesWithContext indicates an expected call of DescribeRouteTablesWithContext.

func (*MockEC2APIMockRecorder) DescribeScheduledInstanceAvailability added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeScheduledInstanceAvailability(arg0 interface{}) *gomock.Call

DescribeScheduledInstanceAvailability indicates an expected call of DescribeScheduledInstanceAvailability.

func (*MockEC2APIMockRecorder) DescribeScheduledInstanceAvailabilityPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeScheduledInstanceAvailabilityPages(arg0, arg1 interface{}) *gomock.Call

DescribeScheduledInstanceAvailabilityPages indicates an expected call of DescribeScheduledInstanceAvailabilityPages.

func (*MockEC2APIMockRecorder) DescribeScheduledInstanceAvailabilityPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeScheduledInstanceAvailabilityPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeScheduledInstanceAvailabilityPagesWithContext indicates an expected call of DescribeScheduledInstanceAvailabilityPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeScheduledInstanceAvailabilityRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeScheduledInstanceAvailabilityRequest(arg0 interface{}) *gomock.Call

DescribeScheduledInstanceAvailabilityRequest indicates an expected call of DescribeScheduledInstanceAvailabilityRequest.

func (*MockEC2APIMockRecorder) DescribeScheduledInstanceAvailabilityWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeScheduledInstanceAvailabilityWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeScheduledInstanceAvailabilityWithContext indicates an expected call of DescribeScheduledInstanceAvailabilityWithContext.

func (*MockEC2APIMockRecorder) DescribeScheduledInstances added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeScheduledInstances(arg0 interface{}) *gomock.Call

DescribeScheduledInstances indicates an expected call of DescribeScheduledInstances.

func (*MockEC2APIMockRecorder) DescribeScheduledInstancesPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeScheduledInstancesPages(arg0, arg1 interface{}) *gomock.Call

DescribeScheduledInstancesPages indicates an expected call of DescribeScheduledInstancesPages.

func (*MockEC2APIMockRecorder) DescribeScheduledInstancesPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeScheduledInstancesPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeScheduledInstancesPagesWithContext indicates an expected call of DescribeScheduledInstancesPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeScheduledInstancesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeScheduledInstancesRequest(arg0 interface{}) *gomock.Call

DescribeScheduledInstancesRequest indicates an expected call of DescribeScheduledInstancesRequest.

func (*MockEC2APIMockRecorder) DescribeScheduledInstancesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeScheduledInstancesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeScheduledInstancesWithContext indicates an expected call of DescribeScheduledInstancesWithContext.

func (*MockEC2APIMockRecorder) DescribeSecurityGroupReferences added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSecurityGroupReferences(arg0 interface{}) *gomock.Call

DescribeSecurityGroupReferences indicates an expected call of DescribeSecurityGroupReferences.

func (*MockEC2APIMockRecorder) DescribeSecurityGroupReferencesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSecurityGroupReferencesRequest(arg0 interface{}) *gomock.Call

DescribeSecurityGroupReferencesRequest indicates an expected call of DescribeSecurityGroupReferencesRequest.

func (*MockEC2APIMockRecorder) DescribeSecurityGroupReferencesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSecurityGroupReferencesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeSecurityGroupReferencesWithContext indicates an expected call of DescribeSecurityGroupReferencesWithContext.

func (*MockEC2APIMockRecorder) DescribeSecurityGroupRules added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSecurityGroupRules(arg0 interface{}) *gomock.Call

DescribeSecurityGroupRules indicates an expected call of DescribeSecurityGroupRules.

func (*MockEC2APIMockRecorder) DescribeSecurityGroupRulesPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSecurityGroupRulesPages(arg0, arg1 interface{}) *gomock.Call

DescribeSecurityGroupRulesPages indicates an expected call of DescribeSecurityGroupRulesPages.

func (*MockEC2APIMockRecorder) DescribeSecurityGroupRulesPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSecurityGroupRulesPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeSecurityGroupRulesPagesWithContext indicates an expected call of DescribeSecurityGroupRulesPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeSecurityGroupRulesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSecurityGroupRulesRequest(arg0 interface{}) *gomock.Call

DescribeSecurityGroupRulesRequest indicates an expected call of DescribeSecurityGroupRulesRequest.

func (*MockEC2APIMockRecorder) DescribeSecurityGroupRulesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSecurityGroupRulesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeSecurityGroupRulesWithContext indicates an expected call of DescribeSecurityGroupRulesWithContext.

func (*MockEC2APIMockRecorder) DescribeSecurityGroups added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSecurityGroups(arg0 interface{}) *gomock.Call

DescribeSecurityGroups indicates an expected call of DescribeSecurityGroups.

func (*MockEC2APIMockRecorder) DescribeSecurityGroupsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSecurityGroupsPages(arg0, arg1 interface{}) *gomock.Call

DescribeSecurityGroupsPages indicates an expected call of DescribeSecurityGroupsPages.

func (*MockEC2APIMockRecorder) DescribeSecurityGroupsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSecurityGroupsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeSecurityGroupsPagesWithContext indicates an expected call of DescribeSecurityGroupsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeSecurityGroupsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSecurityGroupsRequest(arg0 interface{}) *gomock.Call

DescribeSecurityGroupsRequest indicates an expected call of DescribeSecurityGroupsRequest.

func (*MockEC2APIMockRecorder) DescribeSecurityGroupsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSecurityGroupsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeSecurityGroupsWithContext indicates an expected call of DescribeSecurityGroupsWithContext.

func (*MockEC2APIMockRecorder) DescribeSnapshotAttribute added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSnapshotAttribute(arg0 interface{}) *gomock.Call

DescribeSnapshotAttribute indicates an expected call of DescribeSnapshotAttribute.

func (*MockEC2APIMockRecorder) DescribeSnapshotAttributeRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSnapshotAttributeRequest(arg0 interface{}) *gomock.Call

DescribeSnapshotAttributeRequest indicates an expected call of DescribeSnapshotAttributeRequest.

func (*MockEC2APIMockRecorder) DescribeSnapshotAttributeWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSnapshotAttributeWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeSnapshotAttributeWithContext indicates an expected call of DescribeSnapshotAttributeWithContext.

func (*MockEC2APIMockRecorder) DescribeSnapshotTierStatus added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSnapshotTierStatus(arg0 interface{}) *gomock.Call

DescribeSnapshotTierStatus indicates an expected call of DescribeSnapshotTierStatus.

func (*MockEC2APIMockRecorder) DescribeSnapshotTierStatusPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSnapshotTierStatusPages(arg0, arg1 interface{}) *gomock.Call

DescribeSnapshotTierStatusPages indicates an expected call of DescribeSnapshotTierStatusPages.

func (*MockEC2APIMockRecorder) DescribeSnapshotTierStatusPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSnapshotTierStatusPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeSnapshotTierStatusPagesWithContext indicates an expected call of DescribeSnapshotTierStatusPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeSnapshotTierStatusRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSnapshotTierStatusRequest(arg0 interface{}) *gomock.Call

DescribeSnapshotTierStatusRequest indicates an expected call of DescribeSnapshotTierStatusRequest.

func (*MockEC2APIMockRecorder) DescribeSnapshotTierStatusWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSnapshotTierStatusWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeSnapshotTierStatusWithContext indicates an expected call of DescribeSnapshotTierStatusWithContext.

func (*MockEC2APIMockRecorder) DescribeSnapshots added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSnapshots(arg0 interface{}) *gomock.Call

DescribeSnapshots indicates an expected call of DescribeSnapshots.

func (*MockEC2APIMockRecorder) DescribeSnapshotsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSnapshotsPages(arg0, arg1 interface{}) *gomock.Call

DescribeSnapshotsPages indicates an expected call of DescribeSnapshotsPages.

func (*MockEC2APIMockRecorder) DescribeSnapshotsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSnapshotsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeSnapshotsPagesWithContext indicates an expected call of DescribeSnapshotsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeSnapshotsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSnapshotsRequest(arg0 interface{}) *gomock.Call

DescribeSnapshotsRequest indicates an expected call of DescribeSnapshotsRequest.

func (*MockEC2APIMockRecorder) DescribeSnapshotsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSnapshotsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeSnapshotsWithContext indicates an expected call of DescribeSnapshotsWithContext.

func (*MockEC2APIMockRecorder) DescribeSpotDatafeedSubscription added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSpotDatafeedSubscription(arg0 interface{}) *gomock.Call

DescribeSpotDatafeedSubscription indicates an expected call of DescribeSpotDatafeedSubscription.

func (*MockEC2APIMockRecorder) DescribeSpotDatafeedSubscriptionRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSpotDatafeedSubscriptionRequest(arg0 interface{}) *gomock.Call

DescribeSpotDatafeedSubscriptionRequest indicates an expected call of DescribeSpotDatafeedSubscriptionRequest.

func (*MockEC2APIMockRecorder) DescribeSpotDatafeedSubscriptionWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSpotDatafeedSubscriptionWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeSpotDatafeedSubscriptionWithContext indicates an expected call of DescribeSpotDatafeedSubscriptionWithContext.

func (*MockEC2APIMockRecorder) DescribeSpotFleetInstances added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSpotFleetInstances(arg0 interface{}) *gomock.Call

DescribeSpotFleetInstances indicates an expected call of DescribeSpotFleetInstances.

func (*MockEC2APIMockRecorder) DescribeSpotFleetInstancesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSpotFleetInstancesRequest(arg0 interface{}) *gomock.Call

DescribeSpotFleetInstancesRequest indicates an expected call of DescribeSpotFleetInstancesRequest.

func (*MockEC2APIMockRecorder) DescribeSpotFleetInstancesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSpotFleetInstancesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeSpotFleetInstancesWithContext indicates an expected call of DescribeSpotFleetInstancesWithContext.

func (*MockEC2APIMockRecorder) DescribeSpotFleetRequestHistory added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSpotFleetRequestHistory(arg0 interface{}) *gomock.Call

DescribeSpotFleetRequestHistory indicates an expected call of DescribeSpotFleetRequestHistory.

func (*MockEC2APIMockRecorder) DescribeSpotFleetRequestHistoryRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSpotFleetRequestHistoryRequest(arg0 interface{}) *gomock.Call

DescribeSpotFleetRequestHistoryRequest indicates an expected call of DescribeSpotFleetRequestHistoryRequest.

func (*MockEC2APIMockRecorder) DescribeSpotFleetRequestHistoryWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSpotFleetRequestHistoryWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeSpotFleetRequestHistoryWithContext indicates an expected call of DescribeSpotFleetRequestHistoryWithContext.

func (*MockEC2APIMockRecorder) DescribeSpotFleetRequests added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSpotFleetRequests(arg0 interface{}) *gomock.Call

DescribeSpotFleetRequests indicates an expected call of DescribeSpotFleetRequests.

func (*MockEC2APIMockRecorder) DescribeSpotFleetRequestsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSpotFleetRequestsPages(arg0, arg1 interface{}) *gomock.Call

DescribeSpotFleetRequestsPages indicates an expected call of DescribeSpotFleetRequestsPages.

func (*MockEC2APIMockRecorder) DescribeSpotFleetRequestsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSpotFleetRequestsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeSpotFleetRequestsPagesWithContext indicates an expected call of DescribeSpotFleetRequestsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeSpotFleetRequestsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSpotFleetRequestsRequest(arg0 interface{}) *gomock.Call

DescribeSpotFleetRequestsRequest indicates an expected call of DescribeSpotFleetRequestsRequest.

func (*MockEC2APIMockRecorder) DescribeSpotFleetRequestsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSpotFleetRequestsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeSpotFleetRequestsWithContext indicates an expected call of DescribeSpotFleetRequestsWithContext.

func (*MockEC2APIMockRecorder) DescribeSpotInstanceRequests added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSpotInstanceRequests(arg0 interface{}) *gomock.Call

DescribeSpotInstanceRequests indicates an expected call of DescribeSpotInstanceRequests.

func (*MockEC2APIMockRecorder) DescribeSpotInstanceRequestsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSpotInstanceRequestsPages(arg0, arg1 interface{}) *gomock.Call

DescribeSpotInstanceRequestsPages indicates an expected call of DescribeSpotInstanceRequestsPages.

func (*MockEC2APIMockRecorder) DescribeSpotInstanceRequestsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSpotInstanceRequestsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeSpotInstanceRequestsPagesWithContext indicates an expected call of DescribeSpotInstanceRequestsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeSpotInstanceRequestsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSpotInstanceRequestsRequest(arg0 interface{}) *gomock.Call

DescribeSpotInstanceRequestsRequest indicates an expected call of DescribeSpotInstanceRequestsRequest.

func (*MockEC2APIMockRecorder) DescribeSpotInstanceRequestsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSpotInstanceRequestsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeSpotInstanceRequestsWithContext indicates an expected call of DescribeSpotInstanceRequestsWithContext.

func (*MockEC2APIMockRecorder) DescribeSpotPriceHistory added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSpotPriceHistory(arg0 interface{}) *gomock.Call

DescribeSpotPriceHistory indicates an expected call of DescribeSpotPriceHistory.

func (*MockEC2APIMockRecorder) DescribeSpotPriceHistoryPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSpotPriceHistoryPages(arg0, arg1 interface{}) *gomock.Call

DescribeSpotPriceHistoryPages indicates an expected call of DescribeSpotPriceHistoryPages.

func (*MockEC2APIMockRecorder) DescribeSpotPriceHistoryPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSpotPriceHistoryPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeSpotPriceHistoryPagesWithContext indicates an expected call of DescribeSpotPriceHistoryPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeSpotPriceHistoryRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSpotPriceHistoryRequest(arg0 interface{}) *gomock.Call

DescribeSpotPriceHistoryRequest indicates an expected call of DescribeSpotPriceHistoryRequest.

func (*MockEC2APIMockRecorder) DescribeSpotPriceHistoryWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSpotPriceHistoryWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeSpotPriceHistoryWithContext indicates an expected call of DescribeSpotPriceHistoryWithContext.

func (*MockEC2APIMockRecorder) DescribeStaleSecurityGroups added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeStaleSecurityGroups(arg0 interface{}) *gomock.Call

DescribeStaleSecurityGroups indicates an expected call of DescribeStaleSecurityGroups.

func (*MockEC2APIMockRecorder) DescribeStaleSecurityGroupsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeStaleSecurityGroupsPages(arg0, arg1 interface{}) *gomock.Call

DescribeStaleSecurityGroupsPages indicates an expected call of DescribeStaleSecurityGroupsPages.

func (*MockEC2APIMockRecorder) DescribeStaleSecurityGroupsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeStaleSecurityGroupsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeStaleSecurityGroupsPagesWithContext indicates an expected call of DescribeStaleSecurityGroupsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeStaleSecurityGroupsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeStaleSecurityGroupsRequest(arg0 interface{}) *gomock.Call

DescribeStaleSecurityGroupsRequest indicates an expected call of DescribeStaleSecurityGroupsRequest.

func (*MockEC2APIMockRecorder) DescribeStaleSecurityGroupsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeStaleSecurityGroupsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeStaleSecurityGroupsWithContext indicates an expected call of DescribeStaleSecurityGroupsWithContext.

func (*MockEC2APIMockRecorder) DescribeStoreImageTasks added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeStoreImageTasks(arg0 interface{}) *gomock.Call

DescribeStoreImageTasks indicates an expected call of DescribeStoreImageTasks.

func (*MockEC2APIMockRecorder) DescribeStoreImageTasksPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeStoreImageTasksPages(arg0, arg1 interface{}) *gomock.Call

DescribeStoreImageTasksPages indicates an expected call of DescribeStoreImageTasksPages.

func (*MockEC2APIMockRecorder) DescribeStoreImageTasksPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeStoreImageTasksPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeStoreImageTasksPagesWithContext indicates an expected call of DescribeStoreImageTasksPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeStoreImageTasksRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeStoreImageTasksRequest(arg0 interface{}) *gomock.Call

DescribeStoreImageTasksRequest indicates an expected call of DescribeStoreImageTasksRequest.

func (*MockEC2APIMockRecorder) DescribeStoreImageTasksWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeStoreImageTasksWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeStoreImageTasksWithContext indicates an expected call of DescribeStoreImageTasksWithContext.

func (*MockEC2APIMockRecorder) DescribeSubnets added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSubnets(arg0 interface{}) *gomock.Call

DescribeSubnets indicates an expected call of DescribeSubnets.

func (*MockEC2APIMockRecorder) DescribeSubnetsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSubnetsPages(arg0, arg1 interface{}) *gomock.Call

DescribeSubnetsPages indicates an expected call of DescribeSubnetsPages.

func (*MockEC2APIMockRecorder) DescribeSubnetsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSubnetsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeSubnetsPagesWithContext indicates an expected call of DescribeSubnetsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeSubnetsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSubnetsRequest(arg0 interface{}) *gomock.Call

DescribeSubnetsRequest indicates an expected call of DescribeSubnetsRequest.

func (*MockEC2APIMockRecorder) DescribeSubnetsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeSubnetsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeSubnetsWithContext indicates an expected call of DescribeSubnetsWithContext.

func (*MockEC2APIMockRecorder) DescribeTags added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTags(arg0 interface{}) *gomock.Call

DescribeTags indicates an expected call of DescribeTags.

func (*MockEC2APIMockRecorder) DescribeTagsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTagsPages(arg0, arg1 interface{}) *gomock.Call

DescribeTagsPages indicates an expected call of DescribeTagsPages.

func (*MockEC2APIMockRecorder) DescribeTagsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTagsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeTagsPagesWithContext indicates an expected call of DescribeTagsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeTagsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTagsRequest(arg0 interface{}) *gomock.Call

DescribeTagsRequest indicates an expected call of DescribeTagsRequest.

func (*MockEC2APIMockRecorder) DescribeTagsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTagsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeTagsWithContext indicates an expected call of DescribeTagsWithContext.

func (*MockEC2APIMockRecorder) DescribeTrafficMirrorFilters added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTrafficMirrorFilters(arg0 interface{}) *gomock.Call

DescribeTrafficMirrorFilters indicates an expected call of DescribeTrafficMirrorFilters.

func (*MockEC2APIMockRecorder) DescribeTrafficMirrorFiltersPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTrafficMirrorFiltersPages(arg0, arg1 interface{}) *gomock.Call

DescribeTrafficMirrorFiltersPages indicates an expected call of DescribeTrafficMirrorFiltersPages.

func (*MockEC2APIMockRecorder) DescribeTrafficMirrorFiltersPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTrafficMirrorFiltersPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeTrafficMirrorFiltersPagesWithContext indicates an expected call of DescribeTrafficMirrorFiltersPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeTrafficMirrorFiltersRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTrafficMirrorFiltersRequest(arg0 interface{}) *gomock.Call

DescribeTrafficMirrorFiltersRequest indicates an expected call of DescribeTrafficMirrorFiltersRequest.

func (*MockEC2APIMockRecorder) DescribeTrafficMirrorFiltersWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTrafficMirrorFiltersWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeTrafficMirrorFiltersWithContext indicates an expected call of DescribeTrafficMirrorFiltersWithContext.

func (*MockEC2APIMockRecorder) DescribeTrafficMirrorSessions added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTrafficMirrorSessions(arg0 interface{}) *gomock.Call

DescribeTrafficMirrorSessions indicates an expected call of DescribeTrafficMirrorSessions.

func (*MockEC2APIMockRecorder) DescribeTrafficMirrorSessionsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTrafficMirrorSessionsPages(arg0, arg1 interface{}) *gomock.Call

DescribeTrafficMirrorSessionsPages indicates an expected call of DescribeTrafficMirrorSessionsPages.

func (*MockEC2APIMockRecorder) DescribeTrafficMirrorSessionsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTrafficMirrorSessionsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeTrafficMirrorSessionsPagesWithContext indicates an expected call of DescribeTrafficMirrorSessionsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeTrafficMirrorSessionsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTrafficMirrorSessionsRequest(arg0 interface{}) *gomock.Call

DescribeTrafficMirrorSessionsRequest indicates an expected call of DescribeTrafficMirrorSessionsRequest.

func (*MockEC2APIMockRecorder) DescribeTrafficMirrorSessionsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTrafficMirrorSessionsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeTrafficMirrorSessionsWithContext indicates an expected call of DescribeTrafficMirrorSessionsWithContext.

func (*MockEC2APIMockRecorder) DescribeTrafficMirrorTargets added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTrafficMirrorTargets(arg0 interface{}) *gomock.Call

DescribeTrafficMirrorTargets indicates an expected call of DescribeTrafficMirrorTargets.

func (*MockEC2APIMockRecorder) DescribeTrafficMirrorTargetsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTrafficMirrorTargetsPages(arg0, arg1 interface{}) *gomock.Call

DescribeTrafficMirrorTargetsPages indicates an expected call of DescribeTrafficMirrorTargetsPages.

func (*MockEC2APIMockRecorder) DescribeTrafficMirrorTargetsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTrafficMirrorTargetsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeTrafficMirrorTargetsPagesWithContext indicates an expected call of DescribeTrafficMirrorTargetsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeTrafficMirrorTargetsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTrafficMirrorTargetsRequest(arg0 interface{}) *gomock.Call

DescribeTrafficMirrorTargetsRequest indicates an expected call of DescribeTrafficMirrorTargetsRequest.

func (*MockEC2APIMockRecorder) DescribeTrafficMirrorTargetsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTrafficMirrorTargetsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeTrafficMirrorTargetsWithContext indicates an expected call of DescribeTrafficMirrorTargetsWithContext.

func (*MockEC2APIMockRecorder) DescribeTransitGatewayAttachments added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewayAttachments(arg0 interface{}) *gomock.Call

DescribeTransitGatewayAttachments indicates an expected call of DescribeTransitGatewayAttachments.

func (*MockEC2APIMockRecorder) DescribeTransitGatewayAttachmentsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewayAttachmentsPages(arg0, arg1 interface{}) *gomock.Call

DescribeTransitGatewayAttachmentsPages indicates an expected call of DescribeTransitGatewayAttachmentsPages.

func (*MockEC2APIMockRecorder) DescribeTransitGatewayAttachmentsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewayAttachmentsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeTransitGatewayAttachmentsPagesWithContext indicates an expected call of DescribeTransitGatewayAttachmentsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeTransitGatewayAttachmentsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewayAttachmentsRequest(arg0 interface{}) *gomock.Call

DescribeTransitGatewayAttachmentsRequest indicates an expected call of DescribeTransitGatewayAttachmentsRequest.

func (*MockEC2APIMockRecorder) DescribeTransitGatewayAttachmentsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewayAttachmentsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeTransitGatewayAttachmentsWithContext indicates an expected call of DescribeTransitGatewayAttachmentsWithContext.

func (*MockEC2APIMockRecorder) DescribeTransitGatewayConnectPeers added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewayConnectPeers(arg0 interface{}) *gomock.Call

DescribeTransitGatewayConnectPeers indicates an expected call of DescribeTransitGatewayConnectPeers.

func (*MockEC2APIMockRecorder) DescribeTransitGatewayConnectPeersPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewayConnectPeersPages(arg0, arg1 interface{}) *gomock.Call

DescribeTransitGatewayConnectPeersPages indicates an expected call of DescribeTransitGatewayConnectPeersPages.

func (*MockEC2APIMockRecorder) DescribeTransitGatewayConnectPeersPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewayConnectPeersPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeTransitGatewayConnectPeersPagesWithContext indicates an expected call of DescribeTransitGatewayConnectPeersPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeTransitGatewayConnectPeersRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewayConnectPeersRequest(arg0 interface{}) *gomock.Call

DescribeTransitGatewayConnectPeersRequest indicates an expected call of DescribeTransitGatewayConnectPeersRequest.

func (*MockEC2APIMockRecorder) DescribeTransitGatewayConnectPeersWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewayConnectPeersWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeTransitGatewayConnectPeersWithContext indicates an expected call of DescribeTransitGatewayConnectPeersWithContext.

func (*MockEC2APIMockRecorder) DescribeTransitGatewayConnects added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewayConnects(arg0 interface{}) *gomock.Call

DescribeTransitGatewayConnects indicates an expected call of DescribeTransitGatewayConnects.

func (*MockEC2APIMockRecorder) DescribeTransitGatewayConnectsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewayConnectsPages(arg0, arg1 interface{}) *gomock.Call

DescribeTransitGatewayConnectsPages indicates an expected call of DescribeTransitGatewayConnectsPages.

func (*MockEC2APIMockRecorder) DescribeTransitGatewayConnectsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewayConnectsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeTransitGatewayConnectsPagesWithContext indicates an expected call of DescribeTransitGatewayConnectsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeTransitGatewayConnectsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewayConnectsRequest(arg0 interface{}) *gomock.Call

DescribeTransitGatewayConnectsRequest indicates an expected call of DescribeTransitGatewayConnectsRequest.

func (*MockEC2APIMockRecorder) DescribeTransitGatewayConnectsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewayConnectsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeTransitGatewayConnectsWithContext indicates an expected call of DescribeTransitGatewayConnectsWithContext.

func (*MockEC2APIMockRecorder) DescribeTransitGatewayMulticastDomains added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewayMulticastDomains(arg0 interface{}) *gomock.Call

DescribeTransitGatewayMulticastDomains indicates an expected call of DescribeTransitGatewayMulticastDomains.

func (*MockEC2APIMockRecorder) DescribeTransitGatewayMulticastDomainsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewayMulticastDomainsPages(arg0, arg1 interface{}) *gomock.Call

DescribeTransitGatewayMulticastDomainsPages indicates an expected call of DescribeTransitGatewayMulticastDomainsPages.

func (*MockEC2APIMockRecorder) DescribeTransitGatewayMulticastDomainsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewayMulticastDomainsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeTransitGatewayMulticastDomainsPagesWithContext indicates an expected call of DescribeTransitGatewayMulticastDomainsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeTransitGatewayMulticastDomainsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewayMulticastDomainsRequest(arg0 interface{}) *gomock.Call

DescribeTransitGatewayMulticastDomainsRequest indicates an expected call of DescribeTransitGatewayMulticastDomainsRequest.

func (*MockEC2APIMockRecorder) DescribeTransitGatewayMulticastDomainsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewayMulticastDomainsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeTransitGatewayMulticastDomainsWithContext indicates an expected call of DescribeTransitGatewayMulticastDomainsWithContext.

func (*MockEC2APIMockRecorder) DescribeTransitGatewayPeeringAttachments added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewayPeeringAttachments(arg0 interface{}) *gomock.Call

DescribeTransitGatewayPeeringAttachments indicates an expected call of DescribeTransitGatewayPeeringAttachments.

func (*MockEC2APIMockRecorder) DescribeTransitGatewayPeeringAttachmentsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewayPeeringAttachmentsPages(arg0, arg1 interface{}) *gomock.Call

DescribeTransitGatewayPeeringAttachmentsPages indicates an expected call of DescribeTransitGatewayPeeringAttachmentsPages.

func (*MockEC2APIMockRecorder) DescribeTransitGatewayPeeringAttachmentsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewayPeeringAttachmentsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeTransitGatewayPeeringAttachmentsPagesWithContext indicates an expected call of DescribeTransitGatewayPeeringAttachmentsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeTransitGatewayPeeringAttachmentsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewayPeeringAttachmentsRequest(arg0 interface{}) *gomock.Call

DescribeTransitGatewayPeeringAttachmentsRequest indicates an expected call of DescribeTransitGatewayPeeringAttachmentsRequest.

func (*MockEC2APIMockRecorder) DescribeTransitGatewayPeeringAttachmentsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewayPeeringAttachmentsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeTransitGatewayPeeringAttachmentsWithContext indicates an expected call of DescribeTransitGatewayPeeringAttachmentsWithContext.

func (*MockEC2APIMockRecorder) DescribeTransitGatewayPolicyTables added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewayPolicyTables(arg0 interface{}) *gomock.Call

DescribeTransitGatewayPolicyTables indicates an expected call of DescribeTransitGatewayPolicyTables.

func (*MockEC2APIMockRecorder) DescribeTransitGatewayPolicyTablesPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewayPolicyTablesPages(arg0, arg1 interface{}) *gomock.Call

DescribeTransitGatewayPolicyTablesPages indicates an expected call of DescribeTransitGatewayPolicyTablesPages.

func (*MockEC2APIMockRecorder) DescribeTransitGatewayPolicyTablesPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewayPolicyTablesPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeTransitGatewayPolicyTablesPagesWithContext indicates an expected call of DescribeTransitGatewayPolicyTablesPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeTransitGatewayPolicyTablesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewayPolicyTablesRequest(arg0 interface{}) *gomock.Call

DescribeTransitGatewayPolicyTablesRequest indicates an expected call of DescribeTransitGatewayPolicyTablesRequest.

func (*MockEC2APIMockRecorder) DescribeTransitGatewayPolicyTablesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewayPolicyTablesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeTransitGatewayPolicyTablesWithContext indicates an expected call of DescribeTransitGatewayPolicyTablesWithContext.

func (*MockEC2APIMockRecorder) DescribeTransitGatewayRouteTableAnnouncements added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewayRouteTableAnnouncements(arg0 interface{}) *gomock.Call

DescribeTransitGatewayRouteTableAnnouncements indicates an expected call of DescribeTransitGatewayRouteTableAnnouncements.

func (*MockEC2APIMockRecorder) DescribeTransitGatewayRouteTableAnnouncementsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewayRouteTableAnnouncementsPages(arg0, arg1 interface{}) *gomock.Call

DescribeTransitGatewayRouteTableAnnouncementsPages indicates an expected call of DescribeTransitGatewayRouteTableAnnouncementsPages.

func (*MockEC2APIMockRecorder) DescribeTransitGatewayRouteTableAnnouncementsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewayRouteTableAnnouncementsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeTransitGatewayRouteTableAnnouncementsPagesWithContext indicates an expected call of DescribeTransitGatewayRouteTableAnnouncementsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeTransitGatewayRouteTableAnnouncementsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewayRouteTableAnnouncementsRequest(arg0 interface{}) *gomock.Call

DescribeTransitGatewayRouteTableAnnouncementsRequest indicates an expected call of DescribeTransitGatewayRouteTableAnnouncementsRequest.

func (*MockEC2APIMockRecorder) DescribeTransitGatewayRouteTableAnnouncementsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewayRouteTableAnnouncementsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeTransitGatewayRouteTableAnnouncementsWithContext indicates an expected call of DescribeTransitGatewayRouteTableAnnouncementsWithContext.

func (*MockEC2APIMockRecorder) DescribeTransitGatewayRouteTables added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewayRouteTables(arg0 interface{}) *gomock.Call

DescribeTransitGatewayRouteTables indicates an expected call of DescribeTransitGatewayRouteTables.

func (*MockEC2APIMockRecorder) DescribeTransitGatewayRouteTablesPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewayRouteTablesPages(arg0, arg1 interface{}) *gomock.Call

DescribeTransitGatewayRouteTablesPages indicates an expected call of DescribeTransitGatewayRouteTablesPages.

func (*MockEC2APIMockRecorder) DescribeTransitGatewayRouteTablesPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewayRouteTablesPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeTransitGatewayRouteTablesPagesWithContext indicates an expected call of DescribeTransitGatewayRouteTablesPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeTransitGatewayRouteTablesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewayRouteTablesRequest(arg0 interface{}) *gomock.Call

DescribeTransitGatewayRouteTablesRequest indicates an expected call of DescribeTransitGatewayRouteTablesRequest.

func (*MockEC2APIMockRecorder) DescribeTransitGatewayRouteTablesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewayRouteTablesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeTransitGatewayRouteTablesWithContext indicates an expected call of DescribeTransitGatewayRouteTablesWithContext.

func (*MockEC2APIMockRecorder) DescribeTransitGatewayVpcAttachments added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewayVpcAttachments(arg0 interface{}) *gomock.Call

DescribeTransitGatewayVpcAttachments indicates an expected call of DescribeTransitGatewayVpcAttachments.

func (*MockEC2APIMockRecorder) DescribeTransitGatewayVpcAttachmentsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewayVpcAttachmentsPages(arg0, arg1 interface{}) *gomock.Call

DescribeTransitGatewayVpcAttachmentsPages indicates an expected call of DescribeTransitGatewayVpcAttachmentsPages.

func (*MockEC2APIMockRecorder) DescribeTransitGatewayVpcAttachmentsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewayVpcAttachmentsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeTransitGatewayVpcAttachmentsPagesWithContext indicates an expected call of DescribeTransitGatewayVpcAttachmentsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeTransitGatewayVpcAttachmentsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewayVpcAttachmentsRequest(arg0 interface{}) *gomock.Call

DescribeTransitGatewayVpcAttachmentsRequest indicates an expected call of DescribeTransitGatewayVpcAttachmentsRequest.

func (*MockEC2APIMockRecorder) DescribeTransitGatewayVpcAttachmentsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewayVpcAttachmentsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeTransitGatewayVpcAttachmentsWithContext indicates an expected call of DescribeTransitGatewayVpcAttachmentsWithContext.

func (*MockEC2APIMockRecorder) DescribeTransitGateways added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGateways(arg0 interface{}) *gomock.Call

DescribeTransitGateways indicates an expected call of DescribeTransitGateways.

func (*MockEC2APIMockRecorder) DescribeTransitGatewaysPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewaysPages(arg0, arg1 interface{}) *gomock.Call

DescribeTransitGatewaysPages indicates an expected call of DescribeTransitGatewaysPages.

func (*MockEC2APIMockRecorder) DescribeTransitGatewaysPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewaysPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeTransitGatewaysPagesWithContext indicates an expected call of DescribeTransitGatewaysPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeTransitGatewaysRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewaysRequest(arg0 interface{}) *gomock.Call

DescribeTransitGatewaysRequest indicates an expected call of DescribeTransitGatewaysRequest.

func (*MockEC2APIMockRecorder) DescribeTransitGatewaysWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTransitGatewaysWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeTransitGatewaysWithContext indicates an expected call of DescribeTransitGatewaysWithContext.

func (*MockEC2APIMockRecorder) DescribeTrunkInterfaceAssociations added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTrunkInterfaceAssociations(arg0 interface{}) *gomock.Call

DescribeTrunkInterfaceAssociations indicates an expected call of DescribeTrunkInterfaceAssociations.

func (*MockEC2APIMockRecorder) DescribeTrunkInterfaceAssociationsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTrunkInterfaceAssociationsPages(arg0, arg1 interface{}) *gomock.Call

DescribeTrunkInterfaceAssociationsPages indicates an expected call of DescribeTrunkInterfaceAssociationsPages.

func (*MockEC2APIMockRecorder) DescribeTrunkInterfaceAssociationsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTrunkInterfaceAssociationsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeTrunkInterfaceAssociationsPagesWithContext indicates an expected call of DescribeTrunkInterfaceAssociationsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeTrunkInterfaceAssociationsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTrunkInterfaceAssociationsRequest(arg0 interface{}) *gomock.Call

DescribeTrunkInterfaceAssociationsRequest indicates an expected call of DescribeTrunkInterfaceAssociationsRequest.

func (*MockEC2APIMockRecorder) DescribeTrunkInterfaceAssociationsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeTrunkInterfaceAssociationsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeTrunkInterfaceAssociationsWithContext indicates an expected call of DescribeTrunkInterfaceAssociationsWithContext.

func (*MockEC2APIMockRecorder) DescribeVerifiedAccessEndpoints added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVerifiedAccessEndpoints(arg0 interface{}) *gomock.Call

DescribeVerifiedAccessEndpoints indicates an expected call of DescribeVerifiedAccessEndpoints.

func (*MockEC2APIMockRecorder) DescribeVerifiedAccessEndpointsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVerifiedAccessEndpointsPages(arg0, arg1 interface{}) *gomock.Call

DescribeVerifiedAccessEndpointsPages indicates an expected call of DescribeVerifiedAccessEndpointsPages.

func (*MockEC2APIMockRecorder) DescribeVerifiedAccessEndpointsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVerifiedAccessEndpointsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeVerifiedAccessEndpointsPagesWithContext indicates an expected call of DescribeVerifiedAccessEndpointsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeVerifiedAccessEndpointsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVerifiedAccessEndpointsRequest(arg0 interface{}) *gomock.Call

DescribeVerifiedAccessEndpointsRequest indicates an expected call of DescribeVerifiedAccessEndpointsRequest.

func (*MockEC2APIMockRecorder) DescribeVerifiedAccessEndpointsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVerifiedAccessEndpointsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeVerifiedAccessEndpointsWithContext indicates an expected call of DescribeVerifiedAccessEndpointsWithContext.

func (*MockEC2APIMockRecorder) DescribeVerifiedAccessGroups added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVerifiedAccessGroups(arg0 interface{}) *gomock.Call

DescribeVerifiedAccessGroups indicates an expected call of DescribeVerifiedAccessGroups.

func (*MockEC2APIMockRecorder) DescribeVerifiedAccessGroupsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVerifiedAccessGroupsPages(arg0, arg1 interface{}) *gomock.Call

DescribeVerifiedAccessGroupsPages indicates an expected call of DescribeVerifiedAccessGroupsPages.

func (*MockEC2APIMockRecorder) DescribeVerifiedAccessGroupsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVerifiedAccessGroupsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeVerifiedAccessGroupsPagesWithContext indicates an expected call of DescribeVerifiedAccessGroupsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeVerifiedAccessGroupsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVerifiedAccessGroupsRequest(arg0 interface{}) *gomock.Call

DescribeVerifiedAccessGroupsRequest indicates an expected call of DescribeVerifiedAccessGroupsRequest.

func (*MockEC2APIMockRecorder) DescribeVerifiedAccessGroupsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVerifiedAccessGroupsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeVerifiedAccessGroupsWithContext indicates an expected call of DescribeVerifiedAccessGroupsWithContext.

func (*MockEC2APIMockRecorder) DescribeVerifiedAccessInstanceLoggingConfigurations added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVerifiedAccessInstanceLoggingConfigurations(arg0 interface{}) *gomock.Call

DescribeVerifiedAccessInstanceLoggingConfigurations indicates an expected call of DescribeVerifiedAccessInstanceLoggingConfigurations.

func (*MockEC2APIMockRecorder) DescribeVerifiedAccessInstanceLoggingConfigurationsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVerifiedAccessInstanceLoggingConfigurationsPages(arg0, arg1 interface{}) *gomock.Call

DescribeVerifiedAccessInstanceLoggingConfigurationsPages indicates an expected call of DescribeVerifiedAccessInstanceLoggingConfigurationsPages.

func (*MockEC2APIMockRecorder) DescribeVerifiedAccessInstanceLoggingConfigurationsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVerifiedAccessInstanceLoggingConfigurationsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeVerifiedAccessInstanceLoggingConfigurationsPagesWithContext indicates an expected call of DescribeVerifiedAccessInstanceLoggingConfigurationsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeVerifiedAccessInstanceLoggingConfigurationsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVerifiedAccessInstanceLoggingConfigurationsRequest(arg0 interface{}) *gomock.Call

DescribeVerifiedAccessInstanceLoggingConfigurationsRequest indicates an expected call of DescribeVerifiedAccessInstanceLoggingConfigurationsRequest.

func (*MockEC2APIMockRecorder) DescribeVerifiedAccessInstanceLoggingConfigurationsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVerifiedAccessInstanceLoggingConfigurationsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeVerifiedAccessInstanceLoggingConfigurationsWithContext indicates an expected call of DescribeVerifiedAccessInstanceLoggingConfigurationsWithContext.

func (*MockEC2APIMockRecorder) DescribeVerifiedAccessInstances added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVerifiedAccessInstances(arg0 interface{}) *gomock.Call

DescribeVerifiedAccessInstances indicates an expected call of DescribeVerifiedAccessInstances.

func (*MockEC2APIMockRecorder) DescribeVerifiedAccessInstancesPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVerifiedAccessInstancesPages(arg0, arg1 interface{}) *gomock.Call

DescribeVerifiedAccessInstancesPages indicates an expected call of DescribeVerifiedAccessInstancesPages.

func (*MockEC2APIMockRecorder) DescribeVerifiedAccessInstancesPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVerifiedAccessInstancesPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeVerifiedAccessInstancesPagesWithContext indicates an expected call of DescribeVerifiedAccessInstancesPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeVerifiedAccessInstancesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVerifiedAccessInstancesRequest(arg0 interface{}) *gomock.Call

DescribeVerifiedAccessInstancesRequest indicates an expected call of DescribeVerifiedAccessInstancesRequest.

func (*MockEC2APIMockRecorder) DescribeVerifiedAccessInstancesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVerifiedAccessInstancesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeVerifiedAccessInstancesWithContext indicates an expected call of DescribeVerifiedAccessInstancesWithContext.

func (*MockEC2APIMockRecorder) DescribeVerifiedAccessTrustProviders added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVerifiedAccessTrustProviders(arg0 interface{}) *gomock.Call

DescribeVerifiedAccessTrustProviders indicates an expected call of DescribeVerifiedAccessTrustProviders.

func (*MockEC2APIMockRecorder) DescribeVerifiedAccessTrustProvidersPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVerifiedAccessTrustProvidersPages(arg0, arg1 interface{}) *gomock.Call

DescribeVerifiedAccessTrustProvidersPages indicates an expected call of DescribeVerifiedAccessTrustProvidersPages.

func (*MockEC2APIMockRecorder) DescribeVerifiedAccessTrustProvidersPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVerifiedAccessTrustProvidersPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeVerifiedAccessTrustProvidersPagesWithContext indicates an expected call of DescribeVerifiedAccessTrustProvidersPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeVerifiedAccessTrustProvidersRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVerifiedAccessTrustProvidersRequest(arg0 interface{}) *gomock.Call

DescribeVerifiedAccessTrustProvidersRequest indicates an expected call of DescribeVerifiedAccessTrustProvidersRequest.

func (*MockEC2APIMockRecorder) DescribeVerifiedAccessTrustProvidersWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVerifiedAccessTrustProvidersWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeVerifiedAccessTrustProvidersWithContext indicates an expected call of DescribeVerifiedAccessTrustProvidersWithContext.

func (*MockEC2APIMockRecorder) DescribeVolumeAttribute added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVolumeAttribute(arg0 interface{}) *gomock.Call

DescribeVolumeAttribute indicates an expected call of DescribeVolumeAttribute.

func (*MockEC2APIMockRecorder) DescribeVolumeAttributeRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVolumeAttributeRequest(arg0 interface{}) *gomock.Call

DescribeVolumeAttributeRequest indicates an expected call of DescribeVolumeAttributeRequest.

func (*MockEC2APIMockRecorder) DescribeVolumeAttributeWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVolumeAttributeWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeVolumeAttributeWithContext indicates an expected call of DescribeVolumeAttributeWithContext.

func (*MockEC2APIMockRecorder) DescribeVolumeStatus added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVolumeStatus(arg0 interface{}) *gomock.Call

DescribeVolumeStatus indicates an expected call of DescribeVolumeStatus.

func (*MockEC2APIMockRecorder) DescribeVolumeStatusPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVolumeStatusPages(arg0, arg1 interface{}) *gomock.Call

DescribeVolumeStatusPages indicates an expected call of DescribeVolumeStatusPages.

func (*MockEC2APIMockRecorder) DescribeVolumeStatusPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVolumeStatusPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeVolumeStatusPagesWithContext indicates an expected call of DescribeVolumeStatusPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeVolumeStatusRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVolumeStatusRequest(arg0 interface{}) *gomock.Call

DescribeVolumeStatusRequest indicates an expected call of DescribeVolumeStatusRequest.

func (*MockEC2APIMockRecorder) DescribeVolumeStatusWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVolumeStatusWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeVolumeStatusWithContext indicates an expected call of DescribeVolumeStatusWithContext.

func (*MockEC2APIMockRecorder) DescribeVolumes added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVolumes(arg0 interface{}) *gomock.Call

DescribeVolumes indicates an expected call of DescribeVolumes.

func (*MockEC2APIMockRecorder) DescribeVolumesModifications added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVolumesModifications(arg0 interface{}) *gomock.Call

DescribeVolumesModifications indicates an expected call of DescribeVolumesModifications.

func (*MockEC2APIMockRecorder) DescribeVolumesModificationsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVolumesModificationsPages(arg0, arg1 interface{}) *gomock.Call

DescribeVolumesModificationsPages indicates an expected call of DescribeVolumesModificationsPages.

func (*MockEC2APIMockRecorder) DescribeVolumesModificationsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVolumesModificationsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeVolumesModificationsPagesWithContext indicates an expected call of DescribeVolumesModificationsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeVolumesModificationsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVolumesModificationsRequest(arg0 interface{}) *gomock.Call

DescribeVolumesModificationsRequest indicates an expected call of DescribeVolumesModificationsRequest.

func (*MockEC2APIMockRecorder) DescribeVolumesModificationsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVolumesModificationsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeVolumesModificationsWithContext indicates an expected call of DescribeVolumesModificationsWithContext.

func (*MockEC2APIMockRecorder) DescribeVolumesPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVolumesPages(arg0, arg1 interface{}) *gomock.Call

DescribeVolumesPages indicates an expected call of DescribeVolumesPages.

func (*MockEC2APIMockRecorder) DescribeVolumesPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVolumesPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeVolumesPagesWithContext indicates an expected call of DescribeVolumesPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeVolumesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVolumesRequest(arg0 interface{}) *gomock.Call

DescribeVolumesRequest indicates an expected call of DescribeVolumesRequest.

func (*MockEC2APIMockRecorder) DescribeVolumesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVolumesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeVolumesWithContext indicates an expected call of DescribeVolumesWithContext.

func (*MockEC2APIMockRecorder) DescribeVpcAttribute added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpcAttribute(arg0 interface{}) *gomock.Call

DescribeVpcAttribute indicates an expected call of DescribeVpcAttribute.

func (*MockEC2APIMockRecorder) DescribeVpcAttributeRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpcAttributeRequest(arg0 interface{}) *gomock.Call

DescribeVpcAttributeRequest indicates an expected call of DescribeVpcAttributeRequest.

func (*MockEC2APIMockRecorder) DescribeVpcAttributeWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpcAttributeWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeVpcAttributeWithContext indicates an expected call of DescribeVpcAttributeWithContext.

func (mr *MockEC2APIMockRecorder) DescribeVpcClassicLink(arg0 interface{}) *gomock.Call

DescribeVpcClassicLink indicates an expected call of DescribeVpcClassicLink.

func (*MockEC2APIMockRecorder) DescribeVpcClassicLinkDnsSupport added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpcClassicLinkDnsSupport(arg0 interface{}) *gomock.Call

DescribeVpcClassicLinkDnsSupport indicates an expected call of DescribeVpcClassicLinkDnsSupport.

func (*MockEC2APIMockRecorder) DescribeVpcClassicLinkDnsSupportPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpcClassicLinkDnsSupportPages(arg0, arg1 interface{}) *gomock.Call

DescribeVpcClassicLinkDnsSupportPages indicates an expected call of DescribeVpcClassicLinkDnsSupportPages.

func (*MockEC2APIMockRecorder) DescribeVpcClassicLinkDnsSupportPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpcClassicLinkDnsSupportPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeVpcClassicLinkDnsSupportPagesWithContext indicates an expected call of DescribeVpcClassicLinkDnsSupportPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeVpcClassicLinkDnsSupportRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpcClassicLinkDnsSupportRequest(arg0 interface{}) *gomock.Call

DescribeVpcClassicLinkDnsSupportRequest indicates an expected call of DescribeVpcClassicLinkDnsSupportRequest.

func (*MockEC2APIMockRecorder) DescribeVpcClassicLinkDnsSupportWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpcClassicLinkDnsSupportWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeVpcClassicLinkDnsSupportWithContext indicates an expected call of DescribeVpcClassicLinkDnsSupportWithContext.

func (*MockEC2APIMockRecorder) DescribeVpcClassicLinkRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpcClassicLinkRequest(arg0 interface{}) *gomock.Call

DescribeVpcClassicLinkRequest indicates an expected call of DescribeVpcClassicLinkRequest.

func (*MockEC2APIMockRecorder) DescribeVpcClassicLinkWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpcClassicLinkWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeVpcClassicLinkWithContext indicates an expected call of DescribeVpcClassicLinkWithContext.

func (*MockEC2APIMockRecorder) DescribeVpcEndpointConnectionNotifications added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpcEndpointConnectionNotifications(arg0 interface{}) *gomock.Call

DescribeVpcEndpointConnectionNotifications indicates an expected call of DescribeVpcEndpointConnectionNotifications.

func (*MockEC2APIMockRecorder) DescribeVpcEndpointConnectionNotificationsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpcEndpointConnectionNotificationsPages(arg0, arg1 interface{}) *gomock.Call

DescribeVpcEndpointConnectionNotificationsPages indicates an expected call of DescribeVpcEndpointConnectionNotificationsPages.

func (*MockEC2APIMockRecorder) DescribeVpcEndpointConnectionNotificationsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpcEndpointConnectionNotificationsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeVpcEndpointConnectionNotificationsPagesWithContext indicates an expected call of DescribeVpcEndpointConnectionNotificationsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeVpcEndpointConnectionNotificationsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpcEndpointConnectionNotificationsRequest(arg0 interface{}) *gomock.Call

DescribeVpcEndpointConnectionNotificationsRequest indicates an expected call of DescribeVpcEndpointConnectionNotificationsRequest.

func (*MockEC2APIMockRecorder) DescribeVpcEndpointConnectionNotificationsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpcEndpointConnectionNotificationsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeVpcEndpointConnectionNotificationsWithContext indicates an expected call of DescribeVpcEndpointConnectionNotificationsWithContext.

func (*MockEC2APIMockRecorder) DescribeVpcEndpointConnections added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpcEndpointConnections(arg0 interface{}) *gomock.Call

DescribeVpcEndpointConnections indicates an expected call of DescribeVpcEndpointConnections.

func (*MockEC2APIMockRecorder) DescribeVpcEndpointConnectionsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpcEndpointConnectionsPages(arg0, arg1 interface{}) *gomock.Call

DescribeVpcEndpointConnectionsPages indicates an expected call of DescribeVpcEndpointConnectionsPages.

func (*MockEC2APIMockRecorder) DescribeVpcEndpointConnectionsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpcEndpointConnectionsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeVpcEndpointConnectionsPagesWithContext indicates an expected call of DescribeVpcEndpointConnectionsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeVpcEndpointConnectionsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpcEndpointConnectionsRequest(arg0 interface{}) *gomock.Call

DescribeVpcEndpointConnectionsRequest indicates an expected call of DescribeVpcEndpointConnectionsRequest.

func (*MockEC2APIMockRecorder) DescribeVpcEndpointConnectionsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpcEndpointConnectionsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeVpcEndpointConnectionsWithContext indicates an expected call of DescribeVpcEndpointConnectionsWithContext.

func (*MockEC2APIMockRecorder) DescribeVpcEndpointServiceConfigurations added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpcEndpointServiceConfigurations(arg0 interface{}) *gomock.Call

DescribeVpcEndpointServiceConfigurations indicates an expected call of DescribeVpcEndpointServiceConfigurations.

func (*MockEC2APIMockRecorder) DescribeVpcEndpointServiceConfigurationsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpcEndpointServiceConfigurationsPages(arg0, arg1 interface{}) *gomock.Call

DescribeVpcEndpointServiceConfigurationsPages indicates an expected call of DescribeVpcEndpointServiceConfigurationsPages.

func (*MockEC2APIMockRecorder) DescribeVpcEndpointServiceConfigurationsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpcEndpointServiceConfigurationsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeVpcEndpointServiceConfigurationsPagesWithContext indicates an expected call of DescribeVpcEndpointServiceConfigurationsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeVpcEndpointServiceConfigurationsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpcEndpointServiceConfigurationsRequest(arg0 interface{}) *gomock.Call

DescribeVpcEndpointServiceConfigurationsRequest indicates an expected call of DescribeVpcEndpointServiceConfigurationsRequest.

func (*MockEC2APIMockRecorder) DescribeVpcEndpointServiceConfigurationsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpcEndpointServiceConfigurationsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeVpcEndpointServiceConfigurationsWithContext indicates an expected call of DescribeVpcEndpointServiceConfigurationsWithContext.

func (*MockEC2APIMockRecorder) DescribeVpcEndpointServicePermissions added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpcEndpointServicePermissions(arg0 interface{}) *gomock.Call

DescribeVpcEndpointServicePermissions indicates an expected call of DescribeVpcEndpointServicePermissions.

func (*MockEC2APIMockRecorder) DescribeVpcEndpointServicePermissionsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpcEndpointServicePermissionsPages(arg0, arg1 interface{}) *gomock.Call

DescribeVpcEndpointServicePermissionsPages indicates an expected call of DescribeVpcEndpointServicePermissionsPages.

func (*MockEC2APIMockRecorder) DescribeVpcEndpointServicePermissionsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpcEndpointServicePermissionsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeVpcEndpointServicePermissionsPagesWithContext indicates an expected call of DescribeVpcEndpointServicePermissionsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeVpcEndpointServicePermissionsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpcEndpointServicePermissionsRequest(arg0 interface{}) *gomock.Call

DescribeVpcEndpointServicePermissionsRequest indicates an expected call of DescribeVpcEndpointServicePermissionsRequest.

func (*MockEC2APIMockRecorder) DescribeVpcEndpointServicePermissionsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpcEndpointServicePermissionsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeVpcEndpointServicePermissionsWithContext indicates an expected call of DescribeVpcEndpointServicePermissionsWithContext.

func (*MockEC2APIMockRecorder) DescribeVpcEndpointServices added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpcEndpointServices(arg0 interface{}) *gomock.Call

DescribeVpcEndpointServices indicates an expected call of DescribeVpcEndpointServices.

func (*MockEC2APIMockRecorder) DescribeVpcEndpointServicesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpcEndpointServicesRequest(arg0 interface{}) *gomock.Call

DescribeVpcEndpointServicesRequest indicates an expected call of DescribeVpcEndpointServicesRequest.

func (*MockEC2APIMockRecorder) DescribeVpcEndpointServicesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpcEndpointServicesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeVpcEndpointServicesWithContext indicates an expected call of DescribeVpcEndpointServicesWithContext.

func (*MockEC2APIMockRecorder) DescribeVpcEndpoints added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpcEndpoints(arg0 interface{}) *gomock.Call

DescribeVpcEndpoints indicates an expected call of DescribeVpcEndpoints.

func (*MockEC2APIMockRecorder) DescribeVpcEndpointsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpcEndpointsPages(arg0, arg1 interface{}) *gomock.Call

DescribeVpcEndpointsPages indicates an expected call of DescribeVpcEndpointsPages.

func (*MockEC2APIMockRecorder) DescribeVpcEndpointsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpcEndpointsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeVpcEndpointsPagesWithContext indicates an expected call of DescribeVpcEndpointsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeVpcEndpointsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpcEndpointsRequest(arg0 interface{}) *gomock.Call

DescribeVpcEndpointsRequest indicates an expected call of DescribeVpcEndpointsRequest.

func (*MockEC2APIMockRecorder) DescribeVpcEndpointsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpcEndpointsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeVpcEndpointsWithContext indicates an expected call of DescribeVpcEndpointsWithContext.

func (*MockEC2APIMockRecorder) DescribeVpcPeeringConnections added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpcPeeringConnections(arg0 interface{}) *gomock.Call

DescribeVpcPeeringConnections indicates an expected call of DescribeVpcPeeringConnections.

func (*MockEC2APIMockRecorder) DescribeVpcPeeringConnectionsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpcPeeringConnectionsPages(arg0, arg1 interface{}) *gomock.Call

DescribeVpcPeeringConnectionsPages indicates an expected call of DescribeVpcPeeringConnectionsPages.

func (*MockEC2APIMockRecorder) DescribeVpcPeeringConnectionsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpcPeeringConnectionsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeVpcPeeringConnectionsPagesWithContext indicates an expected call of DescribeVpcPeeringConnectionsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeVpcPeeringConnectionsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpcPeeringConnectionsRequest(arg0 interface{}) *gomock.Call

DescribeVpcPeeringConnectionsRequest indicates an expected call of DescribeVpcPeeringConnectionsRequest.

func (*MockEC2APIMockRecorder) DescribeVpcPeeringConnectionsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpcPeeringConnectionsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeVpcPeeringConnectionsWithContext indicates an expected call of DescribeVpcPeeringConnectionsWithContext.

func (*MockEC2APIMockRecorder) DescribeVpcs added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpcs(arg0 interface{}) *gomock.Call

DescribeVpcs indicates an expected call of DescribeVpcs.

func (*MockEC2APIMockRecorder) DescribeVpcsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpcsPages(arg0, arg1 interface{}) *gomock.Call

DescribeVpcsPages indicates an expected call of DescribeVpcsPages.

func (*MockEC2APIMockRecorder) DescribeVpcsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpcsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

DescribeVpcsPagesWithContext indicates an expected call of DescribeVpcsPagesWithContext.

func (*MockEC2APIMockRecorder) DescribeVpcsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpcsRequest(arg0 interface{}) *gomock.Call

DescribeVpcsRequest indicates an expected call of DescribeVpcsRequest.

func (*MockEC2APIMockRecorder) DescribeVpcsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpcsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeVpcsWithContext indicates an expected call of DescribeVpcsWithContext.

func (*MockEC2APIMockRecorder) DescribeVpnConnections added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpnConnections(arg0 interface{}) *gomock.Call

DescribeVpnConnections indicates an expected call of DescribeVpnConnections.

func (*MockEC2APIMockRecorder) DescribeVpnConnectionsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpnConnectionsRequest(arg0 interface{}) *gomock.Call

DescribeVpnConnectionsRequest indicates an expected call of DescribeVpnConnectionsRequest.

func (*MockEC2APIMockRecorder) DescribeVpnConnectionsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpnConnectionsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeVpnConnectionsWithContext indicates an expected call of DescribeVpnConnectionsWithContext.

func (*MockEC2APIMockRecorder) DescribeVpnGateways added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpnGateways(arg0 interface{}) *gomock.Call

DescribeVpnGateways indicates an expected call of DescribeVpnGateways.

func (*MockEC2APIMockRecorder) DescribeVpnGatewaysRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpnGatewaysRequest(arg0 interface{}) *gomock.Call

DescribeVpnGatewaysRequest indicates an expected call of DescribeVpnGatewaysRequest.

func (*MockEC2APIMockRecorder) DescribeVpnGatewaysWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DescribeVpnGatewaysWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DescribeVpnGatewaysWithContext indicates an expected call of DescribeVpnGatewaysWithContext.

func (*MockEC2APIMockRecorder) DetachClassicLinkVpc added in v1.19.0

func (mr *MockEC2APIMockRecorder) DetachClassicLinkVpc(arg0 interface{}) *gomock.Call

DetachClassicLinkVpc indicates an expected call of DetachClassicLinkVpc.

func (*MockEC2APIMockRecorder) DetachClassicLinkVpcRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DetachClassicLinkVpcRequest(arg0 interface{}) *gomock.Call

DetachClassicLinkVpcRequest indicates an expected call of DetachClassicLinkVpcRequest.

func (*MockEC2APIMockRecorder) DetachClassicLinkVpcWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DetachClassicLinkVpcWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DetachClassicLinkVpcWithContext indicates an expected call of DetachClassicLinkVpcWithContext.

func (*MockEC2APIMockRecorder) DetachInternetGateway added in v1.19.0

func (mr *MockEC2APIMockRecorder) DetachInternetGateway(arg0 interface{}) *gomock.Call

DetachInternetGateway indicates an expected call of DetachInternetGateway.

func (*MockEC2APIMockRecorder) DetachInternetGatewayRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DetachInternetGatewayRequest(arg0 interface{}) *gomock.Call

DetachInternetGatewayRequest indicates an expected call of DetachInternetGatewayRequest.

func (*MockEC2APIMockRecorder) DetachInternetGatewayWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DetachInternetGatewayWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DetachInternetGatewayWithContext indicates an expected call of DetachInternetGatewayWithContext.

func (*MockEC2APIMockRecorder) DetachNetworkInterface added in v1.19.0

func (mr *MockEC2APIMockRecorder) DetachNetworkInterface(arg0 interface{}) *gomock.Call

DetachNetworkInterface indicates an expected call of DetachNetworkInterface.

func (*MockEC2APIMockRecorder) DetachNetworkInterfaceRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DetachNetworkInterfaceRequest(arg0 interface{}) *gomock.Call

DetachNetworkInterfaceRequest indicates an expected call of DetachNetworkInterfaceRequest.

func (*MockEC2APIMockRecorder) DetachNetworkInterfaceWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DetachNetworkInterfaceWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DetachNetworkInterfaceWithContext indicates an expected call of DetachNetworkInterfaceWithContext.

func (*MockEC2APIMockRecorder) DetachVerifiedAccessTrustProvider added in v1.19.0

func (mr *MockEC2APIMockRecorder) DetachVerifiedAccessTrustProvider(arg0 interface{}) *gomock.Call

DetachVerifiedAccessTrustProvider indicates an expected call of DetachVerifiedAccessTrustProvider.

func (*MockEC2APIMockRecorder) DetachVerifiedAccessTrustProviderRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DetachVerifiedAccessTrustProviderRequest(arg0 interface{}) *gomock.Call

DetachVerifiedAccessTrustProviderRequest indicates an expected call of DetachVerifiedAccessTrustProviderRequest.

func (*MockEC2APIMockRecorder) DetachVerifiedAccessTrustProviderWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DetachVerifiedAccessTrustProviderWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DetachVerifiedAccessTrustProviderWithContext indicates an expected call of DetachVerifiedAccessTrustProviderWithContext.

func (*MockEC2APIMockRecorder) DetachVolume added in v1.19.0

func (mr *MockEC2APIMockRecorder) DetachVolume(arg0 interface{}) *gomock.Call

DetachVolume indicates an expected call of DetachVolume.

func (*MockEC2APIMockRecorder) DetachVolumeRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DetachVolumeRequest(arg0 interface{}) *gomock.Call

DetachVolumeRequest indicates an expected call of DetachVolumeRequest.

func (*MockEC2APIMockRecorder) DetachVolumeWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DetachVolumeWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DetachVolumeWithContext indicates an expected call of DetachVolumeWithContext.

func (*MockEC2APIMockRecorder) DetachVpnGateway added in v1.19.0

func (mr *MockEC2APIMockRecorder) DetachVpnGateway(arg0 interface{}) *gomock.Call

DetachVpnGateway indicates an expected call of DetachVpnGateway.

func (*MockEC2APIMockRecorder) DetachVpnGatewayRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DetachVpnGatewayRequest(arg0 interface{}) *gomock.Call

DetachVpnGatewayRequest indicates an expected call of DetachVpnGatewayRequest.

func (*MockEC2APIMockRecorder) DetachVpnGatewayWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DetachVpnGatewayWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DetachVpnGatewayWithContext indicates an expected call of DetachVpnGatewayWithContext.

func (*MockEC2APIMockRecorder) DisableAddressTransfer added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisableAddressTransfer(arg0 interface{}) *gomock.Call

DisableAddressTransfer indicates an expected call of DisableAddressTransfer.

func (*MockEC2APIMockRecorder) DisableAddressTransferRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisableAddressTransferRequest(arg0 interface{}) *gomock.Call

DisableAddressTransferRequest indicates an expected call of DisableAddressTransferRequest.

func (*MockEC2APIMockRecorder) DisableAddressTransferWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisableAddressTransferWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DisableAddressTransferWithContext indicates an expected call of DisableAddressTransferWithContext.

func (*MockEC2APIMockRecorder) DisableAwsNetworkPerformanceMetricSubscription added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisableAwsNetworkPerformanceMetricSubscription(arg0 interface{}) *gomock.Call

DisableAwsNetworkPerformanceMetricSubscription indicates an expected call of DisableAwsNetworkPerformanceMetricSubscription.

func (*MockEC2APIMockRecorder) DisableAwsNetworkPerformanceMetricSubscriptionRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisableAwsNetworkPerformanceMetricSubscriptionRequest(arg0 interface{}) *gomock.Call

DisableAwsNetworkPerformanceMetricSubscriptionRequest indicates an expected call of DisableAwsNetworkPerformanceMetricSubscriptionRequest.

func (*MockEC2APIMockRecorder) DisableAwsNetworkPerformanceMetricSubscriptionWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisableAwsNetworkPerformanceMetricSubscriptionWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DisableAwsNetworkPerformanceMetricSubscriptionWithContext indicates an expected call of DisableAwsNetworkPerformanceMetricSubscriptionWithContext.

func (*MockEC2APIMockRecorder) DisableEbsEncryptionByDefault added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisableEbsEncryptionByDefault(arg0 interface{}) *gomock.Call

DisableEbsEncryptionByDefault indicates an expected call of DisableEbsEncryptionByDefault.

func (*MockEC2APIMockRecorder) DisableEbsEncryptionByDefaultRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisableEbsEncryptionByDefaultRequest(arg0 interface{}) *gomock.Call

DisableEbsEncryptionByDefaultRequest indicates an expected call of DisableEbsEncryptionByDefaultRequest.

func (*MockEC2APIMockRecorder) DisableEbsEncryptionByDefaultWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisableEbsEncryptionByDefaultWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DisableEbsEncryptionByDefaultWithContext indicates an expected call of DisableEbsEncryptionByDefaultWithContext.

func (*MockEC2APIMockRecorder) DisableFastLaunch added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisableFastLaunch(arg0 interface{}) *gomock.Call

DisableFastLaunch indicates an expected call of DisableFastLaunch.

func (*MockEC2APIMockRecorder) DisableFastLaunchRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisableFastLaunchRequest(arg0 interface{}) *gomock.Call

DisableFastLaunchRequest indicates an expected call of DisableFastLaunchRequest.

func (*MockEC2APIMockRecorder) DisableFastLaunchWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisableFastLaunchWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DisableFastLaunchWithContext indicates an expected call of DisableFastLaunchWithContext.

func (*MockEC2APIMockRecorder) DisableFastSnapshotRestores added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisableFastSnapshotRestores(arg0 interface{}) *gomock.Call

DisableFastSnapshotRestores indicates an expected call of DisableFastSnapshotRestores.

func (*MockEC2APIMockRecorder) DisableFastSnapshotRestoresRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisableFastSnapshotRestoresRequest(arg0 interface{}) *gomock.Call

DisableFastSnapshotRestoresRequest indicates an expected call of DisableFastSnapshotRestoresRequest.

func (*MockEC2APIMockRecorder) DisableFastSnapshotRestoresWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisableFastSnapshotRestoresWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DisableFastSnapshotRestoresWithContext indicates an expected call of DisableFastSnapshotRestoresWithContext.

func (*MockEC2APIMockRecorder) DisableImageBlockPublicAccess added in v1.23.0

func (mr *MockEC2APIMockRecorder) DisableImageBlockPublicAccess(arg0 interface{}) *gomock.Call

DisableImageBlockPublicAccess indicates an expected call of DisableImageBlockPublicAccess.

func (*MockEC2APIMockRecorder) DisableImageBlockPublicAccessRequest added in v1.23.0

func (mr *MockEC2APIMockRecorder) DisableImageBlockPublicAccessRequest(arg0 interface{}) *gomock.Call

DisableImageBlockPublicAccessRequest indicates an expected call of DisableImageBlockPublicAccessRequest.

func (*MockEC2APIMockRecorder) DisableImageBlockPublicAccessWithContext added in v1.23.0

func (mr *MockEC2APIMockRecorder) DisableImageBlockPublicAccessWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DisableImageBlockPublicAccessWithContext indicates an expected call of DisableImageBlockPublicAccessWithContext.

func (*MockEC2APIMockRecorder) DisableImageDeprecation added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisableImageDeprecation(arg0 interface{}) *gomock.Call

DisableImageDeprecation indicates an expected call of DisableImageDeprecation.

func (*MockEC2APIMockRecorder) DisableImageDeprecationRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisableImageDeprecationRequest(arg0 interface{}) *gomock.Call

DisableImageDeprecationRequest indicates an expected call of DisableImageDeprecationRequest.

func (*MockEC2APIMockRecorder) DisableImageDeprecationWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisableImageDeprecationWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DisableImageDeprecationWithContext indicates an expected call of DisableImageDeprecationWithContext.

func (*MockEC2APIMockRecorder) DisableIpamOrganizationAdminAccount added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisableIpamOrganizationAdminAccount(arg0 interface{}) *gomock.Call

DisableIpamOrganizationAdminAccount indicates an expected call of DisableIpamOrganizationAdminAccount.

func (*MockEC2APIMockRecorder) DisableIpamOrganizationAdminAccountRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisableIpamOrganizationAdminAccountRequest(arg0 interface{}) *gomock.Call

DisableIpamOrganizationAdminAccountRequest indicates an expected call of DisableIpamOrganizationAdminAccountRequest.

func (*MockEC2APIMockRecorder) DisableIpamOrganizationAdminAccountWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisableIpamOrganizationAdminAccountWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DisableIpamOrganizationAdminAccountWithContext indicates an expected call of DisableIpamOrganizationAdminAccountWithContext.

func (*MockEC2APIMockRecorder) DisableSerialConsoleAccess added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisableSerialConsoleAccess(arg0 interface{}) *gomock.Call

DisableSerialConsoleAccess indicates an expected call of DisableSerialConsoleAccess.

func (*MockEC2APIMockRecorder) DisableSerialConsoleAccessRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisableSerialConsoleAccessRequest(arg0 interface{}) *gomock.Call

DisableSerialConsoleAccessRequest indicates an expected call of DisableSerialConsoleAccessRequest.

func (*MockEC2APIMockRecorder) DisableSerialConsoleAccessWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisableSerialConsoleAccessWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DisableSerialConsoleAccessWithContext indicates an expected call of DisableSerialConsoleAccessWithContext.

func (*MockEC2APIMockRecorder) DisableTransitGatewayRouteTablePropagation added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisableTransitGatewayRouteTablePropagation(arg0 interface{}) *gomock.Call

DisableTransitGatewayRouteTablePropagation indicates an expected call of DisableTransitGatewayRouteTablePropagation.

func (*MockEC2APIMockRecorder) DisableTransitGatewayRouteTablePropagationRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisableTransitGatewayRouteTablePropagationRequest(arg0 interface{}) *gomock.Call

DisableTransitGatewayRouteTablePropagationRequest indicates an expected call of DisableTransitGatewayRouteTablePropagationRequest.

func (*MockEC2APIMockRecorder) DisableTransitGatewayRouteTablePropagationWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisableTransitGatewayRouteTablePropagationWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DisableTransitGatewayRouteTablePropagationWithContext indicates an expected call of DisableTransitGatewayRouteTablePropagationWithContext.

func (*MockEC2APIMockRecorder) DisableVgwRoutePropagation added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisableVgwRoutePropagation(arg0 interface{}) *gomock.Call

DisableVgwRoutePropagation indicates an expected call of DisableVgwRoutePropagation.

func (*MockEC2APIMockRecorder) DisableVgwRoutePropagationRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisableVgwRoutePropagationRequest(arg0 interface{}) *gomock.Call

DisableVgwRoutePropagationRequest indicates an expected call of DisableVgwRoutePropagationRequest.

func (*MockEC2APIMockRecorder) DisableVgwRoutePropagationWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisableVgwRoutePropagationWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DisableVgwRoutePropagationWithContext indicates an expected call of DisableVgwRoutePropagationWithContext.

func (mr *MockEC2APIMockRecorder) DisableVpcClassicLink(arg0 interface{}) *gomock.Call

DisableVpcClassicLink indicates an expected call of DisableVpcClassicLink.

func (*MockEC2APIMockRecorder) DisableVpcClassicLinkDnsSupport added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisableVpcClassicLinkDnsSupport(arg0 interface{}) *gomock.Call

DisableVpcClassicLinkDnsSupport indicates an expected call of DisableVpcClassicLinkDnsSupport.

func (*MockEC2APIMockRecorder) DisableVpcClassicLinkDnsSupportRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisableVpcClassicLinkDnsSupportRequest(arg0 interface{}) *gomock.Call

DisableVpcClassicLinkDnsSupportRequest indicates an expected call of DisableVpcClassicLinkDnsSupportRequest.

func (*MockEC2APIMockRecorder) DisableVpcClassicLinkDnsSupportWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisableVpcClassicLinkDnsSupportWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DisableVpcClassicLinkDnsSupportWithContext indicates an expected call of DisableVpcClassicLinkDnsSupportWithContext.

func (*MockEC2APIMockRecorder) DisableVpcClassicLinkRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisableVpcClassicLinkRequest(arg0 interface{}) *gomock.Call

DisableVpcClassicLinkRequest indicates an expected call of DisableVpcClassicLinkRequest.

func (*MockEC2APIMockRecorder) DisableVpcClassicLinkWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisableVpcClassicLinkWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DisableVpcClassicLinkWithContext indicates an expected call of DisableVpcClassicLinkWithContext.

func (*MockEC2APIMockRecorder) DisassociateAddress added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisassociateAddress(arg0 interface{}) *gomock.Call

DisassociateAddress indicates an expected call of DisassociateAddress.

func (*MockEC2APIMockRecorder) DisassociateAddressRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisassociateAddressRequest(arg0 interface{}) *gomock.Call

DisassociateAddressRequest indicates an expected call of DisassociateAddressRequest.

func (*MockEC2APIMockRecorder) DisassociateAddressWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisassociateAddressWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DisassociateAddressWithContext indicates an expected call of DisassociateAddressWithContext.

func (*MockEC2APIMockRecorder) DisassociateClientVpnTargetNetwork added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisassociateClientVpnTargetNetwork(arg0 interface{}) *gomock.Call

DisassociateClientVpnTargetNetwork indicates an expected call of DisassociateClientVpnTargetNetwork.

func (*MockEC2APIMockRecorder) DisassociateClientVpnTargetNetworkRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisassociateClientVpnTargetNetworkRequest(arg0 interface{}) *gomock.Call

DisassociateClientVpnTargetNetworkRequest indicates an expected call of DisassociateClientVpnTargetNetworkRequest.

func (*MockEC2APIMockRecorder) DisassociateClientVpnTargetNetworkWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisassociateClientVpnTargetNetworkWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DisassociateClientVpnTargetNetworkWithContext indicates an expected call of DisassociateClientVpnTargetNetworkWithContext.

func (*MockEC2APIMockRecorder) DisassociateEnclaveCertificateIamRole added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisassociateEnclaveCertificateIamRole(arg0 interface{}) *gomock.Call

DisassociateEnclaveCertificateIamRole indicates an expected call of DisassociateEnclaveCertificateIamRole.

func (*MockEC2APIMockRecorder) DisassociateEnclaveCertificateIamRoleRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisassociateEnclaveCertificateIamRoleRequest(arg0 interface{}) *gomock.Call

DisassociateEnclaveCertificateIamRoleRequest indicates an expected call of DisassociateEnclaveCertificateIamRoleRequest.

func (*MockEC2APIMockRecorder) DisassociateEnclaveCertificateIamRoleWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisassociateEnclaveCertificateIamRoleWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DisassociateEnclaveCertificateIamRoleWithContext indicates an expected call of DisassociateEnclaveCertificateIamRoleWithContext.

func (*MockEC2APIMockRecorder) DisassociateIamInstanceProfile added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisassociateIamInstanceProfile(arg0 interface{}) *gomock.Call

DisassociateIamInstanceProfile indicates an expected call of DisassociateIamInstanceProfile.

func (*MockEC2APIMockRecorder) DisassociateIamInstanceProfileRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisassociateIamInstanceProfileRequest(arg0 interface{}) *gomock.Call

DisassociateIamInstanceProfileRequest indicates an expected call of DisassociateIamInstanceProfileRequest.

func (*MockEC2APIMockRecorder) DisassociateIamInstanceProfileWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisassociateIamInstanceProfileWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DisassociateIamInstanceProfileWithContext indicates an expected call of DisassociateIamInstanceProfileWithContext.

func (*MockEC2APIMockRecorder) DisassociateInstanceEventWindow added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisassociateInstanceEventWindow(arg0 interface{}) *gomock.Call

DisassociateInstanceEventWindow indicates an expected call of DisassociateInstanceEventWindow.

func (*MockEC2APIMockRecorder) DisassociateInstanceEventWindowRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisassociateInstanceEventWindowRequest(arg0 interface{}) *gomock.Call

DisassociateInstanceEventWindowRequest indicates an expected call of DisassociateInstanceEventWindowRequest.

func (*MockEC2APIMockRecorder) DisassociateInstanceEventWindowWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisassociateInstanceEventWindowWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DisassociateInstanceEventWindowWithContext indicates an expected call of DisassociateInstanceEventWindowWithContext.

func (*MockEC2APIMockRecorder) DisassociateIpamResourceDiscovery added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisassociateIpamResourceDiscovery(arg0 interface{}) *gomock.Call

DisassociateIpamResourceDiscovery indicates an expected call of DisassociateIpamResourceDiscovery.

func (*MockEC2APIMockRecorder) DisassociateIpamResourceDiscoveryRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisassociateIpamResourceDiscoveryRequest(arg0 interface{}) *gomock.Call

DisassociateIpamResourceDiscoveryRequest indicates an expected call of DisassociateIpamResourceDiscoveryRequest.

func (*MockEC2APIMockRecorder) DisassociateIpamResourceDiscoveryWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisassociateIpamResourceDiscoveryWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DisassociateIpamResourceDiscoveryWithContext indicates an expected call of DisassociateIpamResourceDiscoveryWithContext.

func (*MockEC2APIMockRecorder) DisassociateNatGatewayAddress added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisassociateNatGatewayAddress(arg0 interface{}) *gomock.Call

DisassociateNatGatewayAddress indicates an expected call of DisassociateNatGatewayAddress.

func (*MockEC2APIMockRecorder) DisassociateNatGatewayAddressRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisassociateNatGatewayAddressRequest(arg0 interface{}) *gomock.Call

DisassociateNatGatewayAddressRequest indicates an expected call of DisassociateNatGatewayAddressRequest.

func (*MockEC2APIMockRecorder) DisassociateNatGatewayAddressWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisassociateNatGatewayAddressWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DisassociateNatGatewayAddressWithContext indicates an expected call of DisassociateNatGatewayAddressWithContext.

func (*MockEC2APIMockRecorder) DisassociateRouteTable added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisassociateRouteTable(arg0 interface{}) *gomock.Call

DisassociateRouteTable indicates an expected call of DisassociateRouteTable.

func (*MockEC2APIMockRecorder) DisassociateRouteTableRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisassociateRouteTableRequest(arg0 interface{}) *gomock.Call

DisassociateRouteTableRequest indicates an expected call of DisassociateRouteTableRequest.

func (*MockEC2APIMockRecorder) DisassociateRouteTableWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisassociateRouteTableWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DisassociateRouteTableWithContext indicates an expected call of DisassociateRouteTableWithContext.

func (*MockEC2APIMockRecorder) DisassociateSubnetCidrBlock added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisassociateSubnetCidrBlock(arg0 interface{}) *gomock.Call

DisassociateSubnetCidrBlock indicates an expected call of DisassociateSubnetCidrBlock.

func (*MockEC2APIMockRecorder) DisassociateSubnetCidrBlockRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisassociateSubnetCidrBlockRequest(arg0 interface{}) *gomock.Call

DisassociateSubnetCidrBlockRequest indicates an expected call of DisassociateSubnetCidrBlockRequest.

func (*MockEC2APIMockRecorder) DisassociateSubnetCidrBlockWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisassociateSubnetCidrBlockWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DisassociateSubnetCidrBlockWithContext indicates an expected call of DisassociateSubnetCidrBlockWithContext.

func (*MockEC2APIMockRecorder) DisassociateTransitGatewayMulticastDomain added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisassociateTransitGatewayMulticastDomain(arg0 interface{}) *gomock.Call

DisassociateTransitGatewayMulticastDomain indicates an expected call of DisassociateTransitGatewayMulticastDomain.

func (*MockEC2APIMockRecorder) DisassociateTransitGatewayMulticastDomainRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisassociateTransitGatewayMulticastDomainRequest(arg0 interface{}) *gomock.Call

DisassociateTransitGatewayMulticastDomainRequest indicates an expected call of DisassociateTransitGatewayMulticastDomainRequest.

func (*MockEC2APIMockRecorder) DisassociateTransitGatewayMulticastDomainWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisassociateTransitGatewayMulticastDomainWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DisassociateTransitGatewayMulticastDomainWithContext indicates an expected call of DisassociateTransitGatewayMulticastDomainWithContext.

func (*MockEC2APIMockRecorder) DisassociateTransitGatewayPolicyTable added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisassociateTransitGatewayPolicyTable(arg0 interface{}) *gomock.Call

DisassociateTransitGatewayPolicyTable indicates an expected call of DisassociateTransitGatewayPolicyTable.

func (*MockEC2APIMockRecorder) DisassociateTransitGatewayPolicyTableRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisassociateTransitGatewayPolicyTableRequest(arg0 interface{}) *gomock.Call

DisassociateTransitGatewayPolicyTableRequest indicates an expected call of DisassociateTransitGatewayPolicyTableRequest.

func (*MockEC2APIMockRecorder) DisassociateTransitGatewayPolicyTableWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisassociateTransitGatewayPolicyTableWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DisassociateTransitGatewayPolicyTableWithContext indicates an expected call of DisassociateTransitGatewayPolicyTableWithContext.

func (*MockEC2APIMockRecorder) DisassociateTransitGatewayRouteTable added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisassociateTransitGatewayRouteTable(arg0 interface{}) *gomock.Call

DisassociateTransitGatewayRouteTable indicates an expected call of DisassociateTransitGatewayRouteTable.

func (*MockEC2APIMockRecorder) DisassociateTransitGatewayRouteTableRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisassociateTransitGatewayRouteTableRequest(arg0 interface{}) *gomock.Call

DisassociateTransitGatewayRouteTableRequest indicates an expected call of DisassociateTransitGatewayRouteTableRequest.

func (*MockEC2APIMockRecorder) DisassociateTransitGatewayRouteTableWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisassociateTransitGatewayRouteTableWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DisassociateTransitGatewayRouteTableWithContext indicates an expected call of DisassociateTransitGatewayRouteTableWithContext.

func (*MockEC2APIMockRecorder) DisassociateTrunkInterface added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisassociateTrunkInterface(arg0 interface{}) *gomock.Call

DisassociateTrunkInterface indicates an expected call of DisassociateTrunkInterface.

func (*MockEC2APIMockRecorder) DisassociateTrunkInterfaceRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisassociateTrunkInterfaceRequest(arg0 interface{}) *gomock.Call

DisassociateTrunkInterfaceRequest indicates an expected call of DisassociateTrunkInterfaceRequest.

func (*MockEC2APIMockRecorder) DisassociateTrunkInterfaceWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisassociateTrunkInterfaceWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DisassociateTrunkInterfaceWithContext indicates an expected call of DisassociateTrunkInterfaceWithContext.

func (*MockEC2APIMockRecorder) DisassociateVpcCidrBlock added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisassociateVpcCidrBlock(arg0 interface{}) *gomock.Call

DisassociateVpcCidrBlock indicates an expected call of DisassociateVpcCidrBlock.

func (*MockEC2APIMockRecorder) DisassociateVpcCidrBlockRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisassociateVpcCidrBlockRequest(arg0 interface{}) *gomock.Call

DisassociateVpcCidrBlockRequest indicates an expected call of DisassociateVpcCidrBlockRequest.

func (*MockEC2APIMockRecorder) DisassociateVpcCidrBlockWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) DisassociateVpcCidrBlockWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

DisassociateVpcCidrBlockWithContext indicates an expected call of DisassociateVpcCidrBlockWithContext.

func (*MockEC2APIMockRecorder) EnableAddressTransfer added in v1.19.0

func (mr *MockEC2APIMockRecorder) EnableAddressTransfer(arg0 interface{}) *gomock.Call

EnableAddressTransfer indicates an expected call of EnableAddressTransfer.

func (*MockEC2APIMockRecorder) EnableAddressTransferRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) EnableAddressTransferRequest(arg0 interface{}) *gomock.Call

EnableAddressTransferRequest indicates an expected call of EnableAddressTransferRequest.

func (*MockEC2APIMockRecorder) EnableAddressTransferWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) EnableAddressTransferWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

EnableAddressTransferWithContext indicates an expected call of EnableAddressTransferWithContext.

func (*MockEC2APIMockRecorder) EnableAwsNetworkPerformanceMetricSubscription added in v1.19.0

func (mr *MockEC2APIMockRecorder) EnableAwsNetworkPerformanceMetricSubscription(arg0 interface{}) *gomock.Call

EnableAwsNetworkPerformanceMetricSubscription indicates an expected call of EnableAwsNetworkPerformanceMetricSubscription.

func (*MockEC2APIMockRecorder) EnableAwsNetworkPerformanceMetricSubscriptionRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) EnableAwsNetworkPerformanceMetricSubscriptionRequest(arg0 interface{}) *gomock.Call

EnableAwsNetworkPerformanceMetricSubscriptionRequest indicates an expected call of EnableAwsNetworkPerformanceMetricSubscriptionRequest.

func (*MockEC2APIMockRecorder) EnableAwsNetworkPerformanceMetricSubscriptionWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) EnableAwsNetworkPerformanceMetricSubscriptionWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

EnableAwsNetworkPerformanceMetricSubscriptionWithContext indicates an expected call of EnableAwsNetworkPerformanceMetricSubscriptionWithContext.

func (*MockEC2APIMockRecorder) EnableEbsEncryptionByDefault added in v1.19.0

func (mr *MockEC2APIMockRecorder) EnableEbsEncryptionByDefault(arg0 interface{}) *gomock.Call

EnableEbsEncryptionByDefault indicates an expected call of EnableEbsEncryptionByDefault.

func (*MockEC2APIMockRecorder) EnableEbsEncryptionByDefaultRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) EnableEbsEncryptionByDefaultRequest(arg0 interface{}) *gomock.Call

EnableEbsEncryptionByDefaultRequest indicates an expected call of EnableEbsEncryptionByDefaultRequest.

func (*MockEC2APIMockRecorder) EnableEbsEncryptionByDefaultWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) EnableEbsEncryptionByDefaultWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

EnableEbsEncryptionByDefaultWithContext indicates an expected call of EnableEbsEncryptionByDefaultWithContext.

func (*MockEC2APIMockRecorder) EnableFastLaunch added in v1.19.0

func (mr *MockEC2APIMockRecorder) EnableFastLaunch(arg0 interface{}) *gomock.Call

EnableFastLaunch indicates an expected call of EnableFastLaunch.

func (*MockEC2APIMockRecorder) EnableFastLaunchRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) EnableFastLaunchRequest(arg0 interface{}) *gomock.Call

EnableFastLaunchRequest indicates an expected call of EnableFastLaunchRequest.

func (*MockEC2APIMockRecorder) EnableFastLaunchWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) EnableFastLaunchWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

EnableFastLaunchWithContext indicates an expected call of EnableFastLaunchWithContext.

func (*MockEC2APIMockRecorder) EnableFastSnapshotRestores added in v1.19.0

func (mr *MockEC2APIMockRecorder) EnableFastSnapshotRestores(arg0 interface{}) *gomock.Call

EnableFastSnapshotRestores indicates an expected call of EnableFastSnapshotRestores.

func (*MockEC2APIMockRecorder) EnableFastSnapshotRestoresRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) EnableFastSnapshotRestoresRequest(arg0 interface{}) *gomock.Call

EnableFastSnapshotRestoresRequest indicates an expected call of EnableFastSnapshotRestoresRequest.

func (*MockEC2APIMockRecorder) EnableFastSnapshotRestoresWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) EnableFastSnapshotRestoresWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

EnableFastSnapshotRestoresWithContext indicates an expected call of EnableFastSnapshotRestoresWithContext.

func (*MockEC2APIMockRecorder) EnableImageBlockPublicAccess added in v1.23.0

func (mr *MockEC2APIMockRecorder) EnableImageBlockPublicAccess(arg0 interface{}) *gomock.Call

EnableImageBlockPublicAccess indicates an expected call of EnableImageBlockPublicAccess.

func (*MockEC2APIMockRecorder) EnableImageBlockPublicAccessRequest added in v1.23.0

func (mr *MockEC2APIMockRecorder) EnableImageBlockPublicAccessRequest(arg0 interface{}) *gomock.Call

EnableImageBlockPublicAccessRequest indicates an expected call of EnableImageBlockPublicAccessRequest.

func (*MockEC2APIMockRecorder) EnableImageBlockPublicAccessWithContext added in v1.23.0

func (mr *MockEC2APIMockRecorder) EnableImageBlockPublicAccessWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

EnableImageBlockPublicAccessWithContext indicates an expected call of EnableImageBlockPublicAccessWithContext.

func (*MockEC2APIMockRecorder) EnableImageDeprecation added in v1.19.0

func (mr *MockEC2APIMockRecorder) EnableImageDeprecation(arg0 interface{}) *gomock.Call

EnableImageDeprecation indicates an expected call of EnableImageDeprecation.

func (*MockEC2APIMockRecorder) EnableImageDeprecationRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) EnableImageDeprecationRequest(arg0 interface{}) *gomock.Call

EnableImageDeprecationRequest indicates an expected call of EnableImageDeprecationRequest.

func (*MockEC2APIMockRecorder) EnableImageDeprecationWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) EnableImageDeprecationWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

EnableImageDeprecationWithContext indicates an expected call of EnableImageDeprecationWithContext.

func (*MockEC2APIMockRecorder) EnableIpamOrganizationAdminAccount added in v1.19.0

func (mr *MockEC2APIMockRecorder) EnableIpamOrganizationAdminAccount(arg0 interface{}) *gomock.Call

EnableIpamOrganizationAdminAccount indicates an expected call of EnableIpamOrganizationAdminAccount.

func (*MockEC2APIMockRecorder) EnableIpamOrganizationAdminAccountRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) EnableIpamOrganizationAdminAccountRequest(arg0 interface{}) *gomock.Call

EnableIpamOrganizationAdminAccountRequest indicates an expected call of EnableIpamOrganizationAdminAccountRequest.

func (*MockEC2APIMockRecorder) EnableIpamOrganizationAdminAccountWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) EnableIpamOrganizationAdminAccountWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

EnableIpamOrganizationAdminAccountWithContext indicates an expected call of EnableIpamOrganizationAdminAccountWithContext.

func (*MockEC2APIMockRecorder) EnableReachabilityAnalyzerOrganizationSharing added in v1.19.0

func (mr *MockEC2APIMockRecorder) EnableReachabilityAnalyzerOrganizationSharing(arg0 interface{}) *gomock.Call

EnableReachabilityAnalyzerOrganizationSharing indicates an expected call of EnableReachabilityAnalyzerOrganizationSharing.

func (*MockEC2APIMockRecorder) EnableReachabilityAnalyzerOrganizationSharingRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) EnableReachabilityAnalyzerOrganizationSharingRequest(arg0 interface{}) *gomock.Call

EnableReachabilityAnalyzerOrganizationSharingRequest indicates an expected call of EnableReachabilityAnalyzerOrganizationSharingRequest.

func (*MockEC2APIMockRecorder) EnableReachabilityAnalyzerOrganizationSharingWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) EnableReachabilityAnalyzerOrganizationSharingWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

EnableReachabilityAnalyzerOrganizationSharingWithContext indicates an expected call of EnableReachabilityAnalyzerOrganizationSharingWithContext.

func (*MockEC2APIMockRecorder) EnableSerialConsoleAccess added in v1.19.0

func (mr *MockEC2APIMockRecorder) EnableSerialConsoleAccess(arg0 interface{}) *gomock.Call

EnableSerialConsoleAccess indicates an expected call of EnableSerialConsoleAccess.

func (*MockEC2APIMockRecorder) EnableSerialConsoleAccessRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) EnableSerialConsoleAccessRequest(arg0 interface{}) *gomock.Call

EnableSerialConsoleAccessRequest indicates an expected call of EnableSerialConsoleAccessRequest.

func (*MockEC2APIMockRecorder) EnableSerialConsoleAccessWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) EnableSerialConsoleAccessWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

EnableSerialConsoleAccessWithContext indicates an expected call of EnableSerialConsoleAccessWithContext.

func (*MockEC2APIMockRecorder) EnableTransitGatewayRouteTablePropagation added in v1.19.0

func (mr *MockEC2APIMockRecorder) EnableTransitGatewayRouteTablePropagation(arg0 interface{}) *gomock.Call

EnableTransitGatewayRouteTablePropagation indicates an expected call of EnableTransitGatewayRouteTablePropagation.

func (*MockEC2APIMockRecorder) EnableTransitGatewayRouteTablePropagationRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) EnableTransitGatewayRouteTablePropagationRequest(arg0 interface{}) *gomock.Call

EnableTransitGatewayRouteTablePropagationRequest indicates an expected call of EnableTransitGatewayRouteTablePropagationRequest.

func (*MockEC2APIMockRecorder) EnableTransitGatewayRouteTablePropagationWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) EnableTransitGatewayRouteTablePropagationWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

EnableTransitGatewayRouteTablePropagationWithContext indicates an expected call of EnableTransitGatewayRouteTablePropagationWithContext.

func (*MockEC2APIMockRecorder) EnableVgwRoutePropagation added in v1.19.0

func (mr *MockEC2APIMockRecorder) EnableVgwRoutePropagation(arg0 interface{}) *gomock.Call

EnableVgwRoutePropagation indicates an expected call of EnableVgwRoutePropagation.

func (*MockEC2APIMockRecorder) EnableVgwRoutePropagationRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) EnableVgwRoutePropagationRequest(arg0 interface{}) *gomock.Call

EnableVgwRoutePropagationRequest indicates an expected call of EnableVgwRoutePropagationRequest.

func (*MockEC2APIMockRecorder) EnableVgwRoutePropagationWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) EnableVgwRoutePropagationWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

EnableVgwRoutePropagationWithContext indicates an expected call of EnableVgwRoutePropagationWithContext.

func (*MockEC2APIMockRecorder) EnableVolumeIO added in v1.19.0

func (mr *MockEC2APIMockRecorder) EnableVolumeIO(arg0 interface{}) *gomock.Call

EnableVolumeIO indicates an expected call of EnableVolumeIO.

func (*MockEC2APIMockRecorder) EnableVolumeIORequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) EnableVolumeIORequest(arg0 interface{}) *gomock.Call

EnableVolumeIORequest indicates an expected call of EnableVolumeIORequest.

func (*MockEC2APIMockRecorder) EnableVolumeIOWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) EnableVolumeIOWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

EnableVolumeIOWithContext indicates an expected call of EnableVolumeIOWithContext.

func (mr *MockEC2APIMockRecorder) EnableVpcClassicLink(arg0 interface{}) *gomock.Call

EnableVpcClassicLink indicates an expected call of EnableVpcClassicLink.

func (*MockEC2APIMockRecorder) EnableVpcClassicLinkDnsSupport added in v1.19.0

func (mr *MockEC2APIMockRecorder) EnableVpcClassicLinkDnsSupport(arg0 interface{}) *gomock.Call

EnableVpcClassicLinkDnsSupport indicates an expected call of EnableVpcClassicLinkDnsSupport.

func (*MockEC2APIMockRecorder) EnableVpcClassicLinkDnsSupportRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) EnableVpcClassicLinkDnsSupportRequest(arg0 interface{}) *gomock.Call

EnableVpcClassicLinkDnsSupportRequest indicates an expected call of EnableVpcClassicLinkDnsSupportRequest.

func (*MockEC2APIMockRecorder) EnableVpcClassicLinkDnsSupportWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) EnableVpcClassicLinkDnsSupportWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

EnableVpcClassicLinkDnsSupportWithContext indicates an expected call of EnableVpcClassicLinkDnsSupportWithContext.

func (*MockEC2APIMockRecorder) EnableVpcClassicLinkRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) EnableVpcClassicLinkRequest(arg0 interface{}) *gomock.Call

EnableVpcClassicLinkRequest indicates an expected call of EnableVpcClassicLinkRequest.

func (*MockEC2APIMockRecorder) EnableVpcClassicLinkWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) EnableVpcClassicLinkWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

EnableVpcClassicLinkWithContext indicates an expected call of EnableVpcClassicLinkWithContext.

func (*MockEC2APIMockRecorder) ExportClientVpnClientCertificateRevocationList added in v1.19.0

func (mr *MockEC2APIMockRecorder) ExportClientVpnClientCertificateRevocationList(arg0 interface{}) *gomock.Call

ExportClientVpnClientCertificateRevocationList indicates an expected call of ExportClientVpnClientCertificateRevocationList.

func (*MockEC2APIMockRecorder) ExportClientVpnClientCertificateRevocationListRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ExportClientVpnClientCertificateRevocationListRequest(arg0 interface{}) *gomock.Call

ExportClientVpnClientCertificateRevocationListRequest indicates an expected call of ExportClientVpnClientCertificateRevocationListRequest.

func (*MockEC2APIMockRecorder) ExportClientVpnClientCertificateRevocationListWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ExportClientVpnClientCertificateRevocationListWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ExportClientVpnClientCertificateRevocationListWithContext indicates an expected call of ExportClientVpnClientCertificateRevocationListWithContext.

func (*MockEC2APIMockRecorder) ExportClientVpnClientConfiguration added in v1.19.0

func (mr *MockEC2APIMockRecorder) ExportClientVpnClientConfiguration(arg0 interface{}) *gomock.Call

ExportClientVpnClientConfiguration indicates an expected call of ExportClientVpnClientConfiguration.

func (*MockEC2APIMockRecorder) ExportClientVpnClientConfigurationRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ExportClientVpnClientConfigurationRequest(arg0 interface{}) *gomock.Call

ExportClientVpnClientConfigurationRequest indicates an expected call of ExportClientVpnClientConfigurationRequest.

func (*MockEC2APIMockRecorder) ExportClientVpnClientConfigurationWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ExportClientVpnClientConfigurationWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ExportClientVpnClientConfigurationWithContext indicates an expected call of ExportClientVpnClientConfigurationWithContext.

func (*MockEC2APIMockRecorder) ExportImage added in v1.19.0

func (mr *MockEC2APIMockRecorder) ExportImage(arg0 interface{}) *gomock.Call

ExportImage indicates an expected call of ExportImage.

func (*MockEC2APIMockRecorder) ExportImageRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ExportImageRequest(arg0 interface{}) *gomock.Call

ExportImageRequest indicates an expected call of ExportImageRequest.

func (*MockEC2APIMockRecorder) ExportImageWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ExportImageWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ExportImageWithContext indicates an expected call of ExportImageWithContext.

func (*MockEC2APIMockRecorder) ExportTransitGatewayRoutes added in v1.19.0

func (mr *MockEC2APIMockRecorder) ExportTransitGatewayRoutes(arg0 interface{}) *gomock.Call

ExportTransitGatewayRoutes indicates an expected call of ExportTransitGatewayRoutes.

func (*MockEC2APIMockRecorder) ExportTransitGatewayRoutesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ExportTransitGatewayRoutesRequest(arg0 interface{}) *gomock.Call

ExportTransitGatewayRoutesRequest indicates an expected call of ExportTransitGatewayRoutesRequest.

func (*MockEC2APIMockRecorder) ExportTransitGatewayRoutesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ExportTransitGatewayRoutesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ExportTransitGatewayRoutesWithContext indicates an expected call of ExportTransitGatewayRoutesWithContext.

func (*MockEC2APIMockRecorder) GetAssociatedEnclaveCertificateIamRoles added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetAssociatedEnclaveCertificateIamRoles(arg0 interface{}) *gomock.Call

GetAssociatedEnclaveCertificateIamRoles indicates an expected call of GetAssociatedEnclaveCertificateIamRoles.

func (*MockEC2APIMockRecorder) GetAssociatedEnclaveCertificateIamRolesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetAssociatedEnclaveCertificateIamRolesRequest(arg0 interface{}) *gomock.Call

GetAssociatedEnclaveCertificateIamRolesRequest indicates an expected call of GetAssociatedEnclaveCertificateIamRolesRequest.

func (*MockEC2APIMockRecorder) GetAssociatedEnclaveCertificateIamRolesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetAssociatedEnclaveCertificateIamRolesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

GetAssociatedEnclaveCertificateIamRolesWithContext indicates an expected call of GetAssociatedEnclaveCertificateIamRolesWithContext.

func (*MockEC2APIMockRecorder) GetAssociatedIpv6PoolCidrs added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetAssociatedIpv6PoolCidrs(arg0 interface{}) *gomock.Call

GetAssociatedIpv6PoolCidrs indicates an expected call of GetAssociatedIpv6PoolCidrs.

func (*MockEC2APIMockRecorder) GetAssociatedIpv6PoolCidrsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetAssociatedIpv6PoolCidrsPages(arg0, arg1 interface{}) *gomock.Call

GetAssociatedIpv6PoolCidrsPages indicates an expected call of GetAssociatedIpv6PoolCidrsPages.

func (*MockEC2APIMockRecorder) GetAssociatedIpv6PoolCidrsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetAssociatedIpv6PoolCidrsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

GetAssociatedIpv6PoolCidrsPagesWithContext indicates an expected call of GetAssociatedIpv6PoolCidrsPagesWithContext.

func (*MockEC2APIMockRecorder) GetAssociatedIpv6PoolCidrsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetAssociatedIpv6PoolCidrsRequest(arg0 interface{}) *gomock.Call

GetAssociatedIpv6PoolCidrsRequest indicates an expected call of GetAssociatedIpv6PoolCidrsRequest.

func (*MockEC2APIMockRecorder) GetAssociatedIpv6PoolCidrsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetAssociatedIpv6PoolCidrsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

GetAssociatedIpv6PoolCidrsWithContext indicates an expected call of GetAssociatedIpv6PoolCidrsWithContext.

func (*MockEC2APIMockRecorder) GetAwsNetworkPerformanceData added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetAwsNetworkPerformanceData(arg0 interface{}) *gomock.Call

GetAwsNetworkPerformanceData indicates an expected call of GetAwsNetworkPerformanceData.

func (*MockEC2APIMockRecorder) GetAwsNetworkPerformanceDataPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetAwsNetworkPerformanceDataPages(arg0, arg1 interface{}) *gomock.Call

GetAwsNetworkPerformanceDataPages indicates an expected call of GetAwsNetworkPerformanceDataPages.

func (*MockEC2APIMockRecorder) GetAwsNetworkPerformanceDataPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetAwsNetworkPerformanceDataPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

GetAwsNetworkPerformanceDataPagesWithContext indicates an expected call of GetAwsNetworkPerformanceDataPagesWithContext.

func (*MockEC2APIMockRecorder) GetAwsNetworkPerformanceDataRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetAwsNetworkPerformanceDataRequest(arg0 interface{}) *gomock.Call

GetAwsNetworkPerformanceDataRequest indicates an expected call of GetAwsNetworkPerformanceDataRequest.

func (*MockEC2APIMockRecorder) GetAwsNetworkPerformanceDataWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetAwsNetworkPerformanceDataWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

GetAwsNetworkPerformanceDataWithContext indicates an expected call of GetAwsNetworkPerformanceDataWithContext.

func (*MockEC2APIMockRecorder) GetCapacityReservationUsage added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetCapacityReservationUsage(arg0 interface{}) *gomock.Call

GetCapacityReservationUsage indicates an expected call of GetCapacityReservationUsage.

func (*MockEC2APIMockRecorder) GetCapacityReservationUsageRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetCapacityReservationUsageRequest(arg0 interface{}) *gomock.Call

GetCapacityReservationUsageRequest indicates an expected call of GetCapacityReservationUsageRequest.

func (*MockEC2APIMockRecorder) GetCapacityReservationUsageWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetCapacityReservationUsageWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

GetCapacityReservationUsageWithContext indicates an expected call of GetCapacityReservationUsageWithContext.

func (*MockEC2APIMockRecorder) GetCoipPoolUsage added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetCoipPoolUsage(arg0 interface{}) *gomock.Call

GetCoipPoolUsage indicates an expected call of GetCoipPoolUsage.

func (*MockEC2APIMockRecorder) GetCoipPoolUsageRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetCoipPoolUsageRequest(arg0 interface{}) *gomock.Call

GetCoipPoolUsageRequest indicates an expected call of GetCoipPoolUsageRequest.

func (*MockEC2APIMockRecorder) GetCoipPoolUsageWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetCoipPoolUsageWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

GetCoipPoolUsageWithContext indicates an expected call of GetCoipPoolUsageWithContext.

func (*MockEC2APIMockRecorder) GetConsoleOutput added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetConsoleOutput(arg0 interface{}) *gomock.Call

GetConsoleOutput indicates an expected call of GetConsoleOutput.

func (*MockEC2APIMockRecorder) GetConsoleOutputRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetConsoleOutputRequest(arg0 interface{}) *gomock.Call

GetConsoleOutputRequest indicates an expected call of GetConsoleOutputRequest.

func (*MockEC2APIMockRecorder) GetConsoleOutputWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetConsoleOutputWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

GetConsoleOutputWithContext indicates an expected call of GetConsoleOutputWithContext.

func (*MockEC2APIMockRecorder) GetConsoleScreenshot added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetConsoleScreenshot(arg0 interface{}) *gomock.Call

GetConsoleScreenshot indicates an expected call of GetConsoleScreenshot.

func (*MockEC2APIMockRecorder) GetConsoleScreenshotRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetConsoleScreenshotRequest(arg0 interface{}) *gomock.Call

GetConsoleScreenshotRequest indicates an expected call of GetConsoleScreenshotRequest.

func (*MockEC2APIMockRecorder) GetConsoleScreenshotWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetConsoleScreenshotWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

GetConsoleScreenshotWithContext indicates an expected call of GetConsoleScreenshotWithContext.

func (*MockEC2APIMockRecorder) GetDefaultCreditSpecification added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetDefaultCreditSpecification(arg0 interface{}) *gomock.Call

GetDefaultCreditSpecification indicates an expected call of GetDefaultCreditSpecification.

func (*MockEC2APIMockRecorder) GetDefaultCreditSpecificationRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetDefaultCreditSpecificationRequest(arg0 interface{}) *gomock.Call

GetDefaultCreditSpecificationRequest indicates an expected call of GetDefaultCreditSpecificationRequest.

func (*MockEC2APIMockRecorder) GetDefaultCreditSpecificationWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetDefaultCreditSpecificationWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

GetDefaultCreditSpecificationWithContext indicates an expected call of GetDefaultCreditSpecificationWithContext.

func (*MockEC2APIMockRecorder) GetEbsDefaultKmsKeyId added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetEbsDefaultKmsKeyId(arg0 interface{}) *gomock.Call

GetEbsDefaultKmsKeyId indicates an expected call of GetEbsDefaultKmsKeyId.

func (*MockEC2APIMockRecorder) GetEbsDefaultKmsKeyIdRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetEbsDefaultKmsKeyIdRequest(arg0 interface{}) *gomock.Call

GetEbsDefaultKmsKeyIdRequest indicates an expected call of GetEbsDefaultKmsKeyIdRequest.

func (*MockEC2APIMockRecorder) GetEbsDefaultKmsKeyIdWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetEbsDefaultKmsKeyIdWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

GetEbsDefaultKmsKeyIdWithContext indicates an expected call of GetEbsDefaultKmsKeyIdWithContext.

func (*MockEC2APIMockRecorder) GetEbsEncryptionByDefault added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetEbsEncryptionByDefault(arg0 interface{}) *gomock.Call

GetEbsEncryptionByDefault indicates an expected call of GetEbsEncryptionByDefault.

func (*MockEC2APIMockRecorder) GetEbsEncryptionByDefaultRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetEbsEncryptionByDefaultRequest(arg0 interface{}) *gomock.Call

GetEbsEncryptionByDefaultRequest indicates an expected call of GetEbsEncryptionByDefaultRequest.

func (*MockEC2APIMockRecorder) GetEbsEncryptionByDefaultWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetEbsEncryptionByDefaultWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

GetEbsEncryptionByDefaultWithContext indicates an expected call of GetEbsEncryptionByDefaultWithContext.

func (*MockEC2APIMockRecorder) GetFlowLogsIntegrationTemplate added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetFlowLogsIntegrationTemplate(arg0 interface{}) *gomock.Call

GetFlowLogsIntegrationTemplate indicates an expected call of GetFlowLogsIntegrationTemplate.

func (*MockEC2APIMockRecorder) GetFlowLogsIntegrationTemplateRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetFlowLogsIntegrationTemplateRequest(arg0 interface{}) *gomock.Call

GetFlowLogsIntegrationTemplateRequest indicates an expected call of GetFlowLogsIntegrationTemplateRequest.

func (*MockEC2APIMockRecorder) GetFlowLogsIntegrationTemplateWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetFlowLogsIntegrationTemplateWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

GetFlowLogsIntegrationTemplateWithContext indicates an expected call of GetFlowLogsIntegrationTemplateWithContext.

func (*MockEC2APIMockRecorder) GetGroupsForCapacityReservation added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetGroupsForCapacityReservation(arg0 interface{}) *gomock.Call

GetGroupsForCapacityReservation indicates an expected call of GetGroupsForCapacityReservation.

func (*MockEC2APIMockRecorder) GetGroupsForCapacityReservationPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetGroupsForCapacityReservationPages(arg0, arg1 interface{}) *gomock.Call

GetGroupsForCapacityReservationPages indicates an expected call of GetGroupsForCapacityReservationPages.

func (*MockEC2APIMockRecorder) GetGroupsForCapacityReservationPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetGroupsForCapacityReservationPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

GetGroupsForCapacityReservationPagesWithContext indicates an expected call of GetGroupsForCapacityReservationPagesWithContext.

func (*MockEC2APIMockRecorder) GetGroupsForCapacityReservationRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetGroupsForCapacityReservationRequest(arg0 interface{}) *gomock.Call

GetGroupsForCapacityReservationRequest indicates an expected call of GetGroupsForCapacityReservationRequest.

func (*MockEC2APIMockRecorder) GetGroupsForCapacityReservationWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetGroupsForCapacityReservationWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

GetGroupsForCapacityReservationWithContext indicates an expected call of GetGroupsForCapacityReservationWithContext.

func (*MockEC2APIMockRecorder) GetHostReservationPurchasePreview added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetHostReservationPurchasePreview(arg0 interface{}) *gomock.Call

GetHostReservationPurchasePreview indicates an expected call of GetHostReservationPurchasePreview.

func (*MockEC2APIMockRecorder) GetHostReservationPurchasePreviewRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetHostReservationPurchasePreviewRequest(arg0 interface{}) *gomock.Call

GetHostReservationPurchasePreviewRequest indicates an expected call of GetHostReservationPurchasePreviewRequest.

func (*MockEC2APIMockRecorder) GetHostReservationPurchasePreviewWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetHostReservationPurchasePreviewWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

GetHostReservationPurchasePreviewWithContext indicates an expected call of GetHostReservationPurchasePreviewWithContext.

func (*MockEC2APIMockRecorder) GetImageBlockPublicAccessState added in v1.23.0

func (mr *MockEC2APIMockRecorder) GetImageBlockPublicAccessState(arg0 interface{}) *gomock.Call

GetImageBlockPublicAccessState indicates an expected call of GetImageBlockPublicAccessState.

func (*MockEC2APIMockRecorder) GetImageBlockPublicAccessStateRequest added in v1.23.0

func (mr *MockEC2APIMockRecorder) GetImageBlockPublicAccessStateRequest(arg0 interface{}) *gomock.Call

GetImageBlockPublicAccessStateRequest indicates an expected call of GetImageBlockPublicAccessStateRequest.

func (*MockEC2APIMockRecorder) GetImageBlockPublicAccessStateWithContext added in v1.23.0

func (mr *MockEC2APIMockRecorder) GetImageBlockPublicAccessStateWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

GetImageBlockPublicAccessStateWithContext indicates an expected call of GetImageBlockPublicAccessStateWithContext.

func (*MockEC2APIMockRecorder) GetInstanceTypesFromInstanceRequirements added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetInstanceTypesFromInstanceRequirements(arg0 interface{}) *gomock.Call

GetInstanceTypesFromInstanceRequirements indicates an expected call of GetInstanceTypesFromInstanceRequirements.

func (*MockEC2APIMockRecorder) GetInstanceTypesFromInstanceRequirementsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetInstanceTypesFromInstanceRequirementsPages(arg0, arg1 interface{}) *gomock.Call

GetInstanceTypesFromInstanceRequirementsPages indicates an expected call of GetInstanceTypesFromInstanceRequirementsPages.

func (*MockEC2APIMockRecorder) GetInstanceTypesFromInstanceRequirementsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetInstanceTypesFromInstanceRequirementsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

GetInstanceTypesFromInstanceRequirementsPagesWithContext indicates an expected call of GetInstanceTypesFromInstanceRequirementsPagesWithContext.

func (*MockEC2APIMockRecorder) GetInstanceTypesFromInstanceRequirementsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetInstanceTypesFromInstanceRequirementsRequest(arg0 interface{}) *gomock.Call

GetInstanceTypesFromInstanceRequirementsRequest indicates an expected call of GetInstanceTypesFromInstanceRequirementsRequest.

func (*MockEC2APIMockRecorder) GetInstanceTypesFromInstanceRequirementsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetInstanceTypesFromInstanceRequirementsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

GetInstanceTypesFromInstanceRequirementsWithContext indicates an expected call of GetInstanceTypesFromInstanceRequirementsWithContext.

func (*MockEC2APIMockRecorder) GetInstanceUefiData added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetInstanceUefiData(arg0 interface{}) *gomock.Call

GetInstanceUefiData indicates an expected call of GetInstanceUefiData.

func (*MockEC2APIMockRecorder) GetInstanceUefiDataRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetInstanceUefiDataRequest(arg0 interface{}) *gomock.Call

GetInstanceUefiDataRequest indicates an expected call of GetInstanceUefiDataRequest.

func (*MockEC2APIMockRecorder) GetInstanceUefiDataWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetInstanceUefiDataWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

GetInstanceUefiDataWithContext indicates an expected call of GetInstanceUefiDataWithContext.

func (*MockEC2APIMockRecorder) GetIpamAddressHistory added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetIpamAddressHistory(arg0 interface{}) *gomock.Call

GetIpamAddressHistory indicates an expected call of GetIpamAddressHistory.

func (*MockEC2APIMockRecorder) GetIpamAddressHistoryPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetIpamAddressHistoryPages(arg0, arg1 interface{}) *gomock.Call

GetIpamAddressHistoryPages indicates an expected call of GetIpamAddressHistoryPages.

func (*MockEC2APIMockRecorder) GetIpamAddressHistoryPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetIpamAddressHistoryPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

GetIpamAddressHistoryPagesWithContext indicates an expected call of GetIpamAddressHistoryPagesWithContext.

func (*MockEC2APIMockRecorder) GetIpamAddressHistoryRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetIpamAddressHistoryRequest(arg0 interface{}) *gomock.Call

GetIpamAddressHistoryRequest indicates an expected call of GetIpamAddressHistoryRequest.

func (*MockEC2APIMockRecorder) GetIpamAddressHistoryWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetIpamAddressHistoryWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

GetIpamAddressHistoryWithContext indicates an expected call of GetIpamAddressHistoryWithContext.

func (*MockEC2APIMockRecorder) GetIpamDiscoveredAccounts added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetIpamDiscoveredAccounts(arg0 interface{}) *gomock.Call

GetIpamDiscoveredAccounts indicates an expected call of GetIpamDiscoveredAccounts.

func (*MockEC2APIMockRecorder) GetIpamDiscoveredAccountsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetIpamDiscoveredAccountsPages(arg0, arg1 interface{}) *gomock.Call

GetIpamDiscoveredAccountsPages indicates an expected call of GetIpamDiscoveredAccountsPages.

func (*MockEC2APIMockRecorder) GetIpamDiscoveredAccountsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetIpamDiscoveredAccountsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

GetIpamDiscoveredAccountsPagesWithContext indicates an expected call of GetIpamDiscoveredAccountsPagesWithContext.

func (*MockEC2APIMockRecorder) GetIpamDiscoveredAccountsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetIpamDiscoveredAccountsRequest(arg0 interface{}) *gomock.Call

GetIpamDiscoveredAccountsRequest indicates an expected call of GetIpamDiscoveredAccountsRequest.

func (*MockEC2APIMockRecorder) GetIpamDiscoveredAccountsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetIpamDiscoveredAccountsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

GetIpamDiscoveredAccountsWithContext indicates an expected call of GetIpamDiscoveredAccountsWithContext.

func (*MockEC2APIMockRecorder) GetIpamDiscoveredResourceCidrs added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetIpamDiscoveredResourceCidrs(arg0 interface{}) *gomock.Call

GetIpamDiscoveredResourceCidrs indicates an expected call of GetIpamDiscoveredResourceCidrs.

func (*MockEC2APIMockRecorder) GetIpamDiscoveredResourceCidrsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetIpamDiscoveredResourceCidrsPages(arg0, arg1 interface{}) *gomock.Call

GetIpamDiscoveredResourceCidrsPages indicates an expected call of GetIpamDiscoveredResourceCidrsPages.

func (*MockEC2APIMockRecorder) GetIpamDiscoveredResourceCidrsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetIpamDiscoveredResourceCidrsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

GetIpamDiscoveredResourceCidrsPagesWithContext indicates an expected call of GetIpamDiscoveredResourceCidrsPagesWithContext.

func (*MockEC2APIMockRecorder) GetIpamDiscoveredResourceCidrsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetIpamDiscoveredResourceCidrsRequest(arg0 interface{}) *gomock.Call

GetIpamDiscoveredResourceCidrsRequest indicates an expected call of GetIpamDiscoveredResourceCidrsRequest.

func (*MockEC2APIMockRecorder) GetIpamDiscoveredResourceCidrsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetIpamDiscoveredResourceCidrsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

GetIpamDiscoveredResourceCidrsWithContext indicates an expected call of GetIpamDiscoveredResourceCidrsWithContext.

func (*MockEC2APIMockRecorder) GetIpamPoolAllocations added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetIpamPoolAllocations(arg0 interface{}) *gomock.Call

GetIpamPoolAllocations indicates an expected call of GetIpamPoolAllocations.

func (*MockEC2APIMockRecorder) GetIpamPoolAllocationsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetIpamPoolAllocationsPages(arg0, arg1 interface{}) *gomock.Call

GetIpamPoolAllocationsPages indicates an expected call of GetIpamPoolAllocationsPages.

func (*MockEC2APIMockRecorder) GetIpamPoolAllocationsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetIpamPoolAllocationsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

GetIpamPoolAllocationsPagesWithContext indicates an expected call of GetIpamPoolAllocationsPagesWithContext.

func (*MockEC2APIMockRecorder) GetIpamPoolAllocationsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetIpamPoolAllocationsRequest(arg0 interface{}) *gomock.Call

GetIpamPoolAllocationsRequest indicates an expected call of GetIpamPoolAllocationsRequest.

func (*MockEC2APIMockRecorder) GetIpamPoolAllocationsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetIpamPoolAllocationsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

GetIpamPoolAllocationsWithContext indicates an expected call of GetIpamPoolAllocationsWithContext.

func (*MockEC2APIMockRecorder) GetIpamPoolCidrs added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetIpamPoolCidrs(arg0 interface{}) *gomock.Call

GetIpamPoolCidrs indicates an expected call of GetIpamPoolCidrs.

func (*MockEC2APIMockRecorder) GetIpamPoolCidrsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetIpamPoolCidrsPages(arg0, arg1 interface{}) *gomock.Call

GetIpamPoolCidrsPages indicates an expected call of GetIpamPoolCidrsPages.

func (*MockEC2APIMockRecorder) GetIpamPoolCidrsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetIpamPoolCidrsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

GetIpamPoolCidrsPagesWithContext indicates an expected call of GetIpamPoolCidrsPagesWithContext.

func (*MockEC2APIMockRecorder) GetIpamPoolCidrsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetIpamPoolCidrsRequest(arg0 interface{}) *gomock.Call

GetIpamPoolCidrsRequest indicates an expected call of GetIpamPoolCidrsRequest.

func (*MockEC2APIMockRecorder) GetIpamPoolCidrsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetIpamPoolCidrsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

GetIpamPoolCidrsWithContext indicates an expected call of GetIpamPoolCidrsWithContext.

func (*MockEC2APIMockRecorder) GetIpamResourceCidrs added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetIpamResourceCidrs(arg0 interface{}) *gomock.Call

GetIpamResourceCidrs indicates an expected call of GetIpamResourceCidrs.

func (*MockEC2APIMockRecorder) GetIpamResourceCidrsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetIpamResourceCidrsPages(arg0, arg1 interface{}) *gomock.Call

GetIpamResourceCidrsPages indicates an expected call of GetIpamResourceCidrsPages.

func (*MockEC2APIMockRecorder) GetIpamResourceCidrsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetIpamResourceCidrsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

GetIpamResourceCidrsPagesWithContext indicates an expected call of GetIpamResourceCidrsPagesWithContext.

func (*MockEC2APIMockRecorder) GetIpamResourceCidrsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetIpamResourceCidrsRequest(arg0 interface{}) *gomock.Call

GetIpamResourceCidrsRequest indicates an expected call of GetIpamResourceCidrsRequest.

func (*MockEC2APIMockRecorder) GetIpamResourceCidrsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetIpamResourceCidrsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

GetIpamResourceCidrsWithContext indicates an expected call of GetIpamResourceCidrsWithContext.

func (*MockEC2APIMockRecorder) GetLaunchTemplateData added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetLaunchTemplateData(arg0 interface{}) *gomock.Call

GetLaunchTemplateData indicates an expected call of GetLaunchTemplateData.

func (*MockEC2APIMockRecorder) GetLaunchTemplateDataRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetLaunchTemplateDataRequest(arg0 interface{}) *gomock.Call

GetLaunchTemplateDataRequest indicates an expected call of GetLaunchTemplateDataRequest.

func (*MockEC2APIMockRecorder) GetLaunchTemplateDataWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetLaunchTemplateDataWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

GetLaunchTemplateDataWithContext indicates an expected call of GetLaunchTemplateDataWithContext.

func (*MockEC2APIMockRecorder) GetManagedPrefixListAssociations added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetManagedPrefixListAssociations(arg0 interface{}) *gomock.Call

GetManagedPrefixListAssociations indicates an expected call of GetManagedPrefixListAssociations.

func (*MockEC2APIMockRecorder) GetManagedPrefixListAssociationsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetManagedPrefixListAssociationsPages(arg0, arg1 interface{}) *gomock.Call

GetManagedPrefixListAssociationsPages indicates an expected call of GetManagedPrefixListAssociationsPages.

func (*MockEC2APIMockRecorder) GetManagedPrefixListAssociationsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetManagedPrefixListAssociationsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

GetManagedPrefixListAssociationsPagesWithContext indicates an expected call of GetManagedPrefixListAssociationsPagesWithContext.

func (*MockEC2APIMockRecorder) GetManagedPrefixListAssociationsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetManagedPrefixListAssociationsRequest(arg0 interface{}) *gomock.Call

GetManagedPrefixListAssociationsRequest indicates an expected call of GetManagedPrefixListAssociationsRequest.

func (*MockEC2APIMockRecorder) GetManagedPrefixListAssociationsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetManagedPrefixListAssociationsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

GetManagedPrefixListAssociationsWithContext indicates an expected call of GetManagedPrefixListAssociationsWithContext.

func (*MockEC2APIMockRecorder) GetManagedPrefixListEntries added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetManagedPrefixListEntries(arg0 interface{}) *gomock.Call

GetManagedPrefixListEntries indicates an expected call of GetManagedPrefixListEntries.

func (*MockEC2APIMockRecorder) GetManagedPrefixListEntriesPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetManagedPrefixListEntriesPages(arg0, arg1 interface{}) *gomock.Call

GetManagedPrefixListEntriesPages indicates an expected call of GetManagedPrefixListEntriesPages.

func (*MockEC2APIMockRecorder) GetManagedPrefixListEntriesPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetManagedPrefixListEntriesPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

GetManagedPrefixListEntriesPagesWithContext indicates an expected call of GetManagedPrefixListEntriesPagesWithContext.

func (*MockEC2APIMockRecorder) GetManagedPrefixListEntriesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetManagedPrefixListEntriesRequest(arg0 interface{}) *gomock.Call

GetManagedPrefixListEntriesRequest indicates an expected call of GetManagedPrefixListEntriesRequest.

func (*MockEC2APIMockRecorder) GetManagedPrefixListEntriesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetManagedPrefixListEntriesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

GetManagedPrefixListEntriesWithContext indicates an expected call of GetManagedPrefixListEntriesWithContext.

func (*MockEC2APIMockRecorder) GetNetworkInsightsAccessScopeAnalysisFindings added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetNetworkInsightsAccessScopeAnalysisFindings(arg0 interface{}) *gomock.Call

GetNetworkInsightsAccessScopeAnalysisFindings indicates an expected call of GetNetworkInsightsAccessScopeAnalysisFindings.

func (*MockEC2APIMockRecorder) GetNetworkInsightsAccessScopeAnalysisFindingsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetNetworkInsightsAccessScopeAnalysisFindingsPages(arg0, arg1 interface{}) *gomock.Call

GetNetworkInsightsAccessScopeAnalysisFindingsPages indicates an expected call of GetNetworkInsightsAccessScopeAnalysisFindingsPages.

func (*MockEC2APIMockRecorder) GetNetworkInsightsAccessScopeAnalysisFindingsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetNetworkInsightsAccessScopeAnalysisFindingsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

GetNetworkInsightsAccessScopeAnalysisFindingsPagesWithContext indicates an expected call of GetNetworkInsightsAccessScopeAnalysisFindingsPagesWithContext.

func (*MockEC2APIMockRecorder) GetNetworkInsightsAccessScopeAnalysisFindingsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetNetworkInsightsAccessScopeAnalysisFindingsRequest(arg0 interface{}) *gomock.Call

GetNetworkInsightsAccessScopeAnalysisFindingsRequest indicates an expected call of GetNetworkInsightsAccessScopeAnalysisFindingsRequest.

func (*MockEC2APIMockRecorder) GetNetworkInsightsAccessScopeAnalysisFindingsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetNetworkInsightsAccessScopeAnalysisFindingsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

GetNetworkInsightsAccessScopeAnalysisFindingsWithContext indicates an expected call of GetNetworkInsightsAccessScopeAnalysisFindingsWithContext.

func (*MockEC2APIMockRecorder) GetNetworkInsightsAccessScopeContent added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetNetworkInsightsAccessScopeContent(arg0 interface{}) *gomock.Call

GetNetworkInsightsAccessScopeContent indicates an expected call of GetNetworkInsightsAccessScopeContent.

func (*MockEC2APIMockRecorder) GetNetworkInsightsAccessScopeContentRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetNetworkInsightsAccessScopeContentRequest(arg0 interface{}) *gomock.Call

GetNetworkInsightsAccessScopeContentRequest indicates an expected call of GetNetworkInsightsAccessScopeContentRequest.

func (*MockEC2APIMockRecorder) GetNetworkInsightsAccessScopeContentWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetNetworkInsightsAccessScopeContentWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

GetNetworkInsightsAccessScopeContentWithContext indicates an expected call of GetNetworkInsightsAccessScopeContentWithContext.

func (*MockEC2APIMockRecorder) GetPasswordData added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetPasswordData(arg0 interface{}) *gomock.Call

GetPasswordData indicates an expected call of GetPasswordData.

func (*MockEC2APIMockRecorder) GetPasswordDataRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetPasswordDataRequest(arg0 interface{}) *gomock.Call

GetPasswordDataRequest indicates an expected call of GetPasswordDataRequest.

func (*MockEC2APIMockRecorder) GetPasswordDataWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetPasswordDataWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

GetPasswordDataWithContext indicates an expected call of GetPasswordDataWithContext.

func (*MockEC2APIMockRecorder) GetReservedInstancesExchangeQuote added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetReservedInstancesExchangeQuote(arg0 interface{}) *gomock.Call

GetReservedInstancesExchangeQuote indicates an expected call of GetReservedInstancesExchangeQuote.

func (*MockEC2APIMockRecorder) GetReservedInstancesExchangeQuoteRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetReservedInstancesExchangeQuoteRequest(arg0 interface{}) *gomock.Call

GetReservedInstancesExchangeQuoteRequest indicates an expected call of GetReservedInstancesExchangeQuoteRequest.

func (*MockEC2APIMockRecorder) GetReservedInstancesExchangeQuoteWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetReservedInstancesExchangeQuoteWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

GetReservedInstancesExchangeQuoteWithContext indicates an expected call of GetReservedInstancesExchangeQuoteWithContext.

func (*MockEC2APIMockRecorder) GetSerialConsoleAccessStatus added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetSerialConsoleAccessStatus(arg0 interface{}) *gomock.Call

GetSerialConsoleAccessStatus indicates an expected call of GetSerialConsoleAccessStatus.

func (*MockEC2APIMockRecorder) GetSerialConsoleAccessStatusRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetSerialConsoleAccessStatusRequest(arg0 interface{}) *gomock.Call

GetSerialConsoleAccessStatusRequest indicates an expected call of GetSerialConsoleAccessStatusRequest.

func (*MockEC2APIMockRecorder) GetSerialConsoleAccessStatusWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetSerialConsoleAccessStatusWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

GetSerialConsoleAccessStatusWithContext indicates an expected call of GetSerialConsoleAccessStatusWithContext.

func (*MockEC2APIMockRecorder) GetSpotPlacementScores added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetSpotPlacementScores(arg0 interface{}) *gomock.Call

GetSpotPlacementScores indicates an expected call of GetSpotPlacementScores.

func (*MockEC2APIMockRecorder) GetSpotPlacementScoresPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetSpotPlacementScoresPages(arg0, arg1 interface{}) *gomock.Call

GetSpotPlacementScoresPages indicates an expected call of GetSpotPlacementScoresPages.

func (*MockEC2APIMockRecorder) GetSpotPlacementScoresPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetSpotPlacementScoresPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

GetSpotPlacementScoresPagesWithContext indicates an expected call of GetSpotPlacementScoresPagesWithContext.

func (*MockEC2APIMockRecorder) GetSpotPlacementScoresRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetSpotPlacementScoresRequest(arg0 interface{}) *gomock.Call

GetSpotPlacementScoresRequest indicates an expected call of GetSpotPlacementScoresRequest.

func (*MockEC2APIMockRecorder) GetSpotPlacementScoresWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetSpotPlacementScoresWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

GetSpotPlacementScoresWithContext indicates an expected call of GetSpotPlacementScoresWithContext.

func (*MockEC2APIMockRecorder) GetSubnetCidrReservations added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetSubnetCidrReservations(arg0 interface{}) *gomock.Call

GetSubnetCidrReservations indicates an expected call of GetSubnetCidrReservations.

func (*MockEC2APIMockRecorder) GetSubnetCidrReservationsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetSubnetCidrReservationsRequest(arg0 interface{}) *gomock.Call

GetSubnetCidrReservationsRequest indicates an expected call of GetSubnetCidrReservationsRequest.

func (*MockEC2APIMockRecorder) GetSubnetCidrReservationsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetSubnetCidrReservationsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

GetSubnetCidrReservationsWithContext indicates an expected call of GetSubnetCidrReservationsWithContext.

func (*MockEC2APIMockRecorder) GetTransitGatewayAttachmentPropagations added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetTransitGatewayAttachmentPropagations(arg0 interface{}) *gomock.Call

GetTransitGatewayAttachmentPropagations indicates an expected call of GetTransitGatewayAttachmentPropagations.

func (*MockEC2APIMockRecorder) GetTransitGatewayAttachmentPropagationsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetTransitGatewayAttachmentPropagationsPages(arg0, arg1 interface{}) *gomock.Call

GetTransitGatewayAttachmentPropagationsPages indicates an expected call of GetTransitGatewayAttachmentPropagationsPages.

func (*MockEC2APIMockRecorder) GetTransitGatewayAttachmentPropagationsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetTransitGatewayAttachmentPropagationsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

GetTransitGatewayAttachmentPropagationsPagesWithContext indicates an expected call of GetTransitGatewayAttachmentPropagationsPagesWithContext.

func (*MockEC2APIMockRecorder) GetTransitGatewayAttachmentPropagationsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetTransitGatewayAttachmentPropagationsRequest(arg0 interface{}) *gomock.Call

GetTransitGatewayAttachmentPropagationsRequest indicates an expected call of GetTransitGatewayAttachmentPropagationsRequest.

func (*MockEC2APIMockRecorder) GetTransitGatewayAttachmentPropagationsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetTransitGatewayAttachmentPropagationsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

GetTransitGatewayAttachmentPropagationsWithContext indicates an expected call of GetTransitGatewayAttachmentPropagationsWithContext.

func (*MockEC2APIMockRecorder) GetTransitGatewayMulticastDomainAssociations added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetTransitGatewayMulticastDomainAssociations(arg0 interface{}) *gomock.Call

GetTransitGatewayMulticastDomainAssociations indicates an expected call of GetTransitGatewayMulticastDomainAssociations.

func (*MockEC2APIMockRecorder) GetTransitGatewayMulticastDomainAssociationsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetTransitGatewayMulticastDomainAssociationsPages(arg0, arg1 interface{}) *gomock.Call

GetTransitGatewayMulticastDomainAssociationsPages indicates an expected call of GetTransitGatewayMulticastDomainAssociationsPages.

func (*MockEC2APIMockRecorder) GetTransitGatewayMulticastDomainAssociationsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetTransitGatewayMulticastDomainAssociationsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

GetTransitGatewayMulticastDomainAssociationsPagesWithContext indicates an expected call of GetTransitGatewayMulticastDomainAssociationsPagesWithContext.

func (*MockEC2APIMockRecorder) GetTransitGatewayMulticastDomainAssociationsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetTransitGatewayMulticastDomainAssociationsRequest(arg0 interface{}) *gomock.Call

GetTransitGatewayMulticastDomainAssociationsRequest indicates an expected call of GetTransitGatewayMulticastDomainAssociationsRequest.

func (*MockEC2APIMockRecorder) GetTransitGatewayMulticastDomainAssociationsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetTransitGatewayMulticastDomainAssociationsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

GetTransitGatewayMulticastDomainAssociationsWithContext indicates an expected call of GetTransitGatewayMulticastDomainAssociationsWithContext.

func (*MockEC2APIMockRecorder) GetTransitGatewayPolicyTableAssociations added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetTransitGatewayPolicyTableAssociations(arg0 interface{}) *gomock.Call

GetTransitGatewayPolicyTableAssociations indicates an expected call of GetTransitGatewayPolicyTableAssociations.

func (*MockEC2APIMockRecorder) GetTransitGatewayPolicyTableAssociationsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetTransitGatewayPolicyTableAssociationsPages(arg0, arg1 interface{}) *gomock.Call

GetTransitGatewayPolicyTableAssociationsPages indicates an expected call of GetTransitGatewayPolicyTableAssociationsPages.

func (*MockEC2APIMockRecorder) GetTransitGatewayPolicyTableAssociationsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetTransitGatewayPolicyTableAssociationsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

GetTransitGatewayPolicyTableAssociationsPagesWithContext indicates an expected call of GetTransitGatewayPolicyTableAssociationsPagesWithContext.

func (*MockEC2APIMockRecorder) GetTransitGatewayPolicyTableAssociationsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetTransitGatewayPolicyTableAssociationsRequest(arg0 interface{}) *gomock.Call

GetTransitGatewayPolicyTableAssociationsRequest indicates an expected call of GetTransitGatewayPolicyTableAssociationsRequest.

func (*MockEC2APIMockRecorder) GetTransitGatewayPolicyTableAssociationsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetTransitGatewayPolicyTableAssociationsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

GetTransitGatewayPolicyTableAssociationsWithContext indicates an expected call of GetTransitGatewayPolicyTableAssociationsWithContext.

func (*MockEC2APIMockRecorder) GetTransitGatewayPolicyTableEntries added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetTransitGatewayPolicyTableEntries(arg0 interface{}) *gomock.Call

GetTransitGatewayPolicyTableEntries indicates an expected call of GetTransitGatewayPolicyTableEntries.

func (*MockEC2APIMockRecorder) GetTransitGatewayPolicyTableEntriesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetTransitGatewayPolicyTableEntriesRequest(arg0 interface{}) *gomock.Call

GetTransitGatewayPolicyTableEntriesRequest indicates an expected call of GetTransitGatewayPolicyTableEntriesRequest.

func (*MockEC2APIMockRecorder) GetTransitGatewayPolicyTableEntriesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetTransitGatewayPolicyTableEntriesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

GetTransitGatewayPolicyTableEntriesWithContext indicates an expected call of GetTransitGatewayPolicyTableEntriesWithContext.

func (*MockEC2APIMockRecorder) GetTransitGatewayPrefixListReferences added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetTransitGatewayPrefixListReferences(arg0 interface{}) *gomock.Call

GetTransitGatewayPrefixListReferences indicates an expected call of GetTransitGatewayPrefixListReferences.

func (*MockEC2APIMockRecorder) GetTransitGatewayPrefixListReferencesPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetTransitGatewayPrefixListReferencesPages(arg0, arg1 interface{}) *gomock.Call

GetTransitGatewayPrefixListReferencesPages indicates an expected call of GetTransitGatewayPrefixListReferencesPages.

func (*MockEC2APIMockRecorder) GetTransitGatewayPrefixListReferencesPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetTransitGatewayPrefixListReferencesPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

GetTransitGatewayPrefixListReferencesPagesWithContext indicates an expected call of GetTransitGatewayPrefixListReferencesPagesWithContext.

func (*MockEC2APIMockRecorder) GetTransitGatewayPrefixListReferencesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetTransitGatewayPrefixListReferencesRequest(arg0 interface{}) *gomock.Call

GetTransitGatewayPrefixListReferencesRequest indicates an expected call of GetTransitGatewayPrefixListReferencesRequest.

func (*MockEC2APIMockRecorder) GetTransitGatewayPrefixListReferencesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetTransitGatewayPrefixListReferencesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

GetTransitGatewayPrefixListReferencesWithContext indicates an expected call of GetTransitGatewayPrefixListReferencesWithContext.

func (*MockEC2APIMockRecorder) GetTransitGatewayRouteTableAssociations added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetTransitGatewayRouteTableAssociations(arg0 interface{}) *gomock.Call

GetTransitGatewayRouteTableAssociations indicates an expected call of GetTransitGatewayRouteTableAssociations.

func (*MockEC2APIMockRecorder) GetTransitGatewayRouteTableAssociationsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetTransitGatewayRouteTableAssociationsPages(arg0, arg1 interface{}) *gomock.Call

GetTransitGatewayRouteTableAssociationsPages indicates an expected call of GetTransitGatewayRouteTableAssociationsPages.

func (*MockEC2APIMockRecorder) GetTransitGatewayRouteTableAssociationsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetTransitGatewayRouteTableAssociationsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

GetTransitGatewayRouteTableAssociationsPagesWithContext indicates an expected call of GetTransitGatewayRouteTableAssociationsPagesWithContext.

func (*MockEC2APIMockRecorder) GetTransitGatewayRouteTableAssociationsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetTransitGatewayRouteTableAssociationsRequest(arg0 interface{}) *gomock.Call

GetTransitGatewayRouteTableAssociationsRequest indicates an expected call of GetTransitGatewayRouteTableAssociationsRequest.

func (*MockEC2APIMockRecorder) GetTransitGatewayRouteTableAssociationsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetTransitGatewayRouteTableAssociationsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

GetTransitGatewayRouteTableAssociationsWithContext indicates an expected call of GetTransitGatewayRouteTableAssociationsWithContext.

func (*MockEC2APIMockRecorder) GetTransitGatewayRouteTablePropagations added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetTransitGatewayRouteTablePropagations(arg0 interface{}) *gomock.Call

GetTransitGatewayRouteTablePropagations indicates an expected call of GetTransitGatewayRouteTablePropagations.

func (*MockEC2APIMockRecorder) GetTransitGatewayRouteTablePropagationsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetTransitGatewayRouteTablePropagationsPages(arg0, arg1 interface{}) *gomock.Call

GetTransitGatewayRouteTablePropagationsPages indicates an expected call of GetTransitGatewayRouteTablePropagationsPages.

func (*MockEC2APIMockRecorder) GetTransitGatewayRouteTablePropagationsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetTransitGatewayRouteTablePropagationsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

GetTransitGatewayRouteTablePropagationsPagesWithContext indicates an expected call of GetTransitGatewayRouteTablePropagationsPagesWithContext.

func (*MockEC2APIMockRecorder) GetTransitGatewayRouteTablePropagationsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetTransitGatewayRouteTablePropagationsRequest(arg0 interface{}) *gomock.Call

GetTransitGatewayRouteTablePropagationsRequest indicates an expected call of GetTransitGatewayRouteTablePropagationsRequest.

func (*MockEC2APIMockRecorder) GetTransitGatewayRouteTablePropagationsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetTransitGatewayRouteTablePropagationsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

GetTransitGatewayRouteTablePropagationsWithContext indicates an expected call of GetTransitGatewayRouteTablePropagationsWithContext.

func (*MockEC2APIMockRecorder) GetVerifiedAccessEndpointPolicy added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetVerifiedAccessEndpointPolicy(arg0 interface{}) *gomock.Call

GetVerifiedAccessEndpointPolicy indicates an expected call of GetVerifiedAccessEndpointPolicy.

func (*MockEC2APIMockRecorder) GetVerifiedAccessEndpointPolicyRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetVerifiedAccessEndpointPolicyRequest(arg0 interface{}) *gomock.Call

GetVerifiedAccessEndpointPolicyRequest indicates an expected call of GetVerifiedAccessEndpointPolicyRequest.

func (*MockEC2APIMockRecorder) GetVerifiedAccessEndpointPolicyWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetVerifiedAccessEndpointPolicyWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

GetVerifiedAccessEndpointPolicyWithContext indicates an expected call of GetVerifiedAccessEndpointPolicyWithContext.

func (*MockEC2APIMockRecorder) GetVerifiedAccessGroupPolicy added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetVerifiedAccessGroupPolicy(arg0 interface{}) *gomock.Call

GetVerifiedAccessGroupPolicy indicates an expected call of GetVerifiedAccessGroupPolicy.

func (*MockEC2APIMockRecorder) GetVerifiedAccessGroupPolicyRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetVerifiedAccessGroupPolicyRequest(arg0 interface{}) *gomock.Call

GetVerifiedAccessGroupPolicyRequest indicates an expected call of GetVerifiedAccessGroupPolicyRequest.

func (*MockEC2APIMockRecorder) GetVerifiedAccessGroupPolicyWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetVerifiedAccessGroupPolicyWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

GetVerifiedAccessGroupPolicyWithContext indicates an expected call of GetVerifiedAccessGroupPolicyWithContext.

func (*MockEC2APIMockRecorder) GetVpnConnectionDeviceSampleConfiguration added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetVpnConnectionDeviceSampleConfiguration(arg0 interface{}) *gomock.Call

GetVpnConnectionDeviceSampleConfiguration indicates an expected call of GetVpnConnectionDeviceSampleConfiguration.

func (*MockEC2APIMockRecorder) GetVpnConnectionDeviceSampleConfigurationRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetVpnConnectionDeviceSampleConfigurationRequest(arg0 interface{}) *gomock.Call

GetVpnConnectionDeviceSampleConfigurationRequest indicates an expected call of GetVpnConnectionDeviceSampleConfigurationRequest.

func (*MockEC2APIMockRecorder) GetVpnConnectionDeviceSampleConfigurationWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetVpnConnectionDeviceSampleConfigurationWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

GetVpnConnectionDeviceSampleConfigurationWithContext indicates an expected call of GetVpnConnectionDeviceSampleConfigurationWithContext.

func (*MockEC2APIMockRecorder) GetVpnConnectionDeviceTypes added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetVpnConnectionDeviceTypes(arg0 interface{}) *gomock.Call

GetVpnConnectionDeviceTypes indicates an expected call of GetVpnConnectionDeviceTypes.

func (*MockEC2APIMockRecorder) GetVpnConnectionDeviceTypesPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetVpnConnectionDeviceTypesPages(arg0, arg1 interface{}) *gomock.Call

GetVpnConnectionDeviceTypesPages indicates an expected call of GetVpnConnectionDeviceTypesPages.

func (*MockEC2APIMockRecorder) GetVpnConnectionDeviceTypesPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetVpnConnectionDeviceTypesPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

GetVpnConnectionDeviceTypesPagesWithContext indicates an expected call of GetVpnConnectionDeviceTypesPagesWithContext.

func (*MockEC2APIMockRecorder) GetVpnConnectionDeviceTypesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetVpnConnectionDeviceTypesRequest(arg0 interface{}) *gomock.Call

GetVpnConnectionDeviceTypesRequest indicates an expected call of GetVpnConnectionDeviceTypesRequest.

func (*MockEC2APIMockRecorder) GetVpnConnectionDeviceTypesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetVpnConnectionDeviceTypesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

GetVpnConnectionDeviceTypesWithContext indicates an expected call of GetVpnConnectionDeviceTypesWithContext.

func (*MockEC2APIMockRecorder) GetVpnTunnelReplacementStatus added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetVpnTunnelReplacementStatus(arg0 interface{}) *gomock.Call

GetVpnTunnelReplacementStatus indicates an expected call of GetVpnTunnelReplacementStatus.

func (*MockEC2APIMockRecorder) GetVpnTunnelReplacementStatusRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetVpnTunnelReplacementStatusRequest(arg0 interface{}) *gomock.Call

GetVpnTunnelReplacementStatusRequest indicates an expected call of GetVpnTunnelReplacementStatusRequest.

func (*MockEC2APIMockRecorder) GetVpnTunnelReplacementStatusWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) GetVpnTunnelReplacementStatusWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

GetVpnTunnelReplacementStatusWithContext indicates an expected call of GetVpnTunnelReplacementStatusWithContext.

func (*MockEC2APIMockRecorder) ImportClientVpnClientCertificateRevocationList added in v1.19.0

func (mr *MockEC2APIMockRecorder) ImportClientVpnClientCertificateRevocationList(arg0 interface{}) *gomock.Call

ImportClientVpnClientCertificateRevocationList indicates an expected call of ImportClientVpnClientCertificateRevocationList.

func (*MockEC2APIMockRecorder) ImportClientVpnClientCertificateRevocationListRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ImportClientVpnClientCertificateRevocationListRequest(arg0 interface{}) *gomock.Call

ImportClientVpnClientCertificateRevocationListRequest indicates an expected call of ImportClientVpnClientCertificateRevocationListRequest.

func (*MockEC2APIMockRecorder) ImportClientVpnClientCertificateRevocationListWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ImportClientVpnClientCertificateRevocationListWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ImportClientVpnClientCertificateRevocationListWithContext indicates an expected call of ImportClientVpnClientCertificateRevocationListWithContext.

func (*MockEC2APIMockRecorder) ImportImage added in v1.19.0

func (mr *MockEC2APIMockRecorder) ImportImage(arg0 interface{}) *gomock.Call

ImportImage indicates an expected call of ImportImage.

func (*MockEC2APIMockRecorder) ImportImageRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ImportImageRequest(arg0 interface{}) *gomock.Call

ImportImageRequest indicates an expected call of ImportImageRequest.

func (*MockEC2APIMockRecorder) ImportImageWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ImportImageWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ImportImageWithContext indicates an expected call of ImportImageWithContext.

func (*MockEC2APIMockRecorder) ImportInstance added in v1.19.0

func (mr *MockEC2APIMockRecorder) ImportInstance(arg0 interface{}) *gomock.Call

ImportInstance indicates an expected call of ImportInstance.

func (*MockEC2APIMockRecorder) ImportInstanceRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ImportInstanceRequest(arg0 interface{}) *gomock.Call

ImportInstanceRequest indicates an expected call of ImportInstanceRequest.

func (*MockEC2APIMockRecorder) ImportInstanceWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ImportInstanceWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ImportInstanceWithContext indicates an expected call of ImportInstanceWithContext.

func (*MockEC2APIMockRecorder) ImportKeyPair added in v1.19.0

func (mr *MockEC2APIMockRecorder) ImportKeyPair(arg0 interface{}) *gomock.Call

ImportKeyPair indicates an expected call of ImportKeyPair.

func (*MockEC2APIMockRecorder) ImportKeyPairRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ImportKeyPairRequest(arg0 interface{}) *gomock.Call

ImportKeyPairRequest indicates an expected call of ImportKeyPairRequest.

func (*MockEC2APIMockRecorder) ImportKeyPairWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ImportKeyPairWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ImportKeyPairWithContext indicates an expected call of ImportKeyPairWithContext.

func (*MockEC2APIMockRecorder) ImportSnapshot added in v1.19.0

func (mr *MockEC2APIMockRecorder) ImportSnapshot(arg0 interface{}) *gomock.Call

ImportSnapshot indicates an expected call of ImportSnapshot.

func (*MockEC2APIMockRecorder) ImportSnapshotRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ImportSnapshotRequest(arg0 interface{}) *gomock.Call

ImportSnapshotRequest indicates an expected call of ImportSnapshotRequest.

func (*MockEC2APIMockRecorder) ImportSnapshotWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ImportSnapshotWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ImportSnapshotWithContext indicates an expected call of ImportSnapshotWithContext.

func (*MockEC2APIMockRecorder) ImportVolume added in v1.19.0

func (mr *MockEC2APIMockRecorder) ImportVolume(arg0 interface{}) *gomock.Call

ImportVolume indicates an expected call of ImportVolume.

func (*MockEC2APIMockRecorder) ImportVolumeRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ImportVolumeRequest(arg0 interface{}) *gomock.Call

ImportVolumeRequest indicates an expected call of ImportVolumeRequest.

func (*MockEC2APIMockRecorder) ImportVolumeWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ImportVolumeWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ImportVolumeWithContext indicates an expected call of ImportVolumeWithContext.

func (*MockEC2APIMockRecorder) ListImagesInRecycleBin added in v1.19.0

func (mr *MockEC2APIMockRecorder) ListImagesInRecycleBin(arg0 interface{}) *gomock.Call

ListImagesInRecycleBin indicates an expected call of ListImagesInRecycleBin.

func (*MockEC2APIMockRecorder) ListImagesInRecycleBinPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) ListImagesInRecycleBinPages(arg0, arg1 interface{}) *gomock.Call

ListImagesInRecycleBinPages indicates an expected call of ListImagesInRecycleBinPages.

func (*MockEC2APIMockRecorder) ListImagesInRecycleBinPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ListImagesInRecycleBinPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

ListImagesInRecycleBinPagesWithContext indicates an expected call of ListImagesInRecycleBinPagesWithContext.

func (*MockEC2APIMockRecorder) ListImagesInRecycleBinRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ListImagesInRecycleBinRequest(arg0 interface{}) *gomock.Call

ListImagesInRecycleBinRequest indicates an expected call of ListImagesInRecycleBinRequest.

func (*MockEC2APIMockRecorder) ListImagesInRecycleBinWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ListImagesInRecycleBinWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ListImagesInRecycleBinWithContext indicates an expected call of ListImagesInRecycleBinWithContext.

func (*MockEC2APIMockRecorder) ListSnapshotsInRecycleBin added in v1.19.0

func (mr *MockEC2APIMockRecorder) ListSnapshotsInRecycleBin(arg0 interface{}) *gomock.Call

ListSnapshotsInRecycleBin indicates an expected call of ListSnapshotsInRecycleBin.

func (*MockEC2APIMockRecorder) ListSnapshotsInRecycleBinPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) ListSnapshotsInRecycleBinPages(arg0, arg1 interface{}) *gomock.Call

ListSnapshotsInRecycleBinPages indicates an expected call of ListSnapshotsInRecycleBinPages.

func (*MockEC2APIMockRecorder) ListSnapshotsInRecycleBinPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ListSnapshotsInRecycleBinPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

ListSnapshotsInRecycleBinPagesWithContext indicates an expected call of ListSnapshotsInRecycleBinPagesWithContext.

func (*MockEC2APIMockRecorder) ListSnapshotsInRecycleBinRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ListSnapshotsInRecycleBinRequest(arg0 interface{}) *gomock.Call

ListSnapshotsInRecycleBinRequest indicates an expected call of ListSnapshotsInRecycleBinRequest.

func (*MockEC2APIMockRecorder) ListSnapshotsInRecycleBinWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ListSnapshotsInRecycleBinWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ListSnapshotsInRecycleBinWithContext indicates an expected call of ListSnapshotsInRecycleBinWithContext.

func (*MockEC2APIMockRecorder) ModifyAddressAttribute added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyAddressAttribute(arg0 interface{}) *gomock.Call

ModifyAddressAttribute indicates an expected call of ModifyAddressAttribute.

func (*MockEC2APIMockRecorder) ModifyAddressAttributeRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyAddressAttributeRequest(arg0 interface{}) *gomock.Call

ModifyAddressAttributeRequest indicates an expected call of ModifyAddressAttributeRequest.

func (*MockEC2APIMockRecorder) ModifyAddressAttributeWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyAddressAttributeWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyAddressAttributeWithContext indicates an expected call of ModifyAddressAttributeWithContext.

func (*MockEC2APIMockRecorder) ModifyAvailabilityZoneGroup added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyAvailabilityZoneGroup(arg0 interface{}) *gomock.Call

ModifyAvailabilityZoneGroup indicates an expected call of ModifyAvailabilityZoneGroup.

func (*MockEC2APIMockRecorder) ModifyAvailabilityZoneGroupRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyAvailabilityZoneGroupRequest(arg0 interface{}) *gomock.Call

ModifyAvailabilityZoneGroupRequest indicates an expected call of ModifyAvailabilityZoneGroupRequest.

func (*MockEC2APIMockRecorder) ModifyAvailabilityZoneGroupWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyAvailabilityZoneGroupWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyAvailabilityZoneGroupWithContext indicates an expected call of ModifyAvailabilityZoneGroupWithContext.

func (*MockEC2APIMockRecorder) ModifyCapacityReservation added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyCapacityReservation(arg0 interface{}) *gomock.Call

ModifyCapacityReservation indicates an expected call of ModifyCapacityReservation.

func (*MockEC2APIMockRecorder) ModifyCapacityReservationFleet added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyCapacityReservationFleet(arg0 interface{}) *gomock.Call

ModifyCapacityReservationFleet indicates an expected call of ModifyCapacityReservationFleet.

func (*MockEC2APIMockRecorder) ModifyCapacityReservationFleetRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyCapacityReservationFleetRequest(arg0 interface{}) *gomock.Call

ModifyCapacityReservationFleetRequest indicates an expected call of ModifyCapacityReservationFleetRequest.

func (*MockEC2APIMockRecorder) ModifyCapacityReservationFleetWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyCapacityReservationFleetWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyCapacityReservationFleetWithContext indicates an expected call of ModifyCapacityReservationFleetWithContext.

func (*MockEC2APIMockRecorder) ModifyCapacityReservationRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyCapacityReservationRequest(arg0 interface{}) *gomock.Call

ModifyCapacityReservationRequest indicates an expected call of ModifyCapacityReservationRequest.

func (*MockEC2APIMockRecorder) ModifyCapacityReservationWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyCapacityReservationWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyCapacityReservationWithContext indicates an expected call of ModifyCapacityReservationWithContext.

func (*MockEC2APIMockRecorder) ModifyClientVpnEndpoint added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyClientVpnEndpoint(arg0 interface{}) *gomock.Call

ModifyClientVpnEndpoint indicates an expected call of ModifyClientVpnEndpoint.

func (*MockEC2APIMockRecorder) ModifyClientVpnEndpointRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyClientVpnEndpointRequest(arg0 interface{}) *gomock.Call

ModifyClientVpnEndpointRequest indicates an expected call of ModifyClientVpnEndpointRequest.

func (*MockEC2APIMockRecorder) ModifyClientVpnEndpointWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyClientVpnEndpointWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyClientVpnEndpointWithContext indicates an expected call of ModifyClientVpnEndpointWithContext.

func (*MockEC2APIMockRecorder) ModifyDefaultCreditSpecification added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyDefaultCreditSpecification(arg0 interface{}) *gomock.Call

ModifyDefaultCreditSpecification indicates an expected call of ModifyDefaultCreditSpecification.

func (*MockEC2APIMockRecorder) ModifyDefaultCreditSpecificationRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyDefaultCreditSpecificationRequest(arg0 interface{}) *gomock.Call

ModifyDefaultCreditSpecificationRequest indicates an expected call of ModifyDefaultCreditSpecificationRequest.

func (*MockEC2APIMockRecorder) ModifyDefaultCreditSpecificationWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyDefaultCreditSpecificationWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyDefaultCreditSpecificationWithContext indicates an expected call of ModifyDefaultCreditSpecificationWithContext.

func (*MockEC2APIMockRecorder) ModifyEbsDefaultKmsKeyId added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyEbsDefaultKmsKeyId(arg0 interface{}) *gomock.Call

ModifyEbsDefaultKmsKeyId indicates an expected call of ModifyEbsDefaultKmsKeyId.

func (*MockEC2APIMockRecorder) ModifyEbsDefaultKmsKeyIdRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyEbsDefaultKmsKeyIdRequest(arg0 interface{}) *gomock.Call

ModifyEbsDefaultKmsKeyIdRequest indicates an expected call of ModifyEbsDefaultKmsKeyIdRequest.

func (*MockEC2APIMockRecorder) ModifyEbsDefaultKmsKeyIdWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyEbsDefaultKmsKeyIdWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyEbsDefaultKmsKeyIdWithContext indicates an expected call of ModifyEbsDefaultKmsKeyIdWithContext.

func (*MockEC2APIMockRecorder) ModifyFleet added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyFleet(arg0 interface{}) *gomock.Call

ModifyFleet indicates an expected call of ModifyFleet.

func (*MockEC2APIMockRecorder) ModifyFleetRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyFleetRequest(arg0 interface{}) *gomock.Call

ModifyFleetRequest indicates an expected call of ModifyFleetRequest.

func (*MockEC2APIMockRecorder) ModifyFleetWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyFleetWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyFleetWithContext indicates an expected call of ModifyFleetWithContext.

func (*MockEC2APIMockRecorder) ModifyFpgaImageAttribute added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyFpgaImageAttribute(arg0 interface{}) *gomock.Call

ModifyFpgaImageAttribute indicates an expected call of ModifyFpgaImageAttribute.

func (*MockEC2APIMockRecorder) ModifyFpgaImageAttributeRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyFpgaImageAttributeRequest(arg0 interface{}) *gomock.Call

ModifyFpgaImageAttributeRequest indicates an expected call of ModifyFpgaImageAttributeRequest.

func (*MockEC2APIMockRecorder) ModifyFpgaImageAttributeWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyFpgaImageAttributeWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyFpgaImageAttributeWithContext indicates an expected call of ModifyFpgaImageAttributeWithContext.

func (*MockEC2APIMockRecorder) ModifyHosts added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyHosts(arg0 interface{}) *gomock.Call

ModifyHosts indicates an expected call of ModifyHosts.

func (*MockEC2APIMockRecorder) ModifyHostsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyHostsRequest(arg0 interface{}) *gomock.Call

ModifyHostsRequest indicates an expected call of ModifyHostsRequest.

func (*MockEC2APIMockRecorder) ModifyHostsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyHostsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyHostsWithContext indicates an expected call of ModifyHostsWithContext.

func (*MockEC2APIMockRecorder) ModifyIdFormat added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyIdFormat(arg0 interface{}) *gomock.Call

ModifyIdFormat indicates an expected call of ModifyIdFormat.

func (*MockEC2APIMockRecorder) ModifyIdFormatRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyIdFormatRequest(arg0 interface{}) *gomock.Call

ModifyIdFormatRequest indicates an expected call of ModifyIdFormatRequest.

func (*MockEC2APIMockRecorder) ModifyIdFormatWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyIdFormatWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyIdFormatWithContext indicates an expected call of ModifyIdFormatWithContext.

func (*MockEC2APIMockRecorder) ModifyIdentityIdFormat added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyIdentityIdFormat(arg0 interface{}) *gomock.Call

ModifyIdentityIdFormat indicates an expected call of ModifyIdentityIdFormat.

func (*MockEC2APIMockRecorder) ModifyIdentityIdFormatRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyIdentityIdFormatRequest(arg0 interface{}) *gomock.Call

ModifyIdentityIdFormatRequest indicates an expected call of ModifyIdentityIdFormatRequest.

func (*MockEC2APIMockRecorder) ModifyIdentityIdFormatWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyIdentityIdFormatWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyIdentityIdFormatWithContext indicates an expected call of ModifyIdentityIdFormatWithContext.

func (*MockEC2APIMockRecorder) ModifyImageAttribute added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyImageAttribute(arg0 interface{}) *gomock.Call

ModifyImageAttribute indicates an expected call of ModifyImageAttribute.

func (*MockEC2APIMockRecorder) ModifyImageAttributeRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyImageAttributeRequest(arg0 interface{}) *gomock.Call

ModifyImageAttributeRequest indicates an expected call of ModifyImageAttributeRequest.

func (*MockEC2APIMockRecorder) ModifyImageAttributeWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyImageAttributeWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyImageAttributeWithContext indicates an expected call of ModifyImageAttributeWithContext.

func (*MockEC2APIMockRecorder) ModifyInstanceAttribute added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyInstanceAttribute(arg0 interface{}) *gomock.Call

ModifyInstanceAttribute indicates an expected call of ModifyInstanceAttribute.

func (*MockEC2APIMockRecorder) ModifyInstanceAttributeRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyInstanceAttributeRequest(arg0 interface{}) *gomock.Call

ModifyInstanceAttributeRequest indicates an expected call of ModifyInstanceAttributeRequest.

func (*MockEC2APIMockRecorder) ModifyInstanceAttributeWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyInstanceAttributeWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyInstanceAttributeWithContext indicates an expected call of ModifyInstanceAttributeWithContext.

func (*MockEC2APIMockRecorder) ModifyInstanceCapacityReservationAttributes added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyInstanceCapacityReservationAttributes(arg0 interface{}) *gomock.Call

ModifyInstanceCapacityReservationAttributes indicates an expected call of ModifyInstanceCapacityReservationAttributes.

func (*MockEC2APIMockRecorder) ModifyInstanceCapacityReservationAttributesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyInstanceCapacityReservationAttributesRequest(arg0 interface{}) *gomock.Call

ModifyInstanceCapacityReservationAttributesRequest indicates an expected call of ModifyInstanceCapacityReservationAttributesRequest.

func (*MockEC2APIMockRecorder) ModifyInstanceCapacityReservationAttributesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyInstanceCapacityReservationAttributesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyInstanceCapacityReservationAttributesWithContext indicates an expected call of ModifyInstanceCapacityReservationAttributesWithContext.

func (*MockEC2APIMockRecorder) ModifyInstanceCreditSpecification added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyInstanceCreditSpecification(arg0 interface{}) *gomock.Call

ModifyInstanceCreditSpecification indicates an expected call of ModifyInstanceCreditSpecification.

func (*MockEC2APIMockRecorder) ModifyInstanceCreditSpecificationRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyInstanceCreditSpecificationRequest(arg0 interface{}) *gomock.Call

ModifyInstanceCreditSpecificationRequest indicates an expected call of ModifyInstanceCreditSpecificationRequest.

func (*MockEC2APIMockRecorder) ModifyInstanceCreditSpecificationWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyInstanceCreditSpecificationWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyInstanceCreditSpecificationWithContext indicates an expected call of ModifyInstanceCreditSpecificationWithContext.

func (*MockEC2APIMockRecorder) ModifyInstanceEventStartTime added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyInstanceEventStartTime(arg0 interface{}) *gomock.Call

ModifyInstanceEventStartTime indicates an expected call of ModifyInstanceEventStartTime.

func (*MockEC2APIMockRecorder) ModifyInstanceEventStartTimeRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyInstanceEventStartTimeRequest(arg0 interface{}) *gomock.Call

ModifyInstanceEventStartTimeRequest indicates an expected call of ModifyInstanceEventStartTimeRequest.

func (*MockEC2APIMockRecorder) ModifyInstanceEventStartTimeWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyInstanceEventStartTimeWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyInstanceEventStartTimeWithContext indicates an expected call of ModifyInstanceEventStartTimeWithContext.

func (*MockEC2APIMockRecorder) ModifyInstanceEventWindow added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyInstanceEventWindow(arg0 interface{}) *gomock.Call

ModifyInstanceEventWindow indicates an expected call of ModifyInstanceEventWindow.

func (*MockEC2APIMockRecorder) ModifyInstanceEventWindowRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyInstanceEventWindowRequest(arg0 interface{}) *gomock.Call

ModifyInstanceEventWindowRequest indicates an expected call of ModifyInstanceEventWindowRequest.

func (*MockEC2APIMockRecorder) ModifyInstanceEventWindowWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyInstanceEventWindowWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyInstanceEventWindowWithContext indicates an expected call of ModifyInstanceEventWindowWithContext.

func (*MockEC2APIMockRecorder) ModifyInstanceMaintenanceOptions added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyInstanceMaintenanceOptions(arg0 interface{}) *gomock.Call

ModifyInstanceMaintenanceOptions indicates an expected call of ModifyInstanceMaintenanceOptions.

func (*MockEC2APIMockRecorder) ModifyInstanceMaintenanceOptionsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyInstanceMaintenanceOptionsRequest(arg0 interface{}) *gomock.Call

ModifyInstanceMaintenanceOptionsRequest indicates an expected call of ModifyInstanceMaintenanceOptionsRequest.

func (*MockEC2APIMockRecorder) ModifyInstanceMaintenanceOptionsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyInstanceMaintenanceOptionsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyInstanceMaintenanceOptionsWithContext indicates an expected call of ModifyInstanceMaintenanceOptionsWithContext.

func (*MockEC2APIMockRecorder) ModifyInstanceMetadataOptions added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyInstanceMetadataOptions(arg0 interface{}) *gomock.Call

ModifyInstanceMetadataOptions indicates an expected call of ModifyInstanceMetadataOptions.

func (*MockEC2APIMockRecorder) ModifyInstanceMetadataOptionsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyInstanceMetadataOptionsRequest(arg0 interface{}) *gomock.Call

ModifyInstanceMetadataOptionsRequest indicates an expected call of ModifyInstanceMetadataOptionsRequest.

func (*MockEC2APIMockRecorder) ModifyInstanceMetadataOptionsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyInstanceMetadataOptionsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyInstanceMetadataOptionsWithContext indicates an expected call of ModifyInstanceMetadataOptionsWithContext.

func (*MockEC2APIMockRecorder) ModifyInstancePlacement added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyInstancePlacement(arg0 interface{}) *gomock.Call

ModifyInstancePlacement indicates an expected call of ModifyInstancePlacement.

func (*MockEC2APIMockRecorder) ModifyInstancePlacementRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyInstancePlacementRequest(arg0 interface{}) *gomock.Call

ModifyInstancePlacementRequest indicates an expected call of ModifyInstancePlacementRequest.

func (*MockEC2APIMockRecorder) ModifyInstancePlacementWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyInstancePlacementWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyInstancePlacementWithContext indicates an expected call of ModifyInstancePlacementWithContext.

func (*MockEC2APIMockRecorder) ModifyIpam added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyIpam(arg0 interface{}) *gomock.Call

ModifyIpam indicates an expected call of ModifyIpam.

func (*MockEC2APIMockRecorder) ModifyIpamPool added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyIpamPool(arg0 interface{}) *gomock.Call

ModifyIpamPool indicates an expected call of ModifyIpamPool.

func (*MockEC2APIMockRecorder) ModifyIpamPoolRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyIpamPoolRequest(arg0 interface{}) *gomock.Call

ModifyIpamPoolRequest indicates an expected call of ModifyIpamPoolRequest.

func (*MockEC2APIMockRecorder) ModifyIpamPoolWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyIpamPoolWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyIpamPoolWithContext indicates an expected call of ModifyIpamPoolWithContext.

func (*MockEC2APIMockRecorder) ModifyIpamRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyIpamRequest(arg0 interface{}) *gomock.Call

ModifyIpamRequest indicates an expected call of ModifyIpamRequest.

func (*MockEC2APIMockRecorder) ModifyIpamResourceCidr added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyIpamResourceCidr(arg0 interface{}) *gomock.Call

ModifyIpamResourceCidr indicates an expected call of ModifyIpamResourceCidr.

func (*MockEC2APIMockRecorder) ModifyIpamResourceCidrRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyIpamResourceCidrRequest(arg0 interface{}) *gomock.Call

ModifyIpamResourceCidrRequest indicates an expected call of ModifyIpamResourceCidrRequest.

func (*MockEC2APIMockRecorder) ModifyIpamResourceCidrWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyIpamResourceCidrWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyIpamResourceCidrWithContext indicates an expected call of ModifyIpamResourceCidrWithContext.

func (*MockEC2APIMockRecorder) ModifyIpamResourceDiscovery added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyIpamResourceDiscovery(arg0 interface{}) *gomock.Call

ModifyIpamResourceDiscovery indicates an expected call of ModifyIpamResourceDiscovery.

func (*MockEC2APIMockRecorder) ModifyIpamResourceDiscoveryRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyIpamResourceDiscoveryRequest(arg0 interface{}) *gomock.Call

ModifyIpamResourceDiscoveryRequest indicates an expected call of ModifyIpamResourceDiscoveryRequest.

func (*MockEC2APIMockRecorder) ModifyIpamResourceDiscoveryWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyIpamResourceDiscoveryWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyIpamResourceDiscoveryWithContext indicates an expected call of ModifyIpamResourceDiscoveryWithContext.

func (*MockEC2APIMockRecorder) ModifyIpamScope added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyIpamScope(arg0 interface{}) *gomock.Call

ModifyIpamScope indicates an expected call of ModifyIpamScope.

func (*MockEC2APIMockRecorder) ModifyIpamScopeRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyIpamScopeRequest(arg0 interface{}) *gomock.Call

ModifyIpamScopeRequest indicates an expected call of ModifyIpamScopeRequest.

func (*MockEC2APIMockRecorder) ModifyIpamScopeWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyIpamScopeWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyIpamScopeWithContext indicates an expected call of ModifyIpamScopeWithContext.

func (*MockEC2APIMockRecorder) ModifyIpamWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyIpamWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyIpamWithContext indicates an expected call of ModifyIpamWithContext.

func (*MockEC2APIMockRecorder) ModifyLaunchTemplate added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyLaunchTemplate(arg0 interface{}) *gomock.Call

ModifyLaunchTemplate indicates an expected call of ModifyLaunchTemplate.

func (*MockEC2APIMockRecorder) ModifyLaunchTemplateRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyLaunchTemplateRequest(arg0 interface{}) *gomock.Call

ModifyLaunchTemplateRequest indicates an expected call of ModifyLaunchTemplateRequest.

func (*MockEC2APIMockRecorder) ModifyLaunchTemplateWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyLaunchTemplateWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyLaunchTemplateWithContext indicates an expected call of ModifyLaunchTemplateWithContext.

func (*MockEC2APIMockRecorder) ModifyLocalGatewayRoute added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyLocalGatewayRoute(arg0 interface{}) *gomock.Call

ModifyLocalGatewayRoute indicates an expected call of ModifyLocalGatewayRoute.

func (*MockEC2APIMockRecorder) ModifyLocalGatewayRouteRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyLocalGatewayRouteRequest(arg0 interface{}) *gomock.Call

ModifyLocalGatewayRouteRequest indicates an expected call of ModifyLocalGatewayRouteRequest.

func (*MockEC2APIMockRecorder) ModifyLocalGatewayRouteWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyLocalGatewayRouteWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyLocalGatewayRouteWithContext indicates an expected call of ModifyLocalGatewayRouteWithContext.

func (*MockEC2APIMockRecorder) ModifyManagedPrefixList added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyManagedPrefixList(arg0 interface{}) *gomock.Call

ModifyManagedPrefixList indicates an expected call of ModifyManagedPrefixList.

func (*MockEC2APIMockRecorder) ModifyManagedPrefixListRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyManagedPrefixListRequest(arg0 interface{}) *gomock.Call

ModifyManagedPrefixListRequest indicates an expected call of ModifyManagedPrefixListRequest.

func (*MockEC2APIMockRecorder) ModifyManagedPrefixListWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyManagedPrefixListWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyManagedPrefixListWithContext indicates an expected call of ModifyManagedPrefixListWithContext.

func (*MockEC2APIMockRecorder) ModifyNetworkInterfaceAttribute added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyNetworkInterfaceAttribute(arg0 interface{}) *gomock.Call

ModifyNetworkInterfaceAttribute indicates an expected call of ModifyNetworkInterfaceAttribute.

func (*MockEC2APIMockRecorder) ModifyNetworkInterfaceAttributeRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyNetworkInterfaceAttributeRequest(arg0 interface{}) *gomock.Call

ModifyNetworkInterfaceAttributeRequest indicates an expected call of ModifyNetworkInterfaceAttributeRequest.

func (*MockEC2APIMockRecorder) ModifyNetworkInterfaceAttributeWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyNetworkInterfaceAttributeWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyNetworkInterfaceAttributeWithContext indicates an expected call of ModifyNetworkInterfaceAttributeWithContext.

func (*MockEC2APIMockRecorder) ModifyPrivateDnsNameOptions added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyPrivateDnsNameOptions(arg0 interface{}) *gomock.Call

ModifyPrivateDnsNameOptions indicates an expected call of ModifyPrivateDnsNameOptions.

func (*MockEC2APIMockRecorder) ModifyPrivateDnsNameOptionsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyPrivateDnsNameOptionsRequest(arg0 interface{}) *gomock.Call

ModifyPrivateDnsNameOptionsRequest indicates an expected call of ModifyPrivateDnsNameOptionsRequest.

func (*MockEC2APIMockRecorder) ModifyPrivateDnsNameOptionsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyPrivateDnsNameOptionsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyPrivateDnsNameOptionsWithContext indicates an expected call of ModifyPrivateDnsNameOptionsWithContext.

func (*MockEC2APIMockRecorder) ModifyReservedInstances added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyReservedInstances(arg0 interface{}) *gomock.Call

ModifyReservedInstances indicates an expected call of ModifyReservedInstances.

func (*MockEC2APIMockRecorder) ModifyReservedInstancesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyReservedInstancesRequest(arg0 interface{}) *gomock.Call

ModifyReservedInstancesRequest indicates an expected call of ModifyReservedInstancesRequest.

func (*MockEC2APIMockRecorder) ModifyReservedInstancesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyReservedInstancesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyReservedInstancesWithContext indicates an expected call of ModifyReservedInstancesWithContext.

func (*MockEC2APIMockRecorder) ModifySecurityGroupRules added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifySecurityGroupRules(arg0 interface{}) *gomock.Call

ModifySecurityGroupRules indicates an expected call of ModifySecurityGroupRules.

func (*MockEC2APIMockRecorder) ModifySecurityGroupRulesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifySecurityGroupRulesRequest(arg0 interface{}) *gomock.Call

ModifySecurityGroupRulesRequest indicates an expected call of ModifySecurityGroupRulesRequest.

func (*MockEC2APIMockRecorder) ModifySecurityGroupRulesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifySecurityGroupRulesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifySecurityGroupRulesWithContext indicates an expected call of ModifySecurityGroupRulesWithContext.

func (*MockEC2APIMockRecorder) ModifySnapshotAttribute added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifySnapshotAttribute(arg0 interface{}) *gomock.Call

ModifySnapshotAttribute indicates an expected call of ModifySnapshotAttribute.

func (*MockEC2APIMockRecorder) ModifySnapshotAttributeRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifySnapshotAttributeRequest(arg0 interface{}) *gomock.Call

ModifySnapshotAttributeRequest indicates an expected call of ModifySnapshotAttributeRequest.

func (*MockEC2APIMockRecorder) ModifySnapshotAttributeWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifySnapshotAttributeWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifySnapshotAttributeWithContext indicates an expected call of ModifySnapshotAttributeWithContext.

func (*MockEC2APIMockRecorder) ModifySnapshotTier added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifySnapshotTier(arg0 interface{}) *gomock.Call

ModifySnapshotTier indicates an expected call of ModifySnapshotTier.

func (*MockEC2APIMockRecorder) ModifySnapshotTierRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifySnapshotTierRequest(arg0 interface{}) *gomock.Call

ModifySnapshotTierRequest indicates an expected call of ModifySnapshotTierRequest.

func (*MockEC2APIMockRecorder) ModifySnapshotTierWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifySnapshotTierWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifySnapshotTierWithContext indicates an expected call of ModifySnapshotTierWithContext.

func (*MockEC2APIMockRecorder) ModifySpotFleetRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifySpotFleetRequest(arg0 interface{}) *gomock.Call

ModifySpotFleetRequest indicates an expected call of ModifySpotFleetRequest.

func (*MockEC2APIMockRecorder) ModifySpotFleetRequestRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifySpotFleetRequestRequest(arg0 interface{}) *gomock.Call

ModifySpotFleetRequestRequest indicates an expected call of ModifySpotFleetRequestRequest.

func (*MockEC2APIMockRecorder) ModifySpotFleetRequestWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifySpotFleetRequestWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifySpotFleetRequestWithContext indicates an expected call of ModifySpotFleetRequestWithContext.

func (*MockEC2APIMockRecorder) ModifySubnetAttribute added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifySubnetAttribute(arg0 interface{}) *gomock.Call

ModifySubnetAttribute indicates an expected call of ModifySubnetAttribute.

func (*MockEC2APIMockRecorder) ModifySubnetAttributeRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifySubnetAttributeRequest(arg0 interface{}) *gomock.Call

ModifySubnetAttributeRequest indicates an expected call of ModifySubnetAttributeRequest.

func (*MockEC2APIMockRecorder) ModifySubnetAttributeWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifySubnetAttributeWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifySubnetAttributeWithContext indicates an expected call of ModifySubnetAttributeWithContext.

func (*MockEC2APIMockRecorder) ModifyTrafficMirrorFilterNetworkServices added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyTrafficMirrorFilterNetworkServices(arg0 interface{}) *gomock.Call

ModifyTrafficMirrorFilterNetworkServices indicates an expected call of ModifyTrafficMirrorFilterNetworkServices.

func (*MockEC2APIMockRecorder) ModifyTrafficMirrorFilterNetworkServicesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyTrafficMirrorFilterNetworkServicesRequest(arg0 interface{}) *gomock.Call

ModifyTrafficMirrorFilterNetworkServicesRequest indicates an expected call of ModifyTrafficMirrorFilterNetworkServicesRequest.

func (*MockEC2APIMockRecorder) ModifyTrafficMirrorFilterNetworkServicesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyTrafficMirrorFilterNetworkServicesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyTrafficMirrorFilterNetworkServicesWithContext indicates an expected call of ModifyTrafficMirrorFilterNetworkServicesWithContext.

func (*MockEC2APIMockRecorder) ModifyTrafficMirrorFilterRule added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyTrafficMirrorFilterRule(arg0 interface{}) *gomock.Call

ModifyTrafficMirrorFilterRule indicates an expected call of ModifyTrafficMirrorFilterRule.

func (*MockEC2APIMockRecorder) ModifyTrafficMirrorFilterRuleRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyTrafficMirrorFilterRuleRequest(arg0 interface{}) *gomock.Call

ModifyTrafficMirrorFilterRuleRequest indicates an expected call of ModifyTrafficMirrorFilterRuleRequest.

func (*MockEC2APIMockRecorder) ModifyTrafficMirrorFilterRuleWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyTrafficMirrorFilterRuleWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyTrafficMirrorFilterRuleWithContext indicates an expected call of ModifyTrafficMirrorFilterRuleWithContext.

func (*MockEC2APIMockRecorder) ModifyTrafficMirrorSession added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyTrafficMirrorSession(arg0 interface{}) *gomock.Call

ModifyTrafficMirrorSession indicates an expected call of ModifyTrafficMirrorSession.

func (*MockEC2APIMockRecorder) ModifyTrafficMirrorSessionRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyTrafficMirrorSessionRequest(arg0 interface{}) *gomock.Call

ModifyTrafficMirrorSessionRequest indicates an expected call of ModifyTrafficMirrorSessionRequest.

func (*MockEC2APIMockRecorder) ModifyTrafficMirrorSessionWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyTrafficMirrorSessionWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyTrafficMirrorSessionWithContext indicates an expected call of ModifyTrafficMirrorSessionWithContext.

func (*MockEC2APIMockRecorder) ModifyTransitGateway added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyTransitGateway(arg0 interface{}) *gomock.Call

ModifyTransitGateway indicates an expected call of ModifyTransitGateway.

func (*MockEC2APIMockRecorder) ModifyTransitGatewayPrefixListReference added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyTransitGatewayPrefixListReference(arg0 interface{}) *gomock.Call

ModifyTransitGatewayPrefixListReference indicates an expected call of ModifyTransitGatewayPrefixListReference.

func (*MockEC2APIMockRecorder) ModifyTransitGatewayPrefixListReferenceRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyTransitGatewayPrefixListReferenceRequest(arg0 interface{}) *gomock.Call

ModifyTransitGatewayPrefixListReferenceRequest indicates an expected call of ModifyTransitGatewayPrefixListReferenceRequest.

func (*MockEC2APIMockRecorder) ModifyTransitGatewayPrefixListReferenceWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyTransitGatewayPrefixListReferenceWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyTransitGatewayPrefixListReferenceWithContext indicates an expected call of ModifyTransitGatewayPrefixListReferenceWithContext.

func (*MockEC2APIMockRecorder) ModifyTransitGatewayRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyTransitGatewayRequest(arg0 interface{}) *gomock.Call

ModifyTransitGatewayRequest indicates an expected call of ModifyTransitGatewayRequest.

func (*MockEC2APIMockRecorder) ModifyTransitGatewayVpcAttachment added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyTransitGatewayVpcAttachment(arg0 interface{}) *gomock.Call

ModifyTransitGatewayVpcAttachment indicates an expected call of ModifyTransitGatewayVpcAttachment.

func (*MockEC2APIMockRecorder) ModifyTransitGatewayVpcAttachmentRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyTransitGatewayVpcAttachmentRequest(arg0 interface{}) *gomock.Call

ModifyTransitGatewayVpcAttachmentRequest indicates an expected call of ModifyTransitGatewayVpcAttachmentRequest.

func (*MockEC2APIMockRecorder) ModifyTransitGatewayVpcAttachmentWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyTransitGatewayVpcAttachmentWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyTransitGatewayVpcAttachmentWithContext indicates an expected call of ModifyTransitGatewayVpcAttachmentWithContext.

func (*MockEC2APIMockRecorder) ModifyTransitGatewayWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyTransitGatewayWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyTransitGatewayWithContext indicates an expected call of ModifyTransitGatewayWithContext.

func (*MockEC2APIMockRecorder) ModifyVerifiedAccessEndpoint added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVerifiedAccessEndpoint(arg0 interface{}) *gomock.Call

ModifyVerifiedAccessEndpoint indicates an expected call of ModifyVerifiedAccessEndpoint.

func (*MockEC2APIMockRecorder) ModifyVerifiedAccessEndpointPolicy added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVerifiedAccessEndpointPolicy(arg0 interface{}) *gomock.Call

ModifyVerifiedAccessEndpointPolicy indicates an expected call of ModifyVerifiedAccessEndpointPolicy.

func (*MockEC2APIMockRecorder) ModifyVerifiedAccessEndpointPolicyRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVerifiedAccessEndpointPolicyRequest(arg0 interface{}) *gomock.Call

ModifyVerifiedAccessEndpointPolicyRequest indicates an expected call of ModifyVerifiedAccessEndpointPolicyRequest.

func (*MockEC2APIMockRecorder) ModifyVerifiedAccessEndpointPolicyWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVerifiedAccessEndpointPolicyWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyVerifiedAccessEndpointPolicyWithContext indicates an expected call of ModifyVerifiedAccessEndpointPolicyWithContext.

func (*MockEC2APIMockRecorder) ModifyVerifiedAccessEndpointRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVerifiedAccessEndpointRequest(arg0 interface{}) *gomock.Call

ModifyVerifiedAccessEndpointRequest indicates an expected call of ModifyVerifiedAccessEndpointRequest.

func (*MockEC2APIMockRecorder) ModifyVerifiedAccessEndpointWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVerifiedAccessEndpointWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyVerifiedAccessEndpointWithContext indicates an expected call of ModifyVerifiedAccessEndpointWithContext.

func (*MockEC2APIMockRecorder) ModifyVerifiedAccessGroup added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVerifiedAccessGroup(arg0 interface{}) *gomock.Call

ModifyVerifiedAccessGroup indicates an expected call of ModifyVerifiedAccessGroup.

func (*MockEC2APIMockRecorder) ModifyVerifiedAccessGroupPolicy added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVerifiedAccessGroupPolicy(arg0 interface{}) *gomock.Call

ModifyVerifiedAccessGroupPolicy indicates an expected call of ModifyVerifiedAccessGroupPolicy.

func (*MockEC2APIMockRecorder) ModifyVerifiedAccessGroupPolicyRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVerifiedAccessGroupPolicyRequest(arg0 interface{}) *gomock.Call

ModifyVerifiedAccessGroupPolicyRequest indicates an expected call of ModifyVerifiedAccessGroupPolicyRequest.

func (*MockEC2APIMockRecorder) ModifyVerifiedAccessGroupPolicyWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVerifiedAccessGroupPolicyWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyVerifiedAccessGroupPolicyWithContext indicates an expected call of ModifyVerifiedAccessGroupPolicyWithContext.

func (*MockEC2APIMockRecorder) ModifyVerifiedAccessGroupRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVerifiedAccessGroupRequest(arg0 interface{}) *gomock.Call

ModifyVerifiedAccessGroupRequest indicates an expected call of ModifyVerifiedAccessGroupRequest.

func (*MockEC2APIMockRecorder) ModifyVerifiedAccessGroupWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVerifiedAccessGroupWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyVerifiedAccessGroupWithContext indicates an expected call of ModifyVerifiedAccessGroupWithContext.

func (*MockEC2APIMockRecorder) ModifyVerifiedAccessInstance added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVerifiedAccessInstance(arg0 interface{}) *gomock.Call

ModifyVerifiedAccessInstance indicates an expected call of ModifyVerifiedAccessInstance.

func (*MockEC2APIMockRecorder) ModifyVerifiedAccessInstanceLoggingConfiguration added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVerifiedAccessInstanceLoggingConfiguration(arg0 interface{}) *gomock.Call

ModifyVerifiedAccessInstanceLoggingConfiguration indicates an expected call of ModifyVerifiedAccessInstanceLoggingConfiguration.

func (*MockEC2APIMockRecorder) ModifyVerifiedAccessInstanceLoggingConfigurationRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVerifiedAccessInstanceLoggingConfigurationRequest(arg0 interface{}) *gomock.Call

ModifyVerifiedAccessInstanceLoggingConfigurationRequest indicates an expected call of ModifyVerifiedAccessInstanceLoggingConfigurationRequest.

func (*MockEC2APIMockRecorder) ModifyVerifiedAccessInstanceLoggingConfigurationWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVerifiedAccessInstanceLoggingConfigurationWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyVerifiedAccessInstanceLoggingConfigurationWithContext indicates an expected call of ModifyVerifiedAccessInstanceLoggingConfigurationWithContext.

func (*MockEC2APIMockRecorder) ModifyVerifiedAccessInstanceRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVerifiedAccessInstanceRequest(arg0 interface{}) *gomock.Call

ModifyVerifiedAccessInstanceRequest indicates an expected call of ModifyVerifiedAccessInstanceRequest.

func (*MockEC2APIMockRecorder) ModifyVerifiedAccessInstanceWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVerifiedAccessInstanceWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyVerifiedAccessInstanceWithContext indicates an expected call of ModifyVerifiedAccessInstanceWithContext.

func (*MockEC2APIMockRecorder) ModifyVerifiedAccessTrustProvider added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVerifiedAccessTrustProvider(arg0 interface{}) *gomock.Call

ModifyVerifiedAccessTrustProvider indicates an expected call of ModifyVerifiedAccessTrustProvider.

func (*MockEC2APIMockRecorder) ModifyVerifiedAccessTrustProviderRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVerifiedAccessTrustProviderRequest(arg0 interface{}) *gomock.Call

ModifyVerifiedAccessTrustProviderRequest indicates an expected call of ModifyVerifiedAccessTrustProviderRequest.

func (*MockEC2APIMockRecorder) ModifyVerifiedAccessTrustProviderWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVerifiedAccessTrustProviderWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyVerifiedAccessTrustProviderWithContext indicates an expected call of ModifyVerifiedAccessTrustProviderWithContext.

func (*MockEC2APIMockRecorder) ModifyVolume added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVolume(arg0 interface{}) *gomock.Call

ModifyVolume indicates an expected call of ModifyVolume.

func (*MockEC2APIMockRecorder) ModifyVolumeAttribute added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVolumeAttribute(arg0 interface{}) *gomock.Call

ModifyVolumeAttribute indicates an expected call of ModifyVolumeAttribute.

func (*MockEC2APIMockRecorder) ModifyVolumeAttributeRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVolumeAttributeRequest(arg0 interface{}) *gomock.Call

ModifyVolumeAttributeRequest indicates an expected call of ModifyVolumeAttributeRequest.

func (*MockEC2APIMockRecorder) ModifyVolumeAttributeWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVolumeAttributeWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyVolumeAttributeWithContext indicates an expected call of ModifyVolumeAttributeWithContext.

func (*MockEC2APIMockRecorder) ModifyVolumeRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVolumeRequest(arg0 interface{}) *gomock.Call

ModifyVolumeRequest indicates an expected call of ModifyVolumeRequest.

func (*MockEC2APIMockRecorder) ModifyVolumeWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVolumeWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyVolumeWithContext indicates an expected call of ModifyVolumeWithContext.

func (*MockEC2APIMockRecorder) ModifyVpcAttribute added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVpcAttribute(arg0 interface{}) *gomock.Call

ModifyVpcAttribute indicates an expected call of ModifyVpcAttribute.

func (*MockEC2APIMockRecorder) ModifyVpcAttributeRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVpcAttributeRequest(arg0 interface{}) *gomock.Call

ModifyVpcAttributeRequest indicates an expected call of ModifyVpcAttributeRequest.

func (*MockEC2APIMockRecorder) ModifyVpcAttributeWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVpcAttributeWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyVpcAttributeWithContext indicates an expected call of ModifyVpcAttributeWithContext.

func (*MockEC2APIMockRecorder) ModifyVpcEndpoint added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVpcEndpoint(arg0 interface{}) *gomock.Call

ModifyVpcEndpoint indicates an expected call of ModifyVpcEndpoint.

func (*MockEC2APIMockRecorder) ModifyVpcEndpointConnectionNotification added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVpcEndpointConnectionNotification(arg0 interface{}) *gomock.Call

ModifyVpcEndpointConnectionNotification indicates an expected call of ModifyVpcEndpointConnectionNotification.

func (*MockEC2APIMockRecorder) ModifyVpcEndpointConnectionNotificationRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVpcEndpointConnectionNotificationRequest(arg0 interface{}) *gomock.Call

ModifyVpcEndpointConnectionNotificationRequest indicates an expected call of ModifyVpcEndpointConnectionNotificationRequest.

func (*MockEC2APIMockRecorder) ModifyVpcEndpointConnectionNotificationWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVpcEndpointConnectionNotificationWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyVpcEndpointConnectionNotificationWithContext indicates an expected call of ModifyVpcEndpointConnectionNotificationWithContext.

func (*MockEC2APIMockRecorder) ModifyVpcEndpointRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVpcEndpointRequest(arg0 interface{}) *gomock.Call

ModifyVpcEndpointRequest indicates an expected call of ModifyVpcEndpointRequest.

func (*MockEC2APIMockRecorder) ModifyVpcEndpointServiceConfiguration added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVpcEndpointServiceConfiguration(arg0 interface{}) *gomock.Call

ModifyVpcEndpointServiceConfiguration indicates an expected call of ModifyVpcEndpointServiceConfiguration.

func (*MockEC2APIMockRecorder) ModifyVpcEndpointServiceConfigurationRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVpcEndpointServiceConfigurationRequest(arg0 interface{}) *gomock.Call

ModifyVpcEndpointServiceConfigurationRequest indicates an expected call of ModifyVpcEndpointServiceConfigurationRequest.

func (*MockEC2APIMockRecorder) ModifyVpcEndpointServiceConfigurationWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVpcEndpointServiceConfigurationWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyVpcEndpointServiceConfigurationWithContext indicates an expected call of ModifyVpcEndpointServiceConfigurationWithContext.

func (*MockEC2APIMockRecorder) ModifyVpcEndpointServicePayerResponsibility added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVpcEndpointServicePayerResponsibility(arg0 interface{}) *gomock.Call

ModifyVpcEndpointServicePayerResponsibility indicates an expected call of ModifyVpcEndpointServicePayerResponsibility.

func (*MockEC2APIMockRecorder) ModifyVpcEndpointServicePayerResponsibilityRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVpcEndpointServicePayerResponsibilityRequest(arg0 interface{}) *gomock.Call

ModifyVpcEndpointServicePayerResponsibilityRequest indicates an expected call of ModifyVpcEndpointServicePayerResponsibilityRequest.

func (*MockEC2APIMockRecorder) ModifyVpcEndpointServicePayerResponsibilityWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVpcEndpointServicePayerResponsibilityWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyVpcEndpointServicePayerResponsibilityWithContext indicates an expected call of ModifyVpcEndpointServicePayerResponsibilityWithContext.

func (*MockEC2APIMockRecorder) ModifyVpcEndpointServicePermissions added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVpcEndpointServicePermissions(arg0 interface{}) *gomock.Call

ModifyVpcEndpointServicePermissions indicates an expected call of ModifyVpcEndpointServicePermissions.

func (*MockEC2APIMockRecorder) ModifyVpcEndpointServicePermissionsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVpcEndpointServicePermissionsRequest(arg0 interface{}) *gomock.Call

ModifyVpcEndpointServicePermissionsRequest indicates an expected call of ModifyVpcEndpointServicePermissionsRequest.

func (*MockEC2APIMockRecorder) ModifyVpcEndpointServicePermissionsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVpcEndpointServicePermissionsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyVpcEndpointServicePermissionsWithContext indicates an expected call of ModifyVpcEndpointServicePermissionsWithContext.

func (*MockEC2APIMockRecorder) ModifyVpcEndpointWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVpcEndpointWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyVpcEndpointWithContext indicates an expected call of ModifyVpcEndpointWithContext.

func (*MockEC2APIMockRecorder) ModifyVpcPeeringConnectionOptions added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVpcPeeringConnectionOptions(arg0 interface{}) *gomock.Call

ModifyVpcPeeringConnectionOptions indicates an expected call of ModifyVpcPeeringConnectionOptions.

func (*MockEC2APIMockRecorder) ModifyVpcPeeringConnectionOptionsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVpcPeeringConnectionOptionsRequest(arg0 interface{}) *gomock.Call

ModifyVpcPeeringConnectionOptionsRequest indicates an expected call of ModifyVpcPeeringConnectionOptionsRequest.

func (*MockEC2APIMockRecorder) ModifyVpcPeeringConnectionOptionsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVpcPeeringConnectionOptionsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyVpcPeeringConnectionOptionsWithContext indicates an expected call of ModifyVpcPeeringConnectionOptionsWithContext.

func (*MockEC2APIMockRecorder) ModifyVpcTenancy added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVpcTenancy(arg0 interface{}) *gomock.Call

ModifyVpcTenancy indicates an expected call of ModifyVpcTenancy.

func (*MockEC2APIMockRecorder) ModifyVpcTenancyRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVpcTenancyRequest(arg0 interface{}) *gomock.Call

ModifyVpcTenancyRequest indicates an expected call of ModifyVpcTenancyRequest.

func (*MockEC2APIMockRecorder) ModifyVpcTenancyWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVpcTenancyWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyVpcTenancyWithContext indicates an expected call of ModifyVpcTenancyWithContext.

func (*MockEC2APIMockRecorder) ModifyVpnConnection added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVpnConnection(arg0 interface{}) *gomock.Call

ModifyVpnConnection indicates an expected call of ModifyVpnConnection.

func (*MockEC2APIMockRecorder) ModifyVpnConnectionOptions added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVpnConnectionOptions(arg0 interface{}) *gomock.Call

ModifyVpnConnectionOptions indicates an expected call of ModifyVpnConnectionOptions.

func (*MockEC2APIMockRecorder) ModifyVpnConnectionOptionsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVpnConnectionOptionsRequest(arg0 interface{}) *gomock.Call

ModifyVpnConnectionOptionsRequest indicates an expected call of ModifyVpnConnectionOptionsRequest.

func (*MockEC2APIMockRecorder) ModifyVpnConnectionOptionsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVpnConnectionOptionsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyVpnConnectionOptionsWithContext indicates an expected call of ModifyVpnConnectionOptionsWithContext.

func (*MockEC2APIMockRecorder) ModifyVpnConnectionRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVpnConnectionRequest(arg0 interface{}) *gomock.Call

ModifyVpnConnectionRequest indicates an expected call of ModifyVpnConnectionRequest.

func (*MockEC2APIMockRecorder) ModifyVpnConnectionWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVpnConnectionWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyVpnConnectionWithContext indicates an expected call of ModifyVpnConnectionWithContext.

func (*MockEC2APIMockRecorder) ModifyVpnTunnelCertificate added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVpnTunnelCertificate(arg0 interface{}) *gomock.Call

ModifyVpnTunnelCertificate indicates an expected call of ModifyVpnTunnelCertificate.

func (*MockEC2APIMockRecorder) ModifyVpnTunnelCertificateRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVpnTunnelCertificateRequest(arg0 interface{}) *gomock.Call

ModifyVpnTunnelCertificateRequest indicates an expected call of ModifyVpnTunnelCertificateRequest.

func (*MockEC2APIMockRecorder) ModifyVpnTunnelCertificateWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVpnTunnelCertificateWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyVpnTunnelCertificateWithContext indicates an expected call of ModifyVpnTunnelCertificateWithContext.

func (*MockEC2APIMockRecorder) ModifyVpnTunnelOptions added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVpnTunnelOptions(arg0 interface{}) *gomock.Call

ModifyVpnTunnelOptions indicates an expected call of ModifyVpnTunnelOptions.

func (*MockEC2APIMockRecorder) ModifyVpnTunnelOptionsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVpnTunnelOptionsRequest(arg0 interface{}) *gomock.Call

ModifyVpnTunnelOptionsRequest indicates an expected call of ModifyVpnTunnelOptionsRequest.

func (*MockEC2APIMockRecorder) ModifyVpnTunnelOptionsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ModifyVpnTunnelOptionsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ModifyVpnTunnelOptionsWithContext indicates an expected call of ModifyVpnTunnelOptionsWithContext.

func (*MockEC2APIMockRecorder) MonitorInstances added in v1.19.0

func (mr *MockEC2APIMockRecorder) MonitorInstances(arg0 interface{}) *gomock.Call

MonitorInstances indicates an expected call of MonitorInstances.

func (*MockEC2APIMockRecorder) MonitorInstancesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) MonitorInstancesRequest(arg0 interface{}) *gomock.Call

MonitorInstancesRequest indicates an expected call of MonitorInstancesRequest.

func (*MockEC2APIMockRecorder) MonitorInstancesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) MonitorInstancesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

MonitorInstancesWithContext indicates an expected call of MonitorInstancesWithContext.

func (*MockEC2APIMockRecorder) MoveAddressToVpc added in v1.19.0

func (mr *MockEC2APIMockRecorder) MoveAddressToVpc(arg0 interface{}) *gomock.Call

MoveAddressToVpc indicates an expected call of MoveAddressToVpc.

func (*MockEC2APIMockRecorder) MoveAddressToVpcRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) MoveAddressToVpcRequest(arg0 interface{}) *gomock.Call

MoveAddressToVpcRequest indicates an expected call of MoveAddressToVpcRequest.

func (*MockEC2APIMockRecorder) MoveAddressToVpcWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) MoveAddressToVpcWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

MoveAddressToVpcWithContext indicates an expected call of MoveAddressToVpcWithContext.

func (*MockEC2APIMockRecorder) MoveByoipCidrToIpam added in v1.19.0

func (mr *MockEC2APIMockRecorder) MoveByoipCidrToIpam(arg0 interface{}) *gomock.Call

MoveByoipCidrToIpam indicates an expected call of MoveByoipCidrToIpam.

func (*MockEC2APIMockRecorder) MoveByoipCidrToIpamRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) MoveByoipCidrToIpamRequest(arg0 interface{}) *gomock.Call

MoveByoipCidrToIpamRequest indicates an expected call of MoveByoipCidrToIpamRequest.

func (*MockEC2APIMockRecorder) MoveByoipCidrToIpamWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) MoveByoipCidrToIpamWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

MoveByoipCidrToIpamWithContext indicates an expected call of MoveByoipCidrToIpamWithContext.

func (*MockEC2APIMockRecorder) ProvisionByoipCidr added in v1.19.0

func (mr *MockEC2APIMockRecorder) ProvisionByoipCidr(arg0 interface{}) *gomock.Call

ProvisionByoipCidr indicates an expected call of ProvisionByoipCidr.

func (*MockEC2APIMockRecorder) ProvisionByoipCidrRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ProvisionByoipCidrRequest(arg0 interface{}) *gomock.Call

ProvisionByoipCidrRequest indicates an expected call of ProvisionByoipCidrRequest.

func (*MockEC2APIMockRecorder) ProvisionByoipCidrWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ProvisionByoipCidrWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ProvisionByoipCidrWithContext indicates an expected call of ProvisionByoipCidrWithContext.

func (*MockEC2APIMockRecorder) ProvisionIpamPoolCidr added in v1.19.0

func (mr *MockEC2APIMockRecorder) ProvisionIpamPoolCidr(arg0 interface{}) *gomock.Call

ProvisionIpamPoolCidr indicates an expected call of ProvisionIpamPoolCidr.

func (*MockEC2APIMockRecorder) ProvisionIpamPoolCidrRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ProvisionIpamPoolCidrRequest(arg0 interface{}) *gomock.Call

ProvisionIpamPoolCidrRequest indicates an expected call of ProvisionIpamPoolCidrRequest.

func (*MockEC2APIMockRecorder) ProvisionIpamPoolCidrWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ProvisionIpamPoolCidrWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ProvisionIpamPoolCidrWithContext indicates an expected call of ProvisionIpamPoolCidrWithContext.

func (*MockEC2APIMockRecorder) ProvisionPublicIpv4PoolCidr added in v1.19.0

func (mr *MockEC2APIMockRecorder) ProvisionPublicIpv4PoolCidr(arg0 interface{}) *gomock.Call

ProvisionPublicIpv4PoolCidr indicates an expected call of ProvisionPublicIpv4PoolCidr.

func (*MockEC2APIMockRecorder) ProvisionPublicIpv4PoolCidrRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ProvisionPublicIpv4PoolCidrRequest(arg0 interface{}) *gomock.Call

ProvisionPublicIpv4PoolCidrRequest indicates an expected call of ProvisionPublicIpv4PoolCidrRequest.

func (*MockEC2APIMockRecorder) ProvisionPublicIpv4PoolCidrWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ProvisionPublicIpv4PoolCidrWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ProvisionPublicIpv4PoolCidrWithContext indicates an expected call of ProvisionPublicIpv4PoolCidrWithContext.

func (*MockEC2APIMockRecorder) PurchaseHostReservation added in v1.19.0

func (mr *MockEC2APIMockRecorder) PurchaseHostReservation(arg0 interface{}) *gomock.Call

PurchaseHostReservation indicates an expected call of PurchaseHostReservation.

func (*MockEC2APIMockRecorder) PurchaseHostReservationRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) PurchaseHostReservationRequest(arg0 interface{}) *gomock.Call

PurchaseHostReservationRequest indicates an expected call of PurchaseHostReservationRequest.

func (*MockEC2APIMockRecorder) PurchaseHostReservationWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) PurchaseHostReservationWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

PurchaseHostReservationWithContext indicates an expected call of PurchaseHostReservationWithContext.

func (*MockEC2APIMockRecorder) PurchaseReservedInstancesOffering added in v1.19.0

func (mr *MockEC2APIMockRecorder) PurchaseReservedInstancesOffering(arg0 interface{}) *gomock.Call

PurchaseReservedInstancesOffering indicates an expected call of PurchaseReservedInstancesOffering.

func (*MockEC2APIMockRecorder) PurchaseReservedInstancesOfferingRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) PurchaseReservedInstancesOfferingRequest(arg0 interface{}) *gomock.Call

PurchaseReservedInstancesOfferingRequest indicates an expected call of PurchaseReservedInstancesOfferingRequest.

func (*MockEC2APIMockRecorder) PurchaseReservedInstancesOfferingWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) PurchaseReservedInstancesOfferingWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

PurchaseReservedInstancesOfferingWithContext indicates an expected call of PurchaseReservedInstancesOfferingWithContext.

func (*MockEC2APIMockRecorder) PurchaseScheduledInstances added in v1.19.0

func (mr *MockEC2APIMockRecorder) PurchaseScheduledInstances(arg0 interface{}) *gomock.Call

PurchaseScheduledInstances indicates an expected call of PurchaseScheduledInstances.

func (*MockEC2APIMockRecorder) PurchaseScheduledInstancesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) PurchaseScheduledInstancesRequest(arg0 interface{}) *gomock.Call

PurchaseScheduledInstancesRequest indicates an expected call of PurchaseScheduledInstancesRequest.

func (*MockEC2APIMockRecorder) PurchaseScheduledInstancesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) PurchaseScheduledInstancesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

PurchaseScheduledInstancesWithContext indicates an expected call of PurchaseScheduledInstancesWithContext.

func (*MockEC2APIMockRecorder) RebootInstances added in v1.19.0

func (mr *MockEC2APIMockRecorder) RebootInstances(arg0 interface{}) *gomock.Call

RebootInstances indicates an expected call of RebootInstances.

func (*MockEC2APIMockRecorder) RebootInstancesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) RebootInstancesRequest(arg0 interface{}) *gomock.Call

RebootInstancesRequest indicates an expected call of RebootInstancesRequest.

func (*MockEC2APIMockRecorder) RebootInstancesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) RebootInstancesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

RebootInstancesWithContext indicates an expected call of RebootInstancesWithContext.

func (*MockEC2APIMockRecorder) RegisterImage added in v1.19.0

func (mr *MockEC2APIMockRecorder) RegisterImage(arg0 interface{}) *gomock.Call

RegisterImage indicates an expected call of RegisterImage.

func (*MockEC2APIMockRecorder) RegisterImageRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) RegisterImageRequest(arg0 interface{}) *gomock.Call

RegisterImageRequest indicates an expected call of RegisterImageRequest.

func (*MockEC2APIMockRecorder) RegisterImageWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) RegisterImageWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

RegisterImageWithContext indicates an expected call of RegisterImageWithContext.

func (*MockEC2APIMockRecorder) RegisterInstanceEventNotificationAttributes added in v1.19.0

func (mr *MockEC2APIMockRecorder) RegisterInstanceEventNotificationAttributes(arg0 interface{}) *gomock.Call

RegisterInstanceEventNotificationAttributes indicates an expected call of RegisterInstanceEventNotificationAttributes.

func (*MockEC2APIMockRecorder) RegisterInstanceEventNotificationAttributesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) RegisterInstanceEventNotificationAttributesRequest(arg0 interface{}) *gomock.Call

RegisterInstanceEventNotificationAttributesRequest indicates an expected call of RegisterInstanceEventNotificationAttributesRequest.

func (*MockEC2APIMockRecorder) RegisterInstanceEventNotificationAttributesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) RegisterInstanceEventNotificationAttributesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

RegisterInstanceEventNotificationAttributesWithContext indicates an expected call of RegisterInstanceEventNotificationAttributesWithContext.

func (*MockEC2APIMockRecorder) RegisterTransitGatewayMulticastGroupMembers added in v1.19.0

func (mr *MockEC2APIMockRecorder) RegisterTransitGatewayMulticastGroupMembers(arg0 interface{}) *gomock.Call

RegisterTransitGatewayMulticastGroupMembers indicates an expected call of RegisterTransitGatewayMulticastGroupMembers.

func (*MockEC2APIMockRecorder) RegisterTransitGatewayMulticastGroupMembersRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) RegisterTransitGatewayMulticastGroupMembersRequest(arg0 interface{}) *gomock.Call

RegisterTransitGatewayMulticastGroupMembersRequest indicates an expected call of RegisterTransitGatewayMulticastGroupMembersRequest.

func (*MockEC2APIMockRecorder) RegisterTransitGatewayMulticastGroupMembersWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) RegisterTransitGatewayMulticastGroupMembersWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

RegisterTransitGatewayMulticastGroupMembersWithContext indicates an expected call of RegisterTransitGatewayMulticastGroupMembersWithContext.

func (*MockEC2APIMockRecorder) RegisterTransitGatewayMulticastGroupSources added in v1.19.0

func (mr *MockEC2APIMockRecorder) RegisterTransitGatewayMulticastGroupSources(arg0 interface{}) *gomock.Call

RegisterTransitGatewayMulticastGroupSources indicates an expected call of RegisterTransitGatewayMulticastGroupSources.

func (*MockEC2APIMockRecorder) RegisterTransitGatewayMulticastGroupSourcesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) RegisterTransitGatewayMulticastGroupSourcesRequest(arg0 interface{}) *gomock.Call

RegisterTransitGatewayMulticastGroupSourcesRequest indicates an expected call of RegisterTransitGatewayMulticastGroupSourcesRequest.

func (*MockEC2APIMockRecorder) RegisterTransitGatewayMulticastGroupSourcesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) RegisterTransitGatewayMulticastGroupSourcesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

RegisterTransitGatewayMulticastGroupSourcesWithContext indicates an expected call of RegisterTransitGatewayMulticastGroupSourcesWithContext.

func (*MockEC2APIMockRecorder) RejectTransitGatewayMulticastDomainAssociations added in v1.19.0

func (mr *MockEC2APIMockRecorder) RejectTransitGatewayMulticastDomainAssociations(arg0 interface{}) *gomock.Call

RejectTransitGatewayMulticastDomainAssociations indicates an expected call of RejectTransitGatewayMulticastDomainAssociations.

func (*MockEC2APIMockRecorder) RejectTransitGatewayMulticastDomainAssociationsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) RejectTransitGatewayMulticastDomainAssociationsRequest(arg0 interface{}) *gomock.Call

RejectTransitGatewayMulticastDomainAssociationsRequest indicates an expected call of RejectTransitGatewayMulticastDomainAssociationsRequest.

func (*MockEC2APIMockRecorder) RejectTransitGatewayMulticastDomainAssociationsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) RejectTransitGatewayMulticastDomainAssociationsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

RejectTransitGatewayMulticastDomainAssociationsWithContext indicates an expected call of RejectTransitGatewayMulticastDomainAssociationsWithContext.

func (*MockEC2APIMockRecorder) RejectTransitGatewayPeeringAttachment added in v1.19.0

func (mr *MockEC2APIMockRecorder) RejectTransitGatewayPeeringAttachment(arg0 interface{}) *gomock.Call

RejectTransitGatewayPeeringAttachment indicates an expected call of RejectTransitGatewayPeeringAttachment.

func (*MockEC2APIMockRecorder) RejectTransitGatewayPeeringAttachmentRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) RejectTransitGatewayPeeringAttachmentRequest(arg0 interface{}) *gomock.Call

RejectTransitGatewayPeeringAttachmentRequest indicates an expected call of RejectTransitGatewayPeeringAttachmentRequest.

func (*MockEC2APIMockRecorder) RejectTransitGatewayPeeringAttachmentWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) RejectTransitGatewayPeeringAttachmentWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

RejectTransitGatewayPeeringAttachmentWithContext indicates an expected call of RejectTransitGatewayPeeringAttachmentWithContext.

func (*MockEC2APIMockRecorder) RejectTransitGatewayVpcAttachment added in v1.19.0

func (mr *MockEC2APIMockRecorder) RejectTransitGatewayVpcAttachment(arg0 interface{}) *gomock.Call

RejectTransitGatewayVpcAttachment indicates an expected call of RejectTransitGatewayVpcAttachment.

func (*MockEC2APIMockRecorder) RejectTransitGatewayVpcAttachmentRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) RejectTransitGatewayVpcAttachmentRequest(arg0 interface{}) *gomock.Call

RejectTransitGatewayVpcAttachmentRequest indicates an expected call of RejectTransitGatewayVpcAttachmentRequest.

func (*MockEC2APIMockRecorder) RejectTransitGatewayVpcAttachmentWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) RejectTransitGatewayVpcAttachmentWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

RejectTransitGatewayVpcAttachmentWithContext indicates an expected call of RejectTransitGatewayVpcAttachmentWithContext.

func (*MockEC2APIMockRecorder) RejectVpcEndpointConnections added in v1.19.0

func (mr *MockEC2APIMockRecorder) RejectVpcEndpointConnections(arg0 interface{}) *gomock.Call

RejectVpcEndpointConnections indicates an expected call of RejectVpcEndpointConnections.

func (*MockEC2APIMockRecorder) RejectVpcEndpointConnectionsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) RejectVpcEndpointConnectionsRequest(arg0 interface{}) *gomock.Call

RejectVpcEndpointConnectionsRequest indicates an expected call of RejectVpcEndpointConnectionsRequest.

func (*MockEC2APIMockRecorder) RejectVpcEndpointConnectionsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) RejectVpcEndpointConnectionsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

RejectVpcEndpointConnectionsWithContext indicates an expected call of RejectVpcEndpointConnectionsWithContext.

func (*MockEC2APIMockRecorder) RejectVpcPeeringConnection added in v1.19.0

func (mr *MockEC2APIMockRecorder) RejectVpcPeeringConnection(arg0 interface{}) *gomock.Call

RejectVpcPeeringConnection indicates an expected call of RejectVpcPeeringConnection.

func (*MockEC2APIMockRecorder) RejectVpcPeeringConnectionRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) RejectVpcPeeringConnectionRequest(arg0 interface{}) *gomock.Call

RejectVpcPeeringConnectionRequest indicates an expected call of RejectVpcPeeringConnectionRequest.

func (*MockEC2APIMockRecorder) RejectVpcPeeringConnectionWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) RejectVpcPeeringConnectionWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

RejectVpcPeeringConnectionWithContext indicates an expected call of RejectVpcPeeringConnectionWithContext.

func (*MockEC2APIMockRecorder) ReleaseAddress added in v1.19.0

func (mr *MockEC2APIMockRecorder) ReleaseAddress(arg0 interface{}) *gomock.Call

ReleaseAddress indicates an expected call of ReleaseAddress.

func (*MockEC2APIMockRecorder) ReleaseAddressRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ReleaseAddressRequest(arg0 interface{}) *gomock.Call

ReleaseAddressRequest indicates an expected call of ReleaseAddressRequest.

func (*MockEC2APIMockRecorder) ReleaseAddressWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ReleaseAddressWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ReleaseAddressWithContext indicates an expected call of ReleaseAddressWithContext.

func (*MockEC2APIMockRecorder) ReleaseHosts added in v1.19.0

func (mr *MockEC2APIMockRecorder) ReleaseHosts(arg0 interface{}) *gomock.Call

ReleaseHosts indicates an expected call of ReleaseHosts.

func (*MockEC2APIMockRecorder) ReleaseHostsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ReleaseHostsRequest(arg0 interface{}) *gomock.Call

ReleaseHostsRequest indicates an expected call of ReleaseHostsRequest.

func (*MockEC2APIMockRecorder) ReleaseHostsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ReleaseHostsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ReleaseHostsWithContext indicates an expected call of ReleaseHostsWithContext.

func (*MockEC2APIMockRecorder) ReleaseIpamPoolAllocation added in v1.19.0

func (mr *MockEC2APIMockRecorder) ReleaseIpamPoolAllocation(arg0 interface{}) *gomock.Call

ReleaseIpamPoolAllocation indicates an expected call of ReleaseIpamPoolAllocation.

func (*MockEC2APIMockRecorder) ReleaseIpamPoolAllocationRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ReleaseIpamPoolAllocationRequest(arg0 interface{}) *gomock.Call

ReleaseIpamPoolAllocationRequest indicates an expected call of ReleaseIpamPoolAllocationRequest.

func (*MockEC2APIMockRecorder) ReleaseIpamPoolAllocationWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ReleaseIpamPoolAllocationWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ReleaseIpamPoolAllocationWithContext indicates an expected call of ReleaseIpamPoolAllocationWithContext.

func (*MockEC2APIMockRecorder) ReplaceIamInstanceProfileAssociation added in v1.19.0

func (mr *MockEC2APIMockRecorder) ReplaceIamInstanceProfileAssociation(arg0 interface{}) *gomock.Call

ReplaceIamInstanceProfileAssociation indicates an expected call of ReplaceIamInstanceProfileAssociation.

func (*MockEC2APIMockRecorder) ReplaceIamInstanceProfileAssociationRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ReplaceIamInstanceProfileAssociationRequest(arg0 interface{}) *gomock.Call

ReplaceIamInstanceProfileAssociationRequest indicates an expected call of ReplaceIamInstanceProfileAssociationRequest.

func (*MockEC2APIMockRecorder) ReplaceIamInstanceProfileAssociationWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ReplaceIamInstanceProfileAssociationWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ReplaceIamInstanceProfileAssociationWithContext indicates an expected call of ReplaceIamInstanceProfileAssociationWithContext.

func (*MockEC2APIMockRecorder) ReplaceNetworkAclAssociation added in v1.19.0

func (mr *MockEC2APIMockRecorder) ReplaceNetworkAclAssociation(arg0 interface{}) *gomock.Call

ReplaceNetworkAclAssociation indicates an expected call of ReplaceNetworkAclAssociation.

func (*MockEC2APIMockRecorder) ReplaceNetworkAclAssociationRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ReplaceNetworkAclAssociationRequest(arg0 interface{}) *gomock.Call

ReplaceNetworkAclAssociationRequest indicates an expected call of ReplaceNetworkAclAssociationRequest.

func (*MockEC2APIMockRecorder) ReplaceNetworkAclAssociationWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ReplaceNetworkAclAssociationWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ReplaceNetworkAclAssociationWithContext indicates an expected call of ReplaceNetworkAclAssociationWithContext.

func (*MockEC2APIMockRecorder) ReplaceNetworkAclEntry added in v1.19.0

func (mr *MockEC2APIMockRecorder) ReplaceNetworkAclEntry(arg0 interface{}) *gomock.Call

ReplaceNetworkAclEntry indicates an expected call of ReplaceNetworkAclEntry.

func (*MockEC2APIMockRecorder) ReplaceNetworkAclEntryRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ReplaceNetworkAclEntryRequest(arg0 interface{}) *gomock.Call

ReplaceNetworkAclEntryRequest indicates an expected call of ReplaceNetworkAclEntryRequest.

func (*MockEC2APIMockRecorder) ReplaceNetworkAclEntryWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ReplaceNetworkAclEntryWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ReplaceNetworkAclEntryWithContext indicates an expected call of ReplaceNetworkAclEntryWithContext.

func (*MockEC2APIMockRecorder) ReplaceRoute added in v1.19.0

func (mr *MockEC2APIMockRecorder) ReplaceRoute(arg0 interface{}) *gomock.Call

ReplaceRoute indicates an expected call of ReplaceRoute.

func (*MockEC2APIMockRecorder) ReplaceRouteRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ReplaceRouteRequest(arg0 interface{}) *gomock.Call

ReplaceRouteRequest indicates an expected call of ReplaceRouteRequest.

func (*MockEC2APIMockRecorder) ReplaceRouteTableAssociation added in v1.19.0

func (mr *MockEC2APIMockRecorder) ReplaceRouteTableAssociation(arg0 interface{}) *gomock.Call

ReplaceRouteTableAssociation indicates an expected call of ReplaceRouteTableAssociation.

func (*MockEC2APIMockRecorder) ReplaceRouteTableAssociationRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ReplaceRouteTableAssociationRequest(arg0 interface{}) *gomock.Call

ReplaceRouteTableAssociationRequest indicates an expected call of ReplaceRouteTableAssociationRequest.

func (*MockEC2APIMockRecorder) ReplaceRouteTableAssociationWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ReplaceRouteTableAssociationWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ReplaceRouteTableAssociationWithContext indicates an expected call of ReplaceRouteTableAssociationWithContext.

func (*MockEC2APIMockRecorder) ReplaceRouteWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ReplaceRouteWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ReplaceRouteWithContext indicates an expected call of ReplaceRouteWithContext.

func (*MockEC2APIMockRecorder) ReplaceTransitGatewayRoute added in v1.19.0

func (mr *MockEC2APIMockRecorder) ReplaceTransitGatewayRoute(arg0 interface{}) *gomock.Call

ReplaceTransitGatewayRoute indicates an expected call of ReplaceTransitGatewayRoute.

func (*MockEC2APIMockRecorder) ReplaceTransitGatewayRouteRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ReplaceTransitGatewayRouteRequest(arg0 interface{}) *gomock.Call

ReplaceTransitGatewayRouteRequest indicates an expected call of ReplaceTransitGatewayRouteRequest.

func (*MockEC2APIMockRecorder) ReplaceTransitGatewayRouteWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ReplaceTransitGatewayRouteWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ReplaceTransitGatewayRouteWithContext indicates an expected call of ReplaceTransitGatewayRouteWithContext.

func (*MockEC2APIMockRecorder) ReplaceVpnTunnel added in v1.19.0

func (mr *MockEC2APIMockRecorder) ReplaceVpnTunnel(arg0 interface{}) *gomock.Call

ReplaceVpnTunnel indicates an expected call of ReplaceVpnTunnel.

func (*MockEC2APIMockRecorder) ReplaceVpnTunnelRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ReplaceVpnTunnelRequest(arg0 interface{}) *gomock.Call

ReplaceVpnTunnelRequest indicates an expected call of ReplaceVpnTunnelRequest.

func (*MockEC2APIMockRecorder) ReplaceVpnTunnelWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ReplaceVpnTunnelWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ReplaceVpnTunnelWithContext indicates an expected call of ReplaceVpnTunnelWithContext.

func (*MockEC2APIMockRecorder) ReportInstanceStatus added in v1.19.0

func (mr *MockEC2APIMockRecorder) ReportInstanceStatus(arg0 interface{}) *gomock.Call

ReportInstanceStatus indicates an expected call of ReportInstanceStatus.

func (*MockEC2APIMockRecorder) ReportInstanceStatusRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ReportInstanceStatusRequest(arg0 interface{}) *gomock.Call

ReportInstanceStatusRequest indicates an expected call of ReportInstanceStatusRequest.

func (*MockEC2APIMockRecorder) ReportInstanceStatusWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ReportInstanceStatusWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ReportInstanceStatusWithContext indicates an expected call of ReportInstanceStatusWithContext.

func (*MockEC2APIMockRecorder) RequestSpotFleet added in v1.19.0

func (mr *MockEC2APIMockRecorder) RequestSpotFleet(arg0 interface{}) *gomock.Call

RequestSpotFleet indicates an expected call of RequestSpotFleet.

func (*MockEC2APIMockRecorder) RequestSpotFleetRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) RequestSpotFleetRequest(arg0 interface{}) *gomock.Call

RequestSpotFleetRequest indicates an expected call of RequestSpotFleetRequest.

func (*MockEC2APIMockRecorder) RequestSpotFleetWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) RequestSpotFleetWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

RequestSpotFleetWithContext indicates an expected call of RequestSpotFleetWithContext.

func (*MockEC2APIMockRecorder) RequestSpotInstances added in v1.19.0

func (mr *MockEC2APIMockRecorder) RequestSpotInstances(arg0 interface{}) *gomock.Call

RequestSpotInstances indicates an expected call of RequestSpotInstances.

func (*MockEC2APIMockRecorder) RequestSpotInstancesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) RequestSpotInstancesRequest(arg0 interface{}) *gomock.Call

RequestSpotInstancesRequest indicates an expected call of RequestSpotInstancesRequest.

func (*MockEC2APIMockRecorder) RequestSpotInstancesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) RequestSpotInstancesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

RequestSpotInstancesWithContext indicates an expected call of RequestSpotInstancesWithContext.

func (*MockEC2APIMockRecorder) ResetAddressAttribute added in v1.19.0

func (mr *MockEC2APIMockRecorder) ResetAddressAttribute(arg0 interface{}) *gomock.Call

ResetAddressAttribute indicates an expected call of ResetAddressAttribute.

func (*MockEC2APIMockRecorder) ResetAddressAttributeRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ResetAddressAttributeRequest(arg0 interface{}) *gomock.Call

ResetAddressAttributeRequest indicates an expected call of ResetAddressAttributeRequest.

func (*MockEC2APIMockRecorder) ResetAddressAttributeWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ResetAddressAttributeWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ResetAddressAttributeWithContext indicates an expected call of ResetAddressAttributeWithContext.

func (*MockEC2APIMockRecorder) ResetEbsDefaultKmsKeyId added in v1.19.0

func (mr *MockEC2APIMockRecorder) ResetEbsDefaultKmsKeyId(arg0 interface{}) *gomock.Call

ResetEbsDefaultKmsKeyId indicates an expected call of ResetEbsDefaultKmsKeyId.

func (*MockEC2APIMockRecorder) ResetEbsDefaultKmsKeyIdRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ResetEbsDefaultKmsKeyIdRequest(arg0 interface{}) *gomock.Call

ResetEbsDefaultKmsKeyIdRequest indicates an expected call of ResetEbsDefaultKmsKeyIdRequest.

func (*MockEC2APIMockRecorder) ResetEbsDefaultKmsKeyIdWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ResetEbsDefaultKmsKeyIdWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ResetEbsDefaultKmsKeyIdWithContext indicates an expected call of ResetEbsDefaultKmsKeyIdWithContext.

func (*MockEC2APIMockRecorder) ResetFpgaImageAttribute added in v1.19.0

func (mr *MockEC2APIMockRecorder) ResetFpgaImageAttribute(arg0 interface{}) *gomock.Call

ResetFpgaImageAttribute indicates an expected call of ResetFpgaImageAttribute.

func (*MockEC2APIMockRecorder) ResetFpgaImageAttributeRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ResetFpgaImageAttributeRequest(arg0 interface{}) *gomock.Call

ResetFpgaImageAttributeRequest indicates an expected call of ResetFpgaImageAttributeRequest.

func (*MockEC2APIMockRecorder) ResetFpgaImageAttributeWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ResetFpgaImageAttributeWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ResetFpgaImageAttributeWithContext indicates an expected call of ResetFpgaImageAttributeWithContext.

func (*MockEC2APIMockRecorder) ResetImageAttribute added in v1.19.0

func (mr *MockEC2APIMockRecorder) ResetImageAttribute(arg0 interface{}) *gomock.Call

ResetImageAttribute indicates an expected call of ResetImageAttribute.

func (*MockEC2APIMockRecorder) ResetImageAttributeRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ResetImageAttributeRequest(arg0 interface{}) *gomock.Call

ResetImageAttributeRequest indicates an expected call of ResetImageAttributeRequest.

func (*MockEC2APIMockRecorder) ResetImageAttributeWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ResetImageAttributeWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ResetImageAttributeWithContext indicates an expected call of ResetImageAttributeWithContext.

func (*MockEC2APIMockRecorder) ResetInstanceAttribute added in v1.19.0

func (mr *MockEC2APIMockRecorder) ResetInstanceAttribute(arg0 interface{}) *gomock.Call

ResetInstanceAttribute indicates an expected call of ResetInstanceAttribute.

func (*MockEC2APIMockRecorder) ResetInstanceAttributeRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ResetInstanceAttributeRequest(arg0 interface{}) *gomock.Call

ResetInstanceAttributeRequest indicates an expected call of ResetInstanceAttributeRequest.

func (*MockEC2APIMockRecorder) ResetInstanceAttributeWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ResetInstanceAttributeWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ResetInstanceAttributeWithContext indicates an expected call of ResetInstanceAttributeWithContext.

func (*MockEC2APIMockRecorder) ResetNetworkInterfaceAttribute added in v1.19.0

func (mr *MockEC2APIMockRecorder) ResetNetworkInterfaceAttribute(arg0 interface{}) *gomock.Call

ResetNetworkInterfaceAttribute indicates an expected call of ResetNetworkInterfaceAttribute.

func (*MockEC2APIMockRecorder) ResetNetworkInterfaceAttributeRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ResetNetworkInterfaceAttributeRequest(arg0 interface{}) *gomock.Call

ResetNetworkInterfaceAttributeRequest indicates an expected call of ResetNetworkInterfaceAttributeRequest.

func (*MockEC2APIMockRecorder) ResetNetworkInterfaceAttributeWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ResetNetworkInterfaceAttributeWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ResetNetworkInterfaceAttributeWithContext indicates an expected call of ResetNetworkInterfaceAttributeWithContext.

func (*MockEC2APIMockRecorder) ResetSnapshotAttribute added in v1.19.0

func (mr *MockEC2APIMockRecorder) ResetSnapshotAttribute(arg0 interface{}) *gomock.Call

ResetSnapshotAttribute indicates an expected call of ResetSnapshotAttribute.

func (*MockEC2APIMockRecorder) ResetSnapshotAttributeRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) ResetSnapshotAttributeRequest(arg0 interface{}) *gomock.Call

ResetSnapshotAttributeRequest indicates an expected call of ResetSnapshotAttributeRequest.

func (*MockEC2APIMockRecorder) ResetSnapshotAttributeWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) ResetSnapshotAttributeWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

ResetSnapshotAttributeWithContext indicates an expected call of ResetSnapshotAttributeWithContext.

func (*MockEC2APIMockRecorder) RestoreAddressToClassic added in v1.19.0

func (mr *MockEC2APIMockRecorder) RestoreAddressToClassic(arg0 interface{}) *gomock.Call

RestoreAddressToClassic indicates an expected call of RestoreAddressToClassic.

func (*MockEC2APIMockRecorder) RestoreAddressToClassicRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) RestoreAddressToClassicRequest(arg0 interface{}) *gomock.Call

RestoreAddressToClassicRequest indicates an expected call of RestoreAddressToClassicRequest.

func (*MockEC2APIMockRecorder) RestoreAddressToClassicWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) RestoreAddressToClassicWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

RestoreAddressToClassicWithContext indicates an expected call of RestoreAddressToClassicWithContext.

func (*MockEC2APIMockRecorder) RestoreImageFromRecycleBin added in v1.19.0

func (mr *MockEC2APIMockRecorder) RestoreImageFromRecycleBin(arg0 interface{}) *gomock.Call

RestoreImageFromRecycleBin indicates an expected call of RestoreImageFromRecycleBin.

func (*MockEC2APIMockRecorder) RestoreImageFromRecycleBinRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) RestoreImageFromRecycleBinRequest(arg0 interface{}) *gomock.Call

RestoreImageFromRecycleBinRequest indicates an expected call of RestoreImageFromRecycleBinRequest.

func (*MockEC2APIMockRecorder) RestoreImageFromRecycleBinWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) RestoreImageFromRecycleBinWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

RestoreImageFromRecycleBinWithContext indicates an expected call of RestoreImageFromRecycleBinWithContext.

func (*MockEC2APIMockRecorder) RestoreManagedPrefixListVersion added in v1.19.0

func (mr *MockEC2APIMockRecorder) RestoreManagedPrefixListVersion(arg0 interface{}) *gomock.Call

RestoreManagedPrefixListVersion indicates an expected call of RestoreManagedPrefixListVersion.

func (*MockEC2APIMockRecorder) RestoreManagedPrefixListVersionRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) RestoreManagedPrefixListVersionRequest(arg0 interface{}) *gomock.Call

RestoreManagedPrefixListVersionRequest indicates an expected call of RestoreManagedPrefixListVersionRequest.

func (*MockEC2APIMockRecorder) RestoreManagedPrefixListVersionWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) RestoreManagedPrefixListVersionWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

RestoreManagedPrefixListVersionWithContext indicates an expected call of RestoreManagedPrefixListVersionWithContext.

func (*MockEC2APIMockRecorder) RestoreSnapshotFromRecycleBin added in v1.19.0

func (mr *MockEC2APIMockRecorder) RestoreSnapshotFromRecycleBin(arg0 interface{}) *gomock.Call

RestoreSnapshotFromRecycleBin indicates an expected call of RestoreSnapshotFromRecycleBin.

func (*MockEC2APIMockRecorder) RestoreSnapshotFromRecycleBinRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) RestoreSnapshotFromRecycleBinRequest(arg0 interface{}) *gomock.Call

RestoreSnapshotFromRecycleBinRequest indicates an expected call of RestoreSnapshotFromRecycleBinRequest.

func (*MockEC2APIMockRecorder) RestoreSnapshotFromRecycleBinWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) RestoreSnapshotFromRecycleBinWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

RestoreSnapshotFromRecycleBinWithContext indicates an expected call of RestoreSnapshotFromRecycleBinWithContext.

func (*MockEC2APIMockRecorder) RestoreSnapshotTier added in v1.19.0

func (mr *MockEC2APIMockRecorder) RestoreSnapshotTier(arg0 interface{}) *gomock.Call

RestoreSnapshotTier indicates an expected call of RestoreSnapshotTier.

func (*MockEC2APIMockRecorder) RestoreSnapshotTierRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) RestoreSnapshotTierRequest(arg0 interface{}) *gomock.Call

RestoreSnapshotTierRequest indicates an expected call of RestoreSnapshotTierRequest.

func (*MockEC2APIMockRecorder) RestoreSnapshotTierWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) RestoreSnapshotTierWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

RestoreSnapshotTierWithContext indicates an expected call of RestoreSnapshotTierWithContext.

func (*MockEC2APIMockRecorder) RevokeClientVpnIngress added in v1.19.0

func (mr *MockEC2APIMockRecorder) RevokeClientVpnIngress(arg0 interface{}) *gomock.Call

RevokeClientVpnIngress indicates an expected call of RevokeClientVpnIngress.

func (*MockEC2APIMockRecorder) RevokeClientVpnIngressRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) RevokeClientVpnIngressRequest(arg0 interface{}) *gomock.Call

RevokeClientVpnIngressRequest indicates an expected call of RevokeClientVpnIngressRequest.

func (*MockEC2APIMockRecorder) RevokeClientVpnIngressWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) RevokeClientVpnIngressWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

RevokeClientVpnIngressWithContext indicates an expected call of RevokeClientVpnIngressWithContext.

func (*MockEC2APIMockRecorder) RevokeSecurityGroupEgress added in v1.19.0

func (mr *MockEC2APIMockRecorder) RevokeSecurityGroupEgress(arg0 interface{}) *gomock.Call

RevokeSecurityGroupEgress indicates an expected call of RevokeSecurityGroupEgress.

func (*MockEC2APIMockRecorder) RevokeSecurityGroupEgressRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) RevokeSecurityGroupEgressRequest(arg0 interface{}) *gomock.Call

RevokeSecurityGroupEgressRequest indicates an expected call of RevokeSecurityGroupEgressRequest.

func (*MockEC2APIMockRecorder) RevokeSecurityGroupEgressWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) RevokeSecurityGroupEgressWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

RevokeSecurityGroupEgressWithContext indicates an expected call of RevokeSecurityGroupEgressWithContext.

func (*MockEC2APIMockRecorder) RevokeSecurityGroupIngress added in v1.19.0

func (mr *MockEC2APIMockRecorder) RevokeSecurityGroupIngress(arg0 interface{}) *gomock.Call

RevokeSecurityGroupIngress indicates an expected call of RevokeSecurityGroupIngress.

func (*MockEC2APIMockRecorder) RevokeSecurityGroupIngressRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) RevokeSecurityGroupIngressRequest(arg0 interface{}) *gomock.Call

RevokeSecurityGroupIngressRequest indicates an expected call of RevokeSecurityGroupIngressRequest.

func (*MockEC2APIMockRecorder) RevokeSecurityGroupIngressWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) RevokeSecurityGroupIngressWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

RevokeSecurityGroupIngressWithContext indicates an expected call of RevokeSecurityGroupIngressWithContext.

func (*MockEC2APIMockRecorder) RunInstances added in v1.19.0

func (mr *MockEC2APIMockRecorder) RunInstances(arg0 interface{}) *gomock.Call

RunInstances indicates an expected call of RunInstances.

func (*MockEC2APIMockRecorder) RunInstancesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) RunInstancesRequest(arg0 interface{}) *gomock.Call

RunInstancesRequest indicates an expected call of RunInstancesRequest.

func (*MockEC2APIMockRecorder) RunInstancesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) RunInstancesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

RunInstancesWithContext indicates an expected call of RunInstancesWithContext.

func (*MockEC2APIMockRecorder) RunScheduledInstances added in v1.19.0

func (mr *MockEC2APIMockRecorder) RunScheduledInstances(arg0 interface{}) *gomock.Call

RunScheduledInstances indicates an expected call of RunScheduledInstances.

func (*MockEC2APIMockRecorder) RunScheduledInstancesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) RunScheduledInstancesRequest(arg0 interface{}) *gomock.Call

RunScheduledInstancesRequest indicates an expected call of RunScheduledInstancesRequest.

func (*MockEC2APIMockRecorder) RunScheduledInstancesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) RunScheduledInstancesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

RunScheduledInstancesWithContext indicates an expected call of RunScheduledInstancesWithContext.

func (*MockEC2APIMockRecorder) SearchLocalGatewayRoutes added in v1.19.0

func (mr *MockEC2APIMockRecorder) SearchLocalGatewayRoutes(arg0 interface{}) *gomock.Call

SearchLocalGatewayRoutes indicates an expected call of SearchLocalGatewayRoutes.

func (*MockEC2APIMockRecorder) SearchLocalGatewayRoutesPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) SearchLocalGatewayRoutesPages(arg0, arg1 interface{}) *gomock.Call

SearchLocalGatewayRoutesPages indicates an expected call of SearchLocalGatewayRoutesPages.

func (*MockEC2APIMockRecorder) SearchLocalGatewayRoutesPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) SearchLocalGatewayRoutesPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

SearchLocalGatewayRoutesPagesWithContext indicates an expected call of SearchLocalGatewayRoutesPagesWithContext.

func (*MockEC2APIMockRecorder) SearchLocalGatewayRoutesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) SearchLocalGatewayRoutesRequest(arg0 interface{}) *gomock.Call

SearchLocalGatewayRoutesRequest indicates an expected call of SearchLocalGatewayRoutesRequest.

func (*MockEC2APIMockRecorder) SearchLocalGatewayRoutesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) SearchLocalGatewayRoutesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

SearchLocalGatewayRoutesWithContext indicates an expected call of SearchLocalGatewayRoutesWithContext.

func (*MockEC2APIMockRecorder) SearchTransitGatewayMulticastGroups added in v1.19.0

func (mr *MockEC2APIMockRecorder) SearchTransitGatewayMulticastGroups(arg0 interface{}) *gomock.Call

SearchTransitGatewayMulticastGroups indicates an expected call of SearchTransitGatewayMulticastGroups.

func (*MockEC2APIMockRecorder) SearchTransitGatewayMulticastGroupsPages added in v1.19.0

func (mr *MockEC2APIMockRecorder) SearchTransitGatewayMulticastGroupsPages(arg0, arg1 interface{}) *gomock.Call

SearchTransitGatewayMulticastGroupsPages indicates an expected call of SearchTransitGatewayMulticastGroupsPages.

func (*MockEC2APIMockRecorder) SearchTransitGatewayMulticastGroupsPagesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) SearchTransitGatewayMulticastGroupsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call

SearchTransitGatewayMulticastGroupsPagesWithContext indicates an expected call of SearchTransitGatewayMulticastGroupsPagesWithContext.

func (*MockEC2APIMockRecorder) SearchTransitGatewayMulticastGroupsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) SearchTransitGatewayMulticastGroupsRequest(arg0 interface{}) *gomock.Call

SearchTransitGatewayMulticastGroupsRequest indicates an expected call of SearchTransitGatewayMulticastGroupsRequest.

func (*MockEC2APIMockRecorder) SearchTransitGatewayMulticastGroupsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) SearchTransitGatewayMulticastGroupsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

SearchTransitGatewayMulticastGroupsWithContext indicates an expected call of SearchTransitGatewayMulticastGroupsWithContext.

func (*MockEC2APIMockRecorder) SearchTransitGatewayRoutes added in v1.19.0

func (mr *MockEC2APIMockRecorder) SearchTransitGatewayRoutes(arg0 interface{}) *gomock.Call

SearchTransitGatewayRoutes indicates an expected call of SearchTransitGatewayRoutes.

func (*MockEC2APIMockRecorder) SearchTransitGatewayRoutesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) SearchTransitGatewayRoutesRequest(arg0 interface{}) *gomock.Call

SearchTransitGatewayRoutesRequest indicates an expected call of SearchTransitGatewayRoutesRequest.

func (*MockEC2APIMockRecorder) SearchTransitGatewayRoutesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) SearchTransitGatewayRoutesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

SearchTransitGatewayRoutesWithContext indicates an expected call of SearchTransitGatewayRoutesWithContext.

func (*MockEC2APIMockRecorder) SendDiagnosticInterrupt added in v1.19.0

func (mr *MockEC2APIMockRecorder) SendDiagnosticInterrupt(arg0 interface{}) *gomock.Call

SendDiagnosticInterrupt indicates an expected call of SendDiagnosticInterrupt.

func (*MockEC2APIMockRecorder) SendDiagnosticInterruptRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) SendDiagnosticInterruptRequest(arg0 interface{}) *gomock.Call

SendDiagnosticInterruptRequest indicates an expected call of SendDiagnosticInterruptRequest.

func (*MockEC2APIMockRecorder) SendDiagnosticInterruptWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) SendDiagnosticInterruptWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

SendDiagnosticInterruptWithContext indicates an expected call of SendDiagnosticInterruptWithContext.

func (*MockEC2APIMockRecorder) StartInstances added in v1.19.0

func (mr *MockEC2APIMockRecorder) StartInstances(arg0 interface{}) *gomock.Call

StartInstances indicates an expected call of StartInstances.

func (*MockEC2APIMockRecorder) StartInstancesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) StartInstancesRequest(arg0 interface{}) *gomock.Call

StartInstancesRequest indicates an expected call of StartInstancesRequest.

func (*MockEC2APIMockRecorder) StartInstancesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) StartInstancesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

StartInstancesWithContext indicates an expected call of StartInstancesWithContext.

func (*MockEC2APIMockRecorder) StartNetworkInsightsAccessScopeAnalysis added in v1.19.0

func (mr *MockEC2APIMockRecorder) StartNetworkInsightsAccessScopeAnalysis(arg0 interface{}) *gomock.Call

StartNetworkInsightsAccessScopeAnalysis indicates an expected call of StartNetworkInsightsAccessScopeAnalysis.

func (*MockEC2APIMockRecorder) StartNetworkInsightsAccessScopeAnalysisRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) StartNetworkInsightsAccessScopeAnalysisRequest(arg0 interface{}) *gomock.Call

StartNetworkInsightsAccessScopeAnalysisRequest indicates an expected call of StartNetworkInsightsAccessScopeAnalysisRequest.

func (*MockEC2APIMockRecorder) StartNetworkInsightsAccessScopeAnalysisWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) StartNetworkInsightsAccessScopeAnalysisWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

StartNetworkInsightsAccessScopeAnalysisWithContext indicates an expected call of StartNetworkInsightsAccessScopeAnalysisWithContext.

func (*MockEC2APIMockRecorder) StartNetworkInsightsAnalysis added in v1.19.0

func (mr *MockEC2APIMockRecorder) StartNetworkInsightsAnalysis(arg0 interface{}) *gomock.Call

StartNetworkInsightsAnalysis indicates an expected call of StartNetworkInsightsAnalysis.

func (*MockEC2APIMockRecorder) StartNetworkInsightsAnalysisRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) StartNetworkInsightsAnalysisRequest(arg0 interface{}) *gomock.Call

StartNetworkInsightsAnalysisRequest indicates an expected call of StartNetworkInsightsAnalysisRequest.

func (*MockEC2APIMockRecorder) StartNetworkInsightsAnalysisWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) StartNetworkInsightsAnalysisWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

StartNetworkInsightsAnalysisWithContext indicates an expected call of StartNetworkInsightsAnalysisWithContext.

func (*MockEC2APIMockRecorder) StartVpcEndpointServicePrivateDnsVerification added in v1.19.0

func (mr *MockEC2APIMockRecorder) StartVpcEndpointServicePrivateDnsVerification(arg0 interface{}) *gomock.Call

StartVpcEndpointServicePrivateDnsVerification indicates an expected call of StartVpcEndpointServicePrivateDnsVerification.

func (*MockEC2APIMockRecorder) StartVpcEndpointServicePrivateDnsVerificationRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) StartVpcEndpointServicePrivateDnsVerificationRequest(arg0 interface{}) *gomock.Call

StartVpcEndpointServicePrivateDnsVerificationRequest indicates an expected call of StartVpcEndpointServicePrivateDnsVerificationRequest.

func (*MockEC2APIMockRecorder) StartVpcEndpointServicePrivateDnsVerificationWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) StartVpcEndpointServicePrivateDnsVerificationWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

StartVpcEndpointServicePrivateDnsVerificationWithContext indicates an expected call of StartVpcEndpointServicePrivateDnsVerificationWithContext.

func (*MockEC2APIMockRecorder) StopInstances added in v1.19.0

func (mr *MockEC2APIMockRecorder) StopInstances(arg0 interface{}) *gomock.Call

StopInstances indicates an expected call of StopInstances.

func (*MockEC2APIMockRecorder) StopInstancesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) StopInstancesRequest(arg0 interface{}) *gomock.Call

StopInstancesRequest indicates an expected call of StopInstancesRequest.

func (*MockEC2APIMockRecorder) StopInstancesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) StopInstancesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

StopInstancesWithContext indicates an expected call of StopInstancesWithContext.

func (*MockEC2APIMockRecorder) TerminateClientVpnConnections added in v1.19.0

func (mr *MockEC2APIMockRecorder) TerminateClientVpnConnections(arg0 interface{}) *gomock.Call

TerminateClientVpnConnections indicates an expected call of TerminateClientVpnConnections.

func (*MockEC2APIMockRecorder) TerminateClientVpnConnectionsRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) TerminateClientVpnConnectionsRequest(arg0 interface{}) *gomock.Call

TerminateClientVpnConnectionsRequest indicates an expected call of TerminateClientVpnConnectionsRequest.

func (*MockEC2APIMockRecorder) TerminateClientVpnConnectionsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) TerminateClientVpnConnectionsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

TerminateClientVpnConnectionsWithContext indicates an expected call of TerminateClientVpnConnectionsWithContext.

func (*MockEC2APIMockRecorder) TerminateInstances added in v1.19.0

func (mr *MockEC2APIMockRecorder) TerminateInstances(arg0 interface{}) *gomock.Call

TerminateInstances indicates an expected call of TerminateInstances.

func (*MockEC2APIMockRecorder) TerminateInstancesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) TerminateInstancesRequest(arg0 interface{}) *gomock.Call

TerminateInstancesRequest indicates an expected call of TerminateInstancesRequest.

func (*MockEC2APIMockRecorder) TerminateInstancesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) TerminateInstancesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

TerminateInstancesWithContext indicates an expected call of TerminateInstancesWithContext.

func (*MockEC2APIMockRecorder) UnassignIpv6Addresses added in v1.19.0

func (mr *MockEC2APIMockRecorder) UnassignIpv6Addresses(arg0 interface{}) *gomock.Call

UnassignIpv6Addresses indicates an expected call of UnassignIpv6Addresses.

func (*MockEC2APIMockRecorder) UnassignIpv6AddressesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) UnassignIpv6AddressesRequest(arg0 interface{}) *gomock.Call

UnassignIpv6AddressesRequest indicates an expected call of UnassignIpv6AddressesRequest.

func (*MockEC2APIMockRecorder) UnassignIpv6AddressesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) UnassignIpv6AddressesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

UnassignIpv6AddressesWithContext indicates an expected call of UnassignIpv6AddressesWithContext.

func (*MockEC2APIMockRecorder) UnassignPrivateIpAddresses added in v1.19.0

func (mr *MockEC2APIMockRecorder) UnassignPrivateIpAddresses(arg0 interface{}) *gomock.Call

UnassignPrivateIpAddresses indicates an expected call of UnassignPrivateIpAddresses.

func (*MockEC2APIMockRecorder) UnassignPrivateIpAddressesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) UnassignPrivateIpAddressesRequest(arg0 interface{}) *gomock.Call

UnassignPrivateIpAddressesRequest indicates an expected call of UnassignPrivateIpAddressesRequest.

func (*MockEC2APIMockRecorder) UnassignPrivateIpAddressesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) UnassignPrivateIpAddressesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

UnassignPrivateIpAddressesWithContext indicates an expected call of UnassignPrivateIpAddressesWithContext.

func (*MockEC2APIMockRecorder) UnassignPrivateNatGatewayAddress added in v1.19.0

func (mr *MockEC2APIMockRecorder) UnassignPrivateNatGatewayAddress(arg0 interface{}) *gomock.Call

UnassignPrivateNatGatewayAddress indicates an expected call of UnassignPrivateNatGatewayAddress.

func (*MockEC2APIMockRecorder) UnassignPrivateNatGatewayAddressRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) UnassignPrivateNatGatewayAddressRequest(arg0 interface{}) *gomock.Call

UnassignPrivateNatGatewayAddressRequest indicates an expected call of UnassignPrivateNatGatewayAddressRequest.

func (*MockEC2APIMockRecorder) UnassignPrivateNatGatewayAddressWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) UnassignPrivateNatGatewayAddressWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

UnassignPrivateNatGatewayAddressWithContext indicates an expected call of UnassignPrivateNatGatewayAddressWithContext.

func (*MockEC2APIMockRecorder) UnmonitorInstances added in v1.19.0

func (mr *MockEC2APIMockRecorder) UnmonitorInstances(arg0 interface{}) *gomock.Call

UnmonitorInstances indicates an expected call of UnmonitorInstances.

func (*MockEC2APIMockRecorder) UnmonitorInstancesRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) UnmonitorInstancesRequest(arg0 interface{}) *gomock.Call

UnmonitorInstancesRequest indicates an expected call of UnmonitorInstancesRequest.

func (*MockEC2APIMockRecorder) UnmonitorInstancesWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) UnmonitorInstancesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

UnmonitorInstancesWithContext indicates an expected call of UnmonitorInstancesWithContext.

func (*MockEC2APIMockRecorder) UpdateSecurityGroupRuleDescriptionsEgress added in v1.19.0

func (mr *MockEC2APIMockRecorder) UpdateSecurityGroupRuleDescriptionsEgress(arg0 interface{}) *gomock.Call

UpdateSecurityGroupRuleDescriptionsEgress indicates an expected call of UpdateSecurityGroupRuleDescriptionsEgress.

func (*MockEC2APIMockRecorder) UpdateSecurityGroupRuleDescriptionsEgressRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) UpdateSecurityGroupRuleDescriptionsEgressRequest(arg0 interface{}) *gomock.Call

UpdateSecurityGroupRuleDescriptionsEgressRequest indicates an expected call of UpdateSecurityGroupRuleDescriptionsEgressRequest.

func (*MockEC2APIMockRecorder) UpdateSecurityGroupRuleDescriptionsEgressWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) UpdateSecurityGroupRuleDescriptionsEgressWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

UpdateSecurityGroupRuleDescriptionsEgressWithContext indicates an expected call of UpdateSecurityGroupRuleDescriptionsEgressWithContext.

func (*MockEC2APIMockRecorder) UpdateSecurityGroupRuleDescriptionsIngress added in v1.19.0

func (mr *MockEC2APIMockRecorder) UpdateSecurityGroupRuleDescriptionsIngress(arg0 interface{}) *gomock.Call

UpdateSecurityGroupRuleDescriptionsIngress indicates an expected call of UpdateSecurityGroupRuleDescriptionsIngress.

func (*MockEC2APIMockRecorder) UpdateSecurityGroupRuleDescriptionsIngressRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) UpdateSecurityGroupRuleDescriptionsIngressRequest(arg0 interface{}) *gomock.Call

UpdateSecurityGroupRuleDescriptionsIngressRequest indicates an expected call of UpdateSecurityGroupRuleDescriptionsIngressRequest.

func (*MockEC2APIMockRecorder) UpdateSecurityGroupRuleDescriptionsIngressWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) UpdateSecurityGroupRuleDescriptionsIngressWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

UpdateSecurityGroupRuleDescriptionsIngressWithContext indicates an expected call of UpdateSecurityGroupRuleDescriptionsIngressWithContext.

func (*MockEC2APIMockRecorder) WaitUntilBundleTaskComplete added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilBundleTaskComplete(arg0 interface{}) *gomock.Call

WaitUntilBundleTaskComplete indicates an expected call of WaitUntilBundleTaskComplete.

func (*MockEC2APIMockRecorder) WaitUntilBundleTaskCompleteWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilBundleTaskCompleteWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

WaitUntilBundleTaskCompleteWithContext indicates an expected call of WaitUntilBundleTaskCompleteWithContext.

func (*MockEC2APIMockRecorder) WaitUntilConversionTaskCancelled added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilConversionTaskCancelled(arg0 interface{}) *gomock.Call

WaitUntilConversionTaskCancelled indicates an expected call of WaitUntilConversionTaskCancelled.

func (*MockEC2APIMockRecorder) WaitUntilConversionTaskCancelledWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilConversionTaskCancelledWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

WaitUntilConversionTaskCancelledWithContext indicates an expected call of WaitUntilConversionTaskCancelledWithContext.

func (*MockEC2APIMockRecorder) WaitUntilConversionTaskCompleted added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilConversionTaskCompleted(arg0 interface{}) *gomock.Call

WaitUntilConversionTaskCompleted indicates an expected call of WaitUntilConversionTaskCompleted.

func (*MockEC2APIMockRecorder) WaitUntilConversionTaskCompletedWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilConversionTaskCompletedWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

WaitUntilConversionTaskCompletedWithContext indicates an expected call of WaitUntilConversionTaskCompletedWithContext.

func (*MockEC2APIMockRecorder) WaitUntilConversionTaskDeleted added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilConversionTaskDeleted(arg0 interface{}) *gomock.Call

WaitUntilConversionTaskDeleted indicates an expected call of WaitUntilConversionTaskDeleted.

func (*MockEC2APIMockRecorder) WaitUntilConversionTaskDeletedWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilConversionTaskDeletedWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

WaitUntilConversionTaskDeletedWithContext indicates an expected call of WaitUntilConversionTaskDeletedWithContext.

func (*MockEC2APIMockRecorder) WaitUntilCustomerGatewayAvailable added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilCustomerGatewayAvailable(arg0 interface{}) *gomock.Call

WaitUntilCustomerGatewayAvailable indicates an expected call of WaitUntilCustomerGatewayAvailable.

func (*MockEC2APIMockRecorder) WaitUntilCustomerGatewayAvailableWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilCustomerGatewayAvailableWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

WaitUntilCustomerGatewayAvailableWithContext indicates an expected call of WaitUntilCustomerGatewayAvailableWithContext.

func (*MockEC2APIMockRecorder) WaitUntilExportTaskCancelled added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilExportTaskCancelled(arg0 interface{}) *gomock.Call

WaitUntilExportTaskCancelled indicates an expected call of WaitUntilExportTaskCancelled.

func (*MockEC2APIMockRecorder) WaitUntilExportTaskCancelledWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilExportTaskCancelledWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

WaitUntilExportTaskCancelledWithContext indicates an expected call of WaitUntilExportTaskCancelledWithContext.

func (*MockEC2APIMockRecorder) WaitUntilExportTaskCompleted added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilExportTaskCompleted(arg0 interface{}) *gomock.Call

WaitUntilExportTaskCompleted indicates an expected call of WaitUntilExportTaskCompleted.

func (*MockEC2APIMockRecorder) WaitUntilExportTaskCompletedWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilExportTaskCompletedWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

WaitUntilExportTaskCompletedWithContext indicates an expected call of WaitUntilExportTaskCompletedWithContext.

func (*MockEC2APIMockRecorder) WaitUntilImageAvailable added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilImageAvailable(arg0 interface{}) *gomock.Call

WaitUntilImageAvailable indicates an expected call of WaitUntilImageAvailable.

func (*MockEC2APIMockRecorder) WaitUntilImageAvailableWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilImageAvailableWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

WaitUntilImageAvailableWithContext indicates an expected call of WaitUntilImageAvailableWithContext.

func (*MockEC2APIMockRecorder) WaitUntilImageExists added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilImageExists(arg0 interface{}) *gomock.Call

WaitUntilImageExists indicates an expected call of WaitUntilImageExists.

func (*MockEC2APIMockRecorder) WaitUntilImageExistsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilImageExistsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

WaitUntilImageExistsWithContext indicates an expected call of WaitUntilImageExistsWithContext.

func (*MockEC2APIMockRecorder) WaitUntilInstanceExists added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilInstanceExists(arg0 interface{}) *gomock.Call

WaitUntilInstanceExists indicates an expected call of WaitUntilInstanceExists.

func (*MockEC2APIMockRecorder) WaitUntilInstanceExistsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilInstanceExistsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

WaitUntilInstanceExistsWithContext indicates an expected call of WaitUntilInstanceExistsWithContext.

func (*MockEC2APIMockRecorder) WaitUntilInstanceRunning added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilInstanceRunning(arg0 interface{}) *gomock.Call

WaitUntilInstanceRunning indicates an expected call of WaitUntilInstanceRunning.

func (*MockEC2APIMockRecorder) WaitUntilInstanceRunningWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilInstanceRunningWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

WaitUntilInstanceRunningWithContext indicates an expected call of WaitUntilInstanceRunningWithContext.

func (*MockEC2APIMockRecorder) WaitUntilInstanceStatusOk added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilInstanceStatusOk(arg0 interface{}) *gomock.Call

WaitUntilInstanceStatusOk indicates an expected call of WaitUntilInstanceStatusOk.

func (*MockEC2APIMockRecorder) WaitUntilInstanceStatusOkWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilInstanceStatusOkWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

WaitUntilInstanceStatusOkWithContext indicates an expected call of WaitUntilInstanceStatusOkWithContext.

func (*MockEC2APIMockRecorder) WaitUntilInstanceStopped added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilInstanceStopped(arg0 interface{}) *gomock.Call

WaitUntilInstanceStopped indicates an expected call of WaitUntilInstanceStopped.

func (*MockEC2APIMockRecorder) WaitUntilInstanceStoppedWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilInstanceStoppedWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

WaitUntilInstanceStoppedWithContext indicates an expected call of WaitUntilInstanceStoppedWithContext.

func (*MockEC2APIMockRecorder) WaitUntilInstanceTerminated added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilInstanceTerminated(arg0 interface{}) *gomock.Call

WaitUntilInstanceTerminated indicates an expected call of WaitUntilInstanceTerminated.

func (*MockEC2APIMockRecorder) WaitUntilInstanceTerminatedWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilInstanceTerminatedWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

WaitUntilInstanceTerminatedWithContext indicates an expected call of WaitUntilInstanceTerminatedWithContext.

func (*MockEC2APIMockRecorder) WaitUntilInternetGatewayExists added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilInternetGatewayExists(arg0 interface{}) *gomock.Call

WaitUntilInternetGatewayExists indicates an expected call of WaitUntilInternetGatewayExists.

func (*MockEC2APIMockRecorder) WaitUntilInternetGatewayExistsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilInternetGatewayExistsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

WaitUntilInternetGatewayExistsWithContext indicates an expected call of WaitUntilInternetGatewayExistsWithContext.

func (*MockEC2APIMockRecorder) WaitUntilKeyPairExists added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilKeyPairExists(arg0 interface{}) *gomock.Call

WaitUntilKeyPairExists indicates an expected call of WaitUntilKeyPairExists.

func (*MockEC2APIMockRecorder) WaitUntilKeyPairExistsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilKeyPairExistsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

WaitUntilKeyPairExistsWithContext indicates an expected call of WaitUntilKeyPairExistsWithContext.

func (*MockEC2APIMockRecorder) WaitUntilNatGatewayAvailable added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilNatGatewayAvailable(arg0 interface{}) *gomock.Call

WaitUntilNatGatewayAvailable indicates an expected call of WaitUntilNatGatewayAvailable.

func (*MockEC2APIMockRecorder) WaitUntilNatGatewayAvailableWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilNatGatewayAvailableWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

WaitUntilNatGatewayAvailableWithContext indicates an expected call of WaitUntilNatGatewayAvailableWithContext.

func (*MockEC2APIMockRecorder) WaitUntilNatGatewayDeleted added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilNatGatewayDeleted(arg0 interface{}) *gomock.Call

WaitUntilNatGatewayDeleted indicates an expected call of WaitUntilNatGatewayDeleted.

func (*MockEC2APIMockRecorder) WaitUntilNatGatewayDeletedWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilNatGatewayDeletedWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

WaitUntilNatGatewayDeletedWithContext indicates an expected call of WaitUntilNatGatewayDeletedWithContext.

func (*MockEC2APIMockRecorder) WaitUntilNetworkInterfaceAvailable added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilNetworkInterfaceAvailable(arg0 interface{}) *gomock.Call

WaitUntilNetworkInterfaceAvailable indicates an expected call of WaitUntilNetworkInterfaceAvailable.

func (*MockEC2APIMockRecorder) WaitUntilNetworkInterfaceAvailableWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilNetworkInterfaceAvailableWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

WaitUntilNetworkInterfaceAvailableWithContext indicates an expected call of WaitUntilNetworkInterfaceAvailableWithContext.

func (*MockEC2APIMockRecorder) WaitUntilPasswordDataAvailable added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilPasswordDataAvailable(arg0 interface{}) *gomock.Call

WaitUntilPasswordDataAvailable indicates an expected call of WaitUntilPasswordDataAvailable.

func (*MockEC2APIMockRecorder) WaitUntilPasswordDataAvailableWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilPasswordDataAvailableWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

WaitUntilPasswordDataAvailableWithContext indicates an expected call of WaitUntilPasswordDataAvailableWithContext.

func (*MockEC2APIMockRecorder) WaitUntilSecurityGroupExists added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilSecurityGroupExists(arg0 interface{}) *gomock.Call

WaitUntilSecurityGroupExists indicates an expected call of WaitUntilSecurityGroupExists.

func (*MockEC2APIMockRecorder) WaitUntilSecurityGroupExistsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilSecurityGroupExistsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

WaitUntilSecurityGroupExistsWithContext indicates an expected call of WaitUntilSecurityGroupExistsWithContext.

func (*MockEC2APIMockRecorder) WaitUntilSnapshotCompleted added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilSnapshotCompleted(arg0 interface{}) *gomock.Call

WaitUntilSnapshotCompleted indicates an expected call of WaitUntilSnapshotCompleted.

func (*MockEC2APIMockRecorder) WaitUntilSnapshotCompletedWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilSnapshotCompletedWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

WaitUntilSnapshotCompletedWithContext indicates an expected call of WaitUntilSnapshotCompletedWithContext.

func (*MockEC2APIMockRecorder) WaitUntilSnapshotImported added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilSnapshotImported(arg0 interface{}) *gomock.Call

WaitUntilSnapshotImported indicates an expected call of WaitUntilSnapshotImported.

func (*MockEC2APIMockRecorder) WaitUntilSnapshotImportedWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilSnapshotImportedWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

WaitUntilSnapshotImportedWithContext indicates an expected call of WaitUntilSnapshotImportedWithContext.

func (*MockEC2APIMockRecorder) WaitUntilSpotInstanceRequestFulfilled added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilSpotInstanceRequestFulfilled(arg0 interface{}) *gomock.Call

WaitUntilSpotInstanceRequestFulfilled indicates an expected call of WaitUntilSpotInstanceRequestFulfilled.

func (*MockEC2APIMockRecorder) WaitUntilSpotInstanceRequestFulfilledWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilSpotInstanceRequestFulfilledWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

WaitUntilSpotInstanceRequestFulfilledWithContext indicates an expected call of WaitUntilSpotInstanceRequestFulfilledWithContext.

func (*MockEC2APIMockRecorder) WaitUntilStoreImageTaskComplete added in v1.22.0

func (mr *MockEC2APIMockRecorder) WaitUntilStoreImageTaskComplete(arg0 interface{}) *gomock.Call

WaitUntilStoreImageTaskComplete indicates an expected call of WaitUntilStoreImageTaskComplete.

func (*MockEC2APIMockRecorder) WaitUntilStoreImageTaskCompleteWithContext added in v1.22.0

func (mr *MockEC2APIMockRecorder) WaitUntilStoreImageTaskCompleteWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

WaitUntilStoreImageTaskCompleteWithContext indicates an expected call of WaitUntilStoreImageTaskCompleteWithContext.

func (*MockEC2APIMockRecorder) WaitUntilSubnetAvailable added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilSubnetAvailable(arg0 interface{}) *gomock.Call

WaitUntilSubnetAvailable indicates an expected call of WaitUntilSubnetAvailable.

func (*MockEC2APIMockRecorder) WaitUntilSubnetAvailableWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilSubnetAvailableWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

WaitUntilSubnetAvailableWithContext indicates an expected call of WaitUntilSubnetAvailableWithContext.

func (*MockEC2APIMockRecorder) WaitUntilSystemStatusOk added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilSystemStatusOk(arg0 interface{}) *gomock.Call

WaitUntilSystemStatusOk indicates an expected call of WaitUntilSystemStatusOk.

func (*MockEC2APIMockRecorder) WaitUntilSystemStatusOkWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilSystemStatusOkWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

WaitUntilSystemStatusOkWithContext indicates an expected call of WaitUntilSystemStatusOkWithContext.

func (*MockEC2APIMockRecorder) WaitUntilVolumeAvailable added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilVolumeAvailable(arg0 interface{}) *gomock.Call

WaitUntilVolumeAvailable indicates an expected call of WaitUntilVolumeAvailable.

func (*MockEC2APIMockRecorder) WaitUntilVolumeAvailableWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilVolumeAvailableWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

WaitUntilVolumeAvailableWithContext indicates an expected call of WaitUntilVolumeAvailableWithContext.

func (*MockEC2APIMockRecorder) WaitUntilVolumeDeleted added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilVolumeDeleted(arg0 interface{}) *gomock.Call

WaitUntilVolumeDeleted indicates an expected call of WaitUntilVolumeDeleted.

func (*MockEC2APIMockRecorder) WaitUntilVolumeDeletedWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilVolumeDeletedWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

WaitUntilVolumeDeletedWithContext indicates an expected call of WaitUntilVolumeDeletedWithContext.

func (*MockEC2APIMockRecorder) WaitUntilVolumeInUse added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilVolumeInUse(arg0 interface{}) *gomock.Call

WaitUntilVolumeInUse indicates an expected call of WaitUntilVolumeInUse.

func (*MockEC2APIMockRecorder) WaitUntilVolumeInUseWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilVolumeInUseWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

WaitUntilVolumeInUseWithContext indicates an expected call of WaitUntilVolumeInUseWithContext.

func (*MockEC2APIMockRecorder) WaitUntilVpcAvailable added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilVpcAvailable(arg0 interface{}) *gomock.Call

WaitUntilVpcAvailable indicates an expected call of WaitUntilVpcAvailable.

func (*MockEC2APIMockRecorder) WaitUntilVpcAvailableWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilVpcAvailableWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

WaitUntilVpcAvailableWithContext indicates an expected call of WaitUntilVpcAvailableWithContext.

func (*MockEC2APIMockRecorder) WaitUntilVpcExists added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilVpcExists(arg0 interface{}) *gomock.Call

WaitUntilVpcExists indicates an expected call of WaitUntilVpcExists.

func (*MockEC2APIMockRecorder) WaitUntilVpcExistsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilVpcExistsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

WaitUntilVpcExistsWithContext indicates an expected call of WaitUntilVpcExistsWithContext.

func (*MockEC2APIMockRecorder) WaitUntilVpcPeeringConnectionDeleted added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilVpcPeeringConnectionDeleted(arg0 interface{}) *gomock.Call

WaitUntilVpcPeeringConnectionDeleted indicates an expected call of WaitUntilVpcPeeringConnectionDeleted.

func (*MockEC2APIMockRecorder) WaitUntilVpcPeeringConnectionDeletedWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilVpcPeeringConnectionDeletedWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

WaitUntilVpcPeeringConnectionDeletedWithContext indicates an expected call of WaitUntilVpcPeeringConnectionDeletedWithContext.

func (*MockEC2APIMockRecorder) WaitUntilVpcPeeringConnectionExists added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilVpcPeeringConnectionExists(arg0 interface{}) *gomock.Call

WaitUntilVpcPeeringConnectionExists indicates an expected call of WaitUntilVpcPeeringConnectionExists.

func (*MockEC2APIMockRecorder) WaitUntilVpcPeeringConnectionExistsWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilVpcPeeringConnectionExistsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

WaitUntilVpcPeeringConnectionExistsWithContext indicates an expected call of WaitUntilVpcPeeringConnectionExistsWithContext.

func (*MockEC2APIMockRecorder) WaitUntilVpnConnectionAvailable added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilVpnConnectionAvailable(arg0 interface{}) *gomock.Call

WaitUntilVpnConnectionAvailable indicates an expected call of WaitUntilVpnConnectionAvailable.

func (*MockEC2APIMockRecorder) WaitUntilVpnConnectionAvailableWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilVpnConnectionAvailableWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

WaitUntilVpnConnectionAvailableWithContext indicates an expected call of WaitUntilVpnConnectionAvailableWithContext.

func (*MockEC2APIMockRecorder) WaitUntilVpnConnectionDeleted added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilVpnConnectionDeleted(arg0 interface{}) *gomock.Call

WaitUntilVpnConnectionDeleted indicates an expected call of WaitUntilVpnConnectionDeleted.

func (*MockEC2APIMockRecorder) WaitUntilVpnConnectionDeletedWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) WaitUntilVpnConnectionDeletedWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

WaitUntilVpnConnectionDeletedWithContext indicates an expected call of WaitUntilVpnConnectionDeletedWithContext.

func (*MockEC2APIMockRecorder) WithdrawByoipCidr added in v1.19.0

func (mr *MockEC2APIMockRecorder) WithdrawByoipCidr(arg0 interface{}) *gomock.Call

WithdrawByoipCidr indicates an expected call of WithdrawByoipCidr.

func (*MockEC2APIMockRecorder) WithdrawByoipCidrRequest added in v1.19.0

func (mr *MockEC2APIMockRecorder) WithdrawByoipCidrRequest(arg0 interface{}) *gomock.Call

WithdrawByoipCidrRequest indicates an expected call of WithdrawByoipCidrRequest.

func (*MockEC2APIMockRecorder) WithdrawByoipCidrWithContext added in v1.19.0

func (mr *MockEC2APIMockRecorder) WithdrawByoipCidrWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call

WithdrawByoipCidrWithContext indicates an expected call of WithdrawByoipCidrWithContext.

type MockEC2Metadata added in v1.4.0

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

MockEC2Metadata is a mock of EC2Metadata interface.

func NewMockEC2Metadata added in v1.4.0

func NewMockEC2Metadata(ctrl *gomock.Controller) *MockEC2Metadata

NewMockEC2Metadata creates a new mock instance.

func (*MockEC2Metadata) Available added in v1.4.0

func (m *MockEC2Metadata) Available() bool

Available mocks base method.

func (*MockEC2Metadata) EXPECT added in v1.4.0

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockEC2Metadata) GetInstanceIdentityDocument added in v1.4.0

func (m *MockEC2Metadata) GetInstanceIdentityDocument() (ec2metadata.EC2InstanceIdentityDocument, error)

GetInstanceIdentityDocument mocks base method.

func (*MockEC2Metadata) GetMetadata added in v1.4.0

func (m *MockEC2Metadata) GetMetadata(arg0 string) (string, error)

GetMetadata mocks base method.

type MockEC2MetadataMockRecorder added in v1.4.0

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

MockEC2MetadataMockRecorder is the mock recorder for MockEC2Metadata.

func (*MockEC2MetadataMockRecorder) Available added in v1.4.0

func (mr *MockEC2MetadataMockRecorder) Available() *gomock.Call

Available indicates an expected call of Available.

func (*MockEC2MetadataMockRecorder) GetInstanceIdentityDocument added in v1.4.0

func (mr *MockEC2MetadataMockRecorder) GetInstanceIdentityDocument() *gomock.Call

GetInstanceIdentityDocument indicates an expected call of GetInstanceIdentityDocument.

func (*MockEC2MetadataMockRecorder) GetMetadata added in v1.4.0

func (mr *MockEC2MetadataMockRecorder) GetMetadata(arg0 interface{}) *gomock.Call

GetMetadata indicates an expected call of GetMetadata.

type MockMetadataService added in v1.4.0

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

MockMetadataService is a mock of MetadataService interface.

func NewMockMetadataService added in v1.4.0

func NewMockMetadataService(ctrl *gomock.Controller) *MockMetadataService

NewMockMetadataService creates a new mock instance.

func (*MockMetadataService) EXPECT added in v1.4.0

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockMetadataService) GetAvailabilityZone added in v1.4.0

func (m *MockMetadataService) GetAvailabilityZone() string

GetAvailabilityZone mocks base method.

func (*MockMetadataService) GetInstanceID added in v1.4.0

func (m *MockMetadataService) GetInstanceID() string

GetInstanceID mocks base method.

func (*MockMetadataService) GetInstanceType added in v1.4.0

func (m *MockMetadataService) GetInstanceType() string

GetInstanceType mocks base method.

func (*MockMetadataService) GetNumAttachedENIs added in v1.6.0

func (m *MockMetadataService) GetNumAttachedENIs() int

GetNumAttachedENIs mocks base method.

func (*MockMetadataService) GetNumBlockDeviceMappings added in v1.6.0

func (m *MockMetadataService) GetNumBlockDeviceMappings() int

GetNumBlockDeviceMappings mocks base method.

func (*MockMetadataService) GetOutpostArn added in v1.4.0

func (m *MockMetadataService) GetOutpostArn() arn.ARN

GetOutpostArn mocks base method.

func (*MockMetadataService) GetRegion added in v1.4.0

func (m *MockMetadataService) GetRegion() string

GetRegion mocks base method.

type MockMetadataServiceMockRecorder added in v1.4.0

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

MockMetadataServiceMockRecorder is the mock recorder for MockMetadataService.

func (*MockMetadataServiceMockRecorder) GetAvailabilityZone added in v1.4.0

func (mr *MockMetadataServiceMockRecorder) GetAvailabilityZone() *gomock.Call

GetAvailabilityZone indicates an expected call of GetAvailabilityZone.

func (*MockMetadataServiceMockRecorder) GetInstanceID added in v1.4.0

func (mr *MockMetadataServiceMockRecorder) GetInstanceID() *gomock.Call

GetInstanceID indicates an expected call of GetInstanceID.

func (*MockMetadataServiceMockRecorder) GetInstanceType added in v1.4.0

func (mr *MockMetadataServiceMockRecorder) GetInstanceType() *gomock.Call

GetInstanceType indicates an expected call of GetInstanceType.

func (*MockMetadataServiceMockRecorder) GetNumAttachedENIs added in v1.6.0

func (mr *MockMetadataServiceMockRecorder) GetNumAttachedENIs() *gomock.Call

GetNumAttachedENIs indicates an expected call of GetNumAttachedENIs.

func (*MockMetadataServiceMockRecorder) GetNumBlockDeviceMappings added in v1.6.0

func (mr *MockMetadataServiceMockRecorder) GetNumBlockDeviceMappings() *gomock.Call

GetNumBlockDeviceMappings indicates an expected call of GetNumBlockDeviceMappings.

func (*MockMetadataServiceMockRecorder) GetOutpostArn added in v1.4.0

func (mr *MockMetadataServiceMockRecorder) GetOutpostArn() *gomock.Call

GetOutpostArn indicates an expected call of GetOutpostArn.

func (*MockMetadataServiceMockRecorder) GetRegion added in v1.4.0

func (mr *MockMetadataServiceMockRecorder) GetRegion() *gomock.Call

GetRegion indicates an expected call of GetRegion.

type ModifyDiskOptions added in v1.19.0

type ModifyDiskOptions struct {
	VolumeType string
	IOPS       int
	Throughput int
}

ModifyDiskOptions represents parameters to modify an EBS volume

type Snapshot added in v0.3.0

type Snapshot struct {
	SnapshotID     string
	SourceVolumeID string
	Size           int64
	CreationTime   time.Time
	ReadyToUse     bool
}

Snapshot represents an EBS volume snapshot

type SnapshotOptions added in v0.3.0

type SnapshotOptions struct {
	Tags map[string]string
}

SnapshotOptions represents parameters to create an EBS volume

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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