Class CfnWebApp.VpcProperty
You can provide a structure that contains the details for the VPC endpoint to use with your web app.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Transfer
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnWebApp.VpcProperty : CfnWebApp.IVpcProperty
Syntax (vb)
Public Class CfnWebApp.VpcProperty Implements CfnWebApp.IVpcProperty
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 vpcProperty = new VpcProperty {
SecurityGroupIds = new [] { "securityGroupIds" },
SubnetIds = new [] { "subnetIds" },
VpcId = "vpcId"
};
Synopsis
Constructors
| VpcProperty() | You can provide a structure that contains the details for the VPC endpoint to use with your web app. |
Properties
| SecurityGroupIds | You can provide a structure that contains the details for the VPC endpoint to use with your web app. |
| SubnetIds | You can provide a structure that contains the details for the VPC endpoint to use with your web app. |
| VpcId | You can provide a structure that contains the details for the VPC endpoint to use with your web app. |
Constructors
VpcProperty()
You can provide a structure that contains the details for the VPC endpoint to use with your web app.
public VpcProperty()
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 vpcProperty = new VpcProperty {
SecurityGroupIds = new [] { "securityGroupIds" },
SubnetIds = new [] { "subnetIds" },
VpcId = "vpcId"
};
Properties
SecurityGroupIds
You can provide a structure that contains the details for the VPC endpoint to use with your web app.
public string[]? SecurityGroupIds { get; set; }
Property Value
string[]
Remarks
SubnetIds
You can provide a structure that contains the details for the VPC endpoint to use with your web app.
public string[]? SubnetIds { get; set; }
Property Value
string[]
Remarks
VpcId
You can provide a structure that contains the details for the VPC endpoint to use with your web app.
public string? VpcId { get; set; }