Module Values_2.UpdateFlowPermissionsInputSource

Updates permissions against principals on a flow.

Sourcetype nonrec t = {
  1. awsAccountId : Values_0.AccountId.t;
    (*

    The ID of the Amazon Web Services account that contains the flow you are updating permissions against.

    *)
  2. flowId : FlowId.t;
    (*

    The unique identifier of the flow to update permissions for.

    *)
  3. grantPermissions : UpdateFlowPermissionsInputGrantPermissionsList.t option;
    (*

    The permissions that you want to grant on this flow.

    *)
  4. revokePermissions : UpdateFlowPermissionsInputRevokePermissionsList.t option;
    (*

    The permissions that you want to revoke from this flow.

    *)
}
Sourceval context_ : string
Sourceval make : ?grantPermissions:??? -> ?revokePermissions:??? -> awsAccountId:Values_0.AccountId.t -> flowId:FlowId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `String of string ] list | `String of PermissionPrincipalString.t ]) list ] list | `String of Values_0.AccountId.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