Struct cfn::aws::dms::EndpointProperties [] [src]

pub struct EndpointProperties {
    pub certificate_arn: Option<Value<String>>,
    pub database_name: Option<Value<String>>,
    pub dynamo_db_settings: Option<Value<DynamoDbSettings>>,
    pub endpoint_identifier: Option<Value<String>>,
    pub endpoint_type: Value<String>,
    pub engine_name: Value<String>,
    pub extra_connection_attributes: Option<Value<String>>,
    pub kms_key_id: Option<Value<String>>,
    pub mongo_db_settings: Option<Value<MongoDbSettings>>,
    pub password: Option<Value<String>>,
    pub port: Option<Value<u32>>,
    pub s3_settings: Option<Value<S3Settings>>,
    pub server_name: Option<Value<String>>,
    pub ssl_mode: Option<Value<String>>,
    pub tags: Option<ValueList<Tag>>,
    pub username: Option<Value<String>>,
}

Properties for the Endpoint resource.

Fields

Property CertificateArn.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property DatabaseName.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property DynamoDbSettings.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property EndpointIdentifier.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property EndpointType.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property EngineName.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property ExtraConnectionAttributes.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property KmsKeyId.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property MongoDbSettings.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Password.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Port.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property S3Settings.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property ServerName.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property SslMode.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Tags.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property Username.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Trait Implementations

impl Debug for EndpointProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for EndpointProperties
[src]

[src]

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

impl Serialize for EndpointProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<EndpointProperties> for Endpoint
[src]

[src]

Performs the conversion.

Auto Trait Implementations