Module Values.PutFileSystemPolicyRequestSource

Creates or replaces the IAM resource policy for an S3 File System to control access permissions.

Sourcetype nonrec t = {
  1. fileSystemId : FileSystemId.t;
    (*

    The ID or Amazon Resource Name (ARN) of the S3 File System to apply the resource policy to.

    *)
  2. policy : String_.t;
    (*

    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.

    *)
}
Sourceval context_ : string
Sourceval make : fileSystemId:FileSystemId.t -> policy:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of FileSystemId.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t