Class: Aws::GroundStation::Types::DownlinkDataflowDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::GroundStation::Types::DownlinkDataflowDetails
- Defined in:
- gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb
Overview
Note:
DownlinkDataflowDetails is a union - when making an API calls you must set exactly one of the members.
Note:
DownlinkDataflowDetails is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of DownlinkDataflowDetails corresponding to the set member.
Dataflow details for a downlink endpoint
Direct Known Subclasses
Defined Under Namespace
Classes: AgentConnectionDetails, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#agent_connection_details ⇒ Types::DownlinkConnectionDetails
Downlink 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::DownlinkConnectionDetails
Downlink connection details for customer to Agent and Agent to Ground Station
1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 |
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 1538 class DownlinkDataflowDetails < Struct.new( :agent_connection_details, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class AgentConnectionDetails < DownlinkDataflowDetails; end class Unknown < DownlinkDataflowDetails; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
1538 1539 1540 |
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 1538 def unknown @unknown end |