Show / Hide Table of Contents

Class CfnWebApp.VpcProperty

You can provide a structure that contains the details for the VPC endpoint to use with your web app.

Inheritance
object
CfnWebApp.VpcProperty
Implements
CfnWebApp.IVpcProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-webapp-vpc.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-webapp-vpc.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-webapp-vpc.html#cfn-transfer-webapp-vpc-securitygroupids

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-webapp-vpc.html#cfn-transfer-webapp-vpc-subnetids

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; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-webapp-vpc.html#cfn-transfer-webapp-vpc-vpcid

Implements

CfnWebApp.IVpcProperty
Back to top Generated by DocFX