pub struct AddApplicationReferenceDataSourceResponse {
pub application_arn: Option<String>,
pub application_version_id: Option<i64>,
pub reference_data_source_descriptions: Option<Vec<ReferenceDataSourceDescription>>,
}Fields§
§application_arn: Option<String>The application Amazon Resource Name (ARN).
application_version_id: Option<i64>The updated application version ID. Amazon Kinesis Data Analytics increments this ID when the application is updated.
reference_data_source_descriptions: Option<Vec<ReferenceDataSourceDescription>>Describes reference data sources configured for the application.
Trait Implementations§
Source§impl Clone for AddApplicationReferenceDataSourceResponse
impl Clone for AddApplicationReferenceDataSourceResponse
Source§fn clone(&self) -> AddApplicationReferenceDataSourceResponse
fn clone(&self) -> AddApplicationReferenceDataSourceResponse
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 Default for AddApplicationReferenceDataSourceResponse
impl Default for AddApplicationReferenceDataSourceResponse
Source§fn default() -> AddApplicationReferenceDataSourceResponse
fn default() -> AddApplicationReferenceDataSourceResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AddApplicationReferenceDataSourceResponse
impl<'de> Deserialize<'de> for AddApplicationReferenceDataSourceResponse
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 AddApplicationReferenceDataSourceResponse
impl PartialEq for AddApplicationReferenceDataSourceResponse
Source§fn eq(&self, other: &AddApplicationReferenceDataSourceResponse) -> bool
fn eq(&self, other: &AddApplicationReferenceDataSourceResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AddApplicationReferenceDataSourceResponse
Auto Trait Implementations§
impl Freeze for AddApplicationReferenceDataSourceResponse
impl RefUnwindSafe for AddApplicationReferenceDataSourceResponse
impl Send for AddApplicationReferenceDataSourceResponse
impl Sync for AddApplicationReferenceDataSourceResponse
impl Unpin for AddApplicationReferenceDataSourceResponse
impl UnwindSafe for AddApplicationReferenceDataSourceResponse
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