pub struct UpdateSecurityGroupRuleDescriptionsEgressRequest {
pub dry_run: Option<bool>,
pub group_id: Option<String>,
pub group_name: Option<String>,
pub ip_permissions: Vec<IpPermission>,
}
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. You must specify either the security group ID or the security group name in the request. For security groups in a nondefault VPC, you must specify the security group ID.
group_name: Option<String>
[Default VPC] The name of the security group. You must specify either the security group ID or the security group name in the request.
ip_permissions: Vec<IpPermission>
The IP permissions for the security group rule.
Trait Implementations§
Source§impl Clone for UpdateSecurityGroupRuleDescriptionsEgressRequest
impl Clone for UpdateSecurityGroupRuleDescriptionsEgressRequest
Source§fn clone(&self) -> UpdateSecurityGroupRuleDescriptionsEgressRequest
fn clone(&self) -> UpdateSecurityGroupRuleDescriptionsEgressRequest
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 Default for UpdateSecurityGroupRuleDescriptionsEgressRequest
impl Default for UpdateSecurityGroupRuleDescriptionsEgressRequest
Source§fn default() -> UpdateSecurityGroupRuleDescriptionsEgressRequest
fn default() -> UpdateSecurityGroupRuleDescriptionsEgressRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateSecurityGroupRuleDescriptionsEgressRequest
impl PartialEq for UpdateSecurityGroupRuleDescriptionsEgressRequest
Source§fn eq(&self, other: &UpdateSecurityGroupRuleDescriptionsEgressRequest) -> bool
fn eq(&self, other: &UpdateSecurityGroupRuleDescriptionsEgressRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UpdateSecurityGroupRuleDescriptionsEgressRequest
Auto Trait Implementations§
impl Freeze for UpdateSecurityGroupRuleDescriptionsEgressRequest
impl RefUnwindSafe for UpdateSecurityGroupRuleDescriptionsEgressRequest
impl Send for UpdateSecurityGroupRuleDescriptionsEgressRequest
impl Sync for UpdateSecurityGroupRuleDescriptionsEgressRequest
impl Unpin for UpdateSecurityGroupRuleDescriptionsEgressRequest
impl UnwindSafe for UpdateSecurityGroupRuleDescriptionsEgressRequest
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