EC2 / Client / disable_application_status_check_suppression
disable_application_status_check_suppression¶
- EC2.Client.disable_application_status_check_suppression(**kwargs)¶
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.
See also: AWS API Documentation
Request Syntax
response = client.disable_application_status_check_suppression( InstanceIds=[ 'string', ], ClientToken='string', DryRun=True|False )
- Parameters:
InstanceIds (list) –
The IDs of the instances for which to disable application status check suppression.
(string) –
ClientToken (string) –
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring idempotency.
This field is autopopulated if not provided.
DryRun (boolean) – Checks whether you have the required permissions for the operation, without actually making the request, and provides an error response. If you have the required permissions, the error response is
DryRunOperation. Otherwise, it isUnauthorizedOperation.
- Return type:
dict
- Returns:
Response Syntax
{ 'SuccessfulResults': [ { 'InstanceId': 'string', 'SuppressAt': datetime(2015, 1, 1), 'ResumeAt': datetime(2015, 1, 1) }, ], 'UnsuccessfulResults': [ { 'InstanceId': 'string', 'SuppressAt': datetime(2015, 1, 1), 'ResumeAt': datetime(2015, 1, 1), 'Reason': 'string' }, ] }
Response Structure
(dict) –
SuccessfulResults (list) –
The instances for which suppression was successfully disabled.
(dict) –
Describes a successful application status check suppression.
InstanceId (string) –
The ID of the instance.
SuppressAt (datetime) –
The date and time when suppression started.
ResumeAt (datetime) –
The date and time when suppression ends and health checks resume.
UnsuccessfulResults (list) –
The instances for which suppression failed to be disabled.
(dict) –
Describes an unsuccessful application status check suppression.
InstanceId (string) –
The ID of the instance.
SuppressAt (datetime) –
The date and time when suppression was attempted.
ResumeAt (datetime) –
The date and time when health checks would have resumed.
Reason (string) –
The reason the suppression failed.