Class: Aws::SageMaker::Types::ModelBiasAppSpecification

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-sagemaker/types.rb

Overview

Docker container image configuration object for the model bias job.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#config_uriString

JSON formatted S3 file that defines bias parameters. For more information on this JSON configuration file, see [Configure bias parameters].

[1]: docs.aws.amazon.com/sagemaker/latest/dg/clarify-config-json-monitor-bias-parameters.html

Returns:

  • (String)


30452
30453
30454
30455
30456
30457
30458
# File 'lib/aws-sdk-sagemaker/types.rb', line 30452

class ModelBiasAppSpecification < Struct.new(
  :image_uri,
  :config_uri,
  :environment)
  SENSITIVE = []
  include Aws::Structure
end

#environmentHash<String,String>

Sets the environment variables in the Docker container.

Returns:

  • (Hash<String,String>)


30452
30453
30454
30455
30456
30457
30458
# File 'lib/aws-sdk-sagemaker/types.rb', line 30452

class ModelBiasAppSpecification < Struct.new(
  :image_uri,
  :config_uri,
  :environment)
  SENSITIVE = []
  include Aws::Structure
end

#image_uriString

The container image to be run by the model bias job.

Returns:

  • (String)


30452
30453
30454
30455
30456
30457
30458
# File 'lib/aws-sdk-sagemaker/types.rb', line 30452

class ModelBiasAppSpecification < Struct.new(
  :image_uri,
  :config_uri,
  :environment)
  SENSITIVE = []
  include Aws::Structure
end