pub struct DeleteSecurityGroupRequest {
pub dry_run: Option<bool>,
pub group_id: Option<String>,
pub group_name: Option<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.
group_id: Option<String>The ID of the security group. Required for a nondefault VPC.
group_name: Option<String>[EC2-Classic, default VPC] The name of the security group. You can specify either the security group name or the security group ID.
Trait Implementations§
Source§impl Clone for DeleteSecurityGroupRequest
impl Clone for DeleteSecurityGroupRequest
Source§fn clone(&self) -> DeleteSecurityGroupRequest
fn clone(&self) -> DeleteSecurityGroupRequest
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 DeleteSecurityGroupRequest
impl Debug for DeleteSecurityGroupRequest
Source§impl Default for DeleteSecurityGroupRequest
impl Default for DeleteSecurityGroupRequest
Source§fn default() -> DeleteSecurityGroupRequest
fn default() -> DeleteSecurityGroupRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for DeleteSecurityGroupRequest
Auto Trait Implementations§
impl Freeze for DeleteSecurityGroupRequest
impl RefUnwindSafe for DeleteSecurityGroupRequest
impl Send for DeleteSecurityGroupRequest
impl Sync for DeleteSecurityGroupRequest
impl Unpin for DeleteSecurityGroupRequest
impl UnwindSafe for DeleteSecurityGroupRequest
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