Class: Aws::DSQL::Types::TargetDefinition

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

Overview

Note:

TargetDefinition is a union - when making an API calls you must set exactly one of the members.

Note:

TargetDefinition is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of TargetDefinition corresponding to the set member.

Target definition for stream destination.

Defined Under Namespace

Classes: Kinesis, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#kinesisTypes::KinesisTargetDefinition

Kinesis stream target configuration.



1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
# File 'gems/aws-sdk-dsql/lib/aws-sdk-dsql/types.rb', line 1035

class TargetDefinition < Struct.new(
  :kinesis,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Kinesis < TargetDefinition; end
  class Unknown < TargetDefinition; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1035
1036
1037
# File 'gems/aws-sdk-dsql/lib/aws-sdk-dsql/types.rb', line 1035

def unknown
  @unknown
end