Class: Aws::EC2::Types::UserBucket

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 UserBucket data as a hash:

{
  s3_bucket: "String",
  s3_key: "String",
}

Describes the S3 bucket for the disk image.

Instance Attribute Summary collapse

Instance Attribute Details

#s3_bucketString

The name of the S3 bucket where the disk image is located.

Returns:

  • (String)


36530
36531
36532
36533
36534
# File 'lib/aws-sdk-ec2/types.rb', line 36530

class UserBucket < Struct.new(
  :s3_bucket,
  :s3_key)
  include Aws::Structure
end

#s3_keyString

The file name of the disk image.

Returns:

  • (String)


36530
36531
36532
36533
36534
# File 'lib/aws-sdk-ec2/types.rb', line 36530

class UserBucket < Struct.new(
  :s3_bucket,
  :s3_key)
  include Aws::Structure
end