Struct aws_sdk_sagemaker::model::image_config::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for ImageConfig
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn repository_access_mode(self, input: RepositoryAccessMode) -> Self
pub fn repository_access_mode(self, input: RepositoryAccessMode) -> Self
Set this to one of the following values:
-
Platform
- The model image is hosted in Amazon ECR. -
Vpc
- The model image is hosted in a private Docker registry in your VPC.
sourcepub fn set_repository_access_mode(
self,
input: Option<RepositoryAccessMode>
) -> Self
pub fn set_repository_access_mode(
self,
input: Option<RepositoryAccessMode>
) -> Self
Set this to one of the following values:
-
Platform
- The model image is hosted in Amazon ECR. -
Vpc
- The model image is hosted in a private Docker registry in your VPC.
sourcepub fn repository_auth_config(self, input: RepositoryAuthConfig) -> Self
pub fn repository_auth_config(self, input: RepositoryAuthConfig) -> Self
(Optional) Specifies an authentication configuration for the private docker registry where your model image is hosted. Specify a value for this property only if you specified Vpc
as the value for the RepositoryAccessMode
field, and the private Docker registry where the model image is hosted requires authentication.
sourcepub fn set_repository_auth_config(
self,
input: Option<RepositoryAuthConfig>
) -> Self
pub fn set_repository_auth_config(
self,
input: Option<RepositoryAuthConfig>
) -> Self
(Optional) Specifies an authentication configuration for the private docker registry where your model image is hosted. Specify a value for this property only if you specified Vpc
as the value for the RepositoryAccessMode
field, and the private Docker registry where the model image is hosted requires authentication.
sourcepub fn build(self) -> ImageConfig
pub fn build(self) -> ImageConfig
Consumes the builder and constructs a ImageConfig
.