Class: Aws::SageMaker::Types::ModelExplainabilityAppSpecification
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ModelExplainabilityAppSpecification
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
Note:
When making an API call, you may pass ModelExplainabilityAppSpecification data as a hash:
{
image_uri: "ImageUri", # required
config_uri: "S3Uri", # required
environment: {
"ProcessingEnvironmentKey" => "ProcessingEnvironmentValue",
},
}
Docker container image configuration object for the model explainability job.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#config_uri ⇒ String
JSON formatted S3 file that defines explainability 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 explainability job.
Instance Attribute Details
#config_uri ⇒ String
JSON formatted S3 file that defines explainability parameters. For more information on this JSON configuration file, see Configure model explainability parameters.
28246 28247 28248 28249 28250 28251 28252 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 28246 class ModelExplainabilityAppSpecification < Struct.new( :image_uri, :config_uri, :environment) SENSITIVE = [] include Aws::Structure end |
#environment ⇒ Hash<String,String>
Sets the environment variables in the Docker container.
28246 28247 28248 28249 28250 28251 28252 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 28246 class ModelExplainabilityAppSpecification < Struct.new( :image_uri, :config_uri, :environment) SENSITIVE = [] include Aws::Structure end |
#image_uri ⇒ String
The container image to be run by the model explainability job.
28246 28247 28248 28249 28250 28251 28252 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 28246 class ModelExplainabilityAppSpecification < Struct.new( :image_uri, :config_uri, :environment) SENSITIVE = [] include Aws::Structure end |