func AuthMechanismValue_Values() []string
AuthMechanismValue_Values returns all elements of the AuthMechanismValue enum
func AuthTypeValue_Values() []string
AuthTypeValue_Values returns all elements of the AuthTypeValue enum
func CharLengthSemantics_Values() []string
CharLengthSemantics_Values returns all elements of the CharLengthSemantics enum
func CompressionTypeValue_Values() []string
CompressionTypeValue_Values returns all elements of the CompressionTypeValue enum
func DataFormatValue_Values() []string
DataFormatValue_Values returns all elements of the DataFormatValue enum
func DatePartitionDelimiterValue_Values() []string
DatePartitionDelimiterValue_Values returns all elements of the DatePartitionDelimiterValue enum
func DatePartitionSequenceValue_Values() []string
DatePartitionSequenceValue_Values returns all elements of the DatePartitionSequenceValue enum
func DmsSslModeValue_Values() []string
DmsSslModeValue_Values returns all elements of the DmsSslModeValue enum
func EncodingTypeValue_Values() []string
EncodingTypeValue_Values returns all elements of the EncodingTypeValue enum
func EncryptionModeValue_Values() []string
EncryptionModeValue_Values returns all elements of the EncryptionModeValue enum
func MessageFormatValue_Values() []string
MessageFormatValue_Values returns all elements of the MessageFormatValue enum
func MigrationTypeValue_Values() []string
MigrationTypeValue_Values returns all elements of the MigrationTypeValue enum
func NestingLevelValue_Values() []string
NestingLevelValue_Values returns all elements of the NestingLevelValue enum
func ParquetVersionValue_Values() []string
ParquetVersionValue_Values returns all elements of the ParquetVersionValue enum
func RefreshSchemasStatusTypeValue_Values() []string
RefreshSchemasStatusTypeValue_Values returns all elements of the RefreshSchemasStatusTypeValue enum
func ReleaseStatusValues_Values() []string
ReleaseStatusValues_Values returns all elements of the ReleaseStatusValues enum
func ReloadOptionValue_Values() []string
ReloadOptionValue_Values returns all elements of the ReloadOptionValue enum
func ReplicationEndpointTypeValue_Values() []string
ReplicationEndpointTypeValue_Values returns all elements of the ReplicationEndpointTypeValue enum
func SafeguardPolicy_Values() []string
SafeguardPolicy_Values returns all elements of the SafeguardPolicy enum
func SourceType_Values() []string
SourceType_Values returns all elements of the SourceType enum
func StartReplicationTaskTypeValue_Values() []string
StartReplicationTaskTypeValue_Values returns all elements of the StartReplicationTaskTypeValue enum
func TargetDbType_Values() []string
TargetDbType_Values returns all elements of the TargetDbType enum
type AccessDeniedFault struct { RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"` Message_ *string `locationName:"message" type:"string"` // contains filtered or unexported fields }
AWS DMS was denied access to the endpoint. Check that the role is correctly configured.
func (s *AccessDeniedFault) Code() string
Code returns the exception type name.
func (s *AccessDeniedFault) Error() string
func (s AccessDeniedFault) GoString() string
GoString returns the string representation
func (s *AccessDeniedFault) Message() string
Message returns the exception's message.
func (s *AccessDeniedFault) OrigErr() error
OrigErr always returns nil, satisfies awserr.Error interface.
func (s *AccessDeniedFault) RequestID() string
RequestID returns the service's response RequestID for request.
func (s *AccessDeniedFault) StatusCode() int
Status code returns the HTTP status code for the request's response error.
func (s AccessDeniedFault) String() string
String returns the string representation
type AccountQuota struct { // The name of the AWS DMS quota for this AWS account. AccountQuotaName *string `type:"string"` // The maximum allowed value for the quota. Max *int64 `type:"long"` // The amount currently used toward the quota maximum. Used *int64 `type:"long"` // contains filtered or unexported fields }
Describes a quota for an AWS account, for example, the number of replication instances allowed.
func (s AccountQuota) GoString() string
GoString returns the string representation
func (s *AccountQuota) SetAccountQuotaName(v string) *AccountQuota
SetAccountQuotaName sets the AccountQuotaName field's value.
func (s *AccountQuota) SetMax(v int64) *AccountQuota
SetMax sets the Max field's value.
func (s *AccountQuota) SetUsed(v int64) *AccountQuota
SetUsed sets the Used field's value.
func (s AccountQuota) String() string
String returns the string representation
type AddTagsToResourceInput struct { // Identifies the AWS DMS resource to which tags should be added. The value // for this parameter is an Amazon Resource Name (ARN). // // For AWS DMS, you can tag a replication instance, an endpoint, or a replication // task. // // ResourceArn is a required field ResourceArn *string `type:"string" required:"true"` // One or more tags to be assigned to the resource. // // Tags is a required field Tags []*Tag `type:"list" required:"true"` // contains filtered or unexported fields }
Associates a set of tags with an AWS DMS resource.
func (s AddTagsToResourceInput) GoString() string
GoString returns the string representation
func (s *AddTagsToResourceInput) SetResourceArn(v string) *AddTagsToResourceInput
SetResourceArn sets the ResourceArn field's value.
func (s *AddTagsToResourceInput) SetTags(v []*Tag) *AddTagsToResourceInput
SetTags sets the Tags field's value.
func (s AddTagsToResourceInput) String() string
String returns the string representation
func (s *AddTagsToResourceInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type AddTagsToResourceOutput struct {
// contains filtered or unexported fields
}
func (s AddTagsToResourceOutput) GoString() string
GoString returns the string representation
func (s AddTagsToResourceOutput) String() string
String returns the string representation
type ApplyPendingMaintenanceActionInput struct { // The pending maintenance action to apply to this resource. // // ApplyAction is a required field ApplyAction *string `type:"string" required:"true"` // A value that specifies the type of opt-in request, or undoes an opt-in request. // You can't undo an opt-in request of type immediate. // // Valid values: // // * immediate - Apply the maintenance action immediately. // // * next-maintenance - Apply the maintenance action during the next maintenance // window for the resource. // // * undo-opt-in - Cancel any existing next-maintenance opt-in requests. // // OptInType is a required field OptInType *string `type:"string" required:"true"` // The Amazon Resource Name (ARN) of the AWS DMS resource that the pending maintenance // action applies to. // // ReplicationInstanceArn is a required field ReplicationInstanceArn *string `type:"string" required:"true"` // contains filtered or unexported fields }
func (s ApplyPendingMaintenanceActionInput) GoString() string
GoString returns the string representation
func (s *ApplyPendingMaintenanceActionInput) SetApplyAction(v string) *ApplyPendingMaintenanceActionInput
SetApplyAction sets the ApplyAction field's value.
func (s *ApplyPendingMaintenanceActionInput) SetOptInType(v string) *ApplyPendingMaintenanceActionInput
SetOptInType sets the OptInType field's value.
func (s *ApplyPendingMaintenanceActionInput) SetReplicationInstanceArn(v string) *ApplyPendingMaintenanceActionInput
SetReplicationInstanceArn sets the ReplicationInstanceArn field's value.
func (s ApplyPendingMaintenanceActionInput) String() string
String returns the string representation
func (s *ApplyPendingMaintenanceActionInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type ApplyPendingMaintenanceActionOutput struct { // The AWS DMS resource that the pending maintenance action will be applied // to. ResourcePendingMaintenanceActions *ResourcePendingMaintenanceActions `type:"structure"` // contains filtered or unexported fields }
func (s ApplyPendingMaintenanceActionOutput) GoString() string
GoString returns the string representation
func (s *ApplyPendingMaintenanceActionOutput) SetResourcePendingMaintenanceActions(v *ResourcePendingMaintenanceActions) *ApplyPendingMaintenanceActionOutput
SetResourcePendingMaintenanceActions sets the ResourcePendingMaintenanceActions field's value.
func (s ApplyPendingMaintenanceActionOutput) String() string
String returns the string representation
type AvailabilityZone struct { // The name of the Availability Zone. Name *string `type:"string"` // contains filtered or unexported fields }
The name of an Availability Zone for use during database migration. AvailabilityZone is an optional parameter to the CreateReplicationInstance (https://docs.aws.amazon.com/dms/latest/APIReference/API_CreateReplicationInstance.html) operation, and it’s value relates to the AWS Region of an endpoint. For example, the availability zone of an endpoint in the us-east-1 region might be us-east-1a, us-east-1b, us-east-1c, or us-east-1d.
func (s AvailabilityZone) GoString() string
GoString returns the string representation
func (s *AvailabilityZone) SetName(v string) *AvailabilityZone
SetName sets the Name field's value.
func (s AvailabilityZone) String() string
String returns the string representation
type CancelReplicationTaskAssessmentRunInput struct { // Amazon Resource Name (ARN) of the premigration assessment run to be canceled. // // ReplicationTaskAssessmentRunArn is a required field ReplicationTaskAssessmentRunArn *string `type:"string" required:"true"` // contains filtered or unexported fields }
func (s CancelReplicationTaskAssessmentRunInput) GoString() string
GoString returns the string representation
func (s *CancelReplicationTaskAssessmentRunInput) SetReplicationTaskAssessmentRunArn(v string) *CancelReplicationTaskAssessmentRunInput
SetReplicationTaskAssessmentRunArn sets the ReplicationTaskAssessmentRunArn field's value.
func (s CancelReplicationTaskAssessmentRunInput) String() string
String returns the string representation
func (s *CancelReplicationTaskAssessmentRunInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type CancelReplicationTaskAssessmentRunOutput struct { // The ReplicationTaskAssessmentRun object for the canceled assessment run. ReplicationTaskAssessmentRun *ReplicationTaskAssessmentRun `type:"structure"` // contains filtered or unexported fields }
func (s CancelReplicationTaskAssessmentRunOutput) GoString() string
GoString returns the string representation
func (s *CancelReplicationTaskAssessmentRunOutput) SetReplicationTaskAssessmentRun(v *ReplicationTaskAssessmentRun) *CancelReplicationTaskAssessmentRunOutput
SetReplicationTaskAssessmentRun sets the ReplicationTaskAssessmentRun field's value.
func (s CancelReplicationTaskAssessmentRunOutput) String() string
String returns the string representation
type Certificate struct { // The Amazon Resource Name (ARN) for the certificate. CertificateArn *string `type:"string"` // The date that the certificate was created. CertificateCreationDate *time.Time `type:"timestamp"` // A customer-assigned name for the certificate. Identifiers must begin with // a letter and must contain only ASCII letters, digits, and hyphens. They can't // end with a hyphen or contain two consecutive hyphens. CertificateIdentifier *string `type:"string"` // The owner of the certificate. CertificateOwner *string `type:"string"` // The contents of a .pem file, which contains an X.509 certificate. CertificatePem *string `type:"string"` // The location of an imported Oracle Wallet certificate for use with SSL. // // CertificateWallet is automatically base64 encoded/decoded by the SDK. CertificateWallet []byte `type:"blob"` // The key length of the cryptographic algorithm being used. KeyLength *int64 `type:"integer"` // The signing algorithm for the certificate. SigningAlgorithm *string `type:"string"` // The beginning date that the certificate is valid. ValidFromDate *time.Time `type:"timestamp"` // The final date that the certificate is valid. ValidToDate *time.Time `type:"timestamp"` // contains filtered or unexported fields }
The SSL certificate that can be used to encrypt connections between the endpoints and the replication instance.
func (s Certificate) GoString() string
GoString returns the string representation
func (s *Certificate) SetCertificateArn(v string) *Certificate
SetCertificateArn sets the CertificateArn field's value.
func (s *Certificate) SetCertificateCreationDate(v time.Time) *Certificate
SetCertificateCreationDate sets the CertificateCreationDate field's value.
func (s *Certificate) SetCertificateIdentifier(v string) *Certificate
SetCertificateIdentifier sets the CertificateIdentifier field's value.
func (s *Certificate) SetCertificateOwner(v string) *Certificate
SetCertificateOwner sets the CertificateOwner field's value.
func (s *Certificate) SetCertificatePem(v string) *Certificate
SetCertificatePem sets the CertificatePem field's value.
func (s *Certificate) SetCertificateWallet(v []byte) *Certificate
SetCertificateWallet sets the CertificateWallet field's value.
func (s *Certificate) SetKeyLength(v int64) *Certificate
SetKeyLength sets the KeyLength field's value.
func (s *Certificate) SetSigningAlgorithm(v string) *Certificate
SetSigningAlgorithm sets the SigningAlgorithm field's value.
func (s *Certificate) SetValidFromDate(v time.Time) *Certificate
SetValidFromDate sets the ValidFromDate field's value.
func (s *Certificate) SetValidToDate(v time.Time) *Certificate
SetValidToDate sets the ValidToDate field's value.
func (s Certificate) String() string
String returns the string representation
type Connection struct { // The ARN string that uniquely identifies the endpoint. EndpointArn *string `type:"string"` // The identifier of the endpoint. Identifiers must begin with a letter and // must contain only ASCII letters, digits, and hyphens. They can't end with // a hyphen or contain two consecutive hyphens. EndpointIdentifier *string `type:"string"` // The error message when the connection last failed. LastFailureMessage *string `type:"string"` // The ARN of the replication instance. ReplicationInstanceArn *string `type:"string"` // The replication instance identifier. This parameter is stored as a lowercase // string. ReplicationInstanceIdentifier *string `type:"string"` // The connection status. This parameter can return one of the following values: // // * "successful" // // * "testing" // // * "failed" // // * "deleting" Status *string `type:"string"` // contains filtered or unexported fields }
Status of the connection between an endpoint and a replication instance, including Amazon Resource Names (ARNs) and the last error message issued.
func (s Connection) GoString() string
GoString returns the string representation
func (s *Connection) SetEndpointArn(v string) *Connection
SetEndpointArn sets the EndpointArn field's value.
func (s *Connection) SetEndpointIdentifier(v string) *Connection
SetEndpointIdentifier sets the EndpointIdentifier field's value.
func (s *Connection) SetLastFailureMessage(v string) *Connection
SetLastFailureMessage sets the LastFailureMessage field's value.
func (s *Connection) SetReplicationInstanceArn(v string) *Connection
SetReplicationInstanceArn sets the ReplicationInstanceArn field's value.
func (s *Connection) SetReplicationInstanceIdentifier(v string) *Connection
SetReplicationInstanceIdentifier sets the ReplicationInstanceIdentifier field's value.
func (s *Connection) SetStatus(v string) *Connection
SetStatus sets the Status field's value.
func (s Connection) String() string
String returns the string representation
type CreateEndpointInput struct { // The Amazon Resource Name (ARN) for the certificate. CertificateArn *string `type:"string"` // The name of the endpoint database. DatabaseName *string `type:"string"` // The settings in JSON format for the DMS transfer type of source endpoint. // // Possible settings include the following: // // * ServiceAccessRoleArn - The IAM role that has permission to access the // Amazon S3 bucket. // // * BucketName - The name of the S3 bucket to use. // // * CompressionType - An optional parameter to use GZIP to compress the // target files. To use GZIP, set this value to NONE (the default). To keep // the files uncompressed, don't use this value. // // Shorthand syntax for these settings is as follows: ServiceAccessRoleArn=string,BucketName=string,CompressionType=string // // JSON syntax for these settings is as follows: { "ServiceAccessRoleArn": "string", // "BucketName": "string", "CompressionType": "none"|"gzip" } DmsTransferSettings *DmsTransferSettings `type:"structure"` // Provides information that defines a DocumentDB endpoint. DocDbSettings *DocDbSettings `type:"structure"` // Settings in JSON format for the target Amazon DynamoDB endpoint. For information // about other available settings, see Using Object Mapping to Migrate Data // to DynamoDB (https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.DynamoDB.html) // in the AWS Database Migration Service User Guide. DynamoDbSettings *DynamoDbSettings `type:"structure"` // Settings in JSON format for the target Elasticsearch endpoint. For more information // about the available settings, see Extra Connection Attributes When Using // Elasticsearch as a Target for AWS DMS (https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Elasticsearch.html#CHAP_Target.Elasticsearch.Configuration) // in the AWS Database Migration Service User Guide. ElasticsearchSettings *ElasticsearchSettings `type:"structure"` // The database endpoint identifier. Identifiers must begin with a letter and // must contain only ASCII letters, digits, and hyphens. They can't end with // a hyphen, or contain two consecutive hyphens. // // EndpointIdentifier is a required field EndpointIdentifier *string `type:"string" required:"true"` // The type of endpoint. Valid values are source and target. // // EndpointType is a required field EndpointType *string `type:"string" required:"true" enum:"ReplicationEndpointTypeValue"` // The type of engine for the endpoint. Valid values, depending on the EndpointType // value, include "mysql", "oracle", "postgres", "mariadb", "aurora", "aurora-postgresql", // "redshift", "s3", "db2", "azuredb", "sybase", "dynamodb", "mongodb", "kinesis", // "kafka", "elasticsearch", "docdb", "sqlserver", and "neptune". // // EngineName is a required field EngineName *string `type:"string" required:"true"` // The external table definition. ExternalTableDefinition *string `type:"string"` // Additional attributes associated with the connection. Each attribute is specified // as a name-value pair associated by an equal sign (=). Multiple attributes // are separated by a semicolon (;) with no additional white space. For information // on the attributes available for connecting your source or target endpoint, // see Working with AWS DMS Endpoints (https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Endpoints.html) // in the AWS Database Migration Service User Guide. ExtraConnectionAttributes *string `type:"string"` // Settings in JSON format for the source IBM Db2 LUW endpoint. For information // about other available settings, see Extra connection attributes when using // Db2 LUW as a source for AWS DMS (https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.DB2.html) // in the AWS Database Migration Service User Guide. IBMDb2Settings *IBMDb2Settings `type:"structure"` // Settings in JSON format for the target Apache Kafka endpoint. For more information // about the available settings, see Using Apache Kafka as a Target for AWS // Database Migration Service (https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kafka.html) // in the AWS Database Migration Service User Guide. KafkaSettings *KafkaSettings `type:"structure"` // Settings in JSON format for the target endpoint for Amazon Kinesis Data Streams. // For more information about the available settings, see Using Amazon Kinesis // Data Streams as a Target for AWS Database Migration Service (https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kinesis.html) // in the AWS Database Migration Service User Guide. KinesisSettings *KinesisSettings `type:"structure"` // An AWS KMS key identifier that is used to encrypt the connection parameters // for the endpoint. // // If you don't specify a value for the KmsKeyId parameter, then AWS DMS uses // your default encryption key. // // AWS KMS creates the default encryption key for your AWS account. Your AWS // account has a different default encryption key for each AWS Region. KmsKeyId *string `type:"string"` // Settings in JSON format for the source and target Microsoft SQL Server endpoint. // For information about other available settings, see Extra connection attributes // when using SQL Server as a source for AWS DMS (https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.SQLServer.html) // and Extra connection attributes when using SQL Server as a target for AWS // DMS (https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.SQLServer.html) // in the AWS Database Migration Service User Guide. MicrosoftSQLServerSettings *MicrosoftSQLServerSettings `type:"structure"` // Settings in JSON format for the source MongoDB endpoint. For more information // about the available settings, see Using MongoDB as a Target for AWS Database // Migration Service (https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MongoDB.html#CHAP_Source.MongoDB.Configuration) // in the AWS Database Migration Service User Guide. MongoDbSettings *MongoDbSettings `type:"structure"` // Settings in JSON format for the source and target MySQL endpoint. For information // about other available settings, see Extra connection attributes when using // MySQL as a source for AWS DMS (https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MySQL.html) // and Extra connection attributes when using a MySQL-compatible database as // a target for AWS DMS (https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.MySQL.html) // in the AWS Database Migration Service User Guide. MySQLSettings *MySQLSettings `type:"structure"` // Settings in JSON format for the target Amazon Neptune endpoint. For more // information about the available settings, see Specifying Endpoint Settings // for Amazon Neptune as a Target (https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Neptune.html#CHAP_Target.Neptune.EndpointSettings) // in the AWS Database Migration Service User Guide. NeptuneSettings *NeptuneSettings `type:"structure"` // Settings in JSON format for the source and target Oracle endpoint. For information // about other available settings, see Extra connection attributes when using // Oracle as a source for AWS DMS (https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.html) // and Extra connection attributes when using Oracle as a target for AWS DMS // (https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Oracle.html) // in the AWS Database Migration Service User Guide. OracleSettings *OracleSettings `type:"structure"` // The password to be used to log in to the endpoint database. Password *string `type:"string" sensitive:"true"` // The port used by the endpoint database. Port *int64 `type:"integer"` // Settings in JSON format for the source and target PostgreSQL endpoint. For // information about other available settings, see Extra connection attributes // when using PostgreSQL as a source for AWS DMS (https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.PostgreSQL.html) // and Extra connection attributes when using PostgreSQL as a target for AWS // DMS (https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.PostgreSQL.html) // in the AWS Database Migration Service User Guide. PostgreSQLSettings *PostgreSQLSettings `type:"structure"` // Provides information that defines an Amazon Redshift endpoint. RedshiftSettings *RedshiftSettings `type:"structure"` // A friendly name for the resource identifier at the end of the EndpointArn // response parameter that is returned in the created Endpoint object. The value // for this parameter can have up to 31 characters. It can contain only ASCII // letters, digits, and hyphen ('-'). Also, it can't end with a hyphen or contain // two consecutive hyphens, and can only begin with a letter, such as Example-App-ARN1. // For example, this value might result in the EndpointArn value arn:aws:dms:eu-west-1:012345678901:rep:Example-App-ARN1. // If you don't specify a ResourceIdentifier value, AWS DMS generates a default // identifier value for the end of EndpointArn. ResourceIdentifier *string `type:"string"` // Settings in JSON format for the target Amazon S3 endpoint. For more information // about the available settings, see Extra Connection Attributes When Using // Amazon S3 as a Target for AWS DMS (https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.S3.html#CHAP_Target.S3.Configuring) // in the AWS Database Migration Service User Guide. S3Settings *S3Settings `type:"structure"` // The name of the server where the endpoint database resides. ServerName *string `type:"string"` // The Amazon Resource Name (ARN) for the service access role that you want // to use to create the endpoint. ServiceAccessRoleArn *string `type:"string"` // The Secure Sockets Layer (SSL) mode to use for the SSL connection. The default // is none SslMode *string `type:"string" enum:"DmsSslModeValue"` // Settings in JSON format for the source and target SAP ASE endpoint. For information // about other available settings, see Extra connection attributes when using // SAP ASE as a source for AWS DMS (https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.SAP.html) // and Extra connection attributes when using SAP ASE as a target for AWS DMS // (https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.SAP.html) in // the AWS Database Migration Service User Guide. SybaseSettings *SybaseSettings `type:"structure"` // One or more tags to be assigned to the endpoint. Tags []*Tag `type:"list"` // The user name to be used to log in to the endpoint database. Username *string `type:"string"` // contains filtered or unexported fields }
func (s CreateEndpointInput) GoString() string
GoString returns the string representation
func (s *CreateEndpointInput) SetCertificateArn(v string) *CreateEndpointInput
SetCertificateArn sets the CertificateArn field's value.
func (s *CreateEndpointInput) SetDatabaseName(v string) *CreateEndpointInput
SetDatabaseName sets the DatabaseName field's value.
func (s *CreateEndpointInput) SetDmsTransferSettings(v *DmsTransferSettings) *CreateEndpointInput
SetDmsTransferSettings sets the DmsTransferSettings field's value.
func (s *CreateEndpointInput) SetDocDbSettings(v *DocDbSettings) *CreateEndpointInput
SetDocDbSettings sets the DocDbSettings field's value.
func (s *CreateEndpointInput) SetDynamoDbSettings(v *DynamoDbSettings) *CreateEndpointInput
SetDynamoDbSettings sets the DynamoDbSettings field's value.
func (s *CreateEndpointInput) SetElasticsearchSettings(v *ElasticsearchSettings) *CreateEndpointInput
SetElasticsearchSettings sets the ElasticsearchSettings field's value.
func (s *CreateEndpointInput) SetEndpointIdentifier(v string) *CreateEndpointInput
SetEndpointIdentifier sets the EndpointIdentifier field's value.
func (s *CreateEndpointInput) SetEndpointType(v string) *CreateEndpointInput
SetEndpointType sets the EndpointType field's value.
func (s *CreateEndpointInput) SetEngineName(v string) *CreateEndpointInput
SetEngineName sets the EngineName field's value.
func (s *CreateEndpointInput) SetExternalTableDefinition(v string) *CreateEndpointInput
SetExternalTableDefinition sets the ExternalTableDefinition field's value.
func (s *CreateEndpointInput) SetExtraConnectionAttributes(v string) *CreateEndpointInput
SetExtraConnectionAttributes sets the ExtraConnectionAttributes field's value.
func (s *CreateEndpointInput) SetIBMDb2Settings(v *IBMDb2Settings) *CreateEndpointInput
SetIBMDb2Settings sets the IBMDb2Settings field's value.
func (s *CreateEndpointInput) SetKafkaSettings(v *KafkaSettings) *CreateEndpointInput
SetKafkaSettings sets the KafkaSettings field's value.
func (s *CreateEndpointInput) SetKinesisSettings(v *KinesisSettings) *CreateEndpointInput
SetKinesisSettings sets the KinesisSettings field's value.
func (s *CreateEndpointInput) SetKmsKeyId(v string) *CreateEndpointInput
SetKmsKeyId sets the KmsKeyId field's value.
func (s *CreateEndpointInput) SetMicrosoftSQLServerSettings(v *MicrosoftSQLServerSettings) *CreateEndpointInput
SetMicrosoftSQLServerSettings sets the MicrosoftSQLServerSettings field's value.
func (s *CreateEndpointInput) SetMongoDbSettings(v *MongoDbSettings) *CreateEndpointInput
SetMongoDbSettings sets the MongoDbSettings field's value.
func (s *CreateEndpointInput) SetMySQLSettings(v *MySQLSettings) *CreateEndpointInput
SetMySQLSettings sets the MySQLSettings field's value.
func (s *CreateEndpointInput) SetNeptuneSettings(v *NeptuneSettings) *CreateEndpointInput
SetNeptuneSettings sets the NeptuneSettings field's value.
func (s *CreateEndpointInput) SetOracleSettings(v *OracleSettings) *CreateEndpointInput
SetOracleSettings sets the OracleSettings field's value.
func (s *CreateEndpointInput) SetPassword(v string) *CreateEndpointInput
SetPassword sets the Password field's value.
func (s *CreateEndpointInput) SetPort(v int64) *CreateEndpointInput
SetPort sets the Port field's value.
func (s *CreateEndpointInput) SetPostgreSQLSettings(v *PostgreSQLSettings) *CreateEndpointInput
SetPostgreSQLSettings sets the PostgreSQLSettings field's value.
func (s *CreateEndpointInput) SetRedshiftSettings(v *RedshiftSettings) *CreateEndpointInput
SetRedshiftSettings sets the RedshiftSettings field's value.
func (s *CreateEndpointInput) SetResourceIdentifier(v string) *CreateEndpointInput
SetResourceIdentifier sets the ResourceIdentifier field's value.
func (s *CreateEndpointInput) SetS3Settings(v *S3Settings) *CreateEndpointInput
SetS3Settings sets the S3Settings field's value.
func (s *CreateEndpointInput) SetServerName(v string) *CreateEndpointInput
SetServerName sets the ServerName field's value.
func (s *CreateEndpointInput) SetServiceAccessRoleArn(v string) *CreateEndpointInput
SetServiceAccessRoleArn sets the ServiceAccessRoleArn field's value.
func (s *CreateEndpointInput) SetSslMode(v string) *CreateEndpointInput
SetSslMode sets the SslMode field's value.
func (s *CreateEndpointInput) SetSybaseSettings(v *SybaseSettings) *CreateEndpointInput
SetSybaseSettings sets the SybaseSettings field's value.
func (s *CreateEndpointInput) SetTags(v []*Tag) *CreateEndpointInput
SetTags sets the Tags field's value.
func (s *CreateEndpointInput) SetUsername(v string) *CreateEndpointInput
SetUsername sets the Username field's value.
func (s CreateEndpointInput) String() string
String returns the string representation
func (s *CreateEndpointInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type CreateEndpointOutput struct { // The endpoint that was created. Endpoint *Endpoint `type:"structure"` // contains filtered or unexported fields }
func (s CreateEndpointOutput) GoString() string
GoString returns the string representation
func (s *CreateEndpointOutput) SetEndpoint(v *Endpoint) *CreateEndpointOutput
SetEndpoint sets the Endpoint field's value.
func (s CreateEndpointOutput) String() string
String returns the string representation
type CreateEventSubscriptionInput struct { // A Boolean value; set to true to activate the subscription, or set to false // to create the subscription but not activate it. Enabled *bool `type:"boolean"` // A list of event categories for a source type that you want to subscribe to. // For more information, see Working with Events and Notifications (https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Events.html) // in the AWS Database Migration Service User Guide. EventCategories []*string `type:"list"` // The Amazon Resource Name (ARN) of the Amazon SNS topic created for event // notification. The ARN is created by Amazon SNS when you create a topic and // subscribe to it. // // SnsTopicArn is a required field SnsTopicArn *string `type:"string" required:"true"` // A list of identifiers for which AWS DMS provides notification events. // // If you don't specify a value, notifications are provided for all sources. // // If you specify multiple values, they must be of the same type. For example, // if you specify a database instance ID, then all of the other values must // be database instance IDs. SourceIds []*string `type:"list"` // The type of AWS DMS resource that generates the events. For example, if you // want to be notified of events generated by a replication instance, you set // this parameter to replication-instance. If this value isn't specified, all // events are returned. // // Valid values: replication-instance | replication-task SourceType *string `type:"string"` // The name of the AWS DMS event notification subscription. This name must be // less than 255 characters. // // SubscriptionName is a required field SubscriptionName *string `type:"string" required:"true"` // One or more tags to be assigned to the event subscription. Tags []*Tag `type:"list"` // contains filtered or unexported fields }
func (s CreateEventSubscriptionInput) GoString() string
GoString returns the string representation
func (s *CreateEventSubscriptionInput) SetEnabled(v bool) *CreateEventSubscriptionInput
SetEnabled sets the Enabled field's value.
func (s *CreateEventSubscriptionInput) SetEventCategories(v []*string) *CreateEventSubscriptionInput
SetEventCategories sets the EventCategories field's value.
func (s *CreateEventSubscriptionInput) SetSnsTopicArn(v string) *CreateEventSubscriptionInput
SetSnsTopicArn sets the SnsTopicArn field's value.
func (s *CreateEventSubscriptionInput) SetSourceIds(v []*string) *CreateEventSubscriptionInput
SetSourceIds sets the SourceIds field's value.
func (s *CreateEventSubscriptionInput) SetSourceType(v string) *CreateEventSubscriptionInput
SetSourceType sets the SourceType field's value.
func (s *CreateEventSubscriptionInput) SetSubscriptionName(v string) *CreateEventSubscriptionInput
SetSubscriptionName sets the SubscriptionName field's value.
func (s *CreateEventSubscriptionInput) SetTags(v []*Tag) *CreateEventSubscriptionInput
SetTags sets the Tags field's value.
func (s CreateEventSubscriptionInput) String() string
String returns the string representation
func (s *CreateEventSubscriptionInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type CreateEventSubscriptionOutput struct { // The event subscription that was created. EventSubscription *EventSubscription `type:"structure"` // contains filtered or unexported fields }
func (s CreateEventSubscriptionOutput) GoString() string
GoString returns the string representation
func (s *CreateEventSubscriptionOutput) SetEventSubscription(v *EventSubscription) *CreateEventSubscriptionOutput
SetEventSubscription sets the EventSubscription field's value.
func (s CreateEventSubscriptionOutput) String() string
String returns the string representation
type CreateReplicationInstanceInput struct { // The amount of storage (in gigabytes) to be initially allocated for the replication // instance. AllocatedStorage *int64 `type:"integer"` // A value that indicates whether minor engine upgrades are applied automatically // to the replication instance during the maintenance window. This parameter // defaults to true. // // Default: true AutoMinorVersionUpgrade *bool `type:"boolean"` // The Availability Zone where the replication instance will be created. The // default value is a random, system-chosen Availability Zone in the endpoint's // AWS Region, for example: us-east-1d AvailabilityZone *string `type:"string"` // A list of custom DNS name servers supported for the replication instance // to access your on-premise source or target database. This list overrides // the default name servers supported by the replication instance. You can specify // a comma-separated list of internet addresses for up to four on-premise DNS // name servers. For example: "1.1.1.1,2.2.2.2,3.3.3.3,4.4.4.4" DnsNameServers *string `type:"string"` // The engine version number of the replication instance. // // If an engine version number is not specified when a replication instance // is created, the default is the latest engine version available. EngineVersion *string `type:"string"` // An AWS KMS key identifier that is used to encrypt the data on the replication // instance. // // If you don't specify a value for the KmsKeyId parameter, then AWS DMS uses // your default encryption key. // // AWS KMS creates the default encryption key for your AWS account. Your AWS // account has a different default encryption key for each AWS Region. KmsKeyId *string `type:"string"` // Specifies whether the replication instance is a Multi-AZ deployment. You // can't set the AvailabilityZone parameter if the Multi-AZ parameter is set // to true. MultiAZ *bool `type:"boolean"` // The weekly time range during which system maintenance can occur, in Universal // Coordinated Time (UTC). // // Format: ddd:hh24:mi-ddd:hh24:mi // // Default: A 30-minute window selected at random from an 8-hour block of time // per AWS Region, occurring on a random day of the week. // // Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun // // Constraints: Minimum 30-minute window. PreferredMaintenanceWindow *string `type:"string"` // Specifies the accessibility options for the replication instance. A value // of true represents an instance with a public IP address. A value of false // represents an instance with a private IP address. The default value is true. PubliclyAccessible *bool `type:"boolean"` // The compute and memory capacity of the replication instance as defined for // the specified replication instance class. For example to specify the instance // class dms.c4.large, set this parameter to "dms.c4.large". // // For more information on the settings and capacities for the available replication // instance classes, see Selecting the right AWS DMS replication instance for // your migration (https://docs.aws.amazon.com/dms/latest/userguide/CHAP_ReplicationInstance.html#CHAP_ReplicationInstance.InDepth). // // ReplicationInstanceClass is a required field ReplicationInstanceClass *string `type:"string" required:"true"` // The replication instance identifier. This parameter is stored as a lowercase // string. // // Constraints: // // * Must contain 1-63 alphanumeric characters or hyphens. // // * First character must be a letter. // // * Can't end with a hyphen or contain two consecutive hyphens. // // Example: myrepinstance // // ReplicationInstanceIdentifier is a required field ReplicationInstanceIdentifier *string `type:"string" required:"true"` // A subnet group to associate with the replication instance. ReplicationSubnetGroupIdentifier *string `type:"string"` // A friendly name for the resource identifier at the end of the EndpointArn // response parameter that is returned in the created Endpoint object. The value // for this parameter can have up to 31 characters. It can contain only ASCII // letters, digits, and hyphen ('-'). Also, it can't end with a hyphen or contain // two consecutive hyphens, and can only begin with a letter, such as Example-App-ARN1. // For example, this value might result in the EndpointArn value arn:aws:dms:eu-west-1:012345678901:rep:Example-App-ARN1. // If you don't specify a ResourceIdentifier value, AWS DMS generates a default // identifier value for the end of EndpointArn. ResourceIdentifier *string `type:"string"` // One or more tags to be assigned to the replication instance. Tags []*Tag `type:"list"` // Specifies the VPC security group to be used with the replication instance. // The VPC security group must work with the VPC containing the replication // instance. VpcSecurityGroupIds []*string `type:"list"` // contains filtered or unexported fields }
func (s CreateReplicationInstanceInput) GoString() string
GoString returns the string representation
func (s *CreateReplicationInstanceInput) SetAllocatedStorage(v int64) *CreateReplicationInstanceInput
SetAllocatedStorage sets the AllocatedStorage field's value.
func (s *CreateReplicationInstanceInput) SetAutoMinorVersionUpgrade(v bool) *CreateReplicationInstanceInput
SetAutoMinorVersionUpgrade sets the AutoMinorVersionUpgrade field's value.
func (s *CreateReplicationInstanceInput) SetAvailabilityZone(v string) *CreateReplicationInstanceInput
SetAvailabilityZone sets the AvailabilityZone field's value.
func (s *CreateReplicationInstanceInput) SetDnsNameServers(v string) *CreateReplicationInstanceInput
SetDnsNameServers sets the DnsNameServers field's value.
func (s *CreateReplicationInstanceInput) SetEngineVersion(v string) *CreateReplicationInstanceInput
SetEngineVersion sets the EngineVersion field's value.
func (s *CreateReplicationInstanceInput) SetKmsKeyId(v string) *CreateReplicationInstanceInput
SetKmsKeyId sets the KmsKeyId field's value.
func (s *CreateReplicationInstanceInput) SetMultiAZ(v bool) *CreateReplicationInstanceInput
SetMultiAZ sets the MultiAZ field's value.
func (s *CreateReplicationInstanceInput) SetPreferredMaintenanceWindow(v string) *CreateReplicationInstanceInput
SetPreferredMaintenanceWindow sets the PreferredMaintenanceWindow field's value.
func (s *CreateReplicationInstanceInput) SetPubliclyAccessible(v bool) *CreateReplicationInstanceInput
SetPubliclyAccessible sets the PubliclyAccessible field's value.
func (s *CreateReplicationInstanceInput) SetReplicationInstanceClass(v string) *CreateReplicationInstanceInput
SetReplicationInstanceClass sets the ReplicationInstanceClass field's value.
func (s *CreateReplicationInstanceInput) SetReplicationInstanceIdentifier(v string) *CreateReplicationInstanceInput
SetReplicationInstanceIdentifier sets the ReplicationInstanceIdentifier field's value.
func (s *CreateReplicationInstanceInput) SetReplicationSubnetGroupIdentifier(v string) *CreateReplicationInstanceInput
SetReplicationSubnetGroupIdentifier sets the ReplicationSubnetGroupIdentifier field's value.
func (s *CreateReplicationInstanceInput) SetResourceIdentifier(v string) *CreateReplicationInstanceInput
SetResourceIdentifier sets the ResourceIdentifier field's value.
func (s *CreateReplicationInstanceInput) SetTags(v []*Tag) *CreateReplicationInstanceInput
SetTags sets the Tags field's value.
func (s *CreateReplicationInstanceInput) SetVpcSecurityGroupIds(v []*string) *CreateReplicationInstanceInput
SetVpcSecurityGroupIds sets the VpcSecurityGroupIds field's value.
func (s CreateReplicationInstanceInput) String() string
String returns the string representation
func (s *CreateReplicationInstanceInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type CreateReplicationInstanceOutput struct { // The replication instance that was created. ReplicationInstance *ReplicationInstance `type:"structure"` // contains filtered or unexported fields }
func (s CreateReplicationInstanceOutput) GoString() string
GoString returns the string representation
func (s *CreateReplicationInstanceOutput) SetReplicationInstance(v *ReplicationInstance) *CreateReplicationInstanceOutput
SetReplicationInstance sets the ReplicationInstance field's value.
func (s CreateReplicationInstanceOutput) String() string
String returns the string representation
type CreateReplicationSubnetGroupInput struct { // The description for the subnet group. // // ReplicationSubnetGroupDescription is a required field ReplicationSubnetGroupDescription *string `type:"string" required:"true"` // The name for the replication subnet group. This value is stored as a lowercase // string. // // Constraints: Must contain no more than 255 alphanumeric characters, periods, // spaces, underscores, or hyphens. Must not be "default". // // Example: mySubnetgroup // // ReplicationSubnetGroupIdentifier is a required field ReplicationSubnetGroupIdentifier *string `type:"string" required:"true"` // One or more subnet IDs to be assigned to the subnet group. // // SubnetIds is a required field SubnetIds []*string `type:"list" required:"true"` // One or more tags to be assigned to the subnet group. Tags []*Tag `type:"list"` // contains filtered or unexported fields }
func (s CreateReplicationSubnetGroupInput) GoString() string
GoString returns the string representation
func (s *CreateReplicationSubnetGroupInput) SetReplicationSubnetGroupDescription(v string) *CreateReplicationSubnetGroupInput
SetReplicationSubnetGroupDescription sets the ReplicationSubnetGroupDescription field's value.
func (s *CreateReplicationSubnetGroupInput) SetReplicationSubnetGroupIdentifier(v string) *CreateReplicationSubnetGroupInput
SetReplicationSubnetGroupIdentifier sets the ReplicationSubnetGroupIdentifier field's value.
func (s *CreateReplicationSubnetGroupInput) SetSubnetIds(v []*string) *CreateReplicationSubnetGroupInput
SetSubnetIds sets the SubnetIds field's value.
func (s *CreateReplicationSubnetGroupInput) SetTags(v []*Tag) *CreateReplicationSubnetGroupInput
SetTags sets the Tags field's value.
func (s CreateReplicationSubnetGroupInput) String() string
String returns the string representation
func (s *CreateReplicationSubnetGroupInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type CreateReplicationSubnetGroupOutput struct { // The replication subnet group that was created. ReplicationSubnetGroup *ReplicationSubnetGroup `type:"structure"` // contains filtered or unexported fields }
func (s CreateReplicationSubnetGroupOutput) GoString() string
GoString returns the string representation
func (s *CreateReplicationSubnetGroupOutput) SetReplicationSubnetGroup(v *ReplicationSubnetGroup) *CreateReplicationSubnetGroupOutput
SetReplicationSubnetGroup sets the ReplicationSubnetGroup field's value.
func (s CreateReplicationSubnetGroupOutput) String() string
String returns the string representation
type CreateReplicationTaskInput struct { // Indicates when you want a change data capture (CDC) operation to start. Use // either CdcStartPosition or CdcStartTime to specify when you want a CDC operation // to start. Specifying both values results in an error. // // The value can be in date, checkpoint, or LSN/SCN format. // // Date Example: --cdc-start-position “2018-03-08T12:12:12” // // Checkpoint Example: --cdc-start-position "checkpoint:V1#27#mysql-bin-changelog.157832:1975:-1:2002:677883278264080:mysql-bin-changelog.157832:1876#0#0#*#0#93" // // LSN Example: --cdc-start-position “mysql-bin-changelog.000024:373” // // When you use this task setting with a source PostgreSQL database, a logical // replication slot should already be created and associated with the source // endpoint. You can verify this by setting the slotName extra connection attribute // to the name of this logical replication slot. For more information, see Extra // Connection Attributes When Using PostgreSQL as a Source for AWS DMS (https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.PostgreSQL.html#CHAP_Source.PostgreSQL.ConnectionAttrib). CdcStartPosition *string `type:"string"` // Indicates the start time for a change data capture (CDC) operation. Use either // CdcStartTime or CdcStartPosition to specify when you want a CDC operation // to start. Specifying both values results in an error. // // Timestamp Example: --cdc-start-time “2018-03-08T12:12:12” CdcStartTime *time.Time `type:"timestamp"` // Indicates when you want a change data capture (CDC) operation to stop. The // value can be either server time or commit time. // // Server time example: --cdc-stop-position “server_time:2018-02-09T12:12:12” // // Commit time example: --cdc-stop-position “commit_time: 2018-02-09T12:12:12 // “ CdcStopPosition *string `type:"string"` // The migration type. Valid values: full-load | cdc | full-load-and-cdc // // MigrationType is a required field MigrationType *string `type:"string" required:"true" enum:"MigrationTypeValue"` // The Amazon Resource Name (ARN) of a replication instance. // // ReplicationInstanceArn is a required field ReplicationInstanceArn *string `type:"string" required:"true"` // An identifier for the replication task. // // Constraints: // // * Must contain 1-255 alphanumeric characters or hyphens. // // * First character must be a letter. // // * Cannot end with a hyphen or contain two consecutive hyphens. // // ReplicationTaskIdentifier is a required field ReplicationTaskIdentifier *string `type:"string" required:"true"` // Overall settings for the task, in JSON format. For more information, see // Specifying Task Settings for AWS Database Migration Service Tasks (https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Tasks.CustomizingTasks.TaskSettings.html) // in the AWS Database Migration User Guide. ReplicationTaskSettings *string `type:"string"` // A friendly name for the resource identifier at the end of the EndpointArn // response parameter that is returned in the created Endpoint object. The value // for this parameter can have up to 31 characters. It can contain only ASCII // letters, digits, and hyphen ('-'). Also, it can't end with a hyphen or contain // two consecutive hyphens, and can only begin with a letter, such as Example-App-ARN1. // For example, this value might result in the EndpointArn value arn:aws:dms:eu-west-1:012345678901:rep:Example-App-ARN1. // If you don't specify a ResourceIdentifier value, AWS DMS generates a default // identifier value for the end of EndpointArn. ResourceIdentifier *string `type:"string"` // An Amazon Resource Name (ARN) that uniquely identifies the source endpoint. // // SourceEndpointArn is a required field SourceEndpointArn *string `type:"string" required:"true"` // The table mappings for the task, in JSON format. For more information, see // Using Table Mapping to Specify Task Settings (https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Tasks.CustomizingTasks.TableMapping.html) // in the AWS Database Migration Service User Guide. // // TableMappings is a required field TableMappings *string `type:"string" required:"true"` // One or more tags to be assigned to the replication task. Tags []*Tag `type:"list"` // An Amazon Resource Name (ARN) that uniquely identifies the target endpoint. // // TargetEndpointArn is a required field TargetEndpointArn *string `type:"string" required:"true"` // Supplemental information that the task requires to migrate the data for certain // source and target endpoints. For more information, see Specifying Supplemental // Data for Task Settings (https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Tasks.TaskData.html) // in the AWS Database Migration Service User Guide. TaskData *string `type:"string"` // contains filtered or unexported fields }
func (s CreateReplicationTaskInput) GoString() string
GoString returns the string representation
func (s *CreateReplicationTaskInput) SetCdcStartPosition(v string) *CreateReplicationTaskInput
SetCdcStartPosition sets the CdcStartPosition field's value.
func (s *CreateReplicationTaskInput) SetCdcStartTime(v time.Time) *CreateReplicationTaskInput
SetCdcStartTime sets the CdcStartTime field's value.
func (s *CreateReplicationTaskInput) SetCdcStopPosition(v string) *CreateReplicationTaskInput
SetCdcStopPosition sets the CdcStopPosition field's value.
func (s *CreateReplicationTaskInput) SetMigrationType(v string) *CreateReplicationTaskInput
SetMigrationType sets the MigrationType field's value.
func (s *CreateReplicationTaskInput) SetReplicationInstanceArn(v string) *CreateReplicationTaskInput
SetReplicationInstanceArn sets the ReplicationInstanceArn field's value.
func (s *CreateReplicationTaskInput) SetReplicationTaskIdentifier(v string) *CreateReplicationTaskInput
SetReplicationTaskIdentifier sets the ReplicationTaskIdentifier field's value.
func (s *CreateReplicationTaskInput) SetReplicationTaskSettings(v string) *CreateReplicationTaskInput
SetReplicationTaskSettings sets the ReplicationTaskSettings field's value.
func (s *CreateReplicationTaskInput) SetResourceIdentifier(v string) *CreateReplicationTaskInput
SetResourceIdentifier sets the ResourceIdentifier field's value.
func (s *CreateReplicationTaskInput) SetSourceEndpointArn(v string) *CreateReplicationTaskInput
SetSourceEndpointArn sets the SourceEndpointArn field's value.
func (s *CreateReplicationTaskInput) SetTableMappings(v string) *CreateReplicationTaskInput
SetTableMappings sets the TableMappings field's value.
func (s *CreateReplicationTaskInput) SetTags(v []*Tag) *CreateReplicationTaskInput
SetTags sets the Tags field's value.
func (s *CreateReplicationTaskInput) SetTargetEndpointArn(v string) *CreateReplicationTaskInput
SetTargetEndpointArn sets the TargetEndpointArn field's value.
func (s *CreateReplicationTaskInput) SetTaskData(v string) *CreateReplicationTaskInput
SetTaskData sets the TaskData field's value.
func (s CreateReplicationTaskInput) String() string
String returns the string representation
func (s *CreateReplicationTaskInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type CreateReplicationTaskOutput struct { // The replication task that was created. ReplicationTask *ReplicationTask `type:"structure"` // contains filtered or unexported fields }
func (s CreateReplicationTaskOutput) GoString() string
GoString returns the string representation
func (s *CreateReplicationTaskOutput) SetReplicationTask(v *ReplicationTask) *CreateReplicationTaskOutput
SetReplicationTask sets the ReplicationTask field's value.
func (s CreateReplicationTaskOutput) String() string
String returns the string representation
type DatabaseMigrationService struct { *client.Client }
DatabaseMigrationService provides the API operation methods for making requests to AWS Database Migration Service. See this package's package overview docs for details on the service.
DatabaseMigrationService methods are safe to use concurrently. It is not safe to modify mutate any of the struct's properties though.
func New(p client.ConfigProvider, cfgs ...*aws.Config) *DatabaseMigrationService
New creates a new instance of the DatabaseMigrationService client with a session. If additional configuration is needed for the client instance use the optional aws.Config parameter to add your extra config.
Example:
mySession := session.Must(session.NewSession()) // Create a DatabaseMigrationService client from just a session. svc := databasemigrationservice.New(mySession) // Create a DatabaseMigrationService client with additional configuration svc := databasemigrationservice.New(mySession, aws.NewConfig().WithRegion("us-west-2"))
func (c *DatabaseMigrationService) AddTagsToResource(input *AddTagsToResourceInput) (*AddTagsToResourceOutput, error)
AddTagsToResource API operation for AWS Database Migration Service.
Adds metadata tags to an AWS DMS resource, including replication instance, endpoint, security group, and migration task. These tags can also be used with cost allocation reporting to track cost associated with DMS resources, or used in a Condition statement in an IAM policy for DMS. For more information, see Tag (https://docs.aws.amazon.com/dms/latest/APIReference/API_Tag.html) data type description.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation AddTagsToResource for usage and error information.
Returned Error Types:
* ResourceNotFoundFault The resource could not be found.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/AddTagsToResource
func (c *DatabaseMigrationService) AddTagsToResourceRequest(input *AddTagsToResourceInput) (req *request.Request, output *AddTagsToResourceOutput)
AddTagsToResourceRequest generates a "aws/request.Request" representing the client's request for the AddTagsToResource operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See AddTagsToResource for more information on using the AddTagsToResource API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the AddTagsToResourceRequest method. req, resp := client.AddTagsToResourceRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/AddTagsToResource
func (c *DatabaseMigrationService) AddTagsToResourceWithContext(ctx aws.Context, input *AddTagsToResourceInput, opts ...request.Option) (*AddTagsToResourceOutput, error)
AddTagsToResourceWithContext is the same as AddTagsToResource with the addition of the ability to pass a context and additional request options.
See AddTagsToResource for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) ApplyPendingMaintenanceAction(input *ApplyPendingMaintenanceActionInput) (*ApplyPendingMaintenanceActionOutput, error)
ApplyPendingMaintenanceAction API operation for AWS Database Migration Service.
Applies a pending maintenance action to a resource (for example, to a replication instance).
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation ApplyPendingMaintenanceAction for usage and error information.
Returned Error Types:
* ResourceNotFoundFault The resource could not be found.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ApplyPendingMaintenanceAction
func (c *DatabaseMigrationService) ApplyPendingMaintenanceActionRequest(input *ApplyPendingMaintenanceActionInput) (req *request.Request, output *ApplyPendingMaintenanceActionOutput)
ApplyPendingMaintenanceActionRequest generates a "aws/request.Request" representing the client's request for the ApplyPendingMaintenanceAction operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See ApplyPendingMaintenanceAction for more information on using the ApplyPendingMaintenanceAction API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the ApplyPendingMaintenanceActionRequest method. req, resp := client.ApplyPendingMaintenanceActionRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ApplyPendingMaintenanceAction
func (c *DatabaseMigrationService) ApplyPendingMaintenanceActionWithContext(ctx aws.Context, input *ApplyPendingMaintenanceActionInput, opts ...request.Option) (*ApplyPendingMaintenanceActionOutput, error)
ApplyPendingMaintenanceActionWithContext is the same as ApplyPendingMaintenanceAction with the addition of the ability to pass a context and additional request options.
See ApplyPendingMaintenanceAction for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) CancelReplicationTaskAssessmentRun(input *CancelReplicationTaskAssessmentRunInput) (*CancelReplicationTaskAssessmentRunOutput, error)
CancelReplicationTaskAssessmentRun API operation for AWS Database Migration Service.
Cancels a single premigration assessment run.
This operation prevents any individual assessments from running if they haven't started running. It also attempts to cancel any individual assessments that are currently running.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation CancelReplicationTaskAssessmentRun for usage and error information.
Returned Error Types:
* AccessDeniedFault AWS DMS was denied access to the endpoint. Check that the role is correctly configured. * ResourceNotFoundFault The resource could not be found. * InvalidResourceStateFault The resource is in a state that prevents it from being used for database migration.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CancelReplicationTaskAssessmentRun
func (c *DatabaseMigrationService) CancelReplicationTaskAssessmentRunRequest(input *CancelReplicationTaskAssessmentRunInput) (req *request.Request, output *CancelReplicationTaskAssessmentRunOutput)
CancelReplicationTaskAssessmentRunRequest generates a "aws/request.Request" representing the client's request for the CancelReplicationTaskAssessmentRun operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See CancelReplicationTaskAssessmentRun for more information on using the CancelReplicationTaskAssessmentRun API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the CancelReplicationTaskAssessmentRunRequest method. req, resp := client.CancelReplicationTaskAssessmentRunRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CancelReplicationTaskAssessmentRun
func (c *DatabaseMigrationService) CancelReplicationTaskAssessmentRunWithContext(ctx aws.Context, input *CancelReplicationTaskAssessmentRunInput, opts ...request.Option) (*CancelReplicationTaskAssessmentRunOutput, error)
CancelReplicationTaskAssessmentRunWithContext is the same as CancelReplicationTaskAssessmentRun with the addition of the ability to pass a context and additional request options.
See CancelReplicationTaskAssessmentRun for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) CreateEndpoint(input *CreateEndpointInput) (*CreateEndpointOutput, error)
CreateEndpoint API operation for AWS Database Migration Service.
Creates an endpoint using the provided settings.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation CreateEndpoint for usage and error information.
Returned Error Types:
* KMSKeyNotAccessibleFault AWS DMS cannot access the AWS KMS key. * ResourceAlreadyExistsFault The resource you are attempting to create already exists. * ResourceQuotaExceededFault The quota for this resource quota has been exceeded. * InvalidResourceStateFault The resource is in a state that prevents it from being used for database migration. * ResourceNotFoundFault The resource could not be found. * AccessDeniedFault AWS DMS was denied access to the endpoint. Check that the role is correctly configured. * S3AccessDeniedFault Insufficient privileges are preventing access to an Amazon S3 object.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateEndpoint
func (c *DatabaseMigrationService) CreateEndpointRequest(input *CreateEndpointInput) (req *request.Request, output *CreateEndpointOutput)
CreateEndpointRequest generates a "aws/request.Request" representing the client's request for the CreateEndpoint operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See CreateEndpoint for more information on using the CreateEndpoint API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the CreateEndpointRequest method. req, resp := client.CreateEndpointRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateEndpoint
func (c *DatabaseMigrationService) CreateEndpointWithContext(ctx aws.Context, input *CreateEndpointInput, opts ...request.Option) (*CreateEndpointOutput, error)
CreateEndpointWithContext is the same as CreateEndpoint with the addition of the ability to pass a context and additional request options.
See CreateEndpoint for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) CreateEventSubscription(input *CreateEventSubscriptionInput) (*CreateEventSubscriptionOutput, error)
CreateEventSubscription API operation for AWS Database Migration Service.
Creates an AWS DMS event notification subscription.
You can specify the type of source (SourceType) you want to be notified of, provide a list of AWS DMS source IDs (SourceIds) that triggers the events, and provide a list of event categories (EventCategories) for events you want to be notified of. If you specify both the SourceType and SourceIds, such as SourceType = replication-instance and SourceIdentifier = my-replinstance, you will be notified of all the replication instance events for the specified source. If you specify a SourceType but don't specify a SourceIdentifier, you receive notice of the events for that source type for all your AWS DMS sources. If you don't specify either SourceType nor SourceIdentifier, you will be notified of events generated from all AWS DMS sources belonging to your customer account.
For more information about AWS DMS events, see Working with Events and Notifications (https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Events.html) in the AWS Database Migration Service User Guide.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation CreateEventSubscription for usage and error information.
Returned Error Types:
* ResourceQuotaExceededFault The quota for this resource quota has been exceeded. * ResourceNotFoundFault The resource could not be found. * ResourceAlreadyExistsFault The resource you are attempting to create already exists. * SNSInvalidTopicFault The SNS topic is invalid. * SNSNoAuthorizationFault You are not authorized for the SNS subscription. * KMSAccessDeniedFault The ciphertext references a key that doesn't exist or that the DMS account doesn't have access to. * KMSDisabledFault The specified master key (CMK) isn't enabled. * KMSInvalidStateFault The state of the specified AWS KMS resource isn't valid for this request. * KMSNotFoundFault The specified AWS KMS entity or resource can't be found. * KMSThrottlingFault This request triggered AWS KMS request throttling.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateEventSubscription
func (c *DatabaseMigrationService) CreateEventSubscriptionRequest(input *CreateEventSubscriptionInput) (req *request.Request, output *CreateEventSubscriptionOutput)
CreateEventSubscriptionRequest generates a "aws/request.Request" representing the client's request for the CreateEventSubscription operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See CreateEventSubscription for more information on using the CreateEventSubscription API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the CreateEventSubscriptionRequest method. req, resp := client.CreateEventSubscriptionRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateEventSubscription
func (c *DatabaseMigrationService) CreateEventSubscriptionWithContext(ctx aws.Context, input *CreateEventSubscriptionInput, opts ...request.Option) (*CreateEventSubscriptionOutput, error)
CreateEventSubscriptionWithContext is the same as CreateEventSubscription with the addition of the ability to pass a context and additional request options.
See CreateEventSubscription for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) CreateReplicationInstance(input *CreateReplicationInstanceInput) (*CreateReplicationInstanceOutput, error)
CreateReplicationInstance API operation for AWS Database Migration Service.
Creates the replication instance using the specified parameters.
AWS DMS requires that your account have certain roles with appropriate permissions before you can create a replication instance. For information on the required roles, see Creating the IAM Roles to Use With the AWS CLI and AWS DMS API (https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Security.html#CHAP_Security.APIRole). For information on the required permissions, see IAM Permissions Needed to Use AWS DMS (https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Security.html#CHAP_Security.IAMPermissions).
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation CreateReplicationInstance for usage and error information.
Returned Error Types:
* AccessDeniedFault AWS DMS was denied access to the endpoint. Check that the role is correctly configured. * ResourceAlreadyExistsFault The resource you are attempting to create already exists. * InsufficientResourceCapacityFault There are not enough resources allocated to the database migration. * ResourceQuotaExceededFault The quota for this resource quota has been exceeded. * StorageQuotaExceededFault The storage quota has been exceeded. * ResourceNotFoundFault The resource could not be found. * ReplicationSubnetGroupDoesNotCoverEnoughAZs The replication subnet group does not cover enough Availability Zones (AZs). Edit the replication subnet group and add more AZs. * InvalidResourceStateFault The resource is in a state that prevents it from being used for database migration. * InvalidSubnet The subnet provided is invalid. * KMSKeyNotAccessibleFault AWS DMS cannot access the AWS KMS key.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateReplicationInstance
func (c *DatabaseMigrationService) CreateReplicationInstanceRequest(input *CreateReplicationInstanceInput) (req *request.Request, output *CreateReplicationInstanceOutput)
CreateReplicationInstanceRequest generates a "aws/request.Request" representing the client's request for the CreateReplicationInstance operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See CreateReplicationInstance for more information on using the CreateReplicationInstance API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the CreateReplicationInstanceRequest method. req, resp := client.CreateReplicationInstanceRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateReplicationInstance
func (c *DatabaseMigrationService) CreateReplicationInstanceWithContext(ctx aws.Context, input *CreateReplicationInstanceInput, opts ...request.Option) (*CreateReplicationInstanceOutput, error)
CreateReplicationInstanceWithContext is the same as CreateReplicationInstance with the addition of the ability to pass a context and additional request options.
See CreateReplicationInstance for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) CreateReplicationSubnetGroup(input *CreateReplicationSubnetGroupInput) (*CreateReplicationSubnetGroupOutput, error)
CreateReplicationSubnetGroup API operation for AWS Database Migration Service.
Creates a replication subnet group given a list of the subnet IDs in a VPC.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation CreateReplicationSubnetGroup for usage and error information.
Returned Error Types:
* AccessDeniedFault AWS DMS was denied access to the endpoint. Check that the role is correctly configured. * ResourceAlreadyExistsFault The resource you are attempting to create already exists. * ResourceNotFoundFault The resource could not be found. * ResourceQuotaExceededFault The quota for this resource quota has been exceeded. * ReplicationSubnetGroupDoesNotCoverEnoughAZs The replication subnet group does not cover enough Availability Zones (AZs). Edit the replication subnet group and add more AZs. * InvalidSubnet The subnet provided is invalid.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateReplicationSubnetGroup
func (c *DatabaseMigrationService) CreateReplicationSubnetGroupRequest(input *CreateReplicationSubnetGroupInput) (req *request.Request, output *CreateReplicationSubnetGroupOutput)
CreateReplicationSubnetGroupRequest generates a "aws/request.Request" representing the client's request for the CreateReplicationSubnetGroup operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See CreateReplicationSubnetGroup for more information on using the CreateReplicationSubnetGroup API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the CreateReplicationSubnetGroupRequest method. req, resp := client.CreateReplicationSubnetGroupRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateReplicationSubnetGroup
func (c *DatabaseMigrationService) CreateReplicationSubnetGroupWithContext(ctx aws.Context, input *CreateReplicationSubnetGroupInput, opts ...request.Option) (*CreateReplicationSubnetGroupOutput, error)
CreateReplicationSubnetGroupWithContext is the same as CreateReplicationSubnetGroup with the addition of the ability to pass a context and additional request options.
See CreateReplicationSubnetGroup for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) CreateReplicationTask(input *CreateReplicationTaskInput) (*CreateReplicationTaskOutput, error)
CreateReplicationTask API operation for AWS Database Migration Service.
Creates a replication task using the specified parameters.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation CreateReplicationTask for usage and error information.
Returned Error Types:
* AccessDeniedFault AWS DMS was denied access to the endpoint. Check that the role is correctly configured. * InvalidResourceStateFault The resource is in a state that prevents it from being used for database migration. * ResourceAlreadyExistsFault The resource you are attempting to create already exists. * ResourceNotFoundFault The resource could not be found. * KMSKeyNotAccessibleFault AWS DMS cannot access the AWS KMS key. * ResourceQuotaExceededFault The quota for this resource quota has been exceeded.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateReplicationTask
func (c *DatabaseMigrationService) CreateReplicationTaskRequest(input *CreateReplicationTaskInput) (req *request.Request, output *CreateReplicationTaskOutput)
CreateReplicationTaskRequest generates a "aws/request.Request" representing the client's request for the CreateReplicationTask operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See CreateReplicationTask for more information on using the CreateReplicationTask API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the CreateReplicationTaskRequest method. req, resp := client.CreateReplicationTaskRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/CreateReplicationTask
func (c *DatabaseMigrationService) CreateReplicationTaskWithContext(ctx aws.Context, input *CreateReplicationTaskInput, opts ...request.Option) (*CreateReplicationTaskOutput, error)
CreateReplicationTaskWithContext is the same as CreateReplicationTask with the addition of the ability to pass a context and additional request options.
See CreateReplicationTask for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) DeleteCertificate(input *DeleteCertificateInput) (*DeleteCertificateOutput, error)
DeleteCertificate API operation for AWS Database Migration Service.
Deletes the specified certificate.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation DeleteCertificate for usage and error information.
Returned Error Types:
* ResourceNotFoundFault The resource could not be found. * InvalidResourceStateFault The resource is in a state that prevents it from being used for database migration.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteCertificate
func (c *DatabaseMigrationService) DeleteCertificateRequest(input *DeleteCertificateInput) (req *request.Request, output *DeleteCertificateOutput)
DeleteCertificateRequest generates a "aws/request.Request" representing the client's request for the DeleteCertificate operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See DeleteCertificate for more information on using the DeleteCertificate API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the DeleteCertificateRequest method. req, resp := client.DeleteCertificateRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteCertificate
func (c *DatabaseMigrationService) DeleteCertificateWithContext(ctx aws.Context, input *DeleteCertificateInput, opts ...request.Option) (*DeleteCertificateOutput, error)
DeleteCertificateWithContext is the same as DeleteCertificate with the addition of the ability to pass a context and additional request options.
See DeleteCertificate for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) DeleteConnection(input *DeleteConnectionInput) (*DeleteConnectionOutput, error)
DeleteConnection API operation for AWS Database Migration Service.
Deletes the connection between a replication instance and an endpoint.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation DeleteConnection for usage and error information.
Returned Error Types:
* AccessDeniedFault AWS DMS was denied access to the endpoint. Check that the role is correctly configured. * ResourceNotFoundFault The resource could not be found. * InvalidResourceStateFault The resource is in a state that prevents it from being used for database migration.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteConnection
func (c *DatabaseMigrationService) DeleteConnectionRequest(input *DeleteConnectionInput) (req *request.Request, output *DeleteConnectionOutput)
DeleteConnectionRequest generates a "aws/request.Request" representing the client's request for the DeleteConnection operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See DeleteConnection for more information on using the DeleteConnection API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the DeleteConnectionRequest method. req, resp := client.DeleteConnectionRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteConnection
func (c *DatabaseMigrationService) DeleteConnectionWithContext(ctx aws.Context, input *DeleteConnectionInput, opts ...request.Option) (*DeleteConnectionOutput, error)
DeleteConnectionWithContext is the same as DeleteConnection with the addition of the ability to pass a context and additional request options.
See DeleteConnection for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) DeleteEndpoint(input *DeleteEndpointInput) (*DeleteEndpointOutput, error)
DeleteEndpoint API operation for AWS Database Migration Service.
Deletes the specified endpoint.
All tasks associated with the endpoint must be deleted before you can delete the endpoint.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation DeleteEndpoint for usage and error information.
Returned Error Types:
* ResourceNotFoundFault The resource could not be found. * InvalidResourceStateFault The resource is in a state that prevents it from being used for database migration.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteEndpoint
func (c *DatabaseMigrationService) DeleteEndpointRequest(input *DeleteEndpointInput) (req *request.Request, output *DeleteEndpointOutput)
DeleteEndpointRequest generates a "aws/request.Request" representing the client's request for the DeleteEndpoint operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See DeleteEndpoint for more information on using the DeleteEndpoint API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the DeleteEndpointRequest method. req, resp := client.DeleteEndpointRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteEndpoint
func (c *DatabaseMigrationService) DeleteEndpointWithContext(ctx aws.Context, input *DeleteEndpointInput, opts ...request.Option) (*DeleteEndpointOutput, error)
DeleteEndpointWithContext is the same as DeleteEndpoint with the addition of the ability to pass a context and additional request options.
See DeleteEndpoint for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) DeleteEventSubscription(input *DeleteEventSubscriptionInput) (*DeleteEventSubscriptionOutput, error)
DeleteEventSubscription API operation for AWS Database Migration Service.
Deletes an AWS DMS event subscription.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation DeleteEventSubscription for usage and error information.
Returned Error Types:
* ResourceNotFoundFault The resource could not be found. * InvalidResourceStateFault The resource is in a state that prevents it from being used for database migration.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteEventSubscription
func (c *DatabaseMigrationService) DeleteEventSubscriptionRequest(input *DeleteEventSubscriptionInput) (req *request.Request, output *DeleteEventSubscriptionOutput)
DeleteEventSubscriptionRequest generates a "aws/request.Request" representing the client's request for the DeleteEventSubscription operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See DeleteEventSubscription for more information on using the DeleteEventSubscription API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the DeleteEventSubscriptionRequest method. req, resp := client.DeleteEventSubscriptionRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteEventSubscription
func (c *DatabaseMigrationService) DeleteEventSubscriptionWithContext(ctx aws.Context, input *DeleteEventSubscriptionInput, opts ...request.Option) (*DeleteEventSubscriptionOutput, error)
DeleteEventSubscriptionWithContext is the same as DeleteEventSubscription with the addition of the ability to pass a context and additional request options.
See DeleteEventSubscription for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) DeleteReplicationInstance(input *DeleteReplicationInstanceInput) (*DeleteReplicationInstanceOutput, error)
DeleteReplicationInstance API operation for AWS Database Migration Service.
Deletes the specified replication instance.
You must delete any migration tasks that are associated with the replication instance before you can delete it.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation DeleteReplicationInstance for usage and error information.
Returned Error Types:
* InvalidResourceStateFault The resource is in a state that prevents it from being used for database migration. * ResourceNotFoundFault The resource could not be found.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteReplicationInstance
func (c *DatabaseMigrationService) DeleteReplicationInstanceRequest(input *DeleteReplicationInstanceInput) (req *request.Request, output *DeleteReplicationInstanceOutput)
DeleteReplicationInstanceRequest generates a "aws/request.Request" representing the client's request for the DeleteReplicationInstance operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See DeleteReplicationInstance for more information on using the DeleteReplicationInstance API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the DeleteReplicationInstanceRequest method. req, resp := client.DeleteReplicationInstanceRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteReplicationInstance
func (c *DatabaseMigrationService) DeleteReplicationInstanceWithContext(ctx aws.Context, input *DeleteReplicationInstanceInput, opts ...request.Option) (*DeleteReplicationInstanceOutput, error)
DeleteReplicationInstanceWithContext is the same as DeleteReplicationInstance with the addition of the ability to pass a context and additional request options.
See DeleteReplicationInstance for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) DeleteReplicationSubnetGroup(input *DeleteReplicationSubnetGroupInput) (*DeleteReplicationSubnetGroupOutput, error)
DeleteReplicationSubnetGroup API operation for AWS Database Migration Service.
Deletes a subnet group.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation DeleteReplicationSubnetGroup for usage and error information.
Returned Error Types:
* InvalidResourceStateFault The resource is in a state that prevents it from being used for database migration. * ResourceNotFoundFault The resource could not be found.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteReplicationSubnetGroup
func (c *DatabaseMigrationService) DeleteReplicationSubnetGroupRequest(input *DeleteReplicationSubnetGroupInput) (req *request.Request, output *DeleteReplicationSubnetGroupOutput)
DeleteReplicationSubnetGroupRequest generates a "aws/request.Request" representing the client's request for the DeleteReplicationSubnetGroup operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See DeleteReplicationSubnetGroup for more information on using the DeleteReplicationSubnetGroup API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the DeleteReplicationSubnetGroupRequest method. req, resp := client.DeleteReplicationSubnetGroupRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteReplicationSubnetGroup
func (c *DatabaseMigrationService) DeleteReplicationSubnetGroupWithContext(ctx aws.Context, input *DeleteReplicationSubnetGroupInput, opts ...request.Option) (*DeleteReplicationSubnetGroupOutput, error)
DeleteReplicationSubnetGroupWithContext is the same as DeleteReplicationSubnetGroup with the addition of the ability to pass a context and additional request options.
See DeleteReplicationSubnetGroup for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) DeleteReplicationTask(input *DeleteReplicationTaskInput) (*DeleteReplicationTaskOutput, error)
DeleteReplicationTask API operation for AWS Database Migration Service.
Deletes the specified replication task.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation DeleteReplicationTask for usage and error information.
Returned Error Types:
* ResourceNotFoundFault The resource could not be found. * InvalidResourceStateFault The resource is in a state that prevents it from being used for database migration.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteReplicationTask
func (c *DatabaseMigrationService) DeleteReplicationTaskAssessmentRun(input *DeleteReplicationTaskAssessmentRunInput) (*DeleteReplicationTaskAssessmentRunOutput, error)
DeleteReplicationTaskAssessmentRun API operation for AWS Database Migration Service.
Deletes the record of a single premigration assessment run.
This operation removes all metadata that AWS DMS maintains about this assessment run. However, the operation leaves untouched all information about this assessment run that is stored in your Amazon S3 bucket.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation DeleteReplicationTaskAssessmentRun for usage and error information.
Returned Error Types:
* AccessDeniedFault AWS DMS was denied access to the endpoint. Check that the role is correctly configured. * ResourceNotFoundFault The resource could not be found. * InvalidResourceStateFault The resource is in a state that prevents it from being used for database migration.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteReplicationTaskAssessmentRun
func (c *DatabaseMigrationService) DeleteReplicationTaskAssessmentRunRequest(input *DeleteReplicationTaskAssessmentRunInput) (req *request.Request, output *DeleteReplicationTaskAssessmentRunOutput)
DeleteReplicationTaskAssessmentRunRequest generates a "aws/request.Request" representing the client's request for the DeleteReplicationTaskAssessmentRun operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See DeleteReplicationTaskAssessmentRun for more information on using the DeleteReplicationTaskAssessmentRun API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the DeleteReplicationTaskAssessmentRunRequest method. req, resp := client.DeleteReplicationTaskAssessmentRunRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteReplicationTaskAssessmentRun
func (c *DatabaseMigrationService) DeleteReplicationTaskAssessmentRunWithContext(ctx aws.Context, input *DeleteReplicationTaskAssessmentRunInput, opts ...request.Option) (*DeleteReplicationTaskAssessmentRunOutput, error)
DeleteReplicationTaskAssessmentRunWithContext is the same as DeleteReplicationTaskAssessmentRun with the addition of the ability to pass a context and additional request options.
See DeleteReplicationTaskAssessmentRun for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) DeleteReplicationTaskRequest(input *DeleteReplicationTaskInput) (req *request.Request, output *DeleteReplicationTaskOutput)
DeleteReplicationTaskRequest generates a "aws/request.Request" representing the client's request for the DeleteReplicationTask operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See DeleteReplicationTask for more information on using the DeleteReplicationTask API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the DeleteReplicationTaskRequest method. req, resp := client.DeleteReplicationTaskRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DeleteReplicationTask
func (c *DatabaseMigrationService) DeleteReplicationTaskWithContext(ctx aws.Context, input *DeleteReplicationTaskInput, opts ...request.Option) (*DeleteReplicationTaskOutput, error)
DeleteReplicationTaskWithContext is the same as DeleteReplicationTask with the addition of the ability to pass a context and additional request options.
See DeleteReplicationTask for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) DescribeAccountAttributes(input *DescribeAccountAttributesInput) (*DescribeAccountAttributesOutput, error)
DescribeAccountAttributes API operation for AWS Database Migration Service.
Lists all of the AWS DMS attributes for a customer account. These attributes include AWS DMS quotas for the account and a unique account identifier in a particular DMS region. DMS quotas include a list of resource quotas supported by the account, such as the number of replication instances allowed. The description for each resource quota, includes the quota name, current usage toward that quota, and the quota's maximum value. DMS uses the unique account identifier to name each artifact used by DMS in the given region.
This command does not take any parameters.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation DescribeAccountAttributes for usage and error information. See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeAccountAttributes
func (c *DatabaseMigrationService) DescribeAccountAttributesRequest(input *DescribeAccountAttributesInput) (req *request.Request, output *DescribeAccountAttributesOutput)
DescribeAccountAttributesRequest generates a "aws/request.Request" representing the client's request for the DescribeAccountAttributes operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See DescribeAccountAttributes for more information on using the DescribeAccountAttributes API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the DescribeAccountAttributesRequest method. req, resp := client.DescribeAccountAttributesRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeAccountAttributes
func (c *DatabaseMigrationService) DescribeAccountAttributesWithContext(ctx aws.Context, input *DescribeAccountAttributesInput, opts ...request.Option) (*DescribeAccountAttributesOutput, error)
DescribeAccountAttributesWithContext is the same as DescribeAccountAttributes with the addition of the ability to pass a context and additional request options.
See DescribeAccountAttributes for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) DescribeApplicableIndividualAssessments(input *DescribeApplicableIndividualAssessmentsInput) (*DescribeApplicableIndividualAssessmentsOutput, error)
DescribeApplicableIndividualAssessments API operation for AWS Database Migration Service.
Provides a list of individual assessments that you can specify for a new premigration assessment run, given one or more parameters.
If you specify an existing migration task, this operation provides the default individual assessments you can specify for that task. Otherwise, the specified parameters model elements of a possible migration task on which to base a premigration assessment run.
To use these migration task modeling parameters, you must specify an existing replication instance, a source database engine, a target database engine, and a migration type. This combination of parameters potentially limits the default individual assessments available for an assessment run created for a corresponding migration task.
If you specify no parameters, this operation provides a list of all possible individual assessments that you can specify for an assessment run. If you specify any one of the task modeling parameters, you must specify all of them or the operation cannot provide a list of individual assessments. The only parameter that you can specify alone is for an existing migration task. The specified task definition then determines the default list of individual assessments that you can specify in an assessment run for the task.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation DescribeApplicableIndividualAssessments for usage and error information.
Returned Error Types:
* AccessDeniedFault AWS DMS was denied access to the endpoint. Check that the role is correctly configured. * ResourceNotFoundFault The resource could not be found. * InvalidResourceStateFault The resource is in a state that prevents it from being used for database migration.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeApplicableIndividualAssessments
func (c *DatabaseMigrationService) DescribeApplicableIndividualAssessmentsPages(input *DescribeApplicableIndividualAssessmentsInput, fn func(*DescribeApplicableIndividualAssessmentsOutput, bool) bool) error
DescribeApplicableIndividualAssessmentsPages iterates over the pages of a DescribeApplicableIndividualAssessments operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.
See DescribeApplicableIndividualAssessments method for more information on how to use this operation.
Note: This operation can generate multiple requests to a service.
// Example iterating over at most 3 pages of a DescribeApplicableIndividualAssessments operation. pageNum := 0 err := client.DescribeApplicableIndividualAssessmentsPages(params, func(page *databasemigrationservice.DescribeApplicableIndividualAssessmentsOutput, lastPage bool) bool { pageNum++ fmt.Println(page) return pageNum <= 3 })
func (c *DatabaseMigrationService) DescribeApplicableIndividualAssessmentsPagesWithContext(ctx aws.Context, input *DescribeApplicableIndividualAssessmentsInput, fn func(*DescribeApplicableIndividualAssessmentsOutput, bool) bool, opts ...request.Option) error
DescribeApplicableIndividualAssessmentsPagesWithContext same as DescribeApplicableIndividualAssessmentsPages except it takes a Context and allows setting request options on the pages.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) DescribeApplicableIndividualAssessmentsRequest(input *DescribeApplicableIndividualAssessmentsInput) (req *request.Request, output *DescribeApplicableIndividualAssessmentsOutput)
DescribeApplicableIndividualAssessmentsRequest generates a "aws/request.Request" representing the client's request for the DescribeApplicableIndividualAssessments operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See DescribeApplicableIndividualAssessments for more information on using the DescribeApplicableIndividualAssessments API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the DescribeApplicableIndividualAssessmentsRequest method. req, resp := client.DescribeApplicableIndividualAssessmentsRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeApplicableIndividualAssessments
func (c *DatabaseMigrationService) DescribeApplicableIndividualAssessmentsWithContext(ctx aws.Context, input *DescribeApplicableIndividualAssessmentsInput, opts ...request.Option) (*DescribeApplicableIndividualAssessmentsOutput, error)
DescribeApplicableIndividualAssessmentsWithContext is the same as DescribeApplicableIndividualAssessments with the addition of the ability to pass a context and additional request options.
See DescribeApplicableIndividualAssessments for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) DescribeCertificates(input *DescribeCertificatesInput) (*DescribeCertificatesOutput, error)
DescribeCertificates API operation for AWS Database Migration Service.
Provides a description of the certificate.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation DescribeCertificates for usage and error information.
Returned Error Types:
* ResourceNotFoundFault The resource could not be found.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeCertificates
func (c *DatabaseMigrationService) DescribeCertificatesPages(input *DescribeCertificatesInput, fn func(*DescribeCertificatesOutput, bool) bool) error
DescribeCertificatesPages iterates over the pages of a DescribeCertificates operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.
See DescribeCertificates method for more information on how to use this operation.
Note: This operation can generate multiple requests to a service.
// Example iterating over at most 3 pages of a DescribeCertificates operation. pageNum := 0 err := client.DescribeCertificatesPages(params, func(page *databasemigrationservice.DescribeCertificatesOutput, lastPage bool) bool { pageNum++ fmt.Println(page) return pageNum <= 3 })
func (c *DatabaseMigrationService) DescribeCertificatesPagesWithContext(ctx aws.Context, input *DescribeCertificatesInput, fn func(*DescribeCertificatesOutput, bool) bool, opts ...request.Option) error
DescribeCertificatesPagesWithContext same as DescribeCertificatesPages except it takes a Context and allows setting request options on the pages.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) DescribeCertificatesRequest(input *DescribeCertificatesInput) (req *request.Request, output *DescribeCertificatesOutput)
DescribeCertificatesRequest generates a "aws/request.Request" representing the client's request for the DescribeCertificates operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See DescribeCertificates for more information on using the DescribeCertificates API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the DescribeCertificatesRequest method. req, resp := client.DescribeCertificatesRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeCertificates
func (c *DatabaseMigrationService) DescribeCertificatesWithContext(ctx aws.Context, input *DescribeCertificatesInput, opts ...request.Option) (*DescribeCertificatesOutput, error)
DescribeCertificatesWithContext is the same as DescribeCertificates with the addition of the ability to pass a context and additional request options.
See DescribeCertificates for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) DescribeConnections(input *DescribeConnectionsInput) (*DescribeConnectionsOutput, error)
DescribeConnections API operation for AWS Database Migration Service.
Describes the status of the connections that have been made between the replication instance and an endpoint. Connections are created when you test an endpoint.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation DescribeConnections for usage and error information.
Returned Error Types:
* ResourceNotFoundFault The resource could not be found.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeConnections
func (c *DatabaseMigrationService) DescribeConnectionsPages(input *DescribeConnectionsInput, fn func(*DescribeConnectionsOutput, bool) bool) error
DescribeConnectionsPages iterates over the pages of a DescribeConnections operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.
See DescribeConnections method for more information on how to use this operation.
Note: This operation can generate multiple requests to a service.
// Example iterating over at most 3 pages of a DescribeConnections operation. pageNum := 0 err := client.DescribeConnectionsPages(params, func(page *databasemigrationservice.DescribeConnectionsOutput, lastPage bool) bool { pageNum++ fmt.Println(page) return pageNum <= 3 })
func (c *DatabaseMigrationService) DescribeConnectionsPagesWithContext(ctx aws.Context, input *DescribeConnectionsInput, fn func(*DescribeConnectionsOutput, bool) bool, opts ...request.Option) error
DescribeConnectionsPagesWithContext same as DescribeConnectionsPages except it takes a Context and allows setting request options on the pages.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) DescribeConnectionsRequest(input *DescribeConnectionsInput) (req *request.Request, output *DescribeConnectionsOutput)
DescribeConnectionsRequest generates a "aws/request.Request" representing the client's request for the DescribeConnections operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See DescribeConnections for more information on using the DescribeConnections API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the DescribeConnectionsRequest method. req, resp := client.DescribeConnectionsRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeConnections
func (c *DatabaseMigrationService) DescribeConnectionsWithContext(ctx aws.Context, input *DescribeConnectionsInput, opts ...request.Option) (*DescribeConnectionsOutput, error)
DescribeConnectionsWithContext is the same as DescribeConnections with the addition of the ability to pass a context and additional request options.
See DescribeConnections for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) DescribeEndpointTypes(input *DescribeEndpointTypesInput) (*DescribeEndpointTypesOutput, error)
DescribeEndpointTypes API operation for AWS Database Migration Service.
Returns information about the type of endpoints available.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation DescribeEndpointTypes for usage and error information. See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeEndpointTypes
func (c *DatabaseMigrationService) DescribeEndpointTypesPages(input *DescribeEndpointTypesInput, fn func(*DescribeEndpointTypesOutput, bool) bool) error
DescribeEndpointTypesPages iterates over the pages of a DescribeEndpointTypes operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.
See DescribeEndpointTypes method for more information on how to use this operation.
Note: This operation can generate multiple requests to a service.
// Example iterating over at most 3 pages of a DescribeEndpointTypes operation. pageNum := 0 err := client.DescribeEndpointTypesPages(params, func(page *databasemigrationservice.DescribeEndpointTypesOutput, lastPage bool) bool { pageNum++ fmt.Println(page) return pageNum <= 3 })
func (c *DatabaseMigrationService) DescribeEndpointTypesPagesWithContext(ctx aws.Context, input *DescribeEndpointTypesInput, fn func(*DescribeEndpointTypesOutput, bool) bool, opts ...request.Option) error
DescribeEndpointTypesPagesWithContext same as DescribeEndpointTypesPages except it takes a Context and allows setting request options on the pages.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) DescribeEndpointTypesRequest(input *DescribeEndpointTypesInput) (req *request.Request, output *DescribeEndpointTypesOutput)
DescribeEndpointTypesRequest generates a "aws/request.Request" representing the client's request for the DescribeEndpointTypes operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See DescribeEndpointTypes for more information on using the DescribeEndpointTypes API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the DescribeEndpointTypesRequest method. req, resp := client.DescribeEndpointTypesRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeEndpointTypes
func (c *DatabaseMigrationService) DescribeEndpointTypesWithContext(ctx aws.Context, input *DescribeEndpointTypesInput, opts ...request.Option) (*DescribeEndpointTypesOutput, error)
DescribeEndpointTypesWithContext is the same as DescribeEndpointTypes with the addition of the ability to pass a context and additional request options.
See DescribeEndpointTypes for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) DescribeEndpoints(input *DescribeEndpointsInput) (*DescribeEndpointsOutput, error)
DescribeEndpoints API operation for AWS Database Migration Service.
Returns information about the endpoints for your account in the current region.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation DescribeEndpoints for usage and error information.
Returned Error Types:
* ResourceNotFoundFault The resource could not be found.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeEndpoints
func (c *DatabaseMigrationService) DescribeEndpointsPages(input *DescribeEndpointsInput, fn func(*DescribeEndpointsOutput, bool) bool) error
DescribeEndpointsPages iterates over the pages of a DescribeEndpoints operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.
See DescribeEndpoints method for more information on how to use this operation.
Note: This operation can generate multiple requests to a service.
// Example iterating over at most 3 pages of a DescribeEndpoints operation. pageNum := 0 err := client.DescribeEndpointsPages(params, func(page *databasemigrationservice.DescribeEndpointsOutput, lastPage bool) bool { pageNum++ fmt.Println(page) return pageNum <= 3 })
func (c *DatabaseMigrationService) DescribeEndpointsPagesWithContext(ctx aws.Context, input *DescribeEndpointsInput, fn func(*DescribeEndpointsOutput, bool) bool, opts ...request.Option) error
DescribeEndpointsPagesWithContext same as DescribeEndpointsPages except it takes a Context and allows setting request options on the pages.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) DescribeEndpointsRequest(input *DescribeEndpointsInput) (req *request.Request, output *DescribeEndpointsOutput)
DescribeEndpointsRequest generates a "aws/request.Request" representing the client's request for the DescribeEndpoints operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See DescribeEndpoints for more information on using the DescribeEndpoints API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the DescribeEndpointsRequest method. req, resp := client.DescribeEndpointsRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeEndpoints
func (c *DatabaseMigrationService) DescribeEndpointsWithContext(ctx aws.Context, input *DescribeEndpointsInput, opts ...request.Option) (*DescribeEndpointsOutput, error)
DescribeEndpointsWithContext is the same as DescribeEndpoints with the addition of the ability to pass a context and additional request options.
See DescribeEndpoints for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) DescribeEventCategories(input *DescribeEventCategoriesInput) (*DescribeEventCategoriesOutput, error)
DescribeEventCategories API operation for AWS Database Migration Service.
Lists categories for all event source types, or, if specified, for a specified source type. You can see a list of the event categories and source types in Working with Events and Notifications (https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Events.html) in the AWS Database Migration Service User Guide.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation DescribeEventCategories for usage and error information. See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeEventCategories
func (c *DatabaseMigrationService) DescribeEventCategoriesRequest(input *DescribeEventCategoriesInput) (req *request.Request, output *DescribeEventCategoriesOutput)
DescribeEventCategoriesRequest generates a "aws/request.Request" representing the client's request for the DescribeEventCategories operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See DescribeEventCategories for more information on using the DescribeEventCategories API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the DescribeEventCategoriesRequest method. req, resp := client.DescribeEventCategoriesRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeEventCategories
func (c *DatabaseMigrationService) DescribeEventCategoriesWithContext(ctx aws.Context, input *DescribeEventCategoriesInput, opts ...request.Option) (*DescribeEventCategoriesOutput, error)
DescribeEventCategoriesWithContext is the same as DescribeEventCategories with the addition of the ability to pass a context and additional request options.
See DescribeEventCategories for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) DescribeEventSubscriptions(input *DescribeEventSubscriptionsInput) (*DescribeEventSubscriptionsOutput, error)
DescribeEventSubscriptions API operation for AWS Database Migration Service.
Lists all the event subscriptions for a customer account. The description of a subscription includes SubscriptionName, SNSTopicARN, CustomerID, SourceType, SourceID, CreationTime, and Status.
If you specify SubscriptionName, this action lists the description for that subscription.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation DescribeEventSubscriptions for usage and error information.
Returned Error Types:
* ResourceNotFoundFault The resource could not be found.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeEventSubscriptions
func (c *DatabaseMigrationService) DescribeEventSubscriptionsPages(input *DescribeEventSubscriptionsInput, fn func(*DescribeEventSubscriptionsOutput, bool) bool) error
DescribeEventSubscriptionsPages iterates over the pages of a DescribeEventSubscriptions operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.
See DescribeEventSubscriptions method for more information on how to use this operation.
Note: This operation can generate multiple requests to a service.
// Example iterating over at most 3 pages of a DescribeEventSubscriptions operation. pageNum := 0 err := client.DescribeEventSubscriptionsPages(params, func(page *databasemigrationservice.DescribeEventSubscriptionsOutput, lastPage bool) bool { pageNum++ fmt.Println(page) return pageNum <= 3 })
func (c *DatabaseMigrationService) DescribeEventSubscriptionsPagesWithContext(ctx aws.Context, input *DescribeEventSubscriptionsInput, fn func(*DescribeEventSubscriptionsOutput, bool) bool, opts ...request.Option) error
DescribeEventSubscriptionsPagesWithContext same as DescribeEventSubscriptionsPages except it takes a Context and allows setting request options on the pages.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) DescribeEventSubscriptionsRequest(input *DescribeEventSubscriptionsInput) (req *request.Request, output *DescribeEventSubscriptionsOutput)
DescribeEventSubscriptionsRequest generates a "aws/request.Request" representing the client's request for the DescribeEventSubscriptions operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See DescribeEventSubscriptions for more information on using the DescribeEventSubscriptions API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the DescribeEventSubscriptionsRequest method. req, resp := client.DescribeEventSubscriptionsRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeEventSubscriptions
func (c *DatabaseMigrationService) DescribeEventSubscriptionsWithContext(ctx aws.Context, input *DescribeEventSubscriptionsInput, opts ...request.Option) (*DescribeEventSubscriptionsOutput, error)
DescribeEventSubscriptionsWithContext is the same as DescribeEventSubscriptions with the addition of the ability to pass a context and additional request options.
See DescribeEventSubscriptions for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) DescribeEvents(input *DescribeEventsInput) (*DescribeEventsOutput, error)
DescribeEvents API operation for AWS Database Migration Service.
Lists events for a given source identifier and source type. You can also specify a start and end time. For more information on AWS DMS events, see Working with Events and Notifications (https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Events.html) in the AWS Database Migration User Guide.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation DescribeEvents for usage and error information. See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeEvents
func (c *DatabaseMigrationService) DescribeEventsPages(input *DescribeEventsInput, fn func(*DescribeEventsOutput, bool) bool) error
DescribeEventsPages iterates over the pages of a DescribeEvents operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.
See DescribeEvents method for more information on how to use this operation.
Note: This operation can generate multiple requests to a service.
// Example iterating over at most 3 pages of a DescribeEvents operation. pageNum := 0 err := client.DescribeEventsPages(params, func(page *databasemigrationservice.DescribeEventsOutput, lastPage bool) bool { pageNum++ fmt.Println(page) return pageNum <= 3 })
func (c *DatabaseMigrationService) DescribeEventsPagesWithContext(ctx aws.Context, input *DescribeEventsInput, fn func(*DescribeEventsOutput, bool) bool, opts ...request.Option) error
DescribeEventsPagesWithContext same as DescribeEventsPages except it takes a Context and allows setting request options on the pages.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) DescribeEventsRequest(input *DescribeEventsInput) (req *request.Request, output *DescribeEventsOutput)
DescribeEventsRequest generates a "aws/request.Request" representing the client's request for the DescribeEvents operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See DescribeEvents for more information on using the DescribeEvents API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the DescribeEventsRequest method. req, resp := client.DescribeEventsRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeEvents
func (c *DatabaseMigrationService) DescribeEventsWithContext(ctx aws.Context, input *DescribeEventsInput, opts ...request.Option) (*DescribeEventsOutput, error)
DescribeEventsWithContext is the same as DescribeEvents with the addition of the ability to pass a context and additional request options.
See DescribeEvents for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) DescribeOrderableReplicationInstances(input *DescribeOrderableReplicationInstancesInput) (*DescribeOrderableReplicationInstancesOutput, error)
DescribeOrderableReplicationInstances API operation for AWS Database Migration Service.
Returns information about the replication instance types that can be created in the specified region.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation DescribeOrderableReplicationInstances for usage and error information. See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeOrderableReplicationInstances
func (c *DatabaseMigrationService) DescribeOrderableReplicationInstancesPages(input *DescribeOrderableReplicationInstancesInput, fn func(*DescribeOrderableReplicationInstancesOutput, bool) bool) error
DescribeOrderableReplicationInstancesPages iterates over the pages of a DescribeOrderableReplicationInstances operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.
See DescribeOrderableReplicationInstances method for more information on how to use this operation.
Note: This operation can generate multiple requests to a service.
// Example iterating over at most 3 pages of a DescribeOrderableReplicationInstances operation. pageNum := 0 err := client.DescribeOrderableReplicationInstancesPages(params, func(page *databasemigrationservice.DescribeOrderableReplicationInstancesOutput, lastPage bool) bool { pageNum++ fmt.Println(page) return pageNum <= 3 })
func (c *DatabaseMigrationService) DescribeOrderableReplicationInstancesPagesWithContext(ctx aws.Context, input *DescribeOrderableReplicationInstancesInput, fn func(*DescribeOrderableReplicationInstancesOutput, bool) bool, opts ...request.Option) error
DescribeOrderableReplicationInstancesPagesWithContext same as DescribeOrderableReplicationInstancesPages except it takes a Context and allows setting request options on the pages.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) DescribeOrderableReplicationInstancesRequest(input *DescribeOrderableReplicationInstancesInput) (req *request.Request, output *DescribeOrderableReplicationInstancesOutput)
DescribeOrderableReplicationInstancesRequest generates a "aws/request.Request" representing the client's request for the DescribeOrderableReplicationInstances operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See DescribeOrderableReplicationInstances for more information on using the DescribeOrderableReplicationInstances API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the DescribeOrderableReplicationInstancesRequest method. req, resp := client.DescribeOrderableReplicationInstancesRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeOrderableReplicationInstances
func (c *DatabaseMigrationService) DescribeOrderableReplicationInstancesWithContext(ctx aws.Context, input *DescribeOrderableReplicationInstancesInput, opts ...request.Option) (*DescribeOrderableReplicationInstancesOutput, error)
DescribeOrderableReplicationInstancesWithContext is the same as DescribeOrderableReplicationInstances with the addition of the ability to pass a context and additional request options.
See DescribeOrderableReplicationInstances for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) DescribePendingMaintenanceActions(input *DescribePendingMaintenanceActionsInput) (*DescribePendingMaintenanceActionsOutput, error)
DescribePendingMaintenanceActions API operation for AWS Database Migration Service.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation DescribePendingMaintenanceActions for usage and error information.
Returned Error Types:
* ResourceNotFoundFault The resource could not be found.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribePendingMaintenanceActions
func (c *DatabaseMigrationService) DescribePendingMaintenanceActionsPages(input *DescribePendingMaintenanceActionsInput, fn func(*DescribePendingMaintenanceActionsOutput, bool) bool) error
DescribePendingMaintenanceActionsPages iterates over the pages of a DescribePendingMaintenanceActions operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.
See DescribePendingMaintenanceActions method for more information on how to use this operation.
Note: This operation can generate multiple requests to a service.
// Example iterating over at most 3 pages of a DescribePendingMaintenanceActions operation. pageNum := 0 err := client.DescribePendingMaintenanceActionsPages(params, func(page *databasemigrationservice.DescribePendingMaintenanceActionsOutput, lastPage bool) bool { pageNum++ fmt.Println(page) return pageNum <= 3 })
func (c *DatabaseMigrationService) DescribePendingMaintenanceActionsPagesWithContext(ctx aws.Context, input *DescribePendingMaintenanceActionsInput, fn func(*DescribePendingMaintenanceActionsOutput, bool) bool, opts ...request.Option) error
DescribePendingMaintenanceActionsPagesWithContext same as DescribePendingMaintenanceActionsPages except it takes a Context and allows setting request options on the pages.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) DescribePendingMaintenanceActionsRequest(input *DescribePendingMaintenanceActionsInput) (req *request.Request, output *DescribePendingMaintenanceActionsOutput)
DescribePendingMaintenanceActionsRequest generates a "aws/request.Request" representing the client's request for the DescribePendingMaintenanceActions operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See DescribePendingMaintenanceActions for more information on using the DescribePendingMaintenanceActions API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the DescribePendingMaintenanceActionsRequest method. req, resp := client.DescribePendingMaintenanceActionsRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribePendingMaintenanceActions
func (c *DatabaseMigrationService) DescribePendingMaintenanceActionsWithContext(ctx aws.Context, input *DescribePendingMaintenanceActionsInput, opts ...request.Option) (*DescribePendingMaintenanceActionsOutput, error)
DescribePendingMaintenanceActionsWithContext is the same as DescribePendingMaintenanceActions with the addition of the ability to pass a context and additional request options.
See DescribePendingMaintenanceActions for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) DescribeRefreshSchemasStatus(input *DescribeRefreshSchemasStatusInput) (*DescribeRefreshSchemasStatusOutput, error)
DescribeRefreshSchemasStatus API operation for AWS Database Migration Service.
Returns the status of the RefreshSchemas operation.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation DescribeRefreshSchemasStatus for usage and error information.
Returned Error Types:
* InvalidResourceStateFault The resource is in a state that prevents it from being used for database migration. * ResourceNotFoundFault The resource could not be found.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeRefreshSchemasStatus
func (c *DatabaseMigrationService) DescribeRefreshSchemasStatusRequest(input *DescribeRefreshSchemasStatusInput) (req *request.Request, output *DescribeRefreshSchemasStatusOutput)
DescribeRefreshSchemasStatusRequest generates a "aws/request.Request" representing the client's request for the DescribeRefreshSchemasStatus operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See DescribeRefreshSchemasStatus for more information on using the DescribeRefreshSchemasStatus API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the DescribeRefreshSchemasStatusRequest method. req, resp := client.DescribeRefreshSchemasStatusRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeRefreshSchemasStatus
func (c *DatabaseMigrationService) DescribeRefreshSchemasStatusWithContext(ctx aws.Context, input *DescribeRefreshSchemasStatusInput, opts ...request.Option) (*DescribeRefreshSchemasStatusOutput, error)
DescribeRefreshSchemasStatusWithContext is the same as DescribeRefreshSchemasStatus with the addition of the ability to pass a context and additional request options.
See DescribeRefreshSchemasStatus for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) DescribeReplicationInstanceTaskLogs(input *DescribeReplicationInstanceTaskLogsInput) (*DescribeReplicationInstanceTaskLogsOutput, error)
DescribeReplicationInstanceTaskLogs API operation for AWS Database Migration Service.
Returns information about the task logs for the specified task.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation DescribeReplicationInstanceTaskLogs for usage and error information.
Returned Error Types:
* ResourceNotFoundFault The resource could not be found. * InvalidResourceStateFault The resource is in a state that prevents it from being used for database migration.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationInstanceTaskLogs
func (c *DatabaseMigrationService) DescribeReplicationInstanceTaskLogsPages(input *DescribeReplicationInstanceTaskLogsInput, fn func(*DescribeReplicationInstanceTaskLogsOutput, bool) bool) error
DescribeReplicationInstanceTaskLogsPages iterates over the pages of a DescribeReplicationInstanceTaskLogs operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.
See DescribeReplicationInstanceTaskLogs method for more information on how to use this operation.
Note: This operation can generate multiple requests to a service.
// Example iterating over at most 3 pages of a DescribeReplicationInstanceTaskLogs operation. pageNum := 0 err := client.DescribeReplicationInstanceTaskLogsPages(params, func(page *databasemigrationservice.DescribeReplicationInstanceTaskLogsOutput, lastPage bool) bool { pageNum++ fmt.Println(page) return pageNum <= 3 })
func (c *DatabaseMigrationService) DescribeReplicationInstanceTaskLogsPagesWithContext(ctx aws.Context, input *DescribeReplicationInstanceTaskLogsInput, fn func(*DescribeReplicationInstanceTaskLogsOutput, bool) bool, opts ...request.Option) error
DescribeReplicationInstanceTaskLogsPagesWithContext same as DescribeReplicationInstanceTaskLogsPages except it takes a Context and allows setting request options on the pages.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) DescribeReplicationInstanceTaskLogsRequest(input *DescribeReplicationInstanceTaskLogsInput) (req *request.Request, output *DescribeReplicationInstanceTaskLogsOutput)
DescribeReplicationInstanceTaskLogsRequest generates a "aws/request.Request" representing the client's request for the DescribeReplicationInstanceTaskLogs operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See DescribeReplicationInstanceTaskLogs for more information on using the DescribeReplicationInstanceTaskLogs API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the DescribeReplicationInstanceTaskLogsRequest method. req, resp := client.DescribeReplicationInstanceTaskLogsRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationInstanceTaskLogs
func (c *DatabaseMigrationService) DescribeReplicationInstanceTaskLogsWithContext(ctx aws.Context, input *DescribeReplicationInstanceTaskLogsInput, opts ...request.Option) (*DescribeReplicationInstanceTaskLogsOutput, error)
DescribeReplicationInstanceTaskLogsWithContext is the same as DescribeReplicationInstanceTaskLogs with the addition of the ability to pass a context and additional request options.
See DescribeReplicationInstanceTaskLogs for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) DescribeReplicationInstances(input *DescribeReplicationInstancesInput) (*DescribeReplicationInstancesOutput, error)
DescribeReplicationInstances API operation for AWS Database Migration Service.
Returns information about replication instances for your account in the current region.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation DescribeReplicationInstances for usage and error information.
Returned Error Types:
* ResourceNotFoundFault The resource could not be found.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationInstances
func (c *DatabaseMigrationService) DescribeReplicationInstancesPages(input *DescribeReplicationInstancesInput, fn func(*DescribeReplicationInstancesOutput, bool) bool) error
DescribeReplicationInstancesPages iterates over the pages of a DescribeReplicationInstances operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.
See DescribeReplicationInstances method for more information on how to use this operation.
Note: This operation can generate multiple requests to a service.
// Example iterating over at most 3 pages of a DescribeReplicationInstances operation. pageNum := 0 err := client.DescribeReplicationInstancesPages(params, func(page *databasemigrationservice.DescribeReplicationInstancesOutput, lastPage bool) bool { pageNum++ fmt.Println(page) return pageNum <= 3 })
func (c *DatabaseMigrationService) DescribeReplicationInstancesPagesWithContext(ctx aws.Context, input *DescribeReplicationInstancesInput, fn func(*DescribeReplicationInstancesOutput, bool) bool, opts ...request.Option) error
DescribeReplicationInstancesPagesWithContext same as DescribeReplicationInstancesPages except it takes a Context and allows setting request options on the pages.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) DescribeReplicationInstancesRequest(input *DescribeReplicationInstancesInput) (req *request.Request, output *DescribeReplicationInstancesOutput)
DescribeReplicationInstancesRequest generates a "aws/request.Request" representing the client's request for the DescribeReplicationInstances operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See DescribeReplicationInstances for more information on using the DescribeReplicationInstances API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the DescribeReplicationInstancesRequest method. req, resp := client.DescribeReplicationInstancesRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationInstances
func (c *DatabaseMigrationService) DescribeReplicationInstancesWithContext(ctx aws.Context, input *DescribeReplicationInstancesInput, opts ...request.Option) (*DescribeReplicationInstancesOutput, error)
DescribeReplicationInstancesWithContext is the same as DescribeReplicationInstances with the addition of the ability to pass a context and additional request options.
See DescribeReplicationInstances for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) DescribeReplicationSubnetGroups(input *DescribeReplicationSubnetGroupsInput) (*DescribeReplicationSubnetGroupsOutput, error)
DescribeReplicationSubnetGroups API operation for AWS Database Migration Service.
Returns information about the replication subnet groups.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation DescribeReplicationSubnetGroups for usage and error information.
Returned Error Types:
* ResourceNotFoundFault The resource could not be found.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationSubnetGroups
func (c *DatabaseMigrationService) DescribeReplicationSubnetGroupsPages(input *DescribeReplicationSubnetGroupsInput, fn func(*DescribeReplicationSubnetGroupsOutput, bool) bool) error
DescribeReplicationSubnetGroupsPages iterates over the pages of a DescribeReplicationSubnetGroups operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.
See DescribeReplicationSubnetGroups method for more information on how to use this operation.
Note: This operation can generate multiple requests to a service.
// Example iterating over at most 3 pages of a DescribeReplicationSubnetGroups operation. pageNum := 0 err := client.DescribeReplicationSubnetGroupsPages(params, func(page *databasemigrationservice.DescribeReplicationSubnetGroupsOutput, lastPage bool) bool { pageNum++ fmt.Println(page) return pageNum <= 3 })
func (c *DatabaseMigrationService) DescribeReplicationSubnetGroupsPagesWithContext(ctx aws.Context, input *DescribeReplicationSubnetGroupsInput, fn func(*DescribeReplicationSubnetGroupsOutput, bool) bool, opts ...request.Option) error
DescribeReplicationSubnetGroupsPagesWithContext same as DescribeReplicationSubnetGroupsPages except it takes a Context and allows setting request options on the pages.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) DescribeReplicationSubnetGroupsRequest(input *DescribeReplicationSubnetGroupsInput) (req *request.Request, output *DescribeReplicationSubnetGroupsOutput)
DescribeReplicationSubnetGroupsRequest generates a "aws/request.Request" representing the client's request for the DescribeReplicationSubnetGroups operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See DescribeReplicationSubnetGroups for more information on using the DescribeReplicationSubnetGroups API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the DescribeReplicationSubnetGroupsRequest method. req, resp := client.DescribeReplicationSubnetGroupsRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationSubnetGroups
func (c *DatabaseMigrationService) DescribeReplicationSubnetGroupsWithContext(ctx aws.Context, input *DescribeReplicationSubnetGroupsInput, opts ...request.Option) (*DescribeReplicationSubnetGroupsOutput, error)
DescribeReplicationSubnetGroupsWithContext is the same as DescribeReplicationSubnetGroups with the addition of the ability to pass a context and additional request options.
See DescribeReplicationSubnetGroups for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) DescribeReplicationTaskAssessmentResults(input *DescribeReplicationTaskAssessmentResultsInput) (*DescribeReplicationTaskAssessmentResultsOutput, error)
DescribeReplicationTaskAssessmentResults API operation for AWS Database Migration Service.
Returns the task assessment results from Amazon S3. This action always returns the latest results.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation DescribeReplicationTaskAssessmentResults for usage and error information.
Returned Error Types:
* ResourceNotFoundFault The resource could not be found.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationTaskAssessmentResults
func (c *DatabaseMigrationService) DescribeReplicationTaskAssessmentResultsPages(input *DescribeReplicationTaskAssessmentResultsInput, fn func(*DescribeReplicationTaskAssessmentResultsOutput, bool) bool) error
DescribeReplicationTaskAssessmentResultsPages iterates over the pages of a DescribeReplicationTaskAssessmentResults operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.
See DescribeReplicationTaskAssessmentResults method for more information on how to use this operation.
Note: This operation can generate multiple requests to a service.
// Example iterating over at most 3 pages of a DescribeReplicationTaskAssessmentResults operation. pageNum := 0 err := client.DescribeReplicationTaskAssessmentResultsPages(params, func(page *databasemigrationservice.DescribeReplicationTaskAssessmentResultsOutput, lastPage bool) bool { pageNum++ fmt.Println(page) return pageNum <= 3 })
func (c *DatabaseMigrationService) DescribeReplicationTaskAssessmentResultsPagesWithContext(ctx aws.Context, input *DescribeReplicationTaskAssessmentResultsInput, fn func(*DescribeReplicationTaskAssessmentResultsOutput, bool) bool, opts ...request.Option) error
DescribeReplicationTaskAssessmentResultsPagesWithContext same as DescribeReplicationTaskAssessmentResultsPages except it takes a Context and allows setting request options on the pages.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) DescribeReplicationTaskAssessmentResultsRequest(input *DescribeReplicationTaskAssessmentResultsInput) (req *request.Request, output *DescribeReplicationTaskAssessmentResultsOutput)
DescribeReplicationTaskAssessmentResultsRequest generates a "aws/request.Request" representing the client's request for the DescribeReplicationTaskAssessmentResults operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See DescribeReplicationTaskAssessmentResults for more information on using the DescribeReplicationTaskAssessmentResults API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the DescribeReplicationTaskAssessmentResultsRequest method. req, resp := client.DescribeReplicationTaskAssessmentResultsRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationTaskAssessmentResults
func (c *DatabaseMigrationService) DescribeReplicationTaskAssessmentResultsWithContext(ctx aws.Context, input *DescribeReplicationTaskAssessmentResultsInput, opts ...request.Option) (*DescribeReplicationTaskAssessmentResultsOutput, error)
DescribeReplicationTaskAssessmentResultsWithContext is the same as DescribeReplicationTaskAssessmentResults with the addition of the ability to pass a context and additional request options.
See DescribeReplicationTaskAssessmentResults for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) DescribeReplicationTaskAssessmentRuns(input *DescribeReplicationTaskAssessmentRunsInput) (*DescribeReplicationTaskAssessmentRunsOutput, error)
DescribeReplicationTaskAssessmentRuns API operation for AWS Database Migration Service.
Returns a paginated list of premigration assessment runs based on filter settings.
These filter settings can specify a combination of premigration assessment runs, migration tasks, replication instances, and assessment run status values.
This operation doesn't return information about individual assessments. For this information, see the DescribeReplicationTaskIndividualAssessments operation.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation DescribeReplicationTaskAssessmentRuns for usage and error information.
Returned Error Types:
* ResourceNotFoundFault The resource could not be found.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationTaskAssessmentRuns
func (c *DatabaseMigrationService) DescribeReplicationTaskAssessmentRunsPages(input *DescribeReplicationTaskAssessmentRunsInput, fn func(*DescribeReplicationTaskAssessmentRunsOutput, bool) bool) error
DescribeReplicationTaskAssessmentRunsPages iterates over the pages of a DescribeReplicationTaskAssessmentRuns operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.
See DescribeReplicationTaskAssessmentRuns method for more information on how to use this operation.
Note: This operation can generate multiple requests to a service.
// Example iterating over at most 3 pages of a DescribeReplicationTaskAssessmentRuns operation. pageNum := 0 err := client.DescribeReplicationTaskAssessmentRunsPages(params, func(page *databasemigrationservice.DescribeReplicationTaskAssessmentRunsOutput, lastPage bool) bool { pageNum++ fmt.Println(page) return pageNum <= 3 })
func (c *DatabaseMigrationService) DescribeReplicationTaskAssessmentRunsPagesWithContext(ctx aws.Context, input *DescribeReplicationTaskAssessmentRunsInput, fn func(*DescribeReplicationTaskAssessmentRunsOutput, bool) bool, opts ...request.Option) error
DescribeReplicationTaskAssessmentRunsPagesWithContext same as DescribeReplicationTaskAssessmentRunsPages except it takes a Context and allows setting request options on the pages.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) DescribeReplicationTaskAssessmentRunsRequest(input *DescribeReplicationTaskAssessmentRunsInput) (req *request.Request, output *DescribeReplicationTaskAssessmentRunsOutput)
DescribeReplicationTaskAssessmentRunsRequest generates a "aws/request.Request" representing the client's request for the DescribeReplicationTaskAssessmentRuns operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See DescribeReplicationTaskAssessmentRuns for more information on using the DescribeReplicationTaskAssessmentRuns API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the DescribeReplicationTaskAssessmentRunsRequest method. req, resp := client.DescribeReplicationTaskAssessmentRunsRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationTaskAssessmentRuns
func (c *DatabaseMigrationService) DescribeReplicationTaskAssessmentRunsWithContext(ctx aws.Context, input *DescribeReplicationTaskAssessmentRunsInput, opts ...request.Option) (*DescribeReplicationTaskAssessmentRunsOutput, error)
DescribeReplicationTaskAssessmentRunsWithContext is the same as DescribeReplicationTaskAssessmentRuns with the addition of the ability to pass a context and additional request options.
See DescribeReplicationTaskAssessmentRuns for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) DescribeReplicationTaskIndividualAssessments(input *DescribeReplicationTaskIndividualAssessmentsInput) (*DescribeReplicationTaskIndividualAssessmentsOutput, error)
DescribeReplicationTaskIndividualAssessments API operation for AWS Database Migration Service.
Returns a paginated list of individual assessments based on filter settings.
These filter settings can specify a combination of premigration assessment runs, migration tasks, and assessment status values.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation DescribeReplicationTaskIndividualAssessments for usage and error information.
Returned Error Types:
* ResourceNotFoundFault The resource could not be found.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationTaskIndividualAssessments
func (c *DatabaseMigrationService) DescribeReplicationTaskIndividualAssessmentsPages(input *DescribeReplicationTaskIndividualAssessmentsInput, fn func(*DescribeReplicationTaskIndividualAssessmentsOutput, bool) bool) error
DescribeReplicationTaskIndividualAssessmentsPages iterates over the pages of a DescribeReplicationTaskIndividualAssessments operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.
See DescribeReplicationTaskIndividualAssessments method for more information on how to use this operation.
Note: This operation can generate multiple requests to a service.
// Example iterating over at most 3 pages of a DescribeReplicationTaskIndividualAssessments operation. pageNum := 0 err := client.DescribeReplicationTaskIndividualAssessmentsPages(params, func(page *databasemigrationservice.DescribeReplicationTaskIndividualAssessmentsOutput, lastPage bool) bool { pageNum++ fmt.Println(page) return pageNum <= 3 })
func (c *DatabaseMigrationService) DescribeReplicationTaskIndividualAssessmentsPagesWithContext(ctx aws.Context, input *DescribeReplicationTaskIndividualAssessmentsInput, fn func(*DescribeReplicationTaskIndividualAssessmentsOutput, bool) bool, opts ...request.Option) error
DescribeReplicationTaskIndividualAssessmentsPagesWithContext same as DescribeReplicationTaskIndividualAssessmentsPages except it takes a Context and allows setting request options on the pages.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) DescribeReplicationTaskIndividualAssessmentsRequest(input *DescribeReplicationTaskIndividualAssessmentsInput) (req *request.Request, output *DescribeReplicationTaskIndividualAssessmentsOutput)
DescribeReplicationTaskIndividualAssessmentsRequest generates a "aws/request.Request" representing the client's request for the DescribeReplicationTaskIndividualAssessments operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See DescribeReplicationTaskIndividualAssessments for more information on using the DescribeReplicationTaskIndividualAssessments API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the DescribeReplicationTaskIndividualAssessmentsRequest method. req, resp := client.DescribeReplicationTaskIndividualAssessmentsRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationTaskIndividualAssessments
func (c *DatabaseMigrationService) DescribeReplicationTaskIndividualAssessmentsWithContext(ctx aws.Context, input *DescribeReplicationTaskIndividualAssessmentsInput, opts ...request.Option) (*DescribeReplicationTaskIndividualAssessmentsOutput, error)
DescribeReplicationTaskIndividualAssessmentsWithContext is the same as DescribeReplicationTaskIndividualAssessments with the addition of the ability to pass a context and additional request options.
See DescribeReplicationTaskIndividualAssessments for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) DescribeReplicationTasks(input *DescribeReplicationTasksInput) (*DescribeReplicationTasksOutput, error)
DescribeReplicationTasks API operation for AWS Database Migration Service.
Returns information about replication tasks for your account in the current region.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation DescribeReplicationTasks for usage and error information.
Returned Error Types:
* ResourceNotFoundFault The resource could not be found.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationTasks
func (c *DatabaseMigrationService) DescribeReplicationTasksPages(input *DescribeReplicationTasksInput, fn func(*DescribeReplicationTasksOutput, bool) bool) error
DescribeReplicationTasksPages iterates over the pages of a DescribeReplicationTasks operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.
See DescribeReplicationTasks method for more information on how to use this operation.
Note: This operation can generate multiple requests to a service.
// Example iterating over at most 3 pages of a DescribeReplicationTasks operation. pageNum := 0 err := client.DescribeReplicationTasksPages(params, func(page *databasemigrationservice.DescribeReplicationTasksOutput, lastPage bool) bool { pageNum++ fmt.Println(page) return pageNum <= 3 })
func (c *DatabaseMigrationService) DescribeReplicationTasksPagesWithContext(ctx aws.Context, input *DescribeReplicationTasksInput, fn func(*DescribeReplicationTasksOutput, bool) bool, opts ...request.Option) error
DescribeReplicationTasksPagesWithContext same as DescribeReplicationTasksPages except it takes a Context and allows setting request options on the pages.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) DescribeReplicationTasksRequest(input *DescribeReplicationTasksInput) (req *request.Request, output *DescribeReplicationTasksOutput)
DescribeReplicationTasksRequest generates a "aws/request.Request" representing the client's request for the DescribeReplicationTasks operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See DescribeReplicationTasks for more information on using the DescribeReplicationTasks API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the DescribeReplicationTasksRequest method. req, resp := client.DescribeReplicationTasksRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationTasks
func (c *DatabaseMigrationService) DescribeReplicationTasksWithContext(ctx aws.Context, input *DescribeReplicationTasksInput, opts ...request.Option) (*DescribeReplicationTasksOutput, error)
DescribeReplicationTasksWithContext is the same as DescribeReplicationTasks with the addition of the ability to pass a context and additional request options.
See DescribeReplicationTasks for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) DescribeSchemas(input *DescribeSchemasInput) (*DescribeSchemasOutput, error)
DescribeSchemas API operation for AWS Database Migration Service.
Returns information about the schema for the specified endpoint.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation DescribeSchemas for usage and error information.
Returned Error Types:
* InvalidResourceStateFault The resource is in a state that prevents it from being used for database migration. * ResourceNotFoundFault The resource could not be found.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeSchemas
func (c *DatabaseMigrationService) DescribeSchemasPages(input *DescribeSchemasInput, fn func(*DescribeSchemasOutput, bool) bool) error
DescribeSchemasPages iterates over the pages of a DescribeSchemas operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.
See DescribeSchemas method for more information on how to use this operation.
Note: This operation can generate multiple requests to a service.
// Example iterating over at most 3 pages of a DescribeSchemas operation. pageNum := 0 err := client.DescribeSchemasPages(params, func(page *databasemigrationservice.DescribeSchemasOutput, lastPage bool) bool { pageNum++ fmt.Println(page) return pageNum <= 3 })
func (c *DatabaseMigrationService) DescribeSchemasPagesWithContext(ctx aws.Context, input *DescribeSchemasInput, fn func(*DescribeSchemasOutput, bool) bool, opts ...request.Option) error
DescribeSchemasPagesWithContext same as DescribeSchemasPages except it takes a Context and allows setting request options on the pages.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) DescribeSchemasRequest(input *DescribeSchemasInput) (req *request.Request, output *DescribeSchemasOutput)
DescribeSchemasRequest generates a "aws/request.Request" representing the client's request for the DescribeSchemas operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See DescribeSchemas for more information on using the DescribeSchemas API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the DescribeSchemasRequest method. req, resp := client.DescribeSchemasRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeSchemas
func (c *DatabaseMigrationService) DescribeSchemasWithContext(ctx aws.Context, input *DescribeSchemasInput, opts ...request.Option) (*DescribeSchemasOutput, error)
DescribeSchemasWithContext is the same as DescribeSchemas with the addition of the ability to pass a context and additional request options.
See DescribeSchemas for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) DescribeTableStatistics(input *DescribeTableStatisticsInput) (*DescribeTableStatisticsOutput, error)
DescribeTableStatistics API operation for AWS Database Migration Service.
Returns table statistics on the database migration task, including table name, rows inserted, rows updated, and rows deleted.
Note that the "last updated" column the DMS console only indicates the time that AWS DMS last updated the table statistics record for a table. It does not indicate the time of the last update to the table.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation DescribeTableStatistics for usage and error information.
Returned Error Types:
* ResourceNotFoundFault The resource could not be found. * InvalidResourceStateFault The resource is in a state that prevents it from being used for database migration.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeTableStatistics
func (c *DatabaseMigrationService) DescribeTableStatisticsPages(input *DescribeTableStatisticsInput, fn func(*DescribeTableStatisticsOutput, bool) bool) error
DescribeTableStatisticsPages iterates over the pages of a DescribeTableStatistics operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.
See DescribeTableStatistics method for more information on how to use this operation.
Note: This operation can generate multiple requests to a service.
// Example iterating over at most 3 pages of a DescribeTableStatistics operation. pageNum := 0 err := client.DescribeTableStatisticsPages(params, func(page *databasemigrationservice.DescribeTableStatisticsOutput, lastPage bool) bool { pageNum++ fmt.Println(page) return pageNum <= 3 })
func (c *DatabaseMigrationService) DescribeTableStatisticsPagesWithContext(ctx aws.Context, input *DescribeTableStatisticsInput, fn func(*DescribeTableStatisticsOutput, bool) bool, opts ...request.Option) error
DescribeTableStatisticsPagesWithContext same as DescribeTableStatisticsPages except it takes a Context and allows setting request options on the pages.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) DescribeTableStatisticsRequest(input *DescribeTableStatisticsInput) (req *request.Request, output *DescribeTableStatisticsOutput)
DescribeTableStatisticsRequest generates a "aws/request.Request" representing the client's request for the DescribeTableStatistics operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See DescribeTableStatistics for more information on using the DescribeTableStatistics API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the DescribeTableStatisticsRequest method. req, resp := client.DescribeTableStatisticsRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeTableStatistics
func (c *DatabaseMigrationService) DescribeTableStatisticsWithContext(ctx aws.Context, input *DescribeTableStatisticsInput, opts ...request.Option) (*DescribeTableStatisticsOutput, error)
DescribeTableStatisticsWithContext is the same as DescribeTableStatistics with the addition of the ability to pass a context and additional request options.
See DescribeTableStatistics for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) ImportCertificate(input *ImportCertificateInput) (*ImportCertificateOutput, error)
ImportCertificate API operation for AWS Database Migration Service.
Uploads the specified certificate.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation ImportCertificate for usage and error information.
Returned Error Types:
* ResourceAlreadyExistsFault The resource you are attempting to create already exists. * InvalidCertificateFault The certificate was not valid. * ResourceQuotaExceededFault The quota for this resource quota has been exceeded.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ImportCertificate
func (c *DatabaseMigrationService) ImportCertificateRequest(input *ImportCertificateInput) (req *request.Request, output *ImportCertificateOutput)
ImportCertificateRequest generates a "aws/request.Request" representing the client's request for the ImportCertificate operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See ImportCertificate for more information on using the ImportCertificate API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the ImportCertificateRequest method. req, resp := client.ImportCertificateRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ImportCertificate
func (c *DatabaseMigrationService) ImportCertificateWithContext(ctx aws.Context, input *ImportCertificateInput, opts ...request.Option) (*ImportCertificateOutput, error)
ImportCertificateWithContext is the same as ImportCertificate with the addition of the ability to pass a context and additional request options.
See ImportCertificate for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) ListTagsForResource(input *ListTagsForResourceInput) (*ListTagsForResourceOutput, error)
ListTagsForResource API operation for AWS Database Migration Service.
Lists all metadata tags attached to an AWS DMS resource, including replication instance, endpoint, security group, and migration task. For more information, see Tag (https://docs.aws.amazon.com/dms/latest/APIReference/API_Tag.html) data type description.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation ListTagsForResource for usage and error information.
Returned Error Types:
* ResourceNotFoundFault The resource could not be found.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ListTagsForResource
func (c *DatabaseMigrationService) ListTagsForResourceRequest(input *ListTagsForResourceInput) (req *request.Request, output *ListTagsForResourceOutput)
ListTagsForResourceRequest generates a "aws/request.Request" representing the client's request for the ListTagsForResource operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See ListTagsForResource for more information on using the ListTagsForResource API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the ListTagsForResourceRequest method. req, resp := client.ListTagsForResourceRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ListTagsForResource
func (c *DatabaseMigrationService) ListTagsForResourceWithContext(ctx aws.Context, input *ListTagsForResourceInput, opts ...request.Option) (*ListTagsForResourceOutput, error)
ListTagsForResourceWithContext is the same as ListTagsForResource with the addition of the ability to pass a context and additional request options.
See ListTagsForResource for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) ModifyEndpoint(input *ModifyEndpointInput) (*ModifyEndpointOutput, error)
ModifyEndpoint API operation for AWS Database Migration Service.
Modifies the specified endpoint.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation ModifyEndpoint for usage and error information.
Returned Error Types:
* InvalidResourceStateFault The resource is in a state that prevents it from being used for database migration. * ResourceNotFoundFault The resource could not be found. * ResourceAlreadyExistsFault The resource you are attempting to create already exists. * KMSKeyNotAccessibleFault AWS DMS cannot access the AWS KMS key. * AccessDeniedFault AWS DMS was denied access to the endpoint. Check that the role is correctly configured.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyEndpoint
func (c *DatabaseMigrationService) ModifyEndpointRequest(input *ModifyEndpointInput) (req *request.Request, output *ModifyEndpointOutput)
ModifyEndpointRequest generates a "aws/request.Request" representing the client's request for the ModifyEndpoint operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See ModifyEndpoint for more information on using the ModifyEndpoint API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the ModifyEndpointRequest method. req, resp := client.ModifyEndpointRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyEndpoint
func (c *DatabaseMigrationService) ModifyEndpointWithContext(ctx aws.Context, input *ModifyEndpointInput, opts ...request.Option) (*ModifyEndpointOutput, error)
ModifyEndpointWithContext is the same as ModifyEndpoint with the addition of the ability to pass a context and additional request options.
See ModifyEndpoint for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) ModifyEventSubscription(input *ModifyEventSubscriptionInput) (*ModifyEventSubscriptionOutput, error)
ModifyEventSubscription API operation for AWS Database Migration Service.
Modifies an existing AWS DMS event notification subscription.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation ModifyEventSubscription for usage and error information.
Returned Error Types:
* ResourceQuotaExceededFault The quota for this resource quota has been exceeded. * ResourceNotFoundFault The resource could not be found. * SNSInvalidTopicFault The SNS topic is invalid. * SNSNoAuthorizationFault You are not authorized for the SNS subscription. * KMSAccessDeniedFault The ciphertext references a key that doesn't exist or that the DMS account doesn't have access to. * KMSDisabledFault The specified master key (CMK) isn't enabled. * KMSInvalidStateFault The state of the specified AWS KMS resource isn't valid for this request. * KMSNotFoundFault The specified AWS KMS entity or resource can't be found. * KMSThrottlingFault This request triggered AWS KMS request throttling.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyEventSubscription
func (c *DatabaseMigrationService) ModifyEventSubscriptionRequest(input *ModifyEventSubscriptionInput) (req *request.Request, output *ModifyEventSubscriptionOutput)
ModifyEventSubscriptionRequest generates a "aws/request.Request" representing the client's request for the ModifyEventSubscription operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See ModifyEventSubscription for more information on using the ModifyEventSubscription API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the ModifyEventSubscriptionRequest method. req, resp := client.ModifyEventSubscriptionRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyEventSubscription
func (c *DatabaseMigrationService) ModifyEventSubscriptionWithContext(ctx aws.Context, input *ModifyEventSubscriptionInput, opts ...request.Option) (*ModifyEventSubscriptionOutput, error)
ModifyEventSubscriptionWithContext is the same as ModifyEventSubscription with the addition of the ability to pass a context and additional request options.
See ModifyEventSubscription for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) ModifyReplicationInstance(input *ModifyReplicationInstanceInput) (*ModifyReplicationInstanceOutput, error)
ModifyReplicationInstance API operation for AWS Database Migration Service.
Modifies the replication instance to apply new settings. You can change one or more parameters by specifying these parameters and the new values in the request.
Some settings are applied during the maintenance window.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation ModifyReplicationInstance for usage and error information.
Returned Error Types:
* AccessDeniedFault AWS DMS was denied access to the endpoint. Check that the role is correctly configured. * InvalidResourceStateFault The resource is in a state that prevents it from being used for database migration. * ResourceAlreadyExistsFault The resource you are attempting to create already exists. * ResourceNotFoundFault The resource could not be found. * InsufficientResourceCapacityFault There are not enough resources allocated to the database migration. * StorageQuotaExceededFault The storage quota has been exceeded. * UpgradeDependencyFailureFault An upgrade dependency is preventing the database migration.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyReplicationInstance
func (c *DatabaseMigrationService) ModifyReplicationInstanceRequest(input *ModifyReplicationInstanceInput) (req *request.Request, output *ModifyReplicationInstanceOutput)
ModifyReplicationInstanceRequest generates a "aws/request.Request" representing the client's request for the ModifyReplicationInstance operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See ModifyReplicationInstance for more information on using the ModifyReplicationInstance API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the ModifyReplicationInstanceRequest method. req, resp := client.ModifyReplicationInstanceRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyReplicationInstance
func (c *DatabaseMigrationService) ModifyReplicationInstanceWithContext(ctx aws.Context, input *ModifyReplicationInstanceInput, opts ...request.Option) (*ModifyReplicationInstanceOutput, error)
ModifyReplicationInstanceWithContext is the same as ModifyReplicationInstance with the addition of the ability to pass a context and additional request options.
See ModifyReplicationInstance for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) ModifyReplicationSubnetGroup(input *ModifyReplicationSubnetGroupInput) (*ModifyReplicationSubnetGroupOutput, error)
ModifyReplicationSubnetGroup API operation for AWS Database Migration Service.
Modifies the settings for the specified replication subnet group.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation ModifyReplicationSubnetGroup for usage and error information.
Returned Error Types:
* AccessDeniedFault AWS DMS was denied access to the endpoint. Check that the role is correctly configured. * ResourceNotFoundFault The resource could not be found. * ResourceQuotaExceededFault The quota for this resource quota has been exceeded. * SubnetAlreadyInUse The specified subnet is already in use. * ReplicationSubnetGroupDoesNotCoverEnoughAZs The replication subnet group does not cover enough Availability Zones (AZs). Edit the replication subnet group and add more AZs. * InvalidSubnet The subnet provided is invalid.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyReplicationSubnetGroup
func (c *DatabaseMigrationService) ModifyReplicationSubnetGroupRequest(input *ModifyReplicationSubnetGroupInput) (req *request.Request, output *ModifyReplicationSubnetGroupOutput)
ModifyReplicationSubnetGroupRequest generates a "aws/request.Request" representing the client's request for the ModifyReplicationSubnetGroup operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See ModifyReplicationSubnetGroup for more information on using the ModifyReplicationSubnetGroup API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the ModifyReplicationSubnetGroupRequest method. req, resp := client.ModifyReplicationSubnetGroupRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyReplicationSubnetGroup
func (c *DatabaseMigrationService) ModifyReplicationSubnetGroupWithContext(ctx aws.Context, input *ModifyReplicationSubnetGroupInput, opts ...request.Option) (*ModifyReplicationSubnetGroupOutput, error)
ModifyReplicationSubnetGroupWithContext is the same as ModifyReplicationSubnetGroup with the addition of the ability to pass a context and additional request options.
See ModifyReplicationSubnetGroup for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) ModifyReplicationTask(input *ModifyReplicationTaskInput) (*ModifyReplicationTaskOutput, error)
ModifyReplicationTask API operation for AWS Database Migration Service.
Modifies the specified replication task.
You can't modify the task endpoints. The task must be stopped before you can modify it.
For more information about AWS DMS tasks, see Working with Migration Tasks (https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Tasks.html) in the AWS Database Migration Service User Guide.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation ModifyReplicationTask for usage and error information.
Returned Error Types:
* InvalidResourceStateFault The resource is in a state that prevents it from being used for database migration. * ResourceNotFoundFault The resource could not be found. * ResourceAlreadyExistsFault The resource you are attempting to create already exists. * KMSKeyNotAccessibleFault AWS DMS cannot access the AWS KMS key.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyReplicationTask
func (c *DatabaseMigrationService) ModifyReplicationTaskRequest(input *ModifyReplicationTaskInput) (req *request.Request, output *ModifyReplicationTaskOutput)
ModifyReplicationTaskRequest generates a "aws/request.Request" representing the client's request for the ModifyReplicationTask operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See ModifyReplicationTask for more information on using the ModifyReplicationTask API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the ModifyReplicationTaskRequest method. req, resp := client.ModifyReplicationTaskRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyReplicationTask
func (c *DatabaseMigrationService) ModifyReplicationTaskWithContext(ctx aws.Context, input *ModifyReplicationTaskInput, opts ...request.Option) (*ModifyReplicationTaskOutput, error)
ModifyReplicationTaskWithContext is the same as ModifyReplicationTask with the addition of the ability to pass a context and additional request options.
See ModifyReplicationTask for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) MoveReplicationTask(input *MoveReplicationTaskInput) (*MoveReplicationTaskOutput, error)
MoveReplicationTask API operation for AWS Database Migration Service.
Moves a replication task from its current replication instance to a different target replication instance using the specified parameters. The target replication instance must be created with the same or later AWS DMS version as the current replication instance.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation MoveReplicationTask for usage and error information.
Returned Error Types:
* AccessDeniedFault AWS DMS was denied access to the endpoint. Check that the role is correctly configured. * InvalidResourceStateFault The resource is in a state that prevents it from being used for database migration. * ResourceNotFoundFault The resource could not be found.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/MoveReplicationTask
func (c *DatabaseMigrationService) MoveReplicationTaskRequest(input *MoveReplicationTaskInput) (req *request.Request, output *MoveReplicationTaskOutput)
MoveReplicationTaskRequest generates a "aws/request.Request" representing the client's request for the MoveReplicationTask operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See MoveReplicationTask for more information on using the MoveReplicationTask API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the MoveReplicationTaskRequest method. req, resp := client.MoveReplicationTaskRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/MoveReplicationTask
func (c *DatabaseMigrationService) MoveReplicationTaskWithContext(ctx aws.Context, input *MoveReplicationTaskInput, opts ...request.Option) (*MoveReplicationTaskOutput, error)
MoveReplicationTaskWithContext is the same as MoveReplicationTask with the addition of the ability to pass a context and additional request options.
See MoveReplicationTask for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) RebootReplicationInstance(input *RebootReplicationInstanceInput) (*RebootReplicationInstanceOutput, error)
RebootReplicationInstance API operation for AWS Database Migration Service.
Reboots a replication instance. Rebooting results in a momentary outage, until the replication instance becomes available again.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation RebootReplicationInstance for usage and error information.
Returned Error Types:
* ResourceNotFoundFault The resource could not be found. * InvalidResourceStateFault The resource is in a state that prevents it from being used for database migration.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/RebootReplicationInstance
func (c *DatabaseMigrationService) RebootReplicationInstanceRequest(input *RebootReplicationInstanceInput) (req *request.Request, output *RebootReplicationInstanceOutput)
RebootReplicationInstanceRequest generates a "aws/request.Request" representing the client's request for the RebootReplicationInstance operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See RebootReplicationInstance for more information on using the RebootReplicationInstance API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the RebootReplicationInstanceRequest method. req, resp := client.RebootReplicationInstanceRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/RebootReplicationInstance
func (c *DatabaseMigrationService) RebootReplicationInstanceWithContext(ctx aws.Context, input *RebootReplicationInstanceInput, opts ...request.Option) (*RebootReplicationInstanceOutput, error)
RebootReplicationInstanceWithContext is the same as RebootReplicationInstance with the addition of the ability to pass a context and additional request options.
See RebootReplicationInstance for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) RefreshSchemas(input *RefreshSchemasInput) (*RefreshSchemasOutput, error)
RefreshSchemas API operation for AWS Database Migration Service.
Populates the schema for the specified endpoint. This is an asynchronous operation and can take several minutes. You can check the status of this operation by calling the DescribeRefreshSchemasStatus operation.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation RefreshSchemas for usage and error information.
Returned Error Types:
* InvalidResourceStateFault The resource is in a state that prevents it from being used for database migration. * ResourceNotFoundFault The resource could not be found. * KMSKeyNotAccessibleFault AWS DMS cannot access the AWS KMS key. * ResourceQuotaExceededFault The quota for this resource quota has been exceeded.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/RefreshSchemas
func (c *DatabaseMigrationService) RefreshSchemasRequest(input *RefreshSchemasInput) (req *request.Request, output *RefreshSchemasOutput)
RefreshSchemasRequest generates a "aws/request.Request" representing the client's request for the RefreshSchemas operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See RefreshSchemas for more information on using the RefreshSchemas API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the RefreshSchemasRequest method. req, resp := client.RefreshSchemasRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/RefreshSchemas
func (c *DatabaseMigrationService) RefreshSchemasWithContext(ctx aws.Context, input *RefreshSchemasInput, opts ...request.Option) (*RefreshSchemasOutput, error)
RefreshSchemasWithContext is the same as RefreshSchemas with the addition of the ability to pass a context and additional request options.
See RefreshSchemas for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) ReloadTables(input *ReloadTablesInput) (*ReloadTablesOutput, error)
ReloadTables API operation for AWS Database Migration Service.
Reloads the target database table with the source data.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation ReloadTables for usage and error information.
Returned Error Types:
* ResourceNotFoundFault The resource could not be found. * InvalidResourceStateFault The resource is in a state that prevents it from being used for database migration.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ReloadTables
func (c *DatabaseMigrationService) ReloadTablesRequest(input *ReloadTablesInput) (req *request.Request, output *ReloadTablesOutput)
ReloadTablesRequest generates a "aws/request.Request" representing the client's request for the ReloadTables operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See ReloadTables for more information on using the ReloadTables API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the ReloadTablesRequest method. req, resp := client.ReloadTablesRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ReloadTables
func (c *DatabaseMigrationService) ReloadTablesWithContext(ctx aws.Context, input *ReloadTablesInput, opts ...request.Option) (*ReloadTablesOutput, error)
ReloadTablesWithContext is the same as ReloadTables with the addition of the ability to pass a context and additional request options.
See ReloadTables for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) RemoveTagsFromResource(input *RemoveTagsFromResourceInput) (*RemoveTagsFromResourceOutput, error)
RemoveTagsFromResource API operation for AWS Database Migration Service.
Removes metadata tags from an AWS DMS resource, including replication instance, endpoint, security group, and migration task. For more information, see Tag (https://docs.aws.amazon.com/dms/latest/APIReference/API_Tag.html) data type description.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation RemoveTagsFromResource for usage and error information.
Returned Error Types:
* ResourceNotFoundFault The resource could not be found.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/RemoveTagsFromResource
func (c *DatabaseMigrationService) RemoveTagsFromResourceRequest(input *RemoveTagsFromResourceInput) (req *request.Request, output *RemoveTagsFromResourceOutput)
RemoveTagsFromResourceRequest generates a "aws/request.Request" representing the client's request for the RemoveTagsFromResource operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See RemoveTagsFromResource for more information on using the RemoveTagsFromResource API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the RemoveTagsFromResourceRequest method. req, resp := client.RemoveTagsFromResourceRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/RemoveTagsFromResource
func (c *DatabaseMigrationService) RemoveTagsFromResourceWithContext(ctx aws.Context, input *RemoveTagsFromResourceInput, opts ...request.Option) (*RemoveTagsFromResourceOutput, error)
RemoveTagsFromResourceWithContext is the same as RemoveTagsFromResource with the addition of the ability to pass a context and additional request options.
See RemoveTagsFromResource for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) StartReplicationTask(input *StartReplicationTaskInput) (*StartReplicationTaskOutput, error)
StartReplicationTask API operation for AWS Database Migration Service.
Starts the replication task.
For more information about AWS DMS tasks, see Working with Migration Tasks (https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Tasks.html) in the AWS Database Migration Service User Guide.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation StartReplicationTask for usage and error information.
Returned Error Types:
* ResourceNotFoundFault The resource could not be found. * InvalidResourceStateFault The resource is in a state that prevents it from being used for database migration. * AccessDeniedFault AWS DMS was denied access to the endpoint. Check that the role is correctly configured.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartReplicationTask
func (c *DatabaseMigrationService) StartReplicationTaskAssessment(input *StartReplicationTaskAssessmentInput) (*StartReplicationTaskAssessmentOutput, error)
StartReplicationTaskAssessment API operation for AWS Database Migration Service.
Starts the replication task assessment for unsupported data types in the source database.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation StartReplicationTaskAssessment for usage and error information.
Returned Error Types:
* InvalidResourceStateFault The resource is in a state that prevents it from being used for database migration. * ResourceNotFoundFault The resource could not be found.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartReplicationTaskAssessment
func (c *DatabaseMigrationService) StartReplicationTaskAssessmentRequest(input *StartReplicationTaskAssessmentInput) (req *request.Request, output *StartReplicationTaskAssessmentOutput)
StartReplicationTaskAssessmentRequest generates a "aws/request.Request" representing the client's request for the StartReplicationTaskAssessment operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See StartReplicationTaskAssessment for more information on using the StartReplicationTaskAssessment API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the StartReplicationTaskAssessmentRequest method. req, resp := client.StartReplicationTaskAssessmentRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartReplicationTaskAssessment
func (c *DatabaseMigrationService) StartReplicationTaskAssessmentRun(input *StartReplicationTaskAssessmentRunInput) (*StartReplicationTaskAssessmentRunOutput, error)
StartReplicationTaskAssessmentRun API operation for AWS Database Migration Service.
Starts a new premigration assessment run for one or more individual assessments of a migration task.
The assessments that you can specify depend on the source and target database engine and the migration type defined for the given task. To run this operation, your migration task must already be created. After you run this operation, you can review the status of each individual assessment. You can also run the migration task manually after the assessment run and its individual assessments complete.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation StartReplicationTaskAssessmentRun for usage and error information.
Returned Error Types:
* AccessDeniedFault AWS DMS was denied access to the endpoint. Check that the role is correctly configured. * ResourceNotFoundFault The resource could not be found. * InvalidResourceStateFault The resource is in a state that prevents it from being used for database migration. * KMSAccessDeniedFault The ciphertext references a key that doesn't exist or that the DMS account doesn't have access to. * KMSDisabledFault The specified master key (CMK) isn't enabled. * KMSFault An AWS Key Management Service (AWS KMS) error is preventing access to AWS KMS. * KMSInvalidStateFault The state of the specified AWS KMS resource isn't valid for this request. * KMSNotFoundFault The specified AWS KMS entity or resource can't be found. * KMSKeyNotAccessibleFault AWS DMS cannot access the AWS KMS key. * S3AccessDeniedFault Insufficient privileges are preventing access to an Amazon S3 object. * S3ResourceNotFoundFault A specified Amazon S3 bucket, bucket folder, or other object can't be found. * ResourceAlreadyExistsFault The resource you are attempting to create already exists.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartReplicationTaskAssessmentRun
func (c *DatabaseMigrationService) StartReplicationTaskAssessmentRunRequest(input *StartReplicationTaskAssessmentRunInput) (req *request.Request, output *StartReplicationTaskAssessmentRunOutput)
StartReplicationTaskAssessmentRunRequest generates a "aws/request.Request" representing the client's request for the StartReplicationTaskAssessmentRun operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See StartReplicationTaskAssessmentRun for more information on using the StartReplicationTaskAssessmentRun API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the StartReplicationTaskAssessmentRunRequest method. req, resp := client.StartReplicationTaskAssessmentRunRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartReplicationTaskAssessmentRun
func (c *DatabaseMigrationService) StartReplicationTaskAssessmentRunWithContext(ctx aws.Context, input *StartReplicationTaskAssessmentRunInput, opts ...request.Option) (*StartReplicationTaskAssessmentRunOutput, error)
StartReplicationTaskAssessmentRunWithContext is the same as StartReplicationTaskAssessmentRun with the addition of the ability to pass a context and additional request options.
See StartReplicationTaskAssessmentRun for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) StartReplicationTaskAssessmentWithContext(ctx aws.Context, input *StartReplicationTaskAssessmentInput, opts ...request.Option) (*StartReplicationTaskAssessmentOutput, error)
StartReplicationTaskAssessmentWithContext is the same as StartReplicationTaskAssessment with the addition of the ability to pass a context and additional request options.
See StartReplicationTaskAssessment for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) StartReplicationTaskRequest(input *StartReplicationTaskInput) (req *request.Request, output *StartReplicationTaskOutput)
StartReplicationTaskRequest generates a "aws/request.Request" representing the client's request for the StartReplicationTask operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See StartReplicationTask for more information on using the StartReplicationTask API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the StartReplicationTaskRequest method. req, resp := client.StartReplicationTaskRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StartReplicationTask
func (c *DatabaseMigrationService) StartReplicationTaskWithContext(ctx aws.Context, input *StartReplicationTaskInput, opts ...request.Option) (*StartReplicationTaskOutput, error)
StartReplicationTaskWithContext is the same as StartReplicationTask with the addition of the ability to pass a context and additional request options.
See StartReplicationTask for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) StopReplicationTask(input *StopReplicationTaskInput) (*StopReplicationTaskOutput, error)
StopReplicationTask API operation for AWS Database Migration Service.
Stops the replication task.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation StopReplicationTask for usage and error information.
Returned Error Types:
* ResourceNotFoundFault The resource could not be found. * InvalidResourceStateFault The resource is in a state that prevents it from being used for database migration.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StopReplicationTask
func (c *DatabaseMigrationService) StopReplicationTaskRequest(input *StopReplicationTaskInput) (req *request.Request, output *StopReplicationTaskOutput)
StopReplicationTaskRequest generates a "aws/request.Request" representing the client's request for the StopReplicationTask operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See StopReplicationTask for more information on using the StopReplicationTask API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the StopReplicationTaskRequest method. req, resp := client.StopReplicationTaskRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/StopReplicationTask
func (c *DatabaseMigrationService) StopReplicationTaskWithContext(ctx aws.Context, input *StopReplicationTaskInput, opts ...request.Option) (*StopReplicationTaskOutput, error)
StopReplicationTaskWithContext is the same as StopReplicationTask with the addition of the ability to pass a context and additional request options.
See StopReplicationTask for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) TestConnection(input *TestConnectionInput) (*TestConnectionOutput, error)
TestConnection API operation for AWS Database Migration Service.
Tests the connection between the replication instance and the endpoint.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AWS Database Migration Service's API operation TestConnection for usage and error information.
Returned Error Types:
* ResourceNotFoundFault The resource could not be found. * InvalidResourceStateFault The resource is in a state that prevents it from being used for database migration. * KMSKeyNotAccessibleFault AWS DMS cannot access the AWS KMS key. * ResourceQuotaExceededFault The quota for this resource quota has been exceeded.
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/TestConnection
func (c *DatabaseMigrationService) TestConnectionRequest(input *TestConnectionInput) (req *request.Request, output *TestConnectionOutput)
TestConnectionRequest generates a "aws/request.Request" representing the client's request for the TestConnection operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See TestConnection for more information on using the TestConnection API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the TestConnectionRequest method. req, resp := client.TestConnectionRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/TestConnection
func (c *DatabaseMigrationService) TestConnectionWithContext(ctx aws.Context, input *TestConnectionInput, opts ...request.Option) (*TestConnectionOutput, error)
TestConnectionWithContext is the same as TestConnection with the addition of the ability to pass a context and additional request options.
See TestConnection for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) WaitUntilEndpointDeleted(input *DescribeEndpointsInput) error
WaitUntilEndpointDeleted uses the AWS Database Migration Service API operation DescribeEndpoints to wait for a condition to be met before returning. If the condition is not met within the max attempt window, an error will be returned.
func (c *DatabaseMigrationService) WaitUntilEndpointDeletedWithContext(ctx aws.Context, input *DescribeEndpointsInput, opts ...request.WaiterOption) error
WaitUntilEndpointDeletedWithContext is an extended version of WaitUntilEndpointDeleted. With the support for passing in a context and options to configure the Waiter and the underlying request options.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) WaitUntilReplicationInstanceAvailable(input *DescribeReplicationInstancesInput) error
WaitUntilReplicationInstanceAvailable uses the AWS Database Migration Service API operation DescribeReplicationInstances to wait for a condition to be met before returning. If the condition is not met within the max attempt window, an error will be returned.
func (c *DatabaseMigrationService) WaitUntilReplicationInstanceAvailableWithContext(ctx aws.Context, input *DescribeReplicationInstancesInput, opts ...request.WaiterOption) error
WaitUntilReplicationInstanceAvailableWithContext is an extended version of WaitUntilReplicationInstanceAvailable. With the support for passing in a context and options to configure the Waiter and the underlying request options.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) WaitUntilReplicationInstanceDeleted(input *DescribeReplicationInstancesInput) error
WaitUntilReplicationInstanceDeleted uses the AWS Database Migration Service API operation DescribeReplicationInstances to wait for a condition to be met before returning. If the condition is not met within the max attempt window, an error will be returned.
func (c *DatabaseMigrationService) WaitUntilReplicationInstanceDeletedWithContext(ctx aws.Context, input *DescribeReplicationInstancesInput, opts ...request.WaiterOption) error
WaitUntilReplicationInstanceDeletedWithContext is an extended version of WaitUntilReplicationInstanceDeleted. With the support for passing in a context and options to configure the Waiter and the underlying request options.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) WaitUntilReplicationTaskDeleted(input *DescribeReplicationTasksInput) error
WaitUntilReplicationTaskDeleted uses the AWS Database Migration Service API operation DescribeReplicationTasks to wait for a condition to be met before returning. If the condition is not met within the max attempt window, an error will be returned.
func (c *DatabaseMigrationService) WaitUntilReplicationTaskDeletedWithContext(ctx aws.Context, input *DescribeReplicationTasksInput, opts ...request.WaiterOption) error
WaitUntilReplicationTaskDeletedWithContext is an extended version of WaitUntilReplicationTaskDeleted. With the support for passing in a context and options to configure the Waiter and the underlying request options.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) WaitUntilReplicationTaskReady(input *DescribeReplicationTasksInput) error
WaitUntilReplicationTaskReady uses the AWS Database Migration Service API operation DescribeReplicationTasks to wait for a condition to be met before returning. If the condition is not met within the max attempt window, an error will be returned.
func (c *DatabaseMigrationService) WaitUntilReplicationTaskReadyWithContext(ctx aws.Context, input *DescribeReplicationTasksInput, opts ...request.WaiterOption) error
WaitUntilReplicationTaskReadyWithContext is an extended version of WaitUntilReplicationTaskReady. With the support for passing in a context and options to configure the Waiter and the underlying request options.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) WaitUntilReplicationTaskRunning(input *DescribeReplicationTasksInput) error
WaitUntilReplicationTaskRunning uses the AWS Database Migration Service API operation DescribeReplicationTasks to wait for a condition to be met before returning. If the condition is not met within the max attempt window, an error will be returned.
func (c *DatabaseMigrationService) WaitUntilReplicationTaskRunningWithContext(ctx aws.Context, input *DescribeReplicationTasksInput, opts ...request.WaiterOption) error
WaitUntilReplicationTaskRunningWithContext is an extended version of WaitUntilReplicationTaskRunning. With the support for passing in a context and options to configure the Waiter and the underlying request options.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) WaitUntilReplicationTaskStopped(input *DescribeReplicationTasksInput) error
WaitUntilReplicationTaskStopped uses the AWS Database Migration Service API operation DescribeReplicationTasks to wait for a condition to be met before returning. If the condition is not met within the max attempt window, an error will be returned.
func (c *DatabaseMigrationService) WaitUntilReplicationTaskStoppedWithContext(ctx aws.Context, input *DescribeReplicationTasksInput, opts ...request.WaiterOption) error
WaitUntilReplicationTaskStoppedWithContext is an extended version of WaitUntilReplicationTaskStopped. With the support for passing in a context and options to configure the Waiter and the underlying request options.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (c *DatabaseMigrationService) WaitUntilTestConnectionSucceeds(input *DescribeConnectionsInput) error
WaitUntilTestConnectionSucceeds uses the AWS Database Migration Service API operation DescribeConnections to wait for a condition to be met before returning. If the condition is not met within the max attempt window, an error will be returned.
func (c *DatabaseMigrationService) WaitUntilTestConnectionSucceedsWithContext(ctx aws.Context, input *DescribeConnectionsInput, opts ...request.WaiterOption) error
WaitUntilTestConnectionSucceedsWithContext is an extended version of WaitUntilTestConnectionSucceeds. With the support for passing in a context and options to configure the Waiter and the underlying request options.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
type DeleteCertificateInput struct { // The Amazon Resource Name (ARN) of the deleted certificate. // // CertificateArn is a required field CertificateArn *string `type:"string" required:"true"` // contains filtered or unexported fields }
func (s DeleteCertificateInput) GoString() string
GoString returns the string representation
func (s *DeleteCertificateInput) SetCertificateArn(v string) *DeleteCertificateInput
SetCertificateArn sets the CertificateArn field's value.
func (s DeleteCertificateInput) String() string
String returns the string representation
func (s *DeleteCertificateInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DeleteCertificateOutput struct { // The Secure Sockets Layer (SSL) certificate. Certificate *Certificate `type:"structure"` // contains filtered or unexported fields }
func (s DeleteCertificateOutput) GoString() string
GoString returns the string representation
func (s *DeleteCertificateOutput) SetCertificate(v *Certificate) *DeleteCertificateOutput
SetCertificate sets the Certificate field's value.
func (s DeleteCertificateOutput) String() string
String returns the string representation
type DeleteConnectionInput struct { // The Amazon Resource Name (ARN) string that uniquely identifies the endpoint. // // EndpointArn is a required field EndpointArn *string `type:"string" required:"true"` // The Amazon Resource Name (ARN) of the replication instance. // // ReplicationInstanceArn is a required field ReplicationInstanceArn *string `type:"string" required:"true"` // contains filtered or unexported fields }
func (s DeleteConnectionInput) GoString() string
GoString returns the string representation
func (s *DeleteConnectionInput) SetEndpointArn(v string) *DeleteConnectionInput
SetEndpointArn sets the EndpointArn field's value.
func (s *DeleteConnectionInput) SetReplicationInstanceArn(v string) *DeleteConnectionInput
SetReplicationInstanceArn sets the ReplicationInstanceArn field's value.
func (s DeleteConnectionInput) String() string
String returns the string representation
func (s *DeleteConnectionInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DeleteConnectionOutput struct { // The connection that is being deleted. Connection *Connection `type:"structure"` // contains filtered or unexported fields }
func (s DeleteConnectionOutput) GoString() string
GoString returns the string representation
func (s *DeleteConnectionOutput) SetConnection(v *Connection) *DeleteConnectionOutput
SetConnection sets the Connection field's value.
func (s DeleteConnectionOutput) String() string
String returns the string representation
type DeleteEndpointInput struct { // The Amazon Resource Name (ARN) string that uniquely identifies the endpoint. // // EndpointArn is a required field EndpointArn *string `type:"string" required:"true"` // contains filtered or unexported fields }
func (s DeleteEndpointInput) GoString() string
GoString returns the string representation
func (s *DeleteEndpointInput) SetEndpointArn(v string) *DeleteEndpointInput
SetEndpointArn sets the EndpointArn field's value.
func (s DeleteEndpointInput) String() string
String returns the string representation
func (s *DeleteEndpointInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DeleteEndpointOutput struct { // The endpoint that was deleted. Endpoint *Endpoint `type:"structure"` // contains filtered or unexported fields }
func (s DeleteEndpointOutput) GoString() string
GoString returns the string representation
func (s *DeleteEndpointOutput) SetEndpoint(v *Endpoint) *DeleteEndpointOutput
SetEndpoint sets the Endpoint field's value.
func (s DeleteEndpointOutput) String() string
String returns the string representation
type DeleteEventSubscriptionInput struct { // The name of the DMS event notification subscription to be deleted. // // SubscriptionName is a required field SubscriptionName *string `type:"string" required:"true"` // contains filtered or unexported fields }
func (s DeleteEventSubscriptionInput) GoString() string
GoString returns the string representation
func (s *DeleteEventSubscriptionInput) SetSubscriptionName(v string) *DeleteEventSubscriptionInput
SetSubscriptionName sets the SubscriptionName field's value.
func (s DeleteEventSubscriptionInput) String() string
String returns the string representation
func (s *DeleteEventSubscriptionInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DeleteEventSubscriptionOutput struct { // The event subscription that was deleted. EventSubscription *EventSubscription `type:"structure"` // contains filtered or unexported fields }
func (s DeleteEventSubscriptionOutput) GoString() string
GoString returns the string representation
func (s *DeleteEventSubscriptionOutput) SetEventSubscription(v *EventSubscription) *DeleteEventSubscriptionOutput
SetEventSubscription sets the EventSubscription field's value.
func (s DeleteEventSubscriptionOutput) String() string
String returns the string representation
type DeleteReplicationInstanceInput struct { // The Amazon Resource Name (ARN) of the replication instance to be deleted. // // ReplicationInstanceArn is a required field ReplicationInstanceArn *string `type:"string" required:"true"` // contains filtered or unexported fields }
func (s DeleteReplicationInstanceInput) GoString() string
GoString returns the string representation
func (s *DeleteReplicationInstanceInput) SetReplicationInstanceArn(v string) *DeleteReplicationInstanceInput
SetReplicationInstanceArn sets the ReplicationInstanceArn field's value.
func (s DeleteReplicationInstanceInput) String() string
String returns the string representation
func (s *DeleteReplicationInstanceInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DeleteReplicationInstanceOutput struct { // The replication instance that was deleted. ReplicationInstance *ReplicationInstance `type:"structure"` // contains filtered or unexported fields }
func (s DeleteReplicationInstanceOutput) GoString() string
GoString returns the string representation
func (s *DeleteReplicationInstanceOutput) SetReplicationInstance(v *ReplicationInstance) *DeleteReplicationInstanceOutput
SetReplicationInstance sets the ReplicationInstance field's value.
func (s DeleteReplicationInstanceOutput) String() string
String returns the string representation
type DeleteReplicationSubnetGroupInput struct { // The subnet group name of the replication instance. // // ReplicationSubnetGroupIdentifier is a required field ReplicationSubnetGroupIdentifier *string `type:"string" required:"true"` // contains filtered or unexported fields }
func (s DeleteReplicationSubnetGroupInput) GoString() string
GoString returns the string representation
func (s *DeleteReplicationSubnetGroupInput) SetReplicationSubnetGroupIdentifier(v string) *DeleteReplicationSubnetGroupInput
SetReplicationSubnetGroupIdentifier sets the ReplicationSubnetGroupIdentifier field's value.
func (s DeleteReplicationSubnetGroupInput) String() string
String returns the string representation
func (s *DeleteReplicationSubnetGroupInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DeleteReplicationSubnetGroupOutput struct {
// contains filtered or unexported fields
}
func (s DeleteReplicationSubnetGroupOutput) GoString() string
GoString returns the string representation
func (s DeleteReplicationSubnetGroupOutput) String() string
String returns the string representation
type DeleteReplicationTaskAssessmentRunInput struct { // Amazon Resource Name (ARN) of the premigration assessment run to be deleted. // // ReplicationTaskAssessmentRunArn is a required field ReplicationTaskAssessmentRunArn *string `type:"string" required:"true"` // contains filtered or unexported fields }
func (s DeleteReplicationTaskAssessmentRunInput) GoString() string
GoString returns the string representation
func (s *DeleteReplicationTaskAssessmentRunInput) SetReplicationTaskAssessmentRunArn(v string) *DeleteReplicationTaskAssessmentRunInput
SetReplicationTaskAssessmentRunArn sets the ReplicationTaskAssessmentRunArn field's value.
func (s DeleteReplicationTaskAssessmentRunInput) String() string
String returns the string representation
func (s *DeleteReplicationTaskAssessmentRunInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DeleteReplicationTaskAssessmentRunOutput struct { // The ReplicationTaskAssessmentRun object for the deleted assessment run. ReplicationTaskAssessmentRun *ReplicationTaskAssessmentRun `type:"structure"` // contains filtered or unexported fields }
func (s DeleteReplicationTaskAssessmentRunOutput) GoString() string
GoString returns the string representation
func (s *DeleteReplicationTaskAssessmentRunOutput) SetReplicationTaskAssessmentRun(v *ReplicationTaskAssessmentRun) *DeleteReplicationTaskAssessmentRunOutput
SetReplicationTaskAssessmentRun sets the ReplicationTaskAssessmentRun field's value.
func (s DeleteReplicationTaskAssessmentRunOutput) String() string
String returns the string representation
type DeleteReplicationTaskInput struct { // The Amazon Resource Name (ARN) of the replication task to be deleted. // // ReplicationTaskArn is a required field ReplicationTaskArn *string `type:"string" required:"true"` // contains filtered or unexported fields }
func (s DeleteReplicationTaskInput) GoString() string
GoString returns the string representation
func (s *DeleteReplicationTaskInput) SetReplicationTaskArn(v string) *DeleteReplicationTaskInput
SetReplicationTaskArn sets the ReplicationTaskArn field's value.
func (s DeleteReplicationTaskInput) String() string
String returns the string representation
func (s *DeleteReplicationTaskInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DeleteReplicationTaskOutput struct { // The deleted replication task. ReplicationTask *ReplicationTask `type:"structure"` // contains filtered or unexported fields }
func (s DeleteReplicationTaskOutput) GoString() string
GoString returns the string representation
func (s *DeleteReplicationTaskOutput) SetReplicationTask(v *ReplicationTask) *DeleteReplicationTaskOutput
SetReplicationTask sets the ReplicationTask field's value.
func (s DeleteReplicationTaskOutput) String() string
String returns the string representation
type DescribeAccountAttributesInput struct {
// contains filtered or unexported fields
}
func (s DescribeAccountAttributesInput) GoString() string
GoString returns the string representation
func (s DescribeAccountAttributesInput) String() string
String returns the string representation
type DescribeAccountAttributesOutput struct { // Account quota information. AccountQuotas []*AccountQuota `type:"list"` // A unique AWS DMS identifier for an account in a particular AWS Region. The // value of this identifier has the following format: c99999999999. DMS uses // this identifier to name artifacts. For example, DMS uses this identifier // to name the default Amazon S3 bucket for storing task assessment reports // in a given AWS Region. The format of this S3 bucket name is the following: // dms-AccountNumber-UniqueAccountIdentifier. Here is an example name for this // default S3 bucket: dms-111122223333-c44445555666. // // AWS DMS supports the UniqueAccountIdentifier parameter in versions 3.1.4 // and later. UniqueAccountIdentifier *string `type:"string"` // contains filtered or unexported fields }
func (s DescribeAccountAttributesOutput) GoString() string
GoString returns the string representation
func (s *DescribeAccountAttributesOutput) SetAccountQuotas(v []*AccountQuota) *DescribeAccountAttributesOutput
SetAccountQuotas sets the AccountQuotas field's value.
func (s *DescribeAccountAttributesOutput) SetUniqueAccountIdentifier(v string) *DescribeAccountAttributesOutput
SetUniqueAccountIdentifier sets the UniqueAccountIdentifier field's value.
func (s DescribeAccountAttributesOutput) String() string
String returns the string representation
type DescribeApplicableIndividualAssessmentsInput struct { // Optional pagination token provided by a previous request. If this parameter // is specified, the response includes only records beyond the marker, up to // the value specified by MaxRecords. Marker *string `type:"string"` // Maximum number of records to include in the response. If more records exist // than the specified MaxRecords value, a pagination token called a marker is // included in the response so that the remaining results can be retrieved. MaxRecords *int64 `type:"integer"` // Name of the migration type that each provided individual assessment must // support. MigrationType *string `type:"string" enum:"MigrationTypeValue"` // ARN of a replication instance on which you want to base the default list // of individual assessments. ReplicationInstanceArn *string `type:"string"` // Amazon Resource Name (ARN) of a migration task on which you want to base // the default list of individual assessments. ReplicationTaskArn *string `type:"string"` // Name of a database engine that the specified replication instance supports // as a source. SourceEngineName *string `type:"string"` // Name of a database engine that the specified replication instance supports // as a target. TargetEngineName *string `type:"string"` // contains filtered or unexported fields }
func (s DescribeApplicableIndividualAssessmentsInput) GoString() string
GoString returns the string representation
func (s *DescribeApplicableIndividualAssessmentsInput) SetMarker(v string) *DescribeApplicableIndividualAssessmentsInput
SetMarker sets the Marker field's value.
func (s *DescribeApplicableIndividualAssessmentsInput) SetMaxRecords(v int64) *DescribeApplicableIndividualAssessmentsInput
SetMaxRecords sets the MaxRecords field's value.
func (s *DescribeApplicableIndividualAssessmentsInput) SetMigrationType(v string) *DescribeApplicableIndividualAssessmentsInput
SetMigrationType sets the MigrationType field's value.
func (s *DescribeApplicableIndividualAssessmentsInput) SetReplicationInstanceArn(v string) *DescribeApplicableIndividualAssessmentsInput
SetReplicationInstanceArn sets the ReplicationInstanceArn field's value.
func (s *DescribeApplicableIndividualAssessmentsInput) SetReplicationTaskArn(v string) *DescribeApplicableIndividualAssessmentsInput
SetReplicationTaskArn sets the ReplicationTaskArn field's value.
func (s *DescribeApplicableIndividualAssessmentsInput) SetSourceEngineName(v string) *DescribeApplicableIndividualAssessmentsInput
SetSourceEngineName sets the SourceEngineName field's value.
func (s *DescribeApplicableIndividualAssessmentsInput) SetTargetEngineName(v string) *DescribeApplicableIndividualAssessmentsInput
SetTargetEngineName sets the TargetEngineName field's value.
func (s DescribeApplicableIndividualAssessmentsInput) String() string
String returns the string representation
type DescribeApplicableIndividualAssessmentsOutput struct { // List of names for the individual assessments supported by the premigration // assessment run that you start based on the specified request parameters. // For more information on the available individual assessments, including compatibility // with different migration task configurations, see Working with premigration // assessment runs (https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Tasks.AssessmentReport.html) // in the AWS Database Migration Service User Guide. IndividualAssessmentNames []*string `type:"list"` // Pagination token returned for you to pass to a subsequent request. If you // pass this token as the Marker value in a subsequent request, the response // includes only records beyond the marker, up to the value specified in the // request by MaxRecords. Marker *string `type:"string"` // contains filtered or unexported fields }
func (s DescribeApplicableIndividualAssessmentsOutput) GoString() string
GoString returns the string representation
func (s *DescribeApplicableIndividualAssessmentsOutput) SetIndividualAssessmentNames(v []*string) *DescribeApplicableIndividualAssessmentsOutput
SetIndividualAssessmentNames sets the IndividualAssessmentNames field's value.
func (s *DescribeApplicableIndividualAssessmentsOutput) SetMarker(v string) *DescribeApplicableIndividualAssessmentsOutput
SetMarker sets the Marker field's value.
func (s DescribeApplicableIndividualAssessmentsOutput) String() string
String returns the string representation
type DescribeCertificatesInput struct { // Filters applied to the certificates described in the form of key-value pairs. Filters []*Filter `type:"list"` // An optional pagination token provided by a previous request. If this parameter // is specified, the response includes only records beyond the marker, up to // the value specified by MaxRecords. Marker *string `type:"string"` // The maximum number of records to include in the response. If more records // exist than the specified MaxRecords value, a pagination token called a marker // is included in the response so that the remaining results can be retrieved. // // Default: 10 MaxRecords *int64 `type:"integer"` // contains filtered or unexported fields }
func (s DescribeCertificatesInput) GoString() string
GoString returns the string representation
func (s *DescribeCertificatesInput) SetFilters(v []*Filter) *DescribeCertificatesInput
SetFilters sets the Filters field's value.
func (s *DescribeCertificatesInput) SetMarker(v string) *DescribeCertificatesInput
SetMarker sets the Marker field's value.
func (s *DescribeCertificatesInput) SetMaxRecords(v int64) *DescribeCertificatesInput
SetMaxRecords sets the MaxRecords field's value.
func (s DescribeCertificatesInput) String() string
String returns the string representation
func (s *DescribeCertificatesInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DescribeCertificatesOutput struct { // The Secure Sockets Layer (SSL) certificates associated with the replication // instance. Certificates []*Certificate `type:"list"` // The pagination token. Marker *string `type:"string"` // contains filtered or unexported fields }
func (s DescribeCertificatesOutput) GoString() string
GoString returns the string representation
func (s *DescribeCertificatesOutput) SetCertificates(v []*Certificate) *DescribeCertificatesOutput
SetCertificates sets the Certificates field's value.
func (s *DescribeCertificatesOutput) SetMarker(v string) *DescribeCertificatesOutput
SetMarker sets the Marker field's value.
func (s DescribeCertificatesOutput) String() string
String returns the string representation
type DescribeConnectionsInput struct { // The filters applied to the connection. // // Valid filter names: endpoint-arn | replication-instance-arn Filters []*Filter `type:"list"` // An optional pagination token provided by a previous request. If this parameter // is specified, the response includes only records beyond the marker, up to // the value specified by MaxRecords. Marker *string `type:"string"` // The maximum number of records to include in the response. If more records // exist than the specified MaxRecords value, a pagination token called a marker // is included in the response so that the remaining results can be retrieved. // // Default: 100 // // Constraints: Minimum 20, maximum 100. MaxRecords *int64 `type:"integer"` // contains filtered or unexported fields }
func (s DescribeConnectionsInput) GoString() string
GoString returns the string representation
func (s *DescribeConnectionsInput) SetFilters(v []*Filter) *DescribeConnectionsInput
SetFilters sets the Filters field's value.
func (s *DescribeConnectionsInput) SetMarker(v string) *DescribeConnectionsInput
SetMarker sets the Marker field's value.
func (s *DescribeConnectionsInput) SetMaxRecords(v int64) *DescribeConnectionsInput
SetMaxRecords sets the MaxRecords field's value.
func (s DescribeConnectionsInput) String() string
String returns the string representation
func (s *DescribeConnectionsInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DescribeConnectionsOutput struct { // A description of the connections. Connections []*Connection `type:"list"` // An optional pagination token provided by a previous request. If this parameter // is specified, the response includes only records beyond the marker, up to // the value specified by MaxRecords. Marker *string `type:"string"` // contains filtered or unexported fields }
func (s DescribeConnectionsOutput) GoString() string
GoString returns the string representation
func (s *DescribeConnectionsOutput) SetConnections(v []*Connection) *DescribeConnectionsOutput
SetConnections sets the Connections field's value.
func (s *DescribeConnectionsOutput) SetMarker(v string) *DescribeConnectionsOutput
SetMarker sets the Marker field's value.
func (s DescribeConnectionsOutput) String() string
String returns the string representation
type DescribeEndpointTypesInput struct { // Filters applied to the endpoint types. // // Valid filter names: engine-name | endpoint-type Filters []*Filter `type:"list"` // An optional pagination token provided by a previous request. If this parameter // is specified, the response includes only records beyond the marker, up to // the value specified by MaxRecords. Marker *string `type:"string"` // The maximum number of records to include in the response. If more records // exist than the specified MaxRecords value, a pagination token called a marker // is included in the response so that the remaining results can be retrieved. // // Default: 100 // // Constraints: Minimum 20, maximum 100. MaxRecords *int64 `type:"integer"` // contains filtered or unexported fields }
func (s DescribeEndpointTypesInput) GoString() string
GoString returns the string representation
func (s *DescribeEndpointTypesInput) SetFilters(v []*Filter) *DescribeEndpointTypesInput
SetFilters sets the Filters field's value.
func (s *DescribeEndpointTypesInput) SetMarker(v string) *DescribeEndpointTypesInput
SetMarker sets the Marker field's value.
func (s *DescribeEndpointTypesInput) SetMaxRecords(v int64) *DescribeEndpointTypesInput
SetMaxRecords sets the MaxRecords field's value.
func (s DescribeEndpointTypesInput) String() string
String returns the string representation
func (s *DescribeEndpointTypesInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DescribeEndpointTypesOutput struct { // An optional pagination token provided by a previous request. If this parameter // is specified, the response includes only records beyond the marker, up to // the value specified by MaxRecords. Marker *string `type:"string"` // The types of endpoints that are supported. SupportedEndpointTypes []*SupportedEndpointType `type:"list"` // contains filtered or unexported fields }
func (s DescribeEndpointTypesOutput) GoString() string
GoString returns the string representation
func (s *DescribeEndpointTypesOutput) SetMarker(v string) *DescribeEndpointTypesOutput
SetMarker sets the Marker field's value.
func (s *DescribeEndpointTypesOutput) SetSupportedEndpointTypes(v []*SupportedEndpointType) *DescribeEndpointTypesOutput
SetSupportedEndpointTypes sets the SupportedEndpointTypes field's value.
func (s DescribeEndpointTypesOutput) String() string
String returns the string representation
type DescribeEndpointsInput struct { // Filters applied to the endpoints. // // Valid filter names: endpoint-arn | endpoint-type | endpoint-id | engine-name Filters []*Filter `type:"list"` // An optional pagination token provided by a previous request. If this parameter // is specified, the response includes only records beyond the marker, up to // the value specified by MaxRecords. Marker *string `type:"string"` // The maximum number of records to include in the response. If more records // exist than the specified MaxRecords value, a pagination token called a marker // is included in the response so that the remaining results can be retrieved. // // Default: 100 // // Constraints: Minimum 20, maximum 100. MaxRecords *int64 `type:"integer"` // contains filtered or unexported fields }
func (s DescribeEndpointsInput) GoString() string
GoString returns the string representation
func (s *DescribeEndpointsInput) SetFilters(v []*Filter) *DescribeEndpointsInput
SetFilters sets the Filters field's value.
func (s *DescribeEndpointsInput) SetMarker(v string) *DescribeEndpointsInput
SetMarker sets the Marker field's value.
func (s *DescribeEndpointsInput) SetMaxRecords(v int64) *DescribeEndpointsInput
SetMaxRecords sets the MaxRecords field's value.
func (s DescribeEndpointsInput) String() string
String returns the string representation
func (s *DescribeEndpointsInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DescribeEndpointsOutput struct { // Endpoint description. Endpoints []*Endpoint `type:"list"` // An optional pagination token provided by a previous request. If this parameter // is specified, the response includes only records beyond the marker, up to // the value specified by MaxRecords. Marker *string `type:"string"` // contains filtered or unexported fields }
func (s DescribeEndpointsOutput) GoString() string
GoString returns the string representation
func (s *DescribeEndpointsOutput) SetEndpoints(v []*Endpoint) *DescribeEndpointsOutput
SetEndpoints sets the Endpoints field's value.
func (s *DescribeEndpointsOutput) SetMarker(v string) *DescribeEndpointsOutput
SetMarker sets the Marker field's value.
func (s DescribeEndpointsOutput) String() string
String returns the string representation
type DescribeEventCategoriesInput struct { // Filters applied to the event categories. Filters []*Filter `type:"list"` // The type of AWS DMS resource that generates events. // // Valid values: replication-instance | replication-task SourceType *string `type:"string"` // contains filtered or unexported fields }
func (s DescribeEventCategoriesInput) GoString() string
GoString returns the string representation
func (s *DescribeEventCategoriesInput) SetFilters(v []*Filter) *DescribeEventCategoriesInput
SetFilters sets the Filters field's value.
func (s *DescribeEventCategoriesInput) SetSourceType(v string) *DescribeEventCategoriesInput
SetSourceType sets the SourceType field's value.
func (s DescribeEventCategoriesInput) String() string
String returns the string representation
func (s *DescribeEventCategoriesInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DescribeEventCategoriesOutput struct { // A list of event categories. EventCategoryGroupList []*EventCategoryGroup `type:"list"` // contains filtered or unexported fields }
func (s DescribeEventCategoriesOutput) GoString() string
GoString returns the string representation
func (s *DescribeEventCategoriesOutput) SetEventCategoryGroupList(v []*EventCategoryGroup) *DescribeEventCategoriesOutput
SetEventCategoryGroupList sets the EventCategoryGroupList field's value.
func (s DescribeEventCategoriesOutput) String() string
String returns the string representation
type DescribeEventSubscriptionsInput struct { // Filters applied to event subscriptions. Filters []*Filter `type:"list"` // An optional pagination token provided by a previous request. If this parameter // is specified, the response includes only records beyond the marker, up to // the value specified by MaxRecords. Marker *string `type:"string"` // The maximum number of records to include in the response. If more records // exist than the specified MaxRecords value, a pagination token called a marker // is included in the response so that the remaining results can be retrieved. // // Default: 100 // // Constraints: Minimum 20, maximum 100. MaxRecords *int64 `type:"integer"` // The name of the AWS DMS event subscription to be described. SubscriptionName *string `type:"string"` // contains filtered or unexported fields }
func (s DescribeEventSubscriptionsInput) GoString() string
GoString returns the string representation
func (s *DescribeEventSubscriptionsInput) SetFilters(v []*Filter) *DescribeEventSubscriptionsInput
SetFilters sets the Filters field's value.
func (s *DescribeEventSubscriptionsInput) SetMarker(v string) *DescribeEventSubscriptionsInput
SetMarker sets the Marker field's value.
func (s *DescribeEventSubscriptionsInput) SetMaxRecords(v int64) *DescribeEventSubscriptionsInput
SetMaxRecords sets the MaxRecords field's value.
func (s *DescribeEventSubscriptionsInput) SetSubscriptionName(v string) *DescribeEventSubscriptionsInput
SetSubscriptionName sets the SubscriptionName field's value.
func (s DescribeEventSubscriptionsInput) String() string
String returns the string representation
func (s *DescribeEventSubscriptionsInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DescribeEventSubscriptionsOutput struct { // A list of event subscriptions. EventSubscriptionsList []*EventSubscription `type:"list"` // An optional pagination token provided by a previous request. If this parameter // is specified, the response includes only records beyond the marker, up to // the value specified by MaxRecords. Marker *string `type:"string"` // contains filtered or unexported fields }
func (s DescribeEventSubscriptionsOutput) GoString() string
GoString returns the string representation
func (s *DescribeEventSubscriptionsOutput) SetEventSubscriptionsList(v []*EventSubscription) *DescribeEventSubscriptionsOutput
SetEventSubscriptionsList sets the EventSubscriptionsList field's value.
func (s *DescribeEventSubscriptionsOutput) SetMarker(v string) *DescribeEventSubscriptionsOutput
SetMarker sets the Marker field's value.
func (s DescribeEventSubscriptionsOutput) String() string
String returns the string representation
type DescribeEventsInput struct { // The duration of the events to be listed. Duration *int64 `type:"integer"` // The end time for the events to be listed. EndTime *time.Time `type:"timestamp"` // A list of event categories for the source type that you've chosen. EventCategories []*string `type:"list"` // Filters applied to events. Filters []*Filter `type:"list"` // An optional pagination token provided by a previous request. If this parameter // is specified, the response includes only records beyond the marker, up to // the value specified by MaxRecords. Marker *string `type:"string"` // The maximum number of records to include in the response. If more records // exist than the specified MaxRecords value, a pagination token called a marker // is included in the response so that the remaining results can be retrieved. // // Default: 100 // // Constraints: Minimum 20, maximum 100. MaxRecords *int64 `type:"integer"` // The identifier of an event source. SourceIdentifier *string `type:"string"` // The type of AWS DMS resource that generates events. // // Valid values: replication-instance | replication-task SourceType *string `type:"string" enum:"SourceType"` // The start time for the events to be listed. StartTime *time.Time `type:"timestamp"` // contains filtered or unexported fields }
func (s DescribeEventsInput) GoString() string
GoString returns the string representation
func (s *DescribeEventsInput) SetDuration(v int64) *DescribeEventsInput
SetDuration sets the Duration field's value.
func (s *DescribeEventsInput) SetEndTime(v time.Time) *DescribeEventsInput
SetEndTime sets the EndTime field's value.
func (s *DescribeEventsInput) SetEventCategories(v []*string) *DescribeEventsInput
SetEventCategories sets the EventCategories field's value.
func (s *DescribeEventsInput) SetFilters(v []*Filter) *DescribeEventsInput
SetFilters sets the Filters field's value.
func (s *DescribeEventsInput) SetMarker(v string) *DescribeEventsInput
SetMarker sets the Marker field's value.
func (s *DescribeEventsInput) SetMaxRecords(v int64) *DescribeEventsInput
SetMaxRecords sets the MaxRecords field's value.
func (s *DescribeEventsInput) SetSourceIdentifier(v string) *DescribeEventsInput
SetSourceIdentifier sets the SourceIdentifier field's value.
func (s *DescribeEventsInput) SetSourceType(v string) *DescribeEventsInput
SetSourceType sets the SourceType field's value.
func (s *DescribeEventsInput) SetStartTime(v time.Time) *DescribeEventsInput
SetStartTime sets the StartTime field's value.
func (s DescribeEventsInput) String() string
String returns the string representation
func (s *DescribeEventsInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DescribeEventsOutput struct { // The events described. Events []*Event `type:"list"` // An optional pagination token provided by a previous request. If this parameter // is specified, the response includes only records beyond the marker, up to // the value specified by MaxRecords. Marker *string `type:"string"` // contains filtered or unexported fields }
func (s DescribeEventsOutput) GoString() string
GoString returns the string representation
func (s *DescribeEventsOutput) SetEvents(v []*Event) *DescribeEventsOutput
SetEvents sets the Events field's value.
func (s *DescribeEventsOutput) SetMarker(v string) *DescribeEventsOutput
SetMarker sets the Marker field's value.
func (s DescribeEventsOutput) String() string
String returns the string representation
type DescribeOrderableReplicationInstancesInput struct { // An optional pagination token provided by a previous request. If this parameter // is specified, the response includes only records beyond the marker, up to // the value specified by MaxRecords. Marker *string `type:"string"` // The maximum number of records to include in the response. If more records // exist than the specified MaxRecords value, a pagination token called a marker // is included in the response so that the remaining results can be retrieved. // // Default: 100 // // Constraints: Minimum 20, maximum 100. MaxRecords *int64 `type:"integer"` // contains filtered or unexported fields }
func (s DescribeOrderableReplicationInstancesInput) GoString() string
GoString returns the string representation
func (s *DescribeOrderableReplicationInstancesInput) SetMarker(v string) *DescribeOrderableReplicationInstancesInput
SetMarker sets the Marker field's value.
func (s *DescribeOrderableReplicationInstancesInput) SetMaxRecords(v int64) *DescribeOrderableReplicationInstancesInput
SetMaxRecords sets the MaxRecords field's value.
func (s DescribeOrderableReplicationInstancesInput) String() string
String returns the string representation
type DescribeOrderableReplicationInstancesOutput struct { // An optional pagination token provided by a previous request. If this parameter // is specified, the response includes only records beyond the marker, up to // the value specified by MaxRecords. Marker *string `type:"string"` // The order-able replication instances available. OrderableReplicationInstances []*OrderableReplicationInstance `type:"list"` // contains filtered or unexported fields }
func (s DescribeOrderableReplicationInstancesOutput) GoString() string
GoString returns the string representation
func (s *DescribeOrderableReplicationInstancesOutput) SetMarker(v string) *DescribeOrderableReplicationInstancesOutput
SetMarker sets the Marker field's value.
func (s *DescribeOrderableReplicationInstancesOutput) SetOrderableReplicationInstances(v []*OrderableReplicationInstance) *DescribeOrderableReplicationInstancesOutput
SetOrderableReplicationInstances sets the OrderableReplicationInstances field's value.
func (s DescribeOrderableReplicationInstancesOutput) String() string
String returns the string representation
type DescribePendingMaintenanceActionsInput struct { Filters []*Filter `type:"list"` // An optional pagination token provided by a previous request. If this parameter // is specified, the response includes only records beyond the marker, up to // the value specified by MaxRecords. Marker *string `type:"string"` // The maximum number of records to include in the response. If more records // exist than the specified MaxRecords value, a pagination token called a marker // is included in the response so that the remaining results can be retrieved. // // Default: 100 // // Constraints: Minimum 20, maximum 100. MaxRecords *int64 `type:"integer"` // The Amazon Resource Name (ARN) of the replication instance. ReplicationInstanceArn *string `type:"string"` // contains filtered or unexported fields }
func (s DescribePendingMaintenanceActionsInput) GoString() string
GoString returns the string representation
func (s *DescribePendingMaintenanceActionsInput) SetFilters(v []*Filter) *DescribePendingMaintenanceActionsInput
SetFilters sets the Filters field's value.
func (s *DescribePendingMaintenanceActionsInput) SetMarker(v string) *DescribePendingMaintenanceActionsInput
SetMarker sets the Marker field's value.
func (s *DescribePendingMaintenanceActionsInput) SetMaxRecords(v int64) *DescribePendingMaintenanceActionsInput
SetMaxRecords sets the MaxRecords field's value.
func (s *DescribePendingMaintenanceActionsInput) SetReplicationInstanceArn(v string) *DescribePendingMaintenanceActionsInput
SetReplicationInstanceArn sets the ReplicationInstanceArn field's value.
func (s DescribePendingMaintenanceActionsInput) String() string
String returns the string representation
func (s *DescribePendingMaintenanceActionsInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DescribePendingMaintenanceActionsOutput struct { // An optional pagination token provided by a previous request. If this parameter // is specified, the response includes only records beyond the marker, up to // the value specified by MaxRecords. Marker *string `type:"string"` // The pending maintenance action. PendingMaintenanceActions []*ResourcePendingMaintenanceActions `type:"list"` // contains filtered or unexported fields }
func (s DescribePendingMaintenanceActionsOutput) GoString() string
GoString returns the string representation
func (s *DescribePendingMaintenanceActionsOutput) SetMarker(v string) *DescribePendingMaintenanceActionsOutput
SetMarker sets the Marker field's value.
func (s *DescribePendingMaintenanceActionsOutput) SetPendingMaintenanceActions(v []*ResourcePendingMaintenanceActions) *DescribePendingMaintenanceActionsOutput
SetPendingMaintenanceActions sets the PendingMaintenanceActions field's value.
func (s DescribePendingMaintenanceActionsOutput) String() string
String returns the string representation
type DescribeRefreshSchemasStatusInput struct { // The Amazon Resource Name (ARN) string that uniquely identifies the endpoint. // // EndpointArn is a required field EndpointArn *string `type:"string" required:"true"` // contains filtered or unexported fields }
func (s DescribeRefreshSchemasStatusInput) GoString() string
GoString returns the string representation
func (s *DescribeRefreshSchemasStatusInput) SetEndpointArn(v string) *DescribeRefreshSchemasStatusInput
SetEndpointArn sets the EndpointArn field's value.
func (s DescribeRefreshSchemasStatusInput) String() string
String returns the string representation
func (s *DescribeRefreshSchemasStatusInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DescribeRefreshSchemasStatusOutput struct { // The status of the schema. RefreshSchemasStatus *RefreshSchemasStatus `type:"structure"` // contains filtered or unexported fields }
func (s DescribeRefreshSchemasStatusOutput) GoString() string
GoString returns the string representation
func (s *DescribeRefreshSchemasStatusOutput) SetRefreshSchemasStatus(v *RefreshSchemasStatus) *DescribeRefreshSchemasStatusOutput
SetRefreshSchemasStatus sets the RefreshSchemasStatus field's value.
func (s DescribeRefreshSchemasStatusOutput) String() string
String returns the string representation
type DescribeReplicationInstanceTaskLogsInput struct { // An optional pagination token provided by a previous request. If this parameter // is specified, the response includes only records beyond the marker, up to // the value specified by MaxRecords. Marker *string `type:"string"` // The maximum number of records to include in the response. If more records // exist than the specified MaxRecords value, a pagination token called a marker // is included in the response so that the remaining results can be retrieved. // // Default: 100 // // Constraints: Minimum 20, maximum 100. MaxRecords *int64 `type:"integer"` // The Amazon Resource Name (ARN) of the replication instance. // // ReplicationInstanceArn is a required field ReplicationInstanceArn *string `type:"string" required:"true"` // contains filtered or unexported fields }
func (s DescribeReplicationInstanceTaskLogsInput) GoString() string
GoString returns the string representation
func (s *DescribeReplicationInstanceTaskLogsInput) SetMarker(v string) *DescribeReplicationInstanceTaskLogsInput
SetMarker sets the Marker field's value.
func (s *DescribeReplicationInstanceTaskLogsInput) SetMaxRecords(v int64) *DescribeReplicationInstanceTaskLogsInput
SetMaxRecords sets the MaxRecords field's value.
func (s *DescribeReplicationInstanceTaskLogsInput) SetReplicationInstanceArn(v string) *DescribeReplicationInstanceTaskLogsInput
SetReplicationInstanceArn sets the ReplicationInstanceArn field's value.
func (s DescribeReplicationInstanceTaskLogsInput) String() string
String returns the string representation
func (s *DescribeReplicationInstanceTaskLogsInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DescribeReplicationInstanceTaskLogsOutput struct { // An optional pagination token provided by a previous request. If this parameter // is specified, the response includes only records beyond the marker, up to // the value specified by MaxRecords. Marker *string `type:"string"` // The Amazon Resource Name (ARN) of the replication instance. ReplicationInstanceArn *string `type:"string"` // An array of replication task log metadata. Each member of the array contains // the replication task name, ARN, and task log size (in bytes). ReplicationInstanceTaskLogs []*ReplicationInstanceTaskLog `type:"list"` // contains filtered or unexported fields }
func (s DescribeReplicationInstanceTaskLogsOutput) GoString() string
GoString returns the string representation
func (s *DescribeReplicationInstanceTaskLogsOutput) SetMarker(v string) *DescribeReplicationInstanceTaskLogsOutput
SetMarker sets the Marker field's value.
func (s *DescribeReplicationInstanceTaskLogsOutput) SetReplicationInstanceArn(v string) *DescribeReplicationInstanceTaskLogsOutput
SetReplicationInstanceArn sets the ReplicationInstanceArn field's value.
func (s *DescribeReplicationInstanceTaskLogsOutput) SetReplicationInstanceTaskLogs(v []*ReplicationInstanceTaskLog) *DescribeReplicationInstanceTaskLogsOutput
SetReplicationInstanceTaskLogs sets the ReplicationInstanceTaskLogs field's value.
func (s DescribeReplicationInstanceTaskLogsOutput) String() string
String returns the string representation
type DescribeReplicationInstancesInput struct { // Filters applied to replication instances. // // Valid filter names: replication-instance-arn | replication-instance-id | // replication-instance-class | engine-version Filters []*Filter `type:"list"` // An optional pagination token provided by a previous request. If this parameter // is specified, the response includes only records beyond the marker, up to // the value specified by MaxRecords. Marker *string `type:"string"` // The maximum number of records to include in the response. If more records // exist than the specified MaxRecords value, a pagination token called a marker // is included in the response so that the remaining results can be retrieved. // // Default: 100 // // Constraints: Minimum 20, maximum 100. MaxRecords *int64 `type:"integer"` // contains filtered or unexported fields }
func (s DescribeReplicationInstancesInput) GoString() string
GoString returns the string representation
func (s *DescribeReplicationInstancesInput) SetFilters(v []*Filter) *DescribeReplicationInstancesInput
SetFilters sets the Filters field's value.
func (s *DescribeReplicationInstancesInput) SetMarker(v string) *DescribeReplicationInstancesInput
SetMarker sets the Marker field's value.
func (s *DescribeReplicationInstancesInput) SetMaxRecords(v int64) *DescribeReplicationInstancesInput
SetMaxRecords sets the MaxRecords field's value.
func (s DescribeReplicationInstancesInput) String() string
String returns the string representation
func (s *DescribeReplicationInstancesInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DescribeReplicationInstancesOutput struct { // An optional pagination token provided by a previous request. If this parameter // is specified, the response includes only records beyond the marker, up to // the value specified by MaxRecords. Marker *string `type:"string"` // The replication instances described. ReplicationInstances []*ReplicationInstance `type:"list"` // contains filtered or unexported fields }
func (s DescribeReplicationInstancesOutput) GoString() string
GoString returns the string representation
func (s *DescribeReplicationInstancesOutput) SetMarker(v string) *DescribeReplicationInstancesOutput
SetMarker sets the Marker field's value.
func (s *DescribeReplicationInstancesOutput) SetReplicationInstances(v []*ReplicationInstance) *DescribeReplicationInstancesOutput
SetReplicationInstances sets the ReplicationInstances field's value.
func (s DescribeReplicationInstancesOutput) String() string
String returns the string representation
type DescribeReplicationSubnetGroupsInput struct { // Filters applied to replication subnet groups. // // Valid filter names: replication-subnet-group-id Filters []*Filter `type:"list"` // An optional pagination token provided by a previous request. If this parameter // is specified, the response includes only records beyond the marker, up to // the value specified by MaxRecords. Marker *string `type:"string"` // The maximum number of records to include in the response. If more records // exist than the specified MaxRecords value, a pagination token called a marker // is included in the response so that the remaining results can be retrieved. // // Default: 100 // // Constraints: Minimum 20, maximum 100. MaxRecords *int64 `type:"integer"` // contains filtered or unexported fields }
func (s DescribeReplicationSubnetGroupsInput) GoString() string
GoString returns the string representation
func (s *DescribeReplicationSubnetGroupsInput) SetFilters(v []*Filter) *DescribeReplicationSubnetGroupsInput
SetFilters sets the Filters field's value.
func (s *DescribeReplicationSubnetGroupsInput) SetMarker(v string) *DescribeReplicationSubnetGroupsInput
SetMarker sets the Marker field's value.
func (s *DescribeReplicationSubnetGroupsInput) SetMaxRecords(v int64) *DescribeReplicationSubnetGroupsInput
SetMaxRecords sets the MaxRecords field's value.
func (s DescribeReplicationSubnetGroupsInput) String() string
String returns the string representation
func (s *DescribeReplicationSubnetGroupsInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DescribeReplicationSubnetGroupsOutput struct { // An optional pagination token provided by a previous request. If this parameter // is specified, the response includes only records beyond the marker, up to // the value specified by MaxRecords. Marker *string `type:"string"` // A description of the replication subnet groups. ReplicationSubnetGroups []*ReplicationSubnetGroup `type:"list"` // contains filtered or unexported fields }
func (s DescribeReplicationSubnetGroupsOutput) GoString() string
GoString returns the string representation
func (s *DescribeReplicationSubnetGroupsOutput) SetMarker(v string) *DescribeReplicationSubnetGroupsOutput
SetMarker sets the Marker field's value.
func (s *DescribeReplicationSubnetGroupsOutput) SetReplicationSubnetGroups(v []*ReplicationSubnetGroup) *DescribeReplicationSubnetGroupsOutput
SetReplicationSubnetGroups sets the ReplicationSubnetGroups field's value.
func (s DescribeReplicationSubnetGroupsOutput) String() string
String returns the string representation
type DescribeReplicationTaskAssessmentResultsInput struct { // An optional pagination token provided by a previous request. If this parameter // is specified, the response includes only records beyond the marker, up to // the value specified by MaxRecords. Marker *string `type:"string"` // The maximum number of records to include in the response. If more records // exist than the specified MaxRecords value, a pagination token called a marker // is included in the response so that the remaining results can be retrieved. // // Default: 100 // // Constraints: Minimum 20, maximum 100. MaxRecords *int64 `type:"integer"` // The Amazon Resource Name (ARN) string that uniquely identifies the task. // When this input parameter is specified, the API returns only one result and // ignore the values of the MaxRecords and Marker parameters. ReplicationTaskArn *string `type:"string"` // contains filtered or unexported fields }
func (s DescribeReplicationTaskAssessmentResultsInput) GoString() string
GoString returns the string representation
func (s *DescribeReplicationTaskAssessmentResultsInput) SetMarker(v string) *DescribeReplicationTaskAssessmentResultsInput
SetMarker sets the Marker field's value.
func (s *DescribeReplicationTaskAssessmentResultsInput) SetMaxRecords(v int64) *DescribeReplicationTaskAssessmentResultsInput
SetMaxRecords sets the MaxRecords field's value.
func (s *DescribeReplicationTaskAssessmentResultsInput) SetReplicationTaskArn(v string) *DescribeReplicationTaskAssessmentResultsInput
SetReplicationTaskArn sets the ReplicationTaskArn field's value.
func (s DescribeReplicationTaskAssessmentResultsInput) String() string
String returns the string representation
type DescribeReplicationTaskAssessmentResultsOutput struct { // - The Amazon S3 bucket where the task assessment report is located. BucketName *string `type:"string"` // An optional pagination token provided by a previous request. If this parameter // is specified, the response includes only records beyond the marker, up to // the value specified by MaxRecords. Marker *string `type:"string"` // The task assessment report. ReplicationTaskAssessmentResults []*ReplicationTaskAssessmentResult `type:"list"` // contains filtered or unexported fields }
func (s DescribeReplicationTaskAssessmentResultsOutput) GoString() string
GoString returns the string representation
func (s *DescribeReplicationTaskAssessmentResultsOutput) SetBucketName(v string) *DescribeReplicationTaskAssessmentResultsOutput
SetBucketName sets the BucketName field's value.
func (s *DescribeReplicationTaskAssessmentResultsOutput) SetMarker(v string) *DescribeReplicationTaskAssessmentResultsOutput
SetMarker sets the Marker field's value.
func (s *DescribeReplicationTaskAssessmentResultsOutput) SetReplicationTaskAssessmentResults(v []*ReplicationTaskAssessmentResult) *DescribeReplicationTaskAssessmentResultsOutput
SetReplicationTaskAssessmentResults sets the ReplicationTaskAssessmentResults field's value.
func (s DescribeReplicationTaskAssessmentResultsOutput) String() string
String returns the string representation
type DescribeReplicationTaskAssessmentRunsInput struct { // Filters applied to the premigration assessment runs described in the form // of key-value pairs. // // Valid filter names: replication-task-assessment-run-arn, replication-task-arn, // replication-instance-arn, status Filters []*Filter `type:"list"` // An optional pagination token provided by a previous request. If this parameter // is specified, the response includes only records beyond the marker, up to // the value specified by MaxRecords. Marker *string `type:"string"` // The maximum number of records to include in the response. If more records // exist than the specified MaxRecords value, a pagination token called a marker // is included in the response so that the remaining results can be retrieved. MaxRecords *int64 `type:"integer"` // contains filtered or unexported fields }
func (s DescribeReplicationTaskAssessmentRunsInput) GoString() string
GoString returns the string representation
func (s *DescribeReplicationTaskAssessmentRunsInput) SetFilters(v []*Filter) *DescribeReplicationTaskAssessmentRunsInput
SetFilters sets the Filters field's value.
func (s *DescribeReplicationTaskAssessmentRunsInput) SetMarker(v string) *DescribeReplicationTaskAssessmentRunsInput
SetMarker sets the Marker field's value.
func (s *DescribeReplicationTaskAssessmentRunsInput) SetMaxRecords(v int64) *DescribeReplicationTaskAssessmentRunsInput
SetMaxRecords sets the MaxRecords field's value.
func (s DescribeReplicationTaskAssessmentRunsInput) String() string
String returns the string representation
func (s *DescribeReplicationTaskAssessmentRunsInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DescribeReplicationTaskAssessmentRunsOutput struct { // A pagination token returned for you to pass to a subsequent request. If you // pass this token as the Marker value in a subsequent request, the response // includes only records beyond the marker, up to the value specified in the // request by MaxRecords. Marker *string `type:"string"` // One or more premigration assessment runs as specified by Filters. ReplicationTaskAssessmentRuns []*ReplicationTaskAssessmentRun `type:"list"` // contains filtered or unexported fields }
func (s DescribeReplicationTaskAssessmentRunsOutput) GoString() string
GoString returns the string representation
func (s *DescribeReplicationTaskAssessmentRunsOutput) SetMarker(v string) *DescribeReplicationTaskAssessmentRunsOutput
SetMarker sets the Marker field's value.
func (s *DescribeReplicationTaskAssessmentRunsOutput) SetReplicationTaskAssessmentRuns(v []*ReplicationTaskAssessmentRun) *DescribeReplicationTaskAssessmentRunsOutput
SetReplicationTaskAssessmentRuns sets the ReplicationTaskAssessmentRuns field's value.
func (s DescribeReplicationTaskAssessmentRunsOutput) String() string
String returns the string representation
type DescribeReplicationTaskIndividualAssessmentsInput struct { // Filters applied to the individual assessments described in the form of key-value // pairs. // // Valid filter names: replication-task-assessment-run-arn, replication-task-arn, // status Filters []*Filter `type:"list"` // An optional pagination token provided by a previous request. If this parameter // is specified, the response includes only records beyond the marker, up to // the value specified by MaxRecords. Marker *string `type:"string"` // The maximum number of records to include in the response. If more records // exist than the specified MaxRecords value, a pagination token called a marker // is included in the response so that the remaining results can be retrieved. MaxRecords *int64 `type:"integer"` // contains filtered or unexported fields }
func (s DescribeReplicationTaskIndividualAssessmentsInput) GoString() string
GoString returns the string representation
func (s *DescribeReplicationTaskIndividualAssessmentsInput) SetFilters(v []*Filter) *DescribeReplicationTaskIndividualAssessmentsInput
SetFilters sets the Filters field's value.
func (s *DescribeReplicationTaskIndividualAssessmentsInput) SetMarker(v string) *DescribeReplicationTaskIndividualAssessmentsInput
SetMarker sets the Marker field's value.
func (s *DescribeReplicationTaskIndividualAssessmentsInput) SetMaxRecords(v int64) *DescribeReplicationTaskIndividualAssessmentsInput
SetMaxRecords sets the MaxRecords field's value.
func (s DescribeReplicationTaskIndividualAssessmentsInput) String() string
String returns the string representation
func (s *DescribeReplicationTaskIndividualAssessmentsInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DescribeReplicationTaskIndividualAssessmentsOutput struct { // A pagination token returned for you to pass to a subsequent request. If you // pass this token as the Marker value in a subsequent request, the response // includes only records beyond the marker, up to the value specified in the // request by MaxRecords. Marker *string `type:"string"` // One or more individual assessments as specified by Filters. ReplicationTaskIndividualAssessments []*ReplicationTaskIndividualAssessment `type:"list"` // contains filtered or unexported fields }
func (s DescribeReplicationTaskIndividualAssessmentsOutput) GoString() string
GoString returns the string representation
func (s *DescribeReplicationTaskIndividualAssessmentsOutput) SetMarker(v string) *DescribeReplicationTaskIndividualAssessmentsOutput
SetMarker sets the Marker field's value.
func (s *DescribeReplicationTaskIndividualAssessmentsOutput) SetReplicationTaskIndividualAssessments(v []*ReplicationTaskIndividualAssessment) *DescribeReplicationTaskIndividualAssessmentsOutput
SetReplicationTaskIndividualAssessments sets the ReplicationTaskIndividualAssessments field's value.
func (s DescribeReplicationTaskIndividualAssessmentsOutput) String() string
String returns the string representation
type DescribeReplicationTasksInput struct { // Filters applied to replication tasks. // // Valid filter names: replication-task-arn | replication-task-id | migration-type // | endpoint-arn | replication-instance-arn Filters []*Filter `type:"list"` // An optional pagination token provided by a previous request. If this parameter // is specified, the response includes only records beyond the marker, up to // the value specified by MaxRecords. Marker *string `type:"string"` // The maximum number of records to include in the response. If more records // exist than the specified MaxRecords value, a pagination token called a marker // is included in the response so that the remaining results can be retrieved. // // Default: 100 // // Constraints: Minimum 20, maximum 100. MaxRecords *int64 `type:"integer"` // An option to set to avoid returning information about settings. Use this // to reduce overhead when setting information is too large. To use this option, // choose true; otherwise, choose false (the default). WithoutSettings *bool `type:"boolean"` // contains filtered or unexported fields }
func (s DescribeReplicationTasksInput) GoString() string
GoString returns the string representation
func (s *DescribeReplicationTasksInput) SetFilters(v []*Filter) *DescribeReplicationTasksInput
SetFilters sets the Filters field's value.
func (s *DescribeReplicationTasksInput) SetMarker(v string) *DescribeReplicationTasksInput
SetMarker sets the Marker field's value.
func (s *DescribeReplicationTasksInput) SetMaxRecords(v int64) *DescribeReplicationTasksInput
SetMaxRecords sets the MaxRecords field's value.
func (s *DescribeReplicationTasksInput) SetWithoutSettings(v bool) *DescribeReplicationTasksInput
SetWithoutSettings sets the WithoutSettings field's value.
func (s DescribeReplicationTasksInput) String() string
String returns the string representation
func (s *DescribeReplicationTasksInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DescribeReplicationTasksOutput struct { // An optional pagination token provided by a previous request. If this parameter // is specified, the response includes only records beyond the marker, up to // the value specified by MaxRecords. Marker *string `type:"string"` // A description of the replication tasks. ReplicationTasks []*ReplicationTask `type:"list"` // contains filtered or unexported fields }
func (s DescribeReplicationTasksOutput) GoString() string
GoString returns the string representation
func (s *DescribeReplicationTasksOutput) SetMarker(v string) *DescribeReplicationTasksOutput
SetMarker sets the Marker field's value.
func (s *DescribeReplicationTasksOutput) SetReplicationTasks(v []*ReplicationTask) *DescribeReplicationTasksOutput
SetReplicationTasks sets the ReplicationTasks field's value.
func (s DescribeReplicationTasksOutput) String() string
String returns the string representation
type DescribeSchemasInput struct { // The Amazon Resource Name (ARN) string that uniquely identifies the endpoint. // // EndpointArn is a required field EndpointArn *string `type:"string" required:"true"` // An optional pagination token provided by a previous request. If this parameter // is specified, the response includes only records beyond the marker, up to // the value specified by MaxRecords. Marker *string `type:"string"` // The maximum number of records to include in the response. If more records // exist than the specified MaxRecords value, a pagination token called a marker // is included in the response so that the remaining results can be retrieved. // // Default: 100 // // Constraints: Minimum 20, maximum 100. MaxRecords *int64 `type:"integer"` // contains filtered or unexported fields }
func (s DescribeSchemasInput) GoString() string
GoString returns the string representation
func (s *DescribeSchemasInput) SetEndpointArn(v string) *DescribeSchemasInput
SetEndpointArn sets the EndpointArn field's value.
func (s *DescribeSchemasInput) SetMarker(v string) *DescribeSchemasInput
SetMarker sets the Marker field's value.
func (s *DescribeSchemasInput) SetMaxRecords(v int64) *DescribeSchemasInput
SetMaxRecords sets the MaxRecords field's value.
func (s DescribeSchemasInput) String() string
String returns the string representation
func (s *DescribeSchemasInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DescribeSchemasOutput struct { // An optional pagination token provided by a previous request. If this parameter // is specified, the response includes only records beyond the marker, up to // the value specified by MaxRecords. Marker *string `type:"string"` // The described schema. Schemas []*string `type:"list"` // contains filtered or unexported fields }
func (s DescribeSchemasOutput) GoString() string
GoString returns the string representation
func (s *DescribeSchemasOutput) SetMarker(v string) *DescribeSchemasOutput
SetMarker sets the Marker field's value.
func (s *DescribeSchemasOutput) SetSchemas(v []*string) *DescribeSchemasOutput
SetSchemas sets the Schemas field's value.
func (s DescribeSchemasOutput) String() string
String returns the string representation
type DescribeTableStatisticsInput struct { // Filters applied to table statistics. // // Valid filter names: schema-name | table-name | table-state // // A combination of filters creates an AND condition where each record matches // all specified filters. Filters []*Filter `type:"list"` // An optional pagination token provided by a previous request. If this parameter // is specified, the response includes only records beyond the marker, up to // the value specified by MaxRecords. Marker *string `type:"string"` // The maximum number of records to include in the response. If more records // exist than the specified MaxRecords value, a pagination token called a marker // is included in the response so that the remaining results can be retrieved. // // Default: 100 // // Constraints: Minimum 20, maximum 500. MaxRecords *int64 `type:"integer"` // The Amazon Resource Name (ARN) of the replication task. // // ReplicationTaskArn is a required field ReplicationTaskArn *string `type:"string" required:"true"` // contains filtered or unexported fields }
func (s DescribeTableStatisticsInput) GoString() string
GoString returns the string representation
func (s *DescribeTableStatisticsInput) SetFilters(v []*Filter) *DescribeTableStatisticsInput
SetFilters sets the Filters field's value.
func (s *DescribeTableStatisticsInput) SetMarker(v string) *DescribeTableStatisticsInput
SetMarker sets the Marker field's value.
func (s *DescribeTableStatisticsInput) SetMaxRecords(v int64) *DescribeTableStatisticsInput
SetMaxRecords sets the MaxRecords field's value.
func (s *DescribeTableStatisticsInput) SetReplicationTaskArn(v string) *DescribeTableStatisticsInput
SetReplicationTaskArn sets the ReplicationTaskArn field's value.
func (s DescribeTableStatisticsInput) String() string
String returns the string representation
func (s *DescribeTableStatisticsInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DescribeTableStatisticsOutput struct { // An optional pagination token provided by a previous request. If this parameter // is specified, the response includes only records beyond the marker, up to // the value specified by MaxRecords. Marker *string `type:"string"` // The Amazon Resource Name (ARN) of the replication task. ReplicationTaskArn *string `type:"string"` // The table statistics. TableStatistics []*TableStatistics `type:"list"` // contains filtered or unexported fields }
func (s DescribeTableStatisticsOutput) GoString() string
GoString returns the string representation
func (s *DescribeTableStatisticsOutput) SetMarker(v string) *DescribeTableStatisticsOutput
SetMarker sets the Marker field's value.
func (s *DescribeTableStatisticsOutput) SetReplicationTaskArn(v string) *DescribeTableStatisticsOutput
SetReplicationTaskArn sets the ReplicationTaskArn field's value.
func (s *DescribeTableStatisticsOutput) SetTableStatistics(v []*TableStatistics) *DescribeTableStatisticsOutput
SetTableStatistics sets the TableStatistics field's value.
func (s DescribeTableStatisticsOutput) String() string
String returns the string representation
type DmsTransferSettings struct { // The name of the S3 bucket to use. BucketName *string `type:"string"` // The IAM role that has permission to access the Amazon S3 bucket. ServiceAccessRoleArn *string `type:"string"` // contains filtered or unexported fields }
The settings in JSON format for the DMS Transfer type source endpoint.
func (s DmsTransferSettings) GoString() string
GoString returns the string representation
func (s *DmsTransferSettings) SetBucketName(v string) *DmsTransferSettings
SetBucketName sets the BucketName field's value.
func (s *DmsTransferSettings) SetServiceAccessRoleArn(v string) *DmsTransferSettings
SetServiceAccessRoleArn sets the ServiceAccessRoleArn field's value.
func (s DmsTransferSettings) String() string
String returns the string representation
type DocDbSettings struct { // The database name on the DocumentDB source endpoint. DatabaseName *string `type:"string"` // Indicates the number of documents to preview to determine the document organization. // Use this setting when NestingLevel is set to "one". // // Must be a positive value greater than 0. Default value is 1000. DocsToInvestigate *int64 `type:"integer"` // Specifies the document ID. Use this setting when NestingLevel is set to "none". // // Default value is "false". ExtractDocId *bool `type:"boolean"` // The AWS KMS key identifier that is used to encrypt the content on the replication // instance. If you don't specify a value for the KmsKeyId parameter, then AWS // DMS uses your default encryption key. AWS KMS creates the default encryption // key for your AWS account. Your AWS account has a different default encryption // key for each AWS Region. KmsKeyId *string `type:"string"` // Specifies either document or table mode. // // Default value is "none". Specify "none" to use document mode. Specify "one" // to use table mode. NestingLevel *string `type:"string" enum:"NestingLevelValue"` // The password for the user account you use to access the DocumentDB source // endpoint. Password *string `type:"string" sensitive:"true"` // The port value for the DocumentDB source endpoint. Port *int64 `type:"integer"` // The full Amazon Resource Name (ARN) of the IAM role that specifies AWS DMS // as the trusted entity and grants the required permissions to access the value // in SecretsManagerSecret. SecretsManagerSecret has the value of the AWS Secrets // Manager secret that allows access to the DocumentDB endpoint. // // You can specify one of two sets of values for these permissions. You can // specify the values for this setting and SecretsManagerSecretId. Or you can // specify clear-text values for UserName, Password, ServerName, and Port. You // can't specify both. For more information on creating this SecretsManagerSecret // and the SecretsManagerAccessRoleArn and SecretsManagerSecretId required to // access it, see Using secrets to access AWS Database Migration Service resources // (https://docs.aws.amazon.com/https:/docs.aws.amazon.com/dms/latest/userguide/CHAP_Security.html#security-iam-secretsmanager) // in the AWS Database Migration Service User Guide. SecretsManagerAccessRoleArn *string `type:"string"` // The full ARN, partial ARN, or friendly name of the SecretsManagerSecret that // contains the DocumentDB endpoint connection details. SecretsManagerSecretId *string `type:"string"` // The name of the server on the DocumentDB source endpoint. ServerName *string `type:"string"` // The user name you use to access the DocumentDB source endpoint. Username *string `type:"string"` // contains filtered or unexported fields }
Provides information that defines a DocumentDB endpoint.
func (s DocDbSettings) GoString() string
GoString returns the string representation
func (s *DocDbSettings) SetDatabaseName(v string) *DocDbSettings
SetDatabaseName sets the DatabaseName field's value.
func (s *DocDbSettings) SetDocsToInvestigate(v int64) *DocDbSettings
SetDocsToInvestigate sets the DocsToInvestigate field's value.
func (s *DocDbSettings) SetExtractDocId(v bool) *DocDbSettings
SetExtractDocId sets the ExtractDocId field's value.
func (s *DocDbSettings) SetKmsKeyId(v string) *DocDbSettings
SetKmsKeyId sets the KmsKeyId field's value.
func (s *DocDbSettings) SetNestingLevel(v string) *DocDbSettings
SetNestingLevel sets the NestingLevel field's value.
func (s *DocDbSettings) SetPassword(v string) *DocDbSettings
SetPassword sets the Password field's value.
func (s *DocDbSettings) SetPort(v int64) *DocDbSettings
SetPort sets the Port field's value.
func (s *DocDbSettings) SetSecretsManagerAccessRoleArn(v string) *DocDbSettings
SetSecretsManagerAccessRoleArn sets the SecretsManagerAccessRoleArn field's value.
func (s *DocDbSettings) SetSecretsManagerSecretId(v string) *DocDbSettings
SetSecretsManagerSecretId sets the SecretsManagerSecretId field's value.
func (s *DocDbSettings) SetServerName(v string) *DocDbSettings
SetServerName sets the ServerName field's value.
func (s *DocDbSettings) SetUsername(v string) *DocDbSettings
SetUsername sets the Username field's value.
func (s DocDbSettings) String() string
String returns the string representation
type DynamoDbSettings struct { // The Amazon Resource Name (ARN) used by the service access IAM role. // // ServiceAccessRoleArn is a required field ServiceAccessRoleArn *string `type:"string" required:"true"` // contains filtered or unexported fields }
Provides the Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role used to define an Amazon DynamoDB target endpoint.
func (s DynamoDbSettings) GoString() string
GoString returns the string representation
func (s *DynamoDbSettings) SetServiceAccessRoleArn(v string) *DynamoDbSettings
SetServiceAccessRoleArn sets the ServiceAccessRoleArn field's value.
func (s DynamoDbSettings) String() string
String returns the string representation
func (s *DynamoDbSettings) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type ElasticsearchSettings struct { // The endpoint for the Elasticsearch cluster. AWS DMS uses HTTPS if a transport // protocol (http/https) is not specified. // // EndpointUri is a required field EndpointUri *string `type:"string" required:"true"` // The maximum number of seconds for which DMS retries failed API requests to // the Elasticsearch cluster. ErrorRetryDuration *int64 `type:"integer"` // The maximum percentage of records that can fail to be written before a full // load operation stops. // // To avoid early failure, this counter is only effective after 1000 records // are transferred. Elasticsearch also has the concept of error monitoring during // the last 10 minutes of an Observation Window. If transfer of all records // fail in the last 10 minutes, the full load operation stops. FullLoadErrorPercentage *int64 `type:"integer"` // The Amazon Resource Name (ARN) used by service to access the IAM role. // // ServiceAccessRoleArn is a required field ServiceAccessRoleArn *string `type:"string" required:"true"` // contains filtered or unexported fields }
Provides information that defines an Elasticsearch endpoint.
func (s ElasticsearchSettings) GoString() string
GoString returns the string representation
func (s *ElasticsearchSettings) SetEndpointUri(v string) *ElasticsearchSettings
SetEndpointUri sets the EndpointUri field's value.
func (s *ElasticsearchSettings) SetErrorRetryDuration(v int64) *ElasticsearchSettings
SetErrorRetryDuration sets the ErrorRetryDuration field's value.
func (s *ElasticsearchSettings) SetFullLoadErrorPercentage(v int64) *ElasticsearchSettings
SetFullLoadErrorPercentage sets the FullLoadErrorPercentage field's value.
func (s *ElasticsearchSettings) SetServiceAccessRoleArn(v string) *ElasticsearchSettings
SetServiceAccessRoleArn sets the ServiceAccessRoleArn field's value.
func (s ElasticsearchSettings) String() string
String returns the string representation
func (s *ElasticsearchSettings) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type Endpoint struct { // The Amazon Resource Name (ARN) used for SSL connection to the endpoint. CertificateArn *string `type:"string"` // The name of the database at the endpoint. DatabaseName *string `type:"string"` // The settings in JSON format for the DMS transfer type of source endpoint. // // Possible settings include the following: // // * ServiceAccessRoleArn - The IAM role that has permission to access the // Amazon S3 bucket. // // * BucketName - The name of the S3 bucket to use. // // * CompressionType - An optional parameter to use GZIP to compress the // target files. To use GZIP, set this value to NONE (the default). To keep // the files uncompressed, don't use this value. // // Shorthand syntax for these settings is as follows: ServiceAccessRoleArn=string,BucketName=string,CompressionType=string // // JSON syntax for these settings is as follows: { "ServiceAccessRoleArn": "string", // "BucketName": "string", "CompressionType": "none"|"gzip" } DmsTransferSettings *DmsTransferSettings `type:"structure"` // Provides information that defines a DocumentDB endpoint. DocDbSettings *DocDbSettings `type:"structure"` // The settings for the DynamoDB target endpoint. For more information, see // the DynamoDBSettings structure. DynamoDbSettings *DynamoDbSettings `type:"structure"` // The settings for the Elasticsearch source endpoint. For more information, // see the ElasticsearchSettings structure. ElasticsearchSettings *ElasticsearchSettings `type:"structure"` // The Amazon Resource Name (ARN) string that uniquely identifies the endpoint. EndpointArn *string `type:"string"` // The database endpoint identifier. Identifiers must begin with a letter and // must contain only ASCII letters, digits, and hyphens. They can't end with // a hyphen or contain two consecutive hyphens. EndpointIdentifier *string `type:"string"` // The type of endpoint. Valid values are source and target. EndpointType *string `type:"string" enum:"ReplicationEndpointTypeValue"` // The expanded name for the engine name. For example, if the EngineName parameter // is "aurora," this value would be "Amazon Aurora MySQL." EngineDisplayName *string `type:"string"` // The database engine name. Valid values, depending on the EndpointType, include // "mysql", "oracle", "postgres", "mariadb", "aurora", "aurora-postgresql", // "redshift", "s3", "db2", "azuredb", "sybase", "dynamodb", "mongodb", "kinesis", // "kafka", "elasticsearch", "documentdb", "sqlserver", and "neptune". EngineName *string `type:"string"` // Value returned by a call to CreateEndpoint that can be used for cross-account // validation. Use it on a subsequent call to CreateEndpoint to create the endpoint // with a cross-account. ExternalId *string `type:"string"` // The external table definition. ExternalTableDefinition *string `type:"string"` // Additional connection attributes used to connect to the endpoint. ExtraConnectionAttributes *string `type:"string"` // The settings for the IBM Db2 LUW source endpoint. For more information, see // the IBMDb2Settings structure. IBMDb2Settings *IBMDb2Settings `type:"structure"` // The settings for the Apache Kafka target endpoint. For more information, // see the KafkaSettings structure. KafkaSettings *KafkaSettings `type:"structure"` // The settings for the Amazon Kinesis target endpoint. For more information, // see the KinesisSettings structure. KinesisSettings *KinesisSettings `type:"structure"` // An AWS KMS key identifier that is used to encrypt the connection parameters // for the endpoint. // // If you don't specify a value for the KmsKeyId parameter, then AWS DMS uses // your default encryption key. // // AWS KMS creates the default encryption key for your AWS account. Your AWS // account has a different default encryption key for each AWS Region. KmsKeyId *string `type:"string"` // The settings for the Microsoft SQL Server source and target endpoint. For // more information, see the MicrosoftSQLServerSettings structure. MicrosoftSQLServerSettings *MicrosoftSQLServerSettings `type:"structure"` // The settings for the MongoDB source endpoint. For more information, see the // MongoDbSettings structure. MongoDbSettings *MongoDbSettings `type:"structure"` // The settings for the MySQL source and target endpoint. For more information, // see the MySQLSettings structure. MySQLSettings *MySQLSettings `type:"structure"` // The settings for the Amazon Neptune target endpoint. For more information, // see the NeptuneSettings structure. NeptuneSettings *NeptuneSettings `type:"structure"` // The settings for the Oracle source and target endpoint. For more information, // see the OracleSettings structure. OracleSettings *OracleSettings `type:"structure"` // The port value used to access the endpoint. Port *int64 `type:"integer"` // The settings for the PostgreSQL source and target endpoint. For more information, // see the PostgreSQLSettings structure. PostgreSQLSettings *PostgreSQLSettings `type:"structure"` // Settings for the Amazon Redshift endpoint. RedshiftSettings *RedshiftSettings `type:"structure"` // The settings for the S3 target endpoint. For more information, see the S3Settings // structure. S3Settings *S3Settings `type:"structure"` // The name of the server at the endpoint. ServerName *string `type:"string"` // The Amazon Resource Name (ARN) used by the service access IAM role. ServiceAccessRoleArn *string `type:"string"` // The SSL mode used to connect to the endpoint. The default value is none. SslMode *string `type:"string" enum:"DmsSslModeValue"` // The status of the endpoint. Status *string `type:"string"` // The settings for the SAP ASE source and target endpoint. For more information, // see the SybaseSettings structure. SybaseSettings *SybaseSettings `type:"structure"` // The user name used to connect to the endpoint. Username *string `type:"string"` // contains filtered or unexported fields }
Describes an endpoint of a database instance in response to operations such as the following:
* CreateEndpoint * DescribeEndpoint * DescribeEndpointTypes * ModifyEndpoint
func (s Endpoint) GoString() string
GoString returns the string representation
func (s *Endpoint) SetCertificateArn(v string) *Endpoint
SetCertificateArn sets the CertificateArn field's value.
func (s *Endpoint) SetDatabaseName(v string) *Endpoint
SetDatabaseName sets the DatabaseName field's value.
func (s *Endpoint) SetDmsTransferSettings(v *DmsTransferSettings) *Endpoint
SetDmsTransferSettings sets the DmsTransferSettings field's value.
func (s *Endpoint) SetDocDbSettings(v *DocDbSettings) *Endpoint
SetDocDbSettings sets the DocDbSettings field's value.
func (s *Endpoint) SetDynamoDbSettings(v *DynamoDbSettings) *Endpoint
SetDynamoDbSettings sets the DynamoDbSettings field's value.
func (s *Endpoint) SetElasticsearchSettings(v *ElasticsearchSettings) *Endpoint
SetElasticsearchSettings sets the ElasticsearchSettings field's value.
func (s *Endpoint) SetEndpointArn(v string) *Endpoint
SetEndpointArn sets the EndpointArn field's value.
func (s *Endpoint) SetEndpointIdentifier(v string) *Endpoint
SetEndpointIdentifier sets the EndpointIdentifier field's value.
func (s *Endpoint) SetEndpointType(v string) *Endpoint
SetEndpointType sets the EndpointType field's value.
func (s *Endpoint) SetEngineDisplayName(v string) *Endpoint
SetEngineDisplayName sets the EngineDisplayName field's value.
func (s *Endpoint) SetEngineName(v string) *Endpoint
SetEngineName sets the EngineName field's value.
func (s *Endpoint) SetExternalId(v string) *Endpoint
SetExternalId sets the ExternalId field's value.
func (s *Endpoint) SetExternalTableDefinition(v string) *Endpoint
SetExternalTableDefinition sets the ExternalTableDefinition field's value.
func (s *Endpoint) SetExtraConnectionAttributes(v string) *Endpoint
SetExtraConnectionAttributes sets the ExtraConnectionAttributes field's value.
func (s *Endpoint) SetIBMDb2Settings(v *IBMDb2Settings) *Endpoint
SetIBMDb2Settings sets the IBMDb2Settings field's value.
func (s *Endpoint) SetKafkaSettings(v *KafkaSettings) *Endpoint
SetKafkaSettings sets the KafkaSettings field's value.
func (s *Endpoint) SetKinesisSettings(v *KinesisSettings) *Endpoint
SetKinesisSettings sets the KinesisSettings field's value.
func (s *Endpoint) SetKmsKeyId(v string) *Endpoint
SetKmsKeyId sets the KmsKeyId field's value.
func (s *Endpoint) SetMicrosoftSQLServerSettings(v *MicrosoftSQLServerSettings) *Endpoint
SetMicrosoftSQLServerSettings sets the MicrosoftSQLServerSettings field's value.
func (s *Endpoint) SetMongoDbSettings(v *MongoDbSettings) *Endpoint
SetMongoDbSettings sets the MongoDbSettings field's value.
func (s *Endpoint) SetMySQLSettings(v *MySQLSettings) *Endpoint
SetMySQLSettings sets the MySQLSettings field's value.
func (s *Endpoint) SetNeptuneSettings(v *NeptuneSettings) *Endpoint
SetNeptuneSettings sets the NeptuneSettings field's value.
func (s *Endpoint) SetOracleSettings(v *OracleSettings) *Endpoint
SetOracleSettings sets the OracleSettings field's value.
func (s *Endpoint) SetPort(v int64) *Endpoint
SetPort sets the Port field's value.
func (s *Endpoint) SetPostgreSQLSettings(v *PostgreSQLSettings) *Endpoint
SetPostgreSQLSettings sets the PostgreSQLSettings field's value.
func (s *Endpoint) SetRedshiftSettings(v *RedshiftSettings) *Endpoint
SetRedshiftSettings sets the RedshiftSettings field's value.
func (s *Endpoint) SetS3Settings(v *S3Settings) *Endpoint
SetS3Settings sets the S3Settings field's value.
func (s *Endpoint) SetServerName(v string) *Endpoint
SetServerName sets the ServerName field's value.
func (s *Endpoint) SetServiceAccessRoleArn(v string) *Endpoint
SetServiceAccessRoleArn sets the ServiceAccessRoleArn field's value.
func (s *Endpoint) SetSslMode(v string) *Endpoint
SetSslMode sets the SslMode field's value.
func (s *Endpoint) SetStatus(v string) *Endpoint
SetStatus sets the Status field's value.
func (s *Endpoint) SetSybaseSettings(v *SybaseSettings) *Endpoint
SetSybaseSettings sets the SybaseSettings field's value.
func (s *Endpoint) SetUsername(v string) *Endpoint
SetUsername sets the Username field's value.
func (s Endpoint) String() string
String returns the string representation
type Event struct { // The date of the event. Date *time.Time `type:"timestamp"` // The event categories available for the specified source type. EventCategories []*string `type:"list"` // The event message. Message *string `type:"string"` // The identifier of an event source. SourceIdentifier *string `type:"string"` // The type of AWS DMS resource that generates events. // // Valid values: replication-instance | endpoint | replication-task SourceType *string `type:"string" enum:"SourceType"` // contains filtered or unexported fields }
Describes an identifiable significant activity that affects a replication instance or task. This object can provide the message, the available event categories, the date and source of the event, and the AWS DMS resource type.
func (s Event) GoString() string
GoString returns the string representation
func (s *Event) SetDate(v time.Time) *Event
SetDate sets the Date field's value.
func (s *Event) SetEventCategories(v []*string) *Event
SetEventCategories sets the EventCategories field's value.
func (s *Event) SetMessage(v string) *Event
SetMessage sets the Message field's value.
func (s *Event) SetSourceIdentifier(v string) *Event
SetSourceIdentifier sets the SourceIdentifier field's value.
func (s *Event) SetSourceType(v string) *Event
SetSourceType sets the SourceType field's value.
func (s Event) String() string
String returns the string representation
type EventCategoryGroup struct { // A list of event categories from a source type that you've chosen. EventCategories []*string `type:"list"` // The type of AWS DMS resource that generates events. // // Valid values: replication-instance | replication-server | security-group // | replication-task SourceType *string `type:"string"` // contains filtered or unexported fields }
Lists categories of events subscribed to, and generated by, the applicable AWS DMS resource type. This data type appears in response to the DescribeEventCategories (https://docs.aws.amazon.com/dms/latest/APIReference/API_EventCategoryGroup.html) action.
func (s EventCategoryGroup) GoString() string
GoString returns the string representation
func (s *EventCategoryGroup) SetEventCategories(v []*string) *EventCategoryGroup
SetEventCategories sets the EventCategories field's value.
func (s *EventCategoryGroup) SetSourceType(v string) *EventCategoryGroup
SetSourceType sets the SourceType field's value.
func (s EventCategoryGroup) String() string
String returns the string representation
type EventSubscription struct { // The AWS DMS event notification subscription Id. CustSubscriptionId *string `type:"string"` // The AWS customer account associated with the AWS DMS event notification subscription. CustomerAwsId *string `type:"string"` // Boolean value that indicates if the event subscription is enabled. Enabled *bool `type:"boolean"` // A lists of event categories. EventCategoriesList []*string `type:"list"` // The topic ARN of the AWS DMS event notification subscription. SnsTopicArn *string `type:"string"` // A list of source Ids for the event subscription. SourceIdsList []*string `type:"list"` // The type of AWS DMS resource that generates events. // // Valid values: replication-instance | replication-server | security-group // | replication-task SourceType *string `type:"string"` // The status of the AWS DMS event notification subscription. // // Constraints: // // Can be one of the following: creating | modifying | deleting | active | no-permission // | topic-not-exist // // The status "no-permission" indicates that AWS DMS no longer has permission // to post to the SNS topic. The status "topic-not-exist" indicates that the // topic was deleted after the subscription was created. Status *string `type:"string"` // The time the AWS DMS event notification subscription was created. SubscriptionCreationTime *string `type:"string"` // contains filtered or unexported fields }
Describes an event notification subscription created by the CreateEventSubscription operation.
func (s EventSubscription) GoString() string
GoString returns the string representation
func (s *EventSubscription) SetCustSubscriptionId(v string) *EventSubscription
SetCustSubscriptionId sets the CustSubscriptionId field's value.
func (s *EventSubscription) SetCustomerAwsId(v string) *EventSubscription
SetCustomerAwsId sets the CustomerAwsId field's value.
func (s *EventSubscription) SetEnabled(v bool) *EventSubscription
SetEnabled sets the Enabled field's value.
func (s *EventSubscription) SetEventCategoriesList(v []*string) *EventSubscription
SetEventCategoriesList sets the EventCategoriesList field's value.
func (s *EventSubscription) SetSnsTopicArn(v string) *EventSubscription
SetSnsTopicArn sets the SnsTopicArn field's value.
func (s *EventSubscription) SetSourceIdsList(v []*string) *EventSubscription
SetSourceIdsList sets the SourceIdsList field's value.
func (s *EventSubscription) SetSourceType(v string) *EventSubscription
SetSourceType sets the SourceType field's value.
func (s *EventSubscription) SetStatus(v string) *EventSubscription
SetStatus sets the Status field's value.
func (s *EventSubscription) SetSubscriptionCreationTime(v string) *EventSubscription
SetSubscriptionCreationTime sets the SubscriptionCreationTime field's value.
func (s EventSubscription) String() string
String returns the string representation
type Filter struct { // The name of the filter as specified for a Describe* or similar operation. // // Name is a required field Name *string `type:"string" required:"true"` // The filter value, which can specify one or more values used to narrow the // returned results. // // Values is a required field Values []*string `type:"list" required:"true"` // contains filtered or unexported fields }
Identifies the name and value of a filter object. This filter is used to limit the number and type of AWS DMS objects that are returned for a particular Describe* call or similar operation. Filters are used as an optional parameter for certain API operations.
func (s Filter) GoString() string
GoString returns the string representation
func (s *Filter) SetName(v string) *Filter
SetName sets the Name field's value.
func (s *Filter) SetValues(v []*string) *Filter
SetValues sets the Values field's value.
func (s Filter) String() string
String returns the string representation
func (s *Filter) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type IBMDb2Settings struct { // For ongoing replication (CDC), use CurrentLSN to specify a log sequence number // (LSN) where you want the replication to start. CurrentLsn *string `type:"string"` // Database name for the endpoint. DatabaseName *string `type:"string"` // Maximum number of bytes per read, as a NUMBER value. The default is 64 KB. MaxKBytesPerRead *int64 `type:"integer"` // Endpoint connection password. Password *string `type:"string" sensitive:"true"` // Endpoint TCP port. Port *int64 `type:"integer"` // The full Amazon Resource Name (ARN) of the IAM role that specifies AWS DMS // as the trusted entity and grants the required permissions to access the value // in SecretsManagerSecret. SecretsManagerSecret has the value of the AWS Secrets // Manager secret that allows access to the Db2 LUW endpoint. // // You can specify one of two sets of values for these permissions. You can // specify the values for this setting and SecretsManagerSecretId. Or you can // specify clear-text values for UserName, Password, ServerName, and Port. You // can't specify both. For more information on creating this SecretsManagerSecret // and the SecretsManagerAccessRoleArn and SecretsManagerSecretId required to // access it, see Using secrets to access AWS Database Migration Service resources // (https://docs.aws.amazon.com/https:/docs.aws.amazon.com/dms/latest/userguide/CHAP_Security.html#security-iam-secretsmanager) // in the AWS Database Migration Service User Guide. SecretsManagerAccessRoleArn *string `type:"string"` // The full ARN, partial ARN, or friendly name of the SecretsManagerSecret that // contains the Db2 LUW endpoint connection details. SecretsManagerSecretId *string `type:"string"` // Fully qualified domain name of the endpoint. ServerName *string `type:"string"` // Enables ongoing replication (CDC) as a BOOLEAN value. The default is true. SetDataCaptureChanges *bool `type:"boolean"` // Endpoint connection user name. Username *string `type:"string"` // contains filtered or unexported fields }
Provides information that defines an IBM Db2 LUW endpoint.
func (s IBMDb2Settings) GoString() string
GoString returns the string representation
func (s *IBMDb2Settings) SetCurrentLsn(v string) *IBMDb2Settings
SetCurrentLsn sets the CurrentLsn field's value.
func (s *IBMDb2Settings) SetDatabaseName(v string) *IBMDb2Settings
SetDatabaseName sets the DatabaseName field's value.
func (s *IBMDb2Settings) SetMaxKBytesPerRead(v int64) *IBMDb2Settings
SetMaxKBytesPerRead sets the MaxKBytesPerRead field's value.
func (s *IBMDb2Settings) SetPassword(v string) *IBMDb2Settings
SetPassword sets the Password field's value.
func (s *IBMDb2Settings) SetPort(v int64) *IBMDb2Settings
SetPort sets the Port field's value.
func (s *IBMDb2Settings) SetSecretsManagerAccessRoleArn(v string) *IBMDb2Settings
SetSecretsManagerAccessRoleArn sets the SecretsManagerAccessRoleArn field's value.
func (s *IBMDb2Settings) SetSecretsManagerSecretId(v string) *IBMDb2Settings
SetSecretsManagerSecretId sets the SecretsManagerSecretId field's value.
func (s *IBMDb2Settings) SetServerName(v string) *IBMDb2Settings
SetServerName sets the ServerName field's value.
func (s *IBMDb2Settings) SetSetDataCaptureChanges(v bool) *IBMDb2Settings
SetSetDataCaptureChanges sets the SetDataCaptureChanges field's value.
func (s *IBMDb2Settings) SetUsername(v string) *IBMDb2Settings
SetUsername sets the Username field's value.
func (s IBMDb2Settings) String() string
String returns the string representation
type ImportCertificateInput struct { // A customer-assigned name for the certificate. Identifiers must begin with // a letter and must contain only ASCII letters, digits, and hyphens. They can't // end with a hyphen or contain two consecutive hyphens. // // CertificateIdentifier is a required field CertificateIdentifier *string `type:"string" required:"true"` // The contents of a .pem file, which contains an X.509 certificate. CertificatePem *string `type:"string"` // The location of an imported Oracle Wallet certificate for use with SSL. // // CertificateWallet is automatically base64 encoded/decoded by the SDK. CertificateWallet []byte `type:"blob"` // The tags associated with the certificate. Tags []*Tag `type:"list"` // contains filtered or unexported fields }
func (s ImportCertificateInput) GoString() string
GoString returns the string representation
func (s *ImportCertificateInput) SetCertificateIdentifier(v string) *ImportCertificateInput
SetCertificateIdentifier sets the CertificateIdentifier field's value.
func (s *ImportCertificateInput) SetCertificatePem(v string) *ImportCertificateInput
SetCertificatePem sets the CertificatePem field's value.
func (s *ImportCertificateInput) SetCertificateWallet(v []byte) *ImportCertificateInput
SetCertificateWallet sets the CertificateWallet field's value.
func (s *ImportCertificateInput) SetTags(v []*Tag) *ImportCertificateInput
SetTags sets the Tags field's value.
func (s ImportCertificateInput) String() string
String returns the string representation
func (s *ImportCertificateInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type ImportCertificateOutput struct { // The certificate to be uploaded. Certificate *Certificate `type:"structure"` // contains filtered or unexported fields }
func (s ImportCertificateOutput) GoString() string
GoString returns the string representation
func (s *ImportCertificateOutput) SetCertificate(v *Certificate) *ImportCertificateOutput
SetCertificate sets the Certificate field's value.
func (s ImportCertificateOutput) String() string
String returns the string representation
type InsufficientResourceCapacityFault struct { RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"` Message_ *string `locationName:"message" type:"string"` // contains filtered or unexported fields }
There are not enough resources allocated to the database migration.
func (s *InsufficientResourceCapacityFault) Code() string
Code returns the exception type name.
func (s *InsufficientResourceCapacityFault) Error() string
func (s InsufficientResourceCapacityFault) GoString() string
GoString returns the string representation
func (s *InsufficientResourceCapacityFault) Message() string
Message returns the exception's message.
func (s *InsufficientResourceCapacityFault) OrigErr() error
OrigErr always returns nil, satisfies awserr.Error interface.
func (s *InsufficientResourceCapacityFault) RequestID() string
RequestID returns the service's response RequestID for request.
func (s *InsufficientResourceCapacityFault) StatusCode() int
Status code returns the HTTP status code for the request's response error.
func (s InsufficientResourceCapacityFault) String() string
String returns the string representation
type InvalidCertificateFault struct { RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"` Message_ *string `locationName:"message" type:"string"` // contains filtered or unexported fields }
The certificate was not valid.
func (s *InvalidCertificateFault) Code() string
Code returns the exception type name.
func (s *InvalidCertificateFault) Error() string
func (s InvalidCertificateFault) GoString() string
GoString returns the string representation
func (s *InvalidCertificateFault) Message() string
Message returns the exception's message.
func (s *InvalidCertificateFault) OrigErr() error
OrigErr always returns nil, satisfies awserr.Error interface.
func (s *InvalidCertificateFault) RequestID() string
RequestID returns the service's response RequestID for request.
func (s *InvalidCertificateFault) StatusCode() int
Status code returns the HTTP status code for the request's response error.
func (s InvalidCertificateFault) String() string
String returns the string representation
type InvalidResourceStateFault struct { RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"` Message_ *string `locationName:"message" type:"string"` // contains filtered or unexported fields }
The resource is in a state that prevents it from being used for database migration.
func (s *InvalidResourceStateFault) Code() string
Code returns the exception type name.
func (s *InvalidResourceStateFault) Error() string
func (s InvalidResourceStateFault) GoString() string
GoString returns the string representation
func (s *InvalidResourceStateFault) Message() string
Message returns the exception's message.
func (s *InvalidResourceStateFault) OrigErr() error
OrigErr always returns nil, satisfies awserr.Error interface.
func (s *InvalidResourceStateFault) RequestID() string
RequestID returns the service's response RequestID for request.
func (s *InvalidResourceStateFault) StatusCode() int
Status code returns the HTTP status code for the request's response error.
func (s InvalidResourceStateFault) String() string
String returns the string representation
type InvalidSubnet struct { RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"` Message_ *string `locationName:"message" type:"string"` // contains filtered or unexported fields }
The subnet provided is invalid.
func (s *InvalidSubnet) Code() string
Code returns the exception type name.
func (s *InvalidSubnet) Error() string
func (s InvalidSubnet) GoString() string
GoString returns the string representation
func (s *InvalidSubnet) Message() string
Message returns the exception's message.
func (s *InvalidSubnet) OrigErr() error
OrigErr always returns nil, satisfies awserr.Error interface.
func (s *InvalidSubnet) RequestID() string
RequestID returns the service's response RequestID for request.
func (s *InvalidSubnet) StatusCode() int
Status code returns the HTTP status code for the request's response error.
func (s InvalidSubnet) String() string
String returns the string representation
type KMSAccessDeniedFault struct { RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"` Message_ *string `locationName:"message" type:"string"` // contains filtered or unexported fields }
The ciphertext references a key that doesn't exist or that the DMS account doesn't have access to.
func (s *KMSAccessDeniedFault) Code() string
Code returns the exception type name.
func (s *KMSAccessDeniedFault) Error() string
func (s KMSAccessDeniedFault) GoString() string
GoString returns the string representation
func (s *KMSAccessDeniedFault) Message() string
Message returns the exception's message.
func (s *KMSAccessDeniedFault) OrigErr() error
OrigErr always returns nil, satisfies awserr.Error interface.
func (s *KMSAccessDeniedFault) RequestID() string
RequestID returns the service's response RequestID for request.
func (s *KMSAccessDeniedFault) StatusCode() int
Status code returns the HTTP status code for the request's response error.
func (s KMSAccessDeniedFault) String() string
String returns the string representation
type KMSDisabledFault struct { RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"` Message_ *string `locationName:"message" type:"string"` // contains filtered or unexported fields }
The specified master key (CMK) isn't enabled.
func (s *KMSDisabledFault) Code() string
Code returns the exception type name.
func (s *KMSDisabledFault) Error() string
func (s KMSDisabledFault) GoString() string
GoString returns the string representation
func (s *KMSDisabledFault) Message() string
Message returns the exception's message.
func (s *KMSDisabledFault) OrigErr() error
OrigErr always returns nil, satisfies awserr.Error interface.
func (s *KMSDisabledFault) RequestID() string
RequestID returns the service's response RequestID for request.
func (s *KMSDisabledFault) StatusCode() int
Status code returns the HTTP status code for the request's response error.
func (s KMSDisabledFault) String() string
String returns the string representation
type KMSFault struct { RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"` Message_ *string `locationName:"message" type:"string"` // contains filtered or unexported fields }
An AWS Key Management Service (AWS KMS) error is preventing access to AWS KMS.
func (s *KMSFault) Code() string
Code returns the exception type name.
func (s *KMSFault) Error() string
func (s KMSFault) GoString() string
GoString returns the string representation
func (s *KMSFault) Message() string
Message returns the exception's message.
func (s *KMSFault) OrigErr() error
OrigErr always returns nil, satisfies awserr.Error interface.
func (s *KMSFault) RequestID() string
RequestID returns the service's response RequestID for request.
func (s *KMSFault) StatusCode() int
Status code returns the HTTP status code for the request's response error.
func (s KMSFault) String() string
String returns the string representation
type KMSInvalidStateFault struct { RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"` Message_ *string `locationName:"message" type:"string"` // contains filtered or unexported fields }
The state of the specified AWS KMS resource isn't valid for this request.
func (s *KMSInvalidStateFault) Code() string
Code returns the exception type name.
func (s *KMSInvalidStateFault) Error() string
func (s KMSInvalidStateFault) GoString() string
GoString returns the string representation
func (s *KMSInvalidStateFault) Message() string
Message returns the exception's message.
func (s *KMSInvalidStateFault) OrigErr() error
OrigErr always returns nil, satisfies awserr.Error interface.
func (s *KMSInvalidStateFault) RequestID() string
RequestID returns the service's response RequestID for request.
func (s *KMSInvalidStateFault) StatusCode() int
Status code returns the HTTP status code for the request's response error.
func (s KMSInvalidStateFault) String() string
String returns the string representation
type KMSKeyNotAccessibleFault struct { RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"` Message_ *string `locationName:"message" type:"string"` // contains filtered or unexported fields }
AWS DMS cannot access the AWS KMS key.
func (s *KMSKeyNotAccessibleFault) Code() string
Code returns the exception type name.
func (s *KMSKeyNotAccessibleFault) Error() string
func (s KMSKeyNotAccessibleFault) GoString() string
GoString returns the string representation
func (s *KMSKeyNotAccessibleFault) Message() string
Message returns the exception's message.
func (s *KMSKeyNotAccessibleFault) OrigErr() error
OrigErr always returns nil, satisfies awserr.Error interface.
func (s *KMSKeyNotAccessibleFault) RequestID() string
RequestID returns the service's response RequestID for request.
func (s *KMSKeyNotAccessibleFault) StatusCode() int
Status code returns the HTTP status code for the request's response error.
func (s KMSKeyNotAccessibleFault) String() string
String returns the string representation
type KMSNotFoundFault struct { RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"` Message_ *string `locationName:"message" type:"string"` // contains filtered or unexported fields }
The specified AWS KMS entity or resource can't be found.
func (s *KMSNotFoundFault) Code() string
Code returns the exception type name.
func (s *KMSNotFoundFault) Error() string
func (s KMSNotFoundFault) GoString() string
GoString returns the string representation
func (s *KMSNotFoundFault) Message() string
Message returns the exception's message.
func (s *KMSNotFoundFault) OrigErr() error
OrigErr always returns nil, satisfies awserr.Error interface.
func (s *KMSNotFoundFault) RequestID() string
RequestID returns the service's response RequestID for request.
func (s *KMSNotFoundFault) StatusCode() int
Status code returns the HTTP status code for the request's response error.
func (s KMSNotFoundFault) String() string
String returns the string representation
type KMSThrottlingFault struct { RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"` Message_ *string `locationName:"message" type:"string"` // contains filtered or unexported fields }
This request triggered AWS KMS request throttling.
func (s *KMSThrottlingFault) Code() string
Code returns the exception type name.
func (s *KMSThrottlingFault) Error() string
func (s KMSThrottlingFault) GoString() string
GoString returns the string representation
func (s *KMSThrottlingFault) Message() string
Message returns the exception's message.
func (s *KMSThrottlingFault) OrigErr() error
OrigErr always returns nil, satisfies awserr.Error interface.
func (s *KMSThrottlingFault) RequestID() string
RequestID returns the service's response RequestID for request.
func (s *KMSThrottlingFault) StatusCode() int
Status code returns the HTTP status code for the request's response error.
func (s KMSThrottlingFault) String() string
String returns the string representation
type KafkaSettings struct { // The broker location and port of the Kafka broker that hosts your Kafka instance. // Specify the broker in the form broker-hostname-or-ip:port . For example, // "ec2-12-345-678-901.compute-1.amazonaws.com:2345". Broker *string `type:"string"` // Shows detailed control information for table definition, column definition, // and table and column changes in the Kafka message output. The default is // false. IncludeControlDetails *bool `type:"boolean"` // Include NULL and empty columns for records migrated to the endpoint. The // default is false. IncludeNullAndEmpty *bool `type:"boolean"` // Shows the partition value within the Kafka message output, unless the partition // type is schema-table-type. The default is false. IncludePartitionValue *bool `type:"boolean"` // Includes any data definition language (DDL) operations that change the table // in the control data, such as rename-table, drop-table, add-column, drop-column, // and rename-column. The default is false. IncludeTableAlterOperations *bool `type:"boolean"` // Provides detailed transaction information from the source database. This // information includes a commit timestamp, a log position, and values for transaction_id, // previous transaction_id, and transaction_record_id (the record offset within // a transaction). The default is false. IncludeTransactionDetails *bool `type:"boolean"` // The output format for the records created on the endpoint. The message format // is JSON (default) or JSON_UNFORMATTED (a single line with no tab). MessageFormat *string `type:"string" enum:"MessageFormatValue"` // The maximum size in bytes for records created on the endpoint The default // is 1,000,000. MessageMaxBytes *int64 `type:"integer"` // Prefixes schema and table names to partition values, when the partition type // is primary-key-type. Doing this increases data distribution among Kafka partitions. // For example, suppose that a SysBench schema has thousands of tables and each // table has only limited range for a primary key. In this case, the same primary // key is sent from thousands of tables to the same partition, which causes // throttling. The default is false. PartitionIncludeSchemaTable *bool `type:"boolean"` // The topic to which you migrate the data. If you don't specify a topic, AWS // DMS specifies "kafka-default-topic" as the migration topic. Topic *string `type:"string"` // contains filtered or unexported fields }
Provides information that describes an Apache Kafka endpoint. This information includes the output format of records applied to the endpoint and details of transaction and control table data information.
func (s KafkaSettings) GoString() string
GoString returns the string representation
func (s *KafkaSettings) SetBroker(v string) *KafkaSettings
SetBroker sets the Broker field's value.
func (s *KafkaSettings) SetIncludeControlDetails(v bool) *KafkaSettings
SetIncludeControlDetails sets the IncludeControlDetails field's value.
func (s *KafkaSettings) SetIncludeNullAndEmpty(v bool) *KafkaSettings
SetIncludeNullAndEmpty sets the IncludeNullAndEmpty field's value.
func (s *KafkaSettings) SetIncludePartitionValue(v bool) *KafkaSettings
SetIncludePartitionValue sets the IncludePartitionValue field's value.
func (s *KafkaSettings) SetIncludeTableAlterOperations(v bool) *KafkaSettings
SetIncludeTableAlterOperations sets the IncludeTableAlterOperations field's value.
func (s *KafkaSettings) SetIncludeTransactionDetails(v bool) *KafkaSettings
SetIncludeTransactionDetails sets the IncludeTransactionDetails field's value.
func (s *KafkaSettings) SetMessageFormat(v string) *KafkaSettings
SetMessageFormat sets the MessageFormat field's value.
func (s *KafkaSettings) SetMessageMaxBytes(v int64) *KafkaSettings
SetMessageMaxBytes sets the MessageMaxBytes field's value.
func (s *KafkaSettings) SetPartitionIncludeSchemaTable(v bool) *KafkaSettings
SetPartitionIncludeSchemaTable sets the PartitionIncludeSchemaTable field's value.
func (s *KafkaSettings) SetTopic(v string) *KafkaSettings
SetTopic sets the Topic field's value.
func (s KafkaSettings) String() string
String returns the string representation
type KinesisSettings struct { // Shows detailed control information for table definition, column definition, // and table and column changes in the Kinesis message output. The default is // false. IncludeControlDetails *bool `type:"boolean"` // Include NULL and empty columns for records migrated to the endpoint. The // default is false. IncludeNullAndEmpty *bool `type:"boolean"` // Shows the partition value within the Kinesis message output, unless the partition // type is schema-table-type. The default is false. IncludePartitionValue *bool `type:"boolean"` // Includes any data definition language (DDL) operations that change the table // in the control data, such as rename-table, drop-table, add-column, drop-column, // and rename-column. The default is false. IncludeTableAlterOperations *bool `type:"boolean"` // Provides detailed transaction information from the source database. This // information includes a commit timestamp, a log position, and values for transaction_id, // previous transaction_id, and transaction_record_id (the record offset within // a transaction). The default is false. IncludeTransactionDetails *bool `type:"boolean"` // The output format for the records created on the endpoint. The message format // is JSON (default) or JSON_UNFORMATTED (a single line with no tab). MessageFormat *string `type:"string" enum:"MessageFormatValue"` // Prefixes schema and table names to partition values, when the partition type // is primary-key-type. Doing this increases data distribution among Kinesis // shards. For example, suppose that a SysBench schema has thousands of tables // and each table has only limited range for a primary key. In this case, the // same primary key is sent from thousands of tables to the same shard, which // causes throttling. The default is false. PartitionIncludeSchemaTable *bool `type:"boolean"` // The Amazon Resource Name (ARN) for the AWS Identity and Access Management // (IAM) role that AWS DMS uses to write to the Kinesis data stream. ServiceAccessRoleArn *string `type:"string"` // The Amazon Resource Name (ARN) for the Amazon Kinesis Data Streams endpoint. StreamArn *string `type:"string"` // contains filtered or unexported fields }
Provides information that describes an Amazon Kinesis Data Stream endpoint. This information includes the output format of records applied to the endpoint and details of transaction and control table data information.
func (s KinesisSettings) GoString() string
GoString returns the string representation
func (s *KinesisSettings) SetIncludeControlDetails(v bool) *KinesisSettings
SetIncludeControlDetails sets the IncludeControlDetails field's value.
func (s *KinesisSettings) SetIncludeNullAndEmpty(v bool) *KinesisSettings
SetIncludeNullAndEmpty sets the IncludeNullAndEmpty field's value.
func (s *KinesisSettings) SetIncludePartitionValue(v bool) *KinesisSettings
SetIncludePartitionValue sets the IncludePartitionValue field's value.
func (s *KinesisSettings) SetIncludeTableAlterOperations(v bool) *KinesisSettings
SetIncludeTableAlterOperations sets the IncludeTableAlterOperations field's value.
func (s *KinesisSettings) SetIncludeTransactionDetails(v bool) *KinesisSettings
SetIncludeTransactionDetails sets the IncludeTransactionDetails field's value.
func (s *KinesisSettings) SetMessageFormat(v string) *KinesisSettings
SetMessageFormat sets the MessageFormat field's value.
func (s *KinesisSettings) SetPartitionIncludeSchemaTable(v bool) *KinesisSettings
SetPartitionIncludeSchemaTable sets the PartitionIncludeSchemaTable field's value.
func (s *KinesisSettings) SetServiceAccessRoleArn(v string) *KinesisSettings
SetServiceAccessRoleArn sets the ServiceAccessRoleArn field's value.
func (s *KinesisSettings) SetStreamArn(v string) *KinesisSettings
SetStreamArn sets the StreamArn field's value.
func (s KinesisSettings) String() string
String returns the string representation
type ListTagsForResourceInput struct { // The Amazon Resource Name (ARN) string that uniquely identifies the AWS DMS // resource. // // ResourceArn is a required field ResourceArn *string `type:"string" required:"true"` // contains filtered or unexported fields }
func (s ListTagsForResourceInput) GoString() string
GoString returns the string representation
func (s *ListTagsForResourceInput) SetResourceArn(v string) *ListTagsForResourceInput
SetResourceArn sets the ResourceArn field's value.
func (s ListTagsForResourceInput) String() string
String returns the string representation
func (s *ListTagsForResourceInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type ListTagsForResourceOutput struct { // A list of tags for the resource. TagList []*Tag `type:"list"` // contains filtered or unexported fields }
func (s ListTagsForResourceOutput) GoString() string
GoString returns the string representation
func (s *ListTagsForResourceOutput) SetTagList(v []*Tag) *ListTagsForResourceOutput
SetTagList sets the TagList field's value.
func (s ListTagsForResourceOutput) String() string
String returns the string representation
type MicrosoftSQLServerSettings struct { // The maximum size of the packets (in bytes) used to transfer data using BCP. BcpPacketSize *int64 `type:"integer"` // Specifies a file group for the AWS DMS internal tables. When the replication // task starts, all the internal AWS DMS control tables (awsdms_ apply_exception, // awsdms_apply, awsdms_changes) are created for the specified file group. ControlTablesFileGroup *string `type:"string"` // Database name for the endpoint. DatabaseName *string `type:"string"` // Endpoint connection password. Password *string `type:"string" sensitive:"true"` // Endpoint TCP port. Port *int64 `type:"integer"` // When this attribute is set to Y, AWS DMS only reads changes from transaction // log backups and doesn't read from the active transaction log file during // ongoing replication. Setting this parameter to Y enables you to control active // transaction log file growth during full load and ongoing replication tasks. // However, it can add some source latency to ongoing replication. ReadBackupOnly *bool `type:"boolean"` // Use this attribute to minimize the need to access the backup log and enable // AWS DMS to prevent truncation using one of the following two methods. // // Start transactions in the database: This is the default method. When this // method is used, AWS DMS prevents TLOG truncation by mimicking a transaction // in the database. As long as such a transaction is open, changes that appear // after the transaction started aren't truncated. If you need Microsoft Replication // to be enabled in your database, then you must choose this method. // // Exclusively use sp_repldone within a single task: When this method is used, // AWS DMS reads the changes and then uses sp_repldone to mark the TLOG transactions // as ready for truncation. Although this method doesn't involve any transactional // activities, it can only be used when Microsoft Replication isn't running. // Also, when using this method, only one AWS DMS task can access the database // at any given time. Therefore, if you need to run parallel AWS DMS tasks against // the same database, use the default method. SafeguardPolicy *string `type:"string" enum:"SafeguardPolicy"` // The full Amazon Resource Name (ARN) of the IAM role that specifies AWS DMS // as the trusted entity and grants the required permissions to access the value // in SecretsManagerSecret. SecretsManagerSecret has the value of the AWS Secrets // Manager secret that allows access to the SQL Server endpoint. // // You can specify one of two sets of values for these permissions. You can // specify the values for this setting and SecretsManagerSecretId. Or you can // specify clear-text values for UserName, Password, ServerName, and Port. You // can't specify both. For more information on creating this SecretsManagerSecret // and the SecretsManagerAccessRoleArn and SecretsManagerSecretId required to // access it, see Using secrets to access AWS Database Migration Service resources // (https://docs.aws.amazon.com/https:/docs.aws.amazon.com/dms/latest/userguide/CHAP_Security.html#security-iam-secretsmanager) // in the AWS Database Migration Service User Guide. SecretsManagerAccessRoleArn *string `type:"string"` // The full ARN, partial ARN, or friendly name of the SecretsManagerSecret that // contains the SQL Server endpoint connection details. SecretsManagerSecretId *string `type:"string"` // Fully qualified domain name of the endpoint. ServerName *string `type:"string"` // Use this to attribute to transfer data for full-load operations using BCP. // When the target table contains an identity column that does not exist in // the source table, you must disable the use BCP for loading table option. UseBcpFullLoad *bool `type:"boolean"` // Endpoint connection user name. Username *string `type:"string"`