danielestevez commented on this pull request.
> @@ -429,6 +444,89 @@ public static EC2HardwareBuilder t2_large() { .processors(ImmutableList.of(new Processor(1.0, 0.4))).rootDeviceType(RootDeviceType.EBS); } + /** + * @see InstanceType#T2_XLARGE + */ + public static EC2HardwareBuilder t2_xlarge() { + return new EC2HardwareBuilder(InstanceType.T2_XLARGE).t2() + .ram(16384) + .processors(ImmutableList.of(new Processor(2.0, 0.4))).rootDeviceType(RootDeviceType.EBS); Code should match what the AWS documentation and the javadoc, yes. t2.large is ok but t2.xlarge should be 4 vcpu -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/1245#discussion_r226095178