#[non_exhaustive]pub struct ModifyIntegrationInputBuilder { /* private fields */ }Expand description
A builder for ModifyIntegrationInput.
Implementations§
source§impl ModifyIntegrationInputBuilder
impl ModifyIntegrationInputBuilder
sourcepub fn integration_identifier(self, input: impl Into<String>) -> Self
pub fn integration_identifier(self, input: impl Into<String>) -> Self
The unique identifier of the integration to modify.
This field is required.sourcepub fn set_integration_identifier(self, input: Option<String>) -> Self
pub fn set_integration_identifier(self, input: Option<String>) -> Self
The unique identifier of the integration to modify.
sourcepub fn get_integration_identifier(&self) -> &Option<String>
pub fn get_integration_identifier(&self) -> &Option<String>
The unique identifier of the integration to modify.
sourcepub fn integration_name(self, input: impl Into<String>) -> Self
pub fn integration_name(self, input: impl Into<String>) -> Self
A new name for the integration.
sourcepub fn set_integration_name(self, input: Option<String>) -> Self
pub fn set_integration_name(self, input: Option<String>) -> Self
A new name for the integration.
sourcepub fn get_integration_name(&self) -> &Option<String>
pub fn get_integration_name(&self) -> &Option<String>
A new name for the integration.
sourcepub fn data_filter(self, input: impl Into<String>) -> Self
pub fn data_filter(self, input: impl Into<String>) -> Self
A new data filter for the integration. For more information, see Data filtering for Aurora zero-ETL integrations with Amazon Redshift.
sourcepub fn set_data_filter(self, input: Option<String>) -> Self
pub fn set_data_filter(self, input: Option<String>) -> Self
A new data filter for the integration. For more information, see Data filtering for Aurora zero-ETL integrations with Amazon Redshift.
sourcepub fn get_data_filter(&self) -> &Option<String>
pub fn get_data_filter(&self) -> &Option<String>
A new data filter for the integration. For more information, see Data filtering for Aurora zero-ETL integrations with Amazon Redshift.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
A new description for the integration.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
A new description for the integration.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
A new description for the integration.
sourcepub fn build(self) -> Result<ModifyIntegrationInput, BuildError>
pub fn build(self) -> Result<ModifyIntegrationInput, BuildError>
Consumes the builder and constructs a ModifyIntegrationInput.
source§impl ModifyIntegrationInputBuilder
impl ModifyIntegrationInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<ModifyIntegrationOutput, SdkError<ModifyIntegrationError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<ModifyIntegrationOutput, SdkError<ModifyIntegrationError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ModifyIntegrationInputBuilder
impl Clone for ModifyIntegrationInputBuilder
source§fn clone(&self) -> ModifyIntegrationInputBuilder
fn clone(&self) -> ModifyIntegrationInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for ModifyIntegrationInputBuilder
impl Default for ModifyIntegrationInputBuilder
source§fn default() -> ModifyIntegrationInputBuilder
fn default() -> ModifyIntegrationInputBuilder
source§impl PartialEq for ModifyIntegrationInputBuilder
impl PartialEq for ModifyIntegrationInputBuilder
source§fn eq(&self, other: &ModifyIntegrationInputBuilder) -> bool
fn eq(&self, other: &ModifyIntegrationInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ModifyIntegrationInputBuilder
Auto Trait Implementations§
impl Freeze for ModifyIntegrationInputBuilder
impl RefUnwindSafe for ModifyIntegrationInputBuilder
impl Send for ModifyIntegrationInputBuilder
impl Sync for ModifyIntegrationInputBuilder
impl Unpin for ModifyIntegrationInputBuilder
impl UnwindSafe for ModifyIntegrationInputBuilder
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