Class: AWSCDK::GroundStation::CfnDataflowEndpointGroupV2::DownlinkConnectionDetailsProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::GroundStation::CfnDataflowEndpointGroupV2::DownlinkConnectionDetailsProperty
- 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
-
#agent_ip_and_port_address ⇒ AWSCDK::IResolvable, AWSCDK::GroundStation::CfnDataflowEndpointGroupV2::RangedConnectionDetailsProperty
readonly
Agent IP and port address for the downlink connection.
-
#egress_address_and_port ⇒ AWSCDK::IResolvable, AWSCDK::GroundStation::CfnDataflowEndpointGroupV2::ConnectionDetailsProperty
readonly
Egress address and port for the downlink connection.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(agent_ip_and_port_address:, egress_address_and_port:) ⇒ DownlinkConnectionDetailsProperty
constructor
A new instance of DownlinkConnectionDetailsProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(agent_ip_and_port_address:, egress_address_and_port:) ⇒ DownlinkConnectionDetailsProperty
Returns a new instance of DownlinkConnectionDetailsProperty.
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 |
Instance Attribute Details
#agent_ip_and_port_address ⇒ AWSCDK::IResolvable, AWSCDK::GroundStation::CfnDataflowEndpointGroupV2::RangedConnectionDetailsProperty (readonly)
Agent IP and port address for the downlink connection.
776 777 778 |
# File 'ground_station/cfn_dataflow_endpoint_group_v2.rb', line 776 def agent_ip_and_port_address @agent_ip_and_port_address end |
#egress_address_and_port ⇒ AWSCDK::IResolvable, AWSCDK::GroundStation::CfnDataflowEndpointGroupV2::ConnectionDetailsProperty (readonly)
Egress address and port for the downlink connection.
781 782 783 |
# File 'ground_station/cfn_dataflow_endpoint_group_v2.rb', line 781 def egress_address_and_port @egress_address_and_port end |
Class Method Details
.jsii_properties ⇒ Object
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_jsii ⇒ Object
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 |