Class: Aws::DSQL::Types::KinesisTargetDefinition

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-dsql/lib/aws-sdk-dsql/types.rb

Overview

Kinesis stream target configuration.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#role_arnString

The ARN of the IAM role that grants permission to write to the Kinesis stream. This can be a standard role (arn:aws:iam::account-id:role/role-name) or a role with a path prefix (arn:aws:iam::account-id:role/service-role/role-name), such as roles auto-created by the console.

Returns:

  • (String)


701
702
703
704
705
706
# File 'gems/aws-sdk-dsql/lib/aws-sdk-dsql/types.rb', line 701

class KinesisTargetDefinition < Struct.new(
  :stream_arn,
  :role_arn)
  SENSITIVE = []
  include Aws::Structure
end

#stream_arnString

The ARN of the Kinesis stream.

Returns:

  • (String)


701
702
703
704
705
706
# File 'gems/aws-sdk-dsql/lib/aws-sdk-dsql/types.rb', line 701

class KinesisTargetDefinition < Struct.new(
  :stream_arn,
  :role_arn)
  SENSITIVE = []
  include Aws::Structure
end