pub struct CreateApplicationRequest {
pub application_configuration: Option<ApplicationConfiguration>,
pub application_description: Option<String>,
pub application_name: String,
pub cloud_watch_logging_options: Option<Vec<CloudWatchLoggingOption>>,
pub runtime_environment: String,
pub service_execution_role: String,
pub tags: Option<Vec<Tag>>,
}Fields§
§application_configuration: Option<ApplicationConfiguration>Use this parameter to configure the application.
application_description: Option<String>A summary description of the application.
application_name: StringThe name of your application (for example, sample-app).
cloud_watch_logging_options: Option<Vec<CloudWatchLoggingOption>>Use this parameter to configure an Amazon CloudWatch log stream to monitor application configuration errors.
runtime_environment: StringThe runtime environment for the application (SQL-1.0 or FLINK-1_6).
service_execution_role: StringThe IAM role used by the application to access Kinesis data streams, Kinesis Data Firehose delivery streams, Amazon S3 objects, and other external resources.
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.
Trait Implementations§
Source§impl Clone for CreateApplicationRequest
impl Clone for CreateApplicationRequest
Source§fn clone(&self) -> CreateApplicationRequest
fn clone(&self) -> CreateApplicationRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more