Show / Hide Table of Contents

Interface CfnJobDefinition.INetworkConfigurationProperty

The network configuration for jobs that are running on Fargate resources.

Namespace: Amazon.CDK.AWS.Batch
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnJobDefinition.INetworkConfigurationProperty
Syntax (vb)
Public Interface CfnJobDefinition.INetworkConfigurationProperty
Remarks

Jobs that are running on Amazon EC2 resources must not specify this parameter.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-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.Batch;

             var networkConfigurationProperty = new NetworkConfigurationProperty {
                 AssignPublicIp = "assignPublicIp"
             };

Synopsis

Properties

AssignPublicIp

Indicates whether the job has a public IP address.

Properties

AssignPublicIp

Indicates whether the job has a public IP address.

string? AssignPublicIp { get; }
Property Value

string

Remarks

For a job that's running on Fargate resources in a private subnet to send outbound traffic to the internet (for example, to pull container images), the private subnet requires a NAT gateway be attached to route requests to the internet. For more information, see Amazon ECS task networking in the Amazon Elastic Container Service Developer Guide . The default value is " DISABLED ".

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-networkconfiguration.html#cfn-batch-jobdefinition-networkconfiguration-assignpublicip

Back to top Generated by DocFX