interface TierProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.ElasticBeanstalk.CfnEnvironment.TierProperty |
Java | software.amazon.awscdk.services.elasticbeanstalk.CfnEnvironment.TierProperty |
Python | aws_cdk.aws_elasticbeanstalk.CfnEnvironment.TierProperty |
TypeScript | @aws-cdk/aws-elasticbeanstalk » CfnEnvironment » TierProperty |
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 * as elasticbeanstalk from '@aws-cdk/aws-elasticbeanstalk';
const tierProperty: elasticbeanstalk.CfnEnvironment.TierProperty = {
name: 'name',
type: 'type',
version: 'version',
};
Properties
Name | Type | Description |
---|---|---|
name? | string | The name of this environment tier. |
type? | string | The type of this environment tier. |
version? | string | The version of this environment tier. |
name?
Type:
string
(optional)
The name of this environment tier.
Valid values:
- For Web server tier –
WebServer
- For Worker tier –
Worker
type?
Type:
string
(optional)
The type of this environment tier.
Valid values:
- For Web server tier –
Standard
- For Worker tier –
SQS/HTTP
version?
Type:
string
(optional)
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.