Class: AWSCDK::S3::CfnStorageLens::AWSOrgProperty

Inherits:
Jsii::Struct
  • Object
show all
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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(arn:) ⇒ AWSOrgProperty

Returns a new instance of AWSOrgProperty.

Parameters:

  • arn (String)

    This resource contains the ARN of the AWS Organization.



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

#arnString (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_propertiesObject



778
779
780
781
782
# File 's3/cfn_storage_lens.rb', line 778

def self.jsii_properties
  {
    :arn => "arn",
  }
end

Instance Method Details

#to_jsiiObject



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