Module Values.DeleteConfigurationProfileRequestSource

Deletes a configuration profile. To prevent users from unintentionally deleting actively-used configuration profiles, enable deletion protection.

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

    The application ID that includes the configuration profile you want to delete.

    *)
  2. configurationProfileId : Id.t;
    (*

    The ID of the configuration profile you want to delete.

    *)
  3. deletionProtectionCheck : DeletionProtectionCheck.t option;
    (*

    A parameter to configure deletion protection. Deletion protection prevents a user from deleting a configuration profile if your application has called either GetLatestConfiguration or for the configuration profile during the specified interval. This parameter supports the following values: BYPASS: Instructs AppConfig to bypass the deletion protection check and delete a configuration profile even if deletion protection would have otherwise prevented it. APPLY: Instructs the deletion protection check to run, even if deletion protection is disabled at the account level. APPLY also forces the deletion protection check to run against resources created in the past hour, which are normally excluded from deletion protection checks. ACCOUNT_DEFAULT: The default setting, which instructs AppConfig to implement the deletion protection value specified in the UpdateAccountSettings API.

    *)
}
Sourceval context_ : string
Sourceval make : ?deletionProtectionCheck:??? -> applicationId:Id.t -> configurationProfileId:Id.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `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