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); Also t2 number of processors seem to be wrong, t2.xlarge has 4vCPU -- 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#pullrequestreview-165830124