Struct rusoto_elasticbeanstalk::ApplicationResourceLifecycleConfig[][src]

pub struct ApplicationResourceLifecycleConfig {
    pub service_role: Option<String>,
    pub version_lifecycle_config: Option<ApplicationVersionLifecycleConfig>,
}

The resource lifecycle configuration for an application. Defines lifecycle settings for resources that belong to the application, and the service role that Elastic Beanstalk assumes in order to apply lifecycle settings. The version lifecycle configuration defines lifecycle settings for application versions.

Fields

The ARN of an IAM service role that Elastic Beanstalk has permission to assume.

The application version lifecycle configuration.

Trait Implementations

impl Default for ApplicationResourceLifecycleConfig
[src]

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

impl Debug for ApplicationResourceLifecycleConfig
[src]

Formats the value using the given formatter. Read more

impl Clone for ApplicationResourceLifecycleConfig
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ApplicationResourceLifecycleConfig
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations