Struct rusoto_dms::ModifyEndpointMessage[][src]

pub struct ModifyEndpointMessage {
    pub certificate_arn: Option<String>,
    pub database_name: Option<String>,
    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 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 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.

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, redshift, S3, sybase, dynamodb, mongodb, and sqlserver.

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 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 Default for ModifyEndpointMessage
[src]

Returns the "default value" for a type. Read more

impl Debug for ModifyEndpointMessage
[src]

Formats the value using the given formatter. Read more

impl Clone for ModifyEndpointMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ModifyEndpointMessage
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations