Show / Hide Table of Contents

Class CfnPipe.NetworkConfigurationProperty

This structure specifies the network configuration for an Amazon ECS task.

Inheritance
System.Object
CfnPipe.NetworkConfigurationProperty
Implements
CfnPipe.INetworkConfigurationProperty
Namespace: Amazon.CDK.AWS.Pipes
Assembly: Amazon.CDK.AWS.Pipes.dll
Syntax (csharp)
public class NetworkConfigurationProperty : Object, CfnPipe.INetworkConfigurationProperty
Syntax (vb)
Public Class NetworkConfigurationProperty
    Inherits Object
    Implements CfnPipe.INetworkConfigurationProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-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.Pipes;

var networkConfigurationProperty = new NetworkConfigurationProperty {
    AwsvpcConfiguration = new AwsVpcConfigurationProperty {
        Subnets = new [] { "subnets" },

        // the properties below are optional
        AssignPublicIp = "assignPublicIp",
        SecurityGroups = new [] { "securityGroups" }
    }
};

Synopsis

Constructors

NetworkConfigurationProperty()

Properties

AwsvpcConfiguration

Use this structure to specify the VPC subnets and security groups for the task, and whether a public IP address is to be used.

Constructors

NetworkConfigurationProperty()

public NetworkConfigurationProperty()

Properties

AwsvpcConfiguration

Use this structure to specify the VPC subnets and security groups for the task, and whether a public IP address is to be used.

public object AwsvpcConfiguration { get; set; }
Property Value

System.Object

Remarks

This structure is relevant only for ECS tasks that use the awsvpc network mode.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-networkconfiguration.html#cfn-pipes-pipe-networkconfiguration-awsvpcconfiguration

Implements

CfnPipe.INetworkConfigurationProperty
Back to top Generated by DocFX