Struct aws_sdk_lexmodelsv2::model::IntentSummary [−][src]
#[non_exhaustive]pub struct IntentSummary {
pub intent_id: Option<String>,
pub intent_name: Option<String>,
pub description: Option<String>,
pub parent_intent_signature: Option<String>,
pub input_contexts: Option<Vec<InputContext>>,
pub output_contexts: Option<Vec<OutputContext>>,
pub last_updated_date_time: Option<DateTime>,
}Expand description
Summary information about an intent returned by the ListIntents operation.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.intent_id: Option<String>The unique identifier assigned to the intent. Use this ID to get detailed information about the intent with the DescribeIntent operation.
intent_name: Option<String>The name of the intent.
description: Option<String>The description of the intent.
parent_intent_signature: Option<String>If this intent is derived from a built-in intent, the name of the parent intent.
input_contexts: Option<Vec<InputContext>>The input contexts that must be active for this intent to be considered for recognition.
output_contexts: Option<Vec<OutputContext>>The output contexts that are activated when this intent is fulfilled.
last_updated_date_time: Option<DateTime>The timestamp of the date and time that the intent was last updated.
Implementations
The unique identifier assigned to the intent. Use this ID to get detailed information about the intent with the DescribeIntent operation.
The name of the intent.
The description of the intent.
If this intent is derived from a built-in intent, the name of the parent intent.
The input contexts that must be active for this intent to be considered for recognition.
The output contexts that are activated when this intent is fulfilled.
The timestamp of the date and time that the intent was last updated.
Creates a new builder-style object to manufacture IntentSummary
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for IntentSummary
impl Send for IntentSummary
impl Sync for IntentSummary
impl Unpin for IntentSummary
impl UnwindSafe for IntentSummary
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more
