Module Values.CreateConfigurationManagerInputSource

Creates a Quick Setup configuration manager resource. This object is a collection of desired state configurations for multiple configuration definitions and summaries describing the deployments of those definitions.

Sourcetype nonrec t = {
  1. configurationDefinitions : ConfigurationDefinitionsInputList.t;
    (*

    The definition of the Quick Setup configuration that the configuration manager deploys.

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

    A description of the configuration manager.

    *)
  3. name : CreateConfigurationManagerInputNameString.t option;
    (*

    A name for the configuration manager.

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

    Key-value pairs of metadata to assign to the configuration manager.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?name:??? -> ?tags:??? -> configurationDefinitions:ConfigurationDefinitionsInputList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Map of ([> `String of ConfigurationParametersMapKeyString.t ] * [> `String of ConfigurationParametersMapValueString.t ]) list | `String of IAMRoleArn.t ]) list ] list | `Map of ([> `String of TagsMapKeyString.t ] * [> `String of TagsMapValueString.t ]) list | `String of CreateConfigurationManagerInputDescriptionString.t ]) 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