Struct aws_sdk_kinesisanalyticsv2::operation::add_application_output::builders::AddApplicationOutputFluentBuilder
source · pub struct AddApplicationOutputFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to AddApplicationOutput.
Adds an external destination to your SQL-based 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 Amazon 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.
Implementations§
source§impl AddApplicationOutputFluentBuilder
impl AddApplicationOutputFluentBuilder
sourcepub fn as_input(&self) -> &AddApplicationOutputInputBuilder
pub fn as_input(&self) -> &AddApplicationOutputInputBuilder
Access the AddApplicationOutput as a reference.
sourcepub async fn send(
self
) -> Result<AddApplicationOutputOutput, SdkError<AddApplicationOutputError, HttpResponse>>
pub async fn send( self ) -> Result<AddApplicationOutputOutput, SdkError<AddApplicationOutputError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self
) -> CustomizableOperation<AddApplicationOutputOutput, AddApplicationOutputError, Self>
pub fn customize( self ) -> CustomizableOperation<AddApplicationOutputOutput, AddApplicationOutputError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn application_name(self, input: impl Into<String>) -> Self
pub fn application_name(self, input: impl Into<String>) -> Self
The name of the application to which you want to add the output configuration.
sourcepub fn set_application_name(self, input: Option<String>) -> Self
pub fn set_application_name(self, input: Option<String>) -> Self
The name of the application to which you want to add the output configuration.
sourcepub fn get_application_name(&self) -> &Option<String>
pub fn get_application_name(&self) -> &Option<String>
The name of the application to which you want to add the output configuration.
sourcepub fn current_application_version_id(self, input: i64) -> Self
pub fn current_application_version_id(self, input: i64) -> Self
The version of the application to which you want to add the output configuration. You can use the DescribeApplication operation to get the current application version. If the version specified is not the current version, the ConcurrentModificationException is returned.
sourcepub fn set_current_application_version_id(self, input: Option<i64>) -> Self
pub fn set_current_application_version_id(self, input: Option<i64>) -> Self
The version of the application to which you want to add the output configuration. You can use the DescribeApplication operation to get the current application version. If the version specified is not the current version, the ConcurrentModificationException is returned.
sourcepub fn get_current_application_version_id(&self) -> &Option<i64>
pub fn get_current_application_version_id(&self) -> &Option<i64>
The version of the application to which you want to add the output configuration. You can use the DescribeApplication operation to get the current application version. If the version specified is not the current version, the ConcurrentModificationException is returned.
sourcepub fn output(self, input: Output) -> Self
pub fn output(self, input: Output) -> Self
An array of objects, each describing one output configuration. In the output configuration, you specify the name of an in-application stream, a destination (that is, a Kinesis data stream, a Kinesis Data Firehose delivery stream, or an Amazon Lambda function), and record the formation to use when writing to the destination.
sourcepub fn set_output(self, input: Option<Output>) -> Self
pub fn set_output(self, input: Option<Output>) -> Self
An array of objects, each describing one output configuration. In the output configuration, you specify the name of an in-application stream, a destination (that is, a Kinesis data stream, a Kinesis Data Firehose delivery stream, or an Amazon Lambda function), and record the formation to use when writing to the destination.
sourcepub fn get_output(&self) -> &Option<Output>
pub fn get_output(&self) -> &Option<Output>
An array of objects, each describing one output configuration. In the output configuration, you specify the name of an in-application stream, a destination (that is, a Kinesis data stream, a Kinesis Data Firehose delivery stream, or an Amazon Lambda function), and record the formation to use when writing to the destination.
Trait Implementations§
source§impl Clone for AddApplicationOutputFluentBuilder
impl Clone for AddApplicationOutputFluentBuilder
source§fn clone(&self) -> AddApplicationOutputFluentBuilder
fn clone(&self) -> AddApplicationOutputFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more