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.
2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 |
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 2685 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.
2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 |
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 2685 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
2685 2686 2687 |
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 2685 def unknown @unknown end |