Struct aws_sdk_cloudsearch::input::DeleteExpressionInput
source · [−]#[non_exhaustive]pub struct DeleteExpressionInput { /* private fields */ }Expand description
Container for the parameters to the operation. Specifies the name of the domain you want to update and the name of the expression you want to delete.DeleteExpression
Implementations
sourceimpl DeleteExpressionInput
impl DeleteExpressionInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DeleteExpression, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DeleteExpression, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<DeleteExpression>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DeleteExpressionInput.
sourceimpl DeleteExpressionInput
impl DeleteExpressionInput
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_name(&self) -> Option<&str>
pub fn expression_name(&self) -> Option<&str>
The name of the to delete.Expression
Trait Implementations
sourceimpl Clone for DeleteExpressionInput
impl Clone for DeleteExpressionInput
sourcefn clone(&self) -> DeleteExpressionInput
fn clone(&self) -> DeleteExpressionInput
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 DeleteExpressionInput
impl Debug for DeleteExpressionInput
sourceimpl PartialEq<DeleteExpressionInput> for DeleteExpressionInput
impl PartialEq<DeleteExpressionInput> for DeleteExpressionInput
sourcefn eq(&self, other: &DeleteExpressionInput) -> bool
fn eq(&self, other: &DeleteExpressionInput) -> bool
impl StructuralPartialEq for DeleteExpressionInput
Auto Trait Implementations
impl RefUnwindSafe for DeleteExpressionInput
impl Send for DeleteExpressionInput
impl Sync for DeleteExpressionInput
impl Unpin for DeleteExpressionInput
impl UnwindSafe for DeleteExpressionInput
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