Struct aws_sdk_datazone::operation::create_glossary_term::builders::CreateGlossaryTermFluentBuilder
source · pub struct CreateGlossaryTermFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to CreateGlossaryTerm
.
Creates a business glossary term.
Implementations§
source§impl CreateGlossaryTermFluentBuilder
impl CreateGlossaryTermFluentBuilder
sourcepub fn as_input(&self) -> &CreateGlossaryTermInputBuilder
pub fn as_input(&self) -> &CreateGlossaryTermInputBuilder
Access the CreateGlossaryTerm as a reference.
sourcepub async fn send(
self
) -> Result<CreateGlossaryTermOutput, SdkError<CreateGlossaryTermError, HttpResponse>>
pub async fn send( self ) -> Result<CreateGlossaryTermOutput, SdkError<CreateGlossaryTermError, HttpResponse>>
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<CreateGlossaryTermOutput, CreateGlossaryTermError, Self>, SdkError<CreateGlossaryTermError>>
pub async fn customize( self ) -> Result<CustomizableOperation<CreateGlossaryTermOutput, CreateGlossaryTermError, Self>, SdkError<CreateGlossaryTermError>>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn domain_identifier(self, input: impl Into<String>) -> Self
pub fn domain_identifier(self, input: impl Into<String>) -> Self
The ID of the Amazon DataZone domain in which this business glossary term is created.
sourcepub fn set_domain_identifier(self, input: Option<String>) -> Self
pub fn set_domain_identifier(self, input: Option<String>) -> Self
The ID of the Amazon DataZone domain in which this business glossary term is created.
sourcepub fn get_domain_identifier(&self) -> &Option<String>
pub fn get_domain_identifier(&self) -> &Option<String>
The ID of the Amazon DataZone domain in which this business glossary term is created.
sourcepub fn glossary_identifier(self, input: impl Into<String>) -> Self
pub fn glossary_identifier(self, input: impl Into<String>) -> Self
The ID of the business glossary in which this term is created.
sourcepub fn set_glossary_identifier(self, input: Option<String>) -> Self
pub fn set_glossary_identifier(self, input: Option<String>) -> Self
The ID of the business glossary in which this term is created.
sourcepub fn get_glossary_identifier(&self) -> &Option<String>
pub fn get_glossary_identifier(&self) -> &Option<String>
The ID of the business glossary in which this term is created.
sourcepub fn status(self, input: GlossaryTermStatus) -> Self
pub fn status(self, input: GlossaryTermStatus) -> Self
The status of this business glossary term.
sourcepub fn set_status(self, input: Option<GlossaryTermStatus>) -> Self
pub fn set_status(self, input: Option<GlossaryTermStatus>) -> Self
The status of this business glossary term.
sourcepub fn get_status(&self) -> &Option<GlossaryTermStatus>
pub fn get_status(&self) -> &Option<GlossaryTermStatus>
The status of this business glossary term.
sourcepub fn short_description(self, input: impl Into<String>) -> Self
pub fn short_description(self, input: impl Into<String>) -> Self
The short description of this business glossary term.
sourcepub fn set_short_description(self, input: Option<String>) -> Self
pub fn set_short_description(self, input: Option<String>) -> Self
The short description of this business glossary term.
sourcepub fn get_short_description(&self) -> &Option<String>
pub fn get_short_description(&self) -> &Option<String>
The short description of this business glossary term.
sourcepub fn long_description(self, input: impl Into<String>) -> Self
pub fn long_description(self, input: impl Into<String>) -> Self
The long description of this business glossary term.
sourcepub fn set_long_description(self, input: Option<String>) -> Self
pub fn set_long_description(self, input: Option<String>) -> Self
The long description of this business glossary term.
sourcepub fn get_long_description(&self) -> &Option<String>
pub fn get_long_description(&self) -> &Option<String>
The long description of this business glossary term.
sourcepub fn term_relations(self, input: TermRelations) -> Self
pub fn term_relations(self, input: TermRelations) -> Self
The term relations of this business glossary term.
sourcepub fn set_term_relations(self, input: Option<TermRelations>) -> Self
pub fn set_term_relations(self, input: Option<TermRelations>) -> Self
The term relations of this business glossary term.
sourcepub fn get_term_relations(&self) -> &Option<TermRelations>
pub fn get_term_relations(&self) -> &Option<TermRelations>
The term relations of this business glossary term.
sourcepub fn client_token(self, input: impl Into<String>) -> Self
pub fn client_token(self, input: impl Into<String>) -> Self
A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
sourcepub fn set_client_token(self, input: Option<String>) -> Self
pub fn set_client_token(self, input: Option<String>) -> Self
A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
sourcepub fn get_client_token(&self) -> &Option<String>
pub fn get_client_token(&self) -> &Option<String>
A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
Trait Implementations§
source§impl Clone for CreateGlossaryTermFluentBuilder
impl Clone for CreateGlossaryTermFluentBuilder
source§fn clone(&self) -> CreateGlossaryTermFluentBuilder
fn clone(&self) -> CreateGlossaryTermFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more