Module Values.EnableBaselineInputSource

Enable (apply) a Baseline to a Target. This API starts an asynchronous operation to deploy resources specified by the Baseline to the specified Target. For usage examples, see the Amazon Web Services Control Tower User Guide .

Sourcetype nonrec t = {
  1. baselineVersion : BaselineVersion.t;
    (*

    The specific version to be enabled of the specified baseline.

    *)
  2. parameters : EnabledBaselineParameters.t option;
    (*

    A list of key-value objects that specify enablement parameters, where key is a string and value is a document of any type.

    *)
  3. baselineIdentifier : Arn.t;
    (*

    The ARN of the baseline to be enabled.

    *)
  4. targetIdentifier : Arn.t;
    (*

    The ARN of the target on which the baseline will be enabled. Only OUs are supported as targets.

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

    Tags associated with input to EnableBaseline.

    *)
}
Sourceval context_ : string
Sourceval make : ?parameters:??? -> ?tags:??? -> baselineVersion:BaselineVersion.t -> baselineIdentifier:Arn.t -> targetIdentifier:Arn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of String_.t | `Structure of 'a list ]) list ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of BaselineVersion.t ]) 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