Class: AWSCDK::GroundStation::CfnDataflowEndpointGroupV2::DownlinkAWSGroundStationAgentEndpointProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::GroundStation::CfnDataflowEndpointGroupV2::DownlinkAWSGroundStationAgentEndpointProperty
- Defined in:
- ground_station/cfn_dataflow_endpoint_group_v2.rb
Overview
Definition for a downlink agent endpoint.
Instance Attribute Summary collapse
-
#dataflow_details ⇒ AWSCDK::IResolvable, AWSCDK::GroundStation::CfnDataflowEndpointGroupV2::DownlinkDataflowDetailsProperty
readonly
Dataflow details for the downlink endpoint.
-
#name ⇒ String
readonly
Downlink dataflow endpoint name.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(dataflow_details:, name:) ⇒ DownlinkAWSGroundStationAgentEndpointProperty
constructor
A new instance of DownlinkAWSGroundStationAgentEndpointProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(dataflow_details:, name:) ⇒ DownlinkAWSGroundStationAgentEndpointProperty
Returns a new instance of DownlinkAWSGroundStationAgentEndpointProperty.
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 |
Instance Attribute Details
#dataflow_details ⇒ AWSCDK::IResolvable, AWSCDK::GroundStation::CfnDataflowEndpointGroupV2::DownlinkDataflowDetailsProperty (readonly)
Dataflow details for the downlink endpoint.
733 734 735 |
# File 'ground_station/cfn_dataflow_endpoint_group_v2.rb', line 733 def dataflow_details @dataflow_details end |
#name ⇒ String (readonly)
Downlink dataflow endpoint name.
738 739 740 |
# File 'ground_station/cfn_dataflow_endpoint_group_v2.rb', line 738 def name @name end |
Class Method Details
.jsii_properties ⇒ Object
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_jsii ⇒ Object
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 |