Class: Aws::Snowball::Types::CompatibleImage

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

Overview

A JSON-formatted object that describes a compatible Amazon Machine Image (AMI), including the ID and name for a Snow device AMI. This AMI is compatible with the device’s physical hardware requirements, and it should be able to be run in an SBE1 instance on the device.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#ami_idString

The unique identifier for an individual Snow device AMI.

Returns:

  • (String)


331
332
333
334
335
336
# File 'lib/aws-sdk-snowball/types.rb', line 331

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

#nameString

The optional name of a compatible image.

Returns:

  • (String)


331
332
333
334
335
336
# File 'lib/aws-sdk-snowball/types.rb', line 331

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