interface CloudWatchLogsDestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SMSVOICE.Mixins.CfnConfigurationSetPropsMixin.CloudWatchLogsDestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssmsvoice/mixins#CfnConfigurationSetPropsMixin_CloudWatchLogsDestinationProperty |
Java | software.amazon.awscdk.mixins.preview.services.smsvoice.mixins.CfnConfigurationSetPropsMixin.CloudWatchLogsDestinationProperty |
Python | aws_cdk.mixins_preview.aws_smsvoice.mixins.CfnConfigurationSetPropsMixin.CloudWatchLogsDestinationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_smsvoice » mixins » CfnConfigurationSetPropsMixin » CloudWatchLogsDestinationProperty |
Contains the destination configuration to use when publishing message sending events.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as smsvoice_mixins } from '@aws-cdk/mixins-preview/aws-smsvoice';
const cloudWatchLogsDestinationProperty: smsvoice_mixins.CfnConfigurationSetPropsMixin.CloudWatchLogsDestinationProperty = {
iamRoleArn: 'iamRoleArn',
logGroupArn: 'logGroupArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| iam | string | The Amazon Resource Name (ARN) of an AWS Identity and Access Management role that is able to write event data to an Amazon CloudWatch destination. |
| log | string | The name of the Amazon CloudWatch log group that you want to record events in. |
iamRoleArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of an AWS Identity and Access Management role that is able to write event data to an Amazon CloudWatch destination.
logGroupArn?
Type:
string
(optional)
The name of the Amazon CloudWatch log group that you want to record events in.

.NET
Go
Java
Python
TypeScript