Interface ModelDeployConfig.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ModelDeployConfig.Builder,ModelDeployConfig>,SdkBuilder<ModelDeployConfig.Builder,ModelDeployConfig>,SdkPojo
- Enclosing class:
- ModelDeployConfig
public static interface ModelDeployConfig.Builder extends SdkPojo, CopyableBuilder<ModelDeployConfig.Builder,ModelDeployConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ModelDeployConfig.BuilderautoGenerateEndpointName(Boolean autoGenerateEndpointName)Set toTrueto automatically generate an endpoint name for a one-click Autopilot model deployment; set toFalseotherwise.ModelDeployConfig.BuilderendpointName(String endpointName)Specifies the endpoint name to use for a one-click Autopilot model deployment if the endpoint name is not generated automatically.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
autoGenerateEndpointName
ModelDeployConfig.Builder autoGenerateEndpointName(Boolean autoGenerateEndpointName)
Set to
Trueto automatically generate an endpoint name for a one-click Autopilot model deployment; set toFalseotherwise. The default value isFalse.If you set
AutoGenerateEndpointNametoTrue, do not specify theEndpointName; otherwise a 400 error is thrown.- Parameters:
autoGenerateEndpointName- Set toTrueto automatically generate an endpoint name for a one-click Autopilot model deployment; set toFalseotherwise. The default value isFalse.If you set
AutoGenerateEndpointNametoTrue, do not specify theEndpointName; otherwise a 400 error is thrown.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endpointName
ModelDeployConfig.Builder endpointName(String endpointName)
Specifies the endpoint name to use for a one-click Autopilot model deployment if the endpoint name is not generated automatically.
Specify the
EndpointNameif and only if you setAutoGenerateEndpointNametoFalse; otherwise a 400 error is thrown.- Parameters:
endpointName- Specifies the endpoint name to use for a one-click Autopilot model deployment if the endpoint name is not generated automatically.Specify the
EndpointNameif and only if you setAutoGenerateEndpointNametoFalse; otherwise a 400 error is thrown.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-