Struct aws_sdk_appflow::model::connector_detail::Builder
source · [−]#[non_exhaustive]pub struct Builder { /* private fields */ }
Expand description
A builder for ConnectorDetail
Implementations
sourceimpl Builder
impl Builder
sourcepub fn connector_description(self, input: impl Into<String>) -> Self
pub fn connector_description(self, input: impl Into<String>) -> Self
A description about the registered connector.
sourcepub fn set_connector_description(self, input: Option<String>) -> Self
pub fn set_connector_description(self, input: Option<String>) -> Self
A description about the registered connector.
sourcepub fn connector_name(self, input: impl Into<String>) -> Self
pub fn connector_name(self, input: impl Into<String>) -> Self
The name of the connector.
sourcepub fn set_connector_name(self, input: Option<String>) -> Self
pub fn set_connector_name(self, input: Option<String>) -> Self
The name of the connector.
sourcepub fn connector_owner(self, input: impl Into<String>) -> Self
pub fn connector_owner(self, input: impl Into<String>) -> Self
The owner of the connector.
sourcepub fn set_connector_owner(self, input: Option<String>) -> Self
pub fn set_connector_owner(self, input: Option<String>) -> Self
The owner of the connector.
sourcepub fn connector_version(self, input: impl Into<String>) -> Self
pub fn connector_version(self, input: impl Into<String>) -> Self
The connector version.
sourcepub fn set_connector_version(self, input: Option<String>) -> Self
pub fn set_connector_version(self, input: Option<String>) -> Self
The connector version.
sourcepub fn application_type(self, input: impl Into<String>) -> Self
pub fn application_type(self, input: impl Into<String>) -> Self
The application type of the connector.
sourcepub fn set_application_type(self, input: Option<String>) -> Self
pub fn set_application_type(self, input: Option<String>) -> Self
The application type of the connector.
sourcepub fn connector_type(self, input: ConnectorType) -> Self
pub fn connector_type(self, input: ConnectorType) -> Self
The connector type.
sourcepub fn set_connector_type(self, input: Option<ConnectorType>) -> Self
pub fn set_connector_type(self, input: Option<ConnectorType>) -> Self
The connector type.
sourcepub fn connector_label(self, input: impl Into<String>) -> Self
pub fn connector_label(self, input: impl Into<String>) -> Self
A label used for the connector.
sourcepub fn set_connector_label(self, input: Option<String>) -> Self
pub fn set_connector_label(self, input: Option<String>) -> Self
A label used for the connector.
sourcepub fn registered_at(self, input: DateTime) -> Self
pub fn registered_at(self, input: DateTime) -> Self
The time at which the connector was registered.
sourcepub fn set_registered_at(self, input: Option<DateTime>) -> Self
pub fn set_registered_at(self, input: Option<DateTime>) -> Self
The time at which the connector was registered.
sourcepub fn registered_by(self, input: impl Into<String>) -> Self
pub fn registered_by(self, input: impl Into<String>) -> Self
The user who registered the connector.
sourcepub fn set_registered_by(self, input: Option<String>) -> Self
pub fn set_registered_by(self, input: Option<String>) -> Self
The user who registered the connector.
sourcepub fn connector_provisioning_type(
self,
input: ConnectorProvisioningType
) -> Self
pub fn connector_provisioning_type(
self,
input: ConnectorProvisioningType
) -> Self
The provisioning type that the connector uses.
sourcepub fn set_connector_provisioning_type(
self,
input: Option<ConnectorProvisioningType>
) -> Self
pub fn set_connector_provisioning_type(
self,
input: Option<ConnectorProvisioningType>
) -> Self
The provisioning type that the connector uses.
sourcepub fn connector_modes(self, input: impl Into<String>) -> Self
pub fn connector_modes(self, input: impl Into<String>) -> Self
Appends an item to connector_modes
.
To override the contents of this collection use set_connector_modes
.
The connection mode that the connector supports.
sourcepub fn set_connector_modes(self, input: Option<Vec<String>>) -> Self
pub fn set_connector_modes(self, input: Option<Vec<String>>) -> Self
The connection mode that the connector supports.
sourcepub fn build(self) -> ConnectorDetail
pub fn build(self) -> ConnectorDetail
Consumes the builder and constructs a ConnectorDetail
Trait Implementations
impl StructuralPartialEq for Builder
Auto Trait Implementations
impl RefUnwindSafe for Builder
impl Send for Builder
impl Sync for Builder
impl Unpin for Builder
impl UnwindSafe for Builder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more