Class: AWSCDK::GroundStation::CfnDataflowEndpointGroupV2::UplinkConnectionDetailsProperty

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

Overview

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

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(agent_ip_and_port_address:, ingress_address_and_port:) ⇒ UplinkConnectionDetailsProperty

Returns a new instance of UplinkConnectionDetailsProperty.

Parameters:



1162
1163
1164
1165
1166
1167
# File 'ground_station/cfn_dataflow_endpoint_group_v2.rb', line 1162

def initialize(agent_ip_and_port_address:, ingress_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")
  @ingress_address_and_port = ingress_address_and_port.is_a?(Hash) ? ::AWSCDK::GroundStation::CfnDataflowEndpointGroupV2::ConnectionDetailsProperty.new(**ingress_address_and_port.transform_keys(&:to_sym)) : ingress_address_and_port
  Jsii::Type.check_type(@ingress_address_and_port, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19ncm91bmRzdGF0aW9uLkNmbkRhdGFmbG93RW5kcG9pbnRHcm91cFYyLkNvbm5lY3Rpb25EZXRhaWxzUHJvcGVydHkifV19fQ==")), "ingressAddressAndPort")
end

Class Method Details

.jsii_propertiesObject



1180
1181
1182
1183
1184
1185
# File 'ground_station/cfn_dataflow_endpoint_group_v2.rb', line 1180

def self.jsii_properties
  {
    :agent_ip_and_port_address => "agentIpAndPortAddress",
    :ingress_address_and_port => "ingressAddressAndPort",
  }
end

Instance Method Details

#to_jsiiObject



1187
1188
1189
1190
1191
1192
1193
1194
# File 'ground_station/cfn_dataflow_endpoint_group_v2.rb', line 1187

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