aws-cdk-lib.aws_elasticbeanstalk.CfnEnvironment.TierProperty

interface TierProperty

LanguageType name
.NETAmazon.CDK.AWS.ElasticBeanstalk.CfnEnvironment.TierProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awselasticbeanstalk#CfnEnvironment_TierProperty
Javasoftware.amazon.awscdk.services.elasticbeanstalk.CfnEnvironment.TierProperty
Pythonaws_cdk.aws_elasticbeanstalk.CfnEnvironment.TierProperty
TypeScript aws-cdk-lib » 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 { aws_elasticbeanstalk as elasticbeanstalk } from 'aws-cdk-lib';
const tierProperty: elasticbeanstalk.CfnEnvironment.TierProperty = {
  name: 'name',
  type: 'type',
  version: 'version',
};

Properties

NameTypeDescription
name?stringThe name of this environment tier.
type?stringThe type of this environment tier.
version?stringThe 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.