Struct aws_sdk_connect::operation::update_task_template::builders::UpdateTaskTemplateFluentBuilder    
source · pub struct UpdateTaskTemplateFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to UpdateTaskTemplate.
Updates details about a specific task template in the specified Amazon Connect instance. This operation does not support partial updates. Instead it does a full update of template content.
Implementations§
source§impl UpdateTaskTemplateFluentBuilder
 
impl UpdateTaskTemplateFluentBuilder
sourcepub async fn send(
    self
) -> Result<UpdateTaskTemplateOutput, SdkError<UpdateTaskTemplateError>>
 
pub async fn send( self ) -> Result<UpdateTaskTemplateOutput, SdkError<UpdateTaskTemplateError>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub async fn customize(
    self
) -> Result<CustomizableOperation<UpdateTaskTemplate, AwsResponseRetryClassifier>, SdkError<UpdateTaskTemplateError>>
 
pub async fn customize( self ) -> Result<CustomizableOperation<UpdateTaskTemplate, AwsResponseRetryClassifier>, SdkError<UpdateTaskTemplateError>>
Consumes this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub fn task_template_id(self, input: impl Into<String>) -> Self
 
pub fn task_template_id(self, input: impl Into<String>) -> Self
A unique identifier for the task template.
sourcepub fn set_task_template_id(self, input: Option<String>) -> Self
 
pub fn set_task_template_id(self, input: Option<String>) -> Self
A unique identifier for the task template.
sourcepub fn instance_id(self, input: impl Into<String>) -> Self
 
pub fn instance_id(self, input: impl Into<String>) -> Self
The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
sourcepub fn set_instance_id(self, input: Option<String>) -> Self
 
pub fn set_instance_id(self, input: Option<String>) -> Self
The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
sourcepub fn description(self, input: impl Into<String>) -> Self
 
pub fn description(self, input: impl Into<String>) -> Self
The description of the task template.
sourcepub fn set_description(self, input: Option<String>) -> Self
 
pub fn set_description(self, input: Option<String>) -> Self
The description of the task template.
sourcepub fn contact_flow_id(self, input: impl Into<String>) -> Self
 
pub fn contact_flow_id(self, input: impl Into<String>) -> Self
The identifier of the flow that runs by default when a task is created by referencing this template.
sourcepub fn set_contact_flow_id(self, input: Option<String>) -> Self
 
pub fn set_contact_flow_id(self, input: Option<String>) -> Self
The identifier of the flow that runs by default when a task is created by referencing this template.
sourcepub fn constraints(self, input: TaskTemplateConstraints) -> Self
 
pub fn constraints(self, input: TaskTemplateConstraints) -> Self
Constraints that are applicable to the fields listed.
sourcepub fn set_constraints(self, input: Option<TaskTemplateConstraints>) -> Self
 
pub fn set_constraints(self, input: Option<TaskTemplateConstraints>) -> Self
Constraints that are applicable to the fields listed.
sourcepub fn defaults(self, input: TaskTemplateDefaults) -> Self
 
pub fn defaults(self, input: TaskTemplateDefaults) -> Self
The default values for fields when a task is created by referencing this template.
sourcepub fn set_defaults(self, input: Option<TaskTemplateDefaults>) -> Self
 
pub fn set_defaults(self, input: Option<TaskTemplateDefaults>) -> Self
The default values for fields when a task is created by referencing this template.
sourcepub fn status(self, input: TaskTemplateStatus) -> Self
 
pub fn status(self, input: TaskTemplateStatus) -> Self
Marks a template as ACTIVE or INACTIVE for a task to refer to it. Tasks can only be created from ACTIVE templates. If a template is marked as INACTIVE, then a task that refers to this template cannot be created.
sourcepub fn set_status(self, input: Option<TaskTemplateStatus>) -> Self
 
pub fn set_status(self, input: Option<TaskTemplateStatus>) -> Self
Marks a template as ACTIVE or INACTIVE for a task to refer to it. Tasks can only be created from ACTIVE templates. If a template is marked as INACTIVE, then a task that refers to this template cannot be created.
sourcepub fn fields(self, input: TaskTemplateField) -> Self
 
pub fn fields(self, input: TaskTemplateField) -> Self
Appends an item to Fields.
To override the contents of this collection use set_fields.
Fields that are part of the template.
sourcepub fn set_fields(self, input: Option<Vec<TaskTemplateField>>) -> Self
 
pub fn set_fields(self, input: Option<Vec<TaskTemplateField>>) -> Self
Fields that are part of the template.
Trait Implementations§
source§impl Clone for UpdateTaskTemplateFluentBuilder
 
impl Clone for UpdateTaskTemplateFluentBuilder
source§fn clone(&self) -> UpdateTaskTemplateFluentBuilder
 
fn clone(&self) -> UpdateTaskTemplateFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
source. Read more