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§
source§impl 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.
source§impl 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§
source§impl Clone for DeleteExpressionInput
impl Clone for DeleteExpressionInput
source§fn clone(&self) -> DeleteExpressionInput
fn clone(&self) -> DeleteExpressionInput
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 DeleteExpressionInput
impl Debug for DeleteExpressionInput
source§impl PartialEq<DeleteExpressionInput> for DeleteExpressionInput
impl PartialEq<DeleteExpressionInput> for DeleteExpressionInput
source§fn eq(&self, other: &DeleteExpressionInput) -> bool
fn eq(&self, other: &DeleteExpressionInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.