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

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

Introduction

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

Prototype


public Subnet withSubnetId(String subnetId) 

Source Link

Document

The ID 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  a2  s  .  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;
}