Interface CfnIntegrationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIntegrationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-24T13:34:45.658Z")
@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.redshift.*;
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 ObjectThe encryption context for the integration.default StringThe name of the integration.default StringThe AWS Key Management Service ( AWS KMS) key identifier for the key used to encrypt the integration.The Amazon Resource Name (ARN) of the database used as the source for replication.getTags()The list of tags associated with the integration.The Amazon Resource Name (ARN) of the Amazon 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 used as the source for replication.- See Also:
-
getTargetArn
The Amazon Resource Name (ARN) of the Amazon Redshift data warehouse to use as the target for replication.- See Also:
-
getAdditionalEncryptionContext
The encryption context for the integration.For more information, see Encryption context in the AWS Key Management Service Developer Guide .
Returns union: either Mapinvalid input: '<'String,
String> orIResolvable- See Also:
-
getIntegrationName
The name of the integration.- See Also:
-
getKmsKeyId
The AWS Key Management Service ( AWS KMS) key identifier for the key used to encrypt the integration.- See Also:
-
getTags
The list of tags associated with the integration.- See Also:
-
builder
- Returns:
- a
CfnIntegrationProps.BuilderofCfnIntegrationProps
-