Skip to main content

aws_sdk_devopsagent/client/
update_operator_app_idp_config.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 [`UpdateOperatorAppIdpConfig`](crate::operation::update_operator_app_idp_config::builders::UpdateOperatorAppIdpConfigFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`agent_space_id(impl Into<String>)`](crate::operation::update_operator_app_idp_config::builders::UpdateOperatorAppIdpConfigFluentBuilder::agent_space_id) / [`set_agent_space_id(Option<String>)`](crate::operation::update_operator_app_idp_config::builders::UpdateOperatorAppIdpConfigFluentBuilder::set_agent_space_id):<br>required: **true**<br>The unique identifier of the AgentSpace<br>
7    ///   - [`idp_client_secret(impl Into<String>)`](crate::operation::update_operator_app_idp_config::builders::UpdateOperatorAppIdpConfigFluentBuilder::idp_client_secret) / [`set_idp_client_secret(Option<String>)`](crate::operation::update_operator_app_idp_config::builders::UpdateOperatorAppIdpConfigFluentBuilder::set_idp_client_secret):<br>required: **false**<br>The OIDC client secret for the IdP application<br>
8    /// - On success, responds with [`UpdateOperatorAppIdpConfigOutput`](crate::operation::update_operator_app_idp_config::UpdateOperatorAppIdpConfigOutput) with field(s):
9    ///   - [`agent_space_id(String)`](crate::operation::update_operator_app_idp_config::UpdateOperatorAppIdpConfigOutput::agent_space_id): The unique identifier of the AgentSpace
10    ///   - [`idp(Option<IdpAuthConfiguration>)`](crate::operation::update_operator_app_idp_config::UpdateOperatorAppIdpConfigOutput::idp): Configuration for external Identity Provider OIDC authentication flow for the Operator App.
11    /// - On failure, responds with [`SdkError<UpdateOperatorAppIdpConfigError>`](crate::operation::update_operator_app_idp_config::UpdateOperatorAppIdpConfigError)
12    pub fn update_operator_app_idp_config(
13        &self,
14    ) -> crate::operation::update_operator_app_idp_config::builders::UpdateOperatorAppIdpConfigFluentBuilder {
15        crate::operation::update_operator_app_idp_config::builders::UpdateOperatorAppIdpConfigFluentBuilder::new(self.handle.clone())
16    }
17}