Class CfnCluster.ClusterConfigurationProperty
The execute command configuration for the cluster.
Inheritance
System.Object
CfnCluster.ClusterConfigurationProperty
Implements
Namespace: Amazon.CDK.AWS.ECS
Assembly: Amazon.CDK.AWS.ECS.dll
Syntax (csharp)
public class ClusterConfigurationProperty : Object, CfnCluster.IClusterConfigurationProperty
Syntax (vb)
Public Class ClusterConfigurationProperty
Inherits Object
Implements CfnCluster.IClusterConfigurationProperty
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.ECS;
var clusterConfigurationProperty = new ClusterConfigurationProperty {
ExecuteCommandConfiguration = new ExecuteCommandConfigurationProperty {
KmsKeyId = "kmsKeyId",
LogConfiguration = new ExecuteCommandLogConfigurationProperty {
CloudWatchEncryptionEnabled = false,
CloudWatchLogGroupName = "cloudWatchLogGroupName",
S3BucketName = "s3BucketName",
S3EncryptionEnabled = false,
S3KeyPrefix = "s3KeyPrefix"
},
Logging = "logging"
}
};
Synopsis
Constructors
ClusterConfigurationProperty() |
Properties
ExecuteCommandConfiguration | The details of the execute command configuration. |
Constructors
ClusterConfigurationProperty()
public ClusterConfigurationProperty()
Properties
ExecuteCommandConfiguration
The details of the execute command configuration.
public object ExecuteCommandConfiguration { get; set; }
Property Value
System.Object