Class NetworkConfig
- java.lang.Object
-
- software.amazon.awssdk.services.sagemaker.model.NetworkConfig
-
- All Implemented Interfaces:
Serializable
,SdkPojo
,ToCopyableBuilder<NetworkConfig.Builder,NetworkConfig>
@Generated("software.amazon.awssdk:codegen") public final class NetworkConfig extends Object implements SdkPojo, Serializable, ToCopyableBuilder<NetworkConfig.Builder,NetworkConfig>
Networking options for a job, such as network traffic encryption between containers, whether to allow inbound and outbound network calls to and from containers, and the VPC subnets and security groups to use for VPC-enabled jobs.
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interface
NetworkConfig.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static NetworkConfig.Builder
builder()
Boolean
enableInterContainerTrafficEncryption()
Whether to encrypt all communications between distributed processing jobs.Boolean
enableNetworkIsolation()
Whether to allow inbound and outbound network calls to and from the containers used for the processing job.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 NetworkConfig.Builder>
serializableBuilderClass()
NetworkConfig.Builder
toBuilder()
String
toString()
Returns a string representation of this object.VpcConfig
vpcConfig()
Returns the value of the VpcConfig property for 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
-
enableInterContainerTrafficEncryption
public final Boolean enableInterContainerTrafficEncryption()
Whether to encrypt all communications between distributed processing jobs. Choose
True
to encrypt communications. Encryption provides greater security for distributed processing jobs, but the processing might take longer.- Returns:
- Whether to encrypt all communications between distributed processing jobs. Choose
True
to encrypt communications. Encryption provides greater security for distributed processing jobs, but the processing might take longer.
-
enableNetworkIsolation
public final Boolean enableNetworkIsolation()
Whether to allow inbound and outbound network calls to and from the containers used for the processing job.
- Returns:
- Whether to allow inbound and outbound network calls to and from the containers used for the processing job.
-
vpcConfig
public final VpcConfig vpcConfig()
Returns the value of the VpcConfig property for this object.- Returns:
- The value of the VpcConfig property for this object.
-
toBuilder
public NetworkConfig.Builder toBuilder()
- Specified by:
toBuilder
in interfaceToCopyableBuilder<NetworkConfig.Builder,NetworkConfig>
-
builder
public static NetworkConfig.Builder builder()
-
serializableBuilderClass
public static Class<? extends NetworkConfig.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.
-
-