pub struct CreateAssetFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to CreateAsset
.
Creates an asset in Amazon DataZone catalog.
Implementations§
source§impl CreateAssetFluentBuilder
impl CreateAssetFluentBuilder
sourcepub fn as_input(&self) -> &CreateAssetInputBuilder
pub fn as_input(&self) -> &CreateAssetInputBuilder
Access the CreateAsset as a reference.
sourcepub async fn send(
self
) -> Result<CreateAssetOutput, SdkError<CreateAssetError, HttpResponse>>
pub async fn send( self ) -> Result<CreateAssetOutput, SdkError<CreateAssetError, 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<CreateAssetOutput, CreateAssetError, Self>, SdkError<CreateAssetError>>
pub async fn customize( self ) -> Result<CustomizableOperation<CreateAssetOutput, CreateAssetError, Self>, SdkError<CreateAssetError>>
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
Amazon DataZone domain where the asset is created.
sourcepub fn set_domain_identifier(self, input: Option<String>) -> Self
pub fn set_domain_identifier(self, input: Option<String>) -> Self
Amazon DataZone domain where the asset is created.
sourcepub fn get_domain_identifier(&self) -> &Option<String>
pub fn get_domain_identifier(&self) -> &Option<String>
Amazon DataZone domain where the asset is created.
sourcepub fn external_identifier(self, input: impl Into<String>) -> Self
pub fn external_identifier(self, input: impl Into<String>) -> Self
sourcepub fn set_external_identifier(self, input: Option<String>) -> Self
pub fn set_external_identifier(self, input: Option<String>) -> Self
sourcepub fn get_external_identifier(&self) -> &Option<String>
pub fn get_external_identifier(&self) -> &Option<String>
sourcepub fn type_identifier(self, input: impl Into<String>) -> Self
pub fn type_identifier(self, input: impl Into<String>) -> Self
The unique identifier of this asset's type.
sourcepub fn set_type_identifier(self, input: Option<String>) -> Self
pub fn set_type_identifier(self, input: Option<String>) -> Self
The unique identifier of this asset's type.
sourcepub fn get_type_identifier(&self) -> &Option<String>
pub fn get_type_identifier(&self) -> &Option<String>
The unique identifier of this asset's type.
sourcepub fn type_revision(self, input: impl Into<String>) -> Self
pub fn type_revision(self, input: impl Into<String>) -> Self
The revision of this asset's type.
sourcepub fn set_type_revision(self, input: Option<String>) -> Self
pub fn set_type_revision(self, input: Option<String>) -> Self
The revision of this asset's type.
sourcepub fn get_type_revision(&self) -> &Option<String>
pub fn get_type_revision(&self) -> &Option<String>
The revision of this asset's type.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
Asset description.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
Asset description.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
Asset description.
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
.
Glossary terms attached to the asset.
sourcepub fn set_glossary_terms(self, input: Option<Vec<String>>) -> Self
pub fn set_glossary_terms(self, input: Option<Vec<String>>) -> Self
Glossary terms attached to the asset.
sourcepub fn get_glossary_terms(&self) -> &Option<Vec<String>>
pub fn get_glossary_terms(&self) -> &Option<Vec<String>>
Glossary terms attached to the asset.
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
.
Metadata forms attached to the asset.
sourcepub fn set_forms_input(self, input: Option<Vec<FormInput>>) -> Self
pub fn set_forms_input(self, input: Option<Vec<FormInput>>) -> Self
Metadata forms attached to the asset.
sourcepub fn get_forms_input(&self) -> &Option<Vec<FormInput>>
pub fn get_forms_input(&self) -> &Option<Vec<FormInput>>
Metadata forms attached to the asset.
sourcepub fn owning_project_identifier(self, input: impl Into<String>) -> Self
pub fn owning_project_identifier(self, input: impl Into<String>) -> Self
The unique identifier of the project that owns this asset.
sourcepub fn set_owning_project_identifier(self, input: Option<String>) -> Self
pub fn set_owning_project_identifier(self, input: Option<String>) -> Self
The unique identifier of the project that owns this asset.
sourcepub fn get_owning_project_identifier(&self) -> &Option<String>
pub fn get_owning_project_identifier(&self) -> &Option<String>
The unique identifier of the project that owns this asset.
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 CreateAssetFluentBuilder
impl Clone for CreateAssetFluentBuilder
source§fn clone(&self) -> CreateAssetFluentBuilder
fn clone(&self) -> CreateAssetFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more