interface CfnS3TableIntegrationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ObservabilityAdmin.CfnS3TableIntegrationProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsobservabilityadmin#CfnS3TableIntegrationProps |
Java | software.amazon.awscdk.services.observabilityadmin.CfnS3TableIntegrationProps |
Python | aws_cdk.aws_observabilityadmin.CfnS3TableIntegrationProps |
TypeScript | aws-cdk-lib » aws_observabilityadmin » CfnS3TableIntegrationProps |
Properties for defining a CfnS3TableIntegration.
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-lib';
const cfnS3TableIntegrationProps: observabilityadmin.CfnS3TableIntegrationProps = {
encryption: {
sseAlgorithm: 'sseAlgorithm',
// the properties below are optional
kmsKeyArn: 'kmsKeyArn',
},
roleArn: 'roleArn',
// the properties below are optional
logSources: [{
name: 'name',
type: 'type',
// the properties below are optional
identifier: 'identifier',
}],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| encryption | IResolvable | Encryption | Encryption configuration for the S3 Table Integration. |
| role | string | The ARN of the role used to access the S3 Table Integration. |
| log | IResolvable | (IResolvable | Log)[] | The CloudWatch Logs data sources to associate with the S3 Table Integration. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
encryption
Type:
IResolvable | Encryption
Encryption configuration for the S3 Table Integration.
roleArn
Type:
string
The ARN of the role used to access the S3 Table Integration.
logSources?
Type:
IResolvable | (IResolvable | Log)[]
(optional)
The CloudWatch Logs data sources to associate with the S3 Table Integration.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.

.NET
Go
Java
Python
TypeScript