pub struct AccountPolicy {
pub policy_name: String,
pub policy_type: String,
pub policy_document: String,
pub scope: Option<String>,
pub selection_criteria: Option<String>,
pub account_id: String,
pub last_updated_time: i64,
}Fields§
§policy_name: String§policy_type: String§policy_document: String§scope: Option<String>§selection_criteria: Option<String>§account_id: String§last_updated_time: i64Trait Implementations§
Source§impl Clone for AccountPolicy
impl Clone for AccountPolicy
Source§fn clone(&self) -> AccountPolicy
fn clone(&self) -> AccountPolicy
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<'de> Deserialize<'de> for AccountPolicy
impl<'de> Deserialize<'de> for AccountPolicy
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 AccountPolicy
impl RefUnwindSafe for AccountPolicy
impl Send for AccountPolicy
impl Sync for AccountPolicy
impl Unpin for AccountPolicy
impl UnsafeUnpin for AccountPolicy
impl UnwindSafe for AccountPolicy
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