pub struct Builder { /* private fields */ }
Expand description
A builder for TargetContainerRepository
.
Implementations
sourceimpl 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
.
Trait Implementations
impl StructuralPartialEq for Builder
Auto Trait Implementations
impl RefUnwindSafe for Builder
impl Send for Builder
impl Sync for Builder
impl Unpin for Builder
impl UnwindSafe for Builder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more