Values.CreateLandingZoneInputSourceCreates 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.
type nonrec t = {version : LandingZoneVersion.t;The landing zone version, for example, 3.0.
*)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.
*)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.
*)}val make :
?remediationTypes:??? ->
?tags:??? ->
?manifest:??? ->
version:LandingZoneVersion.t ->
unit ->
tval 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 ]