Class: AWSCDK::FSX::CfnS3AccessPointAttachment::OntapWindowsFileSystemUserProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::FSX::CfnS3AccessPointAttachment::OntapWindowsFileSystemUserProperty
- Defined in:
- fsx/cfn_s3_access_point_attachment.rb
Overview
The FSx for ONTAP Windows 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 Windows user.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(name:) ⇒ OntapWindowsFileSystemUserProperty
constructor
A new instance of OntapWindowsFileSystemUserProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(name:) ⇒ OntapWindowsFileSystemUserProperty
Returns a new instance of OntapWindowsFileSystemUserProperty.
696 697 698 699 |
# File 'fsx/cfn_s3_access_point_attachment.rb', line 696 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 Windows user.
The name can be up to 256 characters long and supports Active Directory users.
707 708 709 |
# File 'fsx/cfn_s3_access_point_attachment.rb', line 707 def name @name end |
Class Method Details
.jsii_properties ⇒ Object
709 710 711 712 713 |
# File 'fsx/cfn_s3_access_point_attachment.rb', line 709 def self.jsii_properties { :name => "name", } end |
Instance Method Details
#to_jsii ⇒ Object
715 716 717 718 719 720 721 |
# File 'fsx/cfn_s3_access_point_attachment.rb', line 715 def to_jsii result = {} result.merge!({ "name" => @name, }) result.compact end |