Class: Aws::EC2::Types::Storage
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::Storage
- Defined in:
- gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb
Overview
Note:
When making an API call, you may pass Storage data as a hash:
{
s3: {
aws_access_key_id: "String",
bucket: "String",
prefix: "String",
upload_policy: "data",
upload_policy_signature: "String",
},
}
Describes the storage location for an instance store-backed AMI.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3 ⇒ Types::S3Storage
An Amazon S3 storage location.
Instance Attribute Details
#s3 ⇒ Types::S3Storage
An Amazon S3 storage location.
65665 65666 65667 65668 65669 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 65665 class Storage < Struct.new( :s3) SENSITIVE = [] include Aws::Structure end |