Class: AWSCDK::Interfaces::AWSFSX::S3AccessPointAttachmentReference

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
interfaces/awsfsx/s3_access_point_attachment_reference.rb

Overview

A reference to a S3AccessPointAttachment resource.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(s3_access_point_attachment_name:) ⇒ S3AccessPointAttachmentReference

Returns a new instance of S3AccessPointAttachmentReference.

Parameters:

  • s3_access_point_attachment_name (String)

    The Name of the S3AccessPointAttachment resource.



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 = 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_nameString (readonly)

The Name of the S3AccessPointAttachment resource.

Returns:

  • (String)


16
17
18
# File 'interfaces/awsfsx/s3_access_point_attachment_reference.rb', line 16

def s3_access_point_attachment_name
  @s3_access_point_attachment_name
end

Class Method Details

.jsii_propertiesObject



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_jsiiObject



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