interface EndpointDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Transfer.CfnWebApp.EndpointDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awstransfer#CfnWebApp_EndpointDetailsProperty |
Java | software.amazon.awscdk.services.transfer.CfnWebApp.EndpointDetailsProperty |
Python | aws_cdk.aws_transfer.CfnWebApp.EndpointDetailsProperty |
TypeScript | aws-cdk-lib » aws_transfer » CfnWebApp » 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-lib';
const endpointDetailsProperty: transfer.CfnWebApp.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