interface EndpointDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Transfer.Mixins.CfnWebAppPropsMixin.EndpointDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awstransfer/mixins#CfnWebAppPropsMixin_EndpointDetailsProperty |
Java | software.amazon.awscdk.mixins.preview.services.transfer.mixins.CfnWebAppPropsMixin.EndpointDetailsProperty |
Python | aws_cdk.mixins_preview.aws_transfer.mixins.CfnWebAppPropsMixin.EndpointDetailsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_transfer » mixins » CfnWebAppPropsMixin » EndpointDetailsProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as transfer_mixins } from '@aws-cdk/mixins-preview/aws-transfer';
const endpointDetailsProperty: transfer_mixins.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