Struct aws_sdk_securitylake::operation::update_data_lake_exception_subscription::builders::UpdateDataLakeExceptionSubscriptionInputBuilder
source · #[non_exhaustive]pub struct UpdateDataLakeExceptionSubscriptionInputBuilder { /* private fields */ }Expand description
A builder for UpdateDataLakeExceptionSubscriptionInput.
Implementations§
source§impl UpdateDataLakeExceptionSubscriptionInputBuilder
impl UpdateDataLakeExceptionSubscriptionInputBuilder
sourcepub fn subscription_protocol(self, input: impl Into<String>) -> Self
pub fn subscription_protocol(self, input: impl Into<String>) -> Self
The subscription protocol to which exception messages are posted.
This field is required.sourcepub fn set_subscription_protocol(self, input: Option<String>) -> Self
pub fn set_subscription_protocol(self, input: Option<String>) -> Self
The subscription protocol to which exception messages are posted.
sourcepub fn get_subscription_protocol(&self) -> &Option<String>
pub fn get_subscription_protocol(&self) -> &Option<String>
The subscription protocol to which exception messages are posted.
sourcepub fn notification_endpoint(self, input: impl Into<String>) -> Self
pub fn notification_endpoint(self, input: impl Into<String>) -> Self
The account that is subscribed to receive exception notifications.
This field is required.sourcepub fn set_notification_endpoint(self, input: Option<String>) -> Self
pub fn set_notification_endpoint(self, input: Option<String>) -> Self
The account that is subscribed to receive exception notifications.
sourcepub fn get_notification_endpoint(&self) -> &Option<String>
pub fn get_notification_endpoint(&self) -> &Option<String>
The account that is subscribed to receive exception notifications.
sourcepub fn exception_time_to_live(self, input: i64) -> Self
pub fn exception_time_to_live(self, input: i64) -> Self
The time-to-live (TTL) for the exception message to remain.
sourcepub fn set_exception_time_to_live(self, input: Option<i64>) -> Self
pub fn set_exception_time_to_live(self, input: Option<i64>) -> Self
The time-to-live (TTL) for the exception message to remain.
sourcepub fn get_exception_time_to_live(&self) -> &Option<i64>
pub fn get_exception_time_to_live(&self) -> &Option<i64>
The time-to-live (TTL) for the exception message to remain.
sourcepub fn build(
self,
) -> Result<UpdateDataLakeExceptionSubscriptionInput, BuildError>
pub fn build( self, ) -> Result<UpdateDataLakeExceptionSubscriptionInput, BuildError>
Consumes the builder and constructs a UpdateDataLakeExceptionSubscriptionInput.
source§impl UpdateDataLakeExceptionSubscriptionInputBuilder
impl UpdateDataLakeExceptionSubscriptionInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<UpdateDataLakeExceptionSubscriptionOutput, SdkError<UpdateDataLakeExceptionSubscriptionError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<UpdateDataLakeExceptionSubscriptionOutput, SdkError<UpdateDataLakeExceptionSubscriptionError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateDataLakeExceptionSubscriptionInputBuilder
impl Clone for UpdateDataLakeExceptionSubscriptionInputBuilder
source§fn clone(&self) -> UpdateDataLakeExceptionSubscriptionInputBuilder
fn clone(&self) -> UpdateDataLakeExceptionSubscriptionInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for UpdateDataLakeExceptionSubscriptionInputBuilder
impl Default for UpdateDataLakeExceptionSubscriptionInputBuilder
source§fn default() -> UpdateDataLakeExceptionSubscriptionInputBuilder
fn default() -> UpdateDataLakeExceptionSubscriptionInputBuilder
source§impl PartialEq for UpdateDataLakeExceptionSubscriptionInputBuilder
impl PartialEq for UpdateDataLakeExceptionSubscriptionInputBuilder
source§fn eq(&self, other: &UpdateDataLakeExceptionSubscriptionInputBuilder) -> bool
fn eq(&self, other: &UpdateDataLakeExceptionSubscriptionInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateDataLakeExceptionSubscriptionInputBuilder
Auto Trait Implementations§
impl Freeze for UpdateDataLakeExceptionSubscriptionInputBuilder
impl RefUnwindSafe for UpdateDataLakeExceptionSubscriptionInputBuilder
impl Send for UpdateDataLakeExceptionSubscriptionInputBuilder
impl Sync for UpdateDataLakeExceptionSubscriptionInputBuilder
impl Unpin for UpdateDataLakeExceptionSubscriptionInputBuilder
impl UnwindSafe for UpdateDataLakeExceptionSubscriptionInputBuilder
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