Class: Aws::GroundStation::Types::CreateEndpointDetails

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

Defined Under Namespace

Classes: DownlinkAwsGroundStationAgentEndpoint, Unknown, UplinkAwsGroundStationAgentEndpoint

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



888
889
890
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 888

def unknown
  @unknown
end

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