pub struct LambdaOutputUpdate {
pub resource_arn_update: String,
}Expand description
When you update an SQL-based Amazon Kinesis Data Analytics application's output configuration using the UpdateApplication operation, provides information about an AWS Lambda function that is configured as the destination.
Fields§
§resource_arn_update: StringThe Amazon Resource Name (ARN) of the destination AWS Lambda function.
To specify an earlier version of the Lambda function than the latest, include the Lambda function version in the Lambda function ARN. For more information about Lambda ARNs, see Example ARNs: AWS Lambda
Trait Implementations§
Source§impl Clone for LambdaOutputUpdate
impl Clone for LambdaOutputUpdate
Source§fn clone(&self) -> LambdaOutputUpdate
fn clone(&self) -> LambdaOutputUpdate
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 LambdaOutputUpdate
impl Debug for LambdaOutputUpdate
Source§impl Default for LambdaOutputUpdate
impl Default for LambdaOutputUpdate
Source§fn default() -> LambdaOutputUpdate
fn default() -> LambdaOutputUpdate
Returns the “default value” for a type. Read more
Source§impl PartialEq for LambdaOutputUpdate
impl PartialEq for LambdaOutputUpdate
Source§impl Serialize for LambdaOutputUpdate
impl Serialize for LambdaOutputUpdate
impl StructuralPartialEq for LambdaOutputUpdate
Auto Trait Implementations§
impl Freeze for LambdaOutputUpdate
impl RefUnwindSafe for LambdaOutputUpdate
impl Send for LambdaOutputUpdate
impl Sync for LambdaOutputUpdate
impl Unpin for LambdaOutputUpdate
impl UnwindSafe for LambdaOutputUpdate
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