Struct aws_sdk_cloudfront::types::QueryArgProfiles
source · #[non_exhaustive]pub struct QueryArgProfiles {
pub quantity: i32,
pub items: Option<Vec<QueryArgProfile>>,
}
Expand description
Query argument-profile mapping for field-level encryption.
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.quantity: i32
Number of profiles for query argument-profile mapping for field-level encryption.
items: Option<Vec<QueryArgProfile>>
Number of items for query argument-profile mapping for field-level encryption.
Implementations§
source§impl QueryArgProfiles
impl QueryArgProfiles
sourcepub fn quantity(&self) -> i32
pub fn quantity(&self) -> i32
Number of profiles for query argument-profile mapping for field-level encryption.
sourcepub fn items(&self) -> &[QueryArgProfile]
pub fn items(&self) -> &[QueryArgProfile]
Number of items for query argument-profile mapping for field-level encryption.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .items.is_none()
.
source§impl QueryArgProfiles
impl QueryArgProfiles
sourcepub fn builder() -> QueryArgProfilesBuilder
pub fn builder() -> QueryArgProfilesBuilder
Creates a new builder-style object to manufacture QueryArgProfiles
.
Trait Implementations§
source§impl Clone for QueryArgProfiles
impl Clone for QueryArgProfiles
source§fn clone(&self) -> QueryArgProfiles
fn clone(&self) -> QueryArgProfiles
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 QueryArgProfiles
impl Debug for QueryArgProfiles
source§impl PartialEq for QueryArgProfiles
impl PartialEq for QueryArgProfiles
source§fn eq(&self, other: &QueryArgProfiles) -> bool
fn eq(&self, other: &QueryArgProfiles) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for QueryArgProfiles
Auto Trait Implementations§
impl RefUnwindSafe for QueryArgProfiles
impl Send for QueryArgProfiles
impl Sync for QueryArgProfiles
impl Unpin for QueryArgProfiles
impl UnwindSafe for QueryArgProfiles
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> 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>
Creates a shared type from an unshared type.