[−][src]Struct rusoto_kinesisanalytics::InputDescription
Describes the application input configuration. For more information, see Configuring Application Input.
Fields
in_app_stream_names: Option<Vec<String>>
Returns the in-application stream names that are mapped to the stream source.
input_id: Option<String>
Input ID associated with the application input. This is the ID that Amazon Kinesis Analytics assigns to each input configuration you add to your application.
input_parallelism: Option<InputParallelism>
Describes the configured parallelism (number of in-application streams mapped to the streaming source).
input_processing_configuration_description: Option<InputProcessingConfigurationDescription>
The description of the preprocessor that executes on records in this input before the application's code is run.
input_schema: Option<SourceSchema>
Describes the format of the data in the streaming source, and how each data element maps to corresponding columns in the in-application stream that is being created.
input_starting_position_configuration: Option<InputStartingPositionConfiguration>
Point at which the application is configured to read from the input stream.
kinesis_firehose_input_description: Option<KinesisFirehoseInputDescription>
If an Amazon Kinesis Firehose delivery stream is configured as a streaming source, provides the delivery stream's ARN and an IAM role that enables Amazon Kinesis Analytics to access the stream on your behalf.
kinesis_streams_input_description: Option<KinesisStreamsInputDescription>
If an Amazon Kinesis stream is configured as streaming source, provides Amazon Kinesis stream's Amazon Resource Name (ARN) and an IAM role that enables Amazon Kinesis Analytics to access the stream on your behalf.
name_prefix: Option<String>
In-application name prefix.
Trait Implementations
impl PartialEq<InputDescription> for InputDescription
[src]
fn eq(&self, other: &InputDescription) -> bool
[src]
fn ne(&self, other: &InputDescription) -> bool
[src]
impl Default for InputDescription
[src]
fn default() -> InputDescription
[src]
impl Clone for InputDescription
[src]
fn clone(&self) -> InputDescription
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for InputDescription
[src]
impl<'de> Deserialize<'de> for InputDescription
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl Send for InputDescription
impl Sync for InputDescription
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self