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]) – The CloudWatch Logs data sources to associate with the S3 Table Integration.role_arn (
Optional[str]) – The ARN of the role used to access the S3 Table Integration.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – An array of key-value pairs to apply to this resource.
- 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
The CloudWatch Logs data sources to associate with the S3 Table Integration.
- role_arn
The ARN of the role used to access the S3 Table Integration.
- tags
An array of key-value pairs to apply to this resource.