Class: AWSCDK::FSX::CfnS3AccessPointAttachment::FileSystemGIDProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::FSX::CfnS3AccessPointAttachment::FileSystemGIDProperty
- Defined in:
- fsx/cfn_s3_access_point_attachment.rb
Overview
The GID of the file system user.
Instance Attribute Summary collapse
-
#gid ⇒ Numeric
readonly
The GID of the file system user.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(gid:) ⇒ FileSystemGIDProperty
constructor
A new instance of FileSystemGIDProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(gid:) ⇒ FileSystemGIDProperty
Returns a new instance of FileSystemGIDProperty.
571 572 573 574 |
# File 'fsx/cfn_s3_access_point_attachment.rb', line 571 def initialize(gid:) @gid = gid Jsii::Type.check_type(@gid, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJudW1iZXIifQ==")), "gid") end |
Instance Attribute Details
#gid ⇒ Numeric (readonly)
The GID of the file system user.
580 581 582 |
# File 'fsx/cfn_s3_access_point_attachment.rb', line 580 def gid @gid end |
Class Method Details
.jsii_properties ⇒ Object
582 583 584 585 586 |
# File 'fsx/cfn_s3_access_point_attachment.rb', line 582 def self.jsii_properties { :gid => "gid", } end |
Instance Method Details
#to_jsii ⇒ Object
588 589 590 591 592 593 594 |
# File 'fsx/cfn_s3_access_point_attachment.rb', line 588 def to_jsii result = {} result.merge!({ "gid" => @gid, }) result.compact end |