Struct aws_sdk_docdb::operation::remove_source_identifier_from_subscription::RemoveSourceIdentifierFromSubscriptionInput
source · #[non_exhaustive]pub struct RemoveSourceIdentifierFromSubscriptionInput {
pub subscription_name: Option<String>,
pub source_identifier: Option<String>,
}Expand description
Represents the input to RemoveSourceIdentifierFromSubscription.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.subscription_name: Option<String>The name of the Amazon DocumentDB event notification subscription that you want to remove a source identifier from.
source_identifier: 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.
Implementations§
source§impl RemoveSourceIdentifierFromSubscriptionInput
impl RemoveSourceIdentifierFromSubscriptionInput
sourcepub fn subscription_name(&self) -> Option<&str>
pub fn subscription_name(&self) -> Option<&str>
The name of the Amazon DocumentDB event notification subscription that you want to remove a source identifier from.
sourcepub fn source_identifier(&self) -> Option<&str>
pub fn source_identifier(&self) -> Option<&str>
The source identifier to be removed from the subscription, such as the instance identifier for an instance, or the name of a security group.
source§impl RemoveSourceIdentifierFromSubscriptionInput
impl RemoveSourceIdentifierFromSubscriptionInput
sourcepub fn builder() -> RemoveSourceIdentifierFromSubscriptionInputBuilder
pub fn builder() -> RemoveSourceIdentifierFromSubscriptionInputBuilder
Creates a new builder-style object to manufacture RemoveSourceIdentifierFromSubscriptionInput.
Trait Implementations§
source§impl Clone for RemoveSourceIdentifierFromSubscriptionInput
impl Clone for RemoveSourceIdentifierFromSubscriptionInput
source§fn clone(&self) -> RemoveSourceIdentifierFromSubscriptionInput
fn clone(&self) -> RemoveSourceIdentifierFromSubscriptionInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl PartialEq for RemoveSourceIdentifierFromSubscriptionInput
impl PartialEq for RemoveSourceIdentifierFromSubscriptionInput
source§fn eq(&self, other: &RemoveSourceIdentifierFromSubscriptionInput) -> bool
fn eq(&self, other: &RemoveSourceIdentifierFromSubscriptionInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for RemoveSourceIdentifierFromSubscriptionInput
Auto Trait Implementations§
impl Freeze for RemoveSourceIdentifierFromSubscriptionInput
impl RefUnwindSafe for RemoveSourceIdentifierFromSubscriptionInput
impl Send for RemoveSourceIdentifierFromSubscriptionInput
impl Sync for RemoveSourceIdentifierFromSubscriptionInput
impl Unpin for RemoveSourceIdentifierFromSubscriptionInput
impl UnwindSafe for RemoveSourceIdentifierFromSubscriptionInput
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
Mutably borrows from an owned value. Read more
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.