Package com.amazonaws.services.elasticbeanstalk.model

Examples of com.amazonaws.services.elasticbeanstalk.model.CreateConfigurationTemplateResult


      do {
        templateName = String.format("%s-%s-%02d", cnamePrefix, today, i++);
      } while (configTemplates.contains(templateName));
    }

    CreateConfigurationTemplateResult result = getService().createConfigurationTemplate(
        new CreateConfigurationTemplateRequest().withEnvironmentId(
            curEnv.getEnvironmentId()).withTemplateName(
            templateName).withApplicationName(curEnv.getApplicationName()));
   
    getLog().info("Created config template " + templateName + " for environment " + curEnv.getEnvironmentId());
View Full Code Here


      do {
        templateName = String.format("%s-%s-%02d", curEnv.getEnvironmentName(), today, i++);
      } while (configTemplates.contains(templateName));
    }

    CreateConfigurationTemplateResult result = getService().createConfigurationTemplate(
        new CreateConfigurationTemplateRequest().withEnvironmentId(
            curEnv.getEnvironmentId()).withTemplateName(
            templateName).withApplicationName(curEnv.getApplicationName()));
   
    getLog().info("Created config template " + templateName + " for environment " + curEnv.getEnvironmentId());
View Full Code Here

TOP

Related Classes of com.amazonaws.services.elasticbeanstalk.model.CreateConfigurationTemplateResult

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.