Update Profiling Group
codeguruprofiler_update_profiling_group | R Documentation |
Updates a profiling group¶
Description¶
Updates a profiling group.
Usage¶
Arguments¶
agentOrchestrationConfig
[required] Specifies whether profiling is enabled or disabled for a profiling group.
profilingGroupName
[required] The name of the profiling group to update.
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"
)
)
)