Interface UpdateModelCardRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<UpdateModelCardRequest.Builder,UpdateModelCardRequest>
,SageMakerRequest.Builder
,SdkBuilder<UpdateModelCardRequest.Builder,UpdateModelCardRequest>
,SdkPojo
,SdkRequest.Builder
- Enclosing class:
- UpdateModelCardRequest
public static interface UpdateModelCardRequest.Builder extends SageMakerRequest.Builder, SdkPojo, CopyableBuilder<UpdateModelCardRequest.Builder,UpdateModelCardRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UpdateModelCardRequest.Builder
content(String content)
The updated model card content.UpdateModelCardRequest.Builder
modelCardName(String modelCardName)
The name or Amazon Resource Name (ARN) of the model card to update.UpdateModelCardRequest.Builder
modelCardStatus(String modelCardStatus)
The approval status of the model card within your organization.UpdateModelCardRequest.Builder
modelCardStatus(ModelCardStatus modelCardStatus)
The approval status of the model card within your organization.UpdateModelCardRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
UpdateModelCardRequest.Builder
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
-
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
-
modelCardName
UpdateModelCardRequest.Builder modelCardName(String modelCardName)
The name or Amazon Resource Name (ARN) of the model card to update.
- Parameters:
modelCardName
- The name or Amazon Resource Name (ARN) of the model card to update.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
content
UpdateModelCardRequest.Builder content(String content)
The updated model card content. Content must be in model card JSON schema and provided as a string.
When updating model card content, be sure to include the full content and not just updated content.
- Parameters:
content
- The updated model card content. Content must be in model card JSON schema and provided as a string.When updating model card content, be sure to include the full content and not just updated content.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
modelCardStatus
UpdateModelCardRequest.Builder modelCardStatus(String modelCardStatus)
The approval status of the model card within your organization. Different organizations might have different criteria for model card review and approval.
-
Draft
: The model card is a work in progress. -
PendingReview
: The model card is pending review. -
Approved
: The model card is approved. -
Archived
: The model card is archived. No more updates should be made to the model card, but it can still be exported.
- Parameters:
modelCardStatus
- The approval status of the model card within your organization. Different organizations might have different criteria for model card review and approval.-
Draft
: The model card is a work in progress. -
PendingReview
: The model card is pending review. -
Approved
: The model card is approved. -
Archived
: The model card is archived. No more updates should be made to the model card, but it can still be exported.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ModelCardStatus
,ModelCardStatus
-
-
modelCardStatus
UpdateModelCardRequest.Builder modelCardStatus(ModelCardStatus modelCardStatus)
The approval status of the model card within your organization. Different organizations might have different criteria for model card review and approval.
-
Draft
: The model card is a work in progress. -
PendingReview
: The model card is pending review. -
Approved
: The model card is approved. -
Archived
: The model card is archived. No more updates should be made to the model card, but it can still be exported.
- Parameters:
modelCardStatus
- The approval status of the model card within your organization. Different organizations might have different criteria for model card review and approval.-
Draft
: The model card is a work in progress. -
PendingReview
: The model card is pending review. -
Approved
: The model card is approved. -
Archived
: The model card is archived. No more updates should be made to the model card, but it can still be exported.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ModelCardStatus
,ModelCardStatus
-
-
overrideConfiguration
UpdateModelCardRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateModelCardRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-