Struct aws_sdk_appflow::operation::delete_connector_profile::builders::DeleteConnectorProfileInputBuilder
source · #[non_exhaustive]pub struct DeleteConnectorProfileInputBuilder { /* private fields */ }Expand description
A builder for DeleteConnectorProfileInput.
Implementations§
source§impl DeleteConnectorProfileInputBuilder
impl DeleteConnectorProfileInputBuilder
sourcepub fn connector_profile_name(self, input: impl Into<String>) -> Self
pub fn connector_profile_name(self, input: impl Into<String>) -> Self
The name of the connector profile. The name is unique for each ConnectorProfile in your account.
sourcepub fn set_connector_profile_name(self, input: Option<String>) -> Self
pub fn set_connector_profile_name(self, input: Option<String>) -> Self
The name of the connector profile. The name is unique for each ConnectorProfile in your account.
sourcepub fn get_connector_profile_name(&self) -> &Option<String>
pub fn get_connector_profile_name(&self) -> &Option<String>
The name of the connector profile. The name is unique for each ConnectorProfile in your account.
sourcepub fn force_delete(self, input: bool) -> Self
pub fn force_delete(self, input: bool) -> Self
Indicates whether Amazon AppFlow should delete the profile, even if it is currently in use in one or more flows.
sourcepub fn set_force_delete(self, input: Option<bool>) -> Self
pub fn set_force_delete(self, input: Option<bool>) -> Self
Indicates whether Amazon AppFlow should delete the profile, even if it is currently in use in one or more flows.
sourcepub fn get_force_delete(&self) -> &Option<bool>
pub fn get_force_delete(&self) -> &Option<bool>
Indicates whether Amazon AppFlow should delete the profile, even if it is currently in use in one or more flows.
sourcepub fn build(self) -> Result<DeleteConnectorProfileInput, BuildError>
pub fn build(self) -> Result<DeleteConnectorProfileInput, BuildError>
Consumes the builder and constructs a DeleteConnectorProfileInput.
source§impl DeleteConnectorProfileInputBuilder
impl DeleteConnectorProfileInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<DeleteConnectorProfileOutput, SdkError<DeleteConnectorProfileError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<DeleteConnectorProfileOutput, SdkError<DeleteConnectorProfileError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DeleteConnectorProfileInputBuilder
impl Clone for DeleteConnectorProfileInputBuilder
source§fn clone(&self) -> DeleteConnectorProfileInputBuilder
fn clone(&self) -> DeleteConnectorProfileInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for DeleteConnectorProfileInputBuilder
impl Default for DeleteConnectorProfileInputBuilder
source§fn default() -> DeleteConnectorProfileInputBuilder
fn default() -> DeleteConnectorProfileInputBuilder
source§impl PartialEq for DeleteConnectorProfileInputBuilder
impl PartialEq for DeleteConnectorProfileInputBuilder
source§fn eq(&self, other: &DeleteConnectorProfileInputBuilder) -> bool
fn eq(&self, other: &DeleteConnectorProfileInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DeleteConnectorProfileInputBuilder
Auto Trait Implementations§
impl Freeze for DeleteConnectorProfileInputBuilder
impl RefUnwindSafe for DeleteConnectorProfileInputBuilder
impl Send for DeleteConnectorProfileInputBuilder
impl Sync for DeleteConnectorProfileInputBuilder
impl Unpin for DeleteConnectorProfileInputBuilder
impl UnwindSafe for DeleteConnectorProfileInputBuilder
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