Class CfnDataProvider
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.CfnElement
software.amazon.awscdk.CfnRefElement
software.amazon.awscdk.CfnResource
software.amazon.awscdk.services.dms.CfnDataProvider
- All Implemented Interfaces:
IInspectable
,ITaggableV2
,software.amazon.jsii.JsiiSerializable
,software.constructs.IConstruct
,software.constructs.IDependable
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-21T06:34:06.263Z")
@Stability(Stable)
public class CfnDataProvider
extends CfnResource
implements IInspectable, ITaggableV2
Provides information that defines a data provider.
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.*; CfnDataProvider cfnDataProvider = CfnDataProvider.Builder.create(this, "MyCfnDataProvider") .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 TypeClassDescriptionstatic final class
A fluent builder forCfnDataProvider
.static interface
Provides information that defines a Microsoft SQL Server endpoint.static interface
Provides information that defines a MySQL endpoint.static interface
Provides information that defines an Oracle endpoint.static interface
Provides information that defines a PostgreSQL endpoint.static interface
The property identifies the exact type of settings for the data provider.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
Nested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.amazon.awscdk.IInspectable
IInspectable.Jsii$Default, IInspectable.Jsii$Proxy
Nested classes/interfaces inherited from interface software.amazon.awscdk.ITaggableV2
ITaggableV2.Jsii$Default, ITaggableV2.Jsii$Proxy
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
The CloudFormation resource type name for this resource class. -
Constructor Summary
ModifierConstructorDescriptionprotected
CfnDataProvider
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
CfnDataProvider
(software.amazon.jsii.JsiiObjectRef objRef) CfnDataProvider
(software.constructs.Construct scope, String id, CfnDataProviderProps props) -
Method Summary
Modifier and TypeMethodDescriptionThe Amazon Resource Name (ARN) string that uniquely identifies the data provider.The time the data provider was created.Tag Manager which manages the tags for this resource.The identifier of the data provider.The name of the data provider.A description of the data provider.The type of database engine for the data provider.The property describes the exact settings which can be modified.The settings in JSON format for a data provider.getTags()
An array of key-value pairs to apply to this resource.void
inspect
(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.renderProperties
(Map<String, Object> props) void
setDataProviderIdentifier
(String value) The identifier of the data provider.void
setDataProviderName
(String value) The name of the data provider.void
setDescription
(String value) A description of the data provider.void
The type of database engine for the data provider.void
setExactSettings
(Boolean value) The property describes the exact settings which can be modified.void
setExactSettings
(IResolvable value) The property describes the exact settings which can be modified.void
setSettings
(IResolvable value) The settings in JSON format for a data provider.void
The settings in JSON format for a data provider.void
An array of key-value pairs to apply to this resource.Methods inherited from class software.amazon.awscdk.CfnResource
addDeletionOverride, addDependency, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, obtainDependencies, obtainResourceDependencies, removeDependency, replaceDependency, shouldSynthesize, toString, validateProperties
Methods inherited from class software.amazon.awscdk.CfnRefElement
getRef
Methods inherited from class software.amazon.awscdk.CfnElement
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalId
Methods inherited from class software.constructs.Construct
getNode, isConstruct
Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
-
-
Constructor Details
-
CfnDataProvider
protected CfnDataProvider(software.amazon.jsii.JsiiObjectRef objRef) -
CfnDataProvider
protected CfnDataProvider(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnDataProvider
@Stability(Stable) public CfnDataProvider(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnDataProviderProps props) - Parameters:
scope
- Scope in which this resource is defined. This parameter is required.id
- Construct identifier for this resource (unique in its scope). This parameter is required.props
- Resource properties. This parameter is required.
-
-
Method Details
-
inspect
Examines the CloudFormation resource and discloses attributes.- Specified by:
inspect
in interfaceIInspectable
- Parameters:
inspector
- tree inspector to collect and process attributes. This parameter is required.
-
renderProperties
@Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String, Object> props) - Overrides:
renderProperties
in classCfnResource
- Parameters:
props
- This parameter is required.
-
getAttrDataProviderArn
The Amazon Resource Name (ARN) string that uniquely identifies the data provider. -
getAttrDataProviderCreationTime
The time the data provider was created. -
getCdkTagManager
Tag Manager which manages the tags for this resource.- Specified by:
getCdkTagManager
in interfaceITaggableV2
-
getCfnProperties
- Overrides:
getCfnProperties
in classCfnResource
-
getEngine
The type of database engine for the data provider. -
setEngine
The type of database engine for the data provider. -
getDataProviderIdentifier
The identifier of the data provider. -
setDataProviderIdentifier
The identifier of the data provider. -
getDataProviderName
The name of the data provider. -
setDataProviderName
The name of the data provider. -
getDescription
A description of the data provider. -
setDescription
A description of the data provider. -
getExactSettings
The property describes the exact settings which can be modified. -
setExactSettings
The property describes the exact settings which can be modified. -
setExactSettings
The property describes the exact settings which can be modified. -
getSettings
The settings in JSON format for a data provider. -
setSettings
The settings in JSON format for a data provider. -
setSettings
The settings in JSON format for a data provider. -
getTags
An array of key-value pairs to apply to this resource. -
setTags
An array of key-value pairs to apply to this resource.
-