pub struct AddApplicationCloudWatchLoggingOptionResponse {
pub application_arn: Option<String>,
pub application_version_id: Option<i64>,
pub cloud_watch_logging_option_descriptions: Option<Vec<CloudWatchLoggingOptionDescription>>,
}Fields§
§application_arn: Option<String>The application's ARN.
application_version_id: Option<i64>The new version ID of the Kinesis Data Analytics application. Kinesis Data Analytics updates the ApplicationVersionId each time you change the CloudWatch logging options.
cloud_watch_logging_option_descriptions: Option<Vec<CloudWatchLoggingOptionDescription>>The descriptions of the current CloudWatch logging options for the Kinesis Data Analytics application.
Trait Implementations§
Source§impl Clone for AddApplicationCloudWatchLoggingOptionResponse
impl Clone for AddApplicationCloudWatchLoggingOptionResponse
Source§fn clone(&self) -> AddApplicationCloudWatchLoggingOptionResponse
fn clone(&self) -> AddApplicationCloudWatchLoggingOptionResponse
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 AddApplicationCloudWatchLoggingOptionResponse
impl Default for AddApplicationCloudWatchLoggingOptionResponse
Source§fn default() -> AddApplicationCloudWatchLoggingOptionResponse
fn default() -> AddApplicationCloudWatchLoggingOptionResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AddApplicationCloudWatchLoggingOptionResponse
impl<'de> Deserialize<'de> for AddApplicationCloudWatchLoggingOptionResponse
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 AddApplicationCloudWatchLoggingOptionResponse
impl PartialEq for AddApplicationCloudWatchLoggingOptionResponse
Source§fn eq(&self, other: &AddApplicationCloudWatchLoggingOptionResponse) -> bool
fn eq(&self, other: &AddApplicationCloudWatchLoggingOptionResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AddApplicationCloudWatchLoggingOptionResponse
Auto Trait Implementations§
impl Freeze for AddApplicationCloudWatchLoggingOptionResponse
impl RefUnwindSafe for AddApplicationCloudWatchLoggingOptionResponse
impl Send for AddApplicationCloudWatchLoggingOptionResponse
impl Sync for AddApplicationCloudWatchLoggingOptionResponse
impl Unpin for AddApplicationCloudWatchLoggingOptionResponse
impl UnwindSafe for AddApplicationCloudWatchLoggingOptionResponse
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