#[non_exhaustive]pub struct DeleteIntentInputBuilder { /* private fields */ }Expand description
A builder for DeleteIntentInput.
Implementations§
source§impl DeleteIntentInputBuilder
impl DeleteIntentInputBuilder
sourcepub fn intent_id(self, input: impl Into<String>) -> Self
pub fn intent_id(self, input: impl Into<String>) -> Self
The unique identifier of the intent to delete.
sourcepub fn set_intent_id(self, input: Option<String>) -> Self
pub fn set_intent_id(self, input: Option<String>) -> Self
The unique identifier of the intent to delete.
sourcepub fn bot_id(self, input: impl Into<String>) -> Self
pub fn bot_id(self, input: impl Into<String>) -> Self
The identifier of the bot associated with the intent.
sourcepub fn set_bot_id(self, input: Option<String>) -> Self
pub fn set_bot_id(self, input: Option<String>) -> Self
The identifier of the bot associated with the intent.
sourcepub fn bot_version(self, input: impl Into<String>) -> Self
pub fn bot_version(self, input: impl Into<String>) -> Self
The version of the bot associated with the intent.
sourcepub fn set_bot_version(self, input: Option<String>) -> Self
pub fn set_bot_version(self, input: Option<String>) -> Self
The version of the bot associated with the intent.
sourcepub fn locale_id(self, input: impl Into<String>) -> Self
pub fn locale_id(self, input: impl Into<String>) -> Self
The identifier of the language and locale where the bot will be deleted. The string must match one of the supported locales. For more information, see Supported languages.
sourcepub fn set_locale_id(self, input: Option<String>) -> Self
pub fn set_locale_id(self, input: Option<String>) -> Self
The identifier of the language and locale where the bot will be deleted. The string must match one of the supported locales. For more information, see Supported languages.
sourcepub fn build(self) -> Result<DeleteIntentInput, BuildError>
pub fn build(self) -> Result<DeleteIntentInput, BuildError>
Consumes the builder and constructs a DeleteIntentInput.
Trait Implementations§
source§impl Clone for DeleteIntentInputBuilder
impl Clone for DeleteIntentInputBuilder
source§fn clone(&self) -> DeleteIntentInputBuilder
fn clone(&self) -> DeleteIntentInputBuilder
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 DeleteIntentInputBuilder
impl Debug for DeleteIntentInputBuilder
source§impl Default for DeleteIntentInputBuilder
impl Default for DeleteIntentInputBuilder
source§fn default() -> DeleteIntentInputBuilder
fn default() -> DeleteIntentInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<DeleteIntentInputBuilder> for DeleteIntentInputBuilder
impl PartialEq<DeleteIntentInputBuilder> for DeleteIntentInputBuilder
source§fn eq(&self, other: &DeleteIntentInputBuilder) -> bool
fn eq(&self, other: &DeleteIntentInputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.