pub struct ListTlsActivationsParams {
pub filter_tls_certificate_id: Option<String>,
pub filter_tls_configuration_id: Option<String>,
pub filter_tls_domain_id: Option<String>,
pub include: Option<String>,
pub page_number: Option<i32>,
pub page_size: Option<i32>,
}Expand description
struct for passing parameters to the method list_tls_activations
Fields§
§filter_tls_certificate_id: Option<String>Limit the returned activations to a specific certificate.
filter_tls_configuration_id: Option<String>Limit the returned activations to a specific TLS configuration.
filter_tls_domain_id: Option<String>Limit the returned rules to a specific domain name.
include: Option<String>Include related objects. Optional, comma-separated values. Permitted values: tls_certificate, tls_configuration, and tls_domain.
page_number: Option<i32>Current page.
page_size: Option<i32>Number of records per page.
Trait Implementations§
source§impl Clone for ListTlsActivationsParams
impl Clone for ListTlsActivationsParams
source§fn clone(&self) -> ListTlsActivationsParams
fn clone(&self) -> ListTlsActivationsParams
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 ListTlsActivationsParams
impl Debug for ListTlsActivationsParams
source§impl Default for ListTlsActivationsParams
impl Default for ListTlsActivationsParams
source§fn default() -> ListTlsActivationsParams
fn default() -> ListTlsActivationsParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for ListTlsActivationsParams
impl Send for ListTlsActivationsParams
impl Sync for ListTlsActivationsParams
impl Unpin for ListTlsActivationsParams
impl UnwindSafe for ListTlsActivationsParams
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