pub struct InputLambdaProcessorUpdate {
pub resource_arn_update: String,
}Expand description
For an SQL-based Amazon Kinesis Data Analytics application, represents an update to the InputLambdaProcessor that is used to preprocess the records in the stream.
Fields§
§resource_arn_update: StringThe Amazon Resource Name (ARN) of the new AWS Lambda function that is used to preprocess the records in the stream.
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 InputLambdaProcessorUpdate
impl Clone for InputLambdaProcessorUpdate
Source§fn clone(&self) -> InputLambdaProcessorUpdate
fn clone(&self) -> InputLambdaProcessorUpdate
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 InputLambdaProcessorUpdate
impl Debug for InputLambdaProcessorUpdate
Source§impl Default for InputLambdaProcessorUpdate
impl Default for InputLambdaProcessorUpdate
Source§fn default() -> InputLambdaProcessorUpdate
fn default() -> InputLambdaProcessorUpdate
Returns the “default value” for a type. Read more
impl StructuralPartialEq for InputLambdaProcessorUpdate
Auto Trait Implementations§
impl Freeze for InputLambdaProcessorUpdate
impl RefUnwindSafe for InputLambdaProcessorUpdate
impl Send for InputLambdaProcessorUpdate
impl Sync for InputLambdaProcessorUpdate
impl Unpin for InputLambdaProcessorUpdate
impl UnwindSafe for InputLambdaProcessorUpdate
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