interface CfnPentestMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SecurityAgent.CfnPentestMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssecurityagent#CfnPentestMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.securityagent.CfnPentestMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_securityagent.CfnPentestMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_securityagent » CfnPentestMixinProps |
Properties for CfnPentestPropsMixin.
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 cfnPentestMixinProps: securityagent.CfnPentestMixinProps = {
agentSpaceId: 'agentSpaceId',
assets: {
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',
}],
},
codeRemediationStrategy: 'codeRemediationStrategy',
excludeRiskTypes: ['excludeRiskTypes'],
logConfig: {
logGroup: 'logGroup',
logStream: 'logStream',
},
networkTrafficConfig: {
customHeaders: [{
name: 'name',
value: 'value',
}],
rules: [{
effect: 'effect',
networkTrafficRuleType: 'networkTrafficRuleType',
pattern: 'pattern',
}],
},
serviceRole: 'serviceRole',
title: 'title',
vpcConfig: {
securityGroupArns: ['securityGroupArns'],
subnetArns: ['subnetArns'],
vpcArn: 'vpcArn',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| agent | string | |
| assets? | IResolvable | Assets | |
| code | string | |
| exclude | string[] | |
| log | IResolvable | Cloud | |
| network | IResolvable | Network | |
| service | string | |
| title? | string | |
| vpc | IResolvable | Vpc |
agentSpaceId?
Type:
string
(optional)
assets?
Type:
IResolvable | Assets
(optional)
codeRemediationStrategy?
Type:
string
(optional)
excludeRiskTypes?
Type:
string[]
(optional)
logConfig?
Type:
IResolvable | Cloud
(optional)
networkTrafficConfig?
Type:
IResolvable | Network
(optional)
serviceRole?
Type:
string
(optional)
title?
Type:
string
(optional)
vpcConfig?
Type:
IResolvable | Vpc
(optional)

.NET
Go
Java
Python
TypeScript