interface ProfilingGroupReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CodeGuruProfiler.ProfilingGroupReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscodeguruprofiler#ProfilingGroupReference |
Java | software.amazon.awscdk.services.codeguruprofiler.ProfilingGroupReference |
Python | aws_cdk.aws_codeguruprofiler.ProfilingGroupReference |
TypeScript | aws-cdk-lib » aws_codeguruprofiler » ProfilingGroupReference |
A reference to a ProfilingGroup resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_codeguruprofiler as codeguruprofiler } from 'aws-cdk-lib';
const profilingGroupReference: codeguruprofiler.ProfilingGroupReference = {
profilingGroupArn: 'profilingGroupArn',
profilingGroupName: 'profilingGroupName',
};
Properties
| Name | Type | Description |
|---|---|---|
| profiling | string | The ARN of the ProfilingGroup resource. |
| profiling | string | The ProfilingGroupName of the ProfilingGroup resource. |
profilingGroupArn
Type:
string
The ARN of the ProfilingGroup resource.
profilingGroupName
Type:
string
The ProfilingGroupName of the ProfilingGroup resource.

.NET
Go
Java
Python
TypeScript