Struct aws_sdk_workspacesweb::operation::update_identity_provider::UpdateIdentityProviderOutput
source · #[non_exhaustive]pub struct UpdateIdentityProviderOutput {
pub identity_provider: Option<IdentityProvider>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.identity_provider: Option<IdentityProvider>
The identity provider.
Implementations§
source§impl UpdateIdentityProviderOutput
impl UpdateIdentityProviderOutput
sourcepub fn identity_provider(&self) -> Option<&IdentityProvider>
pub fn identity_provider(&self) -> Option<&IdentityProvider>
The identity provider.
source§impl UpdateIdentityProviderOutput
impl UpdateIdentityProviderOutput
sourcepub fn builder() -> UpdateIdentityProviderOutputBuilder
pub fn builder() -> UpdateIdentityProviderOutputBuilder
Creates a new builder-style object to manufacture UpdateIdentityProviderOutput
.
Trait Implementations§
source§impl Clone for UpdateIdentityProviderOutput
impl Clone for UpdateIdentityProviderOutput
source§fn clone(&self) -> UpdateIdentityProviderOutput
fn clone(&self) -> UpdateIdentityProviderOutput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for UpdateIdentityProviderOutput
impl Debug for UpdateIdentityProviderOutput
source§impl PartialEq<UpdateIdentityProviderOutput> for UpdateIdentityProviderOutput
impl PartialEq<UpdateIdentityProviderOutput> for UpdateIdentityProviderOutput
source§fn eq(&self, other: &UpdateIdentityProviderOutput) -> bool
fn eq(&self, other: &UpdateIdentityProviderOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for UpdateIdentityProviderOutput
impl RequestId for UpdateIdentityProviderOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for UpdateIdentityProviderOutput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateIdentityProviderOutput
impl Send for UpdateIdentityProviderOutput
impl Sync for UpdateIdentityProviderOutput
impl Unpin for UpdateIdentityProviderOutput
impl UnwindSafe for UpdateIdentityProviderOutput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more