@Stability(value=Stable)
public static interface CfnEnvironment.TierProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnEnvironment.TierProperty.Builder
A builder for
CfnEnvironment.TierProperty |
static class |
CfnEnvironment.TierProperty.Jsii$Proxy
An implementation for
CfnEnvironment.TierProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnEnvironment.TierProperty.Builder |
builder() |
default String |
getName()
The name of this environment tier.
|
default String |
getType()
The type of this environment tier.
|
default String |
getVersion()
The version of this environment tier.
|
@Stability(value=Stable) @Nullable default String getName()
Valid values:
WebServerWorker@Stability(value=Stable) @Nullable default String getType()
Valid values:
StandardSQS/HTTP@Stability(value=Stable) @Nullable default String getVersion()
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.
@Stability(value=Stable) static CfnEnvironment.TierProperty.Builder builder()
Copyright © 2022. All rights reserved.