Class: Aws::EC2::Types::FleetLaunchTemplateConfigRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::FleetLaunchTemplateConfigRequest
- Defined in:
- gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb
Overview
Describes a launch template and overrides.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#launch_template_specification ⇒ Types::FleetLaunchTemplateSpecificationRequest
The launch template to use.
-
#overrides ⇒ Array<Types::FleetLaunchTemplateOverridesRequest>
Any parameters that you specify override the same parameters in the launch template.
Instance Attribute Details
#launch_template_specification ⇒ Types::FleetLaunchTemplateSpecificationRequest
The launch template to use. You must specify either the launch template ID or launch template name in the request.
33948 33949 33950 33951 33952 33953 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 33948 class FleetLaunchTemplateConfigRequest < Struct.new( :launch_template_specification, :overrides) SENSITIVE = [] include Aws::Structure end |
#overrides ⇒ Array<Types::FleetLaunchTemplateOverridesRequest>
Any parameters that you specify override the same parameters in the launch template.
For fleets of type request
and maintain
, a maximum of 300 items
is allowed across all launch templates.
33948 33949 33950 33951 33952 33953 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 33948 class FleetLaunchTemplateConfigRequest < Struct.new( :launch_template_specification, :overrides) SENSITIVE = [] include Aws::Structure end |