Examples of DescribeConfigurationSettingsRequest


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

        .isNotBlank(templateName);

    if (bNameDefined ^ bTemplateNameDefined)
      throw new MojoFailureException("You can define either environmentName or templateName, but not both");

    DescribeConfigurationSettingsRequest req = new DescribeConfigurationSettingsRequest()//
        .withApplicationName(applicationName)//
        .withEnvironmentName(environmentName)//
        .withTemplateName(templateName)//
    ;
View Full Code Here

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

    return null;
  }

  void describeConfigurationTemplate(String configTemplateName) {
    DescribeConfigurationSettingsRequest req = new DescribeConfigurationSettingsRequest()
        .withApplicationName(applicationName).withTemplateName(
            configTemplateName);

    DescribeConfigurationSettingsResult configSettings = getService().describeConfigurationSettings(req);
   
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.