Class: Aws::SSM::Types::S3OutputLocation

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-ssm/types.rb

Overview

Note:

When making an API call, you may pass S3OutputLocation data as a hash:

{
  output_s3_region: "S3Region",
  output_s3_bucket_name: "S3BucketName",
  output_s3_key_prefix: "S3KeyPrefix",
}

An Amazon S3 bucket where you want to store the results of this request.

Instance Attribute Summary collapse

Instance Attribute Details

#output_s3_bucket_nameString

The name of the Amazon S3 bucket.

Returns:

  • (String)


14389
14390
14391
14392
14393
14394
# File 'lib/aws-sdk-ssm/types.rb', line 14389

class S3OutputLocation < Struct.new(
  :output_s3_region,
  :output_s3_bucket_name,
  :output_s3_key_prefix)
  include Aws::Structure
end

#output_s3_key_prefixString

The Amazon S3 bucket subfolder.

Returns:

  • (String)


14389
14390
14391
14392
14393
14394
# File 'lib/aws-sdk-ssm/types.rb', line 14389

class S3OutputLocation < Struct.new(
  :output_s3_region,
  :output_s3_bucket_name,
  :output_s3_key_prefix)
  include Aws::Structure
end

#output_s3_regionString

(Deprecated) You can no longer specify this parameter. The system ignores it. Instead, Systems Manager automatically determines the Amazon S3 bucket region.

Returns:

  • (String)


14389
14390
14391
14392
14393
14394
# File 'lib/aws-sdk-ssm/types.rb', line 14389

class S3OutputLocation < Struct.new(
  :output_s3_region,
  :output_s3_bucket_name,
  :output_s3_key_prefix)
  include Aws::Structure
end