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