Struct aws_sdk_ssoadmin::operation::update_trusted_token_issuer::builders::UpdateTrustedTokenIssuerFluentBuilder
source · pub struct UpdateTrustedTokenIssuerFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to UpdateTrustedTokenIssuer
.
Updates the name of the trusted token issuer, or the path of a source attribute or destination attribute for a trusted token issuer configuration.
Updating this trusted token issuer configuration might cause users to lose access to any applications that are configured to use the trusted token issuer.
Implementations§
source§impl UpdateTrustedTokenIssuerFluentBuilder
impl UpdateTrustedTokenIssuerFluentBuilder
sourcepub fn as_input(&self) -> &UpdateTrustedTokenIssuerInputBuilder
pub fn as_input(&self) -> &UpdateTrustedTokenIssuerInputBuilder
Access the UpdateTrustedTokenIssuer as a reference.
sourcepub async fn send(
self
) -> Result<UpdateTrustedTokenIssuerOutput, SdkError<UpdateTrustedTokenIssuerError, HttpResponse>>
pub async fn send( self ) -> Result<UpdateTrustedTokenIssuerOutput, SdkError<UpdateTrustedTokenIssuerError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self
) -> CustomizableOperation<UpdateTrustedTokenIssuerOutput, UpdateTrustedTokenIssuerError, Self>
pub fn customize( self ) -> CustomizableOperation<UpdateTrustedTokenIssuerOutput, UpdateTrustedTokenIssuerError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn trusted_token_issuer_arn(self, input: impl Into<String>) -> Self
pub fn trusted_token_issuer_arn(self, input: impl Into<String>) -> Self
Specifies the ARN of the trusted token issuer configuration that you want to update.
sourcepub fn set_trusted_token_issuer_arn(self, input: Option<String>) -> Self
pub fn set_trusted_token_issuer_arn(self, input: Option<String>) -> Self
Specifies the ARN of the trusted token issuer configuration that you want to update.
sourcepub fn get_trusted_token_issuer_arn(&self) -> &Option<String>
pub fn get_trusted_token_issuer_arn(&self) -> &Option<String>
Specifies the ARN of the trusted token issuer configuration that you want to update.
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
Specifies the updated name to be applied to the trusted token issuer configuration.
sourcepub fn set_name(self, input: Option<String>) -> Self
pub fn set_name(self, input: Option<String>) -> Self
Specifies the updated name to be applied to the trusted token issuer configuration.
sourcepub fn get_name(&self) -> &Option<String>
pub fn get_name(&self) -> &Option<String>
Specifies the updated name to be applied to the trusted token issuer configuration.
sourcepub fn trusted_token_issuer_configuration(
self,
input: TrustedTokenIssuerUpdateConfiguration
) -> Self
pub fn trusted_token_issuer_configuration( self, input: TrustedTokenIssuerUpdateConfiguration ) -> Self
Specifies a structure with settings to apply to the specified trusted token issuer. The settings that you can provide are determined by the type of the trusted token issuer that you are updating.
sourcepub fn set_trusted_token_issuer_configuration(
self,
input: Option<TrustedTokenIssuerUpdateConfiguration>
) -> Self
pub fn set_trusted_token_issuer_configuration( self, input: Option<TrustedTokenIssuerUpdateConfiguration> ) -> Self
Specifies a structure with settings to apply to the specified trusted token issuer. The settings that you can provide are determined by the type of the trusted token issuer that you are updating.
sourcepub fn get_trusted_token_issuer_configuration(
&self
) -> &Option<TrustedTokenIssuerUpdateConfiguration>
pub fn get_trusted_token_issuer_configuration( &self ) -> &Option<TrustedTokenIssuerUpdateConfiguration>
Specifies a structure with settings to apply to the specified trusted token issuer. The settings that you can provide are determined by the type of the trusted token issuer that you are updating.
Trait Implementations§
source§impl Clone for UpdateTrustedTokenIssuerFluentBuilder
impl Clone for UpdateTrustedTokenIssuerFluentBuilder
source§fn clone(&self) -> UpdateTrustedTokenIssuerFluentBuilder
fn clone(&self) -> UpdateTrustedTokenIssuerFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more