Struct aws_sdk_appflow::operation::describe_connector::builders::DescribeConnectorInputBuilder
source · #[non_exhaustive]pub struct DescribeConnectorInputBuilder { /* private fields */ }Expand description
A builder for DescribeConnectorInput.
Implementations§
source§impl DescribeConnectorInputBuilder
impl DescribeConnectorInputBuilder
sourcepub fn connector_type(self, input: ConnectorType) -> Self
pub fn connector_type(self, input: ConnectorType) -> Self
The connector type, such as CUSTOMCONNECTOR, Saleforce, Marketo. Please choose CUSTOMCONNECTOR for Lambda based custom connectors.
This field is required.sourcepub fn set_connector_type(self, input: Option<ConnectorType>) -> Self
pub fn set_connector_type(self, input: Option<ConnectorType>) -> Self
The connector type, such as CUSTOMCONNECTOR, Saleforce, Marketo. Please choose CUSTOMCONNECTOR for Lambda based custom connectors.
sourcepub fn get_connector_type(&self) -> &Option<ConnectorType>
pub fn get_connector_type(&self) -> &Option<ConnectorType>
The connector type, such as CUSTOMCONNECTOR, Saleforce, Marketo. Please choose CUSTOMCONNECTOR for Lambda based custom connectors.
sourcepub fn connector_label(self, input: impl Into<String>) -> Self
pub fn connector_label(self, input: impl Into<String>) -> Self
The label of the connector. The label is unique for each ConnectorRegistration in your Amazon Web Services account. Only needed if calling for CUSTOMCONNECTOR connector type/.
sourcepub fn set_connector_label(self, input: Option<String>) -> Self
pub fn set_connector_label(self, input: Option<String>) -> Self
The label of the connector. The label is unique for each ConnectorRegistration in your Amazon Web Services account. Only needed if calling for CUSTOMCONNECTOR connector type/.
sourcepub fn get_connector_label(&self) -> &Option<String>
pub fn get_connector_label(&self) -> &Option<String>
The label of the connector. The label is unique for each ConnectorRegistration in your Amazon Web Services account. Only needed if calling for CUSTOMCONNECTOR connector type/.
sourcepub fn build(self) -> Result<DescribeConnectorInput, BuildError>
pub fn build(self) -> Result<DescribeConnectorInput, BuildError>
Consumes the builder and constructs a DescribeConnectorInput.
source§impl DescribeConnectorInputBuilder
impl DescribeConnectorInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<DescribeConnectorOutput, SdkError<DescribeConnectorError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<DescribeConnectorOutput, SdkError<DescribeConnectorError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DescribeConnectorInputBuilder
impl Clone for DescribeConnectorInputBuilder
source§fn clone(&self) -> DescribeConnectorInputBuilder
fn clone(&self) -> DescribeConnectorInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for DescribeConnectorInputBuilder
impl Default for DescribeConnectorInputBuilder
source§fn default() -> DescribeConnectorInputBuilder
fn default() -> DescribeConnectorInputBuilder
source§impl PartialEq for DescribeConnectorInputBuilder
impl PartialEq for DescribeConnectorInputBuilder
source§fn eq(&self, other: &DescribeConnectorInputBuilder) -> bool
fn eq(&self, other: &DescribeConnectorInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DescribeConnectorInputBuilder
Auto Trait Implementations§
impl Freeze for DescribeConnectorInputBuilder
impl RefUnwindSafe for DescribeConnectorInputBuilder
impl Send for DescribeConnectorInputBuilder
impl Sync for DescribeConnectorInputBuilder
impl Unpin for DescribeConnectorInputBuilder
impl UnwindSafe for DescribeConnectorInputBuilder
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