Module Values.PostLaunchActionsSource

Post Launch Actions to executed on the Test or Cutover instance.

Sourcetype nonrec t = {
  1. deployment : PostLaunchActionsDeploymentType.t option;
    (*

    Deployment type in which AWS Systems Manager Documents will be executed.

    *)
  2. s3LogBucket : S3LogBucketName.t option;
    (*

    AWS Systems Manager Command's logs S3 log bucket.

    *)
  3. s3OutputKeyPrefix : BoundedString.t option;
    (*

    AWS Systems Manager Command's logs S3 output key prefix.

    *)
  4. cloudWatchLogGroupName : CloudWatchLogGroupName.t option;
    (*

    AWS Systems Manager Command's CloudWatch log group name.

    *)
  5. ssmDocuments : SsmDocuments.t option;
    (*

    AWS Systems Manager Documents.

    *)
}
Sourceval make : ?deployment:??? -> ?s3LogBucket:??? -> ?s3OutputKeyPrefix:??? -> ?cloudWatchLogGroupName:??? -> ?ssmDocuments:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of StrictlyPositiveInteger.t | `Map of ([> `String of SsmDocumentParameterName.t ] * [> `List of [> `Structure of (string * [> `Enum of string | `String of SsmParameterStoreParameterName.t ]) list ] list | `Structure of (string * [> `String of JmesPathString.t ]) list ]) list | `String of BoundedString.t ]) list ] list | `String of S3LogBucketName.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