Interface DescribeEndpointConfigResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DescribeEndpointConfigResponse.Builder,DescribeEndpointConfigResponse>,SageMakerResponse.Builder,SdkBuilder<DescribeEndpointConfigResponse.Builder,DescribeEndpointConfigResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DescribeEndpointConfigResponse
public static interface DescribeEndpointConfigResponse.Builder extends SageMakerResponse.Builder, SdkPojo, CopyableBuilder<DescribeEndpointConfigResponse.Builder,DescribeEndpointConfigResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default DescribeEndpointConfigResponse.BuilderasyncInferenceConfig(Consumer<AsyncInferenceConfig.Builder> asyncInferenceConfig)Returns the description of an endpoint configuration created using theCreateEndpointConfigAPI.DescribeEndpointConfigResponse.BuilderasyncInferenceConfig(AsyncInferenceConfig asyncInferenceConfig)Returns the description of an endpoint configuration created using theCreateEndpointConfigAPI.DescribeEndpointConfigResponse.BuildercreationTime(Instant creationTime)A timestamp that shows when the endpoint configuration was created.default DescribeEndpointConfigResponse.BuilderdataCaptureConfig(Consumer<DataCaptureConfig.Builder> dataCaptureConfig)Sets the value of the DataCaptureConfig property for this object.DescribeEndpointConfigResponse.BuilderdataCaptureConfig(DataCaptureConfig dataCaptureConfig)Sets the value of the DataCaptureConfig property for this object.DescribeEndpointConfigResponse.BuilderendpointConfigArn(String endpointConfigArn)The Amazon Resource Name (ARN) of the endpoint configuration.DescribeEndpointConfigResponse.BuilderendpointConfigName(String endpointConfigName)Name of the SageMaker endpoint configuration.default DescribeEndpointConfigResponse.BuilderexplainerConfig(Consumer<ExplainerConfig.Builder> explainerConfig)The configuration parameters for an explainer.DescribeEndpointConfigResponse.BuilderexplainerConfig(ExplainerConfig explainerConfig)The configuration parameters for an explainer.DescribeEndpointConfigResponse.BuilderkmsKeyId(String kmsKeyId)Amazon Web Services KMS key ID Amazon SageMaker uses to encrypt data when storing it on the ML storage volume attached to the instance.DescribeEndpointConfigResponse.BuilderproductionVariants(Collection<ProductionVariant> productionVariants)An array ofProductionVariantobjects, one for each model that you want to host at this endpoint.DescribeEndpointConfigResponse.BuilderproductionVariants(Consumer<ProductionVariant.Builder>... productionVariants)An array ofProductionVariantobjects, one for each model that you want to host at this endpoint.DescribeEndpointConfigResponse.BuilderproductionVariants(ProductionVariant... productionVariants)An array ofProductionVariantobjects, one for each model that you want to host at this endpoint.DescribeEndpointConfigResponse.BuildershadowProductionVariants(Collection<ProductionVariant> shadowProductionVariants)An array ofProductionVariantobjects, one for each model that you want to host at this endpoint in shadow mode with production traffic replicated from the model specified onProductionVariants.DescribeEndpointConfigResponse.BuildershadowProductionVariants(Consumer<ProductionVariant.Builder>... shadowProductionVariants)An array ofProductionVariantobjects, one for each model that you want to host at this endpoint in shadow mode with production traffic replicated from the model specified onProductionVariants.DescribeEndpointConfigResponse.BuildershadowProductionVariants(ProductionVariant... shadowProductionVariants)An array ofProductionVariantobjects, one for each model that you want to host at this endpoint in shadow mode with production traffic replicated from the model specified onProductionVariants.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.sagemaker.model.SageMakerResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
endpointConfigName
DescribeEndpointConfigResponse.Builder endpointConfigName(String endpointConfigName)
Name of the SageMaker endpoint configuration.
- Parameters:
endpointConfigName- Name of the SageMaker endpoint configuration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endpointConfigArn
DescribeEndpointConfigResponse.Builder endpointConfigArn(String endpointConfigArn)
The Amazon Resource Name (ARN) of the endpoint configuration.
- Parameters:
endpointConfigArn- The Amazon Resource Name (ARN) of the endpoint configuration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
productionVariants
DescribeEndpointConfigResponse.Builder productionVariants(Collection<ProductionVariant> productionVariants)
An array of
ProductionVariantobjects, one for each model that you want to host at this endpoint.- Parameters:
productionVariants- An array ofProductionVariantobjects, one for each model that you want to host at this endpoint.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
productionVariants
DescribeEndpointConfigResponse.Builder productionVariants(ProductionVariant... productionVariants)
An array of
ProductionVariantobjects, one for each model that you want to host at this endpoint.- Parameters:
productionVariants- An array ofProductionVariantobjects, one for each model that you want to host at this endpoint.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
productionVariants
DescribeEndpointConfigResponse.Builder productionVariants(Consumer<ProductionVariant.Builder>... productionVariants)
An array of
This is a convenience method that creates an instance of theProductionVariantobjects, one for each model that you want to host at this endpoint.ProductionVariant.Builderavoiding the need to create one manually viaProductionVariant.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#productionVariants(List.) - Parameters:
productionVariants- a consumer that will call methods onProductionVariant.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#productionVariants(java.util.Collection)
-
dataCaptureConfig
DescribeEndpointConfigResponse.Builder dataCaptureConfig(DataCaptureConfig dataCaptureConfig)
Sets the value of the DataCaptureConfig property for this object.- Parameters:
dataCaptureConfig- The new value for the DataCaptureConfig property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dataCaptureConfig
default DescribeEndpointConfigResponse.Builder dataCaptureConfig(Consumer<DataCaptureConfig.Builder> dataCaptureConfig)
Sets the value of the DataCaptureConfig property for this object. This is a convenience method that creates an instance of theDataCaptureConfig.Builderavoiding the need to create one manually viaDataCaptureConfig.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed todataCaptureConfig(DataCaptureConfig).- Parameters:
dataCaptureConfig- a consumer that will call methods onDataCaptureConfig.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
dataCaptureConfig(DataCaptureConfig)
-
kmsKeyId
DescribeEndpointConfigResponse.Builder kmsKeyId(String kmsKeyId)
Amazon Web Services KMS key ID Amazon SageMaker uses to encrypt data when storing it on the ML storage volume attached to the instance.
- Parameters:
kmsKeyId- Amazon Web Services KMS key ID Amazon SageMaker uses to encrypt data when storing it on the ML storage volume attached to the instance.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
creationTime
DescribeEndpointConfigResponse.Builder creationTime(Instant creationTime)
A timestamp that shows when the endpoint configuration was created.
- Parameters:
creationTime- A timestamp that shows when the endpoint configuration was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
asyncInferenceConfig
DescribeEndpointConfigResponse.Builder asyncInferenceConfig(AsyncInferenceConfig asyncInferenceConfig)
Returns the description of an endpoint configuration created using the
CreateEndpointConfigAPI.- Parameters:
asyncInferenceConfig- Returns the description of an endpoint configuration created using theCreateEndpointConfigAPI.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
asyncInferenceConfig
default DescribeEndpointConfigResponse.Builder asyncInferenceConfig(Consumer<AsyncInferenceConfig.Builder> asyncInferenceConfig)
Returns the description of an endpoint configuration created using the
This is a convenience method that creates an instance of theCreateEndpointConfigAPI.AsyncInferenceConfig.Builderavoiding the need to create one manually viaAsyncInferenceConfig.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toasyncInferenceConfig(AsyncInferenceConfig).- Parameters:
asyncInferenceConfig- a consumer that will call methods onAsyncInferenceConfig.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
asyncInferenceConfig(AsyncInferenceConfig)
-
explainerConfig
DescribeEndpointConfigResponse.Builder explainerConfig(ExplainerConfig explainerConfig)
The configuration parameters for an explainer.
- Parameters:
explainerConfig- The configuration parameters for an explainer.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
explainerConfig
default DescribeEndpointConfigResponse.Builder explainerConfig(Consumer<ExplainerConfig.Builder> explainerConfig)
The configuration parameters for an explainer.
This is a convenience method that creates an instance of theExplainerConfig.Builderavoiding the need to create one manually viaExplainerConfig.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toexplainerConfig(ExplainerConfig).- Parameters:
explainerConfig- a consumer that will call methods onExplainerConfig.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
explainerConfig(ExplainerConfig)
-
shadowProductionVariants
DescribeEndpointConfigResponse.Builder shadowProductionVariants(Collection<ProductionVariant> shadowProductionVariants)
An array of
ProductionVariantobjects, one for each model that you want to host at this endpoint in shadow mode with production traffic replicated from the model specified onProductionVariants.- Parameters:
shadowProductionVariants- An array ofProductionVariantobjects, one for each model that you want to host at this endpoint in shadow mode with production traffic replicated from the model specified onProductionVariants.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
shadowProductionVariants
DescribeEndpointConfigResponse.Builder shadowProductionVariants(ProductionVariant... shadowProductionVariants)
An array of
ProductionVariantobjects, one for each model that you want to host at this endpoint in shadow mode with production traffic replicated from the model specified onProductionVariants.- Parameters:
shadowProductionVariants- An array ofProductionVariantobjects, one for each model that you want to host at this endpoint in shadow mode with production traffic replicated from the model specified onProductionVariants.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
shadowProductionVariants
DescribeEndpointConfigResponse.Builder shadowProductionVariants(Consumer<ProductionVariant.Builder>... shadowProductionVariants)
An array of
This is a convenience method that creates an instance of theProductionVariantobjects, one for each model that you want to host at this endpoint in shadow mode with production traffic replicated from the model specified onProductionVariants.ProductionVariant.Builderavoiding the need to create one manually viaProductionVariant.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#shadowProductionVariants(List.) - Parameters:
shadowProductionVariants- a consumer that will call methods onProductionVariant.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#shadowProductionVariants(java.util.Collection)
-
-