Class: Aws::SageMaker::Types::ModelBiasAppSpecification
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ModelBiasAppSpecification
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
Note:
When making an API call, you may pass ModelBiasAppSpecification data as a hash:
{
image_uri: "ImageUri", # required
config_uri: "S3Uri", # required
environment: {
"ProcessingEnvironmentKey" => "ProcessingEnvironmentValue",
},
}
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.
24375 24376 24377 24378 24379 24380 24381 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 24375 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.
24375 24376 24377 24378 24379 24380 24381 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 24375 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.
24375 24376 24377 24378 24379 24380 24381 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 24375 class ModelBiasAppSpecification < Struct.new( :image_uri, :config_uri, :environment) SENSITIVE = [] include Aws::Structure end |