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

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

Overview

Note:

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

{
  bucket: "String",
  key: "String",
}

Describes a storage location in Amazon S3.

Instance Attribute Summary collapse

Instance Attribute Details

#bucketString

The name of the S3 bucket.

Returns:

  • (String)


35288
35289
35290
35291
35292
# File 'lib/aws-sdk-ec2/types.rb', line 35288

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

#keyString

The key.

Returns:

  • (String)


35288
35289
35290
35291
35292
# File 'lib/aws-sdk-ec2/types.rb', line 35288

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