Struct aws_sdk_ecr::operation::update_pull_through_cache_rule::builders::UpdatePullThroughCacheRuleOutputBuilder
source · #[non_exhaustive]pub struct UpdatePullThroughCacheRuleOutputBuilder { /* private fields */ }
Expand description
A builder for UpdatePullThroughCacheRuleOutput
.
Implementations§
source§impl UpdatePullThroughCacheRuleOutputBuilder
impl UpdatePullThroughCacheRuleOutputBuilder
sourcepub fn ecr_repository_prefix(self, input: impl Into<String>) -> Self
pub fn ecr_repository_prefix(self, input: impl Into<String>) -> Self
The Amazon ECR repository prefix associated with the pull through cache rule.
sourcepub fn set_ecr_repository_prefix(self, input: Option<String>) -> Self
pub fn set_ecr_repository_prefix(self, input: Option<String>) -> Self
The Amazon ECR repository prefix associated with the pull through cache rule.
sourcepub fn get_ecr_repository_prefix(&self) -> &Option<String>
pub fn get_ecr_repository_prefix(&self) -> &Option<String>
The Amazon ECR repository prefix associated with the pull through cache rule.
sourcepub fn registry_id(self, input: impl Into<String>) -> Self
pub fn registry_id(self, input: impl Into<String>) -> Self
The registry ID associated with the request.
sourcepub fn set_registry_id(self, input: Option<String>) -> Self
pub fn set_registry_id(self, input: Option<String>) -> Self
The registry ID associated with the request.
sourcepub fn get_registry_id(&self) -> &Option<String>
pub fn get_registry_id(&self) -> &Option<String>
The registry ID associated with the request.
sourcepub fn updated_at(self, input: DateTime) -> Self
pub fn updated_at(self, input: DateTime) -> Self
The date and time, in JavaScript date format, when the pull through cache rule was updated.
sourcepub fn set_updated_at(self, input: Option<DateTime>) -> Self
pub fn set_updated_at(self, input: Option<DateTime>) -> Self
The date and time, in JavaScript date format, when the pull through cache rule was updated.
sourcepub fn get_updated_at(&self) -> &Option<DateTime>
pub fn get_updated_at(&self) -> &Option<DateTime>
The date and time, in JavaScript date format, when the pull through cache rule was updated.
sourcepub fn credential_arn(self, input: impl Into<String>) -> Self
pub fn credential_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the Amazon Web Services Secrets Manager secret associated with the pull through cache rule.
sourcepub fn set_credential_arn(self, input: Option<String>) -> Self
pub fn set_credential_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the Amazon Web Services Secrets Manager secret associated with the pull through cache rule.
sourcepub fn get_credential_arn(&self) -> &Option<String>
pub fn get_credential_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the Amazon Web Services Secrets Manager secret associated with the pull through cache rule.
sourcepub fn build(self) -> UpdatePullThroughCacheRuleOutput
pub fn build(self) -> UpdatePullThroughCacheRuleOutput
Consumes the builder and constructs a UpdatePullThroughCacheRuleOutput
.
Trait Implementations§
source§impl Clone for UpdatePullThroughCacheRuleOutputBuilder
impl Clone for UpdatePullThroughCacheRuleOutputBuilder
source§fn clone(&self) -> UpdatePullThroughCacheRuleOutputBuilder
fn clone(&self) -> UpdatePullThroughCacheRuleOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for UpdatePullThroughCacheRuleOutputBuilder
impl Default for UpdatePullThroughCacheRuleOutputBuilder
source§fn default() -> UpdatePullThroughCacheRuleOutputBuilder
fn default() -> UpdatePullThroughCacheRuleOutputBuilder
source§impl PartialEq for UpdatePullThroughCacheRuleOutputBuilder
impl PartialEq for UpdatePullThroughCacheRuleOutputBuilder
source§fn eq(&self, other: &UpdatePullThroughCacheRuleOutputBuilder) -> bool
fn eq(&self, other: &UpdatePullThroughCacheRuleOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdatePullThroughCacheRuleOutputBuilder
Auto Trait Implementations§
impl Freeze for UpdatePullThroughCacheRuleOutputBuilder
impl RefUnwindSafe for UpdatePullThroughCacheRuleOutputBuilder
impl Send for UpdatePullThroughCacheRuleOutputBuilder
impl Sync for UpdatePullThroughCacheRuleOutputBuilder
impl Unpin for UpdatePullThroughCacheRuleOutputBuilder
impl UnwindSafe for UpdatePullThroughCacheRuleOutputBuilder
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