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