Class: Aws::GroundStation::Types::TelemetrySinkData

Inherits:
Struct
  • Object
show all
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

KinesisDataStreamData, Unknown

Defined Under Namespace

Classes: KinesisDataStreamData, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#kinesis_data_stream_dataTypes::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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



3452
3453
3454
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 3452

def unknown
  @unknown
end