Interface CfnS3TableIntegrationMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnS3TableIntegrationMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:01.937Z")
@Stability(Stable)
public interface CfnS3TableIntegrationMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnS3TableIntegrationPropsMixin.
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.observabilityadmin.*;
CfnS3TableIntegrationMixinProps cfnS3TableIntegrationMixinProps = CfnS3TableIntegrationMixinProps.builder()
.encryption(EncryptionConfigProperty.builder()
.kmsKeyArn("kmsKeyArn")
.sseAlgorithm("sseAlgorithm")
.build())
.logSources(List.of(LogSourceProperty.builder()
.identifier("identifier")
.name("name")
.type("type")
.build()))
.roleArn("roleArn")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnS3TableIntegrationMixinPropsstatic final classAn implementation forCfnS3TableIntegrationMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectDefines the encryption configuration for S3 Table integrations, including the encryption algorithm and KMS key settings.default ObjectA data source with an S3 Table integration for query access in thelogsnamespace.default StringThe Amazon Resource Name (ARN) of the IAM role that grants permissions for the S3 Table integration to access necessary resources.getTags()The key-value pairs to associate with the S3 Table integration resource for categorization and management purposes.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEncryption
Defines the encryption configuration for S3 Table integrations, including the encryption algorithm and KMS key settings.Returns union: either
IResolvableorCfnS3TableIntegrationPropsMixin.EncryptionConfigProperty- See Also:
-
getLogSources
A data source with an S3 Table integration for query access in thelogsnamespace.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnS3TableIntegrationPropsMixin.LogSourceProperty>- See Also:
-
getRoleArn
The Amazon Resource Name (ARN) of the IAM role that grants permissions for the S3 Table integration to access necessary resources.- See Also:
-
getTags
The key-value pairs to associate with the S3 Table integration resource for categorization and management purposes.- See Also:
-
builder
-