Class: Aws::EMR::Types::PutManagedScalingPolicyInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::EMR::Types::PutManagedScalingPolicyInput
- Defined in:
- gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb
Overview
Note:
When making an API call, you may pass PutManagedScalingPolicyInput data as a hash:
{
cluster_id: "ClusterId", # required
managed_scaling_policy: { # required
compute_limits: {
unit_type: "InstanceFleetUnits", # required, accepts InstanceFleetUnits, Instances, VCPU
minimum_capacity_units: 1, # required
maximum_capacity_units: 1, # required
maximum_on_demand_capacity_units: 1,
maximum_core_capacity_units: 1,
},
},
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cluster_id ⇒ String
Specifies the ID of an EMR cluster where the managed scaling policy is attached.
-
#managed_scaling_policy ⇒ Types::ManagedScalingPolicy
Specifies the constraints for the managed scaling policy.
Instance Attribute Details
#cluster_id ⇒ String
Specifies the ID of an EMR cluster where the managed scaling policy is attached.
5997 5998 5999 6000 6001 6002 |
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 5997 class PutManagedScalingPolicyInput < Struct.new( :cluster_id, :managed_scaling_policy) SENSITIVE = [] include Aws::Structure end |
#managed_scaling_policy ⇒ Types::ManagedScalingPolicy
Specifies the constraints for the managed scaling policy.
5997 5998 5999 6000 6001 6002 |
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 5997 class PutManagedScalingPolicyInput < Struct.new( :cluster_id, :managed_scaling_policy) SENSITIVE = [] include Aws::Structure end |