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 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 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 Freeze for ListTlsActivationsParams
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