interface ActorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SecurityAgent.CfnPentestPropsMixin.ActorProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssecurityagent#CfnPentestPropsMixin_ActorProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.securityagent.CfnPentestPropsMixin.ActorProperty |
Python | aws_cdk.cfn_property_mixins.aws_securityagent.CfnPentestPropsMixin.ActorProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_securityagent » CfnPentestPropsMixin » 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/cfn-property-mixins';
const actorProperty: securityagent.CfnPentestPropsMixin.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