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