#[non_exhaustive]pub struct RevokeDbSecurityGroupIngressInput { /* private fields */ }Expand description
Implementations
sourceimpl RevokeDbSecurityGroupIngressInput
impl RevokeDbSecurityGroupIngressInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<RevokeDBSecurityGroupIngress, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<RevokeDBSecurityGroupIngress, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<RevokeDBSecurityGroupIngress>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture RevokeDbSecurityGroupIngressInput.
sourceimpl RevokeDbSecurityGroupIngressInput
impl RevokeDbSecurityGroupIngressInput
sourcepub fn db_security_group_name(&self) -> Option<&str>
pub fn db_security_group_name(&self) -> Option<&str>
The name of the DB security group to revoke ingress from.
sourcepub fn cidrip(&self) -> Option<&str>
pub fn cidrip(&self) -> Option<&str>
The IP range to revoke access from. Must be a valid CIDR range. If CIDRIP is specified, EC2SecurityGroupName, EC2SecurityGroupId and EC2SecurityGroupOwnerId can't be provided.
sourcepub fn ec2_security_group_name(&self) -> Option<&str>
pub fn ec2_security_group_name(&self) -> Option<&str>
The name of the EC2 security group to revoke access from. For VPC DB security groups, EC2SecurityGroupId must be provided. Otherwise, EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId must be provided.
sourcepub fn ec2_security_group_id(&self) -> Option<&str>
pub fn ec2_security_group_id(&self) -> Option<&str>
The id of the EC2 security group to revoke access from. For VPC DB security groups, EC2SecurityGroupId must be provided. Otherwise, EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId must be provided.
sourcepub fn ec2_security_group_owner_id(&self) -> Option<&str>
pub fn ec2_security_group_owner_id(&self) -> Option<&str>
The Amazon Web Services account number of the owner of the EC2 security group specified in the EC2SecurityGroupName parameter. The Amazon Web Services access key ID isn't an acceptable value. For VPC DB security groups, EC2SecurityGroupId must be provided. Otherwise, EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId must be provided.
Trait Implementations
sourceimpl Clone for RevokeDbSecurityGroupIngressInput
impl Clone for RevokeDbSecurityGroupIngressInput
sourcefn clone(&self) -> RevokeDbSecurityGroupIngressInput
fn clone(&self) -> RevokeDbSecurityGroupIngressInput
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more