#[non_exhaustive]pub struct EcrConfigurationBuilder { /* private fields */ }
Expand description
A builder for EcrConfiguration
.
Implementations§
source§impl EcrConfigurationBuilder
impl EcrConfigurationBuilder
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 that Amazon Inspector scans to identify findings for your container images. The name includes the path for the repository location. If you don’t provide this information, Image Builder creates a repository in your account named image-builder-image-scanning-repository
for vulnerability scans of your output container images.
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 that Amazon Inspector scans to identify findings for your container images. The name includes the path for the repository location. If you don’t provide this information, Image Builder creates a repository in your account named image-builder-image-scanning-repository
for vulnerability scans of your output container images.
sourcepub fn get_repository_name(&self) -> &Option<String>
pub fn get_repository_name(&self) -> &Option<String>
The name of the container repository that Amazon Inspector scans to identify findings for your container images. The name includes the path for the repository location. If you don’t provide this information, Image Builder creates a repository in your account named image-builder-image-scanning-repository
for vulnerability scans of your output container images.
Appends an item to container_tags
.
To override the contents of this collection use set_container_tags
.
Tags for Image Builder to apply to the output container image that &INS; scans. Tags can help you identify and manage your scanned images.
Tags for Image Builder to apply to the output container image that &INS; scans. Tags can help you identify and manage your scanned images.
Tags for Image Builder to apply to the output container image that &INS; scans. Tags can help you identify and manage your scanned images.
sourcepub fn build(self) -> EcrConfiguration
pub fn build(self) -> EcrConfiguration
Consumes the builder and constructs a EcrConfiguration
.
Trait Implementations§
source§impl Clone for EcrConfigurationBuilder
impl Clone for EcrConfigurationBuilder
source§fn clone(&self) -> EcrConfigurationBuilder
fn clone(&self) -> EcrConfigurationBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for EcrConfigurationBuilder
impl Debug for EcrConfigurationBuilder
source§impl Default for EcrConfigurationBuilder
impl Default for EcrConfigurationBuilder
source§fn default() -> EcrConfigurationBuilder
fn default() -> EcrConfigurationBuilder
source§impl PartialEq for EcrConfigurationBuilder
impl PartialEq for EcrConfigurationBuilder
source§fn eq(&self, other: &EcrConfigurationBuilder) -> bool
fn eq(&self, other: &EcrConfigurationBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for EcrConfigurationBuilder
Auto Trait Implementations§
impl Freeze for EcrConfigurationBuilder
impl RefUnwindSafe for EcrConfigurationBuilder
impl Send for EcrConfigurationBuilder
impl Sync for EcrConfigurationBuilder
impl Unpin for EcrConfigurationBuilder
impl UnwindSafe for EcrConfigurationBuilder
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
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>
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>
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 more