#[non_exhaustive]pub struct DescribeConnectorEntityInput {
pub connector_entity_name: Option<String>,
pub connector_type: Option<ConnectorType>,
pub connector_profile_name: Option<String>,
pub api_version: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.connector_entity_name: Option<String>The entity name for that connector.
connector_type: Option<ConnectorType>The type of connector application, such as Salesforce, Amplitude, and so on.
connector_profile_name: Option<String> The name of the connector profile. The name is unique for each ConnectorProfile in the Amazon Web Services account.
api_version: Option<String>The version of the API that's used by the connector.
Implementations§
source§impl DescribeConnectorEntityInput
impl DescribeConnectorEntityInput
sourcepub fn connector_entity_name(&self) -> Option<&str>
pub fn connector_entity_name(&self) -> Option<&str>
The entity name for that connector.
sourcepub fn connector_type(&self) -> Option<&ConnectorType>
pub fn connector_type(&self) -> Option<&ConnectorType>
The type of connector application, such as Salesforce, Amplitude, and so on.
sourcepub fn connector_profile_name(&self) -> Option<&str>
pub fn connector_profile_name(&self) -> Option<&str>
The name of the connector profile. The name is unique for each ConnectorProfile in the Amazon Web Services account.
sourcepub fn api_version(&self) -> Option<&str>
pub fn api_version(&self) -> Option<&str>
The version of the API that's used by the connector.
source§impl DescribeConnectorEntityInput
impl DescribeConnectorEntityInput
sourcepub fn builder() -> DescribeConnectorEntityInputBuilder
pub fn builder() -> DescribeConnectorEntityInputBuilder
Creates a new builder-style object to manufacture DescribeConnectorEntityInput.
Trait Implementations§
source§impl Clone for DescribeConnectorEntityInput
impl Clone for DescribeConnectorEntityInput
source§fn clone(&self) -> DescribeConnectorEntityInput
fn clone(&self) -> DescribeConnectorEntityInput
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 DescribeConnectorEntityInput
impl Debug for DescribeConnectorEntityInput
source§impl PartialEq for DescribeConnectorEntityInput
impl PartialEq for DescribeConnectorEntityInput
source§fn eq(&self, other: &DescribeConnectorEntityInput) -> bool
fn eq(&self, other: &DescribeConnectorEntityInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DescribeConnectorEntityInput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeConnectorEntityInput
impl Send for DescribeConnectorEntityInput
impl Sync for DescribeConnectorEntityInput
impl Unpin for DescribeConnectorEntityInput
impl UnwindSafe for DescribeConnectorEntityInput
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
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>
Creates a shared type from an unshared type.