pub struct AddApplicationOutputResponse {
pub application_arn: Option<String>,
pub application_version_id: Option<i64>,
pub output_descriptions: Option<Vec<OutputDescription>>,
}Fields§
§application_arn: Option<String>The application Amazon Resource Name (ARN).
application_version_id: Option<i64>The updated application version ID. Kinesis Data Analytics increments this ID when the application is updated.
output_descriptions: Option<Vec<OutputDescription>>Describes the application output configuration. For more information, see Configuring Application Output.
Trait Implementations§
Source§impl Clone for AddApplicationOutputResponse
impl Clone for AddApplicationOutputResponse
Source§fn clone(&self) -> AddApplicationOutputResponse
fn clone(&self) -> AddApplicationOutputResponse
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 AddApplicationOutputResponse
impl Debug for AddApplicationOutputResponse
Source§impl Default for AddApplicationOutputResponse
impl Default for AddApplicationOutputResponse
Source§fn default() -> AddApplicationOutputResponse
fn default() -> AddApplicationOutputResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AddApplicationOutputResponse
impl<'de> Deserialize<'de> for AddApplicationOutputResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AddApplicationOutputResponse
impl PartialEq for AddApplicationOutputResponse
Source§fn eq(&self, other: &AddApplicationOutputResponse) -> bool
fn eq(&self, other: &AddApplicationOutputResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AddApplicationOutputResponse
Auto Trait Implementations§
impl Freeze for AddApplicationOutputResponse
impl RefUnwindSafe for AddApplicationOutputResponse
impl Send for AddApplicationOutputResponse
impl Sync for AddApplicationOutputResponse
impl Unpin for AddApplicationOutputResponse
impl UnwindSafe for AddApplicationOutputResponse
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