![]() |
![]()
| ![]() |
![]()
NAMEPaws::ElasticBeanstalk::CreateConfigurationTemplate - Arguments for method CreateConfigurationTemplate on Paws::ElasticBeanstalk DESCRIPTIONThis 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. SYNOPSISmy $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> ATTRIBUTESREQUIRED ApplicationName => StrThe name of the Elastic Beanstalk application to associate with this configuration template. Description => StrAn optional description for this configuration. EnvironmentId => StrThe 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". OptionSettings => ArrayRef[Paws::ElasticBeanstalk::ConfigurationOptionSetting]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. PlatformArn => StrThe 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". SolutionStackName => StrThe 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. SourceConfiguration => Paws::ElasticBeanstalk::SourceConfigurationAn 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. Tags => ArrayRef[Paws::ElasticBeanstalk::Tag]Specifies the tags applied to the configuration template. REQUIRED TemplateName => StrThe name of the configuration template. Constraint: This name must be unique per application. SEE ALSOThis class forms part of Paws, documenting arguments for method CreateConfigurationTemplate in Paws::ElasticBeanstalk BUGS and CONTRIBUTIONSThe source code is located here: <https://github.com/pplu/aws-sdk-perl> Please report bugs to: <https://github.com/pplu/aws-sdk-perl/issues>
|