pub struct DeletePartnerFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to DeletePartner
.
Deletes a partner integration from a cluster. Data can still flow to the cluster until the integration is deleted at the partner's website.
Implementations§
source§impl DeletePartnerFluentBuilder
impl DeletePartnerFluentBuilder
sourcepub fn as_input(&self) -> &DeletePartnerInputBuilder
pub fn as_input(&self) -> &DeletePartnerInputBuilder
Access the DeletePartner as a reference.
sourcepub async fn send(
self
) -> Result<DeletePartnerOutput, SdkError<DeletePartnerError, HttpResponse>>
pub async fn send( self ) -> Result<DeletePartnerOutput, SdkError<DeletePartnerError, 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 async fn customize(
self
) -> Result<CustomizableOperation<DeletePartnerOutput, DeletePartnerError>, SdkError<DeletePartnerError>>
pub async fn customize( self ) -> Result<CustomizableOperation<DeletePartnerOutput, DeletePartnerError>, SdkError<DeletePartnerError>>
Consumes this builder, creating a customizable operation that can be modified before being sent.
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.
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.
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.
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.
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.
Trait Implementations§
source§impl Clone for DeletePartnerFluentBuilder
impl Clone for DeletePartnerFluentBuilder
source§fn clone(&self) -> DeletePartnerFluentBuilder
fn clone(&self) -> DeletePartnerFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more