pub struct Builder { /* private fields */ }
Expand description
A builder for ModelBiasAppSpecification
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn image_uri(self, input: impl Into<String>) -> Self
pub fn image_uri(self, input: impl Into<String>) -> Self
The container image to be run by the model bias job.
sourcepub fn set_image_uri(self, input: Option<String>) -> Self
pub fn set_image_uri(self, input: Option<String>) -> Self
The container image to be run by the model bias job.
sourcepub fn config_uri(self, input: impl Into<String>) -> Self
pub fn config_uri(self, input: impl Into<String>) -> Self
JSON formatted S3 file that defines bias parameters. For more information on this JSON configuration file, see Configure bias parameters.
sourcepub fn set_config_uri(self, input: Option<String>) -> Self
pub fn set_config_uri(self, input: Option<String>) -> Self
JSON formatted S3 file that defines bias parameters. For more information on this JSON configuration file, see Configure bias parameters.
sourcepub fn environment(self, k: impl Into<String>, v: impl Into<String>) -> Self
pub fn environment(self, k: impl Into<String>, v: impl Into<String>) -> Self
Adds a key-value pair to environment
.
To override the contents of this collection use set_environment
.
Sets the environment variables in the Docker container.
sourcepub fn set_environment(self, input: Option<HashMap<String, String>>) -> Self
pub fn set_environment(self, input: Option<HashMap<String, String>>) -> Self
Sets the environment variables in the Docker container.
sourcepub fn build(self) -> ModelBiasAppSpecification
pub fn build(self) -> ModelBiasAppSpecification
Consumes the builder and constructs a ModelBiasAppSpecification
.