Module Values.CreateWorkerConfigurationRequestSource

Creates a worker configuration using the specified properties.

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

    A summary description of the worker configuration.

    *)
  2. name : string;
    (*

    The name of the worker configuration.

    *)
  3. propertiesFileContent : string;
    (*

    Base64 encoded contents of connect-distributed.properties file.

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

    The tags you want to attach to the worker configuration.

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