Show / Hide Table of Contents

Interface CfnWebApp.IEndpointDetailsProperty

Namespace: Amazon.CDK.AWS.Transfer
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnWebApp.IEndpointDetailsProperty
Syntax (vb)
Public Interface CfnWebApp.IEndpointDetailsProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-webapp-endpointdetails.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 endpointDetailsProperty = new EndpointDetailsProperty {
                 Vpc = new VpcProperty {
                     SecurityGroupIds = new [] { "securityGroupIds" },
                     SubnetIds = new [] { "subnetIds" },
                     VpcId = "vpcId"
                 }
             };

Synopsis

Properties

Vpc

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

Properties

Vpc

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

object? Vpc { get; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnWebApp.IVpcProperty

Back to top Generated by DocFX