aws_sdk_m2/operation/create_data_set_export_task/
_create_data_set_export_task_output.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2#[allow(missing_docs)] // documentation missing in model
3#[non_exhaustive]
4#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
5pub struct CreateDataSetExportTaskOutput {
6    /// <p>The task identifier. This operation is asynchronous. Use this identifier with the <code>GetDataSetExportTask</code> operation to obtain the status of this task.</p>
7    pub task_id: ::std::string::String,
8    _request_id: Option<String>,
9}
10impl CreateDataSetExportTaskOutput {
11    /// <p>The task identifier. This operation is asynchronous. Use this identifier with the <code>GetDataSetExportTask</code> operation to obtain the status of this task.</p>
12    pub fn task_id(&self) -> &str {
13        use std::ops::Deref;
14        self.task_id.deref()
15    }
16}
17impl ::aws_types::request_id::RequestId for CreateDataSetExportTaskOutput {
18    fn request_id(&self) -> Option<&str> {
19        self._request_id.as_deref()
20    }
21}
22impl CreateDataSetExportTaskOutput {
23    /// Creates a new builder-style object to manufacture [`CreateDataSetExportTaskOutput`](crate::operation::create_data_set_export_task::CreateDataSetExportTaskOutput).
24    pub fn builder() -> crate::operation::create_data_set_export_task::builders::CreateDataSetExportTaskOutputBuilder {
25        crate::operation::create_data_set_export_task::builders::CreateDataSetExportTaskOutputBuilder::default()
26    }
27}
28
29/// A builder for [`CreateDataSetExportTaskOutput`](crate::operation::create_data_set_export_task::CreateDataSetExportTaskOutput).
30#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
31#[non_exhaustive]
32pub struct CreateDataSetExportTaskOutputBuilder {
33    pub(crate) task_id: ::std::option::Option<::std::string::String>,
34    _request_id: Option<String>,
35}
36impl CreateDataSetExportTaskOutputBuilder {
37    /// <p>The task identifier. This operation is asynchronous. Use this identifier with the <code>GetDataSetExportTask</code> operation to obtain the status of this task.</p>
38    /// This field is required.
39    pub fn task_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
40        self.task_id = ::std::option::Option::Some(input.into());
41        self
42    }
43    /// <p>The task identifier. This operation is asynchronous. Use this identifier with the <code>GetDataSetExportTask</code> operation to obtain the status of this task.</p>
44    pub fn set_task_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
45        self.task_id = input;
46        self
47    }
48    /// <p>The task identifier. This operation is asynchronous. Use this identifier with the <code>GetDataSetExportTask</code> operation to obtain the status of this task.</p>
49    pub fn get_task_id(&self) -> &::std::option::Option<::std::string::String> {
50        &self.task_id
51    }
52    pub(crate) fn _request_id(mut self, request_id: impl Into<String>) -> Self {
53        self._request_id = Some(request_id.into());
54        self
55    }
56
57    pub(crate) fn _set_request_id(&mut self, request_id: Option<String>) -> &mut Self {
58        self._request_id = request_id;
59        self
60    }
61    /// Consumes the builder and constructs a [`CreateDataSetExportTaskOutput`](crate::operation::create_data_set_export_task::CreateDataSetExportTaskOutput).
62    /// This method will fail if any of the following fields are not set:
63    /// - [`task_id`](crate::operation::create_data_set_export_task::builders::CreateDataSetExportTaskOutputBuilder::task_id)
64    pub fn build(
65        self,
66    ) -> ::std::result::Result<
67        crate::operation::create_data_set_export_task::CreateDataSetExportTaskOutput,
68        ::aws_smithy_types::error::operation::BuildError,
69    > {
70        ::std::result::Result::Ok(crate::operation::create_data_set_export_task::CreateDataSetExportTaskOutput {
71            task_id: self.task_id.ok_or_else(|| {
72                ::aws_smithy_types::error::operation::BuildError::missing_field(
73                    "task_id",
74                    "task_id was not specified but it is required when building CreateDataSetExportTaskOutput",
75                )
76            })?,
77            _request_id: self._request_id,
78        })
79    }
80}