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



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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



866
867
868
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 866

def unknown
  @unknown
end

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