Class NetworkConfiguration
- java.lang.Object
-
- software.amazon.awssdk.services.batch.model.NetworkConfiguration
-
- All Implemented Interfaces:
Serializable
,SdkPojo
,ToCopyableBuilder<NetworkConfiguration.Builder,NetworkConfiguration>
@Generated("software.amazon.awssdk:codegen") public final class NetworkConfiguration extends Object implements SdkPojo, Serializable, ToCopyableBuilder<NetworkConfiguration.Builder,NetworkConfiguration>
The network configuration for jobs that are running on Fargate resources. Jobs that are running on EC2 resources must not specify this parameter.
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interface
NetworkConfiguration.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description AssignPublicIp
assignPublicIp()
Indicates whether the job has a public IP address.String
assignPublicIpAsString()
Indicates whether the job has a public IP address.static NetworkConfiguration.Builder
builder()
boolean
equals(Object obj)
boolean
equalsBySdkFields(Object obj)
<T> Optional<T>
getValueForField(String fieldName, Class<T> clazz)
int
hashCode()
List<SdkField<?>>
sdkFields()
static Class<? extends NetworkConfiguration.Builder>
serializableBuilderClass()
NetworkConfiguration.Builder
toBuilder()
String
toString()
Returns a string representation of this object.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
assignPublicIp
public final AssignPublicIp assignPublicIp()
Indicates whether the job has a public IP address. 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
".If the service returns an enum value that is not available in the current SDK version,
assignPublicIp
will returnAssignPublicIp.UNKNOWN_TO_SDK_VERSION
. The raw value returned by the service is available fromassignPublicIpAsString()
.- Returns:
- Indicates whether the job has a public IP address. 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 Also:
AssignPublicIp
-
assignPublicIpAsString
public final String assignPublicIpAsString()
Indicates whether the job has a public IP address. 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
".If the service returns an enum value that is not available in the current SDK version,
assignPublicIp
will returnAssignPublicIp.UNKNOWN_TO_SDK_VERSION
. The raw value returned by the service is available fromassignPublicIpAsString()
.- Returns:
- Indicates whether the job has a public IP address. 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 Also:
AssignPublicIp
-
toBuilder
public NetworkConfiguration.Builder toBuilder()
- Specified by:
toBuilder
in interfaceToCopyableBuilder<NetworkConfiguration.Builder,NetworkConfiguration>
-
builder
public static NetworkConfiguration.Builder builder()
-
serializableBuilderClass
public static Class<? extends NetworkConfiguration.Builder> serializableBuilderClass()
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFields
in interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
-