Struct cfn::aws::elasticbeanstalk::EnvironmentProperties [] [src]

pub struct EnvironmentProperties {
    pub application_name: Value<String>,
    pub cname_prefix: Option<Value<String>>,
    pub description: Option<Value<String>>,
    pub environment_name: Option<Value<String>>,
    pub option_settings: Option<ValueList<OptionSetting>>,
    pub platform_arn: Option<Value<String>>,
    pub solution_stack_name: Option<Value<String>>,
    pub tags: Option<ValueList<Tag>>,
    pub template_name: Option<Value<String>>,
    pub tier: Option<Value<Tier>>,
    pub version_label: Option<Value<String>>,
}

Properties for the Environment resource.

Fields

Property ApplicationName.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property CNAMEPrefix.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property Description.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property EnvironmentName.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property OptionSettings.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property PlatformArn.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property SolutionStackName.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property Tags.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property TemplateName.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Tier.

Update type: Conditional. Conditional updates can be mutable or immutable, depending on, for example, which other properties you updated. For more information, see the relevant resource type documentation.

Property VersionLabel.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Trait Implementations

impl Debug for EnvironmentProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for EnvironmentProperties
[src]

[src]

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

impl Serialize for EnvironmentProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

impl<'de> Deserialize<'de> for EnvironmentProperties
[src]

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<EnvironmentProperties> for Environment
[src]

[src]

Performs the conversion.

Auto Trait Implementations