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 |
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 | |
| 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