pub struct ModifyVpcTenancyRequest {
pub dry_run: Option<bool>,
pub instance_tenancy: String,
pub vpc_id: String,
}Fields§
§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.
instance_tenancy: StringThe instance tenancy attribute for the VPC.
vpc_id: StringThe ID of the VPC.
Trait Implementations§
Source§impl Clone for ModifyVpcTenancyRequest
impl Clone for ModifyVpcTenancyRequest
Source§fn clone(&self) -> ModifyVpcTenancyRequest
fn clone(&self) -> ModifyVpcTenancyRequest
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 ModifyVpcTenancyRequest
impl Debug for ModifyVpcTenancyRequest
Source§impl Default for ModifyVpcTenancyRequest
impl Default for ModifyVpcTenancyRequest
Source§fn default() -> ModifyVpcTenancyRequest
fn default() -> ModifyVpcTenancyRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ModifyVpcTenancyRequest
impl PartialEq for ModifyVpcTenancyRequest
impl StructuralPartialEq for ModifyVpcTenancyRequest
Auto Trait Implementations§
impl Freeze for ModifyVpcTenancyRequest
impl RefUnwindSafe for ModifyVpcTenancyRequest
impl Send for ModifyVpcTenancyRequest
impl Sync for ModifyVpcTenancyRequest
impl Unpin for ModifyVpcTenancyRequest
impl UnwindSafe for ModifyVpcTenancyRequest
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