Struct aws_sdk_verifiedpermissions::operation::update_identity_source::UpdateIdentitySourceOutput
source · #[non_exhaustive]pub struct UpdateIdentitySourceOutput {
pub created_date: Option<DateTime>,
pub identity_source_id: Option<String>,
pub last_updated_date: Option<DateTime>,
pub policy_store_id: Option<String>,
/* 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.created_date: Option<DateTime>
The date and time that the updated identity source was originally created.
identity_source_id: Option<String>
The ID of the updated identity source.
last_updated_date: Option<DateTime>
The date and time that the identity source was most recently updated.
policy_store_id: Option<String>
The ID of the policy store that contains the updated identity source.
Implementations§
source§impl UpdateIdentitySourceOutput
impl UpdateIdentitySourceOutput
sourcepub fn created_date(&self) -> Option<&DateTime>
pub fn created_date(&self) -> Option<&DateTime>
The date and time that the updated identity source was originally created.
sourcepub fn identity_source_id(&self) -> Option<&str>
pub fn identity_source_id(&self) -> Option<&str>
The ID of the updated identity source.
sourcepub fn last_updated_date(&self) -> Option<&DateTime>
pub fn last_updated_date(&self) -> Option<&DateTime>
The date and time that the identity source was most recently updated.
sourcepub fn policy_store_id(&self) -> Option<&str>
pub fn policy_store_id(&self) -> Option<&str>
The ID of the policy store that contains the updated identity source.
source§impl UpdateIdentitySourceOutput
impl UpdateIdentitySourceOutput
sourcepub fn builder() -> UpdateIdentitySourceOutputBuilder
pub fn builder() -> UpdateIdentitySourceOutputBuilder
Creates a new builder-style object to manufacture UpdateIdentitySourceOutput
.
Trait Implementations§
source§impl Clone for UpdateIdentitySourceOutput
impl Clone for UpdateIdentitySourceOutput
source§fn clone(&self) -> UpdateIdentitySourceOutput
fn clone(&self) -> UpdateIdentitySourceOutput
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 UpdateIdentitySourceOutput
impl Debug for UpdateIdentitySourceOutput
source§impl PartialEq for UpdateIdentitySourceOutput
impl PartialEq for UpdateIdentitySourceOutput
source§fn eq(&self, other: &UpdateIdentitySourceOutput) -> bool
fn eq(&self, other: &UpdateIdentitySourceOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for UpdateIdentitySourceOutput
impl RequestId for UpdateIdentitySourceOutput
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 UpdateIdentitySourceOutput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateIdentitySourceOutput
impl Send for UpdateIdentitySourceOutput
impl Sync for UpdateIdentitySourceOutput
impl Unpin for UpdateIdentitySourceOutput
impl UnwindSafe for UpdateIdentitySourceOutput
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