Interface CfnEnvironment.TierProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEnvironment.TierProperty.Jsii$Proxy
- Enclosing class:
CfnEnvironment
@Stability(Stable)
public static interface CfnEnvironment.TierProperty
extends software.amazon.jsii.JsiiSerializable
Use the
Tier
property type to specify the environment tier for an AWS Elastic Beanstalk environment when defining an AWS::ElasticBeanstalk::Environment resource in an AWS CloudFormation template.
Describes the environment tier for an AWS::ElasticBeanstalk::Environment resource. For more information, see Environment Tiers in the AWS Elastic Beanstalk Developer Guide .
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.elasticbeanstalk.*; TierProperty tierProperty = TierProperty.builder() .name("name") .type("type") .version("version") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnEnvironment.TierProperty
static final class
An implementation forCfnEnvironment.TierProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of this environment tier.Valid values:
- For Web server tier –
WebServer
- For Worker tier –
Worker
- See Also:
- For Web server tier –
-
getType
The type of this environment tier.Valid values:
- For Web server tier –
Standard
- For Worker tier –
SQS/HTTP
- See Also:
- For Web server tier –
-
getVersion
The version of this environment tier.When you don't set a value to it, Elastic Beanstalk uses the latest compatible worker tier version.
This member is deprecated. Any specific version that you set may become out of date. We recommend leaving it unspecified.
- See Also:
-
builder
-