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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct GetFindingStatisticsInput {
/// <p>The criteria to use to filter the query results.</p>
pub finding_criteria: ::std::option::Option<crate::types::FindingCriteria>,
/// <p>The finding property to use to group the query results. Valid values are:</p>
/// <ul>
/// <li>
/// <p>classificationDetails.jobId - The unique identifier for the classification job that produced the finding.</p></li>
/// <li>
/// <p>resourcesAffected.s3Bucket.name - The name of the S3 bucket that the finding applies to.</p></li>
/// <li>
/// <p>severity.description - The severity level of the finding, such as High or Medium.</p></li>
/// <li>
/// <p>type - The type of finding, such as Policy:IAMUser/S3BucketPublic and SensitiveData:S3Object/Personal.</p></li>
/// </ul>
pub group_by: ::std::option::Option<crate::types::GroupBy>,
/// <p>The maximum number of items to include in each page of the response.</p>
pub size: ::std::option::Option<i32>,
/// <p>The criteria to use to sort the query results.</p>
pub sort_criteria: ::std::option::Option<crate::types::FindingStatisticsSortCriteria>,
}
impl GetFindingStatisticsInput {
/// <p>The criteria to use to filter the query results.</p>
pub fn finding_criteria(&self) -> ::std::option::Option<&crate::types::FindingCriteria> {
self.finding_criteria.as_ref()
}
/// <p>The finding property to use to group the query results. Valid values are:</p>
/// <ul>
/// <li>
/// <p>classificationDetails.jobId - The unique identifier for the classification job that produced the finding.</p></li>
/// <li>
/// <p>resourcesAffected.s3Bucket.name - The name of the S3 bucket that the finding applies to.</p></li>
/// <li>
/// <p>severity.description - The severity level of the finding, such as High or Medium.</p></li>
/// <li>
/// <p>type - The type of finding, such as Policy:IAMUser/S3BucketPublic and SensitiveData:S3Object/Personal.</p></li>
/// </ul>
pub fn group_by(&self) -> ::std::option::Option<&crate::types::GroupBy> {
self.group_by.as_ref()
}
/// <p>The maximum number of items to include in each page of the response.</p>
pub fn size(&self) -> ::std::option::Option<i32> {
self.size
}
/// <p>The criteria to use to sort the query results.</p>
pub fn sort_criteria(&self) -> ::std::option::Option<&crate::types::FindingStatisticsSortCriteria> {
self.sort_criteria.as_ref()
}
}
impl GetFindingStatisticsInput {
/// Creates a new builder-style object to manufacture [`GetFindingStatisticsInput`](crate::operation::get_finding_statistics::GetFindingStatisticsInput).
pub fn builder() -> crate::operation::get_finding_statistics::builders::GetFindingStatisticsInputBuilder {
crate::operation::get_finding_statistics::builders::GetFindingStatisticsInputBuilder::default()
}
}
/// A builder for [`GetFindingStatisticsInput`](crate::operation::get_finding_statistics::GetFindingStatisticsInput).
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
#[non_exhaustive]
pub struct GetFindingStatisticsInputBuilder {
pub(crate) finding_criteria: ::std::option::Option<crate::types::FindingCriteria>,
pub(crate) group_by: ::std::option::Option<crate::types::GroupBy>,
pub(crate) size: ::std::option::Option<i32>,
pub(crate) sort_criteria: ::std::option::Option<crate::types::FindingStatisticsSortCriteria>,
}
impl GetFindingStatisticsInputBuilder {
/// <p>The criteria to use to filter the query results.</p>
pub fn finding_criteria(mut self, input: crate::types::FindingCriteria) -> Self {
self.finding_criteria = ::std::option::Option::Some(input);
self
}
/// <p>The criteria to use to filter the query results.</p>
pub fn set_finding_criteria(mut self, input: ::std::option::Option<crate::types::FindingCriteria>) -> Self {
self.finding_criteria = input;
self
}
/// <p>The criteria to use to filter the query results.</p>
pub fn get_finding_criteria(&self) -> &::std::option::Option<crate::types::FindingCriteria> {
&self.finding_criteria
}
/// <p>The finding property to use to group the query results. Valid values are:</p>
/// <ul>
/// <li>
/// <p>classificationDetails.jobId - The unique identifier for the classification job that produced the finding.</p></li>
/// <li>
/// <p>resourcesAffected.s3Bucket.name - The name of the S3 bucket that the finding applies to.</p></li>
/// <li>
/// <p>severity.description - The severity level of the finding, such as High or Medium.</p></li>
/// <li>
/// <p>type - The type of finding, such as Policy:IAMUser/S3BucketPublic and SensitiveData:S3Object/Personal.</p></li>
/// </ul>
/// This field is required.
pub fn group_by(mut self, input: crate::types::GroupBy) -> Self {
self.group_by = ::std::option::Option::Some(input);
self
}
/// <p>The finding property to use to group the query results. Valid values are:</p>
/// <ul>
/// <li>
/// <p>classificationDetails.jobId - The unique identifier for the classification job that produced the finding.</p></li>
/// <li>
/// <p>resourcesAffected.s3Bucket.name - The name of the S3 bucket that the finding applies to.</p></li>
/// <li>
/// <p>severity.description - The severity level of the finding, such as High or Medium.</p></li>
/// <li>
/// <p>type - The type of finding, such as Policy:IAMUser/S3BucketPublic and SensitiveData:S3Object/Personal.</p></li>
/// </ul>
pub fn set_group_by(mut self, input: ::std::option::Option<crate::types::GroupBy>) -> Self {
self.group_by = input;
self
}
/// <p>The finding property to use to group the query results. Valid values are:</p>
/// <ul>
/// <li>
/// <p>classificationDetails.jobId - The unique identifier for the classification job that produced the finding.</p></li>
/// <li>
/// <p>resourcesAffected.s3Bucket.name - The name of the S3 bucket that the finding applies to.</p></li>
/// <li>
/// <p>severity.description - The severity level of the finding, such as High or Medium.</p></li>
/// <li>
/// <p>type - The type of finding, such as Policy:IAMUser/S3BucketPublic and SensitiveData:S3Object/Personal.</p></li>
/// </ul>
pub fn get_group_by(&self) -> &::std::option::Option<crate::types::GroupBy> {
&self.group_by
}
/// <p>The maximum number of items to include in each page of the response.</p>
pub fn size(mut self, input: i32) -> Self {
self.size = ::std::option::Option::Some(input);
self
}
/// <p>The maximum number of items to include in each page of the response.</p>
pub fn set_size(mut self, input: ::std::option::Option<i32>) -> Self {
self.size = input;
self
}
/// <p>The maximum number of items to include in each page of the response.</p>
pub fn get_size(&self) -> &::std::option::Option<i32> {
&self.size
}
/// <p>The criteria to use to sort the query results.</p>
pub fn sort_criteria(mut self, input: crate::types::FindingStatisticsSortCriteria) -> Self {
self.sort_criteria = ::std::option::Option::Some(input);
self
}
/// <p>The criteria to use to sort the query results.</p>
pub fn set_sort_criteria(mut self, input: ::std::option::Option<crate::types::FindingStatisticsSortCriteria>) -> Self {
self.sort_criteria = input;
self
}
/// <p>The criteria to use to sort the query results.</p>
pub fn get_sort_criteria(&self) -> &::std::option::Option<crate::types::FindingStatisticsSortCriteria> {
&self.sort_criteria
}
/// Consumes the builder and constructs a [`GetFindingStatisticsInput`](crate::operation::get_finding_statistics::GetFindingStatisticsInput).
pub fn build(
self,
) -> ::std::result::Result<crate::operation::get_finding_statistics::GetFindingStatisticsInput, ::aws_smithy_types::error::operation::BuildError>
{
::std::result::Result::Ok(crate::operation::get_finding_statistics::GetFindingStatisticsInput {
finding_criteria: self.finding_criteria,
group_by: self.group_by,
size: self.size,
sort_criteria: self.sort_criteria,
})
}
}