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