Struct aws_sdk_datazone::types::builders::AssetTypeItemBuilder
source · #[non_exhaustive]pub struct AssetTypeItemBuilder { /* private fields */ }
Expand description
A builder for AssetTypeItem
.
Implementations§
source§impl AssetTypeItemBuilder
impl AssetTypeItemBuilder
sourcepub fn domain_id(self, input: impl Into<String>) -> Self
pub fn domain_id(self, input: impl Into<String>) -> Self
The identifier of the Amazon DataZone domain where the asset type exists.
This field is required.sourcepub fn set_domain_id(self, input: Option<String>) -> Self
pub fn set_domain_id(self, input: Option<String>) -> Self
The identifier of the Amazon DataZone domain where the asset type exists.
sourcepub fn get_domain_id(&self) -> &Option<String>
pub fn get_domain_id(&self) -> &Option<String>
The identifier of the Amazon DataZone domain where the asset type exists.
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
The name of the asset type.
This field is required.sourcepub fn revision(self, input: impl Into<String>) -> Self
pub fn revision(self, input: impl Into<String>) -> Self
The revision of the asset type.
This field is required.sourcepub fn set_revision(self, input: Option<String>) -> Self
pub fn set_revision(self, input: Option<String>) -> Self
The revision of the asset type.
sourcepub fn get_revision(&self) -> &Option<String>
pub fn get_revision(&self) -> &Option<String>
The revision of the asset type.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
The description of the asset type.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
The description of the asset type.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
The description of the asset type.
sourcepub fn forms_output(self, k: impl Into<String>, v: FormEntryOutput) -> Self
pub fn forms_output(self, k: impl Into<String>, v: FormEntryOutput) -> Self
Adds a key-value pair to forms_output
.
To override the contents of this collection use set_forms_output
.
The forms included in the details of the asset type.
sourcepub fn set_forms_output(
self,
input: Option<HashMap<String, FormEntryOutput>>
) -> Self
pub fn set_forms_output( self, input: Option<HashMap<String, FormEntryOutput>> ) -> Self
The forms included in the details of the asset type.
sourcepub fn get_forms_output(&self) -> &Option<HashMap<String, FormEntryOutput>>
pub fn get_forms_output(&self) -> &Option<HashMap<String, FormEntryOutput>>
The forms included in the details of the asset type.
sourcepub fn owning_project_id(self, input: impl Into<String>) -> Self
pub fn owning_project_id(self, input: impl Into<String>) -> Self
The identifier of the Amazon DataZone project that owns the asset type.
This field is required.sourcepub fn set_owning_project_id(self, input: Option<String>) -> Self
pub fn set_owning_project_id(self, input: Option<String>) -> Self
The identifier of the Amazon DataZone project that owns the asset type.
sourcepub fn get_owning_project_id(&self) -> &Option<String>
pub fn get_owning_project_id(&self) -> &Option<String>
The identifier of the Amazon DataZone project that owns the asset type.
sourcepub fn origin_domain_id(self, input: impl Into<String>) -> Self
pub fn origin_domain_id(self, input: impl Into<String>) -> Self
The identifier of the Amazon DataZone domain where the asset type was originally created.
sourcepub fn set_origin_domain_id(self, input: Option<String>) -> Self
pub fn set_origin_domain_id(self, input: Option<String>) -> Self
The identifier of the Amazon DataZone domain where the asset type was originally created.
sourcepub fn get_origin_domain_id(&self) -> &Option<String>
pub fn get_origin_domain_id(&self) -> &Option<String>
The identifier of the Amazon DataZone domain where the asset type was originally created.
sourcepub fn origin_project_id(self, input: impl Into<String>) -> Self
pub fn origin_project_id(self, input: impl Into<String>) -> Self
The identifier of the Amazon DataZone project where the asset type exists.
sourcepub fn set_origin_project_id(self, input: Option<String>) -> Self
pub fn set_origin_project_id(self, input: Option<String>) -> Self
The identifier of the Amazon DataZone project where the asset type exists.
sourcepub fn get_origin_project_id(&self) -> &Option<String>
pub fn get_origin_project_id(&self) -> &Option<String>
The identifier of the Amazon DataZone project where the asset type exists.
sourcepub fn created_at(self, input: DateTime) -> Self
pub fn created_at(self, input: DateTime) -> Self
The timestamp of when the asset type was created.
sourcepub fn set_created_at(self, input: Option<DateTime>) -> Self
pub fn set_created_at(self, input: Option<DateTime>) -> Self
The timestamp of when the asset type was created.
sourcepub fn get_created_at(&self) -> &Option<DateTime>
pub fn get_created_at(&self) -> &Option<DateTime>
The timestamp of when the asset type was created.
sourcepub fn created_by(self, input: impl Into<String>) -> Self
pub fn created_by(self, input: impl Into<String>) -> Self
The Amazon DataZone user who created the asset type.
sourcepub fn set_created_by(self, input: Option<String>) -> Self
pub fn set_created_by(self, input: Option<String>) -> Self
The Amazon DataZone user who created the asset type.
sourcepub fn get_created_by(&self) -> &Option<String>
pub fn get_created_by(&self) -> &Option<String>
The Amazon DataZone user who created the asset type.
sourcepub fn updated_at(self, input: DateTime) -> Self
pub fn updated_at(self, input: DateTime) -> Self
The timestamp of when the asset type was updated.
sourcepub fn set_updated_at(self, input: Option<DateTime>) -> Self
pub fn set_updated_at(self, input: Option<DateTime>) -> Self
The timestamp of when the asset type was updated.
sourcepub fn get_updated_at(&self) -> &Option<DateTime>
pub fn get_updated_at(&self) -> &Option<DateTime>
The timestamp of when the asset type was updated.
sourcepub fn updated_by(self, input: impl Into<String>) -> Self
pub fn updated_by(self, input: impl Into<String>) -> Self
The Amazon DataZone user who updated the asset type.
sourcepub fn set_updated_by(self, input: Option<String>) -> Self
pub fn set_updated_by(self, input: Option<String>) -> Self
The Amazon DataZone user who updated the asset type.
sourcepub fn get_updated_by(&self) -> &Option<String>
pub fn get_updated_by(&self) -> &Option<String>
The Amazon DataZone user who updated the asset type.
sourcepub fn build(self) -> Result<AssetTypeItem, BuildError>
pub fn build(self) -> Result<AssetTypeItem, BuildError>
Consumes the builder and constructs a AssetTypeItem
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for AssetTypeItemBuilder
impl Clone for AssetTypeItemBuilder
source§fn clone(&self) -> AssetTypeItemBuilder
fn clone(&self) -> AssetTypeItemBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AssetTypeItemBuilder
impl Debug for AssetTypeItemBuilder
source§impl Default for AssetTypeItemBuilder
impl Default for AssetTypeItemBuilder
source§fn default() -> AssetTypeItemBuilder
fn default() -> AssetTypeItemBuilder
source§impl PartialEq for AssetTypeItemBuilder
impl PartialEq for AssetTypeItemBuilder
source§fn eq(&self, other: &AssetTypeItemBuilder) -> bool
fn eq(&self, other: &AssetTypeItemBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.