interface LogSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ObservabilityAdmin.Mixins.CfnS3TableIntegrationPropsMixin.LogSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsobservabilityadmin/mixins#CfnS3TableIntegrationPropsMixin_LogSourceProperty |
Java | software.amazon.awscdk.mixins.preview.services.observabilityadmin.mixins.CfnS3TableIntegrationPropsMixin.LogSourceProperty |
Python | aws_cdk.mixins_preview.aws_observabilityadmin.mixins.CfnS3TableIntegrationPropsMixin.LogSourceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_observabilityadmin » mixins » CfnS3TableIntegrationPropsMixin » 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 { mixins as observabilityadmin_mixins } from '@aws-cdk/mixins-preview/aws-observabilityadmin';
const logSourceProperty: observabilityadmin_mixins.CfnS3TableIntegrationPropsMixin.LogSourceProperty = {
identifier: 'identifier',
name: 'name',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| identifier? | string | The unique identifier for the association between the data source and S3 Table integration. |
| name? | string | The name of the data source. |
| 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.
name?
Type:
string
(optional)
The name of the data source.
type?
Type:
string
(optional)
The type of the data source.

.NET
Go
Java
Python
TypeScript