AssessmentReference
- class aws_cdk.interfaces.aws_auditmanager.AssessmentReference(*, assessment_arn, assessment_id)
Bases:
objectA 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.interfaces import aws_auditmanager as interfaces_auditmanager assessment_reference = interfaces_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.