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.Builder
autoGenerateEndpointName(Boolean autoGenerateEndpointName)
Set toTrue
to automatically generate an endpoint name for a one-click Autopilot model deployment; set toFalse
otherwise.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.-
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, sdkFields
-
-
-
-
Method Detail
-
autoGenerateEndpointName
ModelDeployConfig.Builder autoGenerateEndpointName(Boolean autoGenerateEndpointName)
Set to
True
to automatically generate an endpoint name for a one-click Autopilot model deployment; set toFalse
otherwise. The default value isFalse
.If you set
AutoGenerateEndpointName
toTrue
, do not specify theEndpointName
; otherwise a 400 error is thrown.- Parameters:
autoGenerateEndpointName
- Set toTrue
to automatically generate an endpoint name for a one-click Autopilot model deployment; set toFalse
otherwise. The default value isFalse
.If you set
AutoGenerateEndpointName
toTrue
, 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
EndpointName
if and only if you setAutoGenerateEndpointName
toFalse
; 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
EndpointName
if and only if you setAutoGenerateEndpointName
toFalse
; otherwise a 400 error is thrown.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-