#[non_exhaustive]pub struct DeletePartnerInput {
pub account_id: Option<String>,
pub cluster_identifier: Option<String>,
pub database_name: Option<String>,
pub partner_name: Option<String>,
}
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.account_id: Option<String>
The Amazon Web Services account ID that owns the cluster.
cluster_identifier: Option<String>
The cluster identifier of the cluster that receives data from the partner.
database_name: Option<String>
The name of the database that receives data from the partner.
partner_name: Option<String>
The name of the partner that is authorized to send data.
Implementations§
source§impl DeletePartnerInput
impl DeletePartnerInput
sourcepub fn account_id(&self) -> Option<&str>
pub fn account_id(&self) -> Option<&str>
The Amazon Web Services account ID that owns the cluster.
sourcepub fn cluster_identifier(&self) -> Option<&str>
pub fn cluster_identifier(&self) -> Option<&str>
The cluster identifier of the cluster that receives data from the partner.
sourcepub fn database_name(&self) -> Option<&str>
pub fn database_name(&self) -> Option<&str>
The name of the database that receives data from the partner.
sourcepub fn partner_name(&self) -> Option<&str>
pub fn partner_name(&self) -> Option<&str>
The name of the partner that is authorized to send data.
source§impl DeletePartnerInput
impl DeletePartnerInput
sourcepub fn builder() -> DeletePartnerInputBuilder
pub fn builder() -> DeletePartnerInputBuilder
Creates a new builder-style object to manufacture DeletePartnerInput
.
Trait Implementations§
source§impl Clone for DeletePartnerInput
impl Clone for DeletePartnerInput
source§fn clone(&self) -> DeletePartnerInput
fn clone(&self) -> DeletePartnerInput
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 Debug for DeletePartnerInput
impl Debug for DeletePartnerInput
source§impl PartialEq for DeletePartnerInput
impl PartialEq for DeletePartnerInput
source§fn eq(&self, other: &DeletePartnerInput) -> bool
fn eq(&self, other: &DeletePartnerInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DeletePartnerInput
Auto Trait Implementations§
impl RefUnwindSafe for DeletePartnerInput
impl Send for DeletePartnerInput
impl Sync for DeletePartnerInput
impl Unpin for DeletePartnerInput
impl UnwindSafe for DeletePartnerInput
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>
Creates a shared type from an unshared type.