Class: Aws::GroundStation::Types::CreateEndpointDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::GroundStation::Types::CreateEndpointDetails
- Defined in:
- gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb
Overview
Note:
CreateEndpointDetails is a union - when making an API calls you must set exactly one of the members.
Endpoint definition used for creating a dataflow endpoint
Direct Known Subclasses
DownlinkAwsGroundStationAgentEndpoint, Unknown, UplinkAwsGroundStationAgentEndpoint
Defined Under Namespace
Classes: DownlinkAwsGroundStationAgentEndpoint, Unknown, UplinkAwsGroundStationAgentEndpoint
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#downlink_aws_ground_station_agent_endpoint ⇒ Types::DownlinkAwsGroundStationAgentEndpoint
Definition for a downlink agent endpoint.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
-
#uplink_aws_ground_station_agent_endpoint ⇒ Types::UplinkAwsGroundStationAgentEndpoint
Definition for an uplink agent endpoint.
Instance Attribute Details
#downlink_aws_ground_station_agent_endpoint ⇒ Types::DownlinkAwsGroundStationAgentEndpoint
Definition for a downlink agent endpoint
866 867 868 869 870 871 872 873 874 875 876 877 |
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 866 class CreateEndpointDetails < Struct.new( :uplink_aws_ground_station_agent_endpoint, :downlink_aws_ground_station_agent_endpoint, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class UplinkAwsGroundStationAgentEndpoint < CreateEndpointDetails; end class DownlinkAwsGroundStationAgentEndpoint < CreateEndpointDetails; end class Unknown < CreateEndpointDetails; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
866 867 868 |
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 866 def unknown @unknown end |
#uplink_aws_ground_station_agent_endpoint ⇒ Types::UplinkAwsGroundStationAgentEndpoint
Definition for an uplink agent endpoint
866 867 868 869 870 871 872 873 874 875 876 877 |
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 866 class CreateEndpointDetails < Struct.new( :uplink_aws_ground_station_agent_endpoint, :downlink_aws_ground_station_agent_endpoint, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class UplinkAwsGroundStationAgentEndpoint < CreateEndpointDetails; end class DownlinkAwsGroundStationAgentEndpoint < CreateEndpointDetails; end class Unknown < CreateEndpointDetails; end end |