pub struct ImportClientVpnClientCertificateRevocationListRequest {
pub certificate_revocation_list: String,
pub client_vpn_endpoint_id: String,
pub dry_run: Option<bool>,
}Fields§
§certificate_revocation_list: StringThe client certificate revocation list file. For more information, see Generate a Client Certificate Revocation List in the AWS Client VPN Administrator Guide.
client_vpn_endpoint_id: StringThe ID of the Client VPN endpoint to which the client certificate revocation list applies.
dry_run: Option<bool>Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
Trait Implementations§
Source§impl Clone for ImportClientVpnClientCertificateRevocationListRequest
impl Clone for ImportClientVpnClientCertificateRevocationListRequest
Source§fn clone(&self) -> ImportClientVpnClientCertificateRevocationListRequest
fn clone(&self) -> ImportClientVpnClientCertificateRevocationListRequest
Returns a duplicate 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 Default for ImportClientVpnClientCertificateRevocationListRequest
impl Default for ImportClientVpnClientCertificateRevocationListRequest
Source§fn default() -> ImportClientVpnClientCertificateRevocationListRequest
fn default() -> ImportClientVpnClientCertificateRevocationListRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ImportClientVpnClientCertificateRevocationListRequest
impl PartialEq for ImportClientVpnClientCertificateRevocationListRequest
Source§fn eq(
&self,
other: &ImportClientVpnClientCertificateRevocationListRequest,
) -> bool
fn eq( &self, other: &ImportClientVpnClientCertificateRevocationListRequest, ) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ImportClientVpnClientCertificateRevocationListRequest
Auto Trait Implementations§
impl Freeze for ImportClientVpnClientCertificateRevocationListRequest
impl RefUnwindSafe for ImportClientVpnClientCertificateRevocationListRequest
impl Send for ImportClientVpnClientCertificateRevocationListRequest
impl Sync for ImportClientVpnClientCertificateRevocationListRequest
impl Unpin for ImportClientVpnClientCertificateRevocationListRequest
impl UnwindSafe for ImportClientVpnClientCertificateRevocationListRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more