Class CfnConfigurationSet.CloudWatchLogsDestinationProperty
Contains the destination configuration to use when publishing message sending events.
Inherited Members
Namespace: Amazon.CDK.AWS.SMSVOICE
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnConfigurationSet.CloudWatchLogsDestinationProperty : CfnConfigurationSet.ICloudWatchLogsDestinationProperty
Syntax (vb)
Public Class CfnConfigurationSet.CloudWatchLogsDestinationProperty Implements CfnConfigurationSet.ICloudWatchLogsDestinationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.SMSVOICE;
var cloudWatchLogsDestinationProperty = new CloudWatchLogsDestinationProperty {
IamRoleArn = "iamRoleArn",
LogGroupArn = "logGroupArn"
};
Synopsis
Constructors
| CloudWatchLogsDestinationProperty() | Contains the destination configuration to use when publishing message sending events. |
Properties
| IamRoleArn | 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 | The name of the Amazon CloudWatch log group that you want to record events in. |
Constructors
CloudWatchLogsDestinationProperty()
Contains the destination configuration to use when publishing message sending events.
public CloudWatchLogsDestinationProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.SMSVOICE;
var cloudWatchLogsDestinationProperty = new CloudWatchLogsDestinationProperty {
IamRoleArn = "iamRoleArn",
LogGroupArn = "logGroupArn"
};
Properties
IamRoleArn
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.
public string IamRoleArn { get; set; }
Property Value
Remarks
LogGroupArn
The name of the Amazon CloudWatch log group that you want to record events in.
public string LogGroupArn { get; set; }