Package com.amazonaws.services.autoscaling.model

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


        .withInstanceType(this.instanceType)
        .withUserData(AmazonApiUtils.base64Encode(this.bootScript))
        .withSecurityGroups(this.securityGroups)
        .withKeyName(this.keyPair)
        .withInstanceMonitoring(
            new InstanceMonitoring()
                .withEnabled(this.detailedMonitoring));
    getClient().getApi().createLaunchConfiguration(request);
    return null;
  }
View Full Code Here

TOP

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

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.