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
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
/// <p>Represents the input to <code>CreateEventSubscription</code>.</p>
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct CreateEventSubscriptionInput {
/// <p>The name of the subscription.</p>
/// <p>Constraints: The name must be fewer than 255 characters.</p>
pub subscription_name: ::std::option::Option<::std::string::String>,
/// <p>The Amazon Resource Name (ARN) of the SNS topic created for event notification. Amazon SNS creates the ARN 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 is generating the events. For example, if you want to be notified of events generated by an instance, you would set this parameter to <code>db-instance</code>. If this value is not specified, all events are returned.</p>
/// <p>Valid values: <code>db-instance</code>, <code>db-cluster</code>, <code>db-parameter-group</code>, <code>db-security-group</code>, <code>db-cluster-snapshot</code></p>
pub source_type: ::std::option::Option<::std::string::String>,
/// <p>A list of event categories for a <code>SourceType</code> that you want to subscribe to.</p>
pub event_categories: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
/// <p>The list of identifiers of the event sources for which events are returned. If not specified, then all sources are included in the response. An identifier must begin with a letter and must contain only ASCII letters, digits, and hyphens; it can't end with a hyphen or contain two consecutive hyphens.</p>
/// <p>Constraints:</p>
/// <ul>
/// <li>
/// <p>If <code>SourceIds</code> are provided, <code>SourceType</code> must also be provided.</p></li>
/// <li>
/// <p>If the source type is an instance, a <code>DBInstanceIdentifier</code> must be provided.</p></li>
/// <li>
/// <p>If the source type is a security group, a <code>DBSecurityGroupName</code> must be provided.</p></li>
/// <li>
/// <p>If the source type is a parameter group, a <code>DBParameterGroupName</code> must be provided.</p></li>
/// <li>
/// <p>If the source type is a snapshot, a <code>DBSnapshotIdentifier</code> must be provided.</p></li>
/// </ul>
pub source_ids: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
/// <p>A Boolean value; set to <code>true</code> to activate the subscription, set to <code>false</code> to create the subscription but not active it.</p>
pub enabled: ::std::option::Option<bool>,
/// <p>The tags to be assigned to the event subscription.</p>
pub tags: ::std::option::Option<::std::vec::Vec<crate::types::Tag>>,
}
impl CreateEventSubscriptionInput {
/// <p>The name of the subscription.</p>
/// <p>Constraints: The name must be fewer than 255 characters.</p>
pub fn subscription_name(&self) -> ::std::option::Option<&str> {
self.subscription_name.as_deref()
}
/// <p>The Amazon Resource Name (ARN) of the SNS topic created for event notification. Amazon SNS creates the ARN 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 is generating the events. For example, if you want to be notified of events generated by an instance, you would set this parameter to <code>db-instance</code>. If this value is not specified, all events are returned.</p>
/// <p>Valid values: <code>db-instance</code>, <code>db-cluster</code>, <code>db-parameter-group</code>, <code>db-security-group</code>, <code>db-cluster-snapshot</code></p>
pub fn source_type(&self) -> ::std::option::Option<&str> {
self.source_type.as_deref()
}
/// <p>A list of event categories for a <code>SourceType</code> that you want to subscribe to.</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>The list of identifiers of the event sources for which events are returned. If not specified, then all sources are included in the response. An identifier must begin with a letter and must contain only ASCII letters, digits, and hyphens; it can't end with a hyphen or contain two consecutive hyphens.</p>
/// <p>Constraints:</p>
/// <ul>
/// <li>
/// <p>If <code>SourceIds</code> are provided, <code>SourceType</code> must also be provided.</p></li>
/// <li>
/// <p>If the source type is an instance, a <code>DBInstanceIdentifier</code> must be provided.</p></li>
/// <li>
/// <p>If the source type is a security group, a <code>DBSecurityGroupName</code> must be provided.</p></li>
/// <li>
/// <p>If the source type is a parameter group, a <code>DBParameterGroupName</code> must be provided.</p></li>
/// <li>
/// <p>If the source type is a snapshot, a <code>DBSnapshotIdentifier</code> must be provided.</p></li>
/// </ul>
///
/// 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>A Boolean value; set to <code>true</code> to activate the subscription, set to <code>false</code> to create the subscription but not active it.</p>
pub fn enabled(&self) -> ::std::option::Option<bool> {
self.enabled
}
/// <p>The tags to be assigned to the event subscription.</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) event_categories: ::std::option::Option<::std::vec::Vec<::std::string::String>>,
pub(crate) source_ids: ::std::option::Option<::std::vec::Vec<::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 subscription.</p>
/// <p>Constraints: The name must be fewer than 255 characters.</p>
/// 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 subscription.</p>
/// <p>Constraints: The name must be fewer than 255 characters.</p>
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 subscription.</p>
/// <p>Constraints: The name must be fewer than 255 characters.</p>
pub fn get_subscription_name(&self) -> &::std::option::Option<::std::string::String> {
&self.subscription_name
}
/// <p>The Amazon Resource Name (ARN) of the SNS topic created for event notification. Amazon SNS creates the ARN 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 SNS topic created for event notification. Amazon SNS creates the ARN 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 SNS topic created for event notification. Amazon SNS creates the ARN 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 is generating the events. For example, if you want to be notified of events generated by an instance, you would set this parameter to <code>db-instance</code>. If this value is not specified, all events are returned.</p>
/// <p>Valid values: <code>db-instance</code>, <code>db-cluster</code>, <code>db-parameter-group</code>, <code>db-security-group</code>, <code>db-cluster-snapshot</code></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 is generating the events. For example, if you want to be notified of events generated by an instance, you would set this parameter to <code>db-instance</code>. If this value is not specified, all events are returned.</p>
/// <p>Valid values: <code>db-instance</code>, <code>db-cluster</code>, <code>db-parameter-group</code>, <code>db-security-group</code>, <code>db-cluster-snapshot</code></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 is generating the events. For example, if you want to be notified of events generated by an instance, you would set this parameter to <code>db-instance</code>. If this value is not specified, all events are returned.</p>
/// <p>Valid values: <code>db-instance</code>, <code>db-cluster</code>, <code>db-parameter-group</code>, <code>db-security-group</code>, <code>db-cluster-snapshot</code></p>
pub fn get_source_type(&self) -> &::std::option::Option<::std::string::String> {
&self.source_type
}
/// Appends an item to `event_categories`.
///
/// To override the contents of this collection use [`set_event_categories`](Self::set_event_categories).
///
/// <p>A list of event categories for a <code>SourceType</code> that you want to subscribe to.</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>A list of event categories for a <code>SourceType</code> that you want to subscribe to.</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>A list of event categories for a <code>SourceType</code> that you want to subscribe to.</p>
pub fn get_event_categories(&self) -> &::std::option::Option<::std::vec::Vec<::std::string::String>> {
&self.event_categories
}
/// Appends an item to `source_ids`.
///
/// To override the contents of this collection use [`set_source_ids`](Self::set_source_ids).
///
/// <p>The list of identifiers of the event sources for which events are returned. If not specified, then all sources are included in the response. An identifier must begin with a letter and must contain only ASCII letters, digits, and hyphens; it can't end with a hyphen or contain two consecutive hyphens.</p>
/// <p>Constraints:</p>
/// <ul>
/// <li>
/// <p>If <code>SourceIds</code> are provided, <code>SourceType</code> must also be provided.</p></li>
/// <li>
/// <p>If the source type is an instance, a <code>DBInstanceIdentifier</code> must be provided.</p></li>
/// <li>
/// <p>If the source type is a security group, a <code>DBSecurityGroupName</code> must be provided.</p></li>
/// <li>
/// <p>If the source type is a parameter group, a <code>DBParameterGroupName</code> must be provided.</p></li>
/// <li>
/// <p>If the source type is a snapshot, a <code>DBSnapshotIdentifier</code> must be provided.</p></li>
/// </ul>
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>The list of identifiers of the event sources for which events are returned. If not specified, then all sources are included in the response. An identifier must begin with a letter and must contain only ASCII letters, digits, and hyphens; it can't end with a hyphen or contain two consecutive hyphens.</p>
/// <p>Constraints:</p>
/// <ul>
/// <li>
/// <p>If <code>SourceIds</code> are provided, <code>SourceType</code> must also be provided.</p></li>
/// <li>
/// <p>If the source type is an instance, a <code>DBInstanceIdentifier</code> must be provided.</p></li>
/// <li>
/// <p>If the source type is a security group, a <code>DBSecurityGroupName</code> must be provided.</p></li>
/// <li>
/// <p>If the source type is a parameter group, a <code>DBParameterGroupName</code> must be provided.</p></li>
/// <li>
/// <p>If the source type is a snapshot, a <code>DBSnapshotIdentifier</code> must be provided.</p></li>
/// </ul>
pub fn set_source_ids(mut self, input: ::std::option::Option<::std::vec::Vec<::std::string::String>>) -> Self {
self.source_ids = input;
self
}
/// <p>The list of identifiers of the event sources for which events are returned. If not specified, then all sources are included in the response. An identifier must begin with a letter and must contain only ASCII letters, digits, and hyphens; it can't end with a hyphen or contain two consecutive hyphens.</p>
/// <p>Constraints:</p>
/// <ul>
/// <li>
/// <p>If <code>SourceIds</code> are provided, <code>SourceType</code> must also be provided.</p></li>
/// <li>
/// <p>If the source type is an instance, a <code>DBInstanceIdentifier</code> must be provided.</p></li>
/// <li>
/// <p>If the source type is a security group, a <code>DBSecurityGroupName</code> must be provided.</p></li>
/// <li>
/// <p>If the source type is a parameter group, a <code>DBParameterGroupName</code> must be provided.</p></li>
/// <li>
/// <p>If the source type is a snapshot, a <code>DBSnapshotIdentifier</code> must be provided.</p></li>
/// </ul>
pub fn get_source_ids(&self) -> &::std::option::Option<::std::vec::Vec<::std::string::String>> {
&self.source_ids
}
/// <p>A Boolean value; set to <code>true</code> to activate the subscription, set to <code>false</code> to create the subscription but not active 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, set to <code>false</code> to create the subscription but not active 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, set to <code>false</code> to create the subscription but not active 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>The tags to be assigned to the event subscription.</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>The tags to be assigned to the event subscription.</p>
pub fn set_tags(mut self, input: ::std::option::Option<::std::vec::Vec<crate::types::Tag>>) -> Self {
self.tags = input;
self
}
/// <p>The tags to be assigned to the event subscription.</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,
event_categories: self.event_categories,
source_ids: self.source_ids,
enabled: self.enabled,
tags: self.tags,
})
}
}