Struct aws_sdk_ec2::model::AuthorizationRule
source · [−]#[non_exhaustive]pub struct AuthorizationRule {
pub client_vpn_endpoint_id: Option<String>,
pub description: Option<String>,
pub group_id: Option<String>,
pub access_all: Option<bool>,
pub destination_cidr: Option<String>,
pub status: Option<ClientVpnAuthorizationRuleStatus>,
}
Expand description
Information about an authorization rule.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.client_vpn_endpoint_id: Option<String>
The ID of the Client VPN endpoint with which the authorization rule is associated.
description: Option<String>
A brief description of the authorization rule.
group_id: Option<String>
The ID of the Active Directory group to which the authorization rule grants access.
access_all: Option<bool>
Indicates whether the authorization rule grants access to all clients.
destination_cidr: Option<String>
The IPv4 address range, in CIDR notation, of the network to which the authorization rule applies.
status: Option<ClientVpnAuthorizationRuleStatus>
The current state of the authorization rule.
Implementations
sourceimpl 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.
sourceimpl AuthorizationRule
impl AuthorizationRule
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AuthorizationRule
.
Trait Implementations
sourceimpl Clone for AuthorizationRule
impl Clone for AuthorizationRule
sourcefn clone(&self) -> AuthorizationRule
fn clone(&self) -> AuthorizationRule
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for AuthorizationRule
impl Debug for AuthorizationRule
sourceimpl PartialEq<AuthorizationRule> for AuthorizationRule
impl PartialEq<AuthorizationRule> for AuthorizationRule
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &AuthorizationRule) -> bool
fn ne(&self, other: &AuthorizationRule) -> bool
This method tests for !=
.
impl StructuralPartialEq for AuthorizationRule
Auto Trait Implementations
impl RefUnwindSafe for AuthorizationRule
impl Send for AuthorizationRule
impl Sync for AuthorizationRule
impl Unpin for AuthorizationRule
impl UnwindSafe for AuthorizationRule
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more