mgn

package module
v0.0.0-...-68f2935 Latest Latest
Warning

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

Go to latest
Published: May 24, 2024 License: Apache-2.0 Imports: 43 Imported by: 0

Documentation

Overview

Package mgn provides the API client, operations, and parameter types for Application Migration Service.

The Application Migration Service service.

Index

Constants

View Source
const ServiceAPIVersion = "2020-02-26"
View Source
const ServiceID = "mgn"

Variables

This section is empty.

Functions

func NewDefaultEndpointResolver

func NewDefaultEndpointResolver() *internalendpoints.Resolver

NewDefaultEndpointResolver constructs a new service endpoint resolver

func WithAPIOptions

func WithAPIOptions(optFns ...func(*middleware.Stack) error) func(*Options)

WithAPIOptions returns a functional option for setting the Client's APIOptions option.

func WithEndpointResolver deprecated

func WithEndpointResolver(v EndpointResolver) func(*Options)

Deprecated: EndpointResolver and WithEndpointResolver. Providing a value for this field will likely prevent you from using any endpoint-related service features released after the introduction of EndpointResolverV2 and BaseEndpoint.

To migrate an EndpointResolver implementation that uses a custom endpoint, set the client option BaseEndpoint instead.

func WithEndpointResolverV2

func WithEndpointResolverV2(v EndpointResolverV2) func(*Options)

WithEndpointResolverV2 returns a functional option for setting the Client's EndpointResolverV2 option.

func WithSigV4SigningName

func WithSigV4SigningName(name string) func(*Options)

WithSigV4SigningName applies an override to the authentication workflow to use the given signing name for SigV4-authenticated operations.

This is an advanced setting. The value here is FINAL, taking precedence over the resolved signing name from both auth scheme resolution and endpoint resolution.

func WithSigV4SigningRegion

func WithSigV4SigningRegion(region string) func(*Options)

WithSigV4SigningRegion applies an override to the authentication workflow to use the given signing region for SigV4-authenticated operations.

This is an advanced setting. The value here is FINAL, taking precedence over the resolved signing region from both auth scheme resolution and endpoint resolution.

Types

type ArchiveApplicationInput

type ArchiveApplicationInput struct {

	// Application ID.
	//
	// This member is required.
	ApplicationID *string

	// Account ID.
	AccountID *string
	// contains filtered or unexported fields
}

type ArchiveApplicationOutput

type ArchiveApplicationOutput struct {

	// Application aggregated status.
	ApplicationAggregatedStatus *types.ApplicationAggregatedStatus

	// Application ID.
	ApplicationID *string

	// Application ARN.
	Arn *string

	// Application creation dateTime.
	CreationDateTime *string

	// Application description.
	Description *string

	// Application archival status.
	IsArchived *bool

	// Application last modified dateTime.
	LastModifiedDateTime *string

	// Application name.
	Name *string

	// Application tags.
	Tags map[string]string

	// Application wave ID.
	WaveID *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type ArchiveWaveInput

type ArchiveWaveInput struct {

	// Wave ID.
	//
	// This member is required.
	WaveID *string

	// Account ID.
	AccountID *string
	// contains filtered or unexported fields
}

type ArchiveWaveOutput

type ArchiveWaveOutput struct {

	// Wave ARN.
	Arn *string

	// Wave creation dateTime.
	CreationDateTime *string

	// Wave description.
	Description *string

	// Wave archival status.
	IsArchived *bool

	// Wave last modified dateTime.
	LastModifiedDateTime *string

	// Wave name.
	Name *string

	// Wave tags.
	Tags map[string]string

	// Wave aggregated status.
	WaveAggregatedStatus *types.WaveAggregatedStatus

	// Wave ID.
	WaveID *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type AssociateApplicationsInput

type AssociateApplicationsInput struct {

	// Application IDs list.
	//
	// This member is required.
	ApplicationIDs []string

	// Wave ID.
	//
	// This member is required.
	WaveID *string

	// Account ID.
	AccountID *string
	// contains filtered or unexported fields
}

type AssociateApplicationsOutput

type AssociateApplicationsOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type AssociateSourceServersInput

type AssociateSourceServersInput struct {

	// Application ID.
	//
	// This member is required.
	ApplicationID *string

	// Source server IDs list.
	//
	// This member is required.
	SourceServerIDs []string

	// Account ID.
	AccountID *string
	// contains filtered or unexported fields
}

type AssociateSourceServersOutput

type AssociateSourceServersOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type AuthResolverParameters

type AuthResolverParameters struct {
	// The name of the operation being invoked.
	Operation string

	// The region in which the operation is being invoked.
	Region string
}

AuthResolverParameters contains the set of inputs necessary for auth scheme resolution.

type AuthSchemeResolver

type AuthSchemeResolver interface {
	ResolveAuthSchemes(context.Context, *AuthResolverParameters) ([]*smithyauth.Option, error)
}

AuthSchemeResolver returns a set of possible authentication options for an operation.

type ChangeServerLifeCycleStateInput

type ChangeServerLifeCycleStateInput struct {

	// The request to change the source server migration lifecycle state.
	//
	// This member is required.
	LifeCycle *types.ChangeServerLifeCycleStateSourceServerLifecycle

	// The request to change the source server migration lifecycle state by source
	// server ID.
	//
	// This member is required.
	SourceServerID *string

	// The request to change the source server migration account ID.
	AccountID *string
	// contains filtered or unexported fields
}

type ChangeServerLifeCycleStateOutput

type ChangeServerLifeCycleStateOutput struct {

	// Source server application ID.
	ApplicationID *string

	// Source server ARN.
	Arn *string

	// Source Server connector action.
	ConnectorAction *types.SourceServerConnectorAction

	// Source server data replication info.
	DataReplicationInfo *types.DataReplicationInfo

	// Source server fqdn for action framework.
	FqdnForActionFramework *string

	// Source server archived status.
	IsArchived *bool

	// Source server launched instance.
	LaunchedInstance *types.LaunchedInstance

	// Source server lifecycle state.
	LifeCycle *types.LifeCycle

	// Source server replication type.
	ReplicationType types.ReplicationType

	// Source server properties.
	SourceProperties *types.SourceProperties

	// Source server ID.
	SourceServerID *string

	// Source server Tags.
	Tags map[string]string

	// Source server user provided ID.
	UserProvidedID *string

	// Source server vCenter client id.
	VcenterClientID *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type Client

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

Client provides the API client to make operations call for Application Migration Service.

func New

func New(options Options, optFns ...func(*Options)) *Client

New returns an initialized Client based on the functional options. Provide additional functional options to further configure the behavior of the client, such as changing the client's endpoint or adding custom middleware behavior.

func NewFromConfig

func NewFromConfig(cfg aws.Config, optFns ...func(*Options)) *Client

NewFromConfig returns a new client from the provided config.

func (*Client) ArchiveApplication

func (c *Client) ArchiveApplication(ctx context.Context, params *ArchiveApplicationInput, optFns ...func(*Options)) (*ArchiveApplicationOutput, error)

Archive application.

func (*Client) ArchiveWave

func (c *Client) ArchiveWave(ctx context.Context, params *ArchiveWaveInput, optFns ...func(*Options)) (*ArchiveWaveOutput, error)

Archive wave.

func (*Client) AssociateApplications

func (c *Client) AssociateApplications(ctx context.Context, params *AssociateApplicationsInput, optFns ...func(*Options)) (*AssociateApplicationsOutput, error)

Associate applications to wave.

func (*Client) AssociateSourceServers

func (c *Client) AssociateSourceServers(ctx context.Context, params *AssociateSourceServersInput, optFns ...func(*Options)) (*AssociateSourceServersOutput, error)

Associate source servers to application.

func (*Client) ChangeServerLifeCycleState

func (c *Client) ChangeServerLifeCycleState(ctx context.Context, params *ChangeServerLifeCycleStateInput, optFns ...func(*Options)) (*ChangeServerLifeCycleStateOutput, error)

Allows the user to set the SourceServer.LifeCycle.state property for specific Source Server IDs to one of the following: READY_FOR_TEST or READY_FOR_CUTOVER. This command only works if the Source Server is already launchable (dataReplicationInfo.lagDuration is not null.)

func (*Client) CreateApplication

func (c *Client) CreateApplication(ctx context.Context, params *CreateApplicationInput, optFns ...func(*Options)) (*CreateApplicationOutput, error)

Create application.

func (*Client) CreateConnector

func (c *Client) CreateConnector(ctx context.Context, params *CreateConnectorInput, optFns ...func(*Options)) (*CreateConnectorOutput, error)

Create Connector.

func (*Client) CreateLaunchConfigurationTemplate

func (c *Client) CreateLaunchConfigurationTemplate(ctx context.Context, params *CreateLaunchConfigurationTemplateInput, optFns ...func(*Options)) (*CreateLaunchConfigurationTemplateOutput, error)

Creates a new Launch Configuration Template.

func (*Client) CreateReplicationConfigurationTemplate

func (c *Client) CreateReplicationConfigurationTemplate(ctx context.Context, params *CreateReplicationConfigurationTemplateInput, optFns ...func(*Options)) (*CreateReplicationConfigurationTemplateOutput, error)

Creates a new ReplicationConfigurationTemplate.

func (*Client) CreateWave

func (c *Client) CreateWave(ctx context.Context, params *CreateWaveInput, optFns ...func(*Options)) (*CreateWaveOutput, error)

Create wave.

func (*Client) DeleteApplication

func (c *Client) DeleteApplication(ctx context.Context, params *DeleteApplicationInput, optFns ...func(*Options)) (*DeleteApplicationOutput, error)

Delete application.

func (*Client) DeleteConnector

func (c *Client) DeleteConnector(ctx context.Context, params *DeleteConnectorInput, optFns ...func(*Options)) (*DeleteConnectorOutput, error)

Delete Connector.

func (*Client) DeleteJob

func (c *Client) DeleteJob(ctx context.Context, params *DeleteJobInput, optFns ...func(*Options)) (*DeleteJobOutput, error)

Deletes a single Job by ID.

func (*Client) DeleteLaunchConfigurationTemplate

func (c *Client) DeleteLaunchConfigurationTemplate(ctx context.Context, params *DeleteLaunchConfigurationTemplateInput, optFns ...func(*Options)) (*DeleteLaunchConfigurationTemplateOutput, error)

Deletes a single Launch Configuration Template by ID.

func (*Client) DeleteReplicationConfigurationTemplate

func (c *Client) DeleteReplicationConfigurationTemplate(ctx context.Context, params *DeleteReplicationConfigurationTemplateInput, optFns ...func(*Options)) (*DeleteReplicationConfigurationTemplateOutput, error)

Deletes a single Replication Configuration Template by ID

func (*Client) DeleteSourceServer

func (c *Client) DeleteSourceServer(ctx context.Context, params *DeleteSourceServerInput, optFns ...func(*Options)) (*DeleteSourceServerOutput, error)

Deletes a single source server by ID.

func (*Client) DeleteVcenterClient

func (c *Client) DeleteVcenterClient(ctx context.Context, params *DeleteVcenterClientInput, optFns ...func(*Options)) (*DeleteVcenterClientOutput, error)

Deletes a given vCenter client by ID.

func (*Client) DeleteWave

func (c *Client) DeleteWave(ctx context.Context, params *DeleteWaveInput, optFns ...func(*Options)) (*DeleteWaveOutput, error)

Delete wave.

func (*Client) DescribeJobLogItems

func (c *Client) DescribeJobLogItems(ctx context.Context, params *DescribeJobLogItemsInput, optFns ...func(*Options)) (*DescribeJobLogItemsOutput, error)

Retrieves detailed job log items with paging.

func (*Client) DescribeJobs

func (c *Client) DescribeJobs(ctx context.Context, params *DescribeJobsInput, optFns ...func(*Options)) (*DescribeJobsOutput, error)

Returns a list of Jobs. Use the JobsID and fromDate and toData filters to limit which jobs are returned. The response is sorted by creationDataTime - latest date first. Jobs are normally created by the StartTest, StartCutover, and TerminateTargetInstances APIs. Jobs are also created by DiagnosticLaunch and TerminateDiagnosticInstances, which are APIs available only to *Support* and only used in response to relevant support tickets.

func (*Client) DescribeLaunchConfigurationTemplates

func (c *Client) DescribeLaunchConfigurationTemplates(ctx context.Context, params *DescribeLaunchConfigurationTemplatesInput, optFns ...func(*Options)) (*DescribeLaunchConfigurationTemplatesOutput, error)

Lists all Launch Configuration Templates, filtered by Launch Configuration Template IDs

func (*Client) DescribeReplicationConfigurationTemplates

func (c *Client) DescribeReplicationConfigurationTemplates(ctx context.Context, params *DescribeReplicationConfigurationTemplatesInput, optFns ...func(*Options)) (*DescribeReplicationConfigurationTemplatesOutput, error)

Lists all ReplicationConfigurationTemplates, filtered by Source Server IDs.

func (*Client) DescribeSourceServers

func (c *Client) DescribeSourceServers(ctx context.Context, params *DescribeSourceServersInput, optFns ...func(*Options)) (*DescribeSourceServersOutput, error)

Retrieves all SourceServers or multiple SourceServers by ID.

func (*Client) DescribeVcenterClients

func (c *Client) DescribeVcenterClients(ctx context.Context, params *DescribeVcenterClientsInput, optFns ...func(*Options)) (*DescribeVcenterClientsOutput, error)

Returns a list of the installed vCenter clients.

func (*Client) DisassociateApplications

func (c *Client) DisassociateApplications(ctx context.Context, params *DisassociateApplicationsInput, optFns ...func(*Options)) (*DisassociateApplicationsOutput, error)

Disassociate applications from wave.

func (*Client) DisassociateSourceServers

func (c *Client) DisassociateSourceServers(ctx context.Context, params *DisassociateSourceServersInput, optFns ...func(*Options)) (*DisassociateSourceServersOutput, error)

Disassociate source servers from application.

func (*Client) DisconnectFromService

func (c *Client) DisconnectFromService(ctx context.Context, params *DisconnectFromServiceInput, optFns ...func(*Options)) (*DisconnectFromServiceOutput, error)

Disconnects specific Source Servers from Application Migration Service. Data replication is stopped immediately. All AWS resources created by Application Migration Service for enabling the replication of these source servers will be terminated / deleted within 90 minutes. Launched Test or Cutover instances will NOT be terminated. If the agent on the source server has not been prevented from communicating with the Application Migration Service service, then it will receive a command to uninstall itself (within approximately 10 minutes). The following properties of the SourceServer will be changed immediately: dataReplicationInfo.dataReplicationState will be set to DISCONNECTED; The totalStorageBytes property for each of dataReplicationInfo.replicatedDisks will be set to zero; dataReplicationInfo.lagDuration and dataReplicationInfo.lagDuration will be nullified.

func (*Client) FinalizeCutover

func (c *Client) FinalizeCutover(ctx context.Context, params *FinalizeCutoverInput, optFns ...func(*Options)) (*FinalizeCutoverOutput, error)

Finalizes the cutover immediately for specific Source Servers. All AWS resources created by Application Migration Service for enabling the replication of these source servers will be terminated / deleted within 90 minutes. Launched Test or Cutover instances will NOT be terminated. The AWS Replication Agent will receive a command to uninstall itself (within 10 minutes). The following properties of the SourceServer will be changed immediately: dataReplicationInfo.dataReplicationState will be changed to DISCONNECTED; The SourceServer.lifeCycle.state will be changed to CUTOVER; The totalStorageBytes property fo each of dataReplicationInfo.replicatedDisks will be set to zero; dataReplicationInfo.lagDuration and dataReplicationInfo.lagDuration will be nullified.

func (*Client) GetLaunchConfiguration

func (c *Client) GetLaunchConfiguration(ctx context.Context, params *GetLaunchConfigurationInput, optFns ...func(*Options)) (*GetLaunchConfigurationOutput, error)

Lists all LaunchConfigurations available, filtered by Source Server IDs.

func (*Client) GetReplicationConfiguration

func (c *Client) GetReplicationConfiguration(ctx context.Context, params *GetReplicationConfigurationInput, optFns ...func(*Options)) (*GetReplicationConfigurationOutput, error)

Lists all ReplicationConfigurations, filtered by Source Server ID.

func (*Client) InitializeService

func (c *Client) InitializeService(ctx context.Context, params *InitializeServiceInput, optFns ...func(*Options)) (*InitializeServiceOutput, error)

Initialize Application Migration Service.

func (*Client) ListApplications

func (c *Client) ListApplications(ctx context.Context, params *ListApplicationsInput, optFns ...func(*Options)) (*ListApplicationsOutput, error)

Retrieves all applications or multiple applications by ID.

func (*Client) ListConnectors

func (c *Client) ListConnectors(ctx context.Context, params *ListConnectorsInput, optFns ...func(*Options)) (*ListConnectorsOutput, error)

List Connectors.

func (*Client) ListExportErrors

func (c *Client) ListExportErrors(ctx context.Context, params *ListExportErrorsInput, optFns ...func(*Options)) (*ListExportErrorsOutput, error)

List export errors.

func (*Client) ListExports

func (c *Client) ListExports(ctx context.Context, params *ListExportsInput, optFns ...func(*Options)) (*ListExportsOutput, error)

List exports.

func (*Client) ListImportErrors

func (c *Client) ListImportErrors(ctx context.Context, params *ListImportErrorsInput, optFns ...func(*Options)) (*ListImportErrorsOutput, error)

List import errors.

func (*Client) ListImports

func (c *Client) ListImports(ctx context.Context, params *ListImportsInput, optFns ...func(*Options)) (*ListImportsOutput, error)

List imports.

func (*Client) ListManagedAccounts

func (c *Client) ListManagedAccounts(ctx context.Context, params *ListManagedAccountsInput, optFns ...func(*Options)) (*ListManagedAccountsOutput, error)

List Managed Accounts.

func (*Client) ListSourceServerActions

func (c *Client) ListSourceServerActions(ctx context.Context, params *ListSourceServerActionsInput, optFns ...func(*Options)) (*ListSourceServerActionsOutput, error)

List source server post migration custom actions.

func (*Client) ListTagsForResource

func (c *Client) ListTagsForResource(ctx context.Context, params *ListTagsForResourceInput, optFns ...func(*Options)) (*ListTagsForResourceOutput, error)

List all tags for your Application Migration Service resources.

func (*Client) ListTemplateActions

func (c *Client) ListTemplateActions(ctx context.Context, params *ListTemplateActionsInput, optFns ...func(*Options)) (*ListTemplateActionsOutput, error)

List template post migration custom actions.

func (*Client) ListWaves

func (c *Client) ListWaves(ctx context.Context, params *ListWavesInput, optFns ...func(*Options)) (*ListWavesOutput, error)

Retrieves all waves or multiple waves by ID.

func (*Client) MarkAsArchived

func (c *Client) MarkAsArchived(ctx context.Context, params *MarkAsArchivedInput, optFns ...func(*Options)) (*MarkAsArchivedOutput, error)

Archives specific Source Servers by setting the SourceServer.isArchived property to true for specified SourceServers by ID. This command only works for SourceServers with a lifecycle. state which equals DISCONNECTED or CUTOVER.

func (*Client) Options

func (c *Client) Options() Options

Options returns a copy of the client configuration.

Callers SHOULD NOT perform mutations on any inner structures within client config. Config overrides should instead be made on a per-operation basis through functional options.

func (*Client) PauseReplication

func (c *Client) PauseReplication(ctx context.Context, params *PauseReplicationInput, optFns ...func(*Options)) (*PauseReplicationOutput, error)

Pause Replication.

func (*Client) PutSourceServerAction

func (c *Client) PutSourceServerAction(ctx context.Context, params *PutSourceServerActionInput, optFns ...func(*Options)) (*PutSourceServerActionOutput, error)

Put source server post migration custom action.

func (*Client) PutTemplateAction

func (c *Client) PutTemplateAction(ctx context.Context, params *PutTemplateActionInput, optFns ...func(*Options)) (*PutTemplateActionOutput, error)

Put template post migration custom action.

func (*Client) RemoveSourceServerAction

func (c *Client) RemoveSourceServerAction(ctx context.Context, params *RemoveSourceServerActionInput, optFns ...func(*Options)) (*RemoveSourceServerActionOutput, error)

Remove source server post migration custom action.

func (*Client) RemoveTemplateAction

func (c *Client) RemoveTemplateAction(ctx context.Context, params *RemoveTemplateActionInput, optFns ...func(*Options)) (*RemoveTemplateActionOutput, error)

Remove template post migration custom action.

func (*Client) ResumeReplication

func (c *Client) ResumeReplication(ctx context.Context, params *ResumeReplicationInput, optFns ...func(*Options)) (*ResumeReplicationOutput, error)

Resume Replication.

func (*Client) RetryDataReplication

func (c *Client) RetryDataReplication(ctx context.Context, params *RetryDataReplicationInput, optFns ...func(*Options)) (*RetryDataReplicationOutput, error)

Causes the data replication initiation sequence to begin immediately upon next Handshake for specified SourceServer IDs, regardless of when the previous initiation started. This command will not work if the SourceServer is not stalled or is in a DISCONNECTED or STOPPED state.

func (*Client) StartCutover

func (c *Client) StartCutover(ctx context.Context, params *StartCutoverInput, optFns ...func(*Options)) (*StartCutoverOutput, error)

Launches a Cutover Instance for specific Source Servers. This command starts a LAUNCH job whose initiatedBy property is StartCutover and changes the SourceServer.lifeCycle.state property to CUTTING_OVER.

func (*Client) StartExport

func (c *Client) StartExport(ctx context.Context, params *StartExportInput, optFns ...func(*Options)) (*StartExportOutput, error)

Start export.

func (*Client) StartImport

func (c *Client) StartImport(ctx context.Context, params *StartImportInput, optFns ...func(*Options)) (*StartImportOutput, error)

Start import.

func (*Client) StartReplication

func (c *Client) StartReplication(ctx context.Context, params *StartReplicationInput, optFns ...func(*Options)) (*StartReplicationOutput, error)

Starts replication for SNAPSHOT_SHIPPING agents.

func (*Client) StartTest

func (c *Client) StartTest(ctx context.Context, params *StartTestInput, optFns ...func(*Options)) (*StartTestOutput, error)

Launches a Test Instance for specific Source Servers. This command starts a LAUNCH job whose initiatedBy property is StartTest and changes the SourceServer.lifeCycle.state property to TESTING.

func (*Client) StopReplication

func (c *Client) StopReplication(ctx context.Context, params *StopReplicationInput, optFns ...func(*Options)) (*StopReplicationOutput, error)

Stop Replication.

func (*Client) TagResource

func (c *Client) TagResource(ctx context.Context, params *TagResourceInput, optFns ...func(*Options)) (*TagResourceOutput, error)

Adds or overwrites only the specified tags for the specified Application Migration Service resource or resources. When you specify an existing tag key, the value is overwritten with the new value. Each resource can have a maximum of 50 tags. Each tag consists of a key and optional value.

func (*Client) TerminateTargetInstances

func (c *Client) TerminateTargetInstances(ctx context.Context, params *TerminateTargetInstancesInput, optFns ...func(*Options)) (*TerminateTargetInstancesOutput, error)

Starts a job that terminates specific launched EC2 Test and Cutover instances. This command will not work for any Source Server with a lifecycle.state of TESTING, CUTTING_OVER, or CUTOVER.

func (*Client) UnarchiveApplication

func (c *Client) UnarchiveApplication(ctx context.Context, params *UnarchiveApplicationInput, optFns ...func(*Options)) (*UnarchiveApplicationOutput, error)

Unarchive application.

func (*Client) UnarchiveWave

func (c *Client) UnarchiveWave(ctx context.Context, params *UnarchiveWaveInput, optFns ...func(*Options)) (*UnarchiveWaveOutput, error)

Unarchive wave.

func (*Client) UntagResource

func (c *Client) UntagResource(ctx context.Context, params *UntagResourceInput, optFns ...func(*Options)) (*UntagResourceOutput, error)

Deletes the specified set of tags from the specified set of Application Migration Service resources.

func (*Client) UpdateApplication

func (c *Client) UpdateApplication(ctx context.Context, params *UpdateApplicationInput, optFns ...func(*Options)) (*UpdateApplicationOutput, error)

Update application.

func (*Client) UpdateConnector

func (c *Client) UpdateConnector(ctx context.Context, params *UpdateConnectorInput, optFns ...func(*Options)) (*UpdateConnectorOutput, error)

Update Connector.

func (*Client) UpdateLaunchConfiguration

func (c *Client) UpdateLaunchConfiguration(ctx context.Context, params *UpdateLaunchConfigurationInput, optFns ...func(*Options)) (*UpdateLaunchConfigurationOutput, error)

Updates multiple LaunchConfigurations by Source Server ID.

bootMode valid values are LEGACY_BIOS | UEFI

func (*Client) UpdateLaunchConfigurationTemplate

func (c *Client) UpdateLaunchConfigurationTemplate(ctx context.Context, params *UpdateLaunchConfigurationTemplateInput, optFns ...func(*Options)) (*UpdateLaunchConfigurationTemplateOutput, error)

Updates an existing Launch Configuration Template by ID.

func (*Client) UpdateReplicationConfiguration

func (c *Client) UpdateReplicationConfiguration(ctx context.Context, params *UpdateReplicationConfigurationInput, optFns ...func(*Options)) (*UpdateReplicationConfigurationOutput, error)

Allows you to update multiple ReplicationConfigurations by Source Server ID.

func (*Client) UpdateReplicationConfigurationTemplate

func (c *Client) UpdateReplicationConfigurationTemplate(ctx context.Context, params *UpdateReplicationConfigurationTemplateInput, optFns ...func(*Options)) (*UpdateReplicationConfigurationTemplateOutput, error)

Updates multiple ReplicationConfigurationTemplates by ID.

func (*Client) UpdateSourceServer

func (c *Client) UpdateSourceServer(ctx context.Context, params *UpdateSourceServerInput, optFns ...func(*Options)) (*UpdateSourceServerOutput, error)

Update Source Server.

func (*Client) UpdateSourceServerReplicationType

func (c *Client) UpdateSourceServerReplicationType(ctx context.Context, params *UpdateSourceServerReplicationTypeInput, optFns ...func(*Options)) (*UpdateSourceServerReplicationTypeOutput, error)

Allows you to change between the AGENT_BASED replication type and the SNAPSHOT_SHIPPING replication type.

func (*Client) UpdateWave

func (c *Client) UpdateWave(ctx context.Context, params *UpdateWaveInput, optFns ...func(*Options)) (*UpdateWaveOutput, error)

Update wave.

type CreateApplicationInput

type CreateApplicationInput struct {

	// Application name.
	//
	// This member is required.
	Name *string

	// Account ID.
	AccountID *string

	// Application description.
	Description *string

	// Application tags.
	Tags map[string]string
	// contains filtered or unexported fields
}

type CreateApplicationOutput

type CreateApplicationOutput struct {

	// Application aggregated status.
	ApplicationAggregatedStatus *types.ApplicationAggregatedStatus

	// Application ID.
	ApplicationID *string

	// Application ARN.
	Arn *string

	// Application creation dateTime.
	CreationDateTime *string

	// Application description.
	Description *string

	// Application archival status.
	IsArchived *bool

	// Application last modified dateTime.
	LastModifiedDateTime *string

	// Application name.
	Name *string

	// Application tags.
	Tags map[string]string

	// Application wave ID.
	WaveID *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type CreateConnectorInput

type CreateConnectorInput struct {

	// Create Connector request name.
	//
	// This member is required.
	Name *string

	// Create Connector request SSM instance ID.
	//
	// This member is required.
	SsmInstanceID *string

	// Create Connector request SSM command config.
	SsmCommandConfig *types.ConnectorSsmCommandConfig

	// Create Connector request tags.
	Tags map[string]string
	// contains filtered or unexported fields
}

type CreateConnectorOutput

type CreateConnectorOutput struct {

	// Connector arn.
	Arn *string

	// Connector ID.
	ConnectorID *string

	// Connector name.
	Name *string

	// Connector SSM command config.
	SsmCommandConfig *types.ConnectorSsmCommandConfig

	// Connector SSM instance ID.
	SsmInstanceID *string

	// Connector tags.
	Tags map[string]string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type CreateLaunchConfigurationTemplateInput

type CreateLaunchConfigurationTemplateInput struct {

	// Associate public Ip address.
	AssociatePublicIpAddress *bool

	// Launch configuration template boot mode.
	BootMode types.BootMode

	// Copy private Ip.
	CopyPrivateIp *bool

	// Copy tags.
	CopyTags *bool

	// Enable map auto tagging.
	EnableMapAutoTagging *bool

	// Large volume config.
	LargeVolumeConf *types.LaunchTemplateDiskConf

	// Launch disposition.
	LaunchDisposition types.LaunchDisposition

	// Configure Licensing.
	Licensing *types.Licensing

	// Launch configuration template map auto tagging MPE ID.
	MapAutoTaggingMpeID *string

	// Launch configuration template post launch actions.
	PostLaunchActions *types.PostLaunchActions

	// Small volume config.
	SmallVolumeConf *types.LaunchTemplateDiskConf

	// Small volume maximum size.
	SmallVolumeMaxSize int64

	// Request to associate tags during creation of a Launch Configuration Template.
	Tags map[string]string

	// Target instance type right-sizing method.
	TargetInstanceTypeRightSizingMethod types.TargetInstanceTypeRightSizingMethod
	// contains filtered or unexported fields
}

type CreateLaunchConfigurationTemplateOutput

type CreateLaunchConfigurationTemplateOutput struct {

	// ID of the Launch Configuration Template.
	//
	// This member is required.
	LaunchConfigurationTemplateID *string

	// ARN of the Launch Configuration Template.
	Arn *string

	// Associate public Ip address.
	AssociatePublicIpAddress *bool

	// Launch configuration template boot mode.
	BootMode types.BootMode

	// Copy private Ip.
	CopyPrivateIp *bool

	// Copy tags.
	CopyTags *bool

	// EC2 launch template ID.
	Ec2LaunchTemplateID *string

	// Enable map auto tagging.
	EnableMapAutoTagging *bool

	// Large volume config.
	LargeVolumeConf *types.LaunchTemplateDiskConf

	// Launch disposition.
	LaunchDisposition types.LaunchDisposition

	// Configure Licensing.
	Licensing *types.Licensing

	// Launch configuration template map auto tagging MPE ID.
	MapAutoTaggingMpeID *string

	// Post Launch Actions of the Launch Configuration Template.
	PostLaunchActions *types.PostLaunchActions

	// Small volume config.
	SmallVolumeConf *types.LaunchTemplateDiskConf

	// Small volume maximum size.
	SmallVolumeMaxSize int64

	// Tags of the Launch Configuration Template.
	Tags map[string]string

	// Target instance type right-sizing method.
	TargetInstanceTypeRightSizingMethod types.TargetInstanceTypeRightSizingMethod

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type CreateReplicationConfigurationTemplateInput

type CreateReplicationConfigurationTemplateInput struct {

	// Request to associate the default Application Migration Service Security group
	// with the Replication Settings template.
	//
	// This member is required.
	AssociateDefaultSecurityGroup *bool

	// Request to configure bandwidth throttling during Replication Settings template
	// creation.
	//
	// This member is required.
	BandwidthThrottling int64

	// Request to create Public IP during Replication Settings template creation.
	//
	// This member is required.
	CreatePublicIP *bool

	// Request to configure data plane routing during Replication Settings template
	// creation.
	//
	// This member is required.
	DataPlaneRouting types.ReplicationConfigurationDataPlaneRouting

	// Request to configure the default large staging disk EBS volume type during
	// Replication Settings template creation.
	//
	// This member is required.
	DefaultLargeStagingDiskType types.ReplicationConfigurationDefaultLargeStagingDiskType

	// Request to configure EBS encryption during Replication Settings template
	// creation.
	//
	// This member is required.
	EbsEncryption types.ReplicationConfigurationEbsEncryption

	// Request to configure the Replication Server instance type during Replication
	// Settings template creation.
	//
	// This member is required.
	ReplicationServerInstanceType *string

	// Request to configure the Replication Server Security group ID during
	// Replication Settings template creation.
	//
	// This member is required.
	ReplicationServersSecurityGroupsIDs []string

	// Request to configure the Staging Area subnet ID during Replication Settings
	// template creation.
	//
	// This member is required.
	StagingAreaSubnetId *string

	// Request to configure Staging Area tags during Replication Settings template
	// creation.
	//
	// This member is required.
	StagingAreaTags map[string]string

	// Request to use Dedicated Replication Servers during Replication Settings
	// template creation.
	//
	// This member is required.
	UseDedicatedReplicationServer *bool

	// Request to configure an EBS encryption key during Replication Settings template
	// creation.
	EbsEncryptionKeyArn *string

	// Request to configure tags during Replication Settings template creation.
	Tags map[string]string

	// Request to use Fips Endpoint during Replication Settings template creation.
	UseFipsEndpoint *bool
	// contains filtered or unexported fields
}

type CreateReplicationConfigurationTemplateOutput

type CreateReplicationConfigurationTemplateOutput struct {

	// Replication Configuration template ID.
	//
	// This member is required.
	ReplicationConfigurationTemplateID *string

	// Replication Configuration template ARN.
	Arn *string

	// Replication Configuration template associate default Application Migration
	// Service Security group.
	AssociateDefaultSecurityGroup *bool

	// Replication Configuration template bandwidth throttling.
	BandwidthThrottling int64

	// Replication Configuration template create Public IP.
	CreatePublicIP *bool

	// Replication Configuration template data plane routing.
	DataPlaneRouting types.ReplicationConfigurationDataPlaneRouting

	// Replication Configuration template use default large Staging Disk type.
	DefaultLargeStagingDiskType types.ReplicationConfigurationDefaultLargeStagingDiskType

	// Replication Configuration template EBS encryption.
	EbsEncryption types.ReplicationConfigurationEbsEncryption

	// Replication Configuration template EBS encryption key ARN.
	EbsEncryptionKeyArn *string

	// Replication Configuration template server instance type.
	ReplicationServerInstanceType *string

	// Replication Configuration template server Security Groups IDs.
	ReplicationServersSecurityGroupsIDs []string

	// Replication Configuration template Staging Area subnet ID.
	StagingAreaSubnetId *string

	// Replication Configuration template Staging Area Tags.
	StagingAreaTags map[string]string

	// Replication Configuration template Tags.
	Tags map[string]string

	// Replication Configuration template use Dedicated Replication Server.
	UseDedicatedReplicationServer *bool

	// Replication Configuration template use Fips Endpoint.
	UseFipsEndpoint *bool

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type CreateWaveInput

type CreateWaveInput struct {

	// Wave name.
	//
	// This member is required.
	Name *string

	// Account ID.
	AccountID *string

	// Wave description.
	Description *string

	// Wave tags.
	Tags map[string]string
	// contains filtered or unexported fields
}

type CreateWaveOutput

type CreateWaveOutput struct {

	// Wave ARN.
	Arn *string

	// Wave creation dateTime.
	CreationDateTime *string

	// Wave description.
	Description *string

	// Wave archival status.
	IsArchived *bool

	// Wave last modified dateTime.
	LastModifiedDateTime *string

	// Wave name.
	Name *string

	// Wave tags.
	Tags map[string]string

	// Wave aggregated status.
	WaveAggregatedStatus *types.WaveAggregatedStatus

	// Wave ID.
	WaveID *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type DeleteApplicationInput

type DeleteApplicationInput struct {

	// Application ID.
	//
	// This member is required.
	ApplicationID *string

	// Account ID.
	AccountID *string
	// contains filtered or unexported fields
}

type DeleteApplicationOutput

type DeleteApplicationOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type DeleteConnectorInput

type DeleteConnectorInput struct {

	// Delete Connector request connector ID.
	//
	// This member is required.
	ConnectorID *string
	// contains filtered or unexported fields
}

type DeleteConnectorOutput

type DeleteConnectorOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type DeleteJobInput

type DeleteJobInput struct {

	// Request to delete Job from service by Job ID.
	//
	// This member is required.
	JobID *string

	// Request to delete Job from service by Account ID.
	AccountID *string
	// contains filtered or unexported fields
}

type DeleteJobOutput

type DeleteJobOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type DeleteLaunchConfigurationTemplateInput

type DeleteLaunchConfigurationTemplateInput struct {

	// ID of resource to be deleted.
	//
	// This member is required.
	LaunchConfigurationTemplateID *string
	// contains filtered or unexported fields
}

type DeleteLaunchConfigurationTemplateOutput

type DeleteLaunchConfigurationTemplateOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type DeleteReplicationConfigurationTemplateInput

type DeleteReplicationConfigurationTemplateInput struct {

	// Request to delete Replication Configuration Template from service by
	// Replication Configuration Template ID.
	//
	// This member is required.
	ReplicationConfigurationTemplateID *string
	// contains filtered or unexported fields
}

type DeleteReplicationConfigurationTemplateOutput

type DeleteReplicationConfigurationTemplateOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type DeleteSourceServerInput

type DeleteSourceServerInput struct {

	// Request to delete Source Server from service by Server ID.
	//
	// This member is required.
	SourceServerID *string

	// Request to delete Source Server from service by Account ID.
	AccountID *string
	// contains filtered or unexported fields
}

type DeleteSourceServerOutput

type DeleteSourceServerOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type DeleteVcenterClientInput

type DeleteVcenterClientInput struct {

	// ID of resource to be deleted.
	//
	// This member is required.
	VcenterClientID *string
	// contains filtered or unexported fields
}

type DeleteVcenterClientOutput

type DeleteVcenterClientOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type DeleteWaveInput

type DeleteWaveInput struct {

	// Wave ID.
	//
	// This member is required.
	WaveID *string

	// Account ID.
	AccountID *string
	// contains filtered or unexported fields
}

type DeleteWaveOutput

type DeleteWaveOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type DescribeJobLogItemsAPIClient

type DescribeJobLogItemsAPIClient interface {
	DescribeJobLogItems(context.Context, *DescribeJobLogItemsInput, ...func(*Options)) (*DescribeJobLogItemsOutput, error)
}

DescribeJobLogItemsAPIClient is a client that implements the DescribeJobLogItems operation.

type DescribeJobLogItemsInput

type DescribeJobLogItemsInput struct {

	// Request to describe Job log job ID.
	//
	// This member is required.
	JobID *string

	// Request to describe Job log Account ID.
	AccountID *string

	// Request to describe Job log item maximum results.
	MaxResults *int32

	// Request to describe Job log next token.
	NextToken *string
	// contains filtered or unexported fields
}

type DescribeJobLogItemsOutput

type DescribeJobLogItemsOutput struct {

	// Request to describe Job log response items.
	Items []types.JobLog

	// Request to describe Job log response next token.
	NextToken *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type DescribeJobLogItemsPaginator

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

DescribeJobLogItemsPaginator is a paginator for DescribeJobLogItems

func NewDescribeJobLogItemsPaginator

func NewDescribeJobLogItemsPaginator(client DescribeJobLogItemsAPIClient, params *DescribeJobLogItemsInput, optFns ...func(*DescribeJobLogItemsPaginatorOptions)) *DescribeJobLogItemsPaginator

NewDescribeJobLogItemsPaginator returns a new DescribeJobLogItemsPaginator

func (*DescribeJobLogItemsPaginator) HasMorePages

func (p *DescribeJobLogItemsPaginator) HasMorePages() bool

HasMorePages returns a boolean indicating whether more pages are available

func (*DescribeJobLogItemsPaginator) NextPage

func (p *DescribeJobLogItemsPaginator) NextPage(ctx context.Context, optFns ...func(*Options)) (*DescribeJobLogItemsOutput, error)

NextPage retrieves the next DescribeJobLogItems page.

type DescribeJobLogItemsPaginatorOptions

type DescribeJobLogItemsPaginatorOptions struct {
	// Request to describe Job log item maximum results.
	Limit int32

	// Set to true if pagination should stop if the service returns a pagination token
	// that matches the most recent token provided to the service.
	StopOnDuplicateToken bool
}

DescribeJobLogItemsPaginatorOptions is the paginator options for DescribeJobLogItems

type DescribeJobsAPIClient

type DescribeJobsAPIClient interface {
	DescribeJobs(context.Context, *DescribeJobsInput, ...func(*Options)) (*DescribeJobsOutput, error)
}

DescribeJobsAPIClient is a client that implements the DescribeJobs operation.

type DescribeJobsInput

type DescribeJobsInput struct {

	// Request to describe job log items by Account ID.
	AccountID *string

	// Request to describe Job log filters.
	Filters *types.DescribeJobsRequestFilters

	// Request to describe job log items by max results.
	MaxResults *int32

	// Request to describe job log items by next token.
	NextToken *string
	// contains filtered or unexported fields
}

type DescribeJobsOutput

type DescribeJobsOutput struct {

	// Request to describe Job log items.
	Items []types.Job

	// Request to describe Job response by next token.
	NextToken *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type DescribeJobsPaginator

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

DescribeJobsPaginator is a paginator for DescribeJobs

func NewDescribeJobsPaginator

func NewDescribeJobsPaginator(client DescribeJobsAPIClient, params *DescribeJobsInput, optFns ...func(*DescribeJobsPaginatorOptions)) *DescribeJobsPaginator

NewDescribeJobsPaginator returns a new DescribeJobsPaginator

func (*DescribeJobsPaginator) HasMorePages

func (p *DescribeJobsPaginator) HasMorePages() bool

HasMorePages returns a boolean indicating whether more pages are available

func (*DescribeJobsPaginator) NextPage

func (p *DescribeJobsPaginator) NextPage(ctx context.Context, optFns ...func(*Options)) (*DescribeJobsOutput, error)

NextPage retrieves the next DescribeJobs page.

type DescribeJobsPaginatorOptions

type DescribeJobsPaginatorOptions struct {
	// Request to describe job log items by max results.
	Limit int32

	// Set to true if pagination should stop if the service returns a pagination token
	// that matches the most recent token provided to the service.
	StopOnDuplicateToken bool
}

DescribeJobsPaginatorOptions is the paginator options for DescribeJobs

type DescribeLaunchConfigurationTemplatesAPIClient

type DescribeLaunchConfigurationTemplatesAPIClient interface {
	DescribeLaunchConfigurationTemplates(context.Context, *DescribeLaunchConfigurationTemplatesInput, ...func(*Options)) (*DescribeLaunchConfigurationTemplatesOutput, error)
}

DescribeLaunchConfigurationTemplatesAPIClient is a client that implements the DescribeLaunchConfigurationTemplates operation.

type DescribeLaunchConfigurationTemplatesInput

type DescribeLaunchConfigurationTemplatesInput struct {

	// Request to filter Launch Configuration Templates list by Launch Configuration
	// Template ID.
	LaunchConfigurationTemplateIDs []string

	// Maximum results to be returned in DescribeLaunchConfigurationTemplates.
	MaxResults *int32

	// Next pagination token returned from DescribeLaunchConfigurationTemplates.
	NextToken *string
	// contains filtered or unexported fields
}

type DescribeLaunchConfigurationTemplatesOutput

type DescribeLaunchConfigurationTemplatesOutput struct {

	// List of items returned by DescribeLaunchConfigurationTemplates.
	Items []types.LaunchConfigurationTemplate

	// Next pagination token returned from DescribeLaunchConfigurationTemplates.
	NextToken *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type DescribeLaunchConfigurationTemplatesPaginator

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

DescribeLaunchConfigurationTemplatesPaginator is a paginator for DescribeLaunchConfigurationTemplates

func NewDescribeLaunchConfigurationTemplatesPaginator

NewDescribeLaunchConfigurationTemplatesPaginator returns a new DescribeLaunchConfigurationTemplatesPaginator

func (*DescribeLaunchConfigurationTemplatesPaginator) HasMorePages

HasMorePages returns a boolean indicating whether more pages are available

func (*DescribeLaunchConfigurationTemplatesPaginator) NextPage

NextPage retrieves the next DescribeLaunchConfigurationTemplates page.

type DescribeLaunchConfigurationTemplatesPaginatorOptions

type DescribeLaunchConfigurationTemplatesPaginatorOptions struct {
	// Maximum results to be returned in DescribeLaunchConfigurationTemplates.
	Limit int32

	// Set to true if pagination should stop if the service returns a pagination token
	// that matches the most recent token provided to the service.
	StopOnDuplicateToken bool
}

DescribeLaunchConfigurationTemplatesPaginatorOptions is the paginator options for DescribeLaunchConfigurationTemplates

type DescribeReplicationConfigurationTemplatesAPIClient

type DescribeReplicationConfigurationTemplatesAPIClient interface {
	DescribeReplicationConfigurationTemplates(context.Context, *DescribeReplicationConfigurationTemplatesInput, ...func(*Options)) (*DescribeReplicationConfigurationTemplatesOutput, error)
}

DescribeReplicationConfigurationTemplatesAPIClient is a client that implements the DescribeReplicationConfigurationTemplates operation.

type DescribeReplicationConfigurationTemplatesInput

type DescribeReplicationConfigurationTemplatesInput struct {

	// Request to describe Replication Configuration template by max results.
	MaxResults *int32

	// Request to describe Replication Configuration template by next token.
	NextToken *string

	// Request to describe Replication Configuration template by template IDs.
	ReplicationConfigurationTemplateIDs []string
	// contains filtered or unexported fields
}

type DescribeReplicationConfigurationTemplatesOutput

type DescribeReplicationConfigurationTemplatesOutput struct {

	// Request to describe Replication Configuration template by items.
	Items []types.ReplicationConfigurationTemplate

	// Request to describe Replication Configuration template by next token.
	NextToken *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type DescribeReplicationConfigurationTemplatesPaginator

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

DescribeReplicationConfigurationTemplatesPaginator is a paginator for DescribeReplicationConfigurationTemplates

func NewDescribeReplicationConfigurationTemplatesPaginator

NewDescribeReplicationConfigurationTemplatesPaginator returns a new DescribeReplicationConfigurationTemplatesPaginator

func (*DescribeReplicationConfigurationTemplatesPaginator) HasMorePages

HasMorePages returns a boolean indicating whether more pages are available

func (*DescribeReplicationConfigurationTemplatesPaginator) NextPage

NextPage retrieves the next DescribeReplicationConfigurationTemplates page.

type DescribeReplicationConfigurationTemplatesPaginatorOptions

type DescribeReplicationConfigurationTemplatesPaginatorOptions struct {
	// Request to describe Replication Configuration template by max results.
	Limit int32

	// Set to true if pagination should stop if the service returns a pagination token
	// that matches the most recent token provided to the service.
	StopOnDuplicateToken bool
}

DescribeReplicationConfigurationTemplatesPaginatorOptions is the paginator options for DescribeReplicationConfigurationTemplates

type DescribeSourceServersAPIClient

type DescribeSourceServersAPIClient interface {
	DescribeSourceServers(context.Context, *DescribeSourceServersInput, ...func(*Options)) (*DescribeSourceServersOutput, error)
}

DescribeSourceServersAPIClient is a client that implements the DescribeSourceServers operation.

type DescribeSourceServersInput

type DescribeSourceServersInput struct {

	// Request to filter Source Servers list by Accoun ID.
	AccountID *string

	// Request to filter Source Servers list.
	Filters *types.DescribeSourceServersRequestFilters

	// Request to filter Source Servers list by maximum results.
	MaxResults *int32

	// Request to filter Source Servers list by next token.
	NextToken *string
	// contains filtered or unexported fields
}

type DescribeSourceServersOutput

type DescribeSourceServersOutput struct {

	// Request to filter Source Servers list by item.
	Items []types.SourceServer

	// Request to filter Source Servers next token.
	NextToken *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type DescribeSourceServersPaginator

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

DescribeSourceServersPaginator is a paginator for DescribeSourceServers

func NewDescribeSourceServersPaginator

NewDescribeSourceServersPaginator returns a new DescribeSourceServersPaginator

func (*DescribeSourceServersPaginator) HasMorePages

func (p *DescribeSourceServersPaginator) HasMorePages() bool

HasMorePages returns a boolean indicating whether more pages are available

func (*DescribeSourceServersPaginator) NextPage

NextPage retrieves the next DescribeSourceServers page.

type DescribeSourceServersPaginatorOptions

type DescribeSourceServersPaginatorOptions struct {
	// Request to filter Source Servers list by maximum results.
	Limit int32

	// Set to true if pagination should stop if the service returns a pagination token
	// that matches the most recent token provided to the service.
	StopOnDuplicateToken bool
}

DescribeSourceServersPaginatorOptions is the paginator options for DescribeSourceServers

type DescribeVcenterClientsAPIClient

type DescribeVcenterClientsAPIClient interface {
	DescribeVcenterClients(context.Context, *DescribeVcenterClientsInput, ...func(*Options)) (*DescribeVcenterClientsOutput, error)
}

DescribeVcenterClientsAPIClient is a client that implements the DescribeVcenterClients operation.

type DescribeVcenterClientsInput

type DescribeVcenterClientsInput struct {

	// Maximum results to be returned in DescribeVcenterClients.
	MaxResults *int32

	// Next pagination token to be provided for DescribeVcenterClients.
	NextToken *string
	// contains filtered or unexported fields
}

type DescribeVcenterClientsOutput

type DescribeVcenterClientsOutput struct {

	// List of items returned by DescribeVcenterClients.
	Items []types.VcenterClient

	// Next pagination token returned from DescribeVcenterClients.
	NextToken *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type DescribeVcenterClientsPaginator

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

DescribeVcenterClientsPaginator is a paginator for DescribeVcenterClients

func NewDescribeVcenterClientsPaginator

NewDescribeVcenterClientsPaginator returns a new DescribeVcenterClientsPaginator

func (*DescribeVcenterClientsPaginator) HasMorePages

func (p *DescribeVcenterClientsPaginator) HasMorePages() bool

HasMorePages returns a boolean indicating whether more pages are available

func (*DescribeVcenterClientsPaginator) NextPage

NextPage retrieves the next DescribeVcenterClients page.

type DescribeVcenterClientsPaginatorOptions

type DescribeVcenterClientsPaginatorOptions struct {
	// Maximum results to be returned in DescribeVcenterClients.
	Limit int32

	// Set to true if pagination should stop if the service returns a pagination token
	// that matches the most recent token provided to the service.
	StopOnDuplicateToken bool
}

DescribeVcenterClientsPaginatorOptions is the paginator options for DescribeVcenterClients

type DisassociateApplicationsInput

type DisassociateApplicationsInput struct {

	// Application IDs list.
	//
	// This member is required.
	ApplicationIDs []string

	// Wave ID.
	//
	// This member is required.
	WaveID *string

	// Account ID.
	AccountID *string
	// contains filtered or unexported fields
}

type DisassociateApplicationsOutput

type DisassociateApplicationsOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type DisassociateSourceServersInput

type DisassociateSourceServersInput struct {

	// Application ID.
	//
	// This member is required.
	ApplicationID *string

	// Source server IDs list.
	//
	// This member is required.
	SourceServerIDs []string

	// Account ID.
	AccountID *string
	// contains filtered or unexported fields
}

type DisassociateSourceServersOutput

type DisassociateSourceServersOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type DisconnectFromServiceInput

type DisconnectFromServiceInput struct {

	// Request to disconnect Source Server from service by Server ID.
	//
	// This member is required.
	SourceServerID *string

	// Request to disconnect Source Server from service by Account ID.
	AccountID *string
	// contains filtered or unexported fields
}

type DisconnectFromServiceOutput

type DisconnectFromServiceOutput struct {

	// Source server application ID.
	ApplicationID *string

	// Source server ARN.
	Arn *string

	// Source Server connector action.
	ConnectorAction *types.SourceServerConnectorAction

	// Source server data replication info.
	DataReplicationInfo *types.DataReplicationInfo

	// Source server fqdn for action framework.
	FqdnForActionFramework *string

	// Source server archived status.
	IsArchived *bool

	// Source server launched instance.
	LaunchedInstance *types.LaunchedInstance

	// Source server lifecycle state.
	LifeCycle *types.LifeCycle

	// Source server replication type.
	ReplicationType types.ReplicationType

	// Source server properties.
	SourceProperties *types.SourceProperties

	// Source server ID.
	SourceServerID *string

	// Source server Tags.
	Tags map[string]string

	// Source server user provided ID.
	UserProvidedID *string

	// Source server vCenter client id.
	VcenterClientID *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type EndpointParameters

type EndpointParameters struct {
	// The AWS region used to dispatch the request.
	//
	// Parameter is
	// required.
	//
	// AWS::Region
	Region *string

	// When true, use the dual-stack endpoint. If the configured endpoint does not
	// support dual-stack, dispatching the request MAY return an error.
	//
	// Defaults to
	// false if no value is provided.
	//
	// AWS::UseDualStack
	UseDualStack *bool

	// When true, send this request to the FIPS-compliant regional endpoint. If the
	// configured endpoint does not have a FIPS compliant endpoint, dispatching the
	// request will return an error.
	//
	// Defaults to false if no value is
	// provided.
	//
	// AWS::UseFIPS
	UseFIPS *bool

	// Override the endpoint used to send this request
	//
	// Parameter is
	// required.
	//
	// SDK::Endpoint
	Endpoint *string
}

EndpointParameters provides the parameters that influence how endpoints are resolved.

func (EndpointParameters) ValidateRequired

func (p EndpointParameters) ValidateRequired() error

ValidateRequired validates required parameters are set.

func (EndpointParameters) WithDefaults

func (p EndpointParameters) WithDefaults() EndpointParameters

WithDefaults returns a shallow copy of EndpointParameterswith default values applied to members where applicable.

type EndpointResolver

type EndpointResolver interface {
	ResolveEndpoint(region string, options EndpointResolverOptions) (aws.Endpoint, error)
}

EndpointResolver interface for resolving service endpoints.

func EndpointResolverFromURL

func EndpointResolverFromURL(url string, optFns ...func(*aws.Endpoint)) EndpointResolver

EndpointResolverFromURL returns an EndpointResolver configured using the provided endpoint url. By default, the resolved endpoint resolver uses the client region as signing region, and the endpoint source is set to EndpointSourceCustom.You can provide functional options to configure endpoint values for the resolved endpoint.

type EndpointResolverFunc

type EndpointResolverFunc func(region string, options EndpointResolverOptions) (aws.Endpoint, error)

EndpointResolverFunc is a helper utility that wraps a function so it satisfies the EndpointResolver interface. This is useful when you want to add additional endpoint resolving logic, or stub out specific endpoints with custom values.

func (EndpointResolverFunc) ResolveEndpoint

func (fn EndpointResolverFunc) ResolveEndpoint(region string, options EndpointResolverOptions) (endpoint aws.Endpoint, err error)

type EndpointResolverOptions

type EndpointResolverOptions = internalendpoints.Options

EndpointResolverOptions is the service endpoint resolver options

type EndpointResolverV2

type EndpointResolverV2 interface {
	// ResolveEndpoint attempts to resolve the endpoint with the provided options,
	// returning the endpoint if found. Otherwise an error is returned.
	ResolveEndpoint(ctx context.Context, params EndpointParameters) (
		smithyendpoints.Endpoint, error,
	)
}

EndpointResolverV2 provides the interface for resolving service endpoints.

func NewDefaultEndpointResolverV2

func NewDefaultEndpointResolverV2() EndpointResolverV2

type FinalizeCutoverInput

type FinalizeCutoverInput struct {

	// Request to finalize Cutover by Source Server ID.
	//
	// This member is required.
	SourceServerID *string

	// Request to finalize Cutover by Source Account ID.
	AccountID *string
	// contains filtered or unexported fields
}

type FinalizeCutoverOutput

type FinalizeCutoverOutput struct {

	// Source server application ID.
	ApplicationID *string

	// Source server ARN.
	Arn *string

	// Source Server connector action.
	ConnectorAction *types.SourceServerConnectorAction

	// Source server data replication info.
	DataReplicationInfo *types.DataReplicationInfo

	// Source server fqdn for action framework.
	FqdnForActionFramework *string

	// Source server archived status.
	IsArchived *bool

	// Source server launched instance.
	LaunchedInstance *types.LaunchedInstance

	// Source server lifecycle state.
	LifeCycle *types.LifeCycle

	// Source server replication type.
	ReplicationType types.ReplicationType

	// Source server properties.
	SourceProperties *types.SourceProperties

	// Source server ID.
	SourceServerID *string

	// Source server Tags.
	Tags map[string]string

	// Source server user provided ID.
	UserProvidedID *string

	// Source server vCenter client id.
	VcenterClientID *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type GetLaunchConfigurationInput

type GetLaunchConfigurationInput struct {

	// Request to get Launch Configuration information by Source Server ID.
	//
	// This member is required.
	SourceServerID *string

	// Request to get Launch Configuration information by Account ID.
	AccountID *string
	// contains filtered or unexported fields
}

type GetLaunchConfigurationOutput

type GetLaunchConfigurationOutput struct {

	// Launch configuration boot mode.
	BootMode types.BootMode

	// Copy Private IP during Launch Configuration.
	CopyPrivateIp *bool

	// Copy Tags during Launch Configuration.
	CopyTags *bool

	// Launch configuration EC2 Launch template ID.
	Ec2LaunchTemplateID *string

	// Enable map auto tagging.
	EnableMapAutoTagging *bool

	// Launch disposition for launch configuration.
	LaunchDisposition types.LaunchDisposition

	// Launch configuration OS licensing.
	Licensing *types.Licensing

	// Map auto tagging MPE ID.
	MapAutoTaggingMpeID *string

	// Launch configuration name.
	Name *string

	// Post Launch Actions to executed on the Test or Cutover instance.
	PostLaunchActions *types.PostLaunchActions

	// Launch configuration Source Server ID.
	SourceServerID *string

	// Launch configuration Target instance type right sizing method.
	TargetInstanceTypeRightSizingMethod types.TargetInstanceTypeRightSizingMethod

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type GetReplicationConfigurationInput

type GetReplicationConfigurationInput struct {

	// Request to get Replication Configuration by Source Server ID.
	//
	// This member is required.
	SourceServerID *string

	// Request to get Replication Configuration by Account ID.
	AccountID *string
	// contains filtered or unexported fields
}

type GetReplicationConfigurationOutput

type GetReplicationConfigurationOutput struct {

	// Replication Configuration associate default Application Migration Service
	// Security Group.
	AssociateDefaultSecurityGroup *bool

	// Replication Configuration set bandwidth throttling.
	BandwidthThrottling int64

	// Replication Configuration create Public IP.
	CreatePublicIP *bool

	// Replication Configuration data plane routing.
	DataPlaneRouting types.ReplicationConfigurationDataPlaneRouting

	// Replication Configuration use default large Staging Disks.
	DefaultLargeStagingDiskType types.ReplicationConfigurationDefaultLargeStagingDiskType

	// Replication Configuration EBS encryption.
	EbsEncryption types.ReplicationConfigurationEbsEncryption

	// Replication Configuration EBS encryption key ARN.
	EbsEncryptionKeyArn *string

	// Replication Configuration name.
	Name *string

	// Replication Configuration replicated disks.
	ReplicatedDisks []types.ReplicationConfigurationReplicatedDisk

	// Replication Configuration Replication Server instance type.
	ReplicationServerInstanceType *string

	// Replication Configuration Replication Server Security Group IDs.
	ReplicationServersSecurityGroupsIDs []string

	// Replication Configuration Source Server ID.
	SourceServerID *string

	// Replication Configuration Staging Area subnet ID.
	StagingAreaSubnetId *string

	// Replication Configuration Staging Area tags.
	StagingAreaTags map[string]string

	// Replication Configuration use Dedicated Replication Server.
	UseDedicatedReplicationServer *bool

	// Replication Configuration use Fips Endpoint.
	UseFipsEndpoint *bool

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type HTTPClient

type HTTPClient interface {
	Do(*http.Request) (*http.Response, error)
}

type HTTPSignerV4

type HTTPSignerV4 interface {
	SignHTTP(ctx context.Context, credentials aws.Credentials, r *http.Request, payloadHash string, service string, region string, signingTime time.Time, optFns ...func(*v4.SignerOptions)) error
}

type IdempotencyTokenProvider

type IdempotencyTokenProvider interface {
	GetIdempotencyToken() (string, error)
}

IdempotencyTokenProvider interface for providing idempotency token

type InitializeServiceInput

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

type InitializeServiceOutput

type InitializeServiceOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type ListApplicationsAPIClient

type ListApplicationsAPIClient interface {
	ListApplications(context.Context, *ListApplicationsInput, ...func(*Options)) (*ListApplicationsOutput, error)
}

ListApplicationsAPIClient is a client that implements the ListApplications operation.

type ListApplicationsInput

type ListApplicationsInput struct {

	// Applications list Account ID.
	AccountID *string

	// Applications list filters.
	Filters *types.ListApplicationsRequestFilters

	// Maximum results to return when listing applications.
	MaxResults *int32

	// Request next token.
	NextToken *string
	// contains filtered or unexported fields
}

type ListApplicationsOutput

type ListApplicationsOutput struct {

	// Applications list.
	Items []types.Application

	// Response next token.
	NextToken *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type ListApplicationsPaginator

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

ListApplicationsPaginator is a paginator for ListApplications

func NewListApplicationsPaginator

func NewListApplicationsPaginator(client ListApplicationsAPIClient, params *ListApplicationsInput, optFns ...func(*ListApplicationsPaginatorOptions)) *ListApplicationsPaginator

NewListApplicationsPaginator returns a new ListApplicationsPaginator

func (*ListApplicationsPaginator) HasMorePages

func (p *ListApplicationsPaginator) HasMorePages() bool

HasMorePages returns a boolean indicating whether more pages are available

func (*ListApplicationsPaginator) NextPage

func (p *ListApplicationsPaginator) NextPage(ctx context.Context, optFns ...func(*Options)) (*ListApplicationsOutput, error)

NextPage retrieves the next ListApplications page.

type ListApplicationsPaginatorOptions

type ListApplicationsPaginatorOptions struct {
	// Maximum results to return when listing applications.
	Limit int32

	// Set to true if pagination should stop if the service returns a pagination token
	// that matches the most recent token provided to the service.
	StopOnDuplicateToken bool
}

ListApplicationsPaginatorOptions is the paginator options for ListApplications

type ListConnectorsAPIClient

type ListConnectorsAPIClient interface {
	ListConnectors(context.Context, *ListConnectorsInput, ...func(*Options)) (*ListConnectorsOutput, error)
}

ListConnectorsAPIClient is a client that implements the ListConnectors operation.

type ListConnectorsInput

type ListConnectorsInput struct {

	// List Connectors Request filters.
	Filters *types.ListConnectorsRequestFilters

	// List Connectors Request max results.
	MaxResults *int32

	// List Connectors Request next token.
	NextToken *string
	// contains filtered or unexported fields
}

type ListConnectorsOutput

type ListConnectorsOutput struct {

	// List connectors response items.
	Items []types.Connector

	// List connectors response next token.
	NextToken *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type ListConnectorsPaginator

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

ListConnectorsPaginator is a paginator for ListConnectors

func NewListConnectorsPaginator

func NewListConnectorsPaginator(client ListConnectorsAPIClient, params *ListConnectorsInput, optFns ...func(*ListConnectorsPaginatorOptions)) *ListConnectorsPaginator

NewListConnectorsPaginator returns a new ListConnectorsPaginator

func (*ListConnectorsPaginator) HasMorePages

func (p *ListConnectorsPaginator) HasMorePages() bool

HasMorePages returns a boolean indicating whether more pages are available

func (*ListConnectorsPaginator) NextPage

func (p *ListConnectorsPaginator) NextPage(ctx context.Context, optFns ...func(*Options)) (*ListConnectorsOutput, error)

NextPage retrieves the next ListConnectors page.

type ListConnectorsPaginatorOptions

type ListConnectorsPaginatorOptions struct {
	// List Connectors Request max results.
	Limit int32

	// Set to true if pagination should stop if the service returns a pagination token
	// that matches the most recent token provided to the service.
	StopOnDuplicateToken bool
}

ListConnectorsPaginatorOptions is the paginator options for ListConnectors

type ListExportErrorsAPIClient

type ListExportErrorsAPIClient interface {
	ListExportErrors(context.Context, *ListExportErrorsInput, ...func(*Options)) (*ListExportErrorsOutput, error)
}

ListExportErrorsAPIClient is a client that implements the ListExportErrors operation.

type ListExportErrorsInput

type ListExportErrorsInput struct {

	// List export errors request export id.
	//
	// This member is required.
	ExportID *string

	// List export errors request max results.
	MaxResults *int32

	// List export errors request next token.
	NextToken *string
	// contains filtered or unexported fields
}

List export errors request.

type ListExportErrorsOutput

type ListExportErrorsOutput struct {

	// List export errors response items.
	Items []types.ExportTaskError

	// List export errors response next token.
	NextToken *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

List export errors response.

type ListExportErrorsPaginator

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

ListExportErrorsPaginator is a paginator for ListExportErrors

func NewListExportErrorsPaginator

func NewListExportErrorsPaginator(client ListExportErrorsAPIClient, params *ListExportErrorsInput, optFns ...func(*ListExportErrorsPaginatorOptions)) *ListExportErrorsPaginator

NewListExportErrorsPaginator returns a new ListExportErrorsPaginator

func (*ListExportErrorsPaginator) HasMorePages

func (p *ListExportErrorsPaginator) HasMorePages() bool

HasMorePages returns a boolean indicating whether more pages are available

func (*ListExportErrorsPaginator) NextPage

func (p *ListExportErrorsPaginator) NextPage(ctx context.Context, optFns ...func(*Options)) (*ListExportErrorsOutput, error)

NextPage retrieves the next ListExportErrors page.

type ListExportErrorsPaginatorOptions

type ListExportErrorsPaginatorOptions struct {
	// List export errors request max results.
	Limit int32

	// Set to true if pagination should stop if the service returns a pagination token
	// that matches the most recent token provided to the service.
	StopOnDuplicateToken bool
}

ListExportErrorsPaginatorOptions is the paginator options for ListExportErrors

type ListExportsAPIClient

type ListExportsAPIClient interface {
	ListExports(context.Context, *ListExportsInput, ...func(*Options)) (*ListExportsOutput, error)
}

ListExportsAPIClient is a client that implements the ListExports operation.

type ListExportsInput

type ListExportsInput struct {

	// List exports request filters.
	Filters *types.ListExportsRequestFilters

	// List export request max results.
	MaxResults *int32

	// List export request next token.
	NextToken *string
	// contains filtered or unexported fields
}

List export request.

type ListExportsOutput

type ListExportsOutput struct {

	// List export response items.
	Items []types.ExportTask

	// List export response next token.
	NextToken *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

List export response.

type ListExportsPaginator

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

ListExportsPaginator is a paginator for ListExports

func NewListExportsPaginator

func NewListExportsPaginator(client ListExportsAPIClient, params *ListExportsInput, optFns ...func(*ListExportsPaginatorOptions)) *ListExportsPaginator

NewListExportsPaginator returns a new ListExportsPaginator

func (*ListExportsPaginator) HasMorePages

func (p *ListExportsPaginator) HasMorePages() bool

HasMorePages returns a boolean indicating whether more pages are available

func (*ListExportsPaginator) NextPage

func (p *ListExportsPaginator) NextPage(ctx context.Context, optFns ...func(*Options)) (*ListExportsOutput, error)

NextPage retrieves the next ListExports page.

type ListExportsPaginatorOptions

type ListExportsPaginatorOptions struct {
	// List export request max results.
	Limit int32

	// Set to true if pagination should stop if the service returns a pagination token
	// that matches the most recent token provided to the service.
	StopOnDuplicateToken bool
}

ListExportsPaginatorOptions is the paginator options for ListExports

type ListImportErrorsAPIClient

type ListImportErrorsAPIClient interface {
	ListImportErrors(context.Context, *ListImportErrorsInput, ...func(*Options)) (*ListImportErrorsOutput, error)
}

ListImportErrorsAPIClient is a client that implements the ListImportErrors operation.

type ListImportErrorsInput

type ListImportErrorsInput struct {

	// List import errors request import id.
	//
	// This member is required.
	ImportID *string

	// List import errors request max results.
	MaxResults *int32

	// List import errors request next token.
	NextToken *string
	// contains filtered or unexported fields
}

List import errors request.

type ListImportErrorsOutput

type ListImportErrorsOutput struct {

	// List imports errors response items.
	Items []types.ImportTaskError

	// List imports errors response next token.
	NextToken *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

List imports errors response.

type ListImportErrorsPaginator

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

ListImportErrorsPaginator is a paginator for ListImportErrors

func NewListImportErrorsPaginator

func NewListImportErrorsPaginator(client ListImportErrorsAPIClient, params *ListImportErrorsInput, optFns ...func(*ListImportErrorsPaginatorOptions)) *ListImportErrorsPaginator

NewListImportErrorsPaginator returns a new ListImportErrorsPaginator

func (*ListImportErrorsPaginator) HasMorePages

func (p *ListImportErrorsPaginator) HasMorePages() bool

HasMorePages returns a boolean indicating whether more pages are available

func (*ListImportErrorsPaginator) NextPage

func (p *ListImportErrorsPaginator) NextPage(ctx context.Context, optFns ...func(*Options)) (*ListImportErrorsOutput, error)

NextPage retrieves the next ListImportErrors page.

type ListImportErrorsPaginatorOptions

type ListImportErrorsPaginatorOptions struct {
	// List import errors request max results.
	Limit int32

	// Set to true if pagination should stop if the service returns a pagination token
	// that matches the most recent token provided to the service.
	StopOnDuplicateToken bool
}

ListImportErrorsPaginatorOptions is the paginator options for ListImportErrors

type ListImportsAPIClient

type ListImportsAPIClient interface {
	ListImports(context.Context, *ListImportsInput, ...func(*Options)) (*ListImportsOutput, error)
}

ListImportsAPIClient is a client that implements the ListImports operation.

type ListImportsInput

type ListImportsInput struct {

	// List imports request filters.
	Filters *types.ListImportsRequestFilters

	// List imports request max results.
	MaxResults *int32

	// List imports request next token.
	NextToken *string
	// contains filtered or unexported fields
}

List imports request.

type ListImportsOutput

type ListImportsOutput struct {

	// List import response items.
	Items []types.ImportTask

	// List import response next token.
	NextToken *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

List import response.

type ListImportsPaginator

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

ListImportsPaginator is a paginator for ListImports

func NewListImportsPaginator

func NewListImportsPaginator(client ListImportsAPIClient, params *ListImportsInput, optFns ...func(*ListImportsPaginatorOptions)) *ListImportsPaginator

NewListImportsPaginator returns a new ListImportsPaginator

func (*ListImportsPaginator) HasMorePages

func (p *ListImportsPaginator) HasMorePages() bool

HasMorePages returns a boolean indicating whether more pages are available

func (*ListImportsPaginator) NextPage

func (p *ListImportsPaginator) NextPage(ctx context.Context, optFns ...func(*Options)) (*ListImportsOutput, error)

NextPage retrieves the next ListImports page.

type ListImportsPaginatorOptions

type ListImportsPaginatorOptions struct {
	// List imports request max results.
	Limit int32

	// Set to true if pagination should stop if the service returns a pagination token
	// that matches the most recent token provided to the service.
	StopOnDuplicateToken bool
}

ListImportsPaginatorOptions is the paginator options for ListImports

type ListManagedAccountsAPIClient

type ListManagedAccountsAPIClient interface {
	ListManagedAccounts(context.Context, *ListManagedAccountsInput, ...func(*Options)) (*ListManagedAccountsOutput, error)
}

ListManagedAccountsAPIClient is a client that implements the ListManagedAccounts operation.

type ListManagedAccountsInput

type ListManagedAccountsInput struct {

	// List managed accounts request max results.
	MaxResults *int32

	// List managed accounts request next token.
	NextToken *string
	// contains filtered or unexported fields
}

List managed accounts request.

type ListManagedAccountsOutput

type ListManagedAccountsOutput struct {

	// List managed accounts response items.
	//
	// This member is required.
	Items []types.ManagedAccount

	// List managed accounts response next token.
	NextToken *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

List managed accounts response.

type ListManagedAccountsPaginator

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

ListManagedAccountsPaginator is a paginator for ListManagedAccounts

func NewListManagedAccountsPaginator

func NewListManagedAccountsPaginator(client ListManagedAccountsAPIClient, params *ListManagedAccountsInput, optFns ...func(*ListManagedAccountsPaginatorOptions)) *ListManagedAccountsPaginator

NewListManagedAccountsPaginator returns a new ListManagedAccountsPaginator

func (*ListManagedAccountsPaginator) HasMorePages

func (p *ListManagedAccountsPaginator) HasMorePages() bool

HasMorePages returns a boolean indicating whether more pages are available

func (*ListManagedAccountsPaginator) NextPage

func (p *ListManagedAccountsPaginator) NextPage(ctx context.Context, optFns ...func(*Options)) (*ListManagedAccountsOutput, error)

NextPage retrieves the next ListManagedAccounts page.

type ListManagedAccountsPaginatorOptions

type ListManagedAccountsPaginatorOptions struct {
	// List managed accounts request max results.
	Limit int32

	// Set to true if pagination should stop if the service returns a pagination token
	// that matches the most recent token provided to the service.
	StopOnDuplicateToken bool
}

ListManagedAccountsPaginatorOptions is the paginator options for ListManagedAccounts

type ListSourceServerActionsAPIClient

type ListSourceServerActionsAPIClient interface {
	ListSourceServerActions(context.Context, *ListSourceServerActionsInput, ...func(*Options)) (*ListSourceServerActionsOutput, error)
}

ListSourceServerActionsAPIClient is a client that implements the ListSourceServerActions operation.

type ListSourceServerActionsInput

type ListSourceServerActionsInput struct {

	// Source server ID.
	//
	// This member is required.
	SourceServerID *string

	// Account ID to return when listing source server post migration custom actions.
	AccountID *string

	// Filters to apply when listing source server post migration custom actions.
	Filters *types.SourceServerActionsRequestFilters

	// Maximum amount of items to return when listing source server post migration
	// custom actions.
	MaxResults *int32

	// Next token to use when listing source server post migration custom actions.
	NextToken *string
	// contains filtered or unexported fields
}

type ListSourceServerActionsOutput

type ListSourceServerActionsOutput struct {

	// List of source server post migration custom actions.
	Items []types.SourceServerActionDocument

	// Next token returned when listing source server post migration custom actions.
	NextToken *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type ListSourceServerActionsPaginator

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

ListSourceServerActionsPaginator is a paginator for ListSourceServerActions

func NewListSourceServerActionsPaginator

NewListSourceServerActionsPaginator returns a new ListSourceServerActionsPaginator

func (*ListSourceServerActionsPaginator) HasMorePages

func (p *ListSourceServerActionsPaginator) HasMorePages() bool

HasMorePages returns a boolean indicating whether more pages are available

func (*ListSourceServerActionsPaginator) NextPage

NextPage retrieves the next ListSourceServerActions page.

type ListSourceServerActionsPaginatorOptions

type ListSourceServerActionsPaginatorOptions struct {
	// Maximum amount of items to return when listing source server post migration
	// custom actions.
	Limit int32

	// Set to true if pagination should stop if the service returns a pagination token
	// that matches the most recent token provided to the service.
	StopOnDuplicateToken bool
}

ListSourceServerActionsPaginatorOptions is the paginator options for ListSourceServerActions

type ListTagsForResourceInput

type ListTagsForResourceInput struct {

	// List tags for resource request by ARN.
	//
	// This member is required.
	ResourceArn *string
	// contains filtered or unexported fields
}

type ListTagsForResourceOutput

type ListTagsForResourceOutput struct {

	// List tags for resource response.
	Tags map[string]string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type ListTemplateActionsAPIClient

type ListTemplateActionsAPIClient interface {
	ListTemplateActions(context.Context, *ListTemplateActionsInput, ...func(*Options)) (*ListTemplateActionsOutput, error)
}

ListTemplateActionsAPIClient is a client that implements the ListTemplateActions operation.

type ListTemplateActionsInput

type ListTemplateActionsInput struct {

	// Launch configuration template ID.
	//
	// This member is required.
	LaunchConfigurationTemplateID *string

	// Filters to apply when listing template post migration custom actions.
	Filters *types.TemplateActionsRequestFilters

	// Maximum amount of items to return when listing template post migration custom
	// actions.
	MaxResults *int32

	// Next token to use when listing template post migration custom actions.
	NextToken *string
	// contains filtered or unexported fields
}

type ListTemplateActionsOutput

type ListTemplateActionsOutput struct {

	// List of template post migration custom actions.
	Items []types.TemplateActionDocument

	// Next token returned when listing template post migration custom actions.
	NextToken *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type ListTemplateActionsPaginator

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

ListTemplateActionsPaginator is a paginator for ListTemplateActions

func NewListTemplateActionsPaginator

func NewListTemplateActionsPaginator(client ListTemplateActionsAPIClient, params *ListTemplateActionsInput, optFns ...func(*ListTemplateActionsPaginatorOptions)) *ListTemplateActionsPaginator

NewListTemplateActionsPaginator returns a new ListTemplateActionsPaginator

func (*ListTemplateActionsPaginator) HasMorePages

func (p *ListTemplateActionsPaginator) HasMorePages() bool

HasMorePages returns a boolean indicating whether more pages are available

func (*ListTemplateActionsPaginator) NextPage

func (p *ListTemplateActionsPaginator) NextPage(ctx context.Context, optFns ...func(*Options)) (*ListTemplateActionsOutput, error)

NextPage retrieves the next ListTemplateActions page.

type ListTemplateActionsPaginatorOptions

type ListTemplateActionsPaginatorOptions struct {
	// Maximum amount of items to return when listing template post migration custom
	// actions.
	Limit int32

	// Set to true if pagination should stop if the service returns a pagination token
	// that matches the most recent token provided to the service.
	StopOnDuplicateToken bool
}

ListTemplateActionsPaginatorOptions is the paginator options for ListTemplateActions

type ListWavesAPIClient

type ListWavesAPIClient interface {
	ListWaves(context.Context, *ListWavesInput, ...func(*Options)) (*ListWavesOutput, error)
}

ListWavesAPIClient is a client that implements the ListWaves operation.

type ListWavesInput

type ListWavesInput struct {

	// Request account ID.
	AccountID *string

	// Waves list filters.
	Filters *types.ListWavesRequestFilters

	// Maximum results to return when listing waves.
	MaxResults *int32

	// Request next token.
	NextToken *string
	// contains filtered or unexported fields
}

type ListWavesOutput

type ListWavesOutput struct {

	// Waves list.
	Items []types.Wave

	// Response next token.
	NextToken *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type ListWavesPaginator

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

ListWavesPaginator is a paginator for ListWaves

func NewListWavesPaginator

func NewListWavesPaginator(client ListWavesAPIClient, params *ListWavesInput, optFns ...func(*ListWavesPaginatorOptions)) *ListWavesPaginator

NewListWavesPaginator returns a new ListWavesPaginator

func (*ListWavesPaginator) HasMorePages

func (p *ListWavesPaginator) HasMorePages() bool

HasMorePages returns a boolean indicating whether more pages are available

func (*ListWavesPaginator) NextPage

func (p *ListWavesPaginator) NextPage(ctx context.Context, optFns ...func(*Options)) (*ListWavesOutput, error)

NextPage retrieves the next ListWaves page.

type ListWavesPaginatorOptions

type ListWavesPaginatorOptions struct {
	// Maximum results to return when listing waves.
	Limit int32

	// Set to true if pagination should stop if the service returns a pagination token
	// that matches the most recent token provided to the service.
	StopOnDuplicateToken bool
}

ListWavesPaginatorOptions is the paginator options for ListWaves

type MarkAsArchivedInput

type MarkAsArchivedInput struct {

	// Mark as archived by Source Server ID.
	//
	// This member is required.
	SourceServerID *string

	// Mark as archived by Account ID.
	AccountID *string
	// contains filtered or unexported fields
}

type MarkAsArchivedOutput

type MarkAsArchivedOutput struct {

	// Source server application ID.
	ApplicationID *string

	// Source server ARN.
	Arn *string

	// Source Server connector action.
	ConnectorAction *types.SourceServerConnectorAction

	// Source server data replication info.
	DataReplicationInfo *types.DataReplicationInfo

	// Source server fqdn for action framework.
	FqdnForActionFramework *string

	// Source server archived status.
	IsArchived *bool

	// Source server launched instance.
	LaunchedInstance *types.LaunchedInstance

	// Source server lifecycle state.
	LifeCycle *types.LifeCycle

	// Source server replication type.
	ReplicationType types.ReplicationType

	// Source server properties.
	SourceProperties *types.SourceProperties

	// Source server ID.
	SourceServerID *string

	// Source server Tags.
	Tags map[string]string

	// Source server user provided ID.
	UserProvidedID *string

	// Source server vCenter client id.
	VcenterClientID *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type Options

type Options struct {
	// Set of options to modify how an operation is invoked. These apply to all
	// operations invoked for this client. Use functional options on operation call to
	// modify this list for per operation behavior.
	APIOptions []func(*middleware.Stack) error

	// The optional application specific identifier appended to the User-Agent header.
	AppID string

	// This endpoint will be given as input to an EndpointResolverV2. It is used for
	// providing a custom base endpoint that is subject to modifications by the
	// processing EndpointResolverV2.
	BaseEndpoint *string

	// Configures the events that will be sent to the configured logger.
	ClientLogMode aws.ClientLogMode

	// The credentials object to use when signing requests.
	Credentials aws.CredentialsProvider

	// The configuration DefaultsMode that the SDK should use when constructing the
	// clients initial default settings.
	DefaultsMode aws.DefaultsMode

	// The endpoint options to be used when attempting to resolve an endpoint.
	EndpointOptions EndpointResolverOptions

	// The service endpoint resolver.
	//
	// Deprecated: Deprecated: EndpointResolver and WithEndpointResolver. Providing a
	// value for this field will likely prevent you from using any endpoint-related
	// service features released after the introduction of EndpointResolverV2 and
	// BaseEndpoint.
	//
	// To migrate an EndpointResolver implementation that uses a custom endpoint, set
	// the client option BaseEndpoint instead.
	EndpointResolver EndpointResolver

	// Resolves the endpoint used for a particular service operation. This should be
	// used over the deprecated EndpointResolver.
	EndpointResolverV2 EndpointResolverV2

	// Signature Version 4 (SigV4) Signer
	HTTPSignerV4 HTTPSignerV4

	// Provides idempotency tokens values that will be automatically populated into
	// idempotent API operations.
	IdempotencyTokenProvider IdempotencyTokenProvider

	// The logger writer interface to write logging messages to.
	Logger logging.Logger

	// The region to send requests to. (Required)
	Region string

	// RetryMaxAttempts specifies the maximum number attempts an API client will call
	// an operation that fails with a retryable error. A value of 0 is ignored, and
	// will not be used to configure the API client created default retryer, or modify
	// per operation call's retry max attempts.
	//
	// If specified in an operation call's functional options with a value that is
	// different than the constructed client's Options, the Client's Retryer will be
	// wrapped to use the operation's specific RetryMaxAttempts value.
	RetryMaxAttempts int

	// RetryMode specifies the retry mode the API client will be created with, if
	// Retryer option is not also specified.
	//
	// When creating a new API Clients this member will only be used if the Retryer
	// Options member is nil. This value will be ignored if Retryer is not nil.
	//
	// Currently does not support per operation call overrides, may in the future.
	RetryMode aws.RetryMode

	// Retryer guides how HTTP requests should be retried in case of recoverable
	// failures. When nil the API client will use a default retryer. The kind of
	// default retry created by the API client can be changed with the RetryMode
	// option.
	Retryer aws.Retryer

	// The RuntimeEnvironment configuration, only populated if the DefaultsMode is set
	// to DefaultsModeAuto and is initialized using config.LoadDefaultConfig . You
	// should not populate this structure programmatically, or rely on the values here
	// within your applications.
	RuntimeEnvironment aws.RuntimeEnvironment

	// The HTTP client to invoke API calls with. Defaults to client's default HTTP
	// implementation if nil.
	HTTPClient HTTPClient

	// The auth scheme resolver which determines how to authenticate for each
	// operation.
	AuthSchemeResolver AuthSchemeResolver

	// The list of auth schemes supported by the client.
	AuthSchemes []smithyhttp.AuthScheme
	// contains filtered or unexported fields
}

func (Options) Copy

func (o Options) Copy() Options

Copy creates a clone where the APIOptions list is deep copied.

func (Options) GetIdentityResolver

func (o Options) GetIdentityResolver(schemeID string) smithyauth.IdentityResolver

type PauseReplicationInput

type PauseReplicationInput struct {

	// Pause Replication Request source server ID.
	//
	// This member is required.
	SourceServerID *string

	// Pause Replication Request account ID.
	AccountID *string
	// contains filtered or unexported fields
}

type PauseReplicationOutput

type PauseReplicationOutput struct {

	// Source server application ID.
	ApplicationID *string

	// Source server ARN.
	Arn *string

	// Source Server connector action.
	ConnectorAction *types.SourceServerConnectorAction

	// Source server data replication info.
	DataReplicationInfo *types.DataReplicationInfo

	// Source server fqdn for action framework.
	FqdnForActionFramework *string

	// Source server archived status.
	IsArchived *bool

	// Source server launched instance.
	LaunchedInstance *types.LaunchedInstance

	// Source server lifecycle state.
	LifeCycle *types.LifeCycle

	// Source server replication type.
	ReplicationType types.ReplicationType

	// Source server properties.
	SourceProperties *types.SourceProperties

	// Source server ID.
	SourceServerID *string

	// Source server Tags.
	Tags map[string]string

	// Source server user provided ID.
	UserProvidedID *string

	// Source server vCenter client id.
	VcenterClientID *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type PutSourceServerActionInput

type PutSourceServerActionInput struct {

	// Source server post migration custom action ID.
	//
	// This member is required.
	ActionID *string

	// Source server post migration custom action name.
	//
	// This member is required.
	ActionName *string

	// Source server post migration custom action document identifier.
	//
	// This member is required.
	DocumentIdentifier *string

	// Source server post migration custom action order.
	//
	// This member is required.
	Order *int32

	// Source server ID.
	//
	// This member is required.
	SourceServerID *string

	// Source server post migration custom account ID.
	AccountID *string

	// Source server post migration custom action active status.
	Active *bool

	// Source server post migration custom action category.
	Category types.ActionCategory

	// Source server post migration custom action description.
	Description *string

	// Source server post migration custom action document version.
	DocumentVersion *string

	// Source server post migration custom action external parameters.
	ExternalParameters map[string]types.SsmExternalParameter

	// Source server post migration custom action must succeed for cutover.
	MustSucceedForCutover *bool

	// Source server post migration custom action parameters.
	Parameters map[string][]types.SsmParameterStoreParameter

	// Source server post migration custom action timeout in seconds.
	TimeoutSeconds *int32
	// contains filtered or unexported fields
}

type PutSourceServerActionOutput

type PutSourceServerActionOutput struct {

	// Source server post migration custom action ID.
	ActionID *string

	// Source server post migration custom action name.
	ActionName *string

	// Source server post migration custom action active status.
	Active *bool

	// Source server post migration custom action category.
	Category types.ActionCategory

	// Source server post migration custom action description.
	Description *string

	// Source server post migration custom action document identifier.
	DocumentIdentifier *string

	// Source server post migration custom action document version.
	DocumentVersion *string

	// Source server post migration custom action external parameters.
	ExternalParameters map[string]types.SsmExternalParameter

	// Source server post migration custom action must succeed for cutover.
	MustSucceedForCutover *bool

	// Source server post migration custom action order.
	Order *int32

	// Source server post migration custom action parameters.
	Parameters map[string][]types.SsmParameterStoreParameter

	// Source server post migration custom action timeout in seconds.
	TimeoutSeconds *int32

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type PutTemplateActionInput

type PutTemplateActionInput struct {

	// Template post migration custom action ID.
	//
	// This member is required.
	ActionID *string

	// Template post migration custom action name.
	//
	// This member is required.
	ActionName *string

	// Template post migration custom action document identifier.
	//
	// This member is required.
	DocumentIdentifier *string

	// Launch configuration template ID.
	//
	// This member is required.
	LaunchConfigurationTemplateID *string

	// Template post migration custom action order.
	//
	// This member is required.
	Order *int32

	// Template post migration custom action active status.
	Active *bool

	// Template post migration custom action category.
	Category types.ActionCategory

	// Template post migration custom action description.
	Description *string

	// Template post migration custom action document version.
	DocumentVersion *string

	// Template post migration custom action external parameters.
	ExternalParameters map[string]types.SsmExternalParameter

	// Template post migration custom action must succeed for cutover.
	MustSucceedForCutover *bool

	// Operating system eligible for this template post migration custom action.
	OperatingSystem *string

	// Template post migration custom action parameters.
	Parameters map[string][]types.SsmParameterStoreParameter

	// Template post migration custom action timeout in seconds.
	TimeoutSeconds *int32
	// contains filtered or unexported fields
}

type PutTemplateActionOutput

type PutTemplateActionOutput struct {

	// Template post migration custom action ID.
	ActionID *string

	// Template post migration custom action name.
	ActionName *string

	// Template post migration custom action active status.
	Active *bool

	// Template post migration custom action category.
	Category types.ActionCategory

	// Template post migration custom action description.
	Description *string

	// Template post migration custom action document identifier.
	DocumentIdentifier *string

	// Template post migration custom action document version.
	DocumentVersion *string

	// Template post migration custom action external parameters.
	ExternalParameters map[string]types.SsmExternalParameter

	// Template post migration custom action must succeed for cutover.
	MustSucceedForCutover *bool

	// Operating system eligible for this template post migration custom action.
	OperatingSystem *string

	// Template post migration custom action order.
	Order *int32

	// Template post migration custom action parameters.
	Parameters map[string][]types.SsmParameterStoreParameter

	// Template post migration custom action timeout in seconds.
	TimeoutSeconds *int32

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type RemoveSourceServerActionInput

type RemoveSourceServerActionInput struct {

	// Source server post migration custom action ID to remove.
	//
	// This member is required.
	ActionID *string

	// Source server ID of the post migration custom action to remove.
	//
	// This member is required.
	SourceServerID *string

	// Source server post migration account ID.
	AccountID *string
	// contains filtered or unexported fields
}

type RemoveSourceServerActionOutput

type RemoveSourceServerActionOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type RemoveTemplateActionInput

type RemoveTemplateActionInput struct {

	// Template post migration custom action ID to remove.
	//
	// This member is required.
	ActionID *string

	// Launch configuration template ID of the post migration custom action to remove.
	//
	// This member is required.
	LaunchConfigurationTemplateID *string
	// contains filtered or unexported fields
}

type RemoveTemplateActionOutput

type RemoveTemplateActionOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type ResolveEndpoint

type ResolveEndpoint struct {
	Resolver EndpointResolver
	Options  EndpointResolverOptions
}

func (*ResolveEndpoint) HandleSerialize

func (*ResolveEndpoint) ID

func (*ResolveEndpoint) ID() string

type ResumeReplicationInput

type ResumeReplicationInput struct {

	// Resume Replication Request source server ID.
	//
	// This member is required.
	SourceServerID *string

	// Resume Replication Request account ID.
	AccountID *string
	// contains filtered or unexported fields
}

type ResumeReplicationOutput

type ResumeReplicationOutput struct {

	// Source server application ID.
	ApplicationID *string

	// Source server ARN.
	Arn *string

	// Source Server connector action.
	ConnectorAction *types.SourceServerConnectorAction

	// Source server data replication info.
	DataReplicationInfo *types.DataReplicationInfo

	// Source server fqdn for action framework.
	FqdnForActionFramework *string

	// Source server archived status.
	IsArchived *bool

	// Source server launched instance.
	LaunchedInstance *types.LaunchedInstance

	// Source server lifecycle state.
	LifeCycle *types.LifeCycle

	// Source server replication type.
	ReplicationType types.ReplicationType

	// Source server properties.
	SourceProperties *types.SourceProperties

	// Source server ID.
	SourceServerID *string

	// Source server Tags.
	Tags map[string]string

	// Source server user provided ID.
	UserProvidedID *string

	// Source server vCenter client id.
	VcenterClientID *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type RetryDataReplicationInput

type RetryDataReplicationInput struct {

	// Retry data replication for Source Server ID.
	//
	// This member is required.
	SourceServerID *string

	// Retry data replication for Account ID.
	AccountID *string
	// contains filtered or unexported fields
}

type RetryDataReplicationOutput

type RetryDataReplicationOutput struct {

	// Source server application ID.
	ApplicationID *string

	// Source server ARN.
	Arn *string

	// Source Server connector action.
	ConnectorAction *types.SourceServerConnectorAction

	// Source server data replication info.
	DataReplicationInfo *types.DataReplicationInfo

	// Source server fqdn for action framework.
	FqdnForActionFramework *string

	// Source server archived status.
	IsArchived *bool

	// Source server launched instance.
	LaunchedInstance *types.LaunchedInstance

	// Source server lifecycle state.
	LifeCycle *types.LifeCycle

	// Source server replication type.
	ReplicationType types.ReplicationType

	// Source server properties.
	SourceProperties *types.SourceProperties

	// Source server ID.
	SourceServerID *string

	// Source server Tags.
	Tags map[string]string

	// Source server user provided ID.
	UserProvidedID *string

	// Source server vCenter client id.
	VcenterClientID *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type StartCutoverInput

type StartCutoverInput struct {

	// Start Cutover by Source Server IDs.
	//
	// This member is required.
	SourceServerIDs []string

	// Start Cutover by Account IDs
	AccountID *string

	// Start Cutover by Tags.
	Tags map[string]string
	// contains filtered or unexported fields
}

type StartCutoverOutput

type StartCutoverOutput struct {

	// Start Cutover Job response.
	Job *types.Job

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type StartExportInput

type StartExportInput struct {

	// Start export request s3 bucket.
	//
	// This member is required.
	S3Bucket *string

	// Start export request s3key.
	//
	// This member is required.
	S3Key *string

	// Start export request s3 bucket owner.
	S3BucketOwner *string
	// contains filtered or unexported fields
}

Start export request.

type StartExportOutput

type StartExportOutput struct {

	// Start export response export task.
	ExportTask *types.ExportTask

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

Start export response.

type StartImportInput

type StartImportInput struct {

	// Start import request s3 bucket source.
	//
	// This member is required.
	S3BucketSource *types.S3BucketSource

	// Start import request client token.
	ClientToken *string
	// contains filtered or unexported fields
}

Start import request.

type StartImportOutput

type StartImportOutput struct {

	// Start import response import task.
	ImportTask *types.ImportTask

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

Start import response.

type StartReplicationInput

type StartReplicationInput struct {

	// ID of source server on which to start replication.
	//
	// This member is required.
	SourceServerID *string

	// Account ID on which to start replication.
	AccountID *string
	// contains filtered or unexported fields
}

type StartReplicationOutput

type StartReplicationOutput struct {

	// Source server application ID.
	ApplicationID *string

	// Source server ARN.
	Arn *string

	// Source Server connector action.
	ConnectorAction *types.SourceServerConnectorAction

	// Source server data replication info.
	DataReplicationInfo *types.DataReplicationInfo

	// Source server fqdn for action framework.
	FqdnForActionFramework *string

	// Source server archived status.
	IsArchived *bool

	// Source server launched instance.
	LaunchedInstance *types.LaunchedInstance

	// Source server lifecycle state.
	LifeCycle *types.LifeCycle

	// Source server replication type.
	ReplicationType types.ReplicationType

	// Source server properties.
	SourceProperties *types.SourceProperties

	// Source server ID.
	SourceServerID *string

	// Source server Tags.
	Tags map[string]string

	// Source server user provided ID.
	UserProvidedID *string

	// Source server vCenter client id.
	VcenterClientID *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type StartTestInput

type StartTestInput struct {

	// Start Test for Source Server IDs.
	//
	// This member is required.
	SourceServerIDs []string

	// Start Test for Account ID.
	AccountID *string

	// Start Test by Tags.
	Tags map[string]string
	// contains filtered or unexported fields
}

type StartTestOutput

type StartTestOutput struct {

	// Start Test Job response.
	Job *types.Job

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type StopReplicationInput

type StopReplicationInput struct {

	// Stop Replication Request source server ID.
	//
	// This member is required.
	SourceServerID *string

	// Stop Replication Request account ID.
	AccountID *string
	// contains filtered or unexported fields
}

type StopReplicationOutput

type StopReplicationOutput struct {

	// Source server application ID.
	ApplicationID *string

	// Source server ARN.
	Arn *string

	// Source Server connector action.
	ConnectorAction *types.SourceServerConnectorAction

	// Source server data replication info.
	DataReplicationInfo *types.DataReplicationInfo

	// Source server fqdn for action framework.
	FqdnForActionFramework *string

	// Source server archived status.
	IsArchived *bool

	// Source server launched instance.
	LaunchedInstance *types.LaunchedInstance

	// Source server lifecycle state.
	LifeCycle *types.LifeCycle

	// Source server replication type.
	ReplicationType types.ReplicationType

	// Source server properties.
	SourceProperties *types.SourceProperties

	// Source server ID.
	SourceServerID *string

	// Source server Tags.
	Tags map[string]string

	// Source server user provided ID.
	UserProvidedID *string

	// Source server vCenter client id.
	VcenterClientID *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type TagResourceInput

type TagResourceInput struct {

	// Tag resource by ARN.
	//
	// This member is required.
	ResourceArn *string

	// Tag resource by Tags.
	//
	// This member is required.
	Tags map[string]string
	// contains filtered or unexported fields
}

type TagResourceOutput

type TagResourceOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type TerminateTargetInstancesInput

type TerminateTargetInstancesInput struct {

	// Terminate Target instance by Source Server IDs.
	//
	// This member is required.
	SourceServerIDs []string

	// Terminate Target instance by Account ID
	AccountID *string

	// Terminate Target instance by Tags.
	Tags map[string]string
	// contains filtered or unexported fields
}

type TerminateTargetInstancesOutput

type TerminateTargetInstancesOutput struct {

	// Terminate Target instance Job response.
	Job *types.Job

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type UnarchiveApplicationInput

type UnarchiveApplicationInput struct {

	// Application ID.
	//
	// This member is required.
	ApplicationID *string

	// Account ID.
	AccountID *string
	// contains filtered or unexported fields
}

type UnarchiveApplicationOutput

type UnarchiveApplicationOutput struct {

	// Application aggregated status.
	ApplicationAggregatedStatus *types.ApplicationAggregatedStatus

	// Application ID.
	ApplicationID *string

	// Application ARN.
	Arn *string

	// Application creation dateTime.
	CreationDateTime *string

	// Application description.
	Description *string

	// Application archival status.
	IsArchived *bool

	// Application last modified dateTime.
	LastModifiedDateTime *string

	// Application name.
	Name *string

	// Application tags.
	Tags map[string]string

	// Application wave ID.
	WaveID *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type UnarchiveWaveInput

type UnarchiveWaveInput struct {

	// Wave ID.
	//
	// This member is required.
	WaveID *string

	// Account ID.
	AccountID *string
	// contains filtered or unexported fields
}

type UnarchiveWaveOutput

type UnarchiveWaveOutput struct {

	// Wave ARN.
	Arn *string

	// Wave creation dateTime.
	CreationDateTime *string

	// Wave description.
	Description *string

	// Wave archival status.
	IsArchived *bool

	// Wave last modified dateTime.
	LastModifiedDateTime *string

	// Wave name.
	Name *string

	// Wave tags.
	Tags map[string]string

	// Wave aggregated status.
	WaveAggregatedStatus *types.WaveAggregatedStatus

	// Wave ID.
	WaveID *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type UntagResourceInput

type UntagResourceInput struct {

	// Untag resource by ARN.
	//
	// This member is required.
	ResourceArn *string

	// Untag resource by Keys.
	//
	// This member is required.
	TagKeys []string
	// contains filtered or unexported fields
}

type UntagResourceOutput

type UntagResourceOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type UpdateApplicationInput

type UpdateApplicationInput struct {

	// Application ID.
	//
	// This member is required.
	ApplicationID *string

	// Account ID.
	AccountID *string

	// Application description.
	Description *string

	// Application name.
	Name *string
	// contains filtered or unexported fields
}

type UpdateApplicationOutput

type UpdateApplicationOutput struct {

	// Application aggregated status.
	ApplicationAggregatedStatus *types.ApplicationAggregatedStatus

	// Application ID.
	ApplicationID *string

	// Application ARN.
	Arn *string

	// Application creation dateTime.
	CreationDateTime *string

	// Application description.
	Description *string

	// Application archival status.
	IsArchived *bool

	// Application last modified dateTime.
	LastModifiedDateTime *string

	// Application name.
	Name *string

	// Application tags.
	Tags map[string]string

	// Application wave ID.
	WaveID *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type UpdateConnectorInput

type UpdateConnectorInput struct {

	// Update Connector request connector ID.
	//
	// This member is required.
	ConnectorID *string

	// Update Connector request name.
	Name *string

	// Update Connector request SSM command config.
	SsmCommandConfig *types.ConnectorSsmCommandConfig
	// contains filtered or unexported fields
}

type UpdateConnectorOutput

type UpdateConnectorOutput struct {

	// Connector arn.
	Arn *string

	// Connector ID.
	ConnectorID *string

	// Connector name.
	Name *string

	// Connector SSM command config.
	SsmCommandConfig *types.ConnectorSsmCommandConfig

	// Connector SSM instance ID.
	SsmInstanceID *string

	// Connector tags.
	Tags map[string]string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type UpdateLaunchConfigurationInput

type UpdateLaunchConfigurationInput struct {

	// Update Launch configuration by Source Server ID request.
	//
	// This member is required.
	SourceServerID *string

	// Update Launch configuration Account ID.
	AccountID *string

	// Update Launch configuration boot mode request.
	BootMode types.BootMode

	// Update Launch configuration copy Private IP request.
	CopyPrivateIp *bool

	// Update Launch configuration copy Tags request.
	CopyTags *bool

	// Enable map auto tagging.
	EnableMapAutoTagging *bool

	// Update Launch configuration launch disposition request.
	LaunchDisposition types.LaunchDisposition

	// Update Launch configuration licensing request.
	Licensing *types.Licensing

	// Launch configuration map auto tagging MPE ID.
	MapAutoTaggingMpeID *string

	// Update Launch configuration name request.
	Name *string

	// Post Launch Actions to executed on the Test or Cutover instance.
	PostLaunchActions *types.PostLaunchActions

	// Update Launch configuration Target instance right sizing request.
	TargetInstanceTypeRightSizingMethod types.TargetInstanceTypeRightSizingMethod
	// contains filtered or unexported fields
}

type UpdateLaunchConfigurationOutput

type UpdateLaunchConfigurationOutput struct {

	// Launch configuration boot mode.
	BootMode types.BootMode

	// Copy Private IP during Launch Configuration.
	CopyPrivateIp *bool

	// Copy Tags during Launch Configuration.
	CopyTags *bool

	// Launch configuration EC2 Launch template ID.
	Ec2LaunchTemplateID *string

	// Enable map auto tagging.
	EnableMapAutoTagging *bool

	// Launch disposition for launch configuration.
	LaunchDisposition types.LaunchDisposition

	// Launch configuration OS licensing.
	Licensing *types.Licensing

	// Map auto tagging MPE ID.
	MapAutoTaggingMpeID *string

	// Launch configuration name.
	Name *string

	// Post Launch Actions to executed on the Test or Cutover instance.
	PostLaunchActions *types.PostLaunchActions

	// Launch configuration Source Server ID.
	SourceServerID *string

	// Launch configuration Target instance type right sizing method.
	TargetInstanceTypeRightSizingMethod types.TargetInstanceTypeRightSizingMethod

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type UpdateLaunchConfigurationTemplateInput

type UpdateLaunchConfigurationTemplateInput struct {

	// Launch Configuration Template ID.
	//
	// This member is required.
	LaunchConfigurationTemplateID *string

	// Associate public Ip address.
	AssociatePublicIpAddress *bool

	// Launch configuration template boot mode.
	BootMode types.BootMode

	// Copy private Ip.
	CopyPrivateIp *bool

	// Copy tags.
	CopyTags *bool

	// Enable map auto tagging.
	EnableMapAutoTagging *bool

	// Large volume config.
	LargeVolumeConf *types.LaunchTemplateDiskConf

	// Launch disposition.
	LaunchDisposition types.LaunchDisposition

	// Configure Licensing.
	Licensing *types.Licensing

	// Launch configuration template map auto tagging MPE ID.
	MapAutoTaggingMpeID *string

	// Post Launch Action to execute on the Test or Cutover instance.
	PostLaunchActions *types.PostLaunchActions

	// Small volume config.
	SmallVolumeConf *types.LaunchTemplateDiskConf

	// Small volume maximum size.
	SmallVolumeMaxSize int64

	// Target instance type right-sizing method.
	TargetInstanceTypeRightSizingMethod types.TargetInstanceTypeRightSizingMethod
	// contains filtered or unexported fields
}

type UpdateLaunchConfigurationTemplateOutput

type UpdateLaunchConfigurationTemplateOutput struct {

	// ID of the Launch Configuration Template.
	//
	// This member is required.
	LaunchConfigurationTemplateID *string

	// ARN of the Launch Configuration Template.
	Arn *string

	// Associate public Ip address.
	AssociatePublicIpAddress *bool

	// Launch configuration template boot mode.
	BootMode types.BootMode

	// Copy private Ip.
	CopyPrivateIp *bool

	// Copy tags.
	CopyTags *bool

	// EC2 launch template ID.
	Ec2LaunchTemplateID *string

	// Enable map auto tagging.
	EnableMapAutoTagging *bool

	// Large volume config.
	LargeVolumeConf *types.LaunchTemplateDiskConf

	// Launch disposition.
	LaunchDisposition types.LaunchDisposition

	// Configure Licensing.
	Licensing *types.Licensing

	// Launch configuration template map auto tagging MPE ID.
	MapAutoTaggingMpeID *string

	// Post Launch Actions of the Launch Configuration Template.
	PostLaunchActions *types.PostLaunchActions

	// Small volume config.
	SmallVolumeConf *types.LaunchTemplateDiskConf

	// Small volume maximum size.
	SmallVolumeMaxSize int64

	// Tags of the Launch Configuration Template.
	Tags map[string]string

	// Target instance type right-sizing method.
	TargetInstanceTypeRightSizingMethod types.TargetInstanceTypeRightSizingMethod

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type UpdateReplicationConfigurationInput

type UpdateReplicationConfigurationInput struct {

	// Update replication configuration Source Server ID request.
	//
	// This member is required.
	SourceServerID *string

	// Update replication configuration Account ID request.
	AccountID *string

	// Update replication configuration associate default Application Migration
	// Service Security group request.
	AssociateDefaultSecurityGroup *bool

	// Update replication configuration bandwidth throttling request.
	BandwidthThrottling int64

	// Update replication configuration create Public IP request.
	CreatePublicIP *bool

	// Update replication configuration data plane routing request.
	DataPlaneRouting types.ReplicationConfigurationDataPlaneRouting

	// Update replication configuration use default large Staging Disk type request.
	DefaultLargeStagingDiskType types.ReplicationConfigurationDefaultLargeStagingDiskType

	// Update replication configuration EBS encryption request.
	EbsEncryption types.ReplicationConfigurationEbsEncryption

	// Update replication configuration EBS encryption key ARN request.
	EbsEncryptionKeyArn *string

	// Update replication configuration name request.
	Name *string

	// Update replication configuration replicated disks request.
	ReplicatedDisks []types.ReplicationConfigurationReplicatedDisk

	// Update replication configuration Replication Server instance type request.
	ReplicationServerInstanceType *string

	// Update replication configuration Replication Server Security Groups IDs request.
	ReplicationServersSecurityGroupsIDs []string

	// Update replication configuration Staging Area subnet request.
	StagingAreaSubnetId *string

	// Update replication configuration Staging Area Tags request.
	StagingAreaTags map[string]string

	// Update replication configuration use dedicated Replication Server request.
	UseDedicatedReplicationServer *bool

	// Update replication configuration use Fips Endpoint.
	UseFipsEndpoint *bool
	// contains filtered or unexported fields
}

type UpdateReplicationConfigurationOutput

type UpdateReplicationConfigurationOutput struct {

	// Replication Configuration associate default Application Migration Service
	// Security Group.
	AssociateDefaultSecurityGroup *bool

	// Replication Configuration set bandwidth throttling.
	BandwidthThrottling int64

	// Replication Configuration create Public IP.
	CreatePublicIP *bool

	// Replication Configuration data plane routing.
	DataPlaneRouting types.ReplicationConfigurationDataPlaneRouting

	// Replication Configuration use default large Staging Disks.
	DefaultLargeStagingDiskType types.ReplicationConfigurationDefaultLargeStagingDiskType

	// Replication Configuration EBS encryption.
	EbsEncryption types.ReplicationConfigurationEbsEncryption

	// Replication Configuration EBS encryption key ARN.
	EbsEncryptionKeyArn *string

	// Replication Configuration name.
	Name *string

	// Replication Configuration replicated disks.
	ReplicatedDisks []types.ReplicationConfigurationReplicatedDisk

	// Replication Configuration Replication Server instance type.
	ReplicationServerInstanceType *string

	// Replication Configuration Replication Server Security Group IDs.
	ReplicationServersSecurityGroupsIDs []string

	// Replication Configuration Source Server ID.
	SourceServerID *string

	// Replication Configuration Staging Area subnet ID.
	StagingAreaSubnetId *string

	// Replication Configuration Staging Area tags.
	StagingAreaTags map[string]string

	// Replication Configuration use Dedicated Replication Server.
	UseDedicatedReplicationServer *bool

	// Replication Configuration use Fips Endpoint.
	UseFipsEndpoint *bool

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type UpdateReplicationConfigurationTemplateInput

type UpdateReplicationConfigurationTemplateInput struct {

	// Update replication configuration template template ID request.
	//
	// This member is required.
	ReplicationConfigurationTemplateID *string

	// Update replication configuration template ARN request.
	Arn *string

	// Update replication configuration template associate default Application
	// Migration Service Security group request.
	AssociateDefaultSecurityGroup *bool

	// Update replication configuration template bandwidth throttling request.
	BandwidthThrottling int64

	// Update replication configuration template create Public IP request.
	CreatePublicIP *bool

	// Update replication configuration template data plane routing request.
	DataPlaneRouting types.ReplicationConfigurationDataPlaneRouting

	// Update replication configuration template use default large Staging Disk type
	// request.
	DefaultLargeStagingDiskType types.ReplicationConfigurationDefaultLargeStagingDiskType

	// Update replication configuration template EBS encryption request.
	EbsEncryption types.ReplicationConfigurationEbsEncryption

	// Update replication configuration template EBS encryption key ARN request.
	EbsEncryptionKeyArn *string

	// Update replication configuration template Replication Server instance type
	// request.
	ReplicationServerInstanceType *string

	// Update replication configuration template Replication Server Security groups
	// IDs request.
	ReplicationServersSecurityGroupsIDs []string

	// Update replication configuration template Staging Area subnet ID request.
	StagingAreaSubnetId *string

	// Update replication configuration template Staging Area Tags request.
	StagingAreaTags map[string]string

	// Update replication configuration template use dedicated Replication Server
	// request.
	UseDedicatedReplicationServer *bool

	// Update replication configuration template use Fips Endpoint request.
	UseFipsEndpoint *bool
	// contains filtered or unexported fields
}

type UpdateReplicationConfigurationTemplateOutput

type UpdateReplicationConfigurationTemplateOutput struct {

	// Replication Configuration template ID.
	//
	// This member is required.
	ReplicationConfigurationTemplateID *string

	// Replication Configuration template ARN.
	Arn *string

	// Replication Configuration template associate default Application Migration
	// Service Security group.
	AssociateDefaultSecurityGroup *bool

	// Replication Configuration template bandwidth throttling.
	BandwidthThrottling int64

	// Replication Configuration template create Public IP.
	CreatePublicIP *bool

	// Replication Configuration template data plane routing.
	DataPlaneRouting types.ReplicationConfigurationDataPlaneRouting

	// Replication Configuration template use default large Staging Disk type.
	DefaultLargeStagingDiskType types.ReplicationConfigurationDefaultLargeStagingDiskType

	// Replication Configuration template EBS encryption.
	EbsEncryption types.ReplicationConfigurationEbsEncryption

	// Replication Configuration template EBS encryption key ARN.
	EbsEncryptionKeyArn *string

	// Replication Configuration template server instance type.
	ReplicationServerInstanceType *string

	// Replication Configuration template server Security Groups IDs.
	ReplicationServersSecurityGroupsIDs []string

	// Replication Configuration template Staging Area subnet ID.
	StagingAreaSubnetId *string

	// Replication Configuration template Staging Area Tags.
	StagingAreaTags map[string]string

	// Replication Configuration template Tags.
	Tags map[string]string

	// Replication Configuration template use Dedicated Replication Server.
	UseDedicatedReplicationServer *bool

	// Replication Configuration template use Fips Endpoint.
	UseFipsEndpoint *bool

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type UpdateSourceServerInput

type UpdateSourceServerInput struct {

	// Update Source Server request source server ID.
	//
	// This member is required.
	SourceServerID *string

	// Update Source Server request account ID.
	AccountID *string

	// Update Source Server request connector action.
	ConnectorAction *types.SourceServerConnectorAction
	// contains filtered or unexported fields
}

type UpdateSourceServerOutput

type UpdateSourceServerOutput struct {

	// Source server application ID.
	ApplicationID *string

	// Source server ARN.
	Arn *string

	// Source Server connector action.
	ConnectorAction *types.SourceServerConnectorAction

	// Source server data replication info.
	DataReplicationInfo *types.DataReplicationInfo

	// Source server fqdn for action framework.
	FqdnForActionFramework *string

	// Source server archived status.
	IsArchived *bool

	// Source server launched instance.
	LaunchedInstance *types.LaunchedInstance

	// Source server lifecycle state.
	LifeCycle *types.LifeCycle

	// Source server replication type.
	ReplicationType types.ReplicationType

	// Source server properties.
	SourceProperties *types.SourceProperties

	// Source server ID.
	SourceServerID *string

	// Source server Tags.
	Tags map[string]string

	// Source server user provided ID.
	UserProvidedID *string

	// Source server vCenter client id.
	VcenterClientID *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type UpdateSourceServerReplicationTypeInput

type UpdateSourceServerReplicationTypeInput struct {

	// Replication type to which to update source server.
	//
	// This member is required.
	ReplicationType types.ReplicationType

	// ID of source server on which to update replication type.
	//
	// This member is required.
	SourceServerID *string

	// Account ID on which to update replication type.
	AccountID *string
	// contains filtered or unexported fields
}

type UpdateSourceServerReplicationTypeOutput

type UpdateSourceServerReplicationTypeOutput struct {

	// Source server application ID.
	ApplicationID *string

	// Source server ARN.
	Arn *string

	// Source Server connector action.
	ConnectorAction *types.SourceServerConnectorAction

	// Source server data replication info.
	DataReplicationInfo *types.DataReplicationInfo

	// Source server fqdn for action framework.
	FqdnForActionFramework *string

	// Source server archived status.
	IsArchived *bool

	// Source server launched instance.
	LaunchedInstance *types.LaunchedInstance

	// Source server lifecycle state.
	LifeCycle *types.LifeCycle

	// Source server replication type.
	ReplicationType types.ReplicationType

	// Source server properties.
	SourceProperties *types.SourceProperties

	// Source server ID.
	SourceServerID *string

	// Source server Tags.
	Tags map[string]string

	// Source server user provided ID.
	UserProvidedID *string

	// Source server vCenter client id.
	VcenterClientID *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type UpdateWaveInput

type UpdateWaveInput struct {

	// Wave ID.
	//
	// This member is required.
	WaveID *string

	// Account ID.
	AccountID *string

	// Wave description.
	Description *string

	// Wave name.
	Name *string
	// contains filtered or unexported fields
}

type UpdateWaveOutput

type UpdateWaveOutput struct {

	// Wave ARN.
	Arn *string

	// Wave creation dateTime.
	CreationDateTime *string

	// Wave description.
	Description *string

	// Wave archival status.
	IsArchived *bool

	// Wave last modified dateTime.
	LastModifiedDateTime *string

	// Wave name.
	Name *string

	// Wave tags.
	Tags map[string]string

	// Wave aggregated status.
	WaveAggregatedStatus *types.WaveAggregatedStatus

	// Wave ID.
	WaveID *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

Source Files

Directories

Path Synopsis
internal

Jump to

Keyboard shortcuts

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