View source: R/elasticbeanstalk_operations.R
elasticbeanstalk_create_configuration_template | R Documentation |
Creates an AWS Elastic Beanstalk configuration template, associated with a specific Elastic Beanstalk application. You define application configuration settings in a configuration template. You can then use the configuration template to deploy different versions of the application with the same configuration settings.
See https://www.paws-r-sdk.com/docs/elasticbeanstalk_create_configuration_template/ for full documentation.
elasticbeanstalk_create_configuration_template(
ApplicationName,
TemplateName,
SolutionStackName = NULL,
PlatformArn = NULL,
SourceConfiguration = NULL,
EnvironmentId = NULL,
Description = NULL,
OptionSettings = NULL,
Tags = NULL
)
ApplicationName |
[required] The name of the Elastic Beanstalk application to associate with this configuration template. |
TemplateName |
[required] The name of the configuration template. Constraint: This name must be unique per application. |
SolutionStackName |
The name of an Elastic Beanstalk solution stack (platform version) that
this configuration uses. For example,
You must specify Use the
|
PlatformArn |
The Amazon Resource Name (ARN) of the custom platform. For more information, see Custom Platforms in the AWS Elastic Beanstalk Developer Guide. If you specify |
SourceConfiguration |
An Elastic Beanstalk configuration template to base this one on. If specified, Elastic Beanstalk uses the configuration values from the specified configuration template to create a new configuration. Values specified in You must specify Constraint: If both solution stack name and source configuration are specified, the solution stack of the source configuration template must match the specified solution stack name. |
EnvironmentId |
The ID of an environment whose settings you want to use to create the
configuration template. You must specify |
Description |
An optional description for this configuration. |
OptionSettings |
Option values for the Elastic Beanstalk configuration, such as the instance type. If specified, these values override the values obtained from the solution stack or the source configuration template. For a complete list of Elastic Beanstalk configuration options, see Option Values in the AWS Elastic Beanstalk Developer Guide. |
Tags |
Specifies the tags applied to the configuration template. |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.