Module Values_1.CreateCustomPermissionsRequestSource

Creates a custom permissions profile.

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

    The ID of the Amazon Web Services account that you want to create the custom permissions profile in.

    *)
  2. customPermissionsName : CustomPermissionsName.t;
    (*

    The name of the custom permissions profile that you want to create.

    *)
  3. capabilities : Capabilities.t option;
    (*

    A set of actions to include in the custom permissions profile.

    *)
  4. tags : TagList.t option;
    (*

    The tags to associate with the custom permissions profile.

    *)
}
Sourceval context_ : string
Sourceval make : ?capabilities:??? -> ?tags:??? -> awsAccountId:AwsAccountId.t -> customPermissionsName:CustomPermissionsName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of AwsAccountId.t | `Structure of (string * [> `Enum of string ]) list ]) 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