Show / Hide Table of Contents

Interface CfnClusterPropsMixin.IExecuteCommandConfigurationProperty

The details of the execute command configuration.

Namespace: Amazon.CDK.Mixins.Preview.AWS.ECS.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnClusterPropsMixin.IExecuteCommandConfigurationProperty
Syntax (vb)
Public Interface CfnClusterPropsMixin.IExecuteCommandConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-cluster-executecommandconfiguration.html

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.ECS.Mixins;

             var executeCommandConfigurationProperty = new ExecuteCommandConfigurationProperty {
                 KmsKeyId = "kmsKeyId",
                 LogConfiguration = new ExecuteCommandLogConfigurationProperty {
                     CloudWatchEncryptionEnabled = false,
                     CloudWatchLogGroupName = "cloudWatchLogGroupName",
                     S3BucketName = "s3BucketName",
                     S3EncryptionEnabled = false,
                     S3KeyPrefix = "s3KeyPrefix"
                 },
                 Logging = "logging"
             };

Synopsis

Properties

KmsKeyId

Specify an AWS Key Management Service key ID to encrypt the data between the local client and the container.

LogConfiguration

The log configuration for the results of the execute command actions.

Logging

The log setting to use for redirecting logs for your execute command results. The following log settings are available.

Properties

KmsKeyId

Specify an AWS Key Management Service key ID to encrypt the data between the local client and the container.

string? KmsKeyId { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-cluster-executecommandconfiguration.html#cfn-ecs-cluster-executecommandconfiguration-kmskeyid

LogConfiguration

The log configuration for the results of the execute command actions.

object? LogConfiguration { get; }
Property Value

object

Remarks

The logs can be sent to CloudWatch Logs or an Amazon S3 bucket. When logging=OVERRIDE is specified, a logConfiguration must be provided.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-cluster-executecommandconfiguration.html#cfn-ecs-cluster-executecommandconfiguration-logconfiguration

Type union: either IResolvable or CfnClusterPropsMixin.IExecuteCommandLogConfigurationProperty

Logging

The log setting to use for redirecting logs for your execute command results. The following log settings are available.

string? Logging { get; }
Property Value

string

Remarks

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-cluster-executecommandconfiguration.html#cfn-ecs-cluster-executecommandconfiguration-logging

    Back to top Generated by DocFX