Interface CreateEndpointRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<CreateEndpointRequest.Builder,CreateEndpointRequest>
,SageMakerRequest.Builder
,SdkBuilder<CreateEndpointRequest.Builder,CreateEndpointRequest>
,SdkPojo
,SdkRequest.Builder
- Enclosing class:
- CreateEndpointRequest
public static interface CreateEndpointRequest.Builder extends SageMakerRequest.Builder, SdkPojo, CopyableBuilder<CreateEndpointRequest.Builder,CreateEndpointRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default CreateEndpointRequest.Builder
deploymentConfig(Consumer<DeploymentConfig.Builder> deploymentConfig)
Sets the value of the DeploymentConfig property for this object.CreateEndpointRequest.Builder
deploymentConfig(DeploymentConfig deploymentConfig)
Sets the value of the DeploymentConfig property for this object.CreateEndpointRequest.Builder
endpointConfigName(String endpointConfigName)
The name of an endpoint configuration.CreateEndpointRequest.Builder
endpointName(String endpointName)
The name of the endpoint.The name must be unique within an Amazon Web Services Region in your Amazon Web Services account.CreateEndpointRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
CreateEndpointRequest.Builder
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
CreateEndpointRequest.Builder
tags(Collection<Tag> tags)
An array of key-value pairs.CreateEndpointRequest.Builder
tags(Consumer<Tag.Builder>... tags)
An array of key-value pairs.CreateEndpointRequest.Builder
tags(Tag... tags)
An array of key-value pairs.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.sagemaker.model.SageMakerRequest.Builder
build
-
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
-
endpointName
CreateEndpointRequest.Builder endpointName(String endpointName)
The name of the endpoint.The name must be unique within an Amazon Web Services Region in your Amazon Web Services account. The name is case-insensitive in
CreateEndpoint
, but the case is preserved and must be matched in InvokeEndpoint.- Parameters:
endpointName
- The name of the endpoint.The name must be unique within an Amazon Web Services Region in your Amazon Web Services account. The name is case-insensitive inCreateEndpoint
, but the case is preserved and must be matched in InvokeEndpoint.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endpointConfigName
CreateEndpointRequest.Builder endpointConfigName(String endpointConfigName)
The name of an endpoint configuration. For more information, see CreateEndpointConfig.
- Parameters:
endpointConfigName
- The name of an endpoint configuration. For more information, see CreateEndpointConfig.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
deploymentConfig
CreateEndpointRequest.Builder deploymentConfig(DeploymentConfig deploymentConfig)
Sets the value of the DeploymentConfig property for this object.- Parameters:
deploymentConfig
- The new value for the DeploymentConfig property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
deploymentConfig
default CreateEndpointRequest.Builder deploymentConfig(Consumer<DeploymentConfig.Builder> deploymentConfig)
Sets the value of the DeploymentConfig property for this object. This is a convenience method that creates an instance of theDeploymentConfig.Builder
avoiding the need to create one manually viaDeploymentConfig.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed todeploymentConfig(DeploymentConfig)
.- Parameters:
deploymentConfig
- a consumer that will call methods onDeploymentConfig.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
deploymentConfig(DeploymentConfig)
-
tags
CreateEndpointRequest.Builder tags(Collection<Tag> tags)
An array of key-value pairs. You can use tags to categorize your Amazon Web Services resources in different ways, for example, by purpose, owner, or environment. For more information, see Tagging Amazon Web Services Resources.
- Parameters:
tags
- An array of key-value pairs. You can use tags to categorize your Amazon Web Services resources in different ways, for example, by purpose, owner, or environment. For more information, see Tagging Amazon Web Services Resources.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CreateEndpointRequest.Builder tags(Tag... tags)
An array of key-value pairs. You can use tags to categorize your Amazon Web Services resources in different ways, for example, by purpose, owner, or environment. For more information, see Tagging Amazon Web Services Resources.
- Parameters:
tags
- An array of key-value pairs. You can use tags to categorize your Amazon Web Services resources in different ways, for example, by purpose, owner, or environment. For more information, see Tagging Amazon Web Services Resources.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CreateEndpointRequest.Builder tags(Consumer<Tag.Builder>... tags)
An array of key-value pairs. You can use tags to categorize your Amazon Web Services resources in different ways, for example, by purpose, owner, or environment. For more information, see Tagging Amazon Web Services Resources.
This is a convenience method that creates an instance of theTag.Builder
avoiding the need to create one manually viaTag.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#tags(List
.) - Parameters:
tags
- a consumer that will call methods onTag.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#tags(java.util.Collection
)
-
overrideConfiguration
CreateEndpointRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
CreateEndpointRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-