Class: AWSCDK::Interfaces::AWSMediaconnect::RouterInputReference
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::Interfaces::AWSMediaconnect::RouterInputReference
- Defined in:
- interfaces/aws_mediaconnect/router_input_reference.rb
Overview
A reference to a RouterInput resource.
Instance Attribute Summary collapse
-
#router_input_arn ⇒ String
readonly
The Arn of the RouterInput resource.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(router_input_arn:) ⇒ RouterInputReference
constructor
A new instance of RouterInputReference.
- #to_jsii ⇒ Object
Constructor Details
#initialize(router_input_arn:) ⇒ RouterInputReference
Returns a new instance of RouterInputReference.
8 9 10 11 |
# File 'interfaces/aws_mediaconnect/router_input_reference.rb', line 8 def initialize(router_input_arn:) @router_input_arn = router_input_arn Jsii::Type.check_type(@router_input_arn, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "routerInputArn") end |
Instance Attribute Details
#router_input_arn ⇒ String (readonly)
The Arn of the RouterInput resource.
16 17 18 |
# File 'interfaces/aws_mediaconnect/router_input_reference.rb', line 16 def router_input_arn @router_input_arn end |
Class Method Details
.jsii_properties ⇒ Object
18 19 20 21 22 |
# File 'interfaces/aws_mediaconnect/router_input_reference.rb', line 18 def self.jsii_properties { :router_input_arn => "routerInputArn", } end |
Instance Method Details
#to_jsii ⇒ Object
24 25 26 27 28 29 30 |
# File 'interfaces/aws_mediaconnect/router_input_reference.rb', line 24 def to_jsii result = {} result.merge!({ "routerInputArn" => @router_input_arn, }) result.compact end |