ProfilingGroupReference
- class aws_cdk.aws_codeguruprofiler.ProfilingGroupReference(*, profiling_group_arn, profiling_group_name)
Bases:
object
A 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 import aws_codeguruprofiler as codeguruprofiler profiling_group_reference = 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.