Struct aws_sdk_ec2::model::AuthorizationRule
source · #[non_exhaustive]pub struct AuthorizationRule { /* private fields */ }
Expand description
Information about an authorization rule.
Implementations§
source§impl AuthorizationRule
impl AuthorizationRule
sourcepub fn client_vpn_endpoint_id(&self) -> Option<&str>
pub fn client_vpn_endpoint_id(&self) -> Option<&str>
The ID of the Client VPN endpoint with which the authorization rule is associated.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A brief description of the authorization rule.
sourcepub fn group_id(&self) -> Option<&str>
pub fn group_id(&self) -> Option<&str>
The ID of the Active Directory group to which the authorization rule grants access.
sourcepub fn access_all(&self) -> Option<bool>
pub fn access_all(&self) -> Option<bool>
Indicates whether the authorization rule grants access to all clients.
sourcepub fn destination_cidr(&self) -> Option<&str>
pub fn destination_cidr(&self) -> Option<&str>
The IPv4 address range, in CIDR notation, of the network to which the authorization rule applies.
sourcepub fn status(&self) -> Option<&ClientVpnAuthorizationRuleStatus>
pub fn status(&self) -> Option<&ClientVpnAuthorizationRuleStatus>
The current state of the authorization rule.
source§impl AuthorizationRule
impl AuthorizationRule
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AuthorizationRule
.
Trait Implementations§
source§impl Clone for AuthorizationRule
impl Clone for AuthorizationRule
source§fn clone(&self) -> AuthorizationRule
fn clone(&self) -> AuthorizationRule
Returns a copy 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 Debug for AuthorizationRule
impl Debug for AuthorizationRule
source§impl PartialEq<AuthorizationRule> for AuthorizationRule
impl PartialEq<AuthorizationRule> for AuthorizationRule
source§fn eq(&self, other: &AuthorizationRule) -> bool
fn eq(&self, other: &AuthorizationRule) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.