Struct aws_sdk_appflow::operation::describe_connector_entity::builders::DescribeConnectorEntityInputBuilder
source · #[non_exhaustive]pub struct DescribeConnectorEntityInputBuilder { /* private fields */ }Expand description
A builder for DescribeConnectorEntityInput.
Implementations§
source§impl DescribeConnectorEntityInputBuilder
impl DescribeConnectorEntityInputBuilder
sourcepub fn connector_entity_name(self, input: impl Into<String>) -> Self
pub fn connector_entity_name(self, input: impl Into<String>) -> Self
The entity name for that connector.
This field is required.sourcepub fn set_connector_entity_name(self, input: Option<String>) -> Self
pub fn set_connector_entity_name(self, input: Option<String>) -> Self
The entity name for that connector.
sourcepub fn get_connector_entity_name(&self) -> &Option<String>
pub fn get_connector_entity_name(&self) -> &Option<String>
The entity name for that connector.
sourcepub fn connector_type(self, input: ConnectorType) -> Self
pub fn connector_type(self, input: ConnectorType) -> Self
The type of connector application, such as Salesforce, Amplitude, and so on.
sourcepub fn set_connector_type(self, input: Option<ConnectorType>) -> Self
pub fn set_connector_type(self, input: Option<ConnectorType>) -> Self
The type of connector application, such as Salesforce, Amplitude, and so on.
sourcepub fn get_connector_type(&self) -> &Option<ConnectorType>
pub fn get_connector_type(&self) -> &Option<ConnectorType>
The type of connector application, such as Salesforce, Amplitude, and so on.
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 the Amazon Web Services 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 the Amazon Web Services 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 the Amazon Web Services account.
sourcepub fn api_version(self, input: impl Into<String>) -> Self
pub fn api_version(self, input: impl Into<String>) -> Self
The version of the API that's used by the connector.
sourcepub fn set_api_version(self, input: Option<String>) -> Self
pub fn set_api_version(self, input: Option<String>) -> Self
The version of the API that's used by the connector.
sourcepub fn get_api_version(&self) -> &Option<String>
pub fn get_api_version(&self) -> &Option<String>
The version of the API that's used by the connector.
sourcepub fn build(self) -> Result<DescribeConnectorEntityInput, BuildError>
pub fn build(self) -> Result<DescribeConnectorEntityInput, BuildError>
Consumes the builder and constructs a DescribeConnectorEntityInput.
source§impl DescribeConnectorEntityInputBuilder
impl DescribeConnectorEntityInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<DescribeConnectorEntityOutput, SdkError<DescribeConnectorEntityError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<DescribeConnectorEntityOutput, SdkError<DescribeConnectorEntityError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DescribeConnectorEntityInputBuilder
impl Clone for DescribeConnectorEntityInputBuilder
source§fn clone(&self) -> DescribeConnectorEntityInputBuilder
fn clone(&self) -> DescribeConnectorEntityInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for DescribeConnectorEntityInputBuilder
impl Default for DescribeConnectorEntityInputBuilder
source§fn default() -> DescribeConnectorEntityInputBuilder
fn default() -> DescribeConnectorEntityInputBuilder
source§impl PartialEq for DescribeConnectorEntityInputBuilder
impl PartialEq for DescribeConnectorEntityInputBuilder
source§fn eq(&self, other: &DescribeConnectorEntityInputBuilder) -> bool
fn eq(&self, other: &DescribeConnectorEntityInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DescribeConnectorEntityInputBuilder
Auto Trait Implementations§
impl Freeze for DescribeConnectorEntityInputBuilder
impl RefUnwindSafe for DescribeConnectorEntityInputBuilder
impl Send for DescribeConnectorEntityInputBuilder
impl Sync for DescribeConnectorEntityInputBuilder
impl Unpin for DescribeConnectorEntityInputBuilder
impl UnwindSafe for DescribeConnectorEntityInputBuilder
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