Class: Aws::Imagebuilder::Types::FastLaunchConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Imagebuilder::Types::FastLaunchConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-imagebuilder/types.rb
Overview
Define and configure faster launching for output Windows AMIs.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#account_id ⇒ String
The owner account ID for the fast-launch enabled Windows AMI.
-
#enabled ⇒ Boolean
A Boolean that represents the current state of faster launching for the Windows AMI.
-
#launch_template ⇒ Types::FastLaunchLaunchTemplateSpecification
The launch template that the fast-launch enabled Windows AMI uses when it launches Windows instances to create pre-provisioned snapshots.
-
#max_parallel_launches ⇒ Integer
The maximum number of parallel instances that are launched for creating resources.
-
#snapshot_configuration ⇒ Types::FastLaunchSnapshotConfiguration
Configuration settings for managing the number of snapshots that are created from pre-provisioned instances for the Windows AMI when faster launching is enabled.
Instance Attribute Details
#account_id ⇒ String
The owner account ID for the fast-launch enabled Windows AMI.
2517 2518 2519 2520 2521 2522 2523 2524 2525 |
# File 'lib/aws-sdk-imagebuilder/types.rb', line 2517 class FastLaunchConfiguration < Struct.new( :enabled, :snapshot_configuration, :max_parallel_launches, :launch_template, :account_id) SENSITIVE = [] include Aws::Structure end |
#enabled ⇒ Boolean
A Boolean that represents the current state of faster launching for the Windows AMI. Set to ‘true` to start using Windows faster launching, or `false` to stop using it.
2517 2518 2519 2520 2521 2522 2523 2524 2525 |
# File 'lib/aws-sdk-imagebuilder/types.rb', line 2517 class FastLaunchConfiguration < Struct.new( :enabled, :snapshot_configuration, :max_parallel_launches, :launch_template, :account_id) SENSITIVE = [] include Aws::Structure end |
#launch_template ⇒ Types::FastLaunchLaunchTemplateSpecification
The launch template that the fast-launch enabled Windows AMI uses when it launches Windows instances to create pre-provisioned snapshots.
2517 2518 2519 2520 2521 2522 2523 2524 2525 |
# File 'lib/aws-sdk-imagebuilder/types.rb', line 2517 class FastLaunchConfiguration < Struct.new( :enabled, :snapshot_configuration, :max_parallel_launches, :launch_template, :account_id) SENSITIVE = [] include Aws::Structure end |
#max_parallel_launches ⇒ Integer
The maximum number of parallel instances that are launched for creating resources.
2517 2518 2519 2520 2521 2522 2523 2524 2525 |
# File 'lib/aws-sdk-imagebuilder/types.rb', line 2517 class FastLaunchConfiguration < Struct.new( :enabled, :snapshot_configuration, :max_parallel_launches, :launch_template, :account_id) SENSITIVE = [] include Aws::Structure end |
#snapshot_configuration ⇒ Types::FastLaunchSnapshotConfiguration
Configuration settings for managing the number of snapshots that are created from pre-provisioned instances for the Windows AMI when faster launching is enabled.
2517 2518 2519 2520 2521 2522 2523 2524 2525 |
# File 'lib/aws-sdk-imagebuilder/types.rb', line 2517 class FastLaunchConfiguration < Struct.new( :enabled, :snapshot_configuration, :max_parallel_launches, :launch_template, :account_id) SENSITIVE = [] include Aws::Structure end |