pub struct Policy {
pub triggerables: Option<HashMap<String, Value>>,
pub triggerables_v2: Option<HashMap<String, Value>>,
pub s3_inputs: Option<Vec<Value>>,
pub allowed_s3_keys: Option<Vec<PolicyAllowedS3KeysInner>>,
pub execution_mode: Option<ExecutionMode>,
pub on_behalf_of: Option<String>,
pub on_behalf_of_email: Option<String>,
}
Fields§
§triggerables: Option<HashMap<String, Value>>
§triggerables_v2: Option<HashMap<String, Value>>
§s3_inputs: Option<Vec<Value>>
§allowed_s3_keys: Option<Vec<PolicyAllowedS3KeysInner>>
§execution_mode: Option<ExecutionMode>
§on_behalf_of: Option<String>
§on_behalf_of_email: Option<String>
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Policy
impl<'de> Deserialize<'de> for Policy
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 Policy
Auto Trait Implementations§
impl Freeze for Policy
impl RefUnwindSafe for Policy
impl Send for Policy
impl Sync for Policy
impl Unpin for Policy
impl UnwindSafe for Policy
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