Class CfnConfigurationSetPropsMixin.CloudWatchLogsDestinationProperty
Contains the destination configuration to use when publishing message sending events.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.SMSVOICE.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnConfigurationSetPropsMixin.CloudWatchLogsDestinationProperty : CfnConfigurationSetPropsMixin.ICloudWatchLogsDestinationProperty
Syntax (vb)
Public Class CfnConfigurationSetPropsMixin.CloudWatchLogsDestinationProperty Implements CfnConfigurationSetPropsMixin.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.Mixins.Preview.AWS.SMSVOICE.Mixins;
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.Mixins.Preview.AWS.SMSVOICE.Mixins;
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; }