Module Values.ResourceDriftSource

Indicates the resources that have drifted in the current application version.

Sourcetype nonrec t = {
  1. appArn : Arn.t option;
    (*

    Amazon Resource Name (ARN) of the application whose resources have drifted. The format for this ARN is: arn:partition:resiliencehub:region:account:app-assessment/app-id. For more information about ARNs, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference guide.

    *)
  2. appVersion : EntityVersion.t option;
    (*

    Version of the application whose resources have drifted.

    *)
  3. diffType : DifferenceType.t option;
    (*

    Indicates if the resource was added or removed.

    *)
  4. referenceId : EntityId.t option;
    (*

    Reference identifier of the resource drift.

    *)
  5. resourceIdentifier : ResourceIdentifier.t option;
    (*

    Identifier of the drifted resource.

    *)
}
Sourceval make : ?appArn:??? -> ?appVersion:??? -> ?diffType:??? -> ?referenceId:??? -> ?resourceIdentifier:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Arn.t | `Structure of (string * [> `String of String255.t | `Structure of (string * [> `String of String255.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