pub struct InputLambdaProcessorDescription {
pub resource_arn: String,
pub role_arn: Option<String>,
}Expand description
For an SQL-based Amazon Kinesis Data Analytics application, an object that contains the Amazon Resource Name (ARN) of the AWS Lambda function that is used to preprocess records in the stream.
Fields§
§resource_arn: StringThe ARN of the 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
role_arn: Option<String>The ARN of the IAM role that is used to access the AWS Lambda function.
Provided for backward compatibility. Applications that are created with the current API version have an application-level service execution role rather than a resource-level role.
Trait Implementations§
Source§impl Clone for InputLambdaProcessorDescription
impl Clone for InputLambdaProcessorDescription
Source§fn clone(&self) -> InputLambdaProcessorDescription
fn clone(&self) -> InputLambdaProcessorDescription
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 Default for InputLambdaProcessorDescription
impl Default for InputLambdaProcessorDescription
Source§fn default() -> InputLambdaProcessorDescription
fn default() -> InputLambdaProcessorDescription
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InputLambdaProcessorDescription
impl<'de> Deserialize<'de> for InputLambdaProcessorDescription
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 InputLambdaProcessorDescription
impl PartialEq for InputLambdaProcessorDescription
Source§fn eq(&self, other: &InputLambdaProcessorDescription) -> bool
fn eq(&self, other: &InputLambdaProcessorDescription) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for InputLambdaProcessorDescription
Auto Trait Implementations§
impl Freeze for InputLambdaProcessorDescription
impl RefUnwindSafe for InputLambdaProcessorDescription
impl Send for InputLambdaProcessorDescription
impl Sync for InputLambdaProcessorDescription
impl Unpin for InputLambdaProcessorDescription
impl UnwindSafe for InputLambdaProcessorDescription
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