Module Values.UnprocessedConfigurationPolicyAssociationSource

An array of configuration policy associations, one for each configuration policy association identifier, that was specified in a BatchGetConfigurationPolicyAssociations request but couldn’t be processed due to an error.

Sourcetype nonrec t = {
  1. configurationPolicyAssociationIdentifiers : ConfigurationPolicyAssociation.t option;
    (*

    Configuration policy association identifiers that were specified in a BatchGetConfigurationPolicyAssociations request but couldn’t be processed due to an error.

    *)
  2. errorCode : NonEmptyString.t option;
    (*

    An HTTP status code that identifies why the configuration policy association failed.

    *)
  3. errorReason : NonEmptyString.t option;
    (*

    A string that identifies why the configuration policy association failed.

    *)
}
Sourceval make : ?configurationPolicyAssociationIdentifiers:??? -> ?errorCode:??? -> ?errorReason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.t | `Structure of (string * [> `Structure of (string * [> `String of NonEmptyString.t ]) 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