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 |
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 | |
| description? | string | |
| identifier? | string | |
| uris? | string[] |
authentication?
Type:
IResolvable | Authentication
(optional)
description?
Type:
string
(optional)
identifier?
Type:
string
(optional)
uris?
Type:
string[]
(optional)

.NET
Go
Java
Python
TypeScript