Module Values.LandingZoneDetailSource

Information about the landing zone.

Sourcetype nonrec t = {
  1. version : LandingZoneVersion.t option;
    (*

    The landing zone's current deployed version.

    *)
  2. remediationTypes : RemediationTypes.t option;
    (*

    The types of remediation actions configured for the landing zone, such as automatic drift correction or compliance enforcement.

    *)
  3. arn : Arn.t option;
    (*

    The ARN of the landing zone.

    *)
  4. status : LandingZoneStatus.t option;
    (*

    The landing zone deployment status. One of ACTIVE, PROCESSING, FAILED.

    *)
  5. latestAvailableVersion : LandingZoneVersion.t option;
    (*

    The latest available version of the landing zone.

    *)
  6. driftStatus : LandingZoneDriftStatusSummary.t option;
    (*

    The drift status of the landing zone.

    *)
  7. manifest : Manifest.t option;
    (*

    The landing zone manifest JSON text file that specifies the landing zone configurations.

    *)
}
Sourceval make : ?version:??? -> ?remediationTypes:??? -> ?arn:??? -> ?status:??? -> ?latestAvailableVersion:??? -> ?driftStatus:??? -> ?manifest:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string ] list | `String of LandingZoneVersion.t | `Structure of (string * [> `Enum of string ]) 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