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