ExecuteCommandConfigurationArgs

data class ExecuteCommandConfigurationArgs(val kmsKeyId: Output<String>? = null, val logConfiguration: Output<ExecuteCommandLogConfigurationArgs>? = null, val logging: Output<String>? = null) : ConvertibleToJava<ExecuteCommandConfigurationArgs>

Definition of ExecuteCommandConfiguration

Constructors

Link copied to clipboard
constructor(kmsKeyId: Output<String>? = null, logConfiguration: Output<ExecuteCommandLogConfigurationArgs>? = null, logging: Output<String>? = null)

Properties

Link copied to clipboard
val kmsKeyId: Output<String>? = null

Specify an KMSlong key ID to encrypt the data between the local client and the container.

Link copied to clipboard

The log configuration for the results of the execute command actions. The logs can be sent to CloudWatch Logs or an Amazon S3 bucket. When `logging=OVERRIDE` is specified, a `logConfiguration` must be provided. The log configuration for the results of the execute command actions. The logs can be sent to CloudWatch Logs or an Amazon S3 bucket.

Link copied to clipboard
val logging: Output<String>? = null

The log setting to use for redirecting logs for your execute command results. The following log settings are available. + `NONE`: The execute command session is not logged. + `DEFAULT`: The `awslogs` configuration in the task definition is used. If no logging parameter is specified, it defaults to this value. If no `awslogs` log driver is configured in the task definition, the output won't be logged. + `OVERRIDE`: Specify the logging details as a part of `logConfiguration`. If the `OVERRIDE` logging option is specified, the `logConfiguration` is required.

Functions

Link copied to clipboard
open override fun toJava(): ExecuteCommandConfigurationArgs