1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
/// <p>Contains the output of PutPipelineDefinition.</p>
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct PutPipelineDefinitionOutput {
/// <p>The validation errors that are associated with the objects defined in <code>pipelineObjects</code>.</p>
pub validation_errors: ::std::option::Option<::std::vec::Vec<crate::types::ValidationError>>,
/// <p>The validation warnings that are associated with the objects defined in <code>pipelineObjects</code>.</p>
pub validation_warnings: ::std::option::Option<::std::vec::Vec<crate::types::ValidationWarning>>,
/// <p>Indicates whether there were validation errors, and the pipeline definition is stored but cannot be activated until you correct the pipeline and call <code>PutPipelineDefinition</code> to commit the corrected pipeline.</p>
pub errored: bool,
_request_id: Option<String>,
}
impl PutPipelineDefinitionOutput {
/// <p>The validation errors that are associated with the objects defined in <code>pipelineObjects</code>.</p>
///
/// If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use `.validation_errors.is_none()`.
pub fn validation_errors(&self) -> &[crate::types::ValidationError] {
self.validation_errors.as_deref().unwrap_or_default()
}
/// <p>The validation warnings that are associated with the objects defined in <code>pipelineObjects</code>.</p>
///
/// If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use `.validation_warnings.is_none()`.
pub fn validation_warnings(&self) -> &[crate::types::ValidationWarning] {
self.validation_warnings.as_deref().unwrap_or_default()
}
/// <p>Indicates whether there were validation errors, and the pipeline definition is stored but cannot be activated until you correct the pipeline and call <code>PutPipelineDefinition</code> to commit the corrected pipeline.</p>
pub fn errored(&self) -> bool {
self.errored
}
}
impl ::aws_types::request_id::RequestId for PutPipelineDefinitionOutput {
fn request_id(&self) -> Option<&str> {
self._request_id.as_deref()
}
}
impl PutPipelineDefinitionOutput {
/// Creates a new builder-style object to manufacture [`PutPipelineDefinitionOutput`](crate::operation::put_pipeline_definition::PutPipelineDefinitionOutput).
pub fn builder() -> crate::operation::put_pipeline_definition::builders::PutPipelineDefinitionOutputBuilder {
crate::operation::put_pipeline_definition::builders::PutPipelineDefinitionOutputBuilder::default()
}
}
/// A builder for [`PutPipelineDefinitionOutput`](crate::operation::put_pipeline_definition::PutPipelineDefinitionOutput).
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
#[non_exhaustive]
pub struct PutPipelineDefinitionOutputBuilder {
pub(crate) validation_errors: ::std::option::Option<::std::vec::Vec<crate::types::ValidationError>>,
pub(crate) validation_warnings: ::std::option::Option<::std::vec::Vec<crate::types::ValidationWarning>>,
pub(crate) errored: ::std::option::Option<bool>,
_request_id: Option<String>,
}
impl PutPipelineDefinitionOutputBuilder {
/// Appends an item to `validation_errors`.
///
/// To override the contents of this collection use [`set_validation_errors`](Self::set_validation_errors).
///
/// <p>The validation errors that are associated with the objects defined in <code>pipelineObjects</code>.</p>
pub fn validation_errors(mut self, input: crate::types::ValidationError) -> Self {
let mut v = self.validation_errors.unwrap_or_default();
v.push(input);
self.validation_errors = ::std::option::Option::Some(v);
self
}
/// <p>The validation errors that are associated with the objects defined in <code>pipelineObjects</code>.</p>
pub fn set_validation_errors(mut self, input: ::std::option::Option<::std::vec::Vec<crate::types::ValidationError>>) -> Self {
self.validation_errors = input;
self
}
/// <p>The validation errors that are associated with the objects defined in <code>pipelineObjects</code>.</p>
pub fn get_validation_errors(&self) -> &::std::option::Option<::std::vec::Vec<crate::types::ValidationError>> {
&self.validation_errors
}
/// Appends an item to `validation_warnings`.
///
/// To override the contents of this collection use [`set_validation_warnings`](Self::set_validation_warnings).
///
/// <p>The validation warnings that are associated with the objects defined in <code>pipelineObjects</code>.</p>
pub fn validation_warnings(mut self, input: crate::types::ValidationWarning) -> Self {
let mut v = self.validation_warnings.unwrap_or_default();
v.push(input);
self.validation_warnings = ::std::option::Option::Some(v);
self
}
/// <p>The validation warnings that are associated with the objects defined in <code>pipelineObjects</code>.</p>
pub fn set_validation_warnings(mut self, input: ::std::option::Option<::std::vec::Vec<crate::types::ValidationWarning>>) -> Self {
self.validation_warnings = input;
self
}
/// <p>The validation warnings that are associated with the objects defined in <code>pipelineObjects</code>.</p>
pub fn get_validation_warnings(&self) -> &::std::option::Option<::std::vec::Vec<crate::types::ValidationWarning>> {
&self.validation_warnings
}
/// <p>Indicates whether there were validation errors, and the pipeline definition is stored but cannot be activated until you correct the pipeline and call <code>PutPipelineDefinition</code> to commit the corrected pipeline.</p>
/// This field is required.
pub fn errored(mut self, input: bool) -> Self {
self.errored = ::std::option::Option::Some(input);
self
}
/// <p>Indicates whether there were validation errors, and the pipeline definition is stored but cannot be activated until you correct the pipeline and call <code>PutPipelineDefinition</code> to commit the corrected pipeline.</p>
pub fn set_errored(mut self, input: ::std::option::Option<bool>) -> Self {
self.errored = input;
self
}
/// <p>Indicates whether there were validation errors, and the pipeline definition is stored but cannot be activated until you correct the pipeline and call <code>PutPipelineDefinition</code> to commit the corrected pipeline.</p>
pub fn get_errored(&self) -> &::std::option::Option<bool> {
&self.errored
}
pub(crate) fn _request_id(mut self, request_id: impl Into<String>) -> Self {
self._request_id = Some(request_id.into());
self
}
pub(crate) fn _set_request_id(&mut self, request_id: Option<String>) -> &mut Self {
self._request_id = request_id;
self
}
/// Consumes the builder and constructs a [`PutPipelineDefinitionOutput`](crate::operation::put_pipeline_definition::PutPipelineDefinitionOutput).
pub fn build(self) -> crate::operation::put_pipeline_definition::PutPipelineDefinitionOutput {
crate::operation::put_pipeline_definition::PutPipelineDefinitionOutput {
validation_errors: self.validation_errors,
validation_warnings: self.validation_warnings,
errored: self.errored.unwrap_or_default(),
_request_id: self._request_id,
}
}
}