You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::CodeGuruProfiler::Types::CreateProfilingGroupRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing CreateProfilingGroupRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  agent_orchestration_config: {
    profiling_enabled: false, # required
  },
  client_token: "ClientToken", # required
  compute_platform: "AWSLambda", # accepts AWSLambda, Default
  profiling_group_name: "ProfilingGroupName", # required
  tags: {
    "String" => "String",
  },
}

The structure representing the createProfiliingGroupRequest.

Instance Attribute Summary collapse

Instance Attribute Details

#agent_orchestration_configTypes::AgentOrchestrationConfig

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

Returns:

#client_tokenString

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

Returns:

  • (String)

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

#compute_platformString

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.

Possible values:

  • AWSLambda
  • Default

Returns:

  • (String)

    The compute platform of the profiling group.

#profiling_group_nameString

The name of the profiling group to create.

Returns:

  • (String)

    The name of the profiling group to create.

#tagsHash<String,String>

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

Returns:

  • (Hash<String,String>)

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