Module Values.ConfigurationProfileSummarySource

A summary of a configuration profile.

Sourcetype nonrec t = {
  1. applicationId : Id.t option;
    (*

    The application ID.

    *)
  2. id : Id.t option;
    (*

    The ID of the configuration profile.

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

    The name of the configuration profile.

    *)
  4. locationUri : Uri_.t option;
    (*

    The URI location of the configuration.

    *)
  5. validatorTypes : ValidatorTypeList.t option;
    (*

    The types of validators in the configuration profile.

    *)
  6. type_ : ConfigurationProfileType.t option;
    (*

    The type of configurations contained in the profile. AppConfig supports feature flags and freeform configurations. We recommend you create feature flag configurations to enable or disable new features and freeform configurations to distribute configurations to an application. When calling this API, enter one of the following values for Type: AWS.AppConfig.FeatureFlags AWS.Freeform

    *)
}
Sourceval make : ?applicationId:??? -> ?id:??? -> ?name:??? -> ?locationUri:??? -> ?validatorTypes:??? -> ?type_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Enum of string ] list | `String of Id.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