pub struct PermissionRecord {
pub arn: String,
pub name: String,
pub resource_type: String,
pub status: String,
pub feature_set: String,
pub creation_time: DateTime<Utc>,
pub last_updated_time: DateTime<Utc>,
pub default_version: u32,
pub versions: Vec<PermissionVersionRecord>,
pub tags: TagMap,
}Expand description
A customer-managed permission with its versions.
Fields§
§arn: String§name: String§resource_type: String§status: String§feature_set: String§creation_time: DateTime<Utc>§last_updated_time: DateTime<Utc>§default_version: u32§versions: Vec<PermissionVersionRecord>Trait Implementations§
Source§impl Clone for PermissionRecord
impl Clone for PermissionRecord
Source§fn clone(&self) -> PermissionRecord
fn clone(&self) -> PermissionRecord
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 PermissionRecord
impl Debug for PermissionRecord
Source§impl<'de> Deserialize<'de> for PermissionRecord
impl<'de> Deserialize<'de> for PermissionRecord
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 PermissionRecord
impl RefUnwindSafe for PermissionRecord
impl Send for PermissionRecord
impl Sync for PermissionRecord
impl Unpin for PermissionRecord
impl UnsafeUnpin for PermissionRecord
impl UnwindSafe for PermissionRecord
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