interface VpcConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SecurityAgent.CfnAgentSpacePropsMixin.VpcConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssecurityagent#CfnAgentSpacePropsMixin_VpcConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.securityagent.CfnAgentSpacePropsMixin.VpcConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_securityagent.CfnAgentSpacePropsMixin.VpcConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_securityagent » CfnAgentSpacePropsMixin » VpcConfigProperty |
Customer VPC configuration that the security testing environment accesses.
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 vpcConfigProperty: securityagent.CfnAgentSpacePropsMixin.VpcConfigProperty = {
securityGroupArns: ['securityGroupArns'],
subnetArns: ['subnetArns'],
vpcArn: 'vpcArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| security | string[] | List of security group ARNs in the customer VPC. |
| subnet | string[] | List of subnet ARNs in the customer VPC. |
| vpc | string | ARN of the customer VPC. |
securityGroupArns?
Type:
string[]
(optional)
List of security group ARNs in the customer VPC.
subnetArns?
Type:
string[]
(optional)
List of subnet ARNs in the customer VPC.
vpcArn?
Type:
string
(optional)
ARN of the customer VPC.

.NET
Go
Java
Python
TypeScript