Struct aws_sdk_appflow::model::ConnectorDetail
source · [−]#[non_exhaustive]pub struct ConnectorDetail { /* private fields */ }
Expand description
Information about the registered connector.
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.
sourcepub fn connector_modes(&self) -> Option<&[String]>
pub fn connector_modes(&self) -> Option<&[String]>
The connection mode that the connector supports.
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 moresourceimpl 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
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 Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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