pub struct AddApplicationOutputRequest {
pub application_name: String,
pub current_application_version_id: i64,
pub output: Output,
}Fields§
§application_name: StringThe name of the application to which you want to add the output configuration.
current_application_version_id: i64The 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.
output: OutputAn 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 AWS Lambda function), and record the formation to use when writing to the destination.
Trait Implementations§
Source§impl Clone for AddApplicationOutputRequest
impl Clone for AddApplicationOutputRequest
Source§fn clone(&self) -> AddApplicationOutputRequest
fn clone(&self) -> AddApplicationOutputRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AddApplicationOutputRequest
impl Debug for AddApplicationOutputRequest
Source§impl Default for AddApplicationOutputRequest
impl Default for AddApplicationOutputRequest
Source§fn default() -> AddApplicationOutputRequest
fn default() -> AddApplicationOutputRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for AddApplicationOutputRequest
Auto Trait Implementations§
impl Freeze for AddApplicationOutputRequest
impl RefUnwindSafe for AddApplicationOutputRequest
impl Send for AddApplicationOutputRequest
impl Sync for AddApplicationOutputRequest
impl Unpin for AddApplicationOutputRequest
impl UnwindSafe for AddApplicationOutputRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more