Class: Aws::GroundStation::Types::UplinkDataflowDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::GroundStation::Types::UplinkDataflowDetails
- Defined in:
- gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb
Overview
Note:
UplinkDataflowDetails is a union - when making an API calls you must set exactly one of the members.
Note:
UplinkDataflowDetails is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of UplinkDataflowDetails corresponding to the set member.
Dataflow details for an uplink endpoint
Direct Known Subclasses
Defined Under Namespace
Classes: AgentConnectionDetails, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#agent_connection_details ⇒ Types::UplinkConnectionDetails
Uplink connection details for customer to Agent and Agent to Ground Station.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#agent_connection_details ⇒ Types::UplinkConnectionDetails
Uplink connection details for customer to Agent and Agent to Ground Station
3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 |
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 3731 class UplinkDataflowDetails < Struct.new( :agent_connection_details, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class AgentConnectionDetails < UplinkDataflowDetails; end class Unknown < UplinkDataflowDetails; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
3731 3732 3733 |
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 3731 def unknown @unknown end |