pub struct ApplicationPolicyStatement {
pub actions: Vec<String>,
pub principal_org_i_ds: Option<Vec<String>>,
pub principals: Vec<String>,
pub statement_id: Option<String>,
}Expand description
Policy statement applied to the application.
Fields§
§actions: Vec<String>For the list of actions supported for this operation, see Application Permissions.
principal_org_i_ds: Option<Vec<String>>An array of PrinciplalOrgIDs, which corresponds to AWS IAM aws:PrincipalOrgID global condition key.
principals: Vec<String>An array of AWS account IDs, or * to make the application public.
statement_id: Option<String>A unique ID for the statement.
Trait Implementations§
Source§impl Clone for ApplicationPolicyStatement
impl Clone for ApplicationPolicyStatement
Source§fn clone(&self) -> ApplicationPolicyStatement
fn clone(&self) -> ApplicationPolicyStatement
Returns a duplicate 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 ApplicationPolicyStatement
impl Debug for ApplicationPolicyStatement
Source§impl Default for ApplicationPolicyStatement
impl Default for ApplicationPolicyStatement
Source§fn default() -> ApplicationPolicyStatement
fn default() -> ApplicationPolicyStatement
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ApplicationPolicyStatement
impl<'de> Deserialize<'de> for ApplicationPolicyStatement
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
impl StructuralPartialEq for ApplicationPolicyStatement
Auto Trait Implementations§
impl Freeze for ApplicationPolicyStatement
impl RefUnwindSafe for ApplicationPolicyStatement
impl Send for ApplicationPolicyStatement
impl Sync for ApplicationPolicyStatement
impl Unpin for ApplicationPolicyStatement
impl UnwindSafe for ApplicationPolicyStatement
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