Container for the parameters to the UpdateConfigurationTemplate operation.

Updates the specified configuration template to have the specified properties or configuration option values.

NOTE: If a property (for example, ApplicationName) is not provided, its value remains unchanged. To clear such properties, specify an empty string.

Related Topics

  • DescribeConfigurationOptions

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 UpdateConfigurationTemplateRequest : AmazonWebServiceRequest
Public Class UpdateConfigurationTemplateRequest _
	Inherits AmazonWebServiceRequest
public ref class UpdateConfigurationTemplateRequest : public AmazonWebServiceRequest

Members

            
 All Members  Constructors   Properties   Methods  
 Public

 Protected
 Instance

 Static 
 Declared

 Inherited
 XNA Framework Only 

 .NET Compact Framework Only 

 MemberDescription
UpdateConfigurationTemplateRequest()()()()
Initializes a new instance of the UpdateConfigurationTemplateRequest class
ApplicationName
The name of the application associated with the configuration template to update. If no application is found with this name, UpdateConfigurationTemplate returns an InvalidParameterValue error.

Constraints:

Length
1 - 100

Description
A new description for the configuration.

Constraints:

Length
0 - 200

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
A list of configuration option settings to update with the new specified option value.
OptionsToRemove
A list of configuration options to remove from the configuration set. Constraint: You can remove only UserDefined configuration options.
TemplateName
The name of the configuration template to update. If no configuration template is found with this name, UpdateConfigurationTemplate 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
WithOptionSettings(array<ConfigurationOptionSetting>[]()[][])
Adds elements to the OptionSettings collection
WithOptionSettings(IEnumerable<(Of <<'(ConfigurationOptionSetting>)>>))
Adds elements to the OptionSettings collection
WithOptionsToRemove(array<OptionSpecification>[]()[][])
Adds elements to the OptionsToRemove collection
WithOptionsToRemove(IEnumerable<(Of <<'(OptionSpecification>)>>))
Adds elements to the OptionsToRemove collection
WithTemplateName(String)
Sets the TemplateName property

Inheritance Hierarchy

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

See Also