1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`NotifyApplicationState`](crate::operation::notify_application_state::builders::NotifyApplicationStateFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`application_id(impl Into<String>)`](crate::operation::notify_application_state::builders::NotifyApplicationStateFluentBuilder::application_id) / [`set_application_id(Option<String>)`](crate::operation::notify_application_state::builders::NotifyApplicationStateFluentBuilder::set_application_id): <p>The configurationId in Application Discovery Service that uniquely identifies the grouped application.</p>
    ///   - [`status(ApplicationStatus)`](crate::operation::notify_application_state::builders::NotifyApplicationStateFluentBuilder::status) / [`set_status(Option<ApplicationStatus>)`](crate::operation::notify_application_state::builders::NotifyApplicationStateFluentBuilder::set_status): <p>Status of the application - Not Started, In-Progress, Complete.</p>
    ///   - [`update_date_time(DateTime)`](crate::operation::notify_application_state::builders::NotifyApplicationStateFluentBuilder::update_date_time) / [`set_update_date_time(Option<DateTime>)`](crate::operation::notify_application_state::builders::NotifyApplicationStateFluentBuilder::set_update_date_time): <p>The timestamp when the application state changed.</p>
    ///   - [`dry_run(bool)`](crate::operation::notify_application_state::builders::NotifyApplicationStateFluentBuilder::dry_run) / [`set_dry_run(bool)`](crate::operation::notify_application_state::builders::NotifyApplicationStateFluentBuilder::set_dry_run): <p>Optional boolean flag to indicate whether any effect should take place. Used to test if the caller has permission to make the call.</p>
    /// - On success, responds with [`NotifyApplicationStateOutput`](crate::operation::notify_application_state::NotifyApplicationStateOutput)
    /// - On failure, responds with [`SdkError<NotifyApplicationStateError>`](crate::operation::notify_application_state::NotifyApplicationStateError)
    pub fn notify_application_state(
        &self,
    ) -> crate::operation::notify_application_state::builders::NotifyApplicationStateFluentBuilder
    {
        crate::operation::notify_application_state::builders::NotifyApplicationStateFluentBuilder::new(self.handle.clone())
    }
}