Module Values.UpdateLandingZoneInputSource

This API call updates the landing zone. It starts an asynchronous operation that updates the landing zone based on the new landing zone version, or on the changed parameters specified in the updated manifest file.

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

    The landing zone version, for example, 3.2.

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

    Specifies the types of remediation actions to apply when updating the landing zone configuration.

    *)
  3. landingZoneIdentifier : String_.t;
    (*

    The unique identifier of the landing zone.

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

    The manifest file (JSON) is a text file that describes your Amazon Web Services resources. For an example, review Launch your landing zone. The example manifest file contains each of the available parameters. The schema for the landing zone's JSON manifest file is not published, by design.

    *)
}
Sourceval context_ : string
Sourceval make : ?remediationTypes:??? -> ?manifest:??? -> version:LandingZoneVersion.t -> landingZoneIdentifier:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Enum of string ] list | `String of LandingZoneVersion.t | `Structure of 'a 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