Package com.amazonaws.services.autoscaling.model

Examples of com.amazonaws.services.autoscaling.model.CreateLaunchConfigurationRequest


        detailedMonitoring);
  }

  @Override
  public Void call() {
    CreateLaunchConfigurationRequest request = new CreateLaunchConfigurationRequest()
        .withLaunchConfigurationName(this.launchConfigurationName)
        .withImageId(this.imageId)
        .withInstanceType(this.instanceType)
        .withUserData(AmazonApiUtils.base64Encode(this.bootScript))
        .withSecurityGroups(this.securityGroups)
View Full Code Here

TOP

Related Classes of com.amazonaws.services.autoscaling.model.CreateLaunchConfigurationRequest

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.