aws-sdk-devopsagent 1.4.0

AWS SDK for AWS DevOps Agent Service
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateOperatorAppIdpConfig`](crate::operation::update_operator_app_idp_config::builders::UpdateOperatorAppIdpConfigFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`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>
    ///   - [`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>
    /// - On success, responds with [`UpdateOperatorAppIdpConfigOutput`](crate::operation::update_operator_app_idp_config::UpdateOperatorAppIdpConfigOutput) with field(s):
    ///   - [`agent_space_id(String)`](crate::operation::update_operator_app_idp_config::UpdateOperatorAppIdpConfigOutput::agent_space_id): The unique identifier of the AgentSpace
    ///   - [`idp(Option<IdpAuthConfiguration>)`](crate::operation::update_operator_app_idp_config::UpdateOperatorAppIdpConfigOutput::idp): Configuration for external Identity Provider OIDC authentication flow for the Operator App.
    /// - On failure, responds with [`SdkError<UpdateOperatorAppIdpConfigError>`](crate::operation::update_operator_app_idp_config::UpdateOperatorAppIdpConfigError)
    pub fn update_operator_app_idp_config(
        &self,
    ) -> crate::operation::update_operator_app_idp_config::builders::UpdateOperatorAppIdpConfigFluentBuilder {
        crate::operation::update_operator_app_idp_config::builders::UpdateOperatorAppIdpConfigFluentBuilder::new(self.handle.clone())
    }
}