interface VpcProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Transfer.CfnWebAppPropsMixin.VpcProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awstransfer#CfnWebAppPropsMixin_VpcProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.transfer.CfnWebAppPropsMixin.VpcProperty |
Python | aws_cdk.cfn_property_mixins.aws_transfer.CfnWebAppPropsMixin.VpcProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_transfer » CfnWebAppPropsMixin » 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/cfn-property-mixins';
const vpcProperty: transfer.CfnWebAppPropsMixin.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