Class: Aws::EFS::Types::PutFileSystemPolicyRequest

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bypass_policy_lockout_safety_checkBoolean

(Optional) A boolean that specifies whether or not to bypass the FileSystemPolicy lockout safety check. The lockout safety check determines whether the policy in the request will lock out, or prevent, the IAM principal that is making the request from making future PutFileSystemPolicy requests on this file system. Set BypassPolicyLockoutSafetyCheck to True only when you intend to prevent the IAM principal that is making the request from making subsequent PutFileSystemPolicy requests on this file system. The default value is False.

Returns:

  • (Boolean)


2109
2110
2111
2112
2113
2114
2115
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 2109

class PutFileSystemPolicyRequest < Struct.new(
  :file_system_id,
  :policy,
  :bypass_policy_lockout_safety_check)
  SENSITIVE = []
  include Aws::Structure
end

#file_system_idString

The ID of the EFS file system that you want to create or update the FileSystemPolicy for.

Returns:

  • (String)


2109
2110
2111
2112
2113
2114
2115
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 2109

class PutFileSystemPolicyRequest < Struct.new(
  :file_system_id,
  :policy,
  :bypass_policy_lockout_safety_check)
  SENSITIVE = []
  include Aws::Structure
end

#policyString

The FileSystemPolicy that you're creating. Accepts a JSON formatted policy definition. EFS file system policies have a 20,000 character limit. To find out more about the elements that make up a file system policy, see EFS Resource-based Policies.

Returns:

  • (String)


2109
2110
2111
2112
2113
2114
2115
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 2109

class PutFileSystemPolicyRequest < Struct.new(
  :file_system_id,
  :policy,
  :bypass_policy_lockout_safety_check)
  SENSITIVE = []
  include Aws::Structure
end