#[non_exhaustive]pub struct UpdateSecurityGroupRuleDescriptionsIngressInput { /* private fields */ }
Implementations§
source§impl UpdateSecurityGroupRuleDescriptionsIngressInput
impl UpdateSecurityGroupRuleDescriptionsIngressInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateSecurityGroupRuleDescriptionsIngress, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateSecurityGroupRuleDescriptionsIngress, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UpdateSecurityGroupRuleDescriptionsIngress
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpdateSecurityGroupRuleDescriptionsIngressInput
.
source§impl UpdateSecurityGroupRuleDescriptionsIngressInput
impl UpdateSecurityGroupRuleDescriptionsIngressInput
sourcepub fn dry_run(&self) -> Option<bool>
pub fn dry_run(&self) -> 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
.
sourcepub fn group_id(&self) -> Option<&str>
pub fn group_id(&self) -> Option<&str>
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.
sourcepub fn group_name(&self) -> Option<&str>
pub fn group_name(&self) -> Option<&str>
[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. For security groups in a nondefault VPC, you must specify the security group ID.
sourcepub fn ip_permissions(&self) -> Option<&[IpPermission]>
pub fn ip_permissions(&self) -> Option<&[IpPermission]>
The IP permissions for the security group rule. You must specify either IP permissions or a description.
sourcepub fn security_group_rule_descriptions(
&self
) -> Option<&[SecurityGroupRuleDescription]>
pub fn security_group_rule_descriptions(
&self
) -> Option<&[SecurityGroupRuleDescription]>
[VPC only] The description for the ingress security group rules. You must specify either a description or IP permissions.
Trait Implementations§
source§impl Clone for UpdateSecurityGroupRuleDescriptionsIngressInput
impl Clone for UpdateSecurityGroupRuleDescriptionsIngressInput
source§fn clone(&self) -> UpdateSecurityGroupRuleDescriptionsIngressInput
fn clone(&self) -> UpdateSecurityGroupRuleDescriptionsIngressInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq<UpdateSecurityGroupRuleDescriptionsIngressInput> for UpdateSecurityGroupRuleDescriptionsIngressInput
impl PartialEq<UpdateSecurityGroupRuleDescriptionsIngressInput> for UpdateSecurityGroupRuleDescriptionsIngressInput
source§fn eq(&self, other: &UpdateSecurityGroupRuleDescriptionsIngressInput) -> bool
fn eq(&self, other: &UpdateSecurityGroupRuleDescriptionsIngressInput) -> bool
self
and other
values to be equal, and is used
by ==
.