CfnS3TableIntegrationProps
- class aws_cdk.aws_observabilityadmin.CfnS3TableIntegrationProps(*, encryption, role_arn, log_sources=None, tags=None)
Bases:
objectProperties for defining a
CfnS3TableIntegration.- Parameters:
encryption (
Union[IResolvable,EncryptionConfigProperty,Dict[str,Any]]) – Defines the encryption configuration for S3 Table integrations, including the encryption algorithm and KMS key settings.role_arn (
str) – The Amazon Resource Name (ARN) of the IAM role that grants permissions for the S3 Table integration to access necessary resources.log_sources (
Union[IResolvable,Sequence[Union[IResolvable,LogSourceProperty,Dict[str,Any]]],None]) – A data source with an S3 Table integration for query access in thelogsnamespace.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – The key-value pairs to associate with the S3 Table integration resource for categorization and management purposes.
- See:
- ExampleMetadata:
fixture=_generated
Example:
from aws_cdk import CfnTag # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_observabilityadmin as observabilityadmin cfn_s3_table_integration_props = observabilityadmin.CfnS3TableIntegrationProps( encryption=observabilityadmin.CfnS3TableIntegration.EncryptionConfigProperty( sse_algorithm="sseAlgorithm", # the properties below are optional kms_key_arn="kmsKeyArn" ), role_arn="roleArn", # the properties below are optional log_sources=[observabilityadmin.CfnS3TableIntegration.LogSourceProperty( name="name", type="type", # the properties below are optional identifier="identifier" )], tags=[CfnTag( key="key", value="value" )] )
Attributes
- encryption
Defines the encryption configuration for S3 Table integrations, including the encryption algorithm and KMS key settings.
- log_sources
A data source with an S3 Table integration for query access in the
logsnamespace.
- role_arn
The Amazon Resource Name (ARN) of the IAM role that grants permissions for the S3 Table integration to access necessary resources.
- tags
The key-value pairs to associate with the S3 Table integration resource for categorization and management purposes.