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