Show / Hide Table of Contents

Class CfnEnvironmentPropsMixin.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.

Inheritance
object
CfnEnvironmentPropsMixin.TierProperty
Implements
CfnEnvironmentPropsMixin.ITierProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.ElasticBeanstalk.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnEnvironmentPropsMixin.TierProperty : CfnEnvironmentPropsMixin.ITierProperty
Syntax (vb)
Public Class CfnEnvironmentPropsMixin.TierProperty Implements CfnEnvironmentPropsMixin.ITierProperty
Remarks

Describes the environment tier for an AWS::ElasticBeanstalk::Environment resource. For more information, see Environment Tiers in the AWS Elastic Beanstalk Developer Guide .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-environment-tier.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.Mixins.Preview.AWS.ElasticBeanstalk.Mixins;

             var tierProperty = new TierProperty {
                 Name = "name",
                 Type = "type",
                 Version = "version"
             };

Synopsis

Constructors

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.

Properties

Name

The name of this environment tier.

Type

The type of this environment tier.

Version

The version of this environment tier.

Constructors

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.

public TierProperty()
Remarks

Describes the environment tier for an AWS::ElasticBeanstalk::Environment resource. For more information, see Environment Tiers in the AWS Elastic Beanstalk Developer Guide .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-environment-tier.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.Mixins.Preview.AWS.ElasticBeanstalk.Mixins;

             var tierProperty = new TierProperty {
                 Name = "name",
                 Type = "type",
                 Version = "version"
             };

Properties

Name

The name of this environment tier.

public string? Name { get; set; }
Property Value

string

Remarks

Valid values:

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-environment-tier.html#cfn-elasticbeanstalk-environment-tier-name

    Type

    The type of this environment tier.

    public string? Type { get; set; }
    Property Value

    string

    Remarks

    Valid values:

      See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-environment-tier.html#cfn-elasticbeanstalk-environment-tier-type

      Version

      The version of this environment tier.

      public string? Version { get; set; }
      Property Value

      string

      Remarks

      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: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-environment-tier.html#cfn-elasticbeanstalk-environment-tier-version

      Implements

      CfnEnvironmentPropsMixin.ITierProperty
      Back to top Generated by DocFX