#[non_exhaustive]pub struct LambdaOutputUpdate {
pub resource_arn_update: String,
}Expand description
When you update an SQL-based Kinesis Data Analytics application's output configuration using the UpdateApplication operation, provides information about an Amazon Lambda function that is configured as the destination.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.resource_arn_update: StringThe Amazon Resource Name (ARN) of the destination Amazon 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: Amazon Lambda
Implementations§
source§impl LambdaOutputUpdate
impl LambdaOutputUpdate
sourcepub fn resource_arn_update(&self) -> &str
pub fn resource_arn_update(&self) -> &str
The Amazon Resource Name (ARN) of the destination Amazon 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: Amazon Lambda
source§impl LambdaOutputUpdate
impl LambdaOutputUpdate
sourcepub fn builder() -> LambdaOutputUpdateBuilder
pub fn builder() -> LambdaOutputUpdateBuilder
Creates a new builder-style object to manufacture LambdaOutputUpdate.
Trait Implementations§
source§impl Clone for LambdaOutputUpdate
impl Clone for LambdaOutputUpdate
source§fn clone(&self) -> LambdaOutputUpdate
fn clone(&self) -> LambdaOutputUpdate
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for LambdaOutputUpdate
impl Debug for LambdaOutputUpdate
source§impl PartialEq for LambdaOutputUpdate
impl PartialEq for LambdaOutputUpdate
source§fn eq(&self, other: &LambdaOutputUpdate) -> bool
fn eq(&self, other: &LambdaOutputUpdate) -> bool
self and other values to be equal, and is used
by ==.