Struct rusoto_ec2::UpdateSecurityGroupRuleDescriptionsEgressRequest[][src]

pub struct UpdateSecurityGroupRuleDescriptionsEgressRequest {
    pub dry_run: Option<bool>,
    pub group_id: Option<String>,
    pub group_name: Option<String>,
    pub ip_permissions: Vec<IpPermission>,
}

Contains the parameters for UpdateSecurityGroupRuleDescriptionsEgress.

Fields

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.

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.

[Default VPC] The name of the security group. You must specify either the security group ID or the security group name in the request.

The IP permissions for the security group rule.

Trait Implementations

impl Default for UpdateSecurityGroupRuleDescriptionsEgressRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for UpdateSecurityGroupRuleDescriptionsEgressRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateSecurityGroupRuleDescriptionsEgressRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for UpdateSecurityGroupRuleDescriptionsEgressRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations