Skip to content

Describe Profiling Group

codeguruprofiler_describe_profiling_group R Documentation

Returns a ProfilingGroupDescription object that contains information about the requested profiling group

Description

Returns a ProfilingGroupDescription object that contains information about the requested profiling group.

Usage

codeguruprofiler_describe_profiling_group(profilingGroupName)

Arguments

profilingGroupName

[required] The name of the profiling group to get information about.

Value

A list with the following syntax:

list(
  profilingGroup = list(
    agentOrchestrationConfig = list(
      profilingEnabled = TRUE|FALSE
    ),
    arn = "string",
    computePlatform = "Default"|"AWSLambda",
    createdAt = as.POSIXct(
      "2015-01-01"
    ),
    name = "string",
    profilingStatus = list(
      latestAgentOrchestratedAt = as.POSIXct(
        "2015-01-01"
      ),
      latestAgentProfileReportedAt = as.POSIXct(
        "2015-01-01"
      ),
      latestAggregatedProfile = list(
        period = "PT5M"|"PT1H"|"P1D",
        start = as.POSIXct(
          "2015-01-01"
        )
      )
    ),
    tags = list(
      "string"
    ),
    updatedAt = as.POSIXct(
      "2015-01-01"
    )
  )
)

Request syntax

svc$describe_profiling_group(
  profilingGroupName = "string"
)