logo
pub struct IotAnalyticsClient { /* private fields */ }
Expand description

A client for the AWS IoT Analytics API.

Implementations

Creates a client backed by the default tokio event loop.

The client will use the default credentials provider and tls client.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Sends messages to a channel.

Cancels the reprocessing of data through the pipeline.

Creates a channel. A channel collects data from an MQTT topic and archives the raw, unprocessed messages before publishing the data to a pipeline.

Creates a dataset. A dataset stores data retrieved from a data store by applying a queryAction (a SQL query) or a containerAction (executing a containerized application). This operation creates the skeleton of a dataset. The dataset can be populated manually by calling CreateDatasetContent or automatically according to a trigger you specify.

Creates the content of a data set by applying a queryAction (a SQL query) or a containerAction (executing a containerized application).

Creates a data store, which is a repository for messages. Only data stores that are used to save pipeline data can be configured with ParquetConfiguration.

Creates a pipeline. A pipeline consumes messages from a channel and allows you to process the messages before storing them in a data store. You must specify both a channel and a datastore activity and, optionally, as many as 23 additional activities in the pipelineActivities array.

Deletes the specified channel.

Deletes the specified dataset.

You do not have to delete the content of the dataset before you perform this operation.

Deletes the content of the specified dataset.

Deletes the specified data store.

Deletes the specified pipeline.

Retrieves information about a channel.

Retrieves information about a dataset.

Retrieves information about a data store.

Retrieves the current settings of the AWS IoT Analytics logging options.

Retrieves information about a pipeline.

Retrieves the contents of a data set as presigned URIs.

Retrieves a list of channels.

Lists information about data set contents that have been created.

Retrieves information about data sets.

Retrieves a list of data stores.

Retrieves a list of pipelines.

Lists the tags (metadata) that you have assigned to the resource.

Sets or updates the AWS IoT Analytics logging options.

If you update the value of any loggingOptions field, it takes up to one minute for the change to take effect. Also, if you change the policy attached to the role you specified in the roleArn field (for example, to correct an invalid policy), it takes up to five minutes for that change to take effect.

Simulates the results of running a pipeline activity on a message payload.

Retrieves a sample of messages from the specified channel ingested during the specified timeframe. Up to 10 messages can be retrieved.

Starts the reprocessing of raw message data through the pipeline.

Adds to or modifies the tags of the given resource. Tags are metadata that can be used to manage a resource.

Removes the given tags (metadata) from the resource.

Updates the settings of a channel.

Updates the settings of a data set.

Updates the settings of a data store.

Updates the settings of a pipeline. You must specify both a channel and a datastore activity and, optionally, as many as 23 additional activities in the pipelineActivities array.

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

Returns the argument unchanged.

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

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

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