interface VpcProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Transfer.CfnWebApp.VpcProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awstransfer#CfnWebApp_VpcProperty |
Java | software.amazon.awscdk.services.transfer.CfnWebApp.VpcProperty |
Python | aws_cdk.aws_transfer.CfnWebApp.VpcProperty |
TypeScript | aws-cdk-lib » aws_transfer » CfnWebApp » VpcProperty |
You can provide a structure that contains the details for the VPC endpoint to use with your web app.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_transfer as transfer } from 'aws-cdk-lib';
const vpcProperty: transfer.CfnWebApp.VpcProperty = {
securityGroupIds: ['securityGroupIds'],
subnetIds: ['subnetIds'],
vpcId: 'vpcId',
};
Properties
| Name | Type | Description |
|---|---|---|
| security | string[] | |
| subnet | string[] | |
| vpc | string |
securityGroupIds?
Type:
string[]
(optional)
subnetIds?
Type:
string[]
(optional)
vpcId?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript