Struct aws_sdk_kinesisanalyticsv2::types::LambdaOutput
source · #[non_exhaustive]pub struct LambdaOutput {
pub resource_arn: String,
}Expand description
When you configure a SQL-based Kinesis Data Analytics application's output, identifies an Amazon Lambda function as the destination. You provide the function Amazon Resource Name (ARN) of the Lambda function.
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: StringThe Amazon Resource Name (ARN) of the destination Lambda function to write to.
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 LambdaOutput
impl LambdaOutput
sourcepub fn resource_arn(&self) -> &str
pub fn resource_arn(&self) -> &str
The Amazon Resource Name (ARN) of the destination Lambda function to write to.
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 LambdaOutput
impl LambdaOutput
sourcepub fn builder() -> LambdaOutputBuilder
pub fn builder() -> LambdaOutputBuilder
Creates a new builder-style object to manufacture LambdaOutput.
Trait Implementations§
source§impl Clone for LambdaOutput
impl Clone for LambdaOutput
source§fn clone(&self) -> LambdaOutput
fn clone(&self) -> LambdaOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for LambdaOutput
impl Debug for LambdaOutput
source§impl PartialEq for LambdaOutput
impl PartialEq for LambdaOutput
source§fn eq(&self, other: &LambdaOutput) -> bool
fn eq(&self, other: &LambdaOutput) -> bool
self and other values to be equal, and is used
by ==.