#[non_exhaustive]pub struct SetSecurityTokenServicePreferencesInput {
pub global_endpoint_token_version: Option<GlobalEndpointTokenVersion>,
}
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.global_endpoint_token_version: Option<GlobalEndpointTokenVersion>
The version of the global endpoint token. Version 1 tokens are valid only in Amazon Web Services Regions that are available by default. These tokens do not work in manually enabled Regions, such as Asia Pacific (Hong Kong). Version 2 tokens are valid in all Regions. However, version 2 tokens are longer and might affect systems where you temporarily store tokens.
For information, see Activating and deactivating STS in an Amazon Web Services Region in the IAM User Guide.
Implementations
sourceimpl SetSecurityTokenServicePreferencesInput
impl SetSecurityTokenServicePreferencesInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<SetSecurityTokenServicePreferences, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<SetSecurityTokenServicePreferences, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<SetSecurityTokenServicePreferences
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SetSecurityTokenServicePreferencesInput
sourceimpl SetSecurityTokenServicePreferencesInput
impl SetSecurityTokenServicePreferencesInput
sourcepub fn global_endpoint_token_version(
&self
) -> Option<&GlobalEndpointTokenVersion>
pub fn global_endpoint_token_version(
&self
) -> Option<&GlobalEndpointTokenVersion>
The version of the global endpoint token. Version 1 tokens are valid only in Amazon Web Services Regions that are available by default. These tokens do not work in manually enabled Regions, such as Asia Pacific (Hong Kong). Version 2 tokens are valid in all Regions. However, version 2 tokens are longer and might affect systems where you temporarily store tokens.
For information, see Activating and deactivating STS in an Amazon Web Services Region in the IAM User Guide.
Trait Implementations
sourceimpl Clone for SetSecurityTokenServicePreferencesInput
impl Clone for SetSecurityTokenServicePreferencesInput
sourcefn clone(&self) -> SetSecurityTokenServicePreferencesInput
fn clone(&self) -> SetSecurityTokenServicePreferencesInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl PartialEq<SetSecurityTokenServicePreferencesInput> for SetSecurityTokenServicePreferencesInput
impl PartialEq<SetSecurityTokenServicePreferencesInput> for SetSecurityTokenServicePreferencesInput
sourcefn eq(&self, other: &SetSecurityTokenServicePreferencesInput) -> bool
fn eq(&self, other: &SetSecurityTokenServicePreferencesInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &SetSecurityTokenServicePreferencesInput) -> bool
fn ne(&self, other: &SetSecurityTokenServicePreferencesInput) -> bool
This method tests for !=
.
impl StructuralPartialEq for SetSecurityTokenServicePreferencesInput
Auto Trait Implementations
impl RefUnwindSafe for SetSecurityTokenServicePreferencesInput
impl Send for SetSecurityTokenServicePreferencesInput
impl Sync for SetSecurityTokenServicePreferencesInput
impl Unpin for SetSecurityTokenServicePreferencesInput
impl UnwindSafe for SetSecurityTokenServicePreferencesInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more