Module Values.TargetInstancesSource

Information about the instances to be used in the replacement environment in a blue/green deployment.

Sourcetype nonrec t = {
  1. tagFilters : EC2TagFilterList.t option;
    (*

    The tag filter key, type, and value used to identify Amazon EC2 instances in a replacement environment for a blue/green deployment. Cannot be used in the same call as ec2TagSet.

    *)
  2. autoScalingGroups : AutoScalingGroupNameList.t option;
    (*

    The names of one or more Auto Scaling groups to identify a replacement environment for a blue/green deployment.

    *)
  3. ec2TagSet : EC2TagSet.t option;
    (*

    Information about the groups of Amazon EC2 instance tags that an instance must be identified by in order for it to be included in the replacement environment for a blue/green deployment. Cannot be used in the same call as tagFilters.

    *)
}
Sourceval make : ?tagFilters:??? -> ?autoScalingGroups:??? -> ?ec2TagSet:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of AutoScalingGroupName.t | `Structure of (string * [> `Enum of string | `String of Key.t ]) list ] list | `Structure of (string * [> `List of [> `List of [> `Structure of (string * [> `Enum of string | `String of Key.t ]) list ] list ] list ]) 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