Struct aws_sdk_appflow::types::ConnectorRuntimeSetting
source · #[non_exhaustive]pub struct ConnectorRuntimeSetting {
pub key: Option<String>,
pub data_type: Option<String>,
pub is_required: bool,
pub label: Option<String>,
pub description: Option<String>,
pub scope: Option<String>,
pub connector_supplied_value_options: Option<Vec<String>>,
}
Expand description
Contains information about the connector runtime settings that are required for flow execution.
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.key: Option<String>
Contains value information about the connector runtime setting.
data_type: Option<String>
Data type of the connector runtime setting.
is_required: bool
Indicates whether this connector runtime setting is required.
label: Option<String>
A label used for connector runtime setting.
description: Option<String>
A description about the connector runtime setting.
scope: Option<String>
Indicates the scope of the connector runtime setting.
connector_supplied_value_options: Option<Vec<String>>
Contains default values for the connector runtime setting that are supplied by the connector.
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) -> &[String]
pub fn connector_supplied_value_options(&self) -> &[String]
Contains default values for the connector runtime setting that are supplied by the connector.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .connector_supplied_value_options.is_none()
.
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ConnectorRuntimeSetting
impl Debug for ConnectorRuntimeSetting
source§impl PartialEq for ConnectorRuntimeSetting
impl PartialEq for ConnectorRuntimeSetting
source§fn eq(&self, other: &ConnectorRuntimeSetting) -> bool
fn eq(&self, other: &ConnectorRuntimeSetting) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ConnectorRuntimeSetting
Auto Trait Implementations§
impl Freeze for ConnectorRuntimeSetting
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more