Struct aws_sdk_datazone::operation::create_asset_revision::builders::CreateAssetRevisionInputBuilder
source · #[non_exhaustive]pub struct CreateAssetRevisionInputBuilder { /* private fields */ }
Expand description
A builder for CreateAssetRevisionInput
.
Implementations§
source§impl CreateAssetRevisionInputBuilder
impl CreateAssetRevisionInputBuilder
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 glossary_terms
.
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 forms_input
.
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.
sourcepub fn build(self) -> Result<CreateAssetRevisionInput, BuildError>
pub fn build(self) -> Result<CreateAssetRevisionInput, BuildError>
Consumes the builder and constructs a CreateAssetRevisionInput
.
source§impl CreateAssetRevisionInputBuilder
impl CreateAssetRevisionInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<CreateAssetRevisionOutput, SdkError<CreateAssetRevisionError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<CreateAssetRevisionOutput, SdkError<CreateAssetRevisionError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for CreateAssetRevisionInputBuilder
impl Clone for CreateAssetRevisionInputBuilder
source§fn clone(&self) -> CreateAssetRevisionInputBuilder
fn clone(&self) -> CreateAssetRevisionInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for CreateAssetRevisionInputBuilder
impl Default for CreateAssetRevisionInputBuilder
source§fn default() -> CreateAssetRevisionInputBuilder
fn default() -> CreateAssetRevisionInputBuilder
source§impl PartialEq for CreateAssetRevisionInputBuilder
impl PartialEq for CreateAssetRevisionInputBuilder
source§fn eq(&self, other: &CreateAssetRevisionInputBuilder) -> bool
fn eq(&self, other: &CreateAssetRevisionInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.