Struct aws_sdk_appflow::operation::update_flow::UpdateFlowInput
source · #[non_exhaustive]pub struct UpdateFlowInput { /* private fields */ }Implementations§
source§impl UpdateFlowInput
impl UpdateFlowInput
sourcepub fn flow_name(&self) -> Option<&str>
pub fn flow_name(&self) -> Option<&str>
The specified name of the flow. Spaces are not allowed. Use underscores (_) or hyphens (-) only.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description of the flow.
sourcepub fn trigger_config(&self) -> Option<&TriggerConfig>
pub fn trigger_config(&self) -> Option<&TriggerConfig>
The trigger settings that determine how and when the flow runs.
sourcepub fn source_flow_config(&self) -> Option<&SourceFlowConfig>
pub fn source_flow_config(&self) -> Option<&SourceFlowConfig>
Contains information about the configuration of the source connector used in the flow.
sourcepub fn destination_flow_config_list(&self) -> Option<&[DestinationFlowConfig]>
pub fn destination_flow_config_list(&self) -> Option<&[DestinationFlowConfig]>
The configuration that controls how Amazon AppFlow transfers data to the destination connector.
sourcepub fn tasks(&self) -> Option<&[Task]>
pub fn tasks(&self) -> Option<&[Task]>
A list of tasks that Amazon AppFlow performs while transferring the data in the flow run.
sourcepub fn metadata_catalog_config(&self) -> Option<&MetadataCatalogConfig>
pub fn metadata_catalog_config(&self) -> Option<&MetadataCatalogConfig>
Specifies the configuration that Amazon AppFlow uses when it catalogs the data that's transferred by the associated flow. When Amazon AppFlow catalogs the data from a flow, it stores metadata in a data catalog.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
The clientToken parameter is an idempotency token. It ensures that your UpdateFlow request completes only once. You choose the value to pass. For example, if you don't receive a response from your request, you can safely retry the request with the same clientToken parameter value.
If you omit a clientToken value, the Amazon Web Services SDK that you are using inserts a value for you. This way, the SDK can safely retry requests multiple times after a network error. You must provide your own value for other use cases.
If you specify input parameters that differ from your first request, an error occurs. If you use a different value for clientToken, Amazon AppFlow considers it a new call to UpdateFlow. The token is active for 8 hours.
source§impl UpdateFlowInput
impl UpdateFlowInput
sourcepub fn builder() -> UpdateFlowInputBuilder
pub fn builder() -> UpdateFlowInputBuilder
Creates a new builder-style object to manufacture UpdateFlowInput.
source§impl UpdateFlowInput
impl UpdateFlowInput
sourcepub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<UpdateFlow, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( self, _config: &Config ) -> Result<Operation<UpdateFlow, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UpdateFlow>
Trait Implementations§
source§impl Clone for UpdateFlowInput
impl Clone for UpdateFlowInput
source§fn clone(&self) -> UpdateFlowInput
fn clone(&self) -> UpdateFlowInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for UpdateFlowInput
impl Debug for UpdateFlowInput
source§impl PartialEq<UpdateFlowInput> for UpdateFlowInput
impl PartialEq<UpdateFlowInput> for UpdateFlowInput
source§fn eq(&self, other: &UpdateFlowInput) -> bool
fn eq(&self, other: &UpdateFlowInput) -> bool
self and other values to be equal, and is used
by ==.