interface ActorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SecurityAgent.CfnPentest.ActorProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssecurityagent#CfnPentest_ActorProperty |
Java | software.amazon.awscdk.services.securityagent.CfnPentest.ActorProperty |
Python | aws_cdk.aws_securityagent.CfnPentest.ActorProperty |
TypeScript | aws-cdk-lib » aws_securityagent » CfnPentest » ActorProperty |
An authenticated actor to be used during pentest execution.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_securityagent as securityagent } from 'aws-cdk-lib';
const actorProperty: securityagent.CfnPentest.ActorProperty = {
authentication: {
providerType: 'providerType',
value: 'value',
},
description: 'description',
identifier: 'identifier',
uris: ['uris'],
};
Properties
| Name | Type | Description |
|---|---|---|
| authentication? | IResolvable | Authentication | Authentication configuration for a pentest actor. |
| description? | string | Description of the actor. |
| identifier? | string | Identifier for the actor. |
| uris? | string[] | List of URIs this actor is authorized to access. |
authentication?
Type:
IResolvable | Authentication
(optional)
Authentication configuration for a pentest actor.
description?
Type:
string
(optional)
Description of the actor.
identifier?
Type:
string
(optional)
Identifier for the actor.
uris?
Type:
string[]
(optional)
List of URIs this actor is authorized to access.

.NET
Go
Java
Python
TypeScript