Class: AWSCDK::MediaConnect::CfnFlowOutput::InterfaceProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::MediaConnect::CfnFlowOutput::InterfaceProperty
- Defined in:
- media_connect/cfn_flow_output.rb
Overview
The VPC interface that is used for the media stream associated with the source or output.
Instance Attribute Summary collapse
-
#name ⇒ String
readonly
The name of the VPC interface.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(name:) ⇒ InterfaceProperty
constructor
A new instance of InterfaceProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(name:) ⇒ InterfaceProperty
Returns a new instance of InterfaceProperty.
1040 1041 1042 1043 |
# File 'media_connect/cfn_flow_output.rb', line 1040 def initialize(name:) @name = name Jsii::Type.check_type(@name, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "name") end |
Instance Attribute Details
#name ⇒ String (readonly)
The name of the VPC interface.
1049 1050 1051 |
# File 'media_connect/cfn_flow_output.rb', line 1049 def name @name end |
Class Method Details
.jsii_properties ⇒ Object
1051 1052 1053 1054 1055 |
# File 'media_connect/cfn_flow_output.rb', line 1051 def self.jsii_properties { :name => "name", } end |
Instance Method Details
#to_jsii ⇒ Object
1057 1058 1059 1060 1061 1062 1063 |
# File 'media_connect/cfn_flow_output.rb', line 1057 def to_jsii result = {} result.merge!({ "name" => @name, }) result.compact end |