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
888 889 890 891 892 893 894 895 896 897 898 899 |
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 888 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
888 889 890 |
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 888 def unknown @unknown end |
#uplink_aws_ground_station_agent_endpoint ⇒ Types::UplinkAwsGroundStationAgentEndpoint
Definition for an uplink agent endpoint
888 889 890 891 892 893 894 895 896 897 898 899 |
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 888 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 |