Struct aws_sdk_appflow::types::ConnectorDetail
source · #[non_exhaustive]pub struct ConnectorDetail { /* private fields */ }Expand description
Information about the registered connector.
Implementations§
source§impl 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.
source§impl ConnectorDetail
impl ConnectorDetail
sourcepub fn builder() -> ConnectorDetailBuilder
pub fn builder() -> ConnectorDetailBuilder
Creates a new builder-style object to manufacture ConnectorDetail.
Trait Implementations§
source§impl Clone for ConnectorDetail
impl Clone for ConnectorDetail
source§fn clone(&self) -> ConnectorDetail
fn clone(&self) -> ConnectorDetail
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for ConnectorDetail
impl Debug for ConnectorDetail
source§impl PartialEq<ConnectorDetail> for ConnectorDetail
impl PartialEq<ConnectorDetail> for ConnectorDetail
source§fn 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 ==.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§
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
Mutably borrows from an owned value. Read more