Module Values.ExperimentTemplateTargetSource

Describes a target for an experiment template.

Sourcetype nonrec t = {
  1. resourceType : TargetResourceTypeId.t option;
    (*

    The resource type.

    *)
  2. resourceArns : ResourceArnList.t option;
    (*

    The Amazon Resource Names (ARNs) of the targets.

    *)
  3. resourceTags : TagMap.t option;
    (*

    The tags for the target resources.

    *)
  4. filters : ExperimentTemplateTargetFilterList.t option;
    (*

    The filters to apply to identify target resources using specific attributes.

    *)
  5. selectionMode : ExperimentTemplateTargetSelectionMode.t option;
    (*

    Scopes the identified resources to a specific count or percentage.

    *)
  6. parameters : ExperimentTemplateTargetParameterMap.t option;
    (*

    The resource type parameters.

    *)
}
Sourceval make : ?resourceType:??? -> ?resourceArns:??? -> ?resourceTags:??? -> ?filters:??? -> ?selectionMode:??? -> ?parameters:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of ResourceArn.t | `Structure of (string * [> `List of [> `String of ExperimentTemplateTargetFilterValue.t ] list | `String of ExperimentTemplateTargetFilterPath.t ]) list ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of TargetResourceTypeId.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