#[non_exhaustive]pub struct DeletePartnerInputBuilder { /* private fields */ }
Expand description
A builder for DeletePartnerInput
.
Implementations§
source§impl DeletePartnerInputBuilder
impl DeletePartnerInputBuilder
sourcepub fn account_id(self, input: impl Into<String>) -> Self
pub fn account_id(self, input: impl Into<String>) -> Self
The Amazon Web Services account ID that owns the cluster.
This field is required.sourcepub fn set_account_id(self, input: Option<String>) -> Self
pub fn set_account_id(self, input: Option<String>) -> Self
The Amazon Web Services account ID that owns the cluster.
sourcepub fn get_account_id(&self) -> &Option<String>
pub fn get_account_id(&self) -> &Option<String>
The Amazon Web Services account ID that owns the cluster.
sourcepub fn cluster_identifier(self, input: impl Into<String>) -> Self
pub fn cluster_identifier(self, input: impl Into<String>) -> Self
The cluster identifier of the cluster that receives data from the partner.
This field is required.sourcepub fn set_cluster_identifier(self, input: Option<String>) -> Self
pub fn set_cluster_identifier(self, input: Option<String>) -> Self
The cluster identifier of the cluster that receives data from the partner.
sourcepub fn get_cluster_identifier(&self) -> &Option<String>
pub fn get_cluster_identifier(&self) -> &Option<String>
The cluster identifier of the cluster that receives data from the partner.
sourcepub fn database_name(self, input: impl Into<String>) -> Self
pub fn database_name(self, input: impl Into<String>) -> Self
The name of the database that receives data from the partner.
This field is required.sourcepub fn set_database_name(self, input: Option<String>) -> Self
pub fn set_database_name(self, input: Option<String>) -> Self
The name of the database that receives data from the partner.
sourcepub fn get_database_name(&self) -> &Option<String>
pub fn get_database_name(&self) -> &Option<String>
The name of the database that receives data from the partner.
sourcepub fn partner_name(self, input: impl Into<String>) -> Self
pub fn partner_name(self, input: impl Into<String>) -> Self
The name of the partner that is authorized to send data.
This field is required.sourcepub fn set_partner_name(self, input: Option<String>) -> Self
pub fn set_partner_name(self, input: Option<String>) -> Self
The name of the partner that is authorized to send data.
sourcepub fn get_partner_name(&self) -> &Option<String>
pub fn get_partner_name(&self) -> &Option<String>
The name of the partner that is authorized to send data.
sourcepub fn build(self) -> Result<DeletePartnerInput, BuildError>
pub fn build(self) -> Result<DeletePartnerInput, BuildError>
Consumes the builder and constructs a DeletePartnerInput
.
source§impl DeletePartnerInputBuilder
impl DeletePartnerInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<DeletePartnerOutput, SdkError<DeletePartnerError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<DeletePartnerOutput, SdkError<DeletePartnerError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DeletePartnerInputBuilder
impl Clone for DeletePartnerInputBuilder
source§fn clone(&self) -> DeletePartnerInputBuilder
fn clone(&self) -> DeletePartnerInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DeletePartnerInputBuilder
impl Debug for DeletePartnerInputBuilder
source§impl Default for DeletePartnerInputBuilder
impl Default for DeletePartnerInputBuilder
source§fn default() -> DeletePartnerInputBuilder
fn default() -> DeletePartnerInputBuilder
source§impl PartialEq for DeletePartnerInputBuilder
impl PartialEq for DeletePartnerInputBuilder
source§fn eq(&self, other: &DeletePartnerInputBuilder) -> bool
fn eq(&self, other: &DeletePartnerInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DeletePartnerInputBuilder
Auto Trait Implementations§
impl Freeze for DeletePartnerInputBuilder
impl RefUnwindSafe for DeletePartnerInputBuilder
impl Send for DeletePartnerInputBuilder
impl Sync for DeletePartnerInputBuilder
impl Unpin for DeletePartnerInputBuilder
impl UnwindSafe for DeletePartnerInputBuilder
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