ProfilingGroupReference
- class aws_cdk.interfaces.aws_codeguruprofiler.ProfilingGroupReference(*, profiling_group_arn, profiling_group_name)
Bases:
objectA reference to a ProfilingGroup resource.
- Parameters:
profiling_group_arn (
str) – The ARN of the ProfilingGroup resource.profiling_group_name (
str) – The ProfilingGroupName of the ProfilingGroup resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.interfaces import aws_codeguruprofiler as interfaces_aws_codeguruprofiler profiling_group_reference = interfaces_aws_codeguruprofiler.ProfilingGroupReference( profiling_group_arn="profilingGroupArn", profiling_group_name="profilingGroupName" )
Attributes
- profiling_group_arn
The ARN of the ProfilingGroup resource.
- profiling_group_name
The ProfilingGroupName of the ProfilingGroup resource.