Class CfnWebApp.EndpointDetailsProperty
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Transfer
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnWebApp.EndpointDetailsProperty : CfnWebApp.IEndpointDetailsProperty
Syntax (vb)
Public Class CfnWebApp.EndpointDetailsProperty Implements CfnWebApp.IEndpointDetailsProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Transfer;
var endpointDetailsProperty = new EndpointDetailsProperty {
Vpc = new VpcProperty {
SecurityGroupIds = new [] { "securityGroupIds" },
SubnetIds = new [] { "subnetIds" },
VpcId = "vpcId"
}
};
Synopsis
Constructors
| EndpointDetailsProperty() |
Properties
| Vpc | You can provide a structure that contains the details for the VPC endpoint to use with your web app. |
Constructors
EndpointDetailsProperty()
public EndpointDetailsProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Transfer;
var endpointDetailsProperty = new EndpointDetailsProperty {
Vpc = new VpcProperty {
SecurityGroupIds = new [] { "securityGroupIds" },
SubnetIds = new [] { "subnetIds" },
VpcId = "vpcId"
}
};
Properties
Vpc
You can provide a structure that contains the details for the VPC endpoint to use with your web app.
public object? Vpc { get; set; }