GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Paws::ElasticBeanstalk::CreateConfigurationTemplate(3) User Contributed Perl Documentation Paws::ElasticBeanstalk::CreateConfigurationTemplate(3)

Paws::ElasticBeanstalk::CreateConfigurationTemplate - Arguments for method CreateConfigurationTemplate on Paws::ElasticBeanstalk

This class represents the parameters used for calling the method CreateConfigurationTemplate on the AWS Elastic Beanstalk service. Use the attributes of this class as arguments to method CreateConfigurationTemplate.

You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to CreateConfigurationTemplate.

    my $elasticbeanstalk = Paws->service('ElasticBeanstalk');
 # To create a configuration template
 # The following operation creates a configuration template named my-app-v1 from
 # the settings applied to an environment with the id e-rpqsewtp2j:
    my $ConfigurationSettingsDescription =
      $elasticbeanstalk->CreateConfigurationTemplate(
      'ApplicationName' => 'my-app',
      'EnvironmentId'   => 'e-rpqsewtp2j',
      'TemplateName'    => 'my-app-v1'
      );
    # Results:
    my $ApplicationName = $ConfigurationSettingsDescription->ApplicationName;
    my $DateCreated     = $ConfigurationSettingsDescription->DateCreated;
    my $DateUpdated     = $ConfigurationSettingsDescription->DateUpdated;
    my $SolutionStackName =
      $ConfigurationSettingsDescription->SolutionStackName;
    my $TemplateName = $ConfigurationSettingsDescription->TemplateName;
 # Returns a L<Paws::ElasticBeanstalk::ConfigurationSettingsDescription> object.

Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see <https://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk/CreateConfigurationTemplate>

REQUIRED ApplicationName => Str

The name of the Elastic Beanstalk application to associate with this configuration template.

An optional description for this configuration.

The ID of an environment whose settings you want to use to create the configuration template. You must specify "EnvironmentId" if you don't specify "PlatformArn", "SolutionStackName", or "SourceConfiguration".

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 (https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/command-options.html) in the AWS Elastic Beanstalk Developer Guide.

The Amazon Resource Name (ARN) of the custom platform. For more information, see Custom Platforms (https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/custom-platforms.html) in the AWS Elastic Beanstalk Developer Guide.

If you specify "PlatformArn", then don't specify "SolutionStackName".

The name of an Elastic Beanstalk solution stack (platform version) that this configuration uses. For example, "64bit Amazon Linux 2013.09 running Tomcat 7 Java 7". A solution stack specifies the operating system, runtime, and application server for a configuration template. It also determines the set of configuration options as well as the possible and default values. For more information, see Supported Platforms (https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/concepts.platforms.html) in the AWS Elastic Beanstalk Developer Guide.

You must specify "SolutionStackName" if you don't specify "PlatformArn", "EnvironmentId", or "SourceConfiguration".

Use the "ListAvailableSolutionStacks" (https://docs.aws.amazon.com/elasticbeanstalk/latest/api/API_ListAvailableSolutionStacks.html) API to obtain a list of available solution stacks.

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 "OptionSettings" override any values obtained from the "SourceConfiguration".

You must specify "SourceConfiguration" if you don't specify "PlatformArn", "EnvironmentId", or "SolutionStackName".

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.

Specifies the tags applied to the configuration template.

REQUIRED TemplateName => Str

The name of the configuration template.

Constraint: This name must be unique per application.

This class forms part of Paws, documenting arguments for method CreateConfigurationTemplate in Paws::ElasticBeanstalk

The source code is located here: <https://github.com/pplu/aws-sdk-perl>

Please report bugs to: <https://github.com/pplu/aws-sdk-perl/issues>

2022-06-01 perl v5.40.2

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.