Container for the parameters to the CreateConfigurationTemplate operation.

Creates a configuration template. Templates are associated with a specific application and are used to deploy different versions of the application with the same configuration settings.

Related Topics

  • DescribeConfigurationOptions
  • DescribeConfigurationSettings
  • ListAvailableSolutionStacks

Namespace: Amazon.ElasticBeanstalk.Model
Assembly: AWSSDK (in AWSSDK.dll) Version: 1.4.10.0 (1.4.10.0)

Syntax

         
 C#  Visual Basic  Visual C++ 
public class CreateConfigurationTemplateRequest : AmazonWebServiceRequest
Public Class CreateConfigurationTemplateRequest _
	Inherits AmazonWebServiceRequest
public ref class CreateConfigurationTemplateRequest : public AmazonWebServiceRequest

Members

            
 All Members  Constructors   Properties   Methods  
 Public

 Protected
 Instance

 Static 
 Declared

 Inherited
 XNA Framework Only 

 .NET Compact Framework Only 

 MemberDescription
CreateConfigurationTemplateRequest()()()()
Initializes a new instance of the CreateConfigurationTemplateRequest class
ApplicationName
The name of the application to associate with this configuration template. If no application is found with this name, AWS Elastic Beanstalk returns an InvalidParameterValue error.

Constraints:

Length
1 - 100

Description
Describes this configuration.

Constraints:

Length
0 - 200

EnvironmentId
The ID of the environment used with this configuration template.
Equals(Object)
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
GetHashCode()()()()
Serves as a hash function for a particular type.
(Inherited from Object.)
GetType()()()()
Gets the Type of the current instance.
(Inherited from Object.)
OptionSettings
If specified, AWS Elastic Beanstalk sets the specified configuration option to the requested value. The new value overrides the value obtained from the solution stack or the source configuration template.
SolutionStackName
The name of the solution stack used by this configuration. The solution stack specifies the operating system, architecture, and application server for a configuration template. It determines the set of configuration options as well as the possible and default values. Use ListAvailableSolutionStacks to obtain a list of available solution stacks. Default: If the SolutionStackName is not specified and the source configuration parameter is blank, AWS Elastic Beanstalk uses the default solution stack. If not specified and the source configuration parameter is specified, AWS Elastic Beanstalk uses the same solution stack as the source configuration template.

Constraints:

Length
0 - 100

SourceConfiguration
If specified, AWS Elastic Beanstalk uses the configuration values from the specified configuration template to create a new configuration. Values specified in the OptionSettings parameter of this call overrides any values obtained from the SourceConfiguration. If no configuration template is found, returns an InvalidParameterValue error. Constraint: If both the solution stack name parameter and the source configuration parameters are specified, the solution stack of the source configuration template must match the specified solution stack name or else AWS Elastic Beanstalk returns an InvalidParameterCombination error.
TemplateName
The name of the configuration template. Constraint: This name must be unique per application. Default: If a configuration template already exists with this name, AWS Elastic Beanstalk returns an InvalidParameterValue error.

Constraints:

Length
1 - 100

ToString()()()()
Returns a String that represents the current Object.
(Inherited from Object.)
WithApplicationName(String)
Sets the ApplicationName property
WithDescription(String)
Sets the Description property
WithEnvironmentId(String)
Sets the EnvironmentId property
WithOptionSettings(array<ConfigurationOptionSetting>[]()[][])
Adds elements to the OptionSettings collection
WithOptionSettings(IEnumerable<(Of <<'(ConfigurationOptionSetting>)>>))
Adds elements to the OptionSettings collection
WithSolutionStackName(String)
Sets the SolutionStackName property
WithSourceConfiguration(SourceConfiguration)
Sets the SourceConfiguration property
WithTemplateName(String)
Sets the TemplateName property

Inheritance Hierarchy

System..::..Object
  Amazon.Runtime..::..AmazonWebServiceRequest
    Amazon.ElasticBeanstalk.Model..::..CreateConfigurationTemplateRequest

See Also