Class: AWSCDK::FSX::CfnS3AccessPointAttachment::OntapUnixFileSystemUserProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::FSX::CfnS3AccessPointAttachment::OntapUnixFileSystemUserProperty
- Defined in:
- fsx/cfn_s3_access_point_attachment.rb
Overview
The FSx for ONTAP UNIX file system user that is used for authorizing all file access requests that are made using the S3 access point.
Instance Attribute Summary collapse
-
#name ⇒ String
readonly
The name of the UNIX user.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(name:) ⇒ OntapUnixFileSystemUserProperty
constructor
A new instance of OntapUnixFileSystemUserProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(name:) ⇒ OntapUnixFileSystemUserProperty
Returns a new instance of OntapUnixFileSystemUserProperty.
661 662 663 664 |
# File 'fsx/cfn_s3_access_point_attachment.rb', line 661 def initialize(name:) @name = name Jsii::Type.check_type(@name, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "name") end |
Instance Attribute Details
#name ⇒ String (readonly)
The name of the UNIX user.
The name can be up to 256 characters long.
672 673 674 |
# File 'fsx/cfn_s3_access_point_attachment.rb', line 672 def name @name end |
Class Method Details
.jsii_properties ⇒ Object
674 675 676 677 678 |
# File 'fsx/cfn_s3_access_point_attachment.rb', line 674 def self.jsii_properties { :name => "name", } end |
Instance Method Details
#to_jsii ⇒ Object
680 681 682 683 684 685 686 |
# File 'fsx/cfn_s3_access_point_attachment.rb', line 680 def to_jsii result = {} result.merge!({ "name" => @name, }) result.compact end |