interface AssetsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SecurityAgent.CfnPentest.AssetsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssecurityagent#CfnPentest_AssetsProperty |
Java | software.amazon.awscdk.services.securityagent.CfnPentest.AssetsProperty |
Python | aws_cdk.aws_securityagent.CfnPentest.AssetsProperty |
TypeScript | aws-cdk-lib » aws_securityagent » CfnPentest » AssetsProperty |
Collection of assets to be tested during the pentest.
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 assetsProperty: securityagent.CfnPentest.AssetsProperty = {
actors: [{
authentication: {
providerType: 'providerType',
value: 'value',
},
description: 'description',
identifier: 'identifier',
uris: ['uris'],
}],
documents: [{
artifactId: 'artifactId',
s3Location: 's3Location',
}],
endpoints: [{
uri: 'uri',
}],
integratedRepositories: [{
integrationId: 'integrationId',
providerResourceId: 'providerResourceId',
}],
sourceCode: [{
s3Location: 's3Location',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| actors? | IResolvable | (IResolvable | Actor)[] | List of actors used during testing. |
| documents? | IResolvable | (IResolvable | Document)[] | List of documents providing additional context for the pentest. |
| endpoints? | IResolvable | (IResolvable | Endpoint)[] | List of endpoints to test. |
| integrated | IResolvable | (IResolvable | Integrated)[] | List of repositories connected via provider integrations. |
| source | IResolvable | (IResolvable | Source)[] | List of source code repositories to analyze. |
actors?
Type:
IResolvable | (IResolvable | Actor)[]
(optional)
List of actors used during testing.
documents?
Type:
IResolvable | (IResolvable | Document)[]
(optional)
List of documents providing additional context for the pentest.
endpoints?
Type:
IResolvable | (IResolvable | Endpoint)[]
(optional)
List of endpoints to test.
integratedRepositories?
Type:
IResolvable | (IResolvable | Integrated)[]
(optional)
List of repositories connected via provider integrations.
sourceCode?
Type:
IResolvable | (IResolvable | Source)[]
(optional)
List of source code repositories to analyze.

.NET
Go
Java
Python
TypeScript