Show / Hide Table of Contents

Class CfnWebApp.EndpointDetailsProperty

Inheritance
object
CfnWebApp.EndpointDetailsProperty
Implements
CfnWebApp.IEndpointDetailsProperty
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.EndpointDetailsProperty : CfnWebApp.IEndpointDetailsProperty
Syntax (vb)
Public Class CfnWebApp.EndpointDetailsProperty Implements 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

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

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"
                 }
             };

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

Implements

CfnWebApp.IEndpointDetailsProperty
Back to top Generated by DocFX