describeInstances - fixed the filter support for private-ip-address

This commit is contained in:
prachi 2012-04-11 16:16:02 -07:00
parent 1fa596fcf5
commit af5137260a
1 changed files with 2 additions and 1 deletions

View File

@ -44,7 +44,8 @@ public class EC2InstanceFilterSet {
filterTypes.put( "instance-state-name", "string" );
filterTypes.put( "ip-address", "string" );
filterTypes.put( "owner-id", "string" );
filterTypes.put( "root-device-name", "string" );
filterTypes.put( "root-device-name", "string" );
filterTypes.put( "private-ip-address", "string" );
}