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

.NET
Go
Java
Python
TypeScript