Interface CfnIntegrationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIntegrationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.125.0 (build fdbe357)",
date="2026-01-23T11:19:47.771Z")
@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 for encryption.default StringSelects source tables for the integration using Maxwell filter syntax.default StringA description for the integration.default ObjectThe structure used to define properties associated with the zero-ETL integration.A unique name for the integration.default StringThe ARN of a KMS key used for encrypting the channel.The ARN for the source of the integration.getTags()Metadata assigned to the resource consisting of a list of key-value pairs.The ARN for the target of the integration.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIntegrationName
A unique name for the integration.- See Also:
-
getSourceArn
The ARN for the source of the integration.- See Also:
-
getTargetArn
The ARN for the target of the integration.- See Also:
-
getAdditionalEncryptionContext
An optional set of non-secret key–value pairs that contains additional contextual information for encryption.This can only be provided if
KMSKeyIdis provided.Returns union: either Mapinvalid input: '<'String,
String> orIResolvable- See Also:
-
getDataFilter
Selects source tables for the integration using Maxwell filter syntax.- See Also:
-
getDescription
A description for the integration.- See Also:
-
getIntegrationConfig
The structure used to define properties associated with the zero-ETL integration.For more information, see IntegrationConfig structure.
Returns union: either
IResolvableorCfnIntegration.IntegrationConfigProperty- See Also:
-
getKmsKeyId
The ARN of a KMS key used for encrypting the channel.- See Also:
-
getTags
Metadata assigned to the resource consisting of a list of key-value pairs.- See Also:
-
builder
- Returns:
- a
CfnIntegrationProps.BuilderofCfnIntegrationProps
-