aws_sdk_ssmsap/client/
start_configuration_checks.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`StartConfigurationChecks`](crate::operation::start_configuration_checks::builders::StartConfigurationChecksFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`application_id(impl Into<String>)`](crate::operation::start_configuration_checks::builders::StartConfigurationChecksFluentBuilder::application_id) / [`set_application_id(Option<String>)`](crate::operation::start_configuration_checks::builders::StartConfigurationChecksFluentBuilder::set_application_id):<br>required: **true**<br><p>The ID of the application.</p><br>
7    ///   - [`configuration_check_ids(ConfigurationCheckType)`](crate::operation::start_configuration_checks::builders::StartConfigurationChecksFluentBuilder::configuration_check_ids) / [`set_configuration_check_ids(Option<Vec::<ConfigurationCheckType>>)`](crate::operation::start_configuration_checks::builders::StartConfigurationChecksFluentBuilder::set_configuration_check_ids):<br>required: **false**<br><p>The list of configuration checks to perform.</p><br>
8    /// - On success, responds with [`StartConfigurationChecksOutput`](crate::operation::start_configuration_checks::StartConfigurationChecksOutput) with field(s):
9    ///   - [`configuration_check_operations(Option<Vec::<ConfigurationCheckOperation>>)`](crate::operation::start_configuration_checks::StartConfigurationChecksOutput::configuration_check_operations): <p>The configuration check operations that were started.</p>
10    /// - On failure, responds with [`SdkError<StartConfigurationChecksError>`](crate::operation::start_configuration_checks::StartConfigurationChecksError)
11    pub fn start_configuration_checks(&self) -> crate::operation::start_configuration_checks::builders::StartConfigurationChecksFluentBuilder {
12        crate::operation::start_configuration_checks::builders::StartConfigurationChecksFluentBuilder::new(self.handle.clone())
13    }
14}