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

pub struct ConfigurationTemplateProperties {
    pub application_name: Value<String>,
    pub description: Option<Value<String>>,
    pub environment_id: Option<Value<String>>,
    pub option_settings: Option<ValueList<ConfigurationOptionSetting>>,
    pub platform_arn: Option<Value<String>>,
    pub solution_stack_name: Option<Value<String>>,
    pub source_configuration: Option<Value<SourceConfiguration>>,
}

Properties for the ConfigurationTemplate resource.

Fields

Property ApplicationName.

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 EnvironmentId.

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: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property SolutionStackName.

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

Property SourceConfiguration.

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

Trait Implementations

impl Debug for ConfigurationTemplateProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for ConfigurationTemplateProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<ConfigurationTemplateProperties> for ConfigurationTemplate
[src]

[src]

Performs the conversion.

Auto Trait Implementations