pub struct LambdaResource {
pub event_triggers: Option<Vec<EventTriggerDefinition>>,
pub lambda_arn: Option<String>,
}Expand description
Identifies
Fields§
§event_triggers: Option<Vec<EventTriggerDefinition>>The array of ARNs for S3Resource objects to trigger the LambdaResource objects associated with this job.
lambda_arn: Option<String>An Amazon Resource Name (ARN) that represents an AWS Lambda function to be triggered by PUT object actions on the associated local Amazon S3 resource.
Trait Implementations§
Source§impl Clone for LambdaResource
impl Clone for LambdaResource
Source§fn clone(&self) -> LambdaResource
fn clone(&self) -> LambdaResource
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 LambdaResource
impl Debug for LambdaResource
Source§impl Default for LambdaResource
impl Default for LambdaResource
Source§fn default() -> LambdaResource
fn default() -> LambdaResource
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LambdaResource
impl<'de> Deserialize<'de> for LambdaResource
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
Source§impl PartialEq for LambdaResource
impl PartialEq for LambdaResource
Source§impl Serialize for LambdaResource
impl Serialize for LambdaResource
impl StructuralPartialEq for LambdaResource
Auto Trait Implementations§
impl Freeze for LambdaResource
impl RefUnwindSafe for LambdaResource
impl Send for LambdaResource
impl Sync for LambdaResource
impl Unpin for LambdaResource
impl UnwindSafe for LambdaResource
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