Values.ExternalEvaluationSourceIdentifies an Amazon Web Services resource and indicates whether it complies with the Config rule that it was evaluated against.
type nonrec t = {complianceResourceType : StringWithCharLimit256.t;The evaluated compliance resource type. Config accepts AWS::::Account resource type.
*)complianceResourceId : BaseResourceId.t;The evaluated compliance resource ID. Config accepts only Amazon Web Services account ID.
*)complianceType : ComplianceType.t;The compliance of the Amazon Web Services resource. The valid values are COMPLIANT, NON_COMPLIANT, and NOT_APPLICABLE.
*)annotation : StringWithCharLimit256.t option;Supplementary information about the reason of compliance. For example, this task was completed on a specific date.
*)orderingTimestamp : OrderingTimestamp.t;The time when the compliance was recorded.
*)}val make :
?annotation:??? ->
complianceResourceType:StringWithCharLimit256.t ->
complianceResourceId:BaseResourceId.t ->
complianceType:ComplianceType.t ->
orderingTimestamp:OrderingTimestamp.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of StringWithCharLimit256.t
| `Timestamp of OrderingTimestamp.t ])
list ]