Struct rusoto_kinesisanalytics::ApplicationDetail [] [src]

pub struct ApplicationDetail {
    pub application_arn: String,
    pub application_code: Option<String>,
    pub application_description: Option<String>,
    pub application_name: String,
    pub application_status: String,
    pub application_version_id: i64,
    pub cloud_watch_logging_option_descriptions: Option<Vec<CloudWatchLoggingOptionDescription>>,
    pub create_timestamp: Option<f64>,
    pub input_descriptions: Option<Vec<InputDescription>>,
    pub last_update_timestamp: Option<f64>,
    pub output_descriptions: Option<Vec<OutputDescription>>,
    pub reference_data_source_descriptions: Option<Vec<ReferenceDataSourceDescription>>,
}

Provides a description of the application, including the application Amazon Resource Name (ARN), status, latest version, and input and output configuration.

Fields

ARN of the application.

Returns the application code that you provided to perform data analysis on any of the in-application streams in your application.

Description of the application.

Name of the application.

Status of the application.

Provides the current application version.

Describes the CloudWatch log streams that are configured to receive application messages. For more information about using CloudWatch log streams with Amazon Kinesis Analytics applications, see Working with Amazon CloudWatch Logs.

Time stamp when the application version was created.

Describes the application input configuration. For more information, see Configuring Application Input.

Time stamp when the application was last updated.

Describes the application output configuration. For more information, see Configuring Application Output.

Describes reference data sources configured for the application. For more information, see Configuring Application Input.

Trait Implementations

impl Default for ApplicationDetail
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for ApplicationDetail
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ApplicationDetail
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations