pub struct Client<C = DynConnector, M = DefaultMiddleware, R = Standard> { /* fields omitted */ }
Expand description

Client for Amazon Forecast Service

Client for invoking operations on Amazon Forecast Service. Each operation on Amazon Forecast Service is a method on this this struct. .send() MUST be invoked on the generated operations to dispatch the request to the service.

Examples

Constructing a client and invoking an operation

    // create a shared configuration. This can be used & shared between multiple service clients.
    let shared_config = aws_config::load_from_env().await;
    let client = aws_sdk_forecast::Client::new(&shared_config);
    // invoke an operation
    /* let rsp = client
        .<operation_name>().
        .<param>("some value")
        .send().await; */

Constructing a client with custom configuration

use aws_config::RetryConfig;
    let shared_config = aws_config::load_from_env().await;
    let config = aws_sdk_forecast::config::Builder::from(&shared_config)
        .retry_config(RetryConfig::disabled())
        .build();
    let client = aws_sdk_forecast::Client::from_conf(config);

Implementations

Creates a client with the given service configuration.

Returns the client’s configuration.

Constructs a fluent builder for the CreateAutoPredictor operation.

See CreateAutoPredictor for more information about the operation and its arguments.

Constructs a fluent builder for the CreateDataset operation.

See CreateDataset for more information about the operation and its arguments.

Constructs a fluent builder for the CreateDatasetGroup operation.

See CreateDatasetGroup for more information about the operation and its arguments.

Constructs a fluent builder for the CreateDatasetImportJob operation.

See CreateDatasetImportJob for more information about the operation and its arguments.

Constructs a fluent builder for the CreateExplainability operation.

See CreateExplainability for more information about the operation and its arguments.

Constructs a fluent builder for the CreateExplainabilityExport operation.

See CreateExplainabilityExport for more information about the operation and its arguments.

Constructs a fluent builder for the CreateForecast operation.

See CreateForecast for more information about the operation and its arguments.

Constructs a fluent builder for the CreateForecastExportJob operation.

See CreateForecastExportJob for more information about the operation and its arguments.

Constructs a fluent builder for the CreatePredictor operation.

See CreatePredictor for more information about the operation and its arguments.

Constructs a fluent builder for the CreatePredictorBacktestExportJob operation.

See CreatePredictorBacktestExportJob for more information about the operation and its arguments.

Constructs a fluent builder for the DeleteDataset operation.

See DeleteDataset for more information about the operation and its arguments.

Constructs a fluent builder for the DeleteDatasetGroup operation.

See DeleteDatasetGroup for more information about the operation and its arguments.

Constructs a fluent builder for the DeleteDatasetImportJob operation.

See DeleteDatasetImportJob for more information about the operation and its arguments.

Constructs a fluent builder for the DeleteExplainability operation.

See DeleteExplainability for more information about the operation and its arguments.

Constructs a fluent builder for the DeleteExplainabilityExport operation.

See DeleteExplainabilityExport for more information about the operation and its arguments.

Constructs a fluent builder for the DeleteForecast operation.

See DeleteForecast for more information about the operation and its arguments.

Constructs a fluent builder for the DeleteForecastExportJob operation.

See DeleteForecastExportJob for more information about the operation and its arguments.

Constructs a fluent builder for the DeletePredictor operation.

See DeletePredictor for more information about the operation and its arguments.

Constructs a fluent builder for the DeletePredictorBacktestExportJob operation.

See DeletePredictorBacktestExportJob for more information about the operation and its arguments.

Constructs a fluent builder for the DeleteResourceTree operation.

See DeleteResourceTree for more information about the operation and its arguments.

Constructs a fluent builder for the DescribeAutoPredictor operation.

See DescribeAutoPredictor for more information about the operation and its arguments.

Constructs a fluent builder for the DescribeDataset operation.

See DescribeDataset for more information about the operation and its arguments.

Constructs a fluent builder for the DescribeDatasetGroup operation.

See DescribeDatasetGroup for more information about the operation and its arguments.

Constructs a fluent builder for the DescribeDatasetImportJob operation.

See DescribeDatasetImportJob for more information about the operation and its arguments.

Constructs a fluent builder for the DescribeExplainability operation.

See DescribeExplainability for more information about the operation and its arguments.

Constructs a fluent builder for the DescribeExplainabilityExport operation.

See DescribeExplainabilityExport for more information about the operation and its arguments.

Constructs a fluent builder for the DescribeForecast operation.

See DescribeForecast for more information about the operation and its arguments.

Constructs a fluent builder for the DescribeForecastExportJob operation.

See DescribeForecastExportJob for more information about the operation and its arguments.

Constructs a fluent builder for the DescribePredictor operation.

See DescribePredictor for more information about the operation and its arguments.

Constructs a fluent builder for the DescribePredictorBacktestExportJob operation.

See DescribePredictorBacktestExportJob for more information about the operation and its arguments.

Constructs a fluent builder for the GetAccuracyMetrics operation.

See GetAccuracyMetrics for more information about the operation and its arguments.

Constructs a fluent builder for the ListDatasetGroups operation.

See ListDatasetGroups for more information about the operation and its arguments. This operation supports pagination. See into_paginator().

Constructs a fluent builder for the ListDatasetImportJobs operation.

See ListDatasetImportJobs for more information about the operation and its arguments. This operation supports pagination. See into_paginator().

Constructs a fluent builder for the ListDatasets operation.

See ListDatasets for more information about the operation and its arguments. This operation supports pagination. See into_paginator().

Constructs a fluent builder for the ListExplainabilities operation.

See ListExplainabilities for more information about the operation and its arguments.

Constructs a fluent builder for the ListExplainabilityExports operation.

See ListExplainabilityExports for more information about the operation and its arguments.

Constructs a fluent builder for the ListForecastExportJobs operation.

See ListForecastExportJobs for more information about the operation and its arguments. This operation supports pagination. See into_paginator().

Constructs a fluent builder for the ListForecasts operation.

See ListForecasts for more information about the operation and its arguments. This operation supports pagination. See into_paginator().

Constructs a fluent builder for the ListPredictorBacktestExportJobs operation.

See ListPredictorBacktestExportJobs for more information about the operation and its arguments. This operation supports pagination. See into_paginator().

Constructs a fluent builder for the ListPredictors operation.

See ListPredictors for more information about the operation and its arguments. This operation supports pagination. See into_paginator().

Constructs a fluent builder for the ListTagsForResource operation.

See ListTagsForResource for more information about the operation and its arguments.

Constructs a fluent builder for the StopResource operation.

See StopResource for more information about the operation and its arguments.

Constructs a fluent builder for the TagResource operation.

See TagResource for more information about the operation and its arguments.

Constructs a fluent builder for the UntagResource operation.

See UntagResource for more information about the operation and its arguments.

Constructs a fluent builder for the UpdateDatasetGroup operation.

See UpdateDatasetGroup for more information about the operation and its arguments.

Creates a client with the given service config and connector override.

Creates a new client from a shared config.

Creates a new client from the service Config.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Performs the conversion.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more