C# Class Amazon.ElasticBeanstalk.Model.CreateEnvironmentRequest

Container for the parameters to the CreateEnvironment operation.

Launches an environment for the specified application using the specified configuration.

Inheritance: AmazonElasticBeanstalkRequest
Datei anzeigen Open project: aws/aws-sdk-net Class Usage Examples

Public Methods

Method Description
CreateEnvironmentRequest ( ) : System

Empty constructor used to set properties independently even when a simple constructor is available

CreateEnvironmentRequest ( string applicationName, string environmentName ) : System

Instantiates CreateEnvironmentRequest with the parameterized properties

Private Methods

Method Description
IsSetApplicationName ( ) : bool
IsSetCNAMEPrefix ( ) : bool
IsSetDescription ( ) : bool
IsSetEnvironmentName ( ) : bool
IsSetGroupName ( ) : bool
IsSetOptionSettings ( ) : bool
IsSetOptionsToRemove ( ) : bool
IsSetSolutionStackName ( ) : bool
IsSetTags ( ) : bool
IsSetTemplateName ( ) : bool
IsSetTier ( ) : bool
IsSetVersionLabel ( ) : bool

Method Details

CreateEnvironmentRequest() public method

Empty constructor used to set properties independently even when a simple constructor is available
public CreateEnvironmentRequest ( ) : System
return System

CreateEnvironmentRequest() public method

Instantiates CreateEnvironmentRequest with the parameterized properties
public CreateEnvironmentRequest ( string applicationName, string environmentName ) : System
applicationName string The name of the application that contains the version to be deployed. If no application is found with this name, CreateEnvironment returns an InvalidParameterValue error.
environmentName string A unique name for the deployment environment. Used in the application URL. Constraint: Must be from 4 to 40 characters in length. The name can contain only letters, numbers, and hyphens. It cannot start or end with a hyphen. This name must be unique in your account. If the specified name already exists, AWS Elastic Beanstalk returns an InvalidParameterValue error. Default: If the CNAME parameter is not specified, the environment name becomes part of the CNAME, and therefore part of the visible URL for your application.
return System