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 | Defines the encryption configuration for S3 Table integrations, including the encryption algorithm and KMS key settings. |
| role | string | The Amazon Resource Name (ARN) of the IAM role that grants permissions for the S3 Table integration to access necessary resources. |
| log | IResolvable | (IResolvable | Log)[] | A data source with an S3 Table integration for query access in the logs namespace. |
| tags? | Cfn[] | The key-value pairs to associate with the S3 Table integration resource for categorization and management purposes. |
encryption
Type:
IResolvable | Encryption
Defines the encryption configuration for S3 Table integrations, including the encryption algorithm and KMS key settings.
roleArn
Type:
string
The Amazon Resource Name (ARN) of the IAM role that grants permissions for the S3 Table integration to access necessary resources.
logSources?
Type:
IResolvable | (IResolvable | Log)[]
(optional)
A data source with an S3 Table integration for query access in the logs namespace.
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