[][src]Struct rusoto_dms::ModifyEndpointMessage

pub struct ModifyEndpointMessage {
    pub certificate_arn: Option<String>,
    pub database_name: Option<String>,
    pub dms_transfer_settings: Option<DmsTransferSettings>,
    pub dynamo_db_settings: Option<DynamoDbSettings>,
    pub endpoint_arn: String,
    pub endpoint_identifier: Option<String>,
    pub endpoint_type: Option<String>,
    pub engine_name: Option<String>,
    pub external_table_definition: Option<String>,
    pub extra_connection_attributes: Option<String>,
    pub mongo_db_settings: Option<MongoDbSettings>,
    pub password: Option<String>,
    pub port: Option<i64>,
    pub s3_settings: Option<S3Settings>,
    pub server_name: Option<String>,
    pub service_access_role_arn: Option<String>,
    pub ssl_mode: Option<String>,
    pub username: Option<String>,
}

Fields

The Amazon Resource Name (ARN) of the certificate used for SSL connection.

The name of the endpoint database.

The settings in JSON format for the DMS Transfer type source endpoint.

Attributes include:

  • 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. Set to NONE (the default) or do not use to leave the files uncompressed.

Shorthand syntax: ServiceAccessRoleArn=string ,BucketName=string,CompressionType=string

JSON syntax:

{ "ServiceAccessRoleArn": "string", "BucketName": "string", "CompressionType": "none"|"gzip" }

Settings in JSON format for the target Amazon DynamoDB endpoint. For more information about the available settings, see the Using Object Mapping to Migrate Data to DynamoDB section at Using an Amazon DynamoDB Database as a Target for AWS Database Migration Service.

The Amazon Resource Name (ARN) string that uniquely identifies the endpoint.

The database endpoint identifier. Identifiers must begin with a letter; must contain only ASCII letters, digits, and hyphens; and must not end with a hyphen or contain two consecutive hyphens.

The type of endpoint.

The type of engine for the endpoint. Valid values, depending on the EndPointType, include mysql, oracle, postgres, mariadb, aurora, aurora-postgresql, redshift, s3, db2, azuredb, sybase, sybase, dynamodb, mongodb, and sqlserver.

The external table definition.

Additional attributes associated with the connection. To reset this parameter, pass the empty string ("") as an argument.

Settings in JSON format for the source MongoDB endpoint. For more information about the available settings, see the Configuration Properties When Using MongoDB as a Source for AWS Database Migration Service section at Using Amazon S3 as a Target for AWS Database Migration Service.

The password to be used to login to the endpoint database.

The port used by the endpoint database.

Settings in JSON format for the target S3 endpoint. For more information about the available settings, see the Extra Connection Attributes section at Using Amazon S3 as a Target for AWS Database Migration Service.

The name of the server where the endpoint database resides.

The Amazon Resource Name (ARN) for the service access role you want to use to modify the endpoint.

The SSL mode to be used.

SSL mode can be one of four values: none, require, verify-ca, verify-full.

The default value is none.

The user name to be used to login to the endpoint database.

Trait Implementations

impl Clone for ModifyEndpointMessage
[src]

Performs copy-assignment from source. Read more

impl Default for ModifyEndpointMessage
[src]

impl PartialEq<ModifyEndpointMessage> for ModifyEndpointMessage
[src]

impl Debug for ModifyEndpointMessage
[src]

impl Serialize for ModifyEndpointMessage
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same for T

Should always be Self

impl<T> Erased for T