Module Values.CreateLandingZoneInputSource

Creates a new landing zone. This API call starts an asynchronous operation that creates and configures a landing zone, based on the parameters specified in the manifest JSON file.

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

    The landing zone version, for example, 3.0.

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

    Specifies the types of remediation actions to apply when creating the landing zone, such as automatic drift correction or compliance enforcement.

    *)
  3. tags : TagMap.t option;
    (*

    Tags to be applied to the landing zone.

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

    The manifest JSON file is a text file that describes your Amazon Web Services resources. For examples, review Launch your landing zone.

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