Class: Aws::SSM::Types::LoggingInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSM::Types::LoggingInfo
- Defined in:
- gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb
Overview
Information about an Amazon Simple Storage Service (Amazon S3) bucket to write managed node-level logs to.
LoggingInfo has been deprecated. To specify an Amazon Simple Storage
Service (Amazon S3) bucket to contain logs, instead use the
OutputS3BucketName and OutputS3KeyPrefix options in the
TaskInvocationParameters structure. For information about how Amazon
Web Services Systems Manager handles these options for the supported
maintenance window task types, see
MaintenanceWindowTaskInvocationParameters.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3_bucket_name ⇒ String
The name of an S3 bucket where execution logs are stored.
-
#s3_key_prefix ⇒ String
(Optional) The S3 bucket subfolder.
-
#s3_region ⇒ String
The Amazon Web Services Region where the S3 bucket is located.
Instance Attribute Details
#s3_bucket_name ⇒ String
The name of an S3 bucket where execution logs are stored.
12717 12718 12719 12720 12721 12722 12723 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 12717 class LoggingInfo < Struct.new( :s3_bucket_name, :s3_key_prefix, :s3_region) SENSITIVE = [] include Aws::Structure end |
#s3_key_prefix ⇒ String
(Optional) The S3 bucket subfolder.
12717 12718 12719 12720 12721 12722 12723 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 12717 class LoggingInfo < Struct.new( :s3_bucket_name, :s3_key_prefix, :s3_region) SENSITIVE = [] include Aws::Structure end |
#s3_region ⇒ String
The Amazon Web Services Region where the S3 bucket is located.
12717 12718 12719 12720 12721 12722 12723 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 12717 class LoggingInfo < Struct.new( :s3_bucket_name, :s3_key_prefix, :s3_region) SENSITIVE = [] include Aws::Structure end |