Show / Hide Table of Contents

Class CfnExpressGatewayServicePropsMixin.ExpressGatewayServiceNetworkConfigurationProperty

The network configuration for an Express service.

Inheritance
object
CfnExpressGatewayServicePropsMixin.ExpressGatewayServiceNetworkConfigurationProperty
Implements
CfnExpressGatewayServicePropsMixin.IExpressGatewayServiceNetworkConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.ECS
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnExpressGatewayServicePropsMixin.ExpressGatewayServiceNetworkConfigurationProperty : CfnExpressGatewayServicePropsMixin.IExpressGatewayServiceNetworkConfigurationProperty
Syntax (vb)
Public Class CfnExpressGatewayServicePropsMixin.ExpressGatewayServiceNetworkConfigurationProperty Implements CfnExpressGatewayServicePropsMixin.IExpressGatewayServiceNetworkConfigurationProperty
Remarks

By default, an Express service utilizes subnets and security groups associated with the default VPC.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-expressgatewayservicenetworkconfiguration.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.CfnPropertyMixins.AWS.ECS;

             var expressGatewayServiceNetworkConfigurationProperty = new ExpressGatewayServiceNetworkConfigurationProperty {
                 SecurityGroups = new [] { "securityGroups" },
                 Subnets = new [] { "subnets" }
             };

Synopsis

Constructors

ExpressGatewayServiceNetworkConfigurationProperty()

The network configuration for an Express service.

Properties

SecurityGroups

The IDs of the security groups associated with the Express service.

Subnets

The IDs of the subnets associated with the Express service.

Constructors

ExpressGatewayServiceNetworkConfigurationProperty()

The network configuration for an Express service.

public ExpressGatewayServiceNetworkConfigurationProperty()
Remarks

By default, an Express service utilizes subnets and security groups associated with the default VPC.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-expressgatewayservicenetworkconfiguration.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.CfnPropertyMixins.AWS.ECS;

             var expressGatewayServiceNetworkConfigurationProperty = new ExpressGatewayServiceNetworkConfigurationProperty {
                 SecurityGroups = new [] { "securityGroups" },
                 Subnets = new [] { "subnets" }
             };

Properties

SecurityGroups

The IDs of the security groups associated with the Express service.

public string[]? SecurityGroups { get; set; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-expressgatewayservicenetworkconfiguration.html#cfn-ecs-expressgatewayservice-expressgatewayservicenetworkconfiguration-securitygroups

Subnets

The IDs of the subnets associated with the Express service.

public string[]? Subnets { get; set; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-expressgatewayservicenetworkconfiguration.html#cfn-ecs-expressgatewayservice-expressgatewayservicenetworkconfiguration-subnets

Implements

CfnExpressGatewayServicePropsMixin.IExpressGatewayServiceNetworkConfigurationProperty
Back to top Generated by DocFX