Module Values.CreateGrantVersionRequestSource

Creates a new version of the specified grant. For more information, see Granted licenses in License Manager in the License Manager User Guide.

Sourcetype nonrec t = {
  1. clientToken : ClientToken.t;
    (*

    Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

    *)
  2. grantArn : Arn.t;
    (*

    Amazon Resource Name (ARN) of the grant.

    *)
  3. grantName : String_.t option;
    (*

    Grant name.

    *)
  4. allowedOperations : AllowedOperationList.t option;
    (*

    Allowed operations for the grant.

    *)
  5. status : GrantStatus.t option;
    (*

    Grant status.

    *)
  6. statusReason : StatusReasonMessage.t option;
    (*

    Grant status reason.

    *)
  7. sourceVersion : String_.t option;
    (*

    Current version of the grant.

    *)
  8. options : Options.t option;
    (*

    The options specified for the grant.

    *)
}
Sourceval context_ : string
Sourceval make : ?grantName:??? -> ?allowedOperations:??? -> ?status:??? -> ?statusReason:??? -> ?sourceVersion:??? -> ?options:??? -> clientToken:ClientToken.t -> grantArn:Arn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string ] list | `String of ClientToken.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