Example usage for com.amazonaws.services.ec2.model Subnet withAvailabilityZone

List of usage examples for com.amazonaws.services.ec2.model Subnet withAvailabilityZone

Introduction

In this page you can find the example usage for com.amazonaws.services.ec2.model Subnet withAvailabilityZone.

Prototype


public Subnet withAvailabilityZone(String availabilityZone) 

Source Link

Document

The Availability Zone of the subnet.

Usage

From source file:jp.primecloud.auto.ui.mock.service.MockAwsDescribeService.java

License:Open Source License

@Override
public List<Subnet> getSubnets(Long userNo, Long platformNo) {
    List<Subnet> subnets = new ArrayList<Subnet>();

    {//from  w w  w  .  j a v  a2s.  c o  m
        Subnet subnet = new Subnet();
        subnet.withSubnetId("subnet-a");
        subnet.withCidrBlock("192.168.1.0/26");
        subnet.withAvailabilityZone("ap-northeast-1a");
        subnets.add(subnet);
    }

    {
        Subnet subnet = new Subnet();
        subnet.withSubnetId("subnet-b");
        subnet.withCidrBlock("192.168.1.64/26");
        subnet.withAvailabilityZone("ap-northeast-1b");
        subnets.add(subnet);
    }

    {
        Subnet subnet = new Subnet();
        subnet.withSubnetId("subnet-c");
        subnet.withCidrBlock("192.168.1.128/26");
        subnet.withAvailabilityZone("ap-northeast-1c");
        subnets.add(subnet);
    }

    return subnets;
}