aws_sdk_ssmsap/client/get_configuration_check_operation.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 [`GetConfigurationCheckOperation`](crate::operation::get_configuration_check_operation::builders::GetConfigurationCheckOperationFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`operation_id(impl Into<String>)`](crate::operation::get_configuration_check_operation::builders::GetConfigurationCheckOperationFluentBuilder::operation_id) / [`set_operation_id(Option<String>)`](crate::operation::get_configuration_check_operation::builders::GetConfigurationCheckOperationFluentBuilder::set_operation_id):<br>required: **true**<br><p>The ID of the configuration check operation.</p><br>
7 /// - On success, responds with [`GetConfigurationCheckOperationOutput`](crate::operation::get_configuration_check_operation::GetConfigurationCheckOperationOutput) with field(s):
8 /// - [`configuration_check_operation(Option<ConfigurationCheckOperation>)`](crate::operation::get_configuration_check_operation::GetConfigurationCheckOperationOutput::configuration_check_operation): <p>Returns the details of a configuration check operation.</p>
9 /// - On failure, responds with [`SdkError<GetConfigurationCheckOperationError>`](crate::operation::get_configuration_check_operation::GetConfigurationCheckOperationError)
10 pub fn get_configuration_check_operation(
11 &self,
12 ) -> crate::operation::get_configuration_check_operation::builders::GetConfigurationCheckOperationFluentBuilder {
13 crate::operation::get_configuration_check_operation::builders::GetConfigurationCheckOperationFluentBuilder::new(self.handle.clone())
14 }
15}