Class: Aws::Snowball::Types::CompatibleImage
- Inherits:
-
Struct
- Object
- Struct
- Aws::Snowball::Types::CompatibleImage
- 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
-
#ami_id ⇒ String
The unique identifier for an individual Snow device AMI.
-
#name ⇒ String
The optional name of a compatible image.
Instance Attribute Details
#ami_id ⇒ String
The unique identifier for an individual Snow device AMI.
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 |
#name ⇒ String
The optional name of a compatible image.
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 |