GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
VM::EC2::VPC::DhcpOptions(3) User Contributed Perl Documentation VM::EC2::VPC::DhcpOptions(3)

VM::EC2::VPC::DhcpOptions -- DHCP options set for an AWS Virtual Private Cloud

 use VM::EC2;
 my $ec2     = VM::EC2->new(...);
 my $vpc     = $ec2->create_vpc('10.0.0.0/16');
 my $options = $ec2->create_dhcp_options(-domain_name=>'test.com',
                                         -domain_name_servers=>['204.16.255.55','216.239.34.10']);
 $vpc->set_dhcp_options($options);

Please see VM::EC2::Generic for methods shared by all VM::EC2 objects.

These object methods are supported:

 dhcpOptionsId         -- ID of the dhcp options
 dhcpConfigurationSet  -- Hash of options

In addition, this object supports the following convenience methods:

 options()                -- return list of DHCP options contained in this set
 option('option-name')    -- return list of values for the named option. Note
                               that all options correspond to a list; calling in
                               a scalar context will return size of the list
 associate_vpc($vpc_id)   -- Associate these options with the given VPC.
 associated_vpcs()        -- Return list of VPCs associated with the DHCP option set.
 as_string()              -- returns a string concatenation of all options

When used in a string context, this object will be interpolated as the dhcp ID.

VM::EC2 VM::EC2::Generic

Lincoln Stein <lincoln.stein@gmail.com>.

Copyright (c) 2012 Ontario Institute for Cancer Research

This package and its accompanying libraries is free software; you can redistribute it and/or modify it under the terms of the GPL (either version 1, or at your option, any later version) or the Artistic License 2.0. Refer to LICENSE for the full license text. In addition, please see DISCLAIMER.txt for disclaimers of warranty.

2022-04-07 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.