Struct aws_sdk_docdb::operation::remove_source_identifier_from_subscription::builders::RemoveSourceIdentifierFromSubscriptionFluentBuilder
source · pub struct RemoveSourceIdentifierFromSubscriptionFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to RemoveSourceIdentifierFromSubscription
.
Removes a source identifier from an existing Amazon DocumentDB event notification subscription.
Implementations§
source§impl RemoveSourceIdentifierFromSubscriptionFluentBuilder
impl RemoveSourceIdentifierFromSubscriptionFluentBuilder
sourcepub fn as_input(&self) -> &RemoveSourceIdentifierFromSubscriptionInputBuilder
pub fn as_input(&self) -> &RemoveSourceIdentifierFromSubscriptionInputBuilder
Access the RemoveSourceIdentifierFromSubscription as a reference.
sourcepub async fn send(
self
) -> Result<RemoveSourceIdentifierFromSubscriptionOutput, SdkError<RemoveSourceIdentifierFromSubscriptionError, HttpResponse>>
pub async fn send( self ) -> Result<RemoveSourceIdentifierFromSubscriptionOutput, SdkError<RemoveSourceIdentifierFromSubscriptionError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self
) -> CustomizableOperation<RemoveSourceIdentifierFromSubscriptionOutput, RemoveSourceIdentifierFromSubscriptionError, Self>
pub fn customize( self ) -> CustomizableOperation<RemoveSourceIdentifierFromSubscriptionOutput, RemoveSourceIdentifierFromSubscriptionError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn subscription_name(self, input: impl Into<String>) -> Self
pub fn subscription_name(self, input: impl Into<String>) -> Self
The name of the Amazon DocumentDB event notification subscription that you want to remove a source identifier from.
sourcepub fn set_subscription_name(self, input: Option<String>) -> Self
pub fn set_subscription_name(self, input: Option<String>) -> Self
The name of the Amazon DocumentDB event notification subscription that you want to remove a source identifier from.
sourcepub fn get_subscription_name(&self) -> &Option<String>
pub fn get_subscription_name(&self) -> &Option<String>
The name of the Amazon DocumentDB event notification subscription that you want to remove a source identifier from.
sourcepub fn source_identifier(self, input: impl Into<String>) -> Self
pub fn source_identifier(self, input: impl Into<String>) -> Self
The source identifier to be removed from the subscription, such as the instance identifier for an instance, or the name of a security group.
sourcepub fn set_source_identifier(self, input: Option<String>) -> Self
pub fn set_source_identifier(self, input: Option<String>) -> Self
The source identifier to be removed from the subscription, such as the instance identifier for an instance, or the name of a security group.
sourcepub fn get_source_identifier(&self) -> &Option<String>
pub fn get_source_identifier(&self) -> &Option<String>
The source identifier to be removed from the subscription, such as the instance identifier for an instance, or the name of a security group.
Trait Implementations§
source§impl Clone for RemoveSourceIdentifierFromSubscriptionFluentBuilder
impl Clone for RemoveSourceIdentifierFromSubscriptionFluentBuilder
source§fn clone(&self) -> RemoveSourceIdentifierFromSubscriptionFluentBuilder
fn clone(&self) -> RemoveSourceIdentifierFromSubscriptionFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more