Struct aws_sdk_ec2::input::AuthorizeClientVpnIngressInput
source · #[non_exhaustive]pub struct AuthorizeClientVpnIngressInput { /* private fields */ }
Implementations§
source§impl AuthorizeClientVpnIngressInput
impl AuthorizeClientVpnIngressInput
sourcepub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<AuthorizeClientVpnIngress, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<AuthorizeClientVpnIngress, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<AuthorizeClientVpnIngress
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AuthorizeClientVpnIngressInput
.
source§impl AuthorizeClientVpnIngressInput
impl AuthorizeClientVpnIngressInput
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.
sourcepub fn target_network_cidr(&self) -> Option<&str>
pub fn target_network_cidr(&self) -> Option<&str>
The IPv4 address range, in CIDR notation, of the network for which access is being authorized.
sourcepub fn access_group_id(&self) -> Option<&str>
pub fn access_group_id(&self) -> Option<&str>
The ID of the group to grant access to, for example, the Active Directory group or identity provider (IdP) group. Required if AuthorizeAllGroups
is false
or not specified.
Indicates whether to grant access to all clients. Specify true
to grant all clients who successfully establish a VPN connection access to the network. Must be set to true
if AccessGroupId
is not specified.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A brief description of the authorization rule.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.
Trait Implementations§
source§impl Clone for AuthorizeClientVpnIngressInput
impl Clone for AuthorizeClientVpnIngressInput
source§fn clone(&self) -> AuthorizeClientVpnIngressInput
fn clone(&self) -> AuthorizeClientVpnIngressInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq<AuthorizeClientVpnIngressInput> for AuthorizeClientVpnIngressInput
impl PartialEq<AuthorizeClientVpnIngressInput> for AuthorizeClientVpnIngressInput
source§fn eq(&self, other: &AuthorizeClientVpnIngressInput) -> bool
fn eq(&self, other: &AuthorizeClientVpnIngressInput) -> bool
self
and other
values to be equal, and is used
by ==
.