Skip to main content

aws_sdk_devopsagent/client/
get_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 [`GetOperatorApp`](crate::operation::get_operator_app::builders::GetOperatorAppFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`agent_space_id(impl Into<String>)`](crate::operation::get_operator_app::builders::GetOperatorAppFluentBuilder::agent_space_id) / [`set_agent_space_id(Option<String>)`](crate::operation::get_operator_app::builders::GetOperatorAppFluentBuilder::set_agent_space_id):<br>required: **true**<br>The unique identifier of the AgentSpace<br>
7    /// - On success, responds with [`GetOperatorAppOutput`](crate::operation::get_operator_app::GetOperatorAppOutput) with field(s):
8    ///   - [`iam(Option<IamAuthConfiguration>)`](crate::operation::get_operator_app::GetOperatorAppOutput::iam): Configuration for IAM-based authentication flow for the Operator App.
9    ///   - [`idc(Option<IdcAuthConfiguration>)`](crate::operation::get_operator_app::GetOperatorAppOutput::idc): Configuration for AWS Identity Center (IdC) authentication flow for the Operator App.
10    ///   - [`idp(Option<IdpAuthConfiguration>)`](crate::operation::get_operator_app::GetOperatorAppOutput::idp): Configuration for external Identity Provider OIDC authentication flow for the Operator App.
11    /// - On failure, responds with [`SdkError<GetOperatorAppError>`](crate::operation::get_operator_app::GetOperatorAppError)
12    pub fn get_operator_app(&self) -> crate::operation::get_operator_app::builders::GetOperatorAppFluentBuilder {
13        crate::operation::get_operator_app::builders::GetOperatorAppFluentBuilder::new(self.handle.clone())
14    }
15}