Class: Aws::Imagebuilder::Types::InstanceConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Imagebuilder::Types::InstanceConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-imagebuilder/types.rb
Overview
Defines a custom base AMI and block device mapping configurations of an instance used for building and testing container images.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#block_device_mappings ⇒ Array<Types::InstanceBlockDeviceMapping>
Defines the block devices to attach for building an instance from this Image Builder AMI.
-
#image ⇒ String
The AMI ID to use as the base image for a container build and test instance.
Instance Attribute Details
#block_device_mappings ⇒ Array<Types::InstanceBlockDeviceMapping>
Defines the block devices to attach for building an instance from this Image Builder AMI.
4666 4667 4668 4669 4670 4671 |
# File 'lib/aws-sdk-imagebuilder/types.rb', line 4666 class InstanceConfiguration < Struct.new( :image, :block_device_mappings) SENSITIVE = [] include Aws::Structure end |
#image ⇒ String
The AMI ID to use as the base image for a container build and test instance. If not specified, Image Builder will use the appropriate ECS-optimized AMI as a base image.
4666 4667 4668 4669 4670 4671 |
# File 'lib/aws-sdk-imagebuilder/types.rb', line 4666 class InstanceConfiguration < Struct.new( :image, :block_device_mappings) SENSITIVE = [] include Aws::Structure end |