![]() |
![]()
| ![]() |
![]()
NAMEPaws::AutoScaling::SetInstanceHealth - Arguments for method SetInstanceHealth on Paws::AutoScaling DESCRIPTIONThis class represents the parameters used for calling the method SetInstanceHealth on the Auto Scaling service. Use the attributes of this class as arguments to method SetInstanceHealth. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to SetInstanceHealth. SYNOPSISmy $autoscaling = Paws->service('AutoScaling'); # To set the health status of an instance # This example sets the health status of the specified instance to Unhealthy. $autoscaling->SetInstanceHealth( 'HealthStatus' => 'Unhealthy', 'InstanceId' => 'i-93633f9b' ); Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see <https://docs.aws.amazon.com/goto/WebAPI/autoscaling/SetInstanceHealth> ATTRIBUTESREQUIRED HealthStatus => StrThe health status of the instance. Set to "Healthy" to have the instance remain in service. Set to "Unhealthy" to have the instance be out of service. Amazon EC2 Auto Scaling terminates and replaces the unhealthy instance. REQUIRED InstanceId => StrThe ID of the instance. ShouldRespectGracePeriod => BoolIf the Auto Scaling group of the specified instance has a "HealthCheckGracePeriod" specified for the group, by default, this call respects the grace period. Set this to "False", to have the call not respect the grace period associated with the group. For more information about the health check grace period, see CreateAutoScalingGroup (https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_CreateAutoScalingGroup.html) in the Amazon EC2 Auto Scaling API Reference. SEE ALSOThis class forms part of Paws, documenting arguments for method SetInstanceHealth in Paws::AutoScaling BUGS and CONTRIBUTIONSThe source code is located here: <https://github.com/pplu/aws-sdk-perl> Please report bugs to: <https://github.com/pplu/aws-sdk-perl/issues>
|