interface EndpointDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Transfer.CfnWebAppPropsMixin.EndpointDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awstransfer#CfnWebAppPropsMixin_EndpointDetailsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.transfer.CfnWebAppPropsMixin.EndpointDetailsProperty |
Python | aws_cdk.cfn_property_mixins.aws_transfer.CfnWebAppPropsMixin.EndpointDetailsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_transfer » CfnWebAppPropsMixin » EndpointDetailsProperty |
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 endpointDetailsProperty: transfer.CfnWebAppPropsMixin.EndpointDetailsProperty = {
vpc: {
securityGroupIds: ['securityGroupIds'],
subnetIds: ['subnetIds'],
vpcId: 'vpcId',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| vpc? | IResolvable | Vpc | You can provide a structure that contains the details for the VPC endpoint to use with your web app. |
vpc?
Type:
IResolvable | Vpc
(optional)
You can provide a structure that contains the details for the VPC endpoint to use with your web app.

.NET
Go
Java
Python
TypeScript