Class CfnCacheCluster.CloudWatchLogsDestinationDetailsProperty
Configuration details of a CloudWatch Logs destination.
Inherited Members
Namespace: Amazon.CDK.AWS.ElastiCache
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnCacheCluster.CloudWatchLogsDestinationDetailsProperty : CfnCacheCluster.ICloudWatchLogsDestinationDetailsProperty
Syntax (vb)
Public Class CfnCacheCluster.CloudWatchLogsDestinationDetailsProperty Implements CfnCacheCluster.ICloudWatchLogsDestinationDetailsProperty
Remarks
Note that this field is marked as required but only if CloudWatch Logs was chosen as the destination.
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.ElastiCache;
var cloudWatchLogsDestinationDetailsProperty = new CloudWatchLogsDestinationDetailsProperty {
LogGroup = "logGroup"
};
Synopsis
Constructors
| CloudWatchLogsDestinationDetailsProperty() | Configuration details of a CloudWatch Logs destination. |
Properties
| LogGroup | The name of the CloudWatch Logs log group. |
Constructors
CloudWatchLogsDestinationDetailsProperty()
Configuration details of a CloudWatch Logs destination.
public CloudWatchLogsDestinationDetailsProperty()
Remarks
Note that this field is marked as required but only if CloudWatch Logs was chosen as the destination.
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.ElastiCache;
var cloudWatchLogsDestinationDetailsProperty = new CloudWatchLogsDestinationDetailsProperty {
LogGroup = "logGroup"
};
Properties
LogGroup
The name of the CloudWatch Logs log group.
public string LogGroup { get; set; }