[][src]Struct rusoto_dms::Endpoint

pub struct Endpoint {
    pub certificate_arn: Option<String>,
    pub database_name: Option<String>,
    pub dms_transfer_settings: Option<DmsTransferSettings>,
    pub dynamo_db_settings: Option<DynamoDbSettings>,
    pub elasticsearch_settings: Option<ElasticsearchSettings>,
    pub endpoint_arn: Option<String>,
    pub endpoint_identifier: Option<String>,
    pub endpoint_type: Option<String>,
    pub engine_display_name: Option<String>,
    pub engine_name: Option<String>,
    pub external_id: Option<String>,
    pub external_table_definition: Option<String>,
    pub extra_connection_attributes: Option<String>,
    pub kinesis_settings: Option<KinesisSettings>,
    pub kms_key_id: Option<String>,
    pub mongo_db_settings: Option<MongoDbSettings>,
    pub port: Option<i64>,
    pub redshift_settings: Option<RedshiftSettings>,
    pub s3_settings: Option<S3Settings>,
    pub server_name: Option<String>,
    pub service_access_role_arn: Option<String>,
    pub ssl_mode: Option<String>,
    pub status: Option<String>,
    pub username: Option<String>,
}

Fields

certificate_arn: Option<String>

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

database_name: Option<String>

The name of the database at the endpoint.

dms_transfer_settings: Option<DmsTransferSettings>

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

Possible attributes include the following:

Shorthand syntax for these attributes is as follows: ServiceAccessRoleArn=string,BucketName=string,CompressionType=string

JSON syntax for these attributes is as follows: { "ServiceAccessRoleArn": "string", "BucketName": "string", "CompressionType": "none"|"gzip" }

dynamo_db_settings: Option<DynamoDbSettings>

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

elasticsearch_settings: Option<ElasticsearchSettings>

The settings for the Elasticsearch source endpoint. For more information, see the ElasticsearchSettings structure.

endpoint_arn: Option<String>

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

endpoint_identifier: Option<String>

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.

endpoint_type: Option<String>

The type of endpoint.

engine_display_name: Option<String>

The expanded name for the engine name. For example, if the EngineName parameter is "aurora," this value would be "Amazon Aurora MySQL."

engine_name: Option<String>

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

external_id: Option<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.

external_table_definition: Option<String>

The external table definition.

extra_connection_attributes: Option<String>

Additional connection attributes used to connect to the endpoint.

kinesis_settings: Option<KinesisSettings>

The settings for the Amazon Kinesis source endpoint. For more information, see the KinesisSettings structure.

kms_key_id: Option<String>

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.

mongo_db_settings: Option<MongoDbSettings>

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

port: Option<i64>

The port value used to access the endpoint.

redshift_settings: Option<RedshiftSettings>

Settings for the Amazon Redshift endpoint

s3_settings: Option<S3Settings>

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

server_name: Option<String>

The name of the server at the endpoint.

service_access_role_arn: Option<String>

The Amazon Resource Name (ARN) used by the service access IAM role.

ssl_mode: Option<String>

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.

status: Option<String>

The status of the endpoint.

username: Option<String>

The user name used to connect to the endpoint.

Trait Implementations

impl PartialEq<Endpoint> for Endpoint[src]

impl Default for Endpoint[src]

impl Clone for Endpoint[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Endpoint[src]

impl<'de> Deserialize<'de> for Endpoint[src]

Auto Trait Implementations

impl Send for Endpoint

impl Sync for Endpoint

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]

type Owned = T

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

type Error = !

🔬 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> BorrowMut for T where
    T: ?Sized
[src]

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

type Error = <U as TryFrom<T>>::Error

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

The type returned in the event of a conversion error.

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self