Class: AWSCDK::MediaConnect::CfnFlow::InterfaceProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::MediaConnect::CfnFlow::InterfaceProperty
- Defined in:
- media_connect/cfn_flow.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.
1346 1347 1348 1349 |
# File 'media_connect/cfn_flow.rb', line 1346 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.
1355 1356 1357 |
# File 'media_connect/cfn_flow.rb', line 1355 def name @name end |
Class Method Details
.jsii_properties ⇒ Object
1357 1358 1359 1360 1361 |
# File 'media_connect/cfn_flow.rb', line 1357 def self.jsii_properties { :name => "name", } end |
Instance Method Details
#to_jsii ⇒ Object
1363 1364 1365 1366 1367 1368 1369 |
# File 'media_connect/cfn_flow.rb', line 1363 def to_jsii result = {} result.merge!({ "name" => @name, }) result.compact end |