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><p>The unique identifier of the AgentSpace</p><br>
7    /// - On success, responds with [`GetOperatorAppOutput`](crate::operation::get_operator_app::GetOperatorAppOutput) with field(s):
8    ///   - [`operator_app_url(Option<String>)`](crate::operation::get_operator_app::GetOperatorAppOutput::operator_app_url): <p>The URL for operators to access the Operator App</p>
9    ///   - [`iam(Option<IamAuthConfiguration>)`](crate::operation::get_operator_app::GetOperatorAppOutput::iam): <p>Configuration for IAM-based authentication flow for the Operator App.</p>
10    ///   - [`idc(Option<IdcAuthConfiguration>)`](crate::operation::get_operator_app::GetOperatorAppOutput::idc): <p>Configuration for AWS Identity Center (IdC) authentication flow for the Operator App.</p>
11    ///   - [`idp(Option<IdpAuthConfiguration>)`](crate::operation::get_operator_app::GetOperatorAppOutput::idp): <p>Configuration for external Identity Provider OIDC authentication flow for the Operator App.</p>
12    /// - On failure, responds with [`SdkError<GetOperatorAppError>`](crate::operation::get_operator_app::GetOperatorAppError)
13    pub fn get_operator_app(&self) -> crate::operation::get_operator_app::builders::GetOperatorAppFluentBuilder {
14        crate::operation::get_operator_app::builders::GetOperatorAppFluentBuilder::new(self.handle.clone())
15    }
16}