AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Describes the settings for a configuration set.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceResponse
    Amazon.ElasticBeanstalk.Model.CreateConfigurationTemplateResponse

Namespace: Amazon.ElasticBeanstalk.Model
Assembly: AWSSDK.ElasticBeanstalk.dll
Version: 3.x.y.z

Syntax

C#
public class CreateConfigurationTemplateResponse : AmazonWebServiceResponse

The CreateConfigurationTemplateResponse type exposes the following members

Constructors

Properties

NameTypeDescription
Public Property ApplicationName System.String

Gets and sets the property ApplicationName.

The name of the application associated with this configuration set.

Public Property ContentLength System.Int64 Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property DateCreated System.DateTime

Gets and sets the property DateCreated.

The date (in UTC time) when this configuration set was created.

Public Property DateUpdated System.DateTime

Gets and sets the property DateUpdated.

The date (in UTC time) when this configuration set was last modified.

Public Property DeploymentStatus Amazon.ElasticBeanstalk.ConfigurationDeploymentStatus

Gets and sets the property DeploymentStatus.

If this configuration set is associated with an environment, the DeploymentStatus parameter indicates the deployment status of this configuration set:

  • null: This configuration is not associated with a running environment.

  • pending: This is a draft configuration that is not deployed to the associated environment but is in the process of deploying.

  • deployed: This is the configuration that is currently deployed to the associated running environment.

  • failed: This is a draft configuration that failed to successfully deploy.

Public Property Description System.String

Gets and sets the property Description.

Describes this configuration set.

Public Property EnvironmentName System.String

Gets and sets the property EnvironmentName.

If not null, the name of the environment for this configuration set.

Public Property HttpStatusCode System.Net.HttpStatusCode Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property OptionSettings System.Collections.Generic.List<Amazon.ElasticBeanstalk.Model.ConfigurationOptionSetting>

Gets and sets the property OptionSettings.

A list of the configuration options and their values in this configuration set.

Public Property PlatformArn System.String

Gets and sets the property PlatformArn.

The ARN of the platform version.

Public Property ResponseMetadata Amazon.Runtime.ResponseMetadata Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property SolutionStackName System.String

Gets and sets the property SolutionStackName.

The name of the solution stack this configuration set uses.

Public Property TemplateName System.String

Gets and sets the property TemplateName.

If not null, the name of the configuration template for this configuration set.

Examples

The following operation creates a configuration template named my-app-v1 from the settings applied to an environment with the id e-rpqsewtp2j:

To create a configuration template


var client = new AmazonElasticBeanstalkClient();
var response = client.CreateConfigurationTemplate(new CreateConfigurationTemplateRequest 
{
    ApplicationName = "my-app",
    EnvironmentId = "e-rpqsewtp2j",
    TemplateName = "my-app-v1"
});

string applicationName = response.ApplicationName;
DateTime dateCreated = response.DateCreated;
DateTime dateUpdated = response.DateUpdated;
string solutionStackName = response.SolutionStackName;
string templateName = response.TemplateName;

            

Version Information

.NET Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.5, 4.0, 3.5