public static interface DescribeModelResponse.Builder extends SageMakerResponse.Builder, SdkPojo, CopyableBuilder<DescribeModelResponse.Builder,DescribeModelResponse>
Modifier and Type | Method and Description |
---|---|
DescribeModelResponse.Builder |
containers(Collection<ContainerDefinition> containers)
The containers in the inference pipeline.
|
DescribeModelResponse.Builder |
containers(Consumer<ContainerDefinition.Builder>... containers)
The containers in the inference pipeline.
|
DescribeModelResponse.Builder |
containers(ContainerDefinition... containers)
The containers in the inference pipeline.
|
DescribeModelResponse.Builder |
creationTime(Instant creationTime)
A timestamp that shows when the model was created.
|
DescribeModelResponse.Builder |
enableNetworkIsolation(Boolean enableNetworkIsolation)
If
True , no inbound or outbound network calls can be made to or from the model container. |
DescribeModelResponse.Builder |
executionRoleArn(String executionRoleArn)
The Amazon Resource Name (ARN) of the IAM role that you specified for the model.
|
DescribeModelResponse.Builder |
modelArn(String modelArn)
The Amazon Resource Name (ARN) of the model.
|
DescribeModelResponse.Builder |
modelName(String modelName)
Name of the Amazon SageMaker model.
|
default DescribeModelResponse.Builder |
primaryContainer(Consumer<ContainerDefinition.Builder> primaryContainer)
The location of the primary inference code, associated artifacts, and custom environment map that the
inference code uses when it is deployed in production.
|
DescribeModelResponse.Builder |
primaryContainer(ContainerDefinition primaryContainer)
The location of the primary inference code, associated artifacts, and custom environment map that the
inference code uses when it is deployed in production.
|
default DescribeModelResponse.Builder |
vpcConfig(Consumer<VpcConfig.Builder> vpcConfig)
A VpcConfig object that specifies the VPC that this model has access to.
|
DescribeModelResponse.Builder |
vpcConfig(VpcConfig vpcConfig)
A VpcConfig object that specifies the VPC that this model has access to.
|
build, responseMetadata, responseMetadata
sdkHttpResponse, sdkHttpResponse
copy
applyMutation, build
DescribeModelResponse.Builder modelName(String modelName)
Name of the Amazon SageMaker model.
modelName
- Name of the Amazon SageMaker model.DescribeModelResponse.Builder primaryContainer(ContainerDefinition primaryContainer)
The location of the primary inference code, associated artifacts, and custom environment map that the inference code uses when it is deployed in production.
primaryContainer
- The location of the primary inference code, associated artifacts, and custom environment map that the
inference code uses when it is deployed in production.default DescribeModelResponse.Builder primaryContainer(Consumer<ContainerDefinition.Builder> primaryContainer)
The location of the primary inference code, associated artifacts, and custom environment map that the inference code uses when it is deployed in production.
This is a convenience that creates an instance of theContainerDefinition.Builder
avoiding the need
to create one manually via ContainerDefinition.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and
its result is passed to primaryContainer(ContainerDefinition)
.primaryContainer
- a consumer that will call methods on ContainerDefinition.Builder
primaryContainer(ContainerDefinition)
DescribeModelResponse.Builder containers(Collection<ContainerDefinition> containers)
The containers in the inference pipeline.
containers
- The containers in the inference pipeline.DescribeModelResponse.Builder containers(ContainerDefinition... containers)
The containers in the inference pipeline.
containers
- The containers in the inference pipeline.DescribeModelResponse.Builder containers(Consumer<ContainerDefinition.Builder>... containers)
The containers in the inference pipeline.
This is a convenience that creates an instance of theList.Builder
avoiding the
need to create one manually via List#builder()
.
When the Consumer
completes, List.Builder#build()
is called immediately
and its result is passed to #containers(List)
.containers
- a consumer that will call methods on List.Builder
#containers(List)
DescribeModelResponse.Builder executionRoleArn(String executionRoleArn)
The Amazon Resource Name (ARN) of the IAM role that you specified for the model.
executionRoleArn
- The Amazon Resource Name (ARN) of the IAM role that you specified for the model.DescribeModelResponse.Builder vpcConfig(VpcConfig vpcConfig)
A VpcConfig object that specifies the VPC that this model has access to. For more information, see Protect Endpoints by Using an Amazon Virtual Private Cloud
vpcConfig
- A VpcConfig object that specifies the VPC that this model has access to. For more information,
see Protect Endpoints by Using
an Amazon Virtual Private Clouddefault DescribeModelResponse.Builder vpcConfig(Consumer<VpcConfig.Builder> vpcConfig)
A VpcConfig object that specifies the VPC that this model has access to. For more information, see Protect Endpoints by Using an Amazon Virtual Private Cloud
This is a convenience that creates an instance of theVpcConfig.Builder
avoiding the need to create
one manually via VpcConfig.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its result
is passed to vpcConfig(VpcConfig)
.vpcConfig
- a consumer that will call methods on VpcConfig.Builder
vpcConfig(VpcConfig)
DescribeModelResponse.Builder creationTime(Instant creationTime)
A timestamp that shows when the model was created.
creationTime
- A timestamp that shows when the model was created.DescribeModelResponse.Builder modelArn(String modelArn)
The Amazon Resource Name (ARN) of the model.
modelArn
- The Amazon Resource Name (ARN) of the model.DescribeModelResponse.Builder enableNetworkIsolation(Boolean enableNetworkIsolation)
If True
, no inbound or outbound network calls can be made to or from the model container.
The Semantic Segmentation built-in algorithm does not support network isolation.
enableNetworkIsolation
- If True
, no inbound or outbound network calls can be made to or from the model
container. The Semantic Segmentation built-in algorithm does not support network isolation.
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.