aws_sdk_schemas/client/
start_discoverer.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 [`StartDiscoverer`](crate::operation::start_discoverer::builders::StartDiscovererFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`discoverer_id(impl Into<String>)`](crate::operation::start_discoverer::builders::StartDiscovererFluentBuilder::discoverer_id) / [`set_discoverer_id(Option<String>)`](crate::operation::start_discoverer::builders::StartDiscovererFluentBuilder::set_discoverer_id):<br>required: **true**<br><p>The ID of the discoverer.</p><br>
7    /// - On success, responds with [`StartDiscovererOutput`](crate::operation::start_discoverer::StartDiscovererOutput) with field(s):
8    ///   - [`discoverer_id(Option<String>)`](crate::operation::start_discoverer::StartDiscovererOutput::discoverer_id): <p>The ID of the discoverer.</p>
9    ///   - [`state(Option<DiscovererState>)`](crate::operation::start_discoverer::StartDiscovererOutput::state): <p>The state of the discoverer.</p>
10    /// - On failure, responds with [`SdkError<StartDiscovererError>`](crate::operation::start_discoverer::StartDiscovererError)
11    pub fn start_discoverer(&self) -> crate::operation::start_discoverer::builders::StartDiscovererFluentBuilder {
12        crate::operation::start_discoverer::builders::StartDiscovererFluentBuilder::new(self.handle.clone())
13    }
14}