Class: Aws::KinesisAnalytics::Types::KinesisStreamsOutputUpdate
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisAnalytics::Types::KinesisStreamsOutputUpdate
- Defined in:
- gems/aws-sdk-kinesisanalytics/lib/aws-sdk-kinesisanalytics/types.rb
Overview
Note:
When making an API call, you may pass KinesisStreamsOutputUpdate data as a hash:
{
resource_arn_update: "ResourceARN",
role_arn_update: "RoleARN",
}
When updating an output configuration using the UpdateApplication operation, provides information about an Amazon Kinesis stream configured as the destination.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn_update ⇒ String
Amazon Resource Name (ARN) of the Amazon Kinesis stream where you want to write the output.
-
#role_arn_update ⇒ String
ARN of the IAM role that Amazon Kinesis Analytics can assume to access the stream on your behalf.
Instance Attribute Details
#resource_arn_update ⇒ String
Amazon Resource Name (ARN) of the Amazon Kinesis stream where you want to write the output.
2459 2460 2461 2462 2463 2464 |
# File 'gems/aws-sdk-kinesisanalytics/lib/aws-sdk-kinesisanalytics/types.rb', line 2459 class KinesisStreamsOutputUpdate < Struct.new( :resource_arn_update, :role_arn_update) SENSITIVE = [] include Aws::Structure end |
#role_arn_update ⇒ String
ARN of the IAM role that Amazon Kinesis Analytics can assume to access the stream on your behalf. You need to grant the necessary permissions to this role.
2459 2460 2461 2462 2463 2464 |
# File 'gems/aws-sdk-kinesisanalytics/lib/aws-sdk-kinesisanalytics/types.rb', line 2459 class KinesisStreamsOutputUpdate < Struct.new( :resource_arn_update, :role_arn_update) SENSITIVE = [] include Aws::Structure end |