Struct aws_sdk_ssoadmin::operation::update_trusted_token_issuer::UpdateTrustedTokenIssuerInput
source · #[non_exhaustive]pub struct UpdateTrustedTokenIssuerInput {
pub trusted_token_issuer_arn: Option<String>,
pub name: Option<String>,
pub trusted_token_issuer_configuration: Option<TrustedTokenIssuerUpdateConfiguration>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.trusted_token_issuer_arn: Option<String>
Specifies the ARN of the trusted token issuer configuration that you want to update.
name: Option<String>
Specifies the updated name to be applied to the trusted token issuer configuration.
trusted_token_issuer_configuration: 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.
Implementations§
source§impl UpdateTrustedTokenIssuerInput
impl UpdateTrustedTokenIssuerInput
sourcepub fn trusted_token_issuer_arn(&self) -> Option<&str>
pub fn trusted_token_issuer_arn(&self) -> Option<&str>
Specifies the ARN of the trusted token issuer configuration that you want to update.
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
Specifies the updated name to be applied to the trusted token issuer configuration.
sourcepub fn trusted_token_issuer_configuration(
&self
) -> Option<&TrustedTokenIssuerUpdateConfiguration>
pub fn 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.
source§impl UpdateTrustedTokenIssuerInput
impl UpdateTrustedTokenIssuerInput
sourcepub fn builder() -> UpdateTrustedTokenIssuerInputBuilder
pub fn builder() -> UpdateTrustedTokenIssuerInputBuilder
Creates a new builder-style object to manufacture UpdateTrustedTokenIssuerInput
.
Trait Implementations§
source§impl Clone for UpdateTrustedTokenIssuerInput
impl Clone for UpdateTrustedTokenIssuerInput
source§fn clone(&self) -> UpdateTrustedTokenIssuerInput
fn clone(&self) -> UpdateTrustedTokenIssuerInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for UpdateTrustedTokenIssuerInput
impl PartialEq for UpdateTrustedTokenIssuerInput
source§fn eq(&self, other: &UpdateTrustedTokenIssuerInput) -> bool
fn eq(&self, other: &UpdateTrustedTokenIssuerInput) -> bool
self
and other
values to be equal, and is used
by ==
.