Class: AWSCDK::GroundStation::CfnDataflowEndpointGroupV2::UplinkAWSGroundStationAgentEndpointProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::GroundStation::CfnDataflowEndpointGroupV2::UplinkAWSGroundStationAgentEndpointProperty
- Defined in:
- ground_station/cfn_dataflow_endpoint_group_v2.rb
Overview
Definition for an uplink agent endpoint.
Instance Attribute Summary collapse
-
#dataflow_details ⇒ AWSCDK::IResolvable, AWSCDK::GroundStation::CfnDataflowEndpointGroupV2::UplinkDataflowDetailsProperty
readonly
Dataflow details for the uplink endpoint.
-
#name ⇒ String
readonly
Uplink dataflow endpoint name.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(dataflow_details:, name:) ⇒ UplinkAWSGroundStationAgentEndpointProperty
constructor
A new instance of UplinkAWSGroundStationAgentEndpointProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(dataflow_details:, name:) ⇒ UplinkAWSGroundStationAgentEndpointProperty
Returns a new instance of UplinkAWSGroundStationAgentEndpointProperty.
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 |
Instance Attribute Details
#dataflow_details ⇒ AWSCDK::IResolvable, AWSCDK::GroundStation::CfnDataflowEndpointGroupV2::UplinkDataflowDetailsProperty (readonly)
Dataflow details for the uplink endpoint.
1130 1131 1132 |
# File 'ground_station/cfn_dataflow_endpoint_group_v2.rb', line 1130 def dataflow_details @dataflow_details end |
#name ⇒ String (readonly)
Uplink dataflow endpoint name.
1135 1136 1137 |
# File 'ground_station/cfn_dataflow_endpoint_group_v2.rb', line 1135 def name @name end |
Class Method Details
.jsii_properties ⇒ Object
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_jsii ⇒ Object
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 |