Get Managed Scaling Policy
| emr_get_managed_scaling_policy | R Documentation | 
Fetches the attached managed scaling policy for an Amazon EMR cluster¶
Description¶
Fetches the attached managed scaling policy for an Amazon EMR cluster.
Usage¶
emr_get_managed_scaling_policy(ClusterId)
Arguments¶
ClusterId | 
[required] Specifies the ID of the cluster for which the managed scaling policy will be fetched.  | 
Value¶
A list with the following syntax:
list(
  ManagedScalingPolicy = list(
    ComputeLimits = list(
      UnitType = "InstanceFleetUnits"|"Instances"|"VCPU",
      MinimumCapacityUnits = 123,
      MaximumCapacityUnits = 123,
      MaximumOnDemandCapacityUnits = 123,
      MaximumCoreCapacityUnits = 123
    ),
    UtilizationPerformanceIndex = 123,
    ScalingStrategy = "DEFAULT"|"ADVANCED"
  )
)
Request syntax¶
svc$get_managed_scaling_policy(
  ClusterId = "string"
)