Struct aws_sdk_datazone::operation::create_asset_revision::builders::CreateAssetRevisionFluentBuilder
source · pub struct CreateAssetRevisionFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to CreateAssetRevision
.
Creates a revision of the asset.
Implementations§
source§impl CreateAssetRevisionFluentBuilder
impl CreateAssetRevisionFluentBuilder
sourcepub fn as_input(&self) -> &CreateAssetRevisionInputBuilder
pub fn as_input(&self) -> &CreateAssetRevisionInputBuilder
Access the CreateAssetRevision as a reference.
sourcepub async fn send(
self
) -> Result<CreateAssetRevisionOutput, SdkError<CreateAssetRevisionError, HttpResponse>>
pub async fn send( self ) -> Result<CreateAssetRevisionOutput, SdkError<CreateAssetRevisionError, 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<CreateAssetRevisionOutput, CreateAssetRevisionError, Self>, SdkError<CreateAssetRevisionError>>
pub async fn customize( self ) -> Result<CustomizableOperation<CreateAssetRevisionOutput, CreateAssetRevisionError, Self>, SdkError<CreateAssetRevisionError>>
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 unique identifier of the domain where the asset is being revised.
sourcepub fn set_domain_identifier(self, input: Option<String>) -> Self
pub fn set_domain_identifier(self, input: Option<String>) -> Self
The unique identifier of the domain where the asset is being revised.
sourcepub fn get_domain_identifier(&self) -> &Option<String>
pub fn get_domain_identifier(&self) -> &Option<String>
The unique identifier of the domain where the asset is being revised.
sourcepub fn identifier(self, input: impl Into<String>) -> Self
pub fn identifier(self, input: impl Into<String>) -> Self
The identifier of the asset.
sourcepub fn set_identifier(self, input: Option<String>) -> Self
pub fn set_identifier(self, input: Option<String>) -> Self
The identifier of the asset.
sourcepub fn get_identifier(&self) -> &Option<String>
pub fn get_identifier(&self) -> &Option<String>
The identifier of the asset.
sourcepub fn type_revision(self, input: impl Into<String>) -> Self
pub fn type_revision(self, input: impl Into<String>) -> Self
The revision type of the asset.
sourcepub fn set_type_revision(self, input: Option<String>) -> Self
pub fn set_type_revision(self, input: Option<String>) -> Self
The revision type of the asset.
sourcepub fn get_type_revision(&self) -> &Option<String>
pub fn get_type_revision(&self) -> &Option<String>
The revision type of the asset.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
The revised description of the asset.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
The revised description of the asset.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
The revised description of the asset.
sourcepub fn glossary_terms(self, input: impl Into<String>) -> Self
pub fn glossary_terms(self, input: impl Into<String>) -> Self
Appends an item to glossaryTerms
.
To override the contents of this collection use set_glossary_terms
.
The glossary terms to be attached to the asset as part of asset revision.
sourcepub fn set_glossary_terms(self, input: Option<Vec<String>>) -> Self
pub fn set_glossary_terms(self, input: Option<Vec<String>>) -> Self
The glossary terms to be attached to the asset as part of asset revision.
sourcepub fn get_glossary_terms(&self) -> &Option<Vec<String>>
pub fn get_glossary_terms(&self) -> &Option<Vec<String>>
The glossary terms to be attached to the asset as part of asset revision.
sourcepub fn forms_input(self, input: FormInput) -> Self
pub fn forms_input(self, input: FormInput) -> Self
Appends an item to formsInput
.
To override the contents of this collection use set_forms_input
.
The metadata forms to be attached to the asset as part of asset revision.
sourcepub fn set_forms_input(self, input: Option<Vec<FormInput>>) -> Self
pub fn set_forms_input(self, input: Option<Vec<FormInput>>) -> Self
The metadata forms to be attached to the asset as part of asset revision.
sourcepub fn get_forms_input(&self) -> &Option<Vec<FormInput>>
pub fn get_forms_input(&self) -> &Option<Vec<FormInput>>
The metadata forms to be attached to the asset as part of asset revision.
sourcepub fn prediction_configuration(self, input: PredictionConfiguration) -> Self
pub fn prediction_configuration(self, input: PredictionConfiguration) -> Self
The configuration of the automatically generated business-friendly metadata for the asset.
sourcepub fn set_prediction_configuration(
self,
input: Option<PredictionConfiguration>
) -> Self
pub fn set_prediction_configuration( self, input: Option<PredictionConfiguration> ) -> Self
The configuration of the automatically generated business-friendly metadata for the asset.
sourcepub fn get_prediction_configuration(&self) -> &Option<PredictionConfiguration>
pub fn get_prediction_configuration(&self) -> &Option<PredictionConfiguration>
The configuration of the automatically generated business-friendly metadata for the asset.
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 CreateAssetRevisionFluentBuilder
impl Clone for CreateAssetRevisionFluentBuilder
source§fn clone(&self) -> CreateAssetRevisionFluentBuilder
fn clone(&self) -> CreateAssetRevisionFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more