aws_sdk_devopsagent/client/disable_operator_app.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 [`DisableOperatorApp`](crate::operation::disable_operator_app::builders::DisableOperatorAppFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`agent_space_id(impl Into<String>)`](crate::operation::disable_operator_app::builders::DisableOperatorAppFluentBuilder::agent_space_id) / [`set_agent_space_id(Option<String>)`](crate::operation::disable_operator_app::builders::DisableOperatorAppFluentBuilder::set_agent_space_id):<br>required: **true**<br>The unique identifier of the AgentSpace<br>
7 /// - [`auth_flow(AuthFlow)`](crate::operation::disable_operator_app::builders::DisableOperatorAppFluentBuilder::auth_flow) / [`set_auth_flow(Option<AuthFlow>)`](crate::operation::disable_operator_app::builders::DisableOperatorAppFluentBuilder::set_auth_flow):<br>required: **false**<br>The authentication flow configured for the operator App. e.g. idc<br>
8 /// - On success, responds with [`DisableOperatorAppOutput`](crate::operation::disable_operator_app::DisableOperatorAppOutput)
9 /// - On failure, responds with [`SdkError<DisableOperatorAppError>`](crate::operation::disable_operator_app::DisableOperatorAppError)
10 pub fn disable_operator_app(&self) -> crate::operation::disable_operator_app::builders::DisableOperatorAppFluentBuilder {
11 crate::operation::disable_operator_app::builders::DisableOperatorAppFluentBuilder::new(self.handle.clone())
12 }
13}