Class: AWSCDK::GroundStation::CfnDataflowEndpointGroupV2::DownlinkAWSGroundStationAgentEndpointProperty

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

Overview

Definition for a downlink agent endpoint.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(dataflow_details:, name:) ⇒ DownlinkAWSGroundStationAgentEndpointProperty

Returns a new instance of DownlinkAWSGroundStationAgentEndpointProperty.

Parameters:



722
723
724
725
726
727
# File 'ground_station/cfn_dataflow_endpoint_group_v2.rb', line 722

def initialize(dataflow_details:, name:)
  @dataflow_details = dataflow_details.is_a?(Hash) ? ::AWSCDK::GroundStation::CfnDataflowEndpointGroupV2::DownlinkDataflowDetailsProperty.new(**dataflow_details.transform_keys(&:to_sym)) : dataflow_details
  Jsii::Type.check_type(@dataflow_details, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19ncm91bmRzdGF0aW9uLkNmbkRhdGFmbG93RW5kcG9pbnRHcm91cFYyLkRvd25saW5rRGF0YWZsb3dEZXRhaWxzUHJvcGVydHkifV19fQ==")), "dataflowDetails")
  @name = name
  Jsii::Type.check_type(@name, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "name")
end

Class Method Details

.jsii_propertiesObject



740
741
742
743
744
745
# File 'ground_station/cfn_dataflow_endpoint_group_v2.rb', line 740

def self.jsii_properties
  {
    :dataflow_details => "dataflowDetails",
    :name => "name",
  }
end

Instance Method Details

#to_jsiiObject



747
748
749
750
751
752
753
754
# File 'ground_station/cfn_dataflow_endpoint_group_v2.rb', line 747

def to_jsii
  result = {}
  result.merge!({
    "dataflowDetails" => @dataflow_details,
    "name" => @name,
  })
  result.compact
end