Class: Aws::S3Files::Types::PutFileSystemPolicyRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3Files::Types::PutFileSystemPolicyRequest
- Defined in:
- gems/aws-sdk-s3files/lib/aws-sdk-s3files/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#file_system_id ⇒ String
The ID or Amazon Resource Name (ARN) of the S3 File System to apply the resource policy to.
-
#policy ⇒ String
The JSON-formatted resource policy to apply to the file system.
Instance Attribute Details
#file_system_id ⇒ String
The ID or Amazon Resource Name (ARN) of the S3 File System to apply the resource policy to.
1266 1267 1268 1269 1270 1271 |
# File 'gems/aws-sdk-s3files/lib/aws-sdk-s3files/types.rb', line 1266 class PutFileSystemPolicyRequest < Struct.new( :file_system_id, :policy) SENSITIVE = [] include Aws::Structure end |
#policy ⇒ String
The JSON-formatted resource policy to apply to the file system. The policy defines the permissions for accessing the file system. The policy must be a valid JSON document that follows IAM policy syntax.
1266 1267 1268 1269 1270 1271 |
# File 'gems/aws-sdk-s3files/lib/aws-sdk-s3files/types.rb', line 1266 class PutFileSystemPolicyRequest < Struct.new( :file_system_id, :policy) SENSITIVE = [] include Aws::Structure end |