public interface VPCApi
Modifier and Type | Method and Description |
---|---|
VPC |
createVpc(String region,
String cidrBlock,
CreateVpcOptions... options)
Creates a VPC with the specified CIDR block.
|
boolean |
deleteVpc(String region,
String vpcId)
Deletes
VPC . |
com.google.common.collect.FluentIterable<VPC> |
describeVpcsInRegion(String region,
String... vpcIds)
Describes all of your VPCs
|
@Named(value="DescribeVpcs") com.google.common.collect.FluentIterable<VPC> describeVpcsInRegion(@Nullable String region, String... vpcIds)
@Named(value="CreateVpc") VPC createVpc(@Nullable String region, String cidrBlock, CreateVpcOptions... options)
region
- VPCs are tied to the Region.cidrBlock
- The network range for the VPC, in CIDR notation. For example, 10.0.0.0/16.CreateVpcOptions
,
Copyright © 2009-2016 The Apache Software Foundation. All Rights Reserved.