Struct rusoto_dms::Endpoint[][src]

pub struct Endpoint {
    pub certificate_arn: Option<String>,
    pub database_name: Option<String>,
    pub dynamo_db_settings: Option<DynamoDbSettings>,
    pub endpoint_arn: Option<String>,
    pub endpoint_identifier: Option<String>,
    pub endpoint_type: Option<String>,
    pub engine_name: Option<String>,
    pub external_id: Option<String>,
    pub extra_connection_attributes: Option<String>,
    pub kms_key_id: Option<String>,
    pub mongo_db_settings: Option<MongoDbSettings>,
    pub port: Option<i64>,
    pub s3_settings: Option<S3Settings>,
    pub server_name: Option<String>,
    pub ssl_mode: Option<String>,
    pub status: Option<String>,
    pub username: Option<String>,
}

Fields

The Amazon Resource Name (ARN) used for SSL connection to the endpoint.

The name of the database at the endpoint.

The settings for the target DynamoDB database. For more information, see the DynamoDBSettings structure.

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 database engine name. Valid values, depending on the EndPointType, include mysql, oracle, postgres, mariadb, aurora, redshift, S3, sybase, dynamodb, mongodb, and sqlserver.

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.

Additional connection attributes used to connect to the endpoint.

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.

The settings for the MongoDB source endpoint. For more information, see the MongoDbSettings structure.

The port value used to access the endpoint.

The settings for the S3 target endpoint. For more information, see the S3Settings structure.

The name of the server at the endpoint.

The SSL mode used to connect to the endpoint.

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

The default value is none.

The status of the endpoint.

The user name used to connect to the endpoint.

Trait Implementations

impl Default for Endpoint
[src]

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

impl Debug for Endpoint
[src]

Formats the value using the given formatter. Read more

impl Clone for Endpoint
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

impl Send for Endpoint

impl Sync for Endpoint