pub struct AssociatedPolicy {
pub policy_arn: String,
pub access_scope: Value,
pub associated_at: DateTime<Utc>,
pub modified_at: DateTime<Utc>,
}Expand description
An access policy associated to an access entry via AssociateAccessPolicy.
access_scope is stored as the {type, namespaces} JSON object echoed back
on describe/list so the round-trip is faithful.
Fields§
§policy_arn: String§access_scope: Value§associated_at: DateTime<Utc>§modified_at: DateTime<Utc>Trait Implementations§
Source§impl Clone for AssociatedPolicy
impl Clone for AssociatedPolicy
Source§fn clone(&self) -> AssociatedPolicy
fn clone(&self) -> AssociatedPolicy
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AssociatedPolicy
impl Debug for AssociatedPolicy
Source§impl<'de> Deserialize<'de> for AssociatedPolicy
impl<'de> Deserialize<'de> for AssociatedPolicy
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AssociatedPolicy
impl RefUnwindSafe for AssociatedPolicy
impl Send for AssociatedPolicy
impl Sync for AssociatedPolicy
impl Unpin for AssociatedPolicy
impl UnsafeUnpin for AssociatedPolicy
impl UnwindSafe for AssociatedPolicy
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