Interface CfnEndpoint.RedisSettingsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEndpoint.RedisSettingsProperty.Jsii$Proxy
- Enclosing class:
CfnEndpoint
This information includes the output format of records applied to the endpoint and details of transaction and control table data information. For information about other available settings, see Specifying endpoint settings for Redis as a target in the AWS Database Migration Service User Guide .
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.dms.*; RedisSettingsProperty redisSettingsProperty = RedisSettingsProperty.builder() .authPassword("authPassword") .authType("authType") .authUserName("authUserName") .port(123) .serverName("serverName") .sslCaCertificateArn("sslCaCertificateArn") .sslSecurityProtocol("sslSecurityProtocol") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnEndpoint.RedisSettingsProperty
static final class
An implementation forCfnEndpoint.RedisSettingsProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The password provided with theauth-role
andauth-token
options of theAuthType
setting for a Redis target endpoint.default String
The type of authentication to perform when connecting to a Redis target.default String
The user name provided with theauth-role
option of theAuthType
setting for a Redis target endpoint.default Number
getPort()
Transmission Control Protocol (TCP) port for the endpoint.default String
Fully qualified domain name of the endpoint.default String
The Amazon Resource Name (ARN) for the certificate authority (CA) that DMS uses to connect to your Redis target endpoint.default String
The connection to a Redis target endpoint using Transport Layer Security (TLS).Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAuthPassword
The password provided with theauth-role
andauth-token
options of theAuthType
setting for a Redis target endpoint.- See Also:
-
getAuthType
The type of authentication to perform when connecting to a Redis target.Options include
none
,auth-token
, andauth-role
. Theauth-token
option requires anAuthPassword
value to be provided. Theauth-role
option requiresAuthUserName
andAuthPassword
values to be provided.- See Also:
-
getAuthUserName
The user name provided with theauth-role
option of theAuthType
setting for a Redis target endpoint.- See Also:
-
getPort
Transmission Control Protocol (TCP) port for the endpoint.- See Also:
-
getServerName
Fully qualified domain name of the endpoint.- See Also:
-
getSslCaCertificateArn
The Amazon Resource Name (ARN) for the certificate authority (CA) that DMS uses to connect to your Redis target endpoint.- See Also:
-
getSslSecurityProtocol
The connection to a Redis target endpoint using Transport Layer Security (TLS).Valid values include
plaintext
andssl-encryption
. The default isssl-encryption
. Thessl-encryption
option makes an encrypted connection. Optionally, you can identify an Amazon Resource Name (ARN) for an SSL certificate authority (CA) using theSslCaCertificateArn
setting. If an ARN isn't given for a CA, DMS uses the Amazon root CA.The
plaintext
option doesn't provide Transport Layer Security (TLS) encryption for traffic between endpoint and database.- See Also:
-
builder
-