Module Values.CreateResourceDefinitionRequestSource

Creates a resource definition which contains a list of resources to be used in a group. You can create an initial version of the definition by providing a list of resources now, or use ''CreateResourceDefinitionVersion'' later.

Sourcetype nonrec t = {
  1. amznClientToken : string option;
    (*

    A client token used to correlate requests and responses.

    *)
  2. initialVersion : ResourceDefinitionVersion.t option;
    (*

    Information about the initial version of the resource definition.

    *)
  3. name : string option;
    (*

    The name of the resource definition.

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

    Tag(s) to add to the new resource.

    *)
}
Sourceval make : ?amznClientToken:??? -> ?initialVersion:??? -> ?name:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of string ] * [> `String of string ]) list | `String of string | `Structure of (string * [> `List of [> `Structure of (string * [> `String of string | `Structure of (string * [> `Structure of (string * [> `List of [> `String of string ] list | `String of string | `Structure of (string * [> `Boolean of bool | `Enum of string | `String of string ]) list ]) list ]) list ]) list ] list ]) 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