interface ProfilingGroupProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CodeGuruProfiler.ProfilingGroupProps |
Java | software.amazon.awscdk.services.codeguruprofiler.ProfilingGroupProps |
Python | aws_cdk.aws_codeguruprofiler.ProfilingGroupProps |
TypeScript (source) | @aws-cdk/aws-codeguruprofiler » ProfilingGroupProps |
Properties for creating a new Profiling Group.
Example
const profilingGroup = new codeguruprofiler.ProfilingGroup(this, 'MyProfilingGroup', {
computePlatform: codeguruprofiler.ComputePlatform.AWS_LAMBDA,
});
Properties
| Name | Type | Description |
|---|---|---|
| compute | Compute | The compute platform of the profiling group. |
| profiling | string | A name for the profiling group. |
computePlatform?
Type:
Compute
(optional, default: ComputePlatform.DEFAULT)
The compute platform of the profiling group.
profilingGroupName?
Type:
string
(optional, default: automatically generated name.)
A name for the profiling group.

.NET
Java
Python
TypeScript (