Class: AWSCDK::GroundStation::CfnDataflowEndpointGroupV2::DownlinkConnectionDetailsProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
ground_station/cfn_dataflow_endpoint_group_v2.rb

Overview

Connection details for Ground Station to Agent and Agent to customer.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(agent_ip_and_port_address:, egress_address_and_port:) ⇒ DownlinkConnectionDetailsProperty

Returns a new instance of DownlinkConnectionDetailsProperty.

Parameters:



765
766
767
768
769
770
# File 'ground_station/cfn_dataflow_endpoint_group_v2.rb', line 765

def initialize(agent_ip_and_port_address:, egress_address_and_port:)
  @agent_ip_and_port_address = agent_ip_and_port_address.is_a?(Hash) ? ::AWSCDK::GroundStation::CfnDataflowEndpointGroupV2::RangedConnectionDetailsProperty.new(**agent_ip_and_port_address.transform_keys(&:to_sym)) : agent_ip_and_port_address
  Jsii::Type.check_type(@agent_ip_and_port_address, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19ncm91bmRzdGF0aW9uLkNmbkRhdGFmbG93RW5kcG9pbnRHcm91cFYyLlJhbmdlZENvbm5lY3Rpb25EZXRhaWxzUHJvcGVydHkifV19fQ==")), "agentIpAndPortAddress")
  @egress_address_and_port = egress_address_and_port.is_a?(Hash) ? ::AWSCDK::GroundStation::CfnDataflowEndpointGroupV2::ConnectionDetailsProperty.new(**egress_address_and_port.transform_keys(&:to_sym)) : egress_address_and_port
  Jsii::Type.check_type(@egress_address_and_port, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19ncm91bmRzdGF0aW9uLkNmbkRhdGFmbG93RW5kcG9pbnRHcm91cFYyLkNvbm5lY3Rpb25EZXRhaWxzUHJvcGVydHkifV19fQ==")), "egressAddressAndPort")
end

Class Method Details

.jsii_propertiesObject



783
784
785
786
787
788
# File 'ground_station/cfn_dataflow_endpoint_group_v2.rb', line 783

def self.jsii_properties
  {
    :agent_ip_and_port_address => "agentIpAndPortAddress",
    :egress_address_and_port => "egressAddressAndPort",
  }
end

Instance Method Details

#to_jsiiObject



790
791
792
793
794
795
796
797
# File 'ground_station/cfn_dataflow_endpoint_group_v2.rb', line 790

def to_jsii
  result = {}
  result.merge!({
    "agentIpAndPortAddress" => @agent_ip_and_port_address,
    "egressAddressAndPort" => @egress_address_and_port,
  })
  result.compact
end