#[non_exhaustive]pub struct QueryArgProfileConfigBuilder { /* private fields */ }Expand description
A builder for QueryArgProfileConfig.
Implementations§
source§impl QueryArgProfileConfigBuilder
impl QueryArgProfileConfigBuilder
sourcepub fn forward_when_query_arg_profile_is_unknown(self, input: bool) -> Self
pub fn forward_when_query_arg_profile_is_unknown(self, input: bool) -> Self
Flag to set if you want a request to be forwarded to the origin even if the profile specified by the field-level encryption query argument, fle-profile, is unknown.
sourcepub fn set_forward_when_query_arg_profile_is_unknown(
self,
input: Option<bool>
) -> Self
pub fn set_forward_when_query_arg_profile_is_unknown( self, input: Option<bool> ) -> Self
Flag to set if you want a request to be forwarded to the origin even if the profile specified by the field-level encryption query argument, fle-profile, is unknown.
sourcepub fn query_arg_profiles(self, input: QueryArgProfiles) -> Self
pub fn query_arg_profiles(self, input: QueryArgProfiles) -> Self
Profiles specified for query argument-profile mapping for field-level encryption.
sourcepub fn set_query_arg_profiles(self, input: Option<QueryArgProfiles>) -> Self
pub fn set_query_arg_profiles(self, input: Option<QueryArgProfiles>) -> Self
Profiles specified for query argument-profile mapping for field-level encryption.
sourcepub fn build(self) -> QueryArgProfileConfig
pub fn build(self) -> QueryArgProfileConfig
Consumes the builder and constructs a QueryArgProfileConfig.
Trait Implementations§
source§impl Clone for QueryArgProfileConfigBuilder
impl Clone for QueryArgProfileConfigBuilder
source§fn clone(&self) -> QueryArgProfileConfigBuilder
fn clone(&self) -> QueryArgProfileConfigBuilder
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 QueryArgProfileConfigBuilder
impl Debug for QueryArgProfileConfigBuilder
source§impl Default for QueryArgProfileConfigBuilder
impl Default for QueryArgProfileConfigBuilder
source§fn default() -> QueryArgProfileConfigBuilder
fn default() -> QueryArgProfileConfigBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<QueryArgProfileConfigBuilder> for QueryArgProfileConfigBuilder
impl PartialEq<QueryArgProfileConfigBuilder> for QueryArgProfileConfigBuilder
source§fn eq(&self, other: &QueryArgProfileConfigBuilder) -> bool
fn eq(&self, other: &QueryArgProfileConfigBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for QueryArgProfileConfigBuilder
Auto Trait Implementations§
impl RefUnwindSafe for QueryArgProfileConfigBuilder
impl Send for QueryArgProfileConfigBuilder
impl Sync for QueryArgProfileConfigBuilder
impl Unpin for QueryArgProfileConfigBuilder
impl UnwindSafe for QueryArgProfileConfigBuilder
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