interface LogSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ObservabilityAdmin.CfnS3TableIntegration.LogSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsobservabilityadmin#CfnS3TableIntegration_LogSourceProperty |
Java | software.amazon.awscdk.services.observabilityadmin.CfnS3TableIntegration.LogSourceProperty |
Python | aws_cdk.aws_observabilityadmin.CfnS3TableIntegration.LogSourceProperty |
TypeScript | aws-cdk-lib » aws_observabilityadmin » CfnS3TableIntegration » LogSourceProperty |
A data source with an S3 Table integration for query access in the logs namespace.
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 logSourceProperty: observabilityadmin.CfnS3TableIntegration.LogSourceProperty = {
name: 'name',
type: 'type',
// the properties below are optional
identifier: 'identifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the data source. |
| type | string | The type of the data source. |
| identifier? | string | The unique identifier for the association between the data source and S3 Table integration. |
name
Type:
string
The name of the data source.
type
Type:
string
The type of the data source.
identifier?
Type:
string
(optional)
The unique identifier for the association between the data source and S3 Table integration.

.NET
Go
Java
Python
TypeScript