Struct aws_sdk_appflow::types::ConnectorRuntimeSetting
source · #[non_exhaustive]pub struct ConnectorRuntimeSetting { /* private fields */ }Expand description
Contains information about the connector runtime settings that are required for flow execution.
Implementations§
source§impl ConnectorRuntimeSetting
impl ConnectorRuntimeSetting
sourcepub fn key(&self) -> Option<&str>
pub fn key(&self) -> Option<&str>
Contains value information about the connector runtime setting.
sourcepub fn is_required(&self) -> bool
pub fn is_required(&self) -> bool
Indicates whether this connector runtime setting is required.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description about the connector runtime setting.
sourcepub fn connector_supplied_value_options(&self) -> Option<&[String]>
pub fn connector_supplied_value_options(&self) -> Option<&[String]>
Contains default values for the connector runtime setting that are supplied by the connector.
source§impl ConnectorRuntimeSetting
impl ConnectorRuntimeSetting
sourcepub fn builder() -> ConnectorRuntimeSettingBuilder
pub fn builder() -> ConnectorRuntimeSettingBuilder
Creates a new builder-style object to manufacture ConnectorRuntimeSetting.
Trait Implementations§
source§impl Clone for ConnectorRuntimeSetting
impl Clone for ConnectorRuntimeSetting
source§fn clone(&self) -> ConnectorRuntimeSetting
fn clone(&self) -> ConnectorRuntimeSetting
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 ConnectorRuntimeSetting
impl Debug for ConnectorRuntimeSetting
source§impl PartialEq<ConnectorRuntimeSetting> for ConnectorRuntimeSetting
impl PartialEq<ConnectorRuntimeSetting> for ConnectorRuntimeSetting
source§fn eq(&self, other: &ConnectorRuntimeSetting) -> bool
fn eq(&self, other: &ConnectorRuntimeSetting) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ConnectorRuntimeSetting
Auto Trait Implementations§
impl RefUnwindSafe for ConnectorRuntimeSetting
impl Send for ConnectorRuntimeSetting
impl Sync for ConnectorRuntimeSetting
impl Unpin for ConnectorRuntimeSetting
impl UnwindSafe for ConnectorRuntimeSetting
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