aws-sdk-supplychain 1.97.0

AWS SDK for AWS Supply Chain
Documentation
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`CreateDataIntegrationFlow`](crate::operation::create_data_integration_flow::builders::CreateDataIntegrationFlowFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`instance_id(impl Into<String>)`](crate::operation::create_data_integration_flow::builders::CreateDataIntegrationFlowFluentBuilder::instance_id) / [`set_instance_id(Option<String>)`](crate::operation::create_data_integration_flow::builders::CreateDataIntegrationFlowFluentBuilder::set_instance_id):<br>required: **true**<br><p>The Amazon Web Services Supply Chain instance identifier.</p><br>
    ///   - [`name(impl Into<String>)`](crate::operation::create_data_integration_flow::builders::CreateDataIntegrationFlowFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::create_data_integration_flow::builders::CreateDataIntegrationFlowFluentBuilder::set_name):<br>required: **true**<br><p>Name of the DataIntegrationFlow.</p><br>
    ///   - [`sources(DataIntegrationFlowSource)`](crate::operation::create_data_integration_flow::builders::CreateDataIntegrationFlowFluentBuilder::sources) / [`set_sources(Option<Vec::<DataIntegrationFlowSource>>)`](crate::operation::create_data_integration_flow::builders::CreateDataIntegrationFlowFluentBuilder::set_sources):<br>required: **true**<br><p>The source configurations for DataIntegrationFlow.</p><br>
    ///   - [`transformation(DataIntegrationFlowTransformation)`](crate::operation::create_data_integration_flow::builders::CreateDataIntegrationFlowFluentBuilder::transformation) / [`set_transformation(Option<DataIntegrationFlowTransformation>)`](crate::operation::create_data_integration_flow::builders::CreateDataIntegrationFlowFluentBuilder::set_transformation):<br>required: **true**<br><p>The transformation configurations for DataIntegrationFlow.</p><br>
    ///   - [`target(DataIntegrationFlowTarget)`](crate::operation::create_data_integration_flow::builders::CreateDataIntegrationFlowFluentBuilder::target) / [`set_target(Option<DataIntegrationFlowTarget>)`](crate::operation::create_data_integration_flow::builders::CreateDataIntegrationFlowFluentBuilder::set_target):<br>required: **true**<br><p>The target configurations for DataIntegrationFlow.</p><br>
    ///   - [`tags(impl Into<String>, impl Into<String>)`](crate::operation::create_data_integration_flow::builders::CreateDataIntegrationFlowFluentBuilder::tags) / [`set_tags(Option<HashMap::<String, String>>)`](crate::operation::create_data_integration_flow::builders::CreateDataIntegrationFlowFluentBuilder::set_tags):<br>required: **false**<br><p>The tags of the DataIntegrationFlow to be created</p><br>
    /// - On success, responds with [`CreateDataIntegrationFlowOutput`](crate::operation::create_data_integration_flow::CreateDataIntegrationFlowOutput) with field(s):
    ///   - [`instance_id(String)`](crate::operation::create_data_integration_flow::CreateDataIntegrationFlowOutput::instance_id): <p>The Amazon Web Services Supply Chain instance identifier.</p>
    ///   - [`name(String)`](crate::operation::create_data_integration_flow::CreateDataIntegrationFlowOutput::name): <p>The name of the DataIntegrationFlow created.</p>
    /// - On failure, responds with [`SdkError<CreateDataIntegrationFlowError>`](crate::operation::create_data_integration_flow::CreateDataIntegrationFlowError)
    pub fn create_data_integration_flow(&self) -> crate::operation::create_data_integration_flow::builders::CreateDataIntegrationFlowFluentBuilder {
        crate::operation::create_data_integration_flow::builders::CreateDataIntegrationFlowFluentBuilder::new(self.handle.clone())
    }
}