Module Values.CreateProfilingGroupRequestSource

The structure representing the createProfiliingGroupRequest.

Sourcetype nonrec t = {
  1. agentOrchestrationConfig : AgentOrchestrationConfig.t option;
    (*

    Specifies whether profiling is enabled or disabled for the created profiling group.

    *)
  2. clientToken : ClientToken.t;
    (*

    Amazon CodeGuru Profiler uses this universally unique identifier (UUID) to prevent the accidental creation of duplicate profiling groups if there are failures and retries.

    *)
  3. computePlatform : ComputePlatform.t option;
    (*

    The compute platform of the profiling group. Use AWSLambda if your application runs on AWS Lambda. Use Default if your application runs on a compute platform that is not AWS Lambda, such an Amazon EC2 instance, an on-premises server, or a different platform. If not specified, Default is used.

    *)
  4. profilingGroupName : ProfilingGroupName.t;
    (*

    The name of the profiling group to create.

    *)
  5. tags : TagsMap.t option;
    (*

    A list of tags to add to the created profiling group.

    *)
}
Sourceval context_ : string
Sourceval make : ?agentOrchestrationConfig:??? -> ?computePlatform:??? -> ?tags:??? -> clientToken:ClientToken.t -> profilingGroupName:ProfilingGroupName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `String of ClientToken.t | `Structure of (string * [> `Boolean of Boolean.t ]) 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