Class: AWSCDK::S3::CfnStorageLens::AWSOrgProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::S3::CfnStorageLens::AWSOrgProperty
- Defined in:
- s3/cfn_storage_lens.rb
Overview
This resource contains the details of the AWS Organization for Amazon S3 Storage Lens.
Instance Attribute Summary collapse
-
#arn ⇒ String
readonly
This resource contains the ARN of the AWS Organization.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(arn:) ⇒ AWSOrgProperty
constructor
A new instance of AWSOrgProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(arn:) ⇒ AWSOrgProperty
Returns a new instance of AWSOrgProperty.
767 768 769 770 |
# File 's3/cfn_storage_lens.rb', line 767 def initialize(arn:) @arn = arn Jsii::Type.check_type(@arn, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "arn") end |
Instance Attribute Details
#arn ⇒ String (readonly)
This resource contains the ARN of the AWS Organization.
776 777 778 |
# File 's3/cfn_storage_lens.rb', line 776 def arn @arn end |
Class Method Details
.jsii_properties ⇒ Object
778 779 780 781 782 |
# File 's3/cfn_storage_lens.rb', line 778 def self.jsii_properties { :arn => "arn", } end |
Instance Method Details
#to_jsii ⇒ Object
784 785 786 787 788 789 790 |
# File 's3/cfn_storage_lens.rb', line 784 def to_jsii result = {} result.merge!({ "arn" => @arn, }) result.compact end |