Struct aws_sdk_elasticloadbalancingv2::operation::describe_trust_store_revocations::DescribeTrustStoreRevocationsInput
source · #[non_exhaustive]pub struct DescribeTrustStoreRevocationsInput {
pub trust_store_arn: Option<String>,
pub revocation_ids: Option<Vec<i64>>,
pub marker: Option<String>,
pub page_size: Option<i32>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.trust_store_arn: Option<String>The Amazon Resource Name (ARN) of the trust store.
revocation_ids: Option<Vec<i64>>The revocation IDs of the revocation files you want to describe.
marker: Option<String>The marker for the next set of results. (You received this marker from a previous call.)
page_size: Option<i32>The maximum number of results to return with this call.
Implementations§
source§impl DescribeTrustStoreRevocationsInput
impl DescribeTrustStoreRevocationsInput
sourcepub fn trust_store_arn(&self) -> Option<&str>
pub fn trust_store_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the trust store.
sourcepub fn revocation_ids(&self) -> &[i64]
pub fn revocation_ids(&self) -> &[i64]
The revocation IDs of the revocation files you want to describe.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .revocation_ids.is_none().
source§impl DescribeTrustStoreRevocationsInput
impl DescribeTrustStoreRevocationsInput
sourcepub fn builder() -> DescribeTrustStoreRevocationsInputBuilder
pub fn builder() -> DescribeTrustStoreRevocationsInputBuilder
Creates a new builder-style object to manufacture DescribeTrustStoreRevocationsInput.
Trait Implementations§
source§impl Clone for DescribeTrustStoreRevocationsInput
impl Clone for DescribeTrustStoreRevocationsInput
source§fn clone(&self) -> DescribeTrustStoreRevocationsInput
fn clone(&self) -> DescribeTrustStoreRevocationsInput
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 PartialEq for DescribeTrustStoreRevocationsInput
impl PartialEq for DescribeTrustStoreRevocationsInput
source§fn eq(&self, other: &DescribeTrustStoreRevocationsInput) -> bool
fn eq(&self, other: &DescribeTrustStoreRevocationsInput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeTrustStoreRevocationsInput
Auto Trait Implementations§
impl Freeze for DescribeTrustStoreRevocationsInput
impl RefUnwindSafe for DescribeTrustStoreRevocationsInput
impl Send for DescribeTrustStoreRevocationsInput
impl Sync for DescribeTrustStoreRevocationsInput
impl Unpin for DescribeTrustStoreRevocationsInput
impl UnwindSafe for DescribeTrustStoreRevocationsInput
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.