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)


3887
3888
3889
3890
3891
3892
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 3887

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

#update_statusString

Current status of the deployment update.

Returns:

  • (String)


3887
3888
3889
3890
3891
3892
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 3887

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