Class: Aws::Bedrock::Types::CustomModelDeploymentUpdateDetails

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb

Overview

Details about an update to a custom model deployment, including the new custom model resource ARN and current update status.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#model_arnString

ARN of the new custom model being deployed as part of the update.

Returns:

  • (String)


3863
3864
3865
3866
3867
3868
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 3863

class CustomModelDeploymentUpdateDetails < Struct.new(
  :model_arn,
  :update_status)
  SENSITIVE = []
  include Aws::Structure
end

#update_statusString

Current status of the deployment update.

Returns:

  • (String)


3863
3864
3865
3866
3867
3868
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 3863

class CustomModelDeploymentUpdateDetails < Struct.new(
  :model_arn,
  :update_status)
  SENSITIVE = []
  include Aws::Structure
end