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 |
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)[] | |
| documents? | IResolvable | (IResolvable | Document)[] | |
| endpoints? | IResolvable | (IResolvable | Endpoint)[] | |
| integrated | IResolvable | (IResolvable | Integrated)[] | |
| source | IResolvable | (IResolvable | Source)[] |
actors?
Type:
IResolvable | (IResolvable | Actor)[]
(optional)
documents?
Type:
IResolvable | (IResolvable | Document)[]
(optional)
endpoints?
Type:
IResolvable | (IResolvable | Endpoint)[]
(optional)
integratedRepositories?
Type:
IResolvable | (IResolvable | Integrated)[]
(optional)
sourceCode?
Type:
IResolvable | (IResolvable | Source)[]
(optional)

.NET
Go
Java
Python
TypeScript