Class: Aws::GroundStation::Types::TelemetrySinkData
- Inherits:
-
Struct
- Object
- Struct
- Aws::GroundStation::Types::TelemetrySinkData
- Defined in:
- gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb
Overview
Note:
TelemetrySinkData is a union - when making an API calls you must set exactly one of the members.
Note:
TelemetrySinkData is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of TelemetrySinkData corresponding to the set member.
Information about a telemetry sink.
Direct Known Subclasses
Defined Under Namespace
Classes: KinesisDataStreamData, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#kinesis_data_stream_data ⇒ Types::KinesisDataStreamData
Information about a telemetry sink of type
KINESIS_DATA_STREAM. -
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#kinesis_data_stream_data ⇒ Types::KinesisDataStreamData
Information about a telemetry sink of type KINESIS_DATA_STREAM.
3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 |
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 3452 class TelemetrySinkData < Struct.new( :kinesis_data_stream_data, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class KinesisDataStreamData < TelemetrySinkData; end class Unknown < TelemetrySinkData; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
3452 3453 3454 |
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 3452 def unknown @unknown end |