interface PentestReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.SecurityAgent.PentestReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awssecurityagent#PentestReference |
Java | software.amazon.awscdk.interfaces.securityagent.PentestReference |
Python | aws_cdk.interfaces.aws_securityagent.PentestReference |
TypeScript | aws-cdk-lib » interfaces » aws_securityagent » PentestReference |
A reference to a Pentest resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_securityagent as interfaces_securityagent } from 'aws-cdk-lib/interfaces';
const pentestReference: interfaces_securityagent.PentestReference = {
agentSpaceId: 'agentSpaceId',
pentestId: 'pentestId',
};
Properties
| Name | Type | Description |
|---|---|---|
| agent | string | The AgentSpaceId of the Pentest resource. |
| pentest | string | The PentestId of the Pentest resource. |
agentSpaceId
Type:
string
The AgentSpaceId of the Pentest resource.
pentestId
Type:
string
The PentestId of the Pentest resource.

.NET
Go
Java
Python
TypeScript