Struct aws_sdk_sagemaker::types::builders::ImageConfigBuilder
source · #[non_exhaustive]pub struct ImageConfigBuilder { /* private fields */ }
Expand description
A builder for ImageConfig
.
Implementations§
source§impl ImageConfigBuilder
impl ImageConfigBuilder
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 get_repository_access_mode(&self) -> &Option<RepositoryAccessMode>
pub fn get_repository_access_mode(&self) -> &Option<RepositoryAccessMode>
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 get_repository_auth_config(&self) -> &Option<RepositoryAuthConfig>
pub fn get_repository_auth_config(&self) -> &Option<RepositoryAuthConfig>
(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
.
Trait Implementations§
source§impl Clone for ImageConfigBuilder
impl Clone for ImageConfigBuilder
source§fn clone(&self) -> ImageConfigBuilder
fn clone(&self) -> ImageConfigBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ImageConfigBuilder
impl Debug for ImageConfigBuilder
source§impl Default for ImageConfigBuilder
impl Default for ImageConfigBuilder
source§fn default() -> ImageConfigBuilder
fn default() -> ImageConfigBuilder
source§impl PartialEq<ImageConfigBuilder> for ImageConfigBuilder
impl PartialEq<ImageConfigBuilder> for ImageConfigBuilder
source§fn eq(&self, other: &ImageConfigBuilder) -> bool
fn eq(&self, other: &ImageConfigBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.