Class: Aws::ECS::Types::ExecuteCommandLogConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::ExecuteCommandLogConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ecs/types.rb
Overview
The log configuration for the results of the execute command actions. The logs can be sent to CloudWatch Logs or an Amazon S3 bucket.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cloud_watch_encryption_enabled ⇒ Boolean
Determines whether to use encryption on the CloudWatch logs.
-
#cloud_watch_log_group_name ⇒ String
The name of the CloudWatch log group to send logs to.
-
#s3_bucket_name ⇒ String
The name of the S3 bucket to send logs to.
-
#s3_encryption_enabled ⇒ Boolean
Determines whether to use encryption on the S3 logs.
-
#s3_key_prefix ⇒ String
An optional folder in the S3 bucket to place logs in.
Instance Attribute Details
#cloud_watch_encryption_enabled ⇒ Boolean
Determines whether to use encryption on the CloudWatch logs. If not specified, encryption will be off.
4984 4985 4986 4987 4988 4989 4990 4991 4992 |
# File 'lib/aws-sdk-ecs/types.rb', line 4984 class ExecuteCommandLogConfiguration < Struct.new( :cloud_watch_log_group_name, :cloud_watch_encryption_enabled, :s3_bucket_name, :s3_encryption_enabled, :s3_key_prefix) SENSITIVE = [] include Aws::Structure end |
#cloud_watch_log_group_name ⇒ String
The name of the CloudWatch log group to send logs to.
<note markdown=“1”> The CloudWatch log group must already be created.
</note>
4984 4985 4986 4987 4988 4989 4990 4991 4992 |
# File 'lib/aws-sdk-ecs/types.rb', line 4984 class ExecuteCommandLogConfiguration < Struct.new( :cloud_watch_log_group_name, :cloud_watch_encryption_enabled, :s3_bucket_name, :s3_encryption_enabled, :s3_key_prefix) SENSITIVE = [] include Aws::Structure end |
#s3_bucket_name ⇒ String
The name of the S3 bucket to send logs to.
<note markdown=“1”> The S3 bucket must already be created.
</note>
4984 4985 4986 4987 4988 4989 4990 4991 4992 |
# File 'lib/aws-sdk-ecs/types.rb', line 4984 class ExecuteCommandLogConfiguration < Struct.new( :cloud_watch_log_group_name, :cloud_watch_encryption_enabled, :s3_bucket_name, :s3_encryption_enabled, :s3_key_prefix) SENSITIVE = [] include Aws::Structure end |
#s3_encryption_enabled ⇒ Boolean
Determines whether to use encryption on the S3 logs. If not specified, encryption is not used.
4984 4985 4986 4987 4988 4989 4990 4991 4992 |
# File 'lib/aws-sdk-ecs/types.rb', line 4984 class ExecuteCommandLogConfiguration < Struct.new( :cloud_watch_log_group_name, :cloud_watch_encryption_enabled, :s3_bucket_name, :s3_encryption_enabled, :s3_key_prefix) SENSITIVE = [] include Aws::Structure end |
#s3_key_prefix ⇒ String
An optional folder in the S3 bucket to place logs in.
4984 4985 4986 4987 4988 4989 4990 4991 4992 |
# File 'lib/aws-sdk-ecs/types.rb', line 4984 class ExecuteCommandLogConfiguration < Struct.new( :cloud_watch_log_group_name, :cloud_watch_encryption_enabled, :s3_bucket_name, :s3_encryption_enabled, :s3_key_prefix) SENSITIVE = [] include Aws::Structure end |