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 ==
.