Struct aws_sdk_appflow::model::ConnectorDetail
source · [−]#[non_exhaustive]pub struct ConnectorDetail {
pub connector_description: Option<String>,
pub connector_name: Option<String>,
pub connector_owner: Option<String>,
pub connector_version: Option<String>,
pub application_type: Option<String>,
pub connector_type: Option<ConnectorType>,
pub connector_label: Option<String>,
pub registered_at: Option<DateTime>,
pub registered_by: Option<String>,
pub connector_provisioning_type: Option<ConnectorProvisioningType>,
pub connector_modes: Option<Vec<String>>,
}
Expand description
Information about the registered connector.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.connector_description: Option<String>
A description about the registered connector.
connector_name: Option<String>
The name of the connector.
connector_owner: Option<String>
The owner of the connector.
connector_version: Option<String>
The connector version.
application_type: Option<String>
The application type of the connector.
connector_type: Option<ConnectorType>
The connector type.
connector_label: Option<String>
A label used for the connector.
registered_at: Option<DateTime>
The time at which the connector was registered.
registered_by: Option<String>
The user who registered the connector.
connector_provisioning_type: Option<ConnectorProvisioningType>
The provisioning type that the connector uses.
connector_modes: Option<Vec<String>>
The connection mode that the connector supports.
Implementations
sourceimpl ConnectorDetail
impl ConnectorDetail
sourcepub fn connector_description(&self) -> Option<&str>
pub fn connector_description(&self) -> Option<&str>
A description about the registered connector.
sourcepub fn connector_name(&self) -> Option<&str>
pub fn connector_name(&self) -> Option<&str>
The name of the connector.
sourcepub fn connector_owner(&self) -> Option<&str>
pub fn connector_owner(&self) -> Option<&str>
The owner of the connector.
sourcepub fn connector_version(&self) -> Option<&str>
pub fn connector_version(&self) -> Option<&str>
The connector version.
sourcepub fn application_type(&self) -> Option<&str>
pub fn application_type(&self) -> Option<&str>
The application type of the connector.
sourcepub fn connector_type(&self) -> Option<&ConnectorType>
pub fn connector_type(&self) -> Option<&ConnectorType>
The connector type.
sourcepub fn connector_label(&self) -> Option<&str>
pub fn connector_label(&self) -> Option<&str>
A label used for the connector.
sourcepub fn registered_at(&self) -> Option<&DateTime>
pub fn registered_at(&self) -> Option<&DateTime>
The time at which the connector was registered.
sourcepub fn registered_by(&self) -> Option<&str>
pub fn registered_by(&self) -> Option<&str>
The user who registered the connector.
sourcepub fn connector_provisioning_type(&self) -> Option<&ConnectorProvisioningType>
pub fn connector_provisioning_type(&self) -> Option<&ConnectorProvisioningType>
The provisioning type that the connector uses.
sourceimpl ConnectorDetail
impl ConnectorDetail
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ConnectorDetail
Trait Implementations
sourceimpl Clone for ConnectorDetail
impl Clone for ConnectorDetail
sourcefn clone(&self) -> ConnectorDetail
fn clone(&self) -> ConnectorDetail
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ConnectorDetail
impl Debug for ConnectorDetail
sourceimpl PartialEq<ConnectorDetail> for ConnectorDetail
impl PartialEq<ConnectorDetail> for ConnectorDetail
sourcefn eq(&self, other: &ConnectorDetail) -> bool
fn eq(&self, other: &ConnectorDetail) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ConnectorDetail) -> bool
fn ne(&self, other: &ConnectorDetail) -> bool
This method tests for !=
.
impl StructuralPartialEq for ConnectorDetail
Auto Trait Implementations
impl RefUnwindSafe for ConnectorDetail
impl Send for ConnectorDetail
impl Sync for ConnectorDetail
impl Unpin for ConnectorDetail
impl UnwindSafe for ConnectorDetail
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
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> 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