Interface CfnDataProviderProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataProviderProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:07.020Z")
@Stability(Stable)
public interface CfnDataProviderProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnDataProvider
.
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.*; CfnDataProviderProps cfnDataProviderProps = CfnDataProviderProps.builder() .engine("engine") // the properties below are optional .dataProviderIdentifier("dataProviderIdentifier") .dataProviderName("dataProviderName") .description("description") .exactSettings(false) .settings(SettingsProperty.builder() .microsoftSqlServerSettings(MicrosoftSqlServerSettingsProperty.builder() .databaseName("databaseName") .port(123) .serverName("serverName") .sslMode("sslMode") // the properties below are optional .certificateArn("certificateArn") .build()) .mySqlSettings(MySqlSettingsProperty.builder() .port(123) .serverName("serverName") .sslMode("sslMode") // the properties below are optional .certificateArn("certificateArn") .build()) .oracleSettings(OracleSettingsProperty.builder() .databaseName("databaseName") .port(123) .serverName("serverName") .sslMode("sslMode") // the properties below are optional .asmServer("asmServer") .certificateArn("certificateArn") .secretsManagerOracleAsmAccessRoleArn("secretsManagerOracleAsmAccessRoleArn") .secretsManagerOracleAsmSecretId("secretsManagerOracleAsmSecretId") .secretsManagerSecurityDbEncryptionAccessRoleArn("secretsManagerSecurityDbEncryptionAccessRoleArn") .secretsManagerSecurityDbEncryptionSecretId("secretsManagerSecurityDbEncryptionSecretId") .build()) .postgreSqlSettings(PostgreSqlSettingsProperty.builder() .databaseName("databaseName") .port(123) .serverName("serverName") .sslMode("sslMode") // the properties below are optional .certificateArn("certificateArn") .build()) .build()) .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDataProviderProps
static final class
An implementation forCfnDataProviderProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnDataProviderProps.Builder
builder()
default String
The identifier of the data provider.default String
The name of the data provider.default String
A description of the data provider.The type of database engine for the data provider.default Object
The property describes the exact settings which can be modified.default Object
The settings in JSON format for a data provider.getTags()
An array of key-value pairs to apply to this resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEngine
The type of database engine for the data provider.Valid values include
"aurora"
,"aurora-postgresql"
,"mysql"
,"oracle"
,"postgres"
,"sqlserver"
,redshift
,mariadb
,mongodb
, anddocdb
. A value of"aurora"
represents Amazon Aurora MySQL-Compatible Edition.- See Also:
-
getDataProviderIdentifier
The identifier of the data provider.Identifiers must begin with a letter and must contain only ASCII letters, digits, and hyphens. They can't end with a hyphen, or contain two consecutive hyphens.
- See Also:
-
getDataProviderName
The name of the data provider.- See Also:
-
getDescription
A description of the data provider.Descriptions can have up to 31 characters. A description can contain only ASCII letters, digits, and hyphens ('-'). Also, it can't end with a hyphen or contain two consecutive hyphens, and can only begin with a letter.
- See Also:
-
getExactSettings
The property describes the exact settings which can be modified.Default: - false
- See Also:
-
getSettings
The settings in JSON format for a data provider.- See Also:
-
getTags
An array of key-value pairs to apply to this resource.- See Also:
-
builder
- Returns:
- a
CfnDataProviderProps.Builder
ofCfnDataProviderProps
-