pub struct Builder { /* private fields */ }
Expand description
A builder for TargetContainerRepository
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn service(self, input: ContainerRepositoryService) -> Self
pub fn service(self, input: ContainerRepositoryService) -> Self
Specifies the service in which this image was registered.
sourcepub fn set_service(self, input: Option<ContainerRepositoryService>) -> Self
pub fn set_service(self, input: Option<ContainerRepositoryService>) -> Self
Specifies the service in which this image was registered.
sourcepub fn repository_name(self, input: impl Into<String>) -> Self
pub fn repository_name(self, input: impl Into<String>) -> Self
The name of the container repository where the output container image is stored. This name is prefixed by the repository location.
sourcepub fn set_repository_name(self, input: Option<String>) -> Self
pub fn set_repository_name(self, input: Option<String>) -> Self
The name of the container repository where the output container image is stored. This name is prefixed by the repository location.
sourcepub fn build(self) -> TargetContainerRepository
pub fn build(self) -> TargetContainerRepository
Consumes the builder and constructs a TargetContainerRepository
.