Interface CfnIntegrationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIntegrationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-20T23:37:22.592Z")
@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.glue.*;
CfnIntegrationProps cfnIntegrationProps = CfnIntegrationProps.builder()
.integrationName("integrationName")
.sourceArn("sourceArn")
.targetArn("targetArn")
// the properties below are optional
.additionalEncryptionContext(Map.of(
"additionalEncryptionContextKey", "additionalEncryptionContext"))
.dataFilter("dataFilter")
.description("description")
.integrationConfig(IntegrationConfigProperty.builder()
.continuousSync(false)
.refreshInterval("refreshInterval")
.sourceProperties(Map.of(
"sourcePropertiesKey", "sourceProperties"))
.build())
.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 Stringdefault Stringdefault ObjectThe configuration settings for the integration.The name of the integration.default StringAn 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()An array of key-value pairs to apply to this resource.The Amazon Resource Name (ARN) of the Glue data warehouse to use as the target for replication.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIntegrationName
The name of the integration.- See Also:
-
getSourceArn
The Amazon Resource Name (ARN) of the database to use as the source for replication.- See Also:
-
getTargetArn
The Amazon Resource Name (ARN) of the Glue 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.Returns union: either Mapinvalid input: '<'String,
String> orIResolvable- See Also:
-
getDataFilter
- See Also:
-
getDescription
- See Also:
-
getIntegrationConfig
The configuration settings for the integration.Returns union: either
IResolvableorCfnIntegration.IntegrationConfigProperty- See Also:
-
getKmsKeyId
An KMS key identifier for the key to use to encrypt the integration.If you don't specify an encryption key, the default AWS owned KMS key is used.
- See Also:
-
getTags
An array of key-value pairs to apply to this resource.- See Also:
-
builder
- Returns:
- a
CfnIntegrationProps.BuilderofCfnIntegrationProps
-