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]]) – Encryption configuration for the S3 Table Integration.role_arn (
str) – The ARN of the role used to access the S3 Table Integration.log_sources (
Union[IResolvable,Sequence[Union[IResolvable,LogSourceProperty,Dict[str,Any]]],None]) – The CloudWatch Logs data sources to associate with 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:
# 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
Encryption configuration for the S3 Table Integration.
- 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.