Class: AWSCDK::GroundStation::CfnDataflowEndpointGroup::RangedConnectionDetailsProperty

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

Overview

Ingress address of AgentEndpoint with a port range and an optional mtu.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(mtu: nil, socket_address: nil) ⇒ RangedConnectionDetailsProperty

Returns a new instance of RangedConnectionDetailsProperty.

Parameters:



866
867
868
869
870
871
# File 'ground_station/cfn_dataflow_endpoint_group.rb', line 866

def initialize(mtu: nil, socket_address: nil)
  @mtu = mtu
  Jsii::Type.check_type(@mtu, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJudW1iZXIifQ==")), "mtu") unless @mtu.nil?
  @socket_address = socket_address.is_a?(Hash) ? ::AWSCDK::GroundStation::CfnDataflowEndpointGroup::RangedSocketAddressProperty.new(**socket_address.transform_keys(&:to_sym)) : socket_address
  Jsii::Type.check_type(@socket_address, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19ncm91bmRzdGF0aW9uLkNmbkRhdGFmbG93RW5kcG9pbnRHcm91cC5SYW5nZWRTb2NrZXRBZGRyZXNzUHJvcGVydHkifV19fQ==")), "socketAddress") unless @socket_address.nil?
end

Instance Attribute Details

#mtuNumeric? (readonly)

Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.



877
878
879
# File 'ground_station/cfn_dataflow_endpoint_group.rb', line 877

def mtu
  @mtu
end

Class Method Details

.jsii_propertiesObject



884
885
886
887
888
889
# File 'ground_station/cfn_dataflow_endpoint_group.rb', line 884

def self.jsii_properties
  {
    :mtu => "mtu",
    :socket_address => "socketAddress",
  }
end

Instance Method Details

#to_jsiiObject



891
892
893
894
895
896
897
898
# File 'ground_station/cfn_dataflow_endpoint_group.rb', line 891

def to_jsii
  result = {}
  result.merge!({
    "mtu" => @mtu,
    "socketAddress" => @socket_address,
  })
  result.compact
end