#[non_exhaustive]pub struct KinesisStreamsOutputUpdate {
pub resource_arn_update: String,
}Expand description
When you update a SQL-based Kinesis Data Analytics application's output configuration using the UpdateApplication operation, provides information about a Kinesis data stream that is configured as the destination.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.resource_arn_update: StringThe Amazon Resource Name (ARN) of the Kinesis data stream where you want to write the output.
Implementations§
source§impl KinesisStreamsOutputUpdate
impl KinesisStreamsOutputUpdate
sourcepub fn resource_arn_update(&self) -> &str
pub fn resource_arn_update(&self) -> &str
The Amazon Resource Name (ARN) of the Kinesis data stream where you want to write the output.
source§impl KinesisStreamsOutputUpdate
impl KinesisStreamsOutputUpdate
sourcepub fn builder() -> KinesisStreamsOutputUpdateBuilder
pub fn builder() -> KinesisStreamsOutputUpdateBuilder
Creates a new builder-style object to manufacture KinesisStreamsOutputUpdate.
Trait Implementations§
source§impl Clone for KinesisStreamsOutputUpdate
impl Clone for KinesisStreamsOutputUpdate
source§fn clone(&self) -> KinesisStreamsOutputUpdate
fn clone(&self) -> KinesisStreamsOutputUpdate
Returns a copy 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 KinesisStreamsOutputUpdate
impl Debug for KinesisStreamsOutputUpdate
source§impl PartialEq for KinesisStreamsOutputUpdate
impl PartialEq for KinesisStreamsOutputUpdate
source§fn eq(&self, other: &KinesisStreamsOutputUpdate) -> bool
fn eq(&self, other: &KinesisStreamsOutputUpdate) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for KinesisStreamsOutputUpdate
Auto Trait Implementations§
impl RefUnwindSafe for KinesisStreamsOutputUpdate
impl Send for KinesisStreamsOutputUpdate
impl Sync for KinesisStreamsOutputUpdate
impl Unpin for KinesisStreamsOutputUpdate
impl UnwindSafe for KinesisStreamsOutputUpdate
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.