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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
/// <p></p>
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct CreateEventSubscriptionInput {
/// <p>The name of the event subscription to be created.</p>
/// <p>Constraints:</p>
/// <ul>
/// <li>
/// <p>Cannot be null, empty, or blank.</p></li>
/// <li>
/// <p>Must contain from 1 to 255 alphanumeric characters or hyphens.</p></li>
/// <li>
/// <p>First character must be a letter.</p></li>
/// <li>
/// <p>Cannot end with a hyphen or contain two consecutive hyphens.</p></li>
/// </ul>
pub subscription_name: ::std::option::Option<::std::string::String>,
/// <p>The Amazon Resource Name (ARN) of the Amazon SNS topic used to transmit the event notifications. The ARN is created by Amazon SNS when you create a topic and subscribe to it.</p>
pub sns_topic_arn: ::std::option::Option<::std::string::String>,
/// <p>The type of source that will be generating the events. For example, if you want to be notified of events generated by a cluster, you would set this parameter to cluster. If this value is not specified, events are returned for all Amazon Redshift objects in your Amazon Web Services account. You must specify a source type in order to specify source IDs.</p>
/// <p>Valid values: cluster, cluster-parameter-group, cluster-security-group, cluster-snapshot, and scheduled-action.</p>
pub source_type: ::std::option::Option<::std::string::String>,
/// <p>A list of one or more identifiers of Amazon Redshift source objects. All of the objects must be of the same type as was specified in the source type parameter. The event subscription will return only events generated by the specified objects. If not specified, then events are returned for all objects within the source type specified.</p>
/// <p>Example: my-cluster-1, my-cluster-2</p>
/// <p>Example: my-snapshot-20131010</p>
pub source_ids: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
/// <p>Specifies the Amazon Redshift event categories to be published by the event notification subscription.</p>
/// <p>Values: configuration, management, monitoring, security, pending</p>
pub event_categories: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
/// <p>Specifies the Amazon Redshift event severity to be published by the event notification subscription.</p>
/// <p>Values: ERROR, INFO</p>
pub severity: ::std::option::Option<::std::string::String>,
/// <p>A boolean value; set to <code>true</code> to activate the subscription, and set to <code>false</code> to create the subscription but not activate it.</p>
pub enabled: ::std::option::Option<bool>,
/// <p>A list of tag instances.</p>
pub tags: ::std::option::Option<::std::vec::Vec<crate::types::Tag>>,
}
impl CreateEventSubscriptionInput {
/// <p>The name of the event subscription to be created.</p>
/// <p>Constraints:</p>
/// <ul>
/// <li>
/// <p>Cannot be null, empty, or blank.</p></li>
/// <li>
/// <p>Must contain from 1 to 255 alphanumeric characters or hyphens.</p></li>
/// <li>
/// <p>First character must be a letter.</p></li>
/// <li>
/// <p>Cannot end with a hyphen or contain two consecutive hyphens.</p></li>
/// </ul>
pub fn subscription_name(&self) -> ::std::option::Option<&str> {
self.subscription_name.as_deref()
}
/// <p>The Amazon Resource Name (ARN) of the Amazon SNS topic used to transmit the event notifications. The ARN is created by Amazon SNS when you create a topic and subscribe to it.</p>
pub fn sns_topic_arn(&self) -> ::std::option::Option<&str> {
self.sns_topic_arn.as_deref()
}
/// <p>The type of source that will be generating the events. For example, if you want to be notified of events generated by a cluster, you would set this parameter to cluster. If this value is not specified, events are returned for all Amazon Redshift objects in your Amazon Web Services account. You must specify a source type in order to specify source IDs.</p>
/// <p>Valid values: cluster, cluster-parameter-group, cluster-security-group, cluster-snapshot, and scheduled-action.</p>
pub fn source_type(&self) -> ::std::option::Option<&str> {
self.source_type.as_deref()
}
/// <p>A list of one or more identifiers of Amazon Redshift source objects. All of the objects must be of the same type as was specified in the source type parameter. The event subscription will return only events generated by the specified objects. If not specified, then events are returned for all objects within the source type specified.</p>
/// <p>Example: my-cluster-1, my-cluster-2</p>
/// <p>Example: my-snapshot-20131010</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 `.source_ids.is_none()`.
pub fn source_ids(&self) -> &[::std::string::String] {
self.source_ids.as_deref().unwrap_or_default()
}
/// <p>Specifies the Amazon Redshift event categories to be published by the event notification subscription.</p>
/// <p>Values: configuration, management, monitoring, security, pending</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 `.event_categories.is_none()`.
pub fn event_categories(&self) -> &[::std::string::String] {
self.event_categories.as_deref().unwrap_or_default()
}
/// <p>Specifies the Amazon Redshift event severity to be published by the event notification subscription.</p>
/// <p>Values: ERROR, INFO</p>
pub fn severity(&self) -> ::std::option::Option<&str> {
self.severity.as_deref()
}
/// <p>A boolean value; set to <code>true</code> to activate the subscription, and set to <code>false</code> to create the subscription but not activate it.</p>
pub fn enabled(&self) -> ::std::option::Option<bool> {
self.enabled
}
/// <p>A list of tag instances.</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 `.tags.is_none()`.
pub fn tags(&self) -> &[crate::types::Tag] {
self.tags.as_deref().unwrap_or_default()
}
}
impl CreateEventSubscriptionInput {
/// Creates a new builder-style object to manufacture [`CreateEventSubscriptionInput`](crate::operation::create_event_subscription::CreateEventSubscriptionInput).
pub fn builder() -> crate::operation::create_event_subscription::builders::CreateEventSubscriptionInputBuilder {
crate::operation::create_event_subscription::builders::CreateEventSubscriptionInputBuilder::default()
}
}
/// A builder for [`CreateEventSubscriptionInput`](crate::operation::create_event_subscription::CreateEventSubscriptionInput).
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
#[non_exhaustive]
pub struct CreateEventSubscriptionInputBuilder {
pub(crate) subscription_name: ::std::option::Option<::std::string::String>,
pub(crate) sns_topic_arn: ::std::option::Option<::std::string::String>,
pub(crate) source_type: ::std::option::Option<::std::string::String>,
pub(crate) source_ids: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
pub(crate) event_categories: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
pub(crate) severity: ::std::option::Option<::std::string::String>,
pub(crate) enabled: ::std::option::Option<bool>,
pub(crate) tags: ::std::option::Option<::std::vec::Vec<crate::types::Tag>>,
}
impl CreateEventSubscriptionInputBuilder {
/// <p>The name of the event subscription to be created.</p>
/// <p>Constraints:</p>
/// <ul>
/// <li>
/// <p>Cannot be null, empty, or blank.</p></li>
/// <li>
/// <p>Must contain from 1 to 255 alphanumeric characters or hyphens.</p></li>
/// <li>
/// <p>First character must be a letter.</p></li>
/// <li>
/// <p>Cannot end with a hyphen or contain two consecutive hyphens.</p></li>
/// </ul>
/// This field is required.
pub fn subscription_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.subscription_name = ::std::option::Option::Some(input.into());
self
}
/// <p>The name of the event subscription to be created.</p>
/// <p>Constraints:</p>
/// <ul>
/// <li>
/// <p>Cannot be null, empty, or blank.</p></li>
/// <li>
/// <p>Must contain from 1 to 255 alphanumeric characters or hyphens.</p></li>
/// <li>
/// <p>First character must be a letter.</p></li>
/// <li>
/// <p>Cannot end with a hyphen or contain two consecutive hyphens.</p></li>
/// </ul>
pub fn set_subscription_name(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.subscription_name = input;
self
}
/// <p>The name of the event subscription to be created.</p>
/// <p>Constraints:</p>
/// <ul>
/// <li>
/// <p>Cannot be null, empty, or blank.</p></li>
/// <li>
/// <p>Must contain from 1 to 255 alphanumeric characters or hyphens.</p></li>
/// <li>
/// <p>First character must be a letter.</p></li>
/// <li>
/// <p>Cannot end with a hyphen or contain two consecutive hyphens.</p></li>
/// </ul>
pub fn get_subscription_name(&self) -> &::std::option::Option<::std::string::String> {
&self.subscription_name
}
/// <p>The Amazon Resource Name (ARN) of the Amazon SNS topic used to transmit the event notifications. The ARN is created by Amazon SNS when you create a topic and subscribe to it.</p>
/// This field is required.
pub fn sns_topic_arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.sns_topic_arn = ::std::option::Option::Some(input.into());
self
}
/// <p>The Amazon Resource Name (ARN) of the Amazon SNS topic used to transmit the event notifications. The ARN is created by Amazon SNS when you create a topic and subscribe to it.</p>
pub fn set_sns_topic_arn(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.sns_topic_arn = input;
self
}
/// <p>The Amazon Resource Name (ARN) of the Amazon SNS topic used to transmit the event notifications. The ARN is created by Amazon SNS when you create a topic and subscribe to it.</p>
pub fn get_sns_topic_arn(&self) -> &::std::option::Option<::std::string::String> {
&self.sns_topic_arn
}
/// <p>The type of source that will be generating the events. For example, if you want to be notified of events generated by a cluster, you would set this parameter to cluster. If this value is not specified, events are returned for all Amazon Redshift objects in your Amazon Web Services account. You must specify a source type in order to specify source IDs.</p>
/// <p>Valid values: cluster, cluster-parameter-group, cluster-security-group, cluster-snapshot, and scheduled-action.</p>
pub fn source_type(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.source_type = ::std::option::Option::Some(input.into());
self
}
/// <p>The type of source that will be generating the events. For example, if you want to be notified of events generated by a cluster, you would set this parameter to cluster. If this value is not specified, events are returned for all Amazon Redshift objects in your Amazon Web Services account. You must specify a source type in order to specify source IDs.</p>
/// <p>Valid values: cluster, cluster-parameter-group, cluster-security-group, cluster-snapshot, and scheduled-action.</p>
pub fn set_source_type(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.source_type = input;
self
}
/// <p>The type of source that will be generating the events. For example, if you want to be notified of events generated by a cluster, you would set this parameter to cluster. If this value is not specified, events are returned for all Amazon Redshift objects in your Amazon Web Services account. You must specify a source type in order to specify source IDs.</p>
/// <p>Valid values: cluster, cluster-parameter-group, cluster-security-group, cluster-snapshot, and scheduled-action.</p>
pub fn get_source_type(&self) -> &::std::option::Option<::std::string::String> {
&self.source_type
}
/// Appends an item to `source_ids`.
///
/// To override the contents of this collection use [`set_source_ids`](Self::set_source_ids).
///
/// <p>A list of one or more identifiers of Amazon Redshift source objects. All of the objects must be of the same type as was specified in the source type parameter. The event subscription will return only events generated by the specified objects. If not specified, then events are returned for all objects within the source type specified.</p>
/// <p>Example: my-cluster-1, my-cluster-2</p>
/// <p>Example: my-snapshot-20131010</p>
pub fn source_ids(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
let mut v = self.source_ids.unwrap_or_default();
v.push(input.into());
self.source_ids = ::std::option::Option::Some(v);
self
}
/// <p>A list of one or more identifiers of Amazon Redshift source objects. All of the objects must be of the same type as was specified in the source type parameter. The event subscription will return only events generated by the specified objects. If not specified, then events are returned for all objects within the source type specified.</p>
/// <p>Example: my-cluster-1, my-cluster-2</p>
/// <p>Example: my-snapshot-20131010</p>
pub fn set_source_ids(mut self, input: ::std::option::Option<::std::vec::Vec<::std::string::String>>) -> Self {
self.source_ids = input;
self
}
/// <p>A list of one or more identifiers of Amazon Redshift source objects. All of the objects must be of the same type as was specified in the source type parameter. The event subscription will return only events generated by the specified objects. If not specified, then events are returned for all objects within the source type specified.</p>
/// <p>Example: my-cluster-1, my-cluster-2</p>
/// <p>Example: my-snapshot-20131010</p>
pub fn get_source_ids(&self) -> &::std::option::Option<::std::vec::Vec<::std::string::String>> {
&self.source_ids
}
/// Appends an item to `event_categories`.
///
/// To override the contents of this collection use [`set_event_categories`](Self::set_event_categories).
///
/// <p>Specifies the Amazon Redshift event categories to be published by the event notification subscription.</p>
/// <p>Values: configuration, management, monitoring, security, pending</p>
pub fn event_categories(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
let mut v = self.event_categories.unwrap_or_default();
v.push(input.into());
self.event_categories = ::std::option::Option::Some(v);
self
}
/// <p>Specifies the Amazon Redshift event categories to be published by the event notification subscription.</p>
/// <p>Values: configuration, management, monitoring, security, pending</p>
pub fn set_event_categories(mut self, input: ::std::option::Option<::std::vec::Vec<::std::string::String>>) -> Self {
self.event_categories = input;
self
}
/// <p>Specifies the Amazon Redshift event categories to be published by the event notification subscription.</p>
/// <p>Values: configuration, management, monitoring, security, pending</p>
pub fn get_event_categories(&self) -> &::std::option::Option<::std::vec::Vec<::std::string::String>> {
&self.event_categories
}
/// <p>Specifies the Amazon Redshift event severity to be published by the event notification subscription.</p>
/// <p>Values: ERROR, INFO</p>
pub fn severity(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.severity = ::std::option::Option::Some(input.into());
self
}
/// <p>Specifies the Amazon Redshift event severity to be published by the event notification subscription.</p>
/// <p>Values: ERROR, INFO</p>
pub fn set_severity(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.severity = input;
self
}
/// <p>Specifies the Amazon Redshift event severity to be published by the event notification subscription.</p>
/// <p>Values: ERROR, INFO</p>
pub fn get_severity(&self) -> &::std::option::Option<::std::string::String> {
&self.severity
}
/// <p>A boolean value; set to <code>true</code> to activate the subscription, and set to <code>false</code> to create the subscription but not activate it.</p>
pub fn enabled(mut self, input: bool) -> Self {
self.enabled = ::std::option::Option::Some(input);
self
}
/// <p>A boolean value; set to <code>true</code> to activate the subscription, and set to <code>false</code> to create the subscription but not activate it.</p>
pub fn set_enabled(mut self, input: ::std::option::Option<bool>) -> Self {
self.enabled = input;
self
}
/// <p>A boolean value; set to <code>true</code> to activate the subscription, and set to <code>false</code> to create the subscription but not activate it.</p>
pub fn get_enabled(&self) -> &::std::option::Option<bool> {
&self.enabled
}
/// Appends an item to `tags`.
///
/// To override the contents of this collection use [`set_tags`](Self::set_tags).
///
/// <p>A list of tag instances.</p>
pub fn tags(mut self, input: crate::types::Tag) -> Self {
let mut v = self.tags.unwrap_or_default();
v.push(input);
self.tags = ::std::option::Option::Some(v);
self
}
/// <p>A list of tag instances.</p>
pub fn set_tags(mut self, input: ::std::option::Option<::std::vec::Vec<crate::types::Tag>>) -> Self {
self.tags = input;
self
}
/// <p>A list of tag instances.</p>
pub fn get_tags(&self) -> &::std::option::Option<::std::vec::Vec<crate::types::Tag>> {
&self.tags
}
/// Consumes the builder and constructs a [`CreateEventSubscriptionInput`](crate::operation::create_event_subscription::CreateEventSubscriptionInput).
pub fn build(
self,
) -> ::std::result::Result<
crate::operation::create_event_subscription::CreateEventSubscriptionInput,
::aws_smithy_types::error::operation::BuildError,
> {
::std::result::Result::Ok(crate::operation::create_event_subscription::CreateEventSubscriptionInput {
subscription_name: self.subscription_name,
sns_topic_arn: self.sns_topic_arn,
source_type: self.source_type,
source_ids: self.source_ids,
event_categories: self.event_categories,
severity: self.severity,
enabled: self.enabled,
tags: self.tags,
})
}
}