Struct rusoto_dms::CreateEndpointMessage[][src]

pub struct CreateEndpointMessage {
    pub certificate_arn: Option<String>,
    pub database_name: Option<String>,
    pub dynamo_db_settings: Option<DynamoDbSettings>,
    pub endpoint_identifier: String,
    pub endpoint_type: String,
    pub engine_name: String,
    pub extra_connection_attributes: Option<String>,
    pub kms_key_id: 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 tags: Option<Vec<Tag>>,
    pub username: Option<String>,
}

Fields

The Amazon Resource Name (ARN) for the certificate.

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 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.

The KMS key identifier that will be used to encrypt the connection parameters. If you do not specify a value for the KmsKeyId parameter, then AWS DMS will use 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.

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 use for the SSL connection.

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

The default value is none.

Tags to be added to the endpoint.

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

Trait Implementations

impl Default for CreateEndpointMessage
[src]

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

impl Debug for CreateEndpointMessage
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateEndpointMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CreateEndpointMessage
[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