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