Module Values.RunCommandTargetSource

Information about the EC2 instances that are to be sent the command, specified as key-value pairs. Each RunCommandTarget block can include only one key, but this key may specify multiple values.

Sourcetype nonrec t = {
  1. key : RunCommandTargetKey.t;
    (*

    Can be either tag: tag-key or InstanceIds.

    *)
  2. values : RunCommandTargetValues.t;
    (*

    If Key is tag: tag-key, Values is a list of tag values. If Key is InstanceIds, Values is a list of Amazon EC2 instance IDs.

    *)
}
Sourceval context_ : string
Sourceval make : key:RunCommandTargetKey.t -> values:RunCommandTargetValues.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of RunCommandTargetValue.t ] list | `String of RunCommandTargetKey.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