#[non_exhaustive]pub struct CreateApplicationInput {
pub application_name: Option<String>,
pub application_description: Option<String>,
pub runtime_environment: Option<RuntimeEnvironment>,
pub service_execution_role: Option<String>,
pub application_configuration: Option<ApplicationConfiguration>,
pub cloud_watch_logging_options: Option<Vec<CloudWatchLoggingOption>>,
pub tags: Option<Vec<Tag>>,
pub application_mode: Option<ApplicationMode>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.application_name: Option<String>The name of your application (for example, sample-app).
application_description: Option<String>A summary description of the application.
runtime_environment: Option<RuntimeEnvironment>The runtime environment for the application.
service_execution_role: Option<String>The IAM role used by the application to access Kinesis data streams, Kinesis Data Firehose delivery streams, Amazon S3 objects, and other external resources.
application_configuration: Option<ApplicationConfiguration>Use this parameter to configure the application.
cloud_watch_logging_options: Option<Vec<CloudWatchLoggingOption>>Use this parameter to configure an Amazon CloudWatch log stream to monitor application configuration errors.
A list of one or more tags to assign to the application. A tag is a key-value pair that identifies an application. Note that the maximum number of application tags includes system tags. The maximum number of user-defined application tags is 50. For more information, see Using Tagging.
application_mode: Option<ApplicationMode>Use the STREAMING mode to create a Kinesis Data Analytics For Flink application. To create a Kinesis Data Analytics Studio notebook, use the INTERACTIVE mode.
Implementations§
source§impl CreateApplicationInput
impl CreateApplicationInput
sourcepub fn application_name(&self) -> Option<&str>
pub fn application_name(&self) -> Option<&str>
The name of your application (for example, sample-app).
sourcepub fn application_description(&self) -> Option<&str>
pub fn application_description(&self) -> Option<&str>
A summary description of the application.
sourcepub fn runtime_environment(&self) -> Option<&RuntimeEnvironment>
pub fn runtime_environment(&self) -> Option<&RuntimeEnvironment>
The runtime environment for the application.
sourcepub fn service_execution_role(&self) -> Option<&str>
pub fn service_execution_role(&self) -> Option<&str>
The IAM role used by the application to access Kinesis data streams, Kinesis Data Firehose delivery streams, Amazon S3 objects, and other external resources.
sourcepub fn application_configuration(&self) -> Option<&ApplicationConfiguration>
pub fn application_configuration(&self) -> Option<&ApplicationConfiguration>
Use this parameter to configure the application.
sourcepub fn cloud_watch_logging_options(&self) -> &[CloudWatchLoggingOption]
pub fn cloud_watch_logging_options(&self) -> &[CloudWatchLoggingOption]
Use this parameter to configure an Amazon CloudWatch log stream to monitor application configuration errors.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .cloud_watch_logging_options.is_none().
A list of one or more tags to assign to the application. A tag is a key-value pair that identifies an application. Note that the maximum number of application tags includes system tags. The maximum number of user-defined application tags is 50. For more information, see Using Tagging.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none().
sourcepub fn application_mode(&self) -> Option<&ApplicationMode>
pub fn application_mode(&self) -> Option<&ApplicationMode>
Use the STREAMING mode to create a Kinesis Data Analytics For Flink application. To create a Kinesis Data Analytics Studio notebook, use the INTERACTIVE mode.
source§impl CreateApplicationInput
impl CreateApplicationInput
sourcepub fn builder() -> CreateApplicationInputBuilder
pub fn builder() -> CreateApplicationInputBuilder
Creates a new builder-style object to manufacture CreateApplicationInput.
Trait Implementations§
source§impl Clone for CreateApplicationInput
impl Clone for CreateApplicationInput
source§fn clone(&self) -> CreateApplicationInput
fn clone(&self) -> CreateApplicationInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CreateApplicationInput
impl Debug for CreateApplicationInput
source§impl PartialEq for CreateApplicationInput
impl PartialEq for CreateApplicationInput
source§fn eq(&self, other: &CreateApplicationInput) -> bool
fn eq(&self, other: &CreateApplicationInput) -> bool
self and other values to be equal, and is used
by ==.