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 |
CloudWatch Logs data source to associate with the S3 Table Integration.
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 ID of the CloudWatch Logs data source association. |
| name? | string | The name of the CloudWatch Logs data source. |
| type? | string | The type of the CloudWatch Logs data source. |
identifier?
Type:
string
(optional)
The ID of the CloudWatch Logs data source association.
name?
Type:
string
(optional)
The name of the CloudWatch Logs data source.
type?
Type:
string
(optional)
The type of the CloudWatch Logs data source.

.NET
Go
Java
Python
TypeScript