Interface CfnIntegrationMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIntegrationMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:59.714Z")
@Stability(Stable)
public interface CfnIntegrationMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnIntegrationPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.glue.*;
CfnIntegrationMixinProps cfnIntegrationMixinProps = CfnIntegrationMixinProps.builder()
.additionalEncryptionContext(Map.of(
"additionalEncryptionContextKey", "additionalEncryptionContext"))
.dataFilter("dataFilter")
.description("description")
.integrationConfig(IntegrationConfigProperty.builder()
.continuousSync(false)
.refreshInterval("refreshInterval")
.sourceProperties(Map.of(
"sourcePropertiesKey", "sourceProperties"))
.build())
.integrationName("integrationName")
.kmsKeyId("kmsKeyId")
.sourceArn("sourceArn")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.targetArn("targetArn")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnIntegrationMixinPropsstatic final classAn implementation forCfnIntegrationMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()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.default StringA unique name for the integration.default StringThe ARN of a KMS key used for encrypting the channel.default StringThe ARN for the source of the integration.getTags()Metadata assigned to the resource consisting of a list of key-value pairs.default StringThe ARN for the target of the integration.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
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
IResolvableorCfnIntegrationPropsMixin.IntegrationConfigProperty- See Also:
-
getIntegrationName
A unique name for the integration.- See Also:
-
getKmsKeyId
The ARN of a KMS key used for encrypting the channel.- See Also:
-
getSourceArn
The ARN for the source of the integration.- See Also:
-
getTags
Metadata assigned to the resource consisting of a list of key-value pairs.- See Also:
-
getTargetArn
The ARN for the target of the integration.- See Also:
-
builder
- Returns:
- a
CfnIntegrationMixinProps.BuilderofCfnIntegrationMixinProps
-