Struct aws_sdk_cloudsearch::input::DefineExpressionInput
source · [−]#[non_exhaustive]pub struct DefineExpressionInput { /* private fields */ }Expand description
Container for the parameters to the operation. Specifies the name of the domain you want to update and the expression you want to configure.DefineExpression
Implementations
sourceimpl DefineExpressionInput
impl DefineExpressionInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DefineExpression, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DefineExpression, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<DefineExpression>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DefineExpressionInput.
sourceimpl DefineExpressionInput
impl DefineExpressionInput
sourcepub fn domain_name(&self) -> Option<&str>
pub fn domain_name(&self) -> Option<&str>
A string that represents the name of a domain. Domain names are unique across the domains owned by an account within an AWS region. Domain names start with a letter or number and can contain the following characters: a-z (lowercase), 0-9, and - (hyphen).
sourcepub fn expression(&self) -> Option<&Expression>
pub fn expression(&self) -> Option<&Expression>
A named expression that can be evaluated at search time. Can be used to sort the search results, define other expressions, or return computed information in the search results.
Trait Implementations
sourceimpl Clone for DefineExpressionInput
impl Clone for DefineExpressionInput
sourcefn clone(&self) -> DefineExpressionInput
fn clone(&self) -> DefineExpressionInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for DefineExpressionInput
impl Debug for DefineExpressionInput
sourceimpl PartialEq<DefineExpressionInput> for DefineExpressionInput
impl PartialEq<DefineExpressionInput> for DefineExpressionInput
sourcefn eq(&self, other: &DefineExpressionInput) -> bool
fn eq(&self, other: &DefineExpressionInput) -> bool
impl StructuralPartialEq for DefineExpressionInput
Auto Trait Implementations
impl RefUnwindSafe for DefineExpressionInput
impl Send for DefineExpressionInput
impl Sync for DefineExpressionInput
impl Unpin for DefineExpressionInput
impl UnwindSafe for DefineExpressionInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more