aws_sdk_dataexchange/client/update_data_set.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`UpdateDataSet`](crate::operation::update_data_set::builders::UpdateDataSetFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`data_set_id(impl Into<String>)`](crate::operation::update_data_set::builders::UpdateDataSetFluentBuilder::data_set_id) / [`set_data_set_id(Option<String>)`](crate::operation::update_data_set::builders::UpdateDataSetFluentBuilder::set_data_set_id):<br>required: **true**<br><p>The unique identifier for a data set.</p><br>
/// - [`description(impl Into<String>)`](crate::operation::update_data_set::builders::UpdateDataSetFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::update_data_set::builders::UpdateDataSetFluentBuilder::set_description):<br>required: **false**<br><p>The description for the data set.</p><br>
/// - [`name(impl Into<String>)`](crate::operation::update_data_set::builders::UpdateDataSetFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::update_data_set::builders::UpdateDataSetFluentBuilder::set_name):<br>required: **false**<br><p>The name of the data set.</p><br>
/// - On success, responds with [`UpdateDataSetOutput`](crate::operation::update_data_set::UpdateDataSetOutput) with field(s):
/// - [`arn(Option<String>)`](crate::operation::update_data_set::UpdateDataSetOutput::arn): <p>The ARN for the data set.</p>
/// - [`asset_type(Option<AssetType>)`](crate::operation::update_data_set::UpdateDataSetOutput::asset_type): <p>The type of asset that is added to a data set.</p>
/// - [`created_at(Option<DateTime>)`](crate::operation::update_data_set::UpdateDataSetOutput::created_at): <p>The date and time that the data set was created, in ISO 8601 format.</p>
/// - [`description(Option<String>)`](crate::operation::update_data_set::UpdateDataSetOutput::description): <p>The description for the data set.</p>
/// - [`id(Option<String>)`](crate::operation::update_data_set::UpdateDataSetOutput::id): <p>The unique identifier for the data set.</p>
/// - [`name(Option<String>)`](crate::operation::update_data_set::UpdateDataSetOutput::name): <p>The name of the data set.</p>
/// - [`origin(Option<Origin>)`](crate::operation::update_data_set::UpdateDataSetOutput::origin): <p>A property that defines the data set as OWNED by the account (for providers) or ENTITLED to the account (for subscribers).</p>
/// - [`origin_details(Option<OriginDetails>)`](crate::operation::update_data_set::UpdateDataSetOutput::origin_details): <p>If the origin of this data set is ENTITLED, includes the details for the product on AWS Marketplace.</p>
/// - [`source_id(Option<String>)`](crate::operation::update_data_set::UpdateDataSetOutput::source_id): <p>The data set ID of the owned data set corresponding to the entitled data set being viewed. This parameter is returned when a data set owner is viewing the entitled copy of its owned data set.</p>
/// - [`updated_at(Option<DateTime>)`](crate::operation::update_data_set::UpdateDataSetOutput::updated_at): <p>The date and time that the data set was last updated, in ISO 8601 format.</p>
/// - On failure, responds with [`SdkError<UpdateDataSetError>`](crate::operation::update_data_set::UpdateDataSetError)
pub fn update_data_set(&self) -> crate::operation::update_data_set::builders::UpdateDataSetFluentBuilder {
crate::operation::update_data_set::builders::UpdateDataSetFluentBuilder::new(self.handle.clone())
}
}