AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.
Disables suppression of application status checks for the specified instances. After suppression is disabled, health check results resume affecting the instance-level application status. You can specify a maximum of 100 instance IDs per request.
For .NET Core this operation is only available in asynchronous form. Please refer to DisableApplicationStatusCheckSuppressionAsync.
Namespace: Amazon.EC2
Assembly: AWSSDK.EC2.dll
Version: 3.x.y.z
public virtual DisableApplicationStatusCheckSuppressionResponse DisableApplicationStatusCheckSuppression( DisableApplicationStatusCheckSuppressionRequest request )
Container for the necessary parameters to execute the DisableApplicationStatusCheckSuppression service method.
This example disables application status check suppression for the specified instance, resuming normal status reporting.
var client = new AmazonEC2Client();
var response = client.DisableApplicationStatusCheckSuppression(new DisableApplicationStatusCheckSuppressionRequest
{
InstanceIds = new List<string> {
"i-0123456789abcdef0"
}
});
List<SuccessfulSuppressionResponseObject> successfulResults = response.SuccessfulResults;
List<UnsuccessfulSuppressionResponseObject> unsuccessfulResults = response.UnsuccessfulResults;
.NET Framework:
Supported in: 4.7.2 and newer