Module Values.CreateConfigurationRequestSource

Create a new configuration.

Sourcetype nonrec t = {
  1. name : ConfigurationName.t;
    (*

    User-friendly name for the configuration.

    *)
  2. description : ConfigurationDescription.t option;
    (*

    Optional description for the configuration.

    *)
  3. runConfigurations : RunConfigurations.t;
    (*

    Required run-specific configurations.

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

    Optional tags for the configuration.

    *)
  5. requestId : ConfigurationRequestId.t;
    (*

    Optional request idempotency token. If not specified, a universally unique identifier (UUID) will be automatically generated for the request.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?tags:??? -> name:ConfigurationName.t -> runConfigurations:RunConfigurations.t -> requestId:ConfigurationRequestId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of ConfigurationName.t | `Structure of (string * [> `Structure of (string * [> `List of [> `String of SecurityGroupId.t ] 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