Class: Aws::ComputeOptimizer::Types::S3Destination
- Inherits:
-
Struct
- Object
- Struct
- Aws::ComputeOptimizer::Types::S3Destination
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-computeoptimizer/types.rb
Overview
Describes the destination Amazon Simple Storage Service (Amazon S3) bucket name and object keys of a recommendations export file, and its associated metadata file.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bucket ⇒ String
The name of the Amazon S3 bucket used as the destination of an export file.
-
#key ⇒ String
The Amazon S3 bucket key of an export file.
-
#metadata_key ⇒ String
The Amazon S3 bucket key of a metadata file.
Instance Attribute Details
#bucket ⇒ String
The name of the Amazon S3 bucket used as the destination of an export file.
6334 6335 6336 6337 6338 6339 6340 |
# File 'lib/aws-sdk-computeoptimizer/types.rb', line 6334 class S3Destination < Struct.new( :bucket, :key, :metadata_key) SENSITIVE = [] include Aws::Structure end |
#key ⇒ String
The Amazon S3 bucket key of an export file.
The key uniquely identifies the object, or export file, in the S3 bucket.
6334 6335 6336 6337 6338 6339 6340 |
# File 'lib/aws-sdk-computeoptimizer/types.rb', line 6334 class S3Destination < Struct.new( :bucket, :key, :metadata_key) SENSITIVE = [] include Aws::Structure end |
#metadata_key ⇒ String
The Amazon S3 bucket key of a metadata file.
The key uniquely identifies the object, or metadata file, in the S3 bucket.
6334 6335 6336 6337 6338 6339 6340 |
# File 'lib/aws-sdk-computeoptimizer/types.rb', line 6334 class S3Destination < Struct.new( :bucket, :key, :metadata_key) SENSITIVE = [] include Aws::Structure end |