Class: Aws::KinesisAnalytics::Types::LambdaOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisAnalytics::Types::LambdaOutput
- Defined in:
- gems/aws-sdk-kinesisanalytics/lib/aws-sdk-kinesisanalytics/types.rb
Overview
When making an API call, you may pass LambdaOutput data as a hash:
{
resource_arn: "ResourceARN", # required
role_arn: "RoleARN", # required
}
When configuring application output, identifies an AWS Lambda function as the destination. You provide the function Amazon Resource Name (ARN) and also an IAM role ARN that Amazon Kinesis Analytics can use to write to the function on your behalf.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
Amazon Resource Name (ARN) of the destination Lambda function to write to.
-
#role_arn ⇒ String
ARN of the IAM role that Amazon Kinesis Analytics can assume to write to the destination function on your behalf.
Instance Attribute Details
#resource_arn ⇒ String
Amazon Resource Name (ARN) of the destination Lambda function to write to.
2499 2500 2501 2502 2503 2504 |
# File 'gems/aws-sdk-kinesisanalytics/lib/aws-sdk-kinesisanalytics/types.rb', line 2499 class LambdaOutput < Struct.new( :resource_arn, :role_arn) SENSITIVE = [] include Aws::Structure end |
#role_arn ⇒ String
ARN of the IAM role that Amazon Kinesis Analytics can assume to write to the destination function on your behalf. You need to grant the necessary permissions to this role.
2499 2500 2501 2502 2503 2504 |
# File 'gems/aws-sdk-kinesisanalytics/lib/aws-sdk-kinesisanalytics/types.rb', line 2499 class LambdaOutput < Struct.new( :resource_arn, :role_arn) SENSITIVE = [] include Aws::Structure end |