Interface CfnS3TableIntegrationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnS3TableIntegrationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.125.0 (build fdbe357)",
date="2026-01-23T11:19:50.705Z")
@Stability(Stable)
public interface CfnS3TableIntegrationProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnS3TableIntegration.
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.observabilityadmin.*;
CfnS3TableIntegrationProps cfnS3TableIntegrationProps = CfnS3TableIntegrationProps.builder()
.encryption(EncryptionConfigProperty.builder()
.sseAlgorithm("sseAlgorithm")
// the properties below are optional
.kmsKeyArn("kmsKeyArn")
.build())
.roleArn("roleArn")
// the properties below are optional
.logSources(List.of(LogSourceProperty.builder()
.name("name")
.type("type")
// the properties below are optional
.identifier("identifier")
.build()))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnS3TableIntegrationPropsstatic final classAn implementation forCfnS3TableIntegrationProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Defines 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.The 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
IResolvableorCfnS3TableIntegration.EncryptionConfigProperty- 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:
-
getLogSources
A data source with an S3 Table integration for query access in thelogsnamespace.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnS3TableIntegration.LogSourceProperty>- See Also:
-
getTags
The key-value pairs to associate with the S3 Table integration resource for categorization and management purposes.- See Also:
-
builder
- Returns:
- a
CfnS3TableIntegrationProps.BuilderofCfnS3TableIntegrationProps
-