interface CfnS3TableIntegrationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ObservabilityAdmin.CfnS3TableIntegrationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsobservabilityadmin#CfnS3TableIntegrationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.observabilityadmin.CfnS3TableIntegrationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_observabilityadmin.CfnS3TableIntegrationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_observabilityadmin » CfnS3TableIntegrationMixinProps |
Properties for CfnS3TableIntegrationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_observabilityadmin as observabilityadmin } from '@aws-cdk/cfn-property-mixins';
const cfnS3TableIntegrationMixinProps: observabilityadmin.CfnS3TableIntegrationMixinProps = {
encryption: {
kmsKeyArn: 'kmsKeyArn',
sseAlgorithm: 'sseAlgorithm',
},
logSources: [{
identifier: 'identifier',
name: 'name',
type: 'type',
}],
roleArn: 'roleArn',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| encryption? | IResolvable | Encryption | Defines the encryption configuration for S3 Table integrations, including the encryption algorithm and KMS key settings. |
| log | IResolvable | (IResolvable | Log)[] | A data source with an S3 Table integration for query access in the logs namespace. |
| role | string | The Amazon Resource Name (ARN) of the IAM role that grants permissions for the S3 Table integration to access necessary resources. |
| tags? | Cfn[] | The key-value pairs to associate with the S3 Table integration resource for categorization and management purposes. |
encryption?
Type:
IResolvable | Encryption
(optional)
Defines the encryption configuration for S3 Table integrations, including the encryption algorithm and KMS key settings.
logSources?
Type:
IResolvable | (IResolvable | Log)[]
(optional)
A data source with an S3 Table integration for query access in the logs namespace.
roleArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the IAM role that grants permissions for the S3 Table integration to access necessary resources.
tags?
Type:
Cfn[]
(optional)
The key-value pairs to associate with the S3 Table integration resource for categorization and management purposes.

.NET
Go
Java
Python
TypeScript