Class: Aws::Deadline::Types::FleetConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Deadline::Types::FleetConfiguration
- Defined in:
- gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb
Overview
Note:
FleetConfiguration is a union - when making an API calls you must set exactly one of the members.
Note:
FleetConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of FleetConfiguration corresponding to the set member.
Fleet configuration details.
Direct Known Subclasses
Defined Under Namespace
Classes: CustomerManaged, ServiceManagedEc2, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#customer_managed ⇒ Types::CustomerManagedFleetConfiguration
The customer managed fleets within a fleet configuration.
-
#service_managed_ec2 ⇒ Types::ServiceManagedEc2FleetConfiguration
The service managed Amazon EC2 instances for a fleet configuration.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#customer_managed ⇒ Types::CustomerManagedFleetConfiguration
The customer managed fleets within a fleet configuration.
2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 |
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 2474 class FleetConfiguration < Struct.new( :customer_managed, :service_managed_ec2, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class CustomerManaged < FleetConfiguration; end class ServiceManagedEc2 < FleetConfiguration; end class Unknown < FleetConfiguration; end end |
#service_managed_ec2 ⇒ Types::ServiceManagedEc2FleetConfiguration
The service managed Amazon EC2 instances for a fleet configuration.
2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 |
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 2474 class FleetConfiguration < Struct.new( :customer_managed, :service_managed_ec2, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class CustomerManaged < FleetConfiguration; end class ServiceManagedEc2 < FleetConfiguration; end class Unknown < FleetConfiguration; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
2474 2475 2476 |
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 2474 def unknown @unknown end |