#[non_exhaustive]pub struct ExpiryEventsConfigurationBuilder { /* private fields */ }
Expand description
A builder for ExpiryEventsConfiguration
.
Implementations§
source§impl ExpiryEventsConfigurationBuilder
impl ExpiryEventsConfigurationBuilder
sourcepub fn days_before_expiry(self, input: i32) -> Self
pub fn days_before_expiry(self, input: i32) -> Self
Specifies the number of days prior to certificate expiration when ACM starts generating EventBridge
events. ACM sends one event per day per certificate until the certificate expires. By default, accounts receive events starting 45 days before certificate expiration.
sourcepub fn set_days_before_expiry(self, input: Option<i32>) -> Self
pub fn set_days_before_expiry(self, input: Option<i32>) -> Self
Specifies the number of days prior to certificate expiration when ACM starts generating EventBridge
events. ACM sends one event per day per certificate until the certificate expires. By default, accounts receive events starting 45 days before certificate expiration.
sourcepub fn get_days_before_expiry(&self) -> &Option<i32>
pub fn get_days_before_expiry(&self) -> &Option<i32>
Specifies the number of days prior to certificate expiration when ACM starts generating EventBridge
events. ACM sends one event per day per certificate until the certificate expires. By default, accounts receive events starting 45 days before certificate expiration.
sourcepub fn build(self) -> ExpiryEventsConfiguration
pub fn build(self) -> ExpiryEventsConfiguration
Consumes the builder and constructs a ExpiryEventsConfiguration
.
Trait Implementations§
source§impl Clone for ExpiryEventsConfigurationBuilder
impl Clone for ExpiryEventsConfigurationBuilder
source§fn clone(&self) -> ExpiryEventsConfigurationBuilder
fn clone(&self) -> ExpiryEventsConfigurationBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ExpiryEventsConfigurationBuilder
impl Default for ExpiryEventsConfigurationBuilder
source§fn default() -> ExpiryEventsConfigurationBuilder
fn default() -> ExpiryEventsConfigurationBuilder
source§impl PartialEq for ExpiryEventsConfigurationBuilder
impl PartialEq for ExpiryEventsConfigurationBuilder
source§fn eq(&self, other: &ExpiryEventsConfigurationBuilder) -> bool
fn eq(&self, other: &ExpiryEventsConfigurationBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ExpiryEventsConfigurationBuilder
Auto Trait Implementations§
impl Freeze for ExpiryEventsConfigurationBuilder
impl RefUnwindSafe for ExpiryEventsConfigurationBuilder
impl Send for ExpiryEventsConfigurationBuilder
impl Sync for ExpiryEventsConfigurationBuilder
impl Unpin for ExpiryEventsConfigurationBuilder
impl UnwindSafe for ExpiryEventsConfigurationBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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