PentestReference
- class aws_cdk.interfaces.aws_securityagent.PentestReference(*, agent_space_id, pentest_id)
Bases:
objectA reference to a Pentest resource.
- Parameters:
agent_space_id (
str) – The AgentSpaceId of the Pentest resource.pentest_id (
str) – The PentestId of the Pentest 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_securityagent as interfaces_securityagent pentest_reference = interfaces_securityagent.PentestReference( agent_space_id="agentSpaceId", pentest_id="pentestId" )
Attributes
- agent_space_id
The AgentSpaceId of the Pentest resource.
- pentest_id
The PentestId of the Pentest resource.