interface CfnS3TableIntegrationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ObservabilityAdmin.Mixins.CfnS3TableIntegrationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsobservabilityadmin/mixins#CfnS3TableIntegrationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.observabilityadmin.mixins.CfnS3TableIntegrationMixinProps |
Python | aws_cdk.mixins_preview.aws_observabilityadmin.mixins.CfnS3TableIntegrationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_observabilityadmin » mixins » 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 { mixins as observabilityadmin_mixins } from '@aws-cdk/mixins-preview/aws-observabilityadmin';
const cfnS3TableIntegrationMixinProps: observabilityadmin_mixins.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)[] | The CloudWatch Logs data sources to associate with the S3 Table Integration. |
| role | string | The ARN of the role used to access the S3 Table Integration. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
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)
The CloudWatch Logs data sources to associate with the S3 Table Integration.
roleArn?
Type:
string
(optional)
The ARN of the role used to access the S3 Table Integration.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.

.NET
Go
Java
Python
TypeScript