Class: AWSCDK::Interfaces::AWSConnect::EvaluationFormReference

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
interfaces/aws_connect/evaluation_form_reference.rb

Overview

A reference to a EvaluationForm resource.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(evaluation_form_arn:) ⇒ EvaluationFormReference

Returns a new instance of EvaluationFormReference.

Parameters:

  • evaluation_form_arn (String)

    The EvaluationFormArn of the EvaluationForm resource.



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_arnString (readonly)

The EvaluationFormArn of the EvaluationForm resource.

Returns:

  • (String)


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_propertiesObject



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_jsiiObject



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