pub struct CreateDhcpOptionsRequest {
pub dhcp_configurations: Vec<NewDhcpConfiguration>,
pub dry_run: Option<bool>,
pub tag_specifications: Option<Vec<TagSpecification>>,
}Fields§
§dhcp_configurations: Vec<NewDhcpConfiguration>A DHCP configuration option.
dry_run: Option<bool>Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
tag_specifications: Option<Vec<TagSpecification>>The tags to assign to the DHCP option.
Trait Implementations§
Source§impl Clone for CreateDhcpOptionsRequest
impl Clone for CreateDhcpOptionsRequest
Source§fn clone(&self) -> CreateDhcpOptionsRequest
fn clone(&self) -> CreateDhcpOptionsRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CreateDhcpOptionsRequest
impl Debug for CreateDhcpOptionsRequest
Source§impl Default for CreateDhcpOptionsRequest
impl Default for CreateDhcpOptionsRequest
Source§fn default() -> CreateDhcpOptionsRequest
fn default() -> CreateDhcpOptionsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateDhcpOptionsRequest
impl PartialEq for CreateDhcpOptionsRequest
impl StructuralPartialEq for CreateDhcpOptionsRequest
Auto Trait Implementations§
impl Freeze for CreateDhcpOptionsRequest
impl RefUnwindSafe for CreateDhcpOptionsRequest
impl Send for CreateDhcpOptionsRequest
impl Sync for CreateDhcpOptionsRequest
impl Unpin for CreateDhcpOptionsRequest
impl UnwindSafe for CreateDhcpOptionsRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more