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