// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`EnableApplicationStatusCheckSuppression`](crate::operation::enable_application_status_check_suppression::builders::EnableApplicationStatusCheckSuppressionFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`instance_ids(impl Into<String>)`](crate::operation::enable_application_status_check_suppression::builders::EnableApplicationStatusCheckSuppressionFluentBuilder::instance_ids) / [`set_instance_ids(Option<Vec::<String>>)`](crate::operation::enable_application_status_check_suppression::builders::EnableApplicationStatusCheckSuppressionFluentBuilder::set_instance_ids):<br>required: **false**<br><p>The IDs of the instances for which to suppress application status checks.</p><br>
/// - [`duration_seconds(i32)`](crate::operation::enable_application_status_check_suppression::builders::EnableApplicationStatusCheckSuppressionFluentBuilder::duration_seconds) / [`set_duration_seconds(Option<i32>)`](crate::operation::enable_application_status_check_suppression::builders::EnableApplicationStatusCheckSuppressionFluentBuilder::set_duration_seconds):<br>required: **false**<br><p>The duration, in seconds, for which to suppress application status checks. If omitted, the application status check is suppressed indefinitely until you call <code>DisableApplicationStatusCheckSuppression</code>.</p><br>
/// - [`client_token(impl Into<String>)`](crate::operation::enable_application_status_check_suppression::builders::EnableApplicationStatusCheckSuppressionFluentBuilder::client_token) / [`set_client_token(Option<String>)`](crate::operation::enable_application_status_check_suppression::builders::EnableApplicationStatusCheckSuppressionFluentBuilder::set_client_token):<br>required: **false**<br><p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html">Ensuring idempotency</a>.</p><br>
/// - [`dry_run(bool)`](crate::operation::enable_application_status_check_suppression::builders::EnableApplicationStatusCheckSuppressionFluentBuilder::dry_run) / [`set_dry_run(Option<bool>)`](crate::operation::enable_application_status_check_suppression::builders::EnableApplicationStatusCheckSuppressionFluentBuilder::set_dry_run):<br>required: **false**<br><p>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 <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p><br>
/// - On success, responds with [`EnableApplicationStatusCheckSuppressionOutput`](crate::operation::enable_application_status_check_suppression::EnableApplicationStatusCheckSuppressionOutput) with field(s):
/// - [`successful_results(Option<Vec::<SuccessfulSuppressionResponseObject>>)`](crate::operation::enable_application_status_check_suppression::EnableApplicationStatusCheckSuppressionOutput::successful_results): <p>The instances for which suppression was successfully enabled.</p>
/// - [`unsuccessful_results(Option<Vec::<UnsuccessfulSuppressionResponseObject>>)`](crate::operation::enable_application_status_check_suppression::EnableApplicationStatusCheckSuppressionOutput::unsuccessful_results): <p>The instances for which suppression failed to be enabled.</p>
/// - On failure, responds with [`SdkError<EnableApplicationStatusCheckSuppressionError>`](crate::operation::enable_application_status_check_suppression::EnableApplicationStatusCheckSuppressionError)
pub fn enable_application_status_check_suppression(
&self,
) -> crate::operation::enable_application_status_check_suppression::builders::EnableApplicationStatusCheckSuppressionFluentBuilder {
crate::operation::enable_application_status_check_suppression::builders::EnableApplicationStatusCheckSuppressionFluentBuilder::new(
self.handle.clone(),
)
}
}