Show / Hide Table of Contents

Interface CfnService.INetworkConfigurationProperty

The network configuration for a task or service.

Namespace: Amazon.CDK.AWS.ECS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnService.INetworkConfigurationProperty
Syntax (vb)
Public Interface CfnService.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.AWS.ECS;

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

Synopsis

Properties

AwsvpcConfiguration

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

Properties

AwsvpcConfiguration

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

object? AwsvpcConfiguration { get; }
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 CfnService.IAwsVpcConfigurationProperty

Back to top Generated by DocFX