Class: Aws::Snowball::Types::Ec2AmiResource

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-snowball/lib/aws-sdk-snowball/types.rb

Overview

A JSON-formatted object that contains the IDs for an Amazon Machine Image (AMI), including the Amazon EC2-compatible AMI ID and the Snow device AMI ID. Each AMI has these two IDs to simplify identifying the AMI in both the Amazon Web Services Cloud and on the device.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#ami_idString

The ID of the AMI in Amazon EC2.

Returns:

  • (String)


1129
1130
1131
1132
1133
1134
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/types.rb', line 1129

class Ec2AmiResource < Struct.new(
  :ami_id,
  :snowball_ami_id)
  SENSITIVE = []
  include Aws::Structure
end

#snowball_ami_idString

The ID of the AMI on the Snow device.

Returns:

  • (String)


1129
1130
1131
1132
1133
1134
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/types.rb', line 1129

class Ec2AmiResource < Struct.new(
  :ami_id,
  :snowball_ami_id)
  SENSITIVE = []
  include Aws::Structure
end