Struct aws_sdk_kinesisanalyticsv2::operation::add_application_output::builders::AddApplicationOutputInputBuilder
source · #[non_exhaustive]pub struct AddApplicationOutputInputBuilder { /* private fields */ }Expand description
A builder for AddApplicationOutputInput.
Implementations§
source§impl AddApplicationOutputInputBuilder
impl AddApplicationOutputInputBuilder
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.
This field is required.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.
This field is required.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.
sourcepub fn build(self) -> Result<AddApplicationOutputInput, BuildError>
pub fn build(self) -> Result<AddApplicationOutputInput, BuildError>
Consumes the builder and constructs a AddApplicationOutputInput.
source§impl AddApplicationOutputInputBuilder
impl AddApplicationOutputInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<AddApplicationOutputOutput, SdkError<AddApplicationOutputError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<AddApplicationOutputOutput, SdkError<AddApplicationOutputError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for AddApplicationOutputInputBuilder
impl Clone for AddApplicationOutputInputBuilder
source§fn clone(&self) -> AddApplicationOutputInputBuilder
fn clone(&self) -> AddApplicationOutputInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for AddApplicationOutputInputBuilder
impl Default for AddApplicationOutputInputBuilder
source§fn default() -> AddApplicationOutputInputBuilder
fn default() -> AddApplicationOutputInputBuilder
source§impl PartialEq for AddApplicationOutputInputBuilder
impl PartialEq for AddApplicationOutputInputBuilder
source§fn eq(&self, other: &AddApplicationOutputInputBuilder) -> bool
fn eq(&self, other: &AddApplicationOutputInputBuilder) -> bool
self and other values to be equal, and is used
by ==.