Module CodeGuruProfiler.ProfilingGroup

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeguruprofiler-profilinggroup.html

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

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

and channel = {
  1. channel_uri : string;
  2. channel_id : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codeguruprofiler-profilinggroup-channel.html

and agent_permissions = {
  1. principals : string list;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codeguruprofiler-profilinggroup-agentpermissions.html

type properties = {
  1. anomaly_detection_notification_configuration : channel list option;
  2. agent_permissions : agent_permissions option;
  3. compute_platform : string option;
  4. profiling_group_name : string;
  5. tags : tag list option;
}

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

val make_properties : ?anomaly_detection_notification_configuration:channel list -> ?agent_permissions:agent_permissions -> ?compute_platform:string -> profiling_group_name:string -> ?tags:tag list -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val make_channel : channel_uri:string -> ?channel_id:string -> unit -> channel
val make_agent_permissions : principals:string list -> unit -> agent_permissions
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_channel : channel -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_agent_permissions : agent_permissions -> [> `Assoc of (string * [> `List of Yojson.Safe.t list ]) list ]
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
  2. arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string