interface ProfilingGroupReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.CodeGuruProfiler.ProfilingGroupReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awscodeguruprofiler#ProfilingGroupReference |
Java | software.amazon.awscdk.interfaces.codeguruprofiler.ProfilingGroupReference |
Python | aws_cdk.interfaces.aws_codeguruprofiler.ProfilingGroupReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_aws_codeguruprofiler } from 'aws-cdk-lib/interfaces';
const profilingGroupReference: interfaces_aws_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