1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`StartLoaderJob`](crate::operation::start_loader_job::builders::StartLoaderJobFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`source(impl Into<String>)`](crate::operation::start_loader_job::builders::StartLoaderJobFluentBuilder::source) / [`set_source(Option<String>)`](crate::operation::start_loader_job::builders::StartLoaderJobFluentBuilder::set_source):<br>required: **true**<br><p>The <code>source</code> parameter accepts an S3 URI that identifies a single file, multiple files, a folder, or multiple folders. Neptune loads every data file in any folder that is specified.</p> <p>The URI can be in any of the following formats.</p> <ul>  <li>   <p><code>s3://(bucket_name)/(object-key-name)</code></p></li>  <li>   <p><code>https://s3.amazonaws.com/(bucket_name)/(object-key-name)</code></p></li>  <li>   <p><code>https://s3.us-east-1.amazonaws.com/(bucket_name)/(object-key-name)</code></p></li> </ul> <p>The <code>object-key-name</code> element of the URI is equivalent to the <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListObjects.html#API_ListObjects_RequestParameters">prefix</a> parameter in an S3 <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListObjects.html">ListObjects</a> API call. It identifies all the objects in the specified S3 bucket whose names begin with that prefix. That can be a single file or folder, or multiple files and/or folders.</p> <p>The specified folder or folders can contain multiple vertex files and multiple edge files.</p><br>
    ///   - [`format(Format)`](crate::operation::start_loader_job::builders::StartLoaderJobFluentBuilder::format) / [`set_format(Option<Format>)`](crate::operation::start_loader_job::builders::StartLoaderJobFluentBuilder::set_format):<br>required: **true**<br><p>The format of the data. For more information about data formats for the Neptune <code>Loader</code> command, see <a href="https://docs.aws.amazon.com/neptune/latest/userguide/bulk-load-tutorial-format.html">Load Data Formats</a>.</p> <p class="title"><b>Allowed values</b></p> <ul>  <li>   <p><b> <code>csv</code> </b> for the <a href="https://docs.aws.amazon.com/neptune/latest/userguide/bulk-load-tutorial-format-gremlin.html">Gremlin CSV data format</a>.</p></li>  <li>   <p><b> <code>opencypher</code> </b> for the <a href="https://docs.aws.amazon.com/neptune/latest/userguide/bulk-load-tutorial-format-opencypher.html">openCypher CSV data format</a>.</p></li>  <li>   <p><b> <code>ntriples</code> </b> for the <a href="https://www.w3.org/TR/n-triples/">N-Triples RDF data format</a>.</p></li>  <li>   <p><b> <code>nquads</code> </b> for the <a href="https://www.w3.org/TR/n-quads/">N-Quads RDF data format</a>.</p></li>  <li>   <p><b> <code>rdfxml</code> </b> for the <a href="https://www.w3.org/TR/rdf-syntax-grammar/">RDF\XML RDF data format</a>.</p></li>  <li>   <p><b> <code>turtle</code> </b> for the <a href="https://www.w3.org/TR/turtle/">Turtle RDF data format</a>.</p></li> </ul><br>
    ///   - [`s3_bucket_region(S3BucketRegion)`](crate::operation::start_loader_job::builders::StartLoaderJobFluentBuilder::s3_bucket_region) / [`set_s3_bucket_region(Option<S3BucketRegion>)`](crate::operation::start_loader_job::builders::StartLoaderJobFluentBuilder::set_s3_bucket_region):<br>required: **true**<br><p>The Amazon region of the S3 bucket. This must match the Amazon Region of the DB cluster.</p><br>
    ///   - [`iam_role_arn(impl Into<String>)`](crate::operation::start_loader_job::builders::StartLoaderJobFluentBuilder::iam_role_arn) / [`set_iam_role_arn(Option<String>)`](crate::operation::start_loader_job::builders::StartLoaderJobFluentBuilder::set_iam_role_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) for an IAM role to be assumed by the Neptune DB instance for access to the S3 bucket. The IAM role ARN provided here should be attached to the DB cluster (see <a href="https://docs.aws.amazon.com/neptune/latest/userguide/bulk-load-tutorial-IAM-add-role-cluster.html">Adding the IAM Role to an Amazon Neptune Cluster</a>.</p><br>
    ///   - [`mode(Mode)`](crate::operation::start_loader_job::builders::StartLoaderJobFluentBuilder::mode) / [`set_mode(Option<Mode>)`](crate::operation::start_loader_job::builders::StartLoaderJobFluentBuilder::set_mode):<br>required: **false**<br><p>The load job mode.</p> <p><i>Allowed values</i>: <code>RESUME</code>, <code>NEW</code>, <code>AUTO</code>.</p> <p><i>Default value</i>: <code>AUTO</code>.</p> <p class="title"><b></b></p> <ul>  <li>   <p><code>RESUME</code> &nbsp; – &nbsp; In RESUME mode, the loader looks for a previous load from this source, and if it finds one, resumes that load job. If no previous load job is found, the loader stops.</p>   <p>The loader avoids reloading files that were successfully loaded in a previous job. It only tries to process failed files. If you dropped previously loaded data from your Neptune cluster, that data is not reloaded in this mode. If a previous load job loaded all files from the same source successfully, nothing is reloaded, and the loader returns success.</p></li>  <li>   <p><code>NEW</code> &nbsp; – &nbsp; In NEW mode, the creates a new load request regardless of any previous loads. You can use this mode to reload all the data from a source after dropping previously loaded data from your Neptune cluster, or to load new data available at the same source.</p></li>  <li>   <p><code>AUTO</code> &nbsp; – &nbsp; In AUTO mode, the loader looks for a previous load job from the same source, and if it finds one, resumes that job, just as in <code>RESUME</code> mode.</p>   <p>If the loader doesn't find a previous load job from the same source, it loads all data from the source, just as in <code>NEW</code> mode.</p></li> </ul><br>
    ///   - [`fail_on_error(bool)`](crate::operation::start_loader_job::builders::StartLoaderJobFluentBuilder::fail_on_error) / [`set_fail_on_error(Option<bool>)`](crate::operation::start_loader_job::builders::StartLoaderJobFluentBuilder::set_fail_on_error):<br>required: **false**<br><p><b> <code>failOnError</code> </b> &nbsp; – &nbsp; A flag to toggle a complete stop on an error.</p> <p><i>Allowed values</i>: <code>"TRUE"</code>, <code>"FALSE"</code>.</p> <p><i>Default value</i>: <code>"TRUE"</code>.</p> <p>When this parameter is set to <code>"FALSE"</code>, the loader tries to load all the data in the location specified, skipping any entries with errors.</p> <p>When this parameter is set to <code>"TRUE"</code>, the loader stops as soon as it encounters an error. Data loaded up to that point persists.</p><br>
    ///   - [`parallelism(Parallelism)`](crate::operation::start_loader_job::builders::StartLoaderJobFluentBuilder::parallelism) / [`set_parallelism(Option<Parallelism>)`](crate::operation::start_loader_job::builders::StartLoaderJobFluentBuilder::set_parallelism):<br>required: **false**<br><p>The optional <code>parallelism</code> parameter can be set to reduce the number of threads used by the bulk load process.</p> <p><i>Allowed values</i>:</p> <ul>  <li>   <p><code>LOW</code> – &nbsp; The number of threads used is the number of available vCPUs divided by 8.</p></li>  <li>   <p><code>MEDIUM</code> – &nbsp; The number of threads used is the number of available vCPUs divided by 2.</p></li>  <li>   <p><code>HIGH</code> – &nbsp; The number of threads used is the same as the number of available vCPUs.</p></li>  <li>   <p><code>OVERSUBSCRIBE</code> – &nbsp; The number of threads used is the number of available vCPUs multiplied by 2. If this value is used, the bulk loader takes up all available resources.</p>   <p>This does not mean, however, that the <code>OVERSUBSCRIBE</code> setting results in 100% CPU utilization. Because the load operation is I/O bound, the highest CPU utilization to expect is in the 60% to 70% range.</p></li> </ul> <p><i>Default value</i>: <code>HIGH</code></p> <p>The <code>parallelism</code> setting can sometimes result in a deadlock between threads when loading openCypher data. When this happens, Neptune returns the <code>LOAD_DATA_DEADLOCK</code> error. You can generally fix the issue by setting <code>parallelism</code> to a lower setting and retrying the load command.</p><br>
    ///   - [`parser_configuration(impl Into<String>, impl Into<String>)`](crate::operation::start_loader_job::builders::StartLoaderJobFluentBuilder::parser_configuration) / [`set_parser_configuration(Option<HashMap::<String, String>>)`](crate::operation::start_loader_job::builders::StartLoaderJobFluentBuilder::set_parser_configuration):<br>required: **false**<br><p><b> <code>parserConfiguration</code> </b> &nbsp; – &nbsp; An optional object with additional parser configuration values. Each of the child parameters is also optional:</p> <p class="title"><b></b></p> <ul>  <li>   <p><b> <code>namedGraphUri</code> </b> &nbsp; – &nbsp; The default graph for all RDF formats when no graph is specified (for non-quads formats and NQUAD entries with no graph).</p>   <p>The default is <code>https://aws.amazon.com/neptune/vocab/v01/DefaultNamedGraph</code>.</p></li>  <li>   <p><b> <code>baseUri</code> </b> &nbsp; – &nbsp; The base URI for RDF/XML and Turtle formats.</p>   <p>The default is <code>https://aws.amazon.com/neptune/default</code>.</p></li>  <li>   <p><b> <code>allowEmptyStrings</code> </b> &nbsp; – &nbsp; Gremlin users need to be able to pass empty string values("") as node and edge properties when loading CSV data. If <code>allowEmptyStrings</code> is set to <code>false</code> (the default), such empty strings are treated as nulls and are not loaded.</p>   <p>If <code>allowEmptyStrings</code> is set to <code>true</code>, the loader treats empty strings as valid property values and loads them accordingly.</p></li> </ul><br>
    ///   - [`update_single_cardinality_properties(bool)`](crate::operation::start_loader_job::builders::StartLoaderJobFluentBuilder::update_single_cardinality_properties) / [`set_update_single_cardinality_properties(Option<bool>)`](crate::operation::start_loader_job::builders::StartLoaderJobFluentBuilder::set_update_single_cardinality_properties):<br>required: **false**<br><p><code>updateSingleCardinalityProperties</code> is an optional parameter that controls how the bulk loader treats a new value for single-cardinality vertex or edge properties. This is not supported for loading openCypher data.</p> <p><i>Allowed values</i>: <code>"TRUE"</code>, <code>"FALSE"</code>.</p> <p><i>Default value</i>: <code>"FALSE"</code>.</p> <p>By default, or when <code>updateSingleCardinalityProperties</code> is explicitly set to <code>"FALSE"</code>, the loader treats a new value as an error, because it violates single cardinality.</p> <p>When <code>updateSingleCardinalityProperties</code> is set to <code>"TRUE"</code>, on the other hand, the bulk loader replaces the existing value with the new one. If multiple edge or single-cardinality vertex property values are provided in the source file(s) being loaded, the final value at the end of the bulk load could be any one of those new values. The loader only guarantees that the existing value has been replaced by one of the new ones.</p><br>
    ///   - [`queue_request(bool)`](crate::operation::start_loader_job::builders::StartLoaderJobFluentBuilder::queue_request) / [`set_queue_request(Option<bool>)`](crate::operation::start_loader_job::builders::StartLoaderJobFluentBuilder::set_queue_request):<br>required: **false**<br><p>This is an optional flag parameter that indicates whether the load request can be queued up or not.</p> <p>You don't have to wait for one load job to complete before issuing the next one, because Neptune can queue up as many as 64 jobs at a time, provided that their <code>queueRequest</code> parameters are all set to <code>"TRUE"</code>. The queue order of the jobs will be first-in-first-out (FIFO).</p> <p>If the <code>queueRequest</code> parameter is omitted or set to <code>"FALSE"</code>, the load request will fail if another load job is already running.</p> <p><i>Allowed values</i>: <code>"TRUE"</code>, <code>"FALSE"</code>.</p> <p><i>Default value</i>: <code>"FALSE"</code>.</p><br>
    ///   - [`dependencies(impl Into<String>)`](crate::operation::start_loader_job::builders::StartLoaderJobFluentBuilder::dependencies) / [`set_dependencies(Option<Vec::<String>>)`](crate::operation::start_loader_job::builders::StartLoaderJobFluentBuilder::set_dependencies):<br>required: **false**<br><p>This is an optional parameter that can make a queued load request contingent on the successful completion of one or more previous jobs in the queue.</p> <p>Neptune can queue up as many as 64 load requests at a time, if their <code>queueRequest</code> parameters are set to <code>"TRUE"</code>. The <code>dependencies</code> parameter lets you make execution of such a queued request dependent on the successful completion of one or more specified previous requests in the queue.</p> <p>For example, if load <code>Job-A</code> and <code>Job-B</code> are independent of each other, but load <code>Job-C</code> needs <code>Job-A</code> and <code>Job-B</code> to be finished before it begins, proceed as follows:</p> <ol>  <li>   <p>Submit <code>load-job-A</code> and <code>load-job-B</code> one after another in any order, and save their load-ids.</p></li>  <li>   <p>Submit <code>load-job-C</code> with the load-ids of the two jobs in its <code>dependencies</code> field:</p></li> </ol> <p>Because of the <code>dependencies</code> parameter, the bulk loader will not start <code>Job-C</code> until <code>Job-A</code> and <code>Job-B</code> have completed successfully. If either one of them fails, Job-C will not be executed, and its status will be set to <code>LOAD_FAILED_BECAUSE_DEPENDENCY_NOT_SATISFIED</code>.</p> <p>You can set up multiple levels of dependency in this way, so that the failure of one job will cause all requests that are directly or indirectly dependent on it to be cancelled.</p><br>
    ///   - [`user_provided_edge_ids(bool)`](crate::operation::start_loader_job::builders::StartLoaderJobFluentBuilder::user_provided_edge_ids) / [`set_user_provided_edge_ids(Option<bool>)`](crate::operation::start_loader_job::builders::StartLoaderJobFluentBuilder::set_user_provided_edge_ids):<br>required: **false**<br><p>This parameter is required only when loading openCypher data that contains relationship IDs. It must be included and set to <code>True</code> when openCypher relationship IDs are explicitly provided in the load data (recommended).</p> <p>When <code>userProvidedEdgeIds</code> is absent or set to <code>True</code>, an <code>:ID</code> column must be present in every relationship file in the load.</p> <p>When <code>userProvidedEdgeIds</code> is present and set to <code>False</code>, relationship files in the load <b>must not</b> contain an <code>:ID</code> column. Instead, the Neptune loader automatically generates an ID for each relationship.</p> <p>It's useful to provide relationship IDs explicitly so that the loader can resume loading after error in the CSV data have been fixed, without having to reload any relationships that have already been loaded. If relationship IDs have not been explicitly assigned, the loader cannot resume a failed load if any relationship file has had to be corrected, and must instead reload all the relationships.</p><br>
    /// - On success, responds with [`StartLoaderJobOutput`](crate::operation::start_loader_job::StartLoaderJobOutput) with field(s):
    ///   - [`status(String)`](crate::operation::start_loader_job::StartLoaderJobOutput::status): <p>The HTTP return code indicating the status of the load job.</p>
    ///   - [`payload(HashMap::<String, String>)`](crate::operation::start_loader_job::StartLoaderJobOutput::payload): <p>Contains a <code>loadId</code> name-value pair that provides an identifier for the load operation.</p>
    /// - On failure, responds with [`SdkError<StartLoaderJobError>`](crate::operation::start_loader_job::StartLoaderJobError)
    pub fn start_loader_job(&self) -> crate::operation::start_loader_job::builders::StartLoaderJobFluentBuilder {
        crate::operation::start_loader_job::builders::StartLoaderJobFluentBuilder::new(self.handle.clone())
    }
}