aws_sdk_lookoutvision/operation/describe_dataset/_describe_dataset_input.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 DescribeDatasetInput {
6 /// <p>The name of the project that contains the dataset that you want to describe.</p>
7 pub project_name: ::std::option::Option<::std::string::String>,
8 /// <p>The type of the dataset to describe. Specify <code>train</code> to describe the training dataset. Specify <code>test</code> to describe the test dataset. If you have a single dataset project, specify <code>train</code></p>
9 pub dataset_type: ::std::option::Option<::std::string::String>,
10}
11impl DescribeDatasetInput {
12 /// <p>The name of the project that contains the dataset that you want to describe.</p>
13 pub fn project_name(&self) -> ::std::option::Option<&str> {
14 self.project_name.as_deref()
15 }
16 /// <p>The type of the dataset to describe. Specify <code>train</code> to describe the training dataset. Specify <code>test</code> to describe the test dataset. If you have a single dataset project, specify <code>train</code></p>
17 pub fn dataset_type(&self) -> ::std::option::Option<&str> {
18 self.dataset_type.as_deref()
19 }
20}
21impl DescribeDatasetInput {
22 /// Creates a new builder-style object to manufacture [`DescribeDatasetInput`](crate::operation::describe_dataset::DescribeDatasetInput).
23 pub fn builder() -> crate::operation::describe_dataset::builders::DescribeDatasetInputBuilder {
24 crate::operation::describe_dataset::builders::DescribeDatasetInputBuilder::default()
25 }
26}
27
28/// A builder for [`DescribeDatasetInput`](crate::operation::describe_dataset::DescribeDatasetInput).
29#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
30#[non_exhaustive]
31pub struct DescribeDatasetInputBuilder {
32 pub(crate) project_name: ::std::option::Option<::std::string::String>,
33 pub(crate) dataset_type: ::std::option::Option<::std::string::String>,
34}
35impl DescribeDatasetInputBuilder {
36 /// <p>The name of the project that contains the dataset that you want to describe.</p>
37 /// This field is required.
38 pub fn project_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
39 self.project_name = ::std::option::Option::Some(input.into());
40 self
41 }
42 /// <p>The name of the project that contains the dataset that you want to describe.</p>
43 pub fn set_project_name(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
44 self.project_name = input;
45 self
46 }
47 /// <p>The name of the project that contains the dataset that you want to describe.</p>
48 pub fn get_project_name(&self) -> &::std::option::Option<::std::string::String> {
49 &self.project_name
50 }
51 /// <p>The type of the dataset to describe. Specify <code>train</code> to describe the training dataset. Specify <code>test</code> to describe the test dataset. If you have a single dataset project, specify <code>train</code></p>
52 /// This field is required.
53 pub fn dataset_type(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
54 self.dataset_type = ::std::option::Option::Some(input.into());
55 self
56 }
57 /// <p>The type of the dataset to describe. Specify <code>train</code> to describe the training dataset. Specify <code>test</code> to describe the test dataset. If you have a single dataset project, specify <code>train</code></p>
58 pub fn set_dataset_type(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
59 self.dataset_type = input;
60 self
61 }
62 /// <p>The type of the dataset to describe. Specify <code>train</code> to describe the training dataset. Specify <code>test</code> to describe the test dataset. If you have a single dataset project, specify <code>train</code></p>
63 pub fn get_dataset_type(&self) -> &::std::option::Option<::std::string::String> {
64 &self.dataset_type
65 }
66 /// Consumes the builder and constructs a [`DescribeDatasetInput`](crate::operation::describe_dataset::DescribeDatasetInput).
67 pub fn build(
68 self,
69 ) -> ::std::result::Result<crate::operation::describe_dataset::DescribeDatasetInput, ::aws_smithy_types::error::operation::BuildError> {
70 ::std::result::Result::Ok(crate::operation::describe_dataset::DescribeDatasetInput {
71 project_name: self.project_name,
72 dataset_type: self.dataset_type,
73 })
74 }
75}