Module XRay.Group

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-xray-group.html

type tag = {
  1. value : string;
  2. key : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html

and insights_configuration = {
  1. notifications_enabled : bool option;
  2. insights_enabled : bool option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-xray-group-insightsconfiguration.html

type properties = {
  1. group_name : string;
  2. insights_configuration : insights_configuration option;
  3. filter_expression : string option;
  4. tags : tag list option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-xray-group.html;

val make_properties : group_name:string -> ?insights_configuration:insights_configuration -> ?filter_expression:string -> ?tags:tag list -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val make_insights_configuration : ?notifications_enabled:bool -> ?insights_enabled:bool -> unit -> insights_configuration
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_insights_configuration : insights_configuration -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
  2. group_arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string