Show / Hide Table of Contents

Class CfnWebApp.WebAppUnitsProperty

Contains an integer value that represents the value for number of concurrent connections or the user sessions on your web app.

Inheritance
object
CfnWebApp.WebAppUnitsProperty
Implements
CfnWebApp.IWebAppUnitsProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Transfer
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnWebApp.WebAppUnitsProperty : CfnWebApp.IWebAppUnitsProperty
Syntax (vb)
Public Class CfnWebApp.WebAppUnitsProperty Implements CfnWebApp.IWebAppUnitsProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-webapp-webappunits.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.AWS.Transfer;

             var webAppUnitsProperty = new WebAppUnitsProperty {
                 Provisioned = 123
             };

Synopsis

Constructors

WebAppUnitsProperty()

Contains an integer value that represents the value for number of concurrent connections or the user sessions on your web app.

Properties

Provisioned

An integer that represents the number of units for your desired number of concurrent connections, or the number of user sessions on your web app at the same time.

Constructors

WebAppUnitsProperty()

Contains an integer value that represents the value for number of concurrent connections or the user sessions on your web app.

public WebAppUnitsProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-webapp-webappunits.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.AWS.Transfer;

             var webAppUnitsProperty = new WebAppUnitsProperty {
                 Provisioned = 123
             };

Properties

Provisioned

An integer that represents the number of units for your desired number of concurrent connections, or the number of user sessions on your web app at the same time.

public double Provisioned { get; set; }
Property Value

double

Remarks

Each increment allows an additional 250 concurrent sessions: a value of 1 sets the number of concurrent sessions to 250; 2 sets a value of 500, and so on.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-webapp-webappunits.html#cfn-transfer-webapp-webappunits-provisioned

Implements

CfnWebApp.IWebAppUnitsProperty
Back to top Generated by DocFX