Struct aws_sdk_ec2::model::AuthorizationRule [−][src]
#[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
The ID of the Client VPN endpoint with which the authorization rule is associated.
A brief description of the authorization rule.
The ID of the Active Directory group to which the authorization rule grants access.
Indicates whether the authorization rule grants access to all clients.
The IPv4 address range, in CIDR notation, of the network to which the authorization rule applies.
The current state of the authorization rule.
Creates a new builder-style object to manufacture AuthorizationRule
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
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
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more