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