Struct aws_sdk_redshift::operation::update_partner_status::builders::UpdatePartnerStatusFluentBuilder
source · pub struct UpdatePartnerStatusFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to UpdatePartnerStatus
.
Updates the status of a partner integration.
Implementations§
source§impl UpdatePartnerStatusFluentBuilder
impl UpdatePartnerStatusFluentBuilder
sourcepub fn as_input(&self) -> &UpdatePartnerStatusInputBuilder
pub fn as_input(&self) -> &UpdatePartnerStatusInputBuilder
Access the UpdatePartnerStatus as a reference.
sourcepub async fn send(
self
) -> Result<UpdatePartnerStatusOutput, SdkError<UpdatePartnerStatusError, HttpResponse>>
pub async fn send( self ) -> Result<UpdatePartnerStatusOutput, SdkError<UpdatePartnerStatusError, 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<UpdatePartnerStatusOutput, UpdatePartnerStatusError, Self>
pub fn customize( self ) -> CustomizableOperation<UpdatePartnerStatusOutput, UpdatePartnerStatusError, Self>
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 whose partner integration status is being updated.
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 whose partner integration status is being updated.
sourcepub fn get_cluster_identifier(&self) -> &Option<String>
pub fn get_cluster_identifier(&self) -> &Option<String>
The cluster identifier of the cluster whose partner integration status is being updated.
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 whose partner integration status is being updated.
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 whose partner integration status is being updated.
sourcepub fn get_database_name(&self) -> &Option<String>
pub fn get_database_name(&self) -> &Option<String>
The name of the database whose partner integration status is being updated.
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 whose integration status is being updated.
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 whose integration status is being updated.
sourcepub fn get_partner_name(&self) -> &Option<String>
pub fn get_partner_name(&self) -> &Option<String>
The name of the partner whose integration status is being updated.
sourcepub fn status(self, input: PartnerIntegrationStatus) -> Self
pub fn status(self, input: PartnerIntegrationStatus) -> Self
The value of the updated status.
sourcepub fn set_status(self, input: Option<PartnerIntegrationStatus>) -> Self
pub fn set_status(self, input: Option<PartnerIntegrationStatus>) -> Self
The value of the updated status.
sourcepub fn get_status(&self) -> &Option<PartnerIntegrationStatus>
pub fn get_status(&self) -> &Option<PartnerIntegrationStatus>
The value of the updated status.
sourcepub fn status_message(self, input: impl Into<String>) -> Self
pub fn status_message(self, input: impl Into<String>) -> Self
The status message provided by the partner.
sourcepub fn set_status_message(self, input: Option<String>) -> Self
pub fn set_status_message(self, input: Option<String>) -> Self
The status message provided by the partner.
sourcepub fn get_status_message(&self) -> &Option<String>
pub fn get_status_message(&self) -> &Option<String>
The status message provided by the partner.
Trait Implementations§
source§impl Clone for UpdatePartnerStatusFluentBuilder
impl Clone for UpdatePartnerStatusFluentBuilder
source§fn clone(&self) -> UpdatePartnerStatusFluentBuilder
fn clone(&self) -> UpdatePartnerStatusFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more