#[non_exhaustive]pub struct CreatePolicyStoreOutput {
pub policy_store_id: Option<String>,
pub arn: Option<String>,
pub created_date: Option<DateTime>,
pub last_updated_date: Option<DateTime>,
/* 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.policy_store_id: Option<String>
The unique ID of the new policy store.
arn: Option<String>
The Amazon Resource Name (ARN) of the new policy store.
created_date: Option<DateTime>
The date and time the policy store was originally created.
last_updated_date: Option<DateTime>
The date and time the policy store was last updated.
Implementations§
source§impl CreatePolicyStoreOutput
impl CreatePolicyStoreOutput
sourcepub fn policy_store_id(&self) -> Option<&str>
pub fn policy_store_id(&self) -> Option<&str>
The unique ID of the new policy store.
sourcepub fn created_date(&self) -> Option<&DateTime>
pub fn created_date(&self) -> Option<&DateTime>
The date and time the policy store was originally created.
sourcepub fn last_updated_date(&self) -> Option<&DateTime>
pub fn last_updated_date(&self) -> Option<&DateTime>
The date and time the policy store was last updated.
source§impl CreatePolicyStoreOutput
impl CreatePolicyStoreOutput
sourcepub fn builder() -> CreatePolicyStoreOutputBuilder
pub fn builder() -> CreatePolicyStoreOutputBuilder
Creates a new builder-style object to manufacture CreatePolicyStoreOutput
.
Trait Implementations§
source§impl Clone for CreatePolicyStoreOutput
impl Clone for CreatePolicyStoreOutput
source§fn clone(&self) -> CreatePolicyStoreOutput
fn clone(&self) -> CreatePolicyStoreOutput
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 CreatePolicyStoreOutput
impl Debug for CreatePolicyStoreOutput
source§impl PartialEq for CreatePolicyStoreOutput
impl PartialEq for CreatePolicyStoreOutput
source§fn eq(&self, other: &CreatePolicyStoreOutput) -> bool
fn eq(&self, other: &CreatePolicyStoreOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for CreatePolicyStoreOutput
impl RequestId for CreatePolicyStoreOutput
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 CreatePolicyStoreOutput
Auto Trait Implementations§
impl RefUnwindSafe for CreatePolicyStoreOutput
impl Send for CreatePolicyStoreOutput
impl Sync for CreatePolicyStoreOutput
impl Unpin for CreatePolicyStoreOutput
impl UnwindSafe for CreatePolicyStoreOutput
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