interface CloudWatchLogDestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.OSIS.Mixins.CfnPipelinePropsMixin.CloudWatchLogDestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsosis/mixins#CfnPipelinePropsMixin_CloudWatchLogDestinationProperty |
Java | software.amazon.awscdk.mixins.preview.services.osis.mixins.CfnPipelinePropsMixin.CloudWatchLogDestinationProperty |
Python | aws_cdk.mixins_preview.aws_osis.mixins.CfnPipelinePropsMixin.CloudWatchLogDestinationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_osis » mixins » CfnPipelinePropsMixin » CloudWatchLogDestinationProperty |
The destination for OpenSearch Ingestion logs sent to Amazon CloudWatch.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as osis_mixins } from '@aws-cdk/mixins-preview/aws-osis';
const cloudWatchLogDestinationProperty: osis_mixins.CfnPipelinePropsMixin.CloudWatchLogDestinationProperty = {
logGroup: 'logGroup',
};
Properties
| Name | Type | Description |
|---|---|---|
| log | string | The name of the CloudWatch Logs group to send pipeline logs to. |
logGroup?
Type:
string
(optional)
The name of the CloudWatch Logs group to send pipeline logs to.
You can specify an existing log group or create a new one. For example, /aws/vendedlogs/OpenSearchService/pipelines .

.NET
Go
Java
Python
TypeScript