Class: Aws::Snowball::Types::Ec2AmiResource
- Inherits:
-
Struct
- Object
- Struct
- Aws::Snowball::Types::Ec2AmiResource
- Defined in:
- gems/aws-sdk-snowball/lib/aws-sdk-snowball/types.rb
Overview
Note:
When making an API call, you may pass Ec2AmiResource data as a hash:
{
ami_id: "AmiId", # required
snowball_ami_id: "String",
}
A JSON-formatted object that contains the IDs for an Amazon Machine Image (AMI), including the Amazon EC2 AMI ID and the Snow device AMI ID. Each AMI has these two IDs to simplify identifying the AMI in both the AWS Cloud and on the device.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#ami_id ⇒ String
The ID of the AMI in Amazon EC2.
-
#snowball_ami_id ⇒ String
The ID of the AMI on the Snow device.
Instance Attribute Details
#ami_id ⇒ String
The ID of the AMI in Amazon EC2.
1132 1133 1134 1135 1136 1137 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/types.rb', line 1132 class Ec2AmiResource < Struct.new( :ami_id, :snowball_ami_id) SENSITIVE = [] include Aws::Structure end |
#snowball_ami_id ⇒ String
The ID of the AMI on the Snow device.
1132 1133 1134 1135 1136 1137 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/types.rb', line 1132 class Ec2AmiResource < Struct.new( :ami_id, :snowball_ami_id) SENSITIVE = [] include Aws::Structure end |