@Generated(value="jsii-pacmak/1.30.0 (build adae23f)", date="2021-06-30T10:01:06.790Z") @Stability(value=Experimental) public enum ExecuteCommandLogging extends Enum<ExecuteCommandLogging>
For more information, see [Logging] https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-cluster-executecommandconfiguration.html#cfn-ecs-cluster-executecommandconfiguration-logging
| Enum Constant and Description |
|---|
DEFAULT
(experimental) The awslogs configuration in the task definition is used.
|
NONE
(experimental) The execute command session is not logged.
|
OVERRIDE
(experimental) Specify the logging details as a part of logConfiguration.
|
| Modifier and Type | Method and Description |
|---|---|
static ExecuteCommandLogging |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExecuteCommandLogging[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Stability(value=Experimental) public static final ExecuteCommandLogging NONE
@Stability(value=Experimental) public static final ExecuteCommandLogging DEFAULT
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.
@Stability(value=Experimental) public static final ExecuteCommandLogging OVERRIDE
public static ExecuteCommandLogging[] values()
for (ExecuteCommandLogging c : ExecuteCommandLogging.values()) System.out.println(c);
public static ExecuteCommandLogging valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2021. All rights reserved.