Class: Aws::DSQL::Types::TargetDefinition
- Inherits:
-
Struct
- Object
- Struct
- Aws::DSQL::Types::TargetDefinition
- 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
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#kinesis ⇒ Types::KinesisTargetDefinition
Kinesis stream target configuration.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#kinesis ⇒ Types::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 |
#unknown ⇒ Object
Returns the value of attribute unknown
1035 1036 1037 |
# File 'gems/aws-sdk-dsql/lib/aws-sdk-dsql/types.rb', line 1035 def unknown @unknown end |