Interface CfnIntegrationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIntegrationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.94.0 (build b380f01)",
date="2024-03-14T22:22:00.617Z")
@Stability(Stable)
public interface CfnIntegrationProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnIntegration.
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.rds.*;
CfnIntegrationProps cfnIntegrationProps = CfnIntegrationProps.builder()
.sourceArn("sourceArn")
.targetArn("targetArn")
// the properties below are optional
.additionalEncryptionContext(Map.of(
"additionalEncryptionContextKey", "additionalEncryptionContext"))
.integrationName("integrationName")
.kmsKeyId("kmsKeyId")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnIntegrationPropsstatic final classAn implementation forCfnIntegrationProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnIntegrationProps.Builderbuilder()default ObjectAn optional set of non-secret key–value pairs that contains additional contextual information about the data.default StringThe name of the integration.default StringThe AWS Key Management System ( AWS KMS) key identifier for the key to use to encrypt the integration.The Amazon Resource Name (ARN) of the database to use as the source for replication.getTags()A list of tags.The ARN of the Redshift data warehouse to use as the target for replication.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSourceArn
The Amazon Resource Name (ARN) of the database to use as the source for replication.- See Also:
-
getTargetArn
The ARN of the Redshift data warehouse to use as the target for replication.- See Also:
-
getAdditionalEncryptionContext
An optional set of non-secret key–value pairs that contains additional contextual information about the data.For more information, see Encryption context in the AWS Key Management Service Developer Guide .
You can only include this parameter if you specify the
KMSKeyIdparameter.- See Also:
-
getIntegrationName
The name of the integration.- See Also:
-
getKmsKeyId
The AWS Key Management System ( AWS KMS) key identifier for the key to use to encrypt the integration.If you don't specify an encryption key, RDS uses a default AWS owned key.
- See Also:
-
getTags
A list of tags.For more information, see Tagging Amazon RDS Resources in the Amazon RDS User Guide. .
- See Also:
-
builder
- Returns:
- a
CfnIntegrationProps.BuilderofCfnIntegrationProps
-