Package com.amazonaws.services.elasticbeanstalk.model

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


            if ("Worker".equals(context.getEnvironmentTierName())) {
                envTierType = "SQS/JSON";
            }

            req.setTier(new EnvironmentTier().withName(context.getEnvironmentTierName()).withType(envTierType).withVersion(envTierVersion));
        }
   
    if (null != context.optionSettings)
        req.setOptionSettings(Arrays.asList(context.optionSettings));
View Full Code Here


            if (contextDoesNotContainsEC2Role(context)) {
                parentMojo.getLog().warn("It is meaningless to launch a worker without an IAM Role. If you set in templateName, thats fine, but here's a warning for you");
            };
            context.setEnvironmentTierType("SQS/HTTP");
            request.setCNAMEPrefix(null);
            request.setTier(new EnvironmentTier().withName(context.getEnvironmentTierName()).withType(context.getEnvironmentTierType()).withVersion(context.getEnvironmentTierVersion()));
        }

    if (StringUtils.isNotBlank(context.getTemplateName())) {
      request.setTemplateName(parentMojo.lookupTemplateName(
          context.getApplicationName(), context.getTemplateName()));
View Full Code Here

            if ("Worker".equals(context.getEnvironmentTierName())) {
                envTierType = "SQS/JSON";
            }

            req.setTier(new EnvironmentTier().withName(context.getEnvironmentTierName()).withType(envTierType).withVersion(envTierVersion));
        }
   
    if (null != context.optionSettings && 0 != context.optionSettings.length)
        req.setOptionSettings(Arrays.asList(context.optionSettings));
View Full Code Here

TOP

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

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.