Struct aws_sdk_imagebuilder::types::builders::ContainerBuilder
source · #[non_exhaustive]pub struct ContainerBuilder { /* private fields */ }
Expand description
A builder for Container
.
Implementations§
source§impl ContainerBuilder
impl ContainerBuilder
sourcepub fn region(self, input: impl Into<String>) -> Self
pub fn region(self, input: impl Into<String>) -> Self
Containers and container images are Region-specific. This is the Region context for the container.
sourcepub fn set_region(self, input: Option<String>) -> Self
pub fn set_region(self, input: Option<String>) -> Self
Containers and container images are Region-specific. This is the Region context for the container.
sourcepub fn get_region(&self) -> &Option<String>
pub fn get_region(&self) -> &Option<String>
Containers and container images are Region-specific. This is the Region context for the container.
sourcepub fn image_uris(self, input: impl Into<String>) -> Self
pub fn image_uris(self, input: impl Into<String>) -> Self
Appends an item to image_uris
.
To override the contents of this collection use set_image_uris
.
A list of URIs for containers created in the context Region.
sourcepub fn set_image_uris(self, input: Option<Vec<String>>) -> Self
pub fn set_image_uris(self, input: Option<Vec<String>>) -> Self
A list of URIs for containers created in the context Region.
sourcepub fn get_image_uris(&self) -> &Option<Vec<String>>
pub fn get_image_uris(&self) -> &Option<Vec<String>>
A list of URIs for containers created in the context Region.
Trait Implementations§
source§impl Clone for ContainerBuilder
impl Clone for ContainerBuilder
source§fn clone(&self) -> ContainerBuilder
fn clone(&self) -> ContainerBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ContainerBuilder
impl Debug for ContainerBuilder
source§impl Default for ContainerBuilder
impl Default for ContainerBuilder
source§fn default() -> ContainerBuilder
fn default() -> ContainerBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for ContainerBuilder
impl PartialEq for ContainerBuilder
source§fn eq(&self, other: &ContainerBuilder) -> bool
fn eq(&self, other: &ContainerBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ContainerBuilder
Auto Trait Implementations§
impl Freeze for ContainerBuilder
impl RefUnwindSafe for ContainerBuilder
impl Send for ContainerBuilder
impl Sync for ContainerBuilder
impl Unpin for ContainerBuilder
impl UnwindSafe for ContainerBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.