Struct rusoto_ec2::UpdateSecurityGroupRuleDescriptionsIngressRequest [] [src]

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

Contains the parameters for UpdateSecurityGroupRuleDescriptionsIngress.

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.

[EC2-Classic, 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 UpdateSecurityGroupRuleDescriptionsIngressRequest
[src]

[src]

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

impl Debug for UpdateSecurityGroupRuleDescriptionsIngressRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateSecurityGroupRuleDescriptionsIngressRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations