Struct aws_sdk_connectcases::operation::create_template::builders::CreateTemplateInputBuilder
source · #[non_exhaustive]pub struct CreateTemplateInputBuilder { /* private fields */ }Expand description
A builder for CreateTemplateInput.
Implementations§
source§impl CreateTemplateInputBuilder
impl CreateTemplateInputBuilder
sourcepub fn domain_id(self, input: impl Into<String>) -> Self
pub fn domain_id(self, input: impl Into<String>) -> Self
The unique identifier of the Cases domain.
This field is required.sourcepub fn set_domain_id(self, input: Option<String>) -> Self
pub fn set_domain_id(self, input: Option<String>) -> Self
The unique identifier of the Cases domain.
sourcepub fn get_domain_id(&self) -> &Option<String>
pub fn get_domain_id(&self) -> &Option<String>
The unique identifier of the Cases domain.
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
A name for the template. It must be unique per domain.
This field is required.sourcepub fn set_name(self, input: Option<String>) -> Self
pub fn set_name(self, input: Option<String>) -> Self
A name for the template. It must be unique per domain.
sourcepub fn get_name(&self) -> &Option<String>
pub fn get_name(&self) -> &Option<String>
A name for the template. It must be unique per domain.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
A brief description of the template.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
A brief description of the template.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
A brief description of the template.
sourcepub fn layout_configuration(self, input: LayoutConfiguration) -> Self
pub fn layout_configuration(self, input: LayoutConfiguration) -> Self
Configuration of layouts associated to the template.
sourcepub fn set_layout_configuration(
self,
input: Option<LayoutConfiguration>
) -> Self
pub fn set_layout_configuration( self, input: Option<LayoutConfiguration> ) -> Self
Configuration of layouts associated to the template.
sourcepub fn get_layout_configuration(&self) -> &Option<LayoutConfiguration>
pub fn get_layout_configuration(&self) -> &Option<LayoutConfiguration>
Configuration of layouts associated to the template.
sourcepub fn required_fields(self, input: RequiredField) -> Self
pub fn required_fields(self, input: RequiredField) -> Self
Appends an item to required_fields.
To override the contents of this collection use set_required_fields.
A list of fields that must contain a value for a case to be successfully created with this template.
sourcepub fn set_required_fields(self, input: Option<Vec<RequiredField>>) -> Self
pub fn set_required_fields(self, input: Option<Vec<RequiredField>>) -> Self
A list of fields that must contain a value for a case to be successfully created with this template.
sourcepub fn get_required_fields(&self) -> &Option<Vec<RequiredField>>
pub fn get_required_fields(&self) -> &Option<Vec<RequiredField>>
A list of fields that must contain a value for a case to be successfully created with this template.
sourcepub fn status(self, input: TemplateStatus) -> Self
pub fn status(self, input: TemplateStatus) -> Self
The status of the template.
sourcepub fn set_status(self, input: Option<TemplateStatus>) -> Self
pub fn set_status(self, input: Option<TemplateStatus>) -> Self
The status of the template.
sourcepub fn get_status(&self) -> &Option<TemplateStatus>
pub fn get_status(&self) -> &Option<TemplateStatus>
The status of the template.
sourcepub fn build(self) -> Result<CreateTemplateInput, BuildError>
pub fn build(self) -> Result<CreateTemplateInput, BuildError>
Consumes the builder and constructs a CreateTemplateInput.
source§impl CreateTemplateInputBuilder
impl CreateTemplateInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<CreateTemplateOutput, SdkError<CreateTemplateError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<CreateTemplateOutput, SdkError<CreateTemplateError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for CreateTemplateInputBuilder
impl Clone for CreateTemplateInputBuilder
source§fn clone(&self) -> CreateTemplateInputBuilder
fn clone(&self) -> CreateTemplateInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CreateTemplateInputBuilder
impl Debug for CreateTemplateInputBuilder
source§impl Default for CreateTemplateInputBuilder
impl Default for CreateTemplateInputBuilder
source§fn default() -> CreateTemplateInputBuilder
fn default() -> CreateTemplateInputBuilder
source§impl PartialEq for CreateTemplateInputBuilder
impl PartialEq for CreateTemplateInputBuilder
source§fn eq(&self, other: &CreateTemplateInputBuilder) -> bool
fn eq(&self, other: &CreateTemplateInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CreateTemplateInputBuilder
Auto Trait Implementations§
impl Freeze for CreateTemplateInputBuilder
impl RefUnwindSafe for CreateTemplateInputBuilder
impl Send for CreateTemplateInputBuilder
impl Sync for CreateTemplateInputBuilder
impl Unpin for CreateTemplateInputBuilder
impl UnwindSafe for CreateTemplateInputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more