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

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

Introduction

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

Prototype


public Subnet withCidrBlock(String cidrBlock) 

Source Link

Document

The IPv4 CIDR block assigned to 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  ww  .  j a va  2s. 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;
}