Show / Hide Table of Contents

Class CfnServicePropsMixin.NetworkConfigurationProperty

The network configuration for a task or service.

Inheritance
object
CfnServicePropsMixin.NetworkConfigurationProperty
Implements
CfnServicePropsMixin.INetworkConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.ECS.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnServicePropsMixin.NetworkConfigurationProperty : CfnServicePropsMixin.INetworkConfigurationProperty
Syntax (vb)
Public Class CfnServicePropsMixin.NetworkConfigurationProperty Implements CfnServicePropsMixin.INetworkConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-networkconfiguration.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.Mixins.Preview.AWS.ECS.Mixins;

             var networkConfigurationProperty = new NetworkConfigurationProperty {
                 AwsvpcConfiguration = new AwsVpcConfigurationProperty {
                     AssignPublicIp = "assignPublicIp",
                     SecurityGroups = new [] { "securityGroups" },
                     Subnets = new [] { "subnets" }
                 }
             };

Synopsis

Constructors

NetworkConfigurationProperty()

The network configuration for a task or service.

Properties

AwsvpcConfiguration

The VPC subnets and security groups that are associated with a task.

Constructors

NetworkConfigurationProperty()

The network configuration for a task or service.

public NetworkConfigurationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-networkconfiguration.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.Mixins.Preview.AWS.ECS.Mixins;

             var networkConfigurationProperty = new NetworkConfigurationProperty {
                 AwsvpcConfiguration = new AwsVpcConfigurationProperty {
                     AssignPublicIp = "assignPublicIp",
                     SecurityGroups = new [] { "securityGroups" },
                     Subnets = new [] { "subnets" }
                 }
             };

Properties

AwsvpcConfiguration

The VPC subnets and security groups that are associated with a task.

public object? AwsvpcConfiguration { get; set; }
Property Value

object

Remarks
All specified subnets and security groups must be from the same VPC.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-networkconfiguration.html#cfn-ecs-service-networkconfiguration-awsvpcconfiguration

Type union: either IResolvable or CfnServicePropsMixin.IAwsVpcConfigurationProperty

Implements

CfnServicePropsMixin.INetworkConfigurationProperty
Back to top Generated by DocFX