Class: Aws::ECS::Types::ClusterConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::ClusterConfiguration
- Defined in:
- gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb
Overview
Note:
When making an API call, you may pass ClusterConfiguration data as a hash:
{
execute_command_configuration: {
kms_key_id: "String",
logging: "NONE", # accepts NONE, DEFAULT, OVERRIDE
log_configuration: {
cloud_watch_log_group_name: "String",
cloud_watch_encryption_enabled: false,
s3_bucket_name: "String",
s3_encryption_enabled: false,
s3_key_prefix: "String",
},
},
}
The execute command configuration for the cluster.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#execute_command_configuration ⇒ Types::ExecuteCommandConfiguration
The details of the execute command configuration.
Instance Attribute Details
#execute_command_configuration ⇒ Types::ExecuteCommandConfiguration
The details of the execute command configuration.
715 716 717 718 719 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 715 class ClusterConfiguration < Struct.new( :execute_command_configuration) SENSITIVE = [] include Aws::Structure end |