[][src]Struct rusoto_kinesisanalyticsv2::KinesisAnalyticsV2Client

pub struct KinesisAnalyticsV2Client { /* fields omitted */ }

A client for the Kinesis Analytics V2 API.

Implementations

impl KinesisAnalyticsV2Client[src]

pub fn new(region: Region) -> KinesisAnalyticsV2Client[src]

Creates a client backed by the default tokio event loop.

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

pub fn new_with<P, D>(
    request_dispatcher: D,
    credentials_provider: P,
    region: Region
) -> KinesisAnalyticsV2Client where
    P: ProvideAwsCredentials + Send + Sync + 'static,
    D: DispatchSignedRequest + Send + Sync + 'static, 
[src]

pub fn new_with_client(
    client: Client,
    region: Region
) -> KinesisAnalyticsV2Client
[src]

Trait Implementations

impl Clone for KinesisAnalyticsV2Client[src]

impl KinesisAnalyticsV2 for KinesisAnalyticsV2Client[src]

pub fn add_application_cloud_watch_logging_option<'life0, 'async_trait>(
    &'life0 self,
    input: AddApplicationCloudWatchLoggingOptionRequest
) -> Pin<Box<dyn Future<Output = Result<AddApplicationCloudWatchLoggingOptionResponse, RusotoError<AddApplicationCloudWatchLoggingOptionError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Adds an Amazon CloudWatch log stream to monitor application configuration errors.

pub fn add_application_input<'life0, 'async_trait>(
    &'life0 self,
    input: AddApplicationInputRequest
) -> Pin<Box<dyn Future<Output = Result<AddApplicationInputResponse, RusotoError<AddApplicationInputError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Adds a streaming source to your SQL-based Amazon Kinesis Data Analytics application.

You can add a streaming source when you create an application, or you can use this operation to add a streaming source after you create an application. For more information, see CreateApplication.

Any configuration update, including adding a streaming source using this operation, results in a new version of the application. You can use the DescribeApplication operation to find the current application version.

pub fn add_application_input_processing_configuration<'life0, 'async_trait>(
    &'life0 self,
    input: AddApplicationInputProcessingConfigurationRequest
) -> Pin<Box<dyn Future<Output = Result<AddApplicationInputProcessingConfigurationResponse, RusotoError<AddApplicationInputProcessingConfigurationError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Adds an InputProcessingConfiguration to an SQL-based Kinesis Data Analytics application. An input processor pre-processes records on the input stream before the application's SQL code executes. Currently, the only input processor available is AWS Lambda.

pub fn add_application_output<'life0, 'async_trait>(
    &'life0 self,
    input: AddApplicationOutputRequest
) -> Pin<Box<dyn Future<Output = Result<AddApplicationOutputResponse, RusotoError<AddApplicationOutputError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Adds an external destination to your SQL-based Amazon Kinesis Data Analytics application.

If you want Kinesis Data Analytics to deliver data from an in-application stream within your application to an external destination (such as an Kinesis data stream, a Kinesis Data Firehose delivery stream, or an AWS Lambda function), you add the relevant configuration to your application using this operation. You can configure one or more outputs for your application. Each output configuration maps an in-application stream and an external destination.

You can use one of the output configurations to deliver data from your in-application error stream to an external destination so that you can analyze the errors.

Any configuration update, including adding a streaming source using this operation, results in a new version of the application. You can use the DescribeApplication operation to find the current application version.

pub fn add_application_reference_data_source<'life0, 'async_trait>(
    &'life0 self,
    input: AddApplicationReferenceDataSourceRequest
) -> Pin<Box<dyn Future<Output = Result<AddApplicationReferenceDataSourceResponse, RusotoError<AddApplicationReferenceDataSourceError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Adds a reference data source to an existing SQL-based Amazon Kinesis Data Analytics application.

Kinesis Data Analytics reads reference data (that is, an Amazon S3 object) and creates an in-application table within your application. In the request, you provide the source (S3 bucket name and object key name), name of the in-application table to create, and the necessary mapping information that describes how data in an Amazon S3 object maps to columns in the resulting in-application table.

pub fn add_application_vpc_configuration<'life0, 'async_trait>(
    &'life0 self,
    input: AddApplicationVpcConfigurationRequest
) -> Pin<Box<dyn Future<Output = Result<AddApplicationVpcConfigurationResponse, RusotoError<AddApplicationVpcConfigurationError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Adds a Virtual Private Cloud (VPC) configuration to the application. Applications can use VPCs to store and access resources securely.

Note the following about VPC configurations for Kinesis Data Analytics applications:

  • VPC configurations are not supported for SQL applications.

  • When a VPC is added to a Kinesis Data Analytics application, the application can no longer be accessed from the Internet directly. To enable Internet access to the application, add an Internet gateway to your VPC.

pub fn create_application<'life0, 'async_trait>(
    &'life0 self,
    input: CreateApplicationRequest
) -> Pin<Box<dyn Future<Output = Result<CreateApplicationResponse, RusotoError<CreateApplicationError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Creates an Amazon Kinesis Data Analytics application. For information about creating a Kinesis Data Analytics application, see Creating an Application.

pub fn create_application_snapshot<'life0, 'async_trait>(
    &'life0 self,
    input: CreateApplicationSnapshotRequest
) -> Pin<Box<dyn Future<Output = Result<CreateApplicationSnapshotResponse, RusotoError<CreateApplicationSnapshotError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Creates a snapshot of the application's state data.

pub fn delete_application<'life0, 'async_trait>(
    &'life0 self,
    input: DeleteApplicationRequest
) -> Pin<Box<dyn Future<Output = Result<DeleteApplicationResponse, RusotoError<DeleteApplicationError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Deletes the specified application. Kinesis Data Analytics halts application execution and deletes the application.

pub fn delete_application_cloud_watch_logging_option<'life0, 'async_trait>(
    &'life0 self,
    input: DeleteApplicationCloudWatchLoggingOptionRequest
) -> Pin<Box<dyn Future<Output = Result<DeleteApplicationCloudWatchLoggingOptionResponse, RusotoError<DeleteApplicationCloudWatchLoggingOptionError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Deletes an Amazon CloudWatch log stream from an Amazon Kinesis Data Analytics application.

pub fn delete_application_input_processing_configuration<'life0, 'async_trait>(
    &'life0 self,
    input: DeleteApplicationInputProcessingConfigurationRequest
) -> Pin<Box<dyn Future<Output = Result<DeleteApplicationInputProcessingConfigurationResponse, RusotoError<DeleteApplicationInputProcessingConfigurationError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Deletes an InputProcessingConfiguration from an input.

pub fn delete_application_output<'life0, 'async_trait>(
    &'life0 self,
    input: DeleteApplicationOutputRequest
) -> Pin<Box<dyn Future<Output = Result<DeleteApplicationOutputResponse, RusotoError<DeleteApplicationOutputError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Deletes the output destination configuration from your SQL-based Amazon Kinesis Data Analytics application's configuration. Kinesis Data Analytics will no longer write data from the corresponding in-application stream to the external output destination.

pub fn delete_application_reference_data_source<'life0, 'async_trait>(
    &'life0 self,
    input: DeleteApplicationReferenceDataSourceRequest
) -> Pin<Box<dyn Future<Output = Result<DeleteApplicationReferenceDataSourceResponse, RusotoError<DeleteApplicationReferenceDataSourceError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Deletes a reference data source configuration from the specified SQL-based Amazon Kinesis Data Analytics application's configuration.

If the application is running, Kinesis Data Analytics immediately removes the in-application table that you created using the AddApplicationReferenceDataSource operation.

pub fn delete_application_snapshot<'life0, 'async_trait>(
    &'life0 self,
    input: DeleteApplicationSnapshotRequest
) -> Pin<Box<dyn Future<Output = Result<DeleteApplicationSnapshotResponse, RusotoError<DeleteApplicationSnapshotError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Deletes a snapshot of application state.

pub fn delete_application_vpc_configuration<'life0, 'async_trait>(
    &'life0 self,
    input: DeleteApplicationVpcConfigurationRequest
) -> Pin<Box<dyn Future<Output = Result<DeleteApplicationVpcConfigurationResponse, RusotoError<DeleteApplicationVpcConfigurationError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Removes a VPC configuration from a Kinesis Data Analytics application.

pub fn describe_application<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeApplicationRequest
) -> Pin<Box<dyn Future<Output = Result<DescribeApplicationResponse, RusotoError<DescribeApplicationError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns information about a specific Amazon Kinesis Data Analytics application.

If you want to retrieve a list of all applications in your account, use the ListApplications operation.

pub fn describe_application_snapshot<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeApplicationSnapshotRequest
) -> Pin<Box<dyn Future<Output = Result<DescribeApplicationSnapshotResponse, RusotoError<DescribeApplicationSnapshotError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns information about a snapshot of application state data.

pub fn discover_input_schema<'life0, 'async_trait>(
    &'life0 self,
    input: DiscoverInputSchemaRequest
) -> Pin<Box<dyn Future<Output = Result<DiscoverInputSchemaResponse, RusotoError<DiscoverInputSchemaError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Infers a schema for an SQL-based Amazon Kinesis Data Analytics application by evaluating sample records on the specified streaming source (Kinesis data stream or Kinesis Data Firehose delivery stream) or Amazon S3 object. In the response, the operation returns the inferred schema and also the sample records that the operation used to infer the schema.

You can use the inferred schema when configuring a streaming source for your application. When you create an application using the Kinesis Data Analytics console, the console uses this operation to infer a schema and show it in the console user interface.

pub fn list_application_snapshots<'life0, 'async_trait>(
    &'life0 self,
    input: ListApplicationSnapshotsRequest
) -> Pin<Box<dyn Future<Output = Result<ListApplicationSnapshotsResponse, RusotoError<ListApplicationSnapshotsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Lists information about the current application snapshots.

pub fn list_applications<'life0, 'async_trait>(
    &'life0 self,
    input: ListApplicationsRequest
) -> Pin<Box<dyn Future<Output = Result<ListApplicationsResponse, RusotoError<ListApplicationsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns a list of Amazon Kinesis Data Analytics applications in your account. For each application, the response includes the application name, Amazon Resource Name (ARN), and status.

If you want detailed information about a specific application, use DescribeApplication.

pub fn list_tags_for_resource<'life0, 'async_trait>(
    &'life0 self,
    input: ListTagsForResourceRequest
) -> Pin<Box<dyn Future<Output = Result<ListTagsForResourceResponse, RusotoError<ListTagsForResourceError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Retrieves the list of key-value tags assigned to the application. For more information, see Using Tagging.

pub fn start_application<'life0, 'async_trait>(
    &'life0 self,
    input: StartApplicationRequest
) -> Pin<Box<dyn Future<Output = Result<StartApplicationResponse, RusotoError<StartApplicationError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Starts the specified Amazon Kinesis Data Analytics application. After creating an application, you must exclusively call this operation to start your application.

pub fn stop_application<'life0, 'async_trait>(
    &'life0 self,
    input: StopApplicationRequest
) -> Pin<Box<dyn Future<Output = Result<StopApplicationResponse, RusotoError<StopApplicationError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Stops the application from processing data. You can stop an application only if it is in the running state. You can use the DescribeApplication operation to find the application state.

pub fn tag_resource<'life0, 'async_trait>(
    &'life0 self,
    input: TagResourceRequest
) -> Pin<Box<dyn Future<Output = Result<TagResourceResponse, RusotoError<TagResourceError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Adds one or more key-value tags to a Kinesis Analytics application. Note that the maximum number of application tags includes system tags. The maximum number of user-defined application tags is 50. For more information, see Using Tagging.

pub fn untag_resource<'life0, 'async_trait>(
    &'life0 self,
    input: UntagResourceRequest
) -> Pin<Box<dyn Future<Output = Result<UntagResourceResponse, RusotoError<UntagResourceError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Removes one or more tags from a Kinesis Analytics application. For more information, see Using Tagging.

pub fn update_application<'life0, 'async_trait>(
    &'life0 self,
    input: UpdateApplicationRequest
) -> Pin<Box<dyn Future<Output = Result<UpdateApplicationResponse, RusotoError<UpdateApplicationError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Updates an existing Amazon Kinesis Data Analytics application. Using this operation, you can update application code, input configuration, and output configuration.

Kinesis Data Analytics updates the ApplicationVersionId each time you update your application.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.