CfnS3TableIntegrationMixinProps
- class aws_cdk.mixins_preview.aws_observabilityadmin.mixins.CfnS3TableIntegrationMixinProps(*, encryption=None, log_sources=None, role_arn=None, tags=None)
Bases:
objectProperties for CfnS3TableIntegrationPropsMixin.
- Parameters:
encryption (
Union[IResolvable,EncryptionConfigProperty,Dict[str,Any],None]) – Defines the encryption configuration for S3 Table integrations, including the encryption algorithm and KMS key settings.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.role_arn (
Optional[str]) – The Amazon Resource Name (ARN) of the IAM role that grants permissions for the S3 Table integration to access necessary resources.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.mixins_preview.aws_observabilityadmin import mixins as observabilityadmin_mixins cfn_s3_table_integration_mixin_props = observabilityadmin_mixins.CfnS3TableIntegrationMixinProps( encryption=observabilityadmin_mixins.CfnS3TableIntegrationPropsMixin.EncryptionConfigProperty( kms_key_arn="kmsKeyArn", sse_algorithm="sseAlgorithm" ), log_sources=[observabilityadmin_mixins.CfnS3TableIntegrationPropsMixin.LogSourceProperty( identifier="identifier", name="name", type="type" )], role_arn="roleArn", 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.