Class: Aws::EC2::Types::StorageLocation

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

Overview

Describes a storage location in Amazon S3.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bucketString

The name of the S3 bucket.

Returns:

  • (String)


62286
62287
62288
62289
62290
62291
# File 'lib/aws-sdk-ec2/types.rb', line 62286

class StorageLocation < Struct.new(
  :bucket,
  :key)
  SENSITIVE = []
  include Aws::Structure
end

#keyString

The key.

Returns:

  • (String)


62286
62287
62288
62289
62290
62291
# File 'lib/aws-sdk-ec2/types.rb', line 62286

class StorageLocation < Struct.new(
  :bucket,
  :key)
  SENSITIVE = []
  include Aws::Structure
end