Class CfnReplicationConfig
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.CfnReplicationConfig
- All Implemented Interfaces:
IInspectable
,ITaggableV2
,software.amazon.jsii.JsiiSerializable
,software.constructs.IConstruct
,software.constructs.IDependable
@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)",
date="2024-10-04T00:39:30.556Z")
@Stability(Stable)
public class CfnReplicationConfig
extends CfnResource
implements IInspectable, ITaggableV2
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationconfig.html.
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.*; Object replicationSettings; Object supplementalSettings; Object tableMappings; CfnReplicationConfig cfnReplicationConfig = CfnReplicationConfig.Builder.create(this, "MyCfnReplicationConfig") .computeConfig(ComputeConfigProperty.builder() .maxCapacityUnits(123) // the properties below are optional .availabilityZone("availabilityZone") .dnsNameServers("dnsNameServers") .kmsKeyId("kmsKeyId") .minCapacityUnits(123) .multiAz(false) .preferredMaintenanceWindow("preferredMaintenanceWindow") .replicationSubnetGroupId("replicationSubnetGroupId") .vpcSecurityGroupIds(List.of("vpcSecurityGroupIds")) .build()) .replicationConfigIdentifier("replicationConfigIdentifier") .replicationType("replicationType") .sourceEndpointArn("sourceEndpointArn") .tableMappings(tableMappings) .targetEndpointArn("targetEndpointArn") // the properties below are optional .replicationSettings(replicationSettings) .resourceIdentifier("resourceIdentifier") .supplementalSettings(supplementalSettings) .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic final class
A fluent builder forCfnReplicationConfig
.static interface
Configuration parameters for provisioning an AWS DMS Serverless replication.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
CfnReplicationConfig
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
CfnReplicationConfig
(software.amazon.jsii.JsiiObjectRef objRef) CfnReplicationConfig
(software.constructs.Construct scope, String id, CfnReplicationConfigProps props) -
Method Summary
Modifier and TypeMethodDescriptionThe Amazon Resource Name (ARN) of this AWS DMS Serverless replication configuration.Tag Manager which manages the tags for this resource.Configuration parameters for provisioning an AWS DMS Serverless replication.A unique identifier that you want to use to create aReplicationConfigArn
that is returned as part of the output from this action.Optional JSON settings for AWS DMS Serverless replications that are provisioned using this replication configuration.The type of AWS DMS Serverless replication to provision using this replication configuration.Optional unique value or name that you set for a given resource that can be used to construct an Amazon Resource Name (ARN) for that resource.The Amazon Resource Name (ARN) of the source endpoint for this AWS DMS Serverless replication configuration.Optional JSON settings for specifying supplemental data.JSON table mappings for AWS DMS Serverless replications that are provisioned using this replication configuration.getTags()
One or more optional tags associated with resources used by the AWS DMS Serverless replication.The Amazon Resource Name (ARN) of the target endpoint for this AWS DMS serverless replication configuration.void
inspect
(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.renderProperties
(Map<String, Object> props) void
setComputeConfig
(IResolvable value) Configuration parameters for provisioning an AWS DMS Serverless replication.void
Configuration parameters for provisioning an AWS DMS Serverless replication.void
A unique identifier that you want to use to create aReplicationConfigArn
that is returned as part of the output from this action.void
setReplicationSettings
(Object value) Optional JSON settings for AWS DMS Serverless replications that are provisioned using this replication configuration.void
setReplicationType
(String value) The type of AWS DMS Serverless replication to provision using this replication configuration.void
setResourceIdentifier
(String value) Optional unique value or name that you set for a given resource that can be used to construct an Amazon Resource Name (ARN) for that resource.void
setSourceEndpointArn
(String value) The Amazon Resource Name (ARN) of the source endpoint for this AWS DMS Serverless replication configuration.void
setSupplementalSettings
(Object value) Optional JSON settings for specifying supplemental data.void
setTableMappings
(Object value) JSON table mappings for AWS DMS Serverless replications that are provisioned using this replication configuration.void
One or more optional tags associated with resources used by the AWS DMS Serverless replication.void
setTargetEndpointArn
(String value) The Amazon Resource Name (ARN) of the target endpoint for this AWS DMS serverless replication configuration.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
-
CfnReplicationConfig
protected CfnReplicationConfig(software.amazon.jsii.JsiiObjectRef objRef) -
CfnReplicationConfig
protected CfnReplicationConfig(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnReplicationConfig
@Stability(Stable) public CfnReplicationConfig(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnReplicationConfigProps 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.
-
getAttrReplicationConfigArn
The Amazon Resource Name (ARN) of this AWS DMS Serverless replication configuration. -
getCdkTagManager
Tag Manager which manages the tags for this resource.- Specified by:
getCdkTagManager
in interfaceITaggableV2
-
getCfnProperties
- Overrides:
getCfnProperties
in classCfnResource
-
getComputeConfig
Configuration parameters for provisioning an AWS DMS Serverless replication. -
setComputeConfig
Configuration parameters for provisioning an AWS DMS Serverless replication. -
setComputeConfig
@Stability(Stable) public void setComputeConfig(@NotNull CfnReplicationConfig.ComputeConfigProperty value) Configuration parameters for provisioning an AWS DMS Serverless replication. -
getReplicationConfigIdentifier
A unique identifier that you want to use to create aReplicationConfigArn
that is returned as part of the output from this action. -
setReplicationConfigIdentifier
A unique identifier that you want to use to create aReplicationConfigArn
that is returned as part of the output from this action. -
getReplicationType
The type of AWS DMS Serverless replication to provision using this replication configuration. -
setReplicationType
The type of AWS DMS Serverless replication to provision using this replication configuration. -
getSourceEndpointArn
The Amazon Resource Name (ARN) of the source endpoint for this AWS DMS Serverless replication configuration. -
setSourceEndpointArn
The Amazon Resource Name (ARN) of the source endpoint for this AWS DMS Serverless replication configuration. -
getTableMappings
JSON table mappings for AWS DMS Serverless replications that are provisioned using this replication configuration. -
setTableMappings
JSON table mappings for AWS DMS Serverless replications that are provisioned using this replication configuration. -
getTargetEndpointArn
The Amazon Resource Name (ARN) of the target endpoint for this AWS DMS serverless replication configuration. -
setTargetEndpointArn
The Amazon Resource Name (ARN) of the target endpoint for this AWS DMS serverless replication configuration. -
getReplicationSettings
Optional JSON settings for AWS DMS Serverless replications that are provisioned using this replication configuration. -
setReplicationSettings
Optional JSON settings for AWS DMS Serverless replications that are provisioned using this replication configuration. -
getResourceIdentifier
Optional unique value or name that you set for a given resource that can be used to construct an Amazon Resource Name (ARN) for that resource. -
setResourceIdentifier
Optional unique value or name that you set for a given resource that can be used to construct an Amazon Resource Name (ARN) for that resource. -
getSupplementalSettings
Optional JSON settings for specifying supplemental data. -
setSupplementalSettings
Optional JSON settings for specifying supplemental data. -
getTags
One or more optional tags associated with resources used by the AWS DMS Serverless replication. -
setTags
One or more optional tags associated with resources used by the AWS DMS Serverless replication.
-