Class: AWSCDK::GroundStation::CfnDataflowEndpointGroupV2::UplinkAWSGroundStationAgentEndpointProperty

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

Overview

Definition for an uplink agent endpoint.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(dataflow_details:, name:) ⇒ UplinkAWSGroundStationAgentEndpointProperty

Returns a new instance of UplinkAWSGroundStationAgentEndpointProperty.

Parameters:



1119
1120
1121
1122
1123
1124
# File 'ground_station/cfn_dataflow_endpoint_group_v2.rb', line 1119

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

Class Method Details

.jsii_propertiesObject



1137
1138
1139
1140
1141
1142
# File 'ground_station/cfn_dataflow_endpoint_group_v2.rb', line 1137

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

Instance Method Details

#to_jsiiObject



1144
1145
1146
1147
1148
1149
1150
1151
# File 'ground_station/cfn_dataflow_endpoint_group_v2.rb', line 1144

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