AssessmentReference
- class aws_cdk.aws_auditmanager.AssessmentReference(*, assessment_arn, assessment_id)
Bases:
object
A reference to a Assessment resource.
- Parameters:
assessment_arn (
str
) – The ARN of the Assessment resource.assessment_id (
str
) – The AssessmentId of the Assessment 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_auditmanager as auditmanager assessment_reference = auditmanager.AssessmentReference( assessment_arn="assessmentArn", assessment_id="assessmentId" )
Attributes
- assessment_arn
The ARN of the Assessment resource.
- assessment_id
The AssessmentId of the Assessment resource.