Class: Aws::SageMaker::Types::ModelBiasAppSpecification
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ModelBiasAppSpecification
- 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
-
#config_uri ⇒ String
JSON formatted S3 file that defines bias parameters.
-
#environment ⇒ Hash<String,String>
Sets the environment variables in the Docker container.
-
#image_uri ⇒ String
The container image to be run by the model bias job.
Instance Attribute Details
#config_uri ⇒ String
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
32053 32054 32055 32056 32057 32058 32059 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 32053 class ModelBiasAppSpecification < Struct.new( :image_uri, :config_uri, :environment) SENSITIVE = [] include Aws::Structure end |
#environment ⇒ Hash<String,String>
Sets the environment variables in the Docker container.
32053 32054 32055 32056 32057 32058 32059 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 32053 class ModelBiasAppSpecification < Struct.new( :image_uri, :config_uri, :environment) SENSITIVE = [] include Aws::Structure end |
#image_uri ⇒ String
The container image to be run by the model bias job.
32053 32054 32055 32056 32057 32058 32059 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 32053 class ModelBiasAppSpecification < Struct.new( :image_uri, :config_uri, :environment) SENSITIVE = [] include Aws::Structure end |