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
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
//! Types for the `Events` service.
/// The [`AWS::Events::ApiDestination`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-apidestination.html) resource type.
#[derive(Debug, Default)]
pub struct ApiDestination {
properties: ApiDestinationProperties
}
/// Properties for the `ApiDestination` resource.
#[derive(Debug, Default)]
pub struct ApiDestinationProperties {
/// Property [`ConnectionArn`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-apidestination.html#cfn-events-apidestination-connectionarn).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub connection_arn: ::Value<String>,
/// Property [`Description`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-apidestination.html#cfn-events-apidestination-description).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub description: Option<::Value<String>>,
/// Property [`HttpMethod`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-apidestination.html#cfn-events-apidestination-httpmethod).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub http_method: ::Value<String>,
/// Property [`InvocationEndpoint`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-apidestination.html#cfn-events-apidestination-invocationendpoint).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub invocation_endpoint: ::Value<String>,
/// Property [`InvocationRateLimitPerSecond`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-apidestination.html#cfn-events-apidestination-invocationratelimitpersecond).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub invocation_rate_limit_per_second: Option<::Value<u32>>,
/// Property [`Name`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-apidestination.html#cfn-events-apidestination-name).
///
/// Update type: _Immutable_.
/// AWS CloudFormation replaces the resource when you change this property.
pub name: Option<::Value<String>>,
}
impl ::serde::Serialize for ApiDestinationProperties {
fn serialize<S: ::serde::Serializer>(&self, s: S) -> Result<S::Ok, S::Error> {
let mut map = ::serde::Serializer::serialize_map(s, None)?;
::serde::ser::SerializeMap::serialize_entry(&mut map, "ConnectionArn", &self.connection_arn)?;
if let Some(ref description) = self.description {
::serde::ser::SerializeMap::serialize_entry(&mut map, "Description", description)?;
}
::serde::ser::SerializeMap::serialize_entry(&mut map, "HttpMethod", &self.http_method)?;
::serde::ser::SerializeMap::serialize_entry(&mut map, "InvocationEndpoint", &self.invocation_endpoint)?;
if let Some(ref invocation_rate_limit_per_second) = self.invocation_rate_limit_per_second {
::serde::ser::SerializeMap::serialize_entry(&mut map, "InvocationRateLimitPerSecond", invocation_rate_limit_per_second)?;
}
if let Some(ref name) = self.name {
::serde::ser::SerializeMap::serialize_entry(&mut map, "Name", name)?;
}
::serde::ser::SerializeMap::end(map)
}
}
impl<'de> ::serde::Deserialize<'de> for ApiDestinationProperties {
fn deserialize<D: ::serde::Deserializer<'de>>(d: D) -> Result<ApiDestinationProperties, D::Error> {
struct Visitor;
impl<'de> ::serde::de::Visitor<'de> for Visitor {
type Value = ApiDestinationProperties;
fn expecting(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
write!(f, "a struct of type ApiDestinationProperties")
}
fn visit_map<A: ::serde::de::MapAccess<'de>>(self, mut map: A) -> Result<Self::Value, A::Error> {
let mut connection_arn: Option<::Value<String>> = None;
let mut description: Option<::Value<String>> = None;
let mut http_method: Option<::Value<String>> = None;
let mut invocation_endpoint: Option<::Value<String>> = None;
let mut invocation_rate_limit_per_second: Option<::Value<u32>> = None;
let mut name: Option<::Value<String>> = None;
while let Some(__cfn_key) = ::serde::de::MapAccess::next_key::<String>(&mut map)? {
match __cfn_key.as_ref() {
"ConnectionArn" => {
connection_arn = ::serde::de::MapAccess::next_value(&mut map)?;
}
"Description" => {
description = ::serde::de::MapAccess::next_value(&mut map)?;
}
"HttpMethod" => {
http_method = ::serde::de::MapAccess::next_value(&mut map)?;
}
"InvocationEndpoint" => {
invocation_endpoint = ::serde::de::MapAccess::next_value(&mut map)?;
}
"InvocationRateLimitPerSecond" => {
invocation_rate_limit_per_second = ::serde::de::MapAccess::next_value(&mut map)?;
}
"Name" => {
name = ::serde::de::MapAccess::next_value(&mut map)?;
}
_ => {}
}
}
Ok(ApiDestinationProperties {
connection_arn: connection_arn.ok_or(::serde::de::Error::missing_field("ConnectionArn"))?,
description: description,
http_method: http_method.ok_or(::serde::de::Error::missing_field("HttpMethod"))?,
invocation_endpoint: invocation_endpoint.ok_or(::serde::de::Error::missing_field("InvocationEndpoint"))?,
invocation_rate_limit_per_second: invocation_rate_limit_per_second,
name: name,
})
}
}
d.deserialize_map(Visitor)
}
}
impl ::Resource for ApiDestination {
type Properties = ApiDestinationProperties;
const TYPE: &'static str = "AWS::Events::ApiDestination";
fn properties(&self) -> &ApiDestinationProperties {
&self.properties
}
fn properties_mut(&mut self) -> &mut ApiDestinationProperties {
&mut self.properties
}
}
impl ::private::Sealed for ApiDestination {}
impl From<ApiDestinationProperties> for ApiDestination {
fn from(properties: ApiDestinationProperties) -> ApiDestination {
ApiDestination { properties }
}
}
/// The [`AWS::Events::Archive`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-archive.html) resource type.
#[derive(Debug, Default)]
pub struct Archive {
properties: ArchiveProperties
}
/// Properties for the `Archive` resource.
#[derive(Debug, Default)]
pub struct ArchiveProperties {
/// Property [`ArchiveName`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-archive.html#cfn-events-archive-archivename).
///
/// Update type: _Immutable_.
/// AWS CloudFormation replaces the resource when you change this property.
pub archive_name: Option<::Value<String>>,
/// Property [`Description`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-archive.html#cfn-events-archive-description).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub description: Option<::Value<String>>,
/// Property [`EventPattern`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-archive.html#cfn-events-archive-eventpattern).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub event_pattern: Option<::Value<::json::Value>>,
/// Property [`RetentionDays`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-archive.html#cfn-events-archive-retentiondays).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub retention_days: Option<::Value<u32>>,
/// Property [`SourceArn`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-archive.html#cfn-events-archive-sourcearn).
///
/// Update type: _Immutable_.
/// AWS CloudFormation replaces the resource when you change this property.
pub source_arn: ::Value<String>,
}
impl ::serde::Serialize for ArchiveProperties {
fn serialize<S: ::serde::Serializer>(&self, s: S) -> Result<S::Ok, S::Error> {
let mut map = ::serde::Serializer::serialize_map(s, None)?;
if let Some(ref archive_name) = self.archive_name {
::serde::ser::SerializeMap::serialize_entry(&mut map, "ArchiveName", archive_name)?;
}
if let Some(ref description) = self.description {
::serde::ser::SerializeMap::serialize_entry(&mut map, "Description", description)?;
}
if let Some(ref event_pattern) = self.event_pattern {
::serde::ser::SerializeMap::serialize_entry(&mut map, "EventPattern", event_pattern)?;
}
if let Some(ref retention_days) = self.retention_days {
::serde::ser::SerializeMap::serialize_entry(&mut map, "RetentionDays", retention_days)?;
}
::serde::ser::SerializeMap::serialize_entry(&mut map, "SourceArn", &self.source_arn)?;
::serde::ser::SerializeMap::end(map)
}
}
impl<'de> ::serde::Deserialize<'de> for ArchiveProperties {
fn deserialize<D: ::serde::Deserializer<'de>>(d: D) -> Result<ArchiveProperties, D::Error> {
struct Visitor;
impl<'de> ::serde::de::Visitor<'de> for Visitor {
type Value = ArchiveProperties;
fn expecting(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
write!(f, "a struct of type ArchiveProperties")
}
fn visit_map<A: ::serde::de::MapAccess<'de>>(self, mut map: A) -> Result<Self::Value, A::Error> {
let mut archive_name: Option<::Value<String>> = None;
let mut description: Option<::Value<String>> = None;
let mut event_pattern: Option<::Value<::json::Value>> = None;
let mut retention_days: Option<::Value<u32>> = None;
let mut source_arn: Option<::Value<String>> = None;
while let Some(__cfn_key) = ::serde::de::MapAccess::next_key::<String>(&mut map)? {
match __cfn_key.as_ref() {
"ArchiveName" => {
archive_name = ::serde::de::MapAccess::next_value(&mut map)?;
}
"Description" => {
description = ::serde::de::MapAccess::next_value(&mut map)?;
}
"EventPattern" => {
event_pattern = ::serde::de::MapAccess::next_value(&mut map)?;
}
"RetentionDays" => {
retention_days = ::serde::de::MapAccess::next_value(&mut map)?;
}
"SourceArn" => {
source_arn = ::serde::de::MapAccess::next_value(&mut map)?;
}
_ => {}
}
}
Ok(ArchiveProperties {
archive_name: archive_name,
description: description,
event_pattern: event_pattern,
retention_days: retention_days,
source_arn: source_arn.ok_or(::serde::de::Error::missing_field("SourceArn"))?,
})
}
}
d.deserialize_map(Visitor)
}
}
impl ::Resource for Archive {
type Properties = ArchiveProperties;
const TYPE: &'static str = "AWS::Events::Archive";
fn properties(&self) -> &ArchiveProperties {
&self.properties
}
fn properties_mut(&mut self) -> &mut ArchiveProperties {
&mut self.properties
}
}
impl ::private::Sealed for Archive {}
impl From<ArchiveProperties> for Archive {
fn from(properties: ArchiveProperties) -> Archive {
Archive { properties }
}
}
/// The [`AWS::Events::Connection`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-connection.html) resource type.
#[derive(Debug, Default)]
pub struct Connection {
properties: ConnectionProperties
}
/// Properties for the `Connection` resource.
#[derive(Debug, Default)]
pub struct ConnectionProperties {
/// Property [`AuthParameters`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-connection.html#cfn-events-connection-authparameters).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub auth_parameters: ::Value<::json::Value>,
/// Property [`AuthorizationType`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-connection.html#cfn-events-connection-authorizationtype).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub authorization_type: ::Value<String>,
/// Property [`Description`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-connection.html#cfn-events-connection-description).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub description: Option<::Value<String>>,
/// Property [`Name`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-connection.html#cfn-events-connection-name).
///
/// Update type: _Immutable_.
/// AWS CloudFormation replaces the resource when you change this property.
pub name: Option<::Value<String>>,
}
impl ::serde::Serialize for ConnectionProperties {
fn serialize<S: ::serde::Serializer>(&self, s: S) -> Result<S::Ok, S::Error> {
let mut map = ::serde::Serializer::serialize_map(s, None)?;
::serde::ser::SerializeMap::serialize_entry(&mut map, "AuthParameters", &self.auth_parameters)?;
::serde::ser::SerializeMap::serialize_entry(&mut map, "AuthorizationType", &self.authorization_type)?;
if let Some(ref description) = self.description {
::serde::ser::SerializeMap::serialize_entry(&mut map, "Description", description)?;
}
if let Some(ref name) = self.name {
::serde::ser::SerializeMap::serialize_entry(&mut map, "Name", name)?;
}
::serde::ser::SerializeMap::end(map)
}
}
impl<'de> ::serde::Deserialize<'de> for ConnectionProperties {
fn deserialize<D: ::serde::Deserializer<'de>>(d: D) -> Result<ConnectionProperties, D::Error> {
struct Visitor;
impl<'de> ::serde::de::Visitor<'de> for Visitor {
type Value = ConnectionProperties;
fn expecting(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
write!(f, "a struct of type ConnectionProperties")
}
fn visit_map<A: ::serde::de::MapAccess<'de>>(self, mut map: A) -> Result<Self::Value, A::Error> {
let mut auth_parameters: Option<::Value<::json::Value>> = None;
let mut authorization_type: Option<::Value<String>> = None;
let mut description: Option<::Value<String>> = None;
let mut name: Option<::Value<String>> = None;
while let Some(__cfn_key) = ::serde::de::MapAccess::next_key::<String>(&mut map)? {
match __cfn_key.as_ref() {
"AuthParameters" => {
auth_parameters = ::serde::de::MapAccess::next_value(&mut map)?;
}
"AuthorizationType" => {
authorization_type = ::serde::de::MapAccess::next_value(&mut map)?;
}
"Description" => {
description = ::serde::de::MapAccess::next_value(&mut map)?;
}
"Name" => {
name = ::serde::de::MapAccess::next_value(&mut map)?;
}
_ => {}
}
}
Ok(ConnectionProperties {
auth_parameters: auth_parameters.ok_or(::serde::de::Error::missing_field("AuthParameters"))?,
authorization_type: authorization_type.ok_or(::serde::de::Error::missing_field("AuthorizationType"))?,
description: description,
name: name,
})
}
}
d.deserialize_map(Visitor)
}
}
impl ::Resource for Connection {
type Properties = ConnectionProperties;
const TYPE: &'static str = "AWS::Events::Connection";
fn properties(&self) -> &ConnectionProperties {
&self.properties
}
fn properties_mut(&mut self) -> &mut ConnectionProperties {
&mut self.properties
}
}
impl ::private::Sealed for Connection {}
impl From<ConnectionProperties> for Connection {
fn from(properties: ConnectionProperties) -> Connection {
Connection { properties }
}
}
/// The [`AWS::Events::EventBus`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html) resource type.
#[derive(Debug, Default)]
pub struct EventBus {
properties: EventBusProperties
}
/// Properties for the `EventBus` resource.
#[derive(Debug, Default)]
pub struct EventBusProperties {
/// Property [`EventSourceName`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-eventsourcename).
///
/// Update type: _Immutable_.
/// AWS CloudFormation replaces the resource when you change this property.
pub event_source_name: Option<::Value<String>>,
/// Property [`Name`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbus.html#cfn-events-eventbus-name).
///
/// Update type: _Immutable_.
/// AWS CloudFormation replaces the resource when you change this property.
pub name: ::Value<String>,
}
impl ::serde::Serialize for EventBusProperties {
fn serialize<S: ::serde::Serializer>(&self, s: S) -> Result<S::Ok, S::Error> {
let mut map = ::serde::Serializer::serialize_map(s, None)?;
if let Some(ref event_source_name) = self.event_source_name {
::serde::ser::SerializeMap::serialize_entry(&mut map, "EventSourceName", event_source_name)?;
}
::serde::ser::SerializeMap::serialize_entry(&mut map, "Name", &self.name)?;
::serde::ser::SerializeMap::end(map)
}
}
impl<'de> ::serde::Deserialize<'de> for EventBusProperties {
fn deserialize<D: ::serde::Deserializer<'de>>(d: D) -> Result<EventBusProperties, D::Error> {
struct Visitor;
impl<'de> ::serde::de::Visitor<'de> for Visitor {
type Value = EventBusProperties;
fn expecting(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
write!(f, "a struct of type EventBusProperties")
}
fn visit_map<A: ::serde::de::MapAccess<'de>>(self, mut map: A) -> Result<Self::Value, A::Error> {
let mut event_source_name: Option<::Value<String>> = None;
let mut name: Option<::Value<String>> = None;
while let Some(__cfn_key) = ::serde::de::MapAccess::next_key::<String>(&mut map)? {
match __cfn_key.as_ref() {
"EventSourceName" => {
event_source_name = ::serde::de::MapAccess::next_value(&mut map)?;
}
"Name" => {
name = ::serde::de::MapAccess::next_value(&mut map)?;
}
_ => {}
}
}
Ok(EventBusProperties {
event_source_name: event_source_name,
name: name.ok_or(::serde::de::Error::missing_field("Name"))?,
})
}
}
d.deserialize_map(Visitor)
}
}
impl ::Resource for EventBus {
type Properties = EventBusProperties;
const TYPE: &'static str = "AWS::Events::EventBus";
fn properties(&self) -> &EventBusProperties {
&self.properties
}
fn properties_mut(&mut self) -> &mut EventBusProperties {
&mut self.properties
}
}
impl ::private::Sealed for EventBus {}
impl From<EventBusProperties> for EventBus {
fn from(properties: EventBusProperties) -> EventBus {
EventBus { properties }
}
}
/// The [`AWS::Events::EventBusPolicy`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html) resource type.
#[derive(Debug, Default)]
pub struct EventBusPolicy {
properties: EventBusPolicyProperties
}
/// Properties for the `EventBusPolicy` resource.
#[derive(Debug, Default)]
pub struct EventBusPolicyProperties {
/// Property [`Action`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-action).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub action: Option<::Value<String>>,
/// Property [`Condition`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-condition).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub condition: Option<::Value<self::event_bus_policy::Condition>>,
/// Property [`EventBusName`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-eventbusname).
///
/// Update type: _Immutable_.
/// AWS CloudFormation replaces the resource when you change this property.
pub event_bus_name: Option<::Value<String>>,
/// Property [`Principal`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-principal).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub principal: Option<::Value<String>>,
/// Property [`Statement`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-statement).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub statement: Option<::Value<::json::Value>>,
/// Property [`StatementId`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-eventbuspolicy.html#cfn-events-eventbuspolicy-statementid).
///
/// Update type: _Immutable_.
/// AWS CloudFormation replaces the resource when you change this property.
pub statement_id: ::Value<String>,
}
impl ::serde::Serialize for EventBusPolicyProperties {
fn serialize<S: ::serde::Serializer>(&self, s: S) -> Result<S::Ok, S::Error> {
let mut map = ::serde::Serializer::serialize_map(s, None)?;
if let Some(ref action) = self.action {
::serde::ser::SerializeMap::serialize_entry(&mut map, "Action", action)?;
}
if let Some(ref condition) = self.condition {
::serde::ser::SerializeMap::serialize_entry(&mut map, "Condition", condition)?;
}
if let Some(ref event_bus_name) = self.event_bus_name {
::serde::ser::SerializeMap::serialize_entry(&mut map, "EventBusName", event_bus_name)?;
}
if let Some(ref principal) = self.principal {
::serde::ser::SerializeMap::serialize_entry(&mut map, "Principal", principal)?;
}
if let Some(ref statement) = self.statement {
::serde::ser::SerializeMap::serialize_entry(&mut map, "Statement", statement)?;
}
::serde::ser::SerializeMap::serialize_entry(&mut map, "StatementId", &self.statement_id)?;
::serde::ser::SerializeMap::end(map)
}
}
impl<'de> ::serde::Deserialize<'de> for EventBusPolicyProperties {
fn deserialize<D: ::serde::Deserializer<'de>>(d: D) -> Result<EventBusPolicyProperties, D::Error> {
struct Visitor;
impl<'de> ::serde::de::Visitor<'de> for Visitor {
type Value = EventBusPolicyProperties;
fn expecting(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
write!(f, "a struct of type EventBusPolicyProperties")
}
fn visit_map<A: ::serde::de::MapAccess<'de>>(self, mut map: A) -> Result<Self::Value, A::Error> {
let mut action: Option<::Value<String>> = None;
let mut condition: Option<::Value<self::event_bus_policy::Condition>> = None;
let mut event_bus_name: Option<::Value<String>> = None;
let mut principal: Option<::Value<String>> = None;
let mut statement: Option<::Value<::json::Value>> = None;
let mut statement_id: Option<::Value<String>> = None;
while let Some(__cfn_key) = ::serde::de::MapAccess::next_key::<String>(&mut map)? {
match __cfn_key.as_ref() {
"Action" => {
action = ::serde::de::MapAccess::next_value(&mut map)?;
}
"Condition" => {
condition = ::serde::de::MapAccess::next_value(&mut map)?;
}
"EventBusName" => {
event_bus_name = ::serde::de::MapAccess::next_value(&mut map)?;
}
"Principal" => {
principal = ::serde::de::MapAccess::next_value(&mut map)?;
}
"Statement" => {
statement = ::serde::de::MapAccess::next_value(&mut map)?;
}
"StatementId" => {
statement_id = ::serde::de::MapAccess::next_value(&mut map)?;
}
_ => {}
}
}
Ok(EventBusPolicyProperties {
action: action,
condition: condition,
event_bus_name: event_bus_name,
principal: principal,
statement: statement,
statement_id: statement_id.ok_or(::serde::de::Error::missing_field("StatementId"))?,
})
}
}
d.deserialize_map(Visitor)
}
}
impl ::Resource for EventBusPolicy {
type Properties = EventBusPolicyProperties;
const TYPE: &'static str = "AWS::Events::EventBusPolicy";
fn properties(&self) -> &EventBusPolicyProperties {
&self.properties
}
fn properties_mut(&mut self) -> &mut EventBusPolicyProperties {
&mut self.properties
}
}
impl ::private::Sealed for EventBusPolicy {}
impl From<EventBusPolicyProperties> for EventBusPolicy {
fn from(properties: EventBusPolicyProperties) -> EventBusPolicy {
EventBusPolicy { properties }
}
}
/// The [`AWS::Events::Rule`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html) resource type.
#[derive(Debug, Default)]
pub struct Rule {
properties: RuleProperties
}
/// Properties for the `Rule` resource.
#[derive(Debug, Default)]
pub struct RuleProperties {
/// Property [`Description`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-description).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub description: Option<::Value<String>>,
/// Property [`EventBusName`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-eventbusname).
///
/// Update type: _Immutable_.
/// AWS CloudFormation replaces the resource when you change this property.
pub event_bus_name: Option<::Value<String>>,
/// Property [`EventPattern`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-eventpattern).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub event_pattern: Option<::Value<::json::Value>>,
/// Property [`Name`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-name).
///
/// Update type: _Immutable_.
/// AWS CloudFormation replaces the resource when you change this property.
pub name: Option<::Value<String>>,
/// Property [`RoleArn`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-rolearn).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub role_arn: Option<::Value<String>>,
/// Property [`ScheduleExpression`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-scheduleexpression).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub schedule_expression: Option<::Value<String>>,
/// Property [`State`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-state).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub state: Option<::Value<String>>,
/// Property [`Targets`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-targets).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub targets: Option<::ValueList<self::rule::Target>>,
}
impl ::serde::Serialize for RuleProperties {
fn serialize<S: ::serde::Serializer>(&self, s: S) -> Result<S::Ok, S::Error> {
let mut map = ::serde::Serializer::serialize_map(s, None)?;
if let Some(ref description) = self.description {
::serde::ser::SerializeMap::serialize_entry(&mut map, "Description", description)?;
}
if let Some(ref event_bus_name) = self.event_bus_name {
::serde::ser::SerializeMap::serialize_entry(&mut map, "EventBusName", event_bus_name)?;
}
if let Some(ref event_pattern) = self.event_pattern {
::serde::ser::SerializeMap::serialize_entry(&mut map, "EventPattern", event_pattern)?;
}
if let Some(ref name) = self.name {
::serde::ser::SerializeMap::serialize_entry(&mut map, "Name", name)?;
}
if let Some(ref role_arn) = self.role_arn {
::serde::ser::SerializeMap::serialize_entry(&mut map, "RoleArn", role_arn)?;
}
if let Some(ref schedule_expression) = self.schedule_expression {
::serde::ser::SerializeMap::serialize_entry(&mut map, "ScheduleExpression", schedule_expression)?;
}
if let Some(ref state) = self.state {
::serde::ser::SerializeMap::serialize_entry(&mut map, "State", state)?;
}
if let Some(ref targets) = self.targets {
::serde::ser::SerializeMap::serialize_entry(&mut map, "Targets", targets)?;
}
::serde::ser::SerializeMap::end(map)
}
}
impl<'de> ::serde::Deserialize<'de> for RuleProperties {
fn deserialize<D: ::serde::Deserializer<'de>>(d: D) -> Result<RuleProperties, D::Error> {
struct Visitor;
impl<'de> ::serde::de::Visitor<'de> for Visitor {
type Value = RuleProperties;
fn expecting(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
write!(f, "a struct of type RuleProperties")
}
fn visit_map<A: ::serde::de::MapAccess<'de>>(self, mut map: A) -> Result<Self::Value, A::Error> {
let mut description: Option<::Value<String>> = None;
let mut event_bus_name: Option<::Value<String>> = None;
let mut event_pattern: Option<::Value<::json::Value>> = None;
let mut name: Option<::Value<String>> = None;
let mut role_arn: Option<::Value<String>> = None;
let mut schedule_expression: Option<::Value<String>> = None;
let mut state: Option<::Value<String>> = None;
let mut targets: Option<::ValueList<self::rule::Target>> = None;
while let Some(__cfn_key) = ::serde::de::MapAccess::next_key::<String>(&mut map)? {
match __cfn_key.as_ref() {
"Description" => {
description = ::serde::de::MapAccess::next_value(&mut map)?;
}
"EventBusName" => {
event_bus_name = ::serde::de::MapAccess::next_value(&mut map)?;
}
"EventPattern" => {
event_pattern = ::serde::de::MapAccess::next_value(&mut map)?;
}
"Name" => {
name = ::serde::de::MapAccess::next_value(&mut map)?;
}
"RoleArn" => {
role_arn = ::serde::de::MapAccess::next_value(&mut map)?;
}
"ScheduleExpression" => {
schedule_expression = ::serde::de::MapAccess::next_value(&mut map)?;
}
"State" => {
state = ::serde::de::MapAccess::next_value(&mut map)?;
}
"Targets" => {
targets = ::serde::de::MapAccess::next_value(&mut map)?;
}
_ => {}
}
}
Ok(RuleProperties {
description: description,
event_bus_name: event_bus_name,
event_pattern: event_pattern,
name: name,
role_arn: role_arn,
schedule_expression: schedule_expression,
state: state,
targets: targets,
})
}
}
d.deserialize_map(Visitor)
}
}
impl ::Resource for Rule {
type Properties = RuleProperties;
const TYPE: &'static str = "AWS::Events::Rule";
fn properties(&self) -> &RuleProperties {
&self.properties
}
fn properties_mut(&mut self) -> &mut RuleProperties {
&mut self.properties
}
}
impl ::private::Sealed for Rule {}
impl From<RuleProperties> for Rule {
fn from(properties: RuleProperties) -> Rule {
Rule { properties }
}
}
pub mod event_bus_policy {
//! Property types for the `EventBusPolicy` resource.
/// The [`AWS::Events::EventBusPolicy.Condition`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html) property type.
#[derive(Debug, Default)]
pub struct Condition {
/// Property [`Key`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-key).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub key: Option<::Value<String>>,
/// Property [`Type`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-type).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub r#type: Option<::Value<String>>,
/// Property [`Value`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbuspolicy-condition.html#cfn-events-eventbuspolicy-condition-value).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub value: Option<::Value<String>>,
}
impl ::codec::SerializeValue for Condition {
fn serialize<S: ::serde::Serializer>(&self, s: S) -> Result<S::Ok, S::Error> {
let mut map = ::serde::Serializer::serialize_map(s, None)?;
if let Some(ref key) = self.key {
::serde::ser::SerializeMap::serialize_entry(&mut map, "Key", key)?;
}
if let Some(ref r#type) = self.r#type {
::serde::ser::SerializeMap::serialize_entry(&mut map, "Type", r#type)?;
}
if let Some(ref value) = self.value {
::serde::ser::SerializeMap::serialize_entry(&mut map, "Value", value)?;
}
::serde::ser::SerializeMap::end(map)
}
}
impl ::codec::DeserializeValue for Condition {
fn deserialize<'de, D: ::serde::Deserializer<'de>>(d: D) -> Result<Condition, D::Error> {
struct Visitor;
impl<'de> ::serde::de::Visitor<'de> for Visitor {
type Value = Condition;
fn expecting(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
write!(f, "a struct of type Condition")
}
fn visit_map<A: ::serde::de::MapAccess<'de>>(self, mut map: A) -> Result<Self::Value, A::Error> {
let mut key: Option<::Value<String>> = None;
let mut r#type: Option<::Value<String>> = None;
let mut value: Option<::Value<String>> = None;
while let Some(__cfn_key) = ::serde::de::MapAccess::next_key::<String>(&mut map)? {
match __cfn_key.as_ref() {
"Key" => {
key = ::serde::de::MapAccess::next_value(&mut map)?;
}
"Type" => {
r#type = ::serde::de::MapAccess::next_value(&mut map)?;
}
"Value" => {
value = ::serde::de::MapAccess::next_value(&mut map)?;
}
_ => {}
}
}
Ok(Condition {
key: key,
r#type: r#type,
value: value,
})
}
}
d.deserialize_map(Visitor)
}
}
}
pub mod rule {
//! Property types for the `Rule` resource.
/// The [`AWS::Events::Rule.AwsVpcConfiguration`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-awsvpcconfiguration.html) property type.
#[derive(Debug, Default)]
pub struct AwsVpcConfiguration {
/// Property [`AssignPublicIp`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-awsvpcconfiguration.html#cfn-events-rule-awsvpcconfiguration-assignpublicip).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub assign_public_ip: Option<::Value<String>>,
/// Property [`SecurityGroups`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-awsvpcconfiguration.html#cfn-events-rule-awsvpcconfiguration-securitygroups).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub security_groups: Option<::ValueList<String>>,
/// Property [`Subnets`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-awsvpcconfiguration.html#cfn-events-rule-awsvpcconfiguration-subnets).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub subnets: ::ValueList<String>,
}
impl ::codec::SerializeValue for AwsVpcConfiguration {
fn serialize<S: ::serde::Serializer>(&self, s: S) -> Result<S::Ok, S::Error> {
let mut map = ::serde::Serializer::serialize_map(s, None)?;
if let Some(ref assign_public_ip) = self.assign_public_ip {
::serde::ser::SerializeMap::serialize_entry(&mut map, "AssignPublicIp", assign_public_ip)?;
}
if let Some(ref security_groups) = self.security_groups {
::serde::ser::SerializeMap::serialize_entry(&mut map, "SecurityGroups", security_groups)?;
}
::serde::ser::SerializeMap::serialize_entry(&mut map, "Subnets", &self.subnets)?;
::serde::ser::SerializeMap::end(map)
}
}
impl ::codec::DeserializeValue for AwsVpcConfiguration {
fn deserialize<'de, D: ::serde::Deserializer<'de>>(d: D) -> Result<AwsVpcConfiguration, D::Error> {
struct Visitor;
impl<'de> ::serde::de::Visitor<'de> for Visitor {
type Value = AwsVpcConfiguration;
fn expecting(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
write!(f, "a struct of type AwsVpcConfiguration")
}
fn visit_map<A: ::serde::de::MapAccess<'de>>(self, mut map: A) -> Result<Self::Value, A::Error> {
let mut assign_public_ip: Option<::Value<String>> = None;
let mut security_groups: Option<::ValueList<String>> = None;
let mut subnets: Option<::ValueList<String>> = None;
while let Some(__cfn_key) = ::serde::de::MapAccess::next_key::<String>(&mut map)? {
match __cfn_key.as_ref() {
"AssignPublicIp" => {
assign_public_ip = ::serde::de::MapAccess::next_value(&mut map)?;
}
"SecurityGroups" => {
security_groups = ::serde::de::MapAccess::next_value(&mut map)?;
}
"Subnets" => {
subnets = ::serde::de::MapAccess::next_value(&mut map)?;
}
_ => {}
}
}
Ok(AwsVpcConfiguration {
assign_public_ip: assign_public_ip,
security_groups: security_groups,
subnets: subnets.ok_or(::serde::de::Error::missing_field("Subnets"))?,
})
}
}
d.deserialize_map(Visitor)
}
}
/// The [`AWS::Events::Rule.BatchArrayProperties`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-batcharrayproperties.html) property type.
#[derive(Debug, Default)]
pub struct BatchArrayProperties {
/// Property [`Size`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-batcharrayproperties.html#cfn-events-rule-batcharrayproperties-size).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub size: Option<::Value<u32>>,
}
impl ::codec::SerializeValue for BatchArrayProperties {
fn serialize<S: ::serde::Serializer>(&self, s: S) -> Result<S::Ok, S::Error> {
let mut map = ::serde::Serializer::serialize_map(s, None)?;
if let Some(ref size) = self.size {
::serde::ser::SerializeMap::serialize_entry(&mut map, "Size", size)?;
}
::serde::ser::SerializeMap::end(map)
}
}
impl ::codec::DeserializeValue for BatchArrayProperties {
fn deserialize<'de, D: ::serde::Deserializer<'de>>(d: D) -> Result<BatchArrayProperties, D::Error> {
struct Visitor;
impl<'de> ::serde::de::Visitor<'de> for Visitor {
type Value = BatchArrayProperties;
fn expecting(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
write!(f, "a struct of type BatchArrayProperties")
}
fn visit_map<A: ::serde::de::MapAccess<'de>>(self, mut map: A) -> Result<Self::Value, A::Error> {
let mut size: Option<::Value<u32>> = None;
while let Some(__cfn_key) = ::serde::de::MapAccess::next_key::<String>(&mut map)? {
match __cfn_key.as_ref() {
"Size" => {
size = ::serde::de::MapAccess::next_value(&mut map)?;
}
_ => {}
}
}
Ok(BatchArrayProperties {
size: size,
})
}
}
d.deserialize_map(Visitor)
}
}
/// The [`AWS::Events::Rule.BatchParameters`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-batchparameters.html) property type.
#[derive(Debug, Default)]
pub struct BatchParameters {
/// Property [`ArrayProperties`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-batchparameters.html#cfn-events-rule-batchparameters-arrayproperties).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub array_properties: Option<::Value<BatchArrayProperties>>,
/// Property [`JobDefinition`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-batchparameters.html#cfn-events-rule-batchparameters-jobdefinition).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub job_definition: ::Value<String>,
/// Property [`JobName`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-batchparameters.html#cfn-events-rule-batchparameters-jobname).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub job_name: ::Value<String>,
/// Property [`RetryStrategy`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-batchparameters.html#cfn-events-rule-batchparameters-retrystrategy).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub retry_strategy: Option<::Value<BatchRetryStrategy>>,
}
impl ::codec::SerializeValue for BatchParameters {
fn serialize<S: ::serde::Serializer>(&self, s: S) -> Result<S::Ok, S::Error> {
let mut map = ::serde::Serializer::serialize_map(s, None)?;
if let Some(ref array_properties) = self.array_properties {
::serde::ser::SerializeMap::serialize_entry(&mut map, "ArrayProperties", array_properties)?;
}
::serde::ser::SerializeMap::serialize_entry(&mut map, "JobDefinition", &self.job_definition)?;
::serde::ser::SerializeMap::serialize_entry(&mut map, "JobName", &self.job_name)?;
if let Some(ref retry_strategy) = self.retry_strategy {
::serde::ser::SerializeMap::serialize_entry(&mut map, "RetryStrategy", retry_strategy)?;
}
::serde::ser::SerializeMap::end(map)
}
}
impl ::codec::DeserializeValue for BatchParameters {
fn deserialize<'de, D: ::serde::Deserializer<'de>>(d: D) -> Result<BatchParameters, D::Error> {
struct Visitor;
impl<'de> ::serde::de::Visitor<'de> for Visitor {
type Value = BatchParameters;
fn expecting(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
write!(f, "a struct of type BatchParameters")
}
fn visit_map<A: ::serde::de::MapAccess<'de>>(self, mut map: A) -> Result<Self::Value, A::Error> {
let mut array_properties: Option<::Value<BatchArrayProperties>> = None;
let mut job_definition: Option<::Value<String>> = None;
let mut job_name: Option<::Value<String>> = None;
let mut retry_strategy: Option<::Value<BatchRetryStrategy>> = None;
while let Some(__cfn_key) = ::serde::de::MapAccess::next_key::<String>(&mut map)? {
match __cfn_key.as_ref() {
"ArrayProperties" => {
array_properties = ::serde::de::MapAccess::next_value(&mut map)?;
}
"JobDefinition" => {
job_definition = ::serde::de::MapAccess::next_value(&mut map)?;
}
"JobName" => {
job_name = ::serde::de::MapAccess::next_value(&mut map)?;
}
"RetryStrategy" => {
retry_strategy = ::serde::de::MapAccess::next_value(&mut map)?;
}
_ => {}
}
}
Ok(BatchParameters {
array_properties: array_properties,
job_definition: job_definition.ok_or(::serde::de::Error::missing_field("JobDefinition"))?,
job_name: job_name.ok_or(::serde::de::Error::missing_field("JobName"))?,
retry_strategy: retry_strategy,
})
}
}
d.deserialize_map(Visitor)
}
}
/// The [`AWS::Events::Rule.BatchRetryStrategy`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-batchretrystrategy.html) property type.
#[derive(Debug, Default)]
pub struct BatchRetryStrategy {
/// Property [`Attempts`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-batchretrystrategy.html#cfn-events-rule-batchretrystrategy-attempts).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub attempts: Option<::Value<u32>>,
}
impl ::codec::SerializeValue for BatchRetryStrategy {
fn serialize<S: ::serde::Serializer>(&self, s: S) -> Result<S::Ok, S::Error> {
let mut map = ::serde::Serializer::serialize_map(s, None)?;
if let Some(ref attempts) = self.attempts {
::serde::ser::SerializeMap::serialize_entry(&mut map, "Attempts", attempts)?;
}
::serde::ser::SerializeMap::end(map)
}
}
impl ::codec::DeserializeValue for BatchRetryStrategy {
fn deserialize<'de, D: ::serde::Deserializer<'de>>(d: D) -> Result<BatchRetryStrategy, D::Error> {
struct Visitor;
impl<'de> ::serde::de::Visitor<'de> for Visitor {
type Value = BatchRetryStrategy;
fn expecting(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
write!(f, "a struct of type BatchRetryStrategy")
}
fn visit_map<A: ::serde::de::MapAccess<'de>>(self, mut map: A) -> Result<Self::Value, A::Error> {
let mut attempts: Option<::Value<u32>> = None;
while let Some(__cfn_key) = ::serde::de::MapAccess::next_key::<String>(&mut map)? {
match __cfn_key.as_ref() {
"Attempts" => {
attempts = ::serde::de::MapAccess::next_value(&mut map)?;
}
_ => {}
}
}
Ok(BatchRetryStrategy {
attempts: attempts,
})
}
}
d.deserialize_map(Visitor)
}
}
/// The [`AWS::Events::Rule.DeadLetterConfig`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-deadletterconfig.html) property type.
#[derive(Debug, Default)]
pub struct DeadLetterConfig {
/// Property [`Arn`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-deadletterconfig.html#cfn-events-rule-deadletterconfig-arn).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub arn: Option<::Value<String>>,
}
impl ::codec::SerializeValue for DeadLetterConfig {
fn serialize<S: ::serde::Serializer>(&self, s: S) -> Result<S::Ok, S::Error> {
let mut map = ::serde::Serializer::serialize_map(s, None)?;
if let Some(ref arn) = self.arn {
::serde::ser::SerializeMap::serialize_entry(&mut map, "Arn", arn)?;
}
::serde::ser::SerializeMap::end(map)
}
}
impl ::codec::DeserializeValue for DeadLetterConfig {
fn deserialize<'de, D: ::serde::Deserializer<'de>>(d: D) -> Result<DeadLetterConfig, D::Error> {
struct Visitor;
impl<'de> ::serde::de::Visitor<'de> for Visitor {
type Value = DeadLetterConfig;
fn expecting(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
write!(f, "a struct of type DeadLetterConfig")
}
fn visit_map<A: ::serde::de::MapAccess<'de>>(self, mut map: A) -> Result<Self::Value, A::Error> {
let mut arn: Option<::Value<String>> = None;
while let Some(__cfn_key) = ::serde::de::MapAccess::next_key::<String>(&mut map)? {
match __cfn_key.as_ref() {
"Arn" => {
arn = ::serde::de::MapAccess::next_value(&mut map)?;
}
_ => {}
}
}
Ok(DeadLetterConfig {
arn: arn,
})
}
}
d.deserialize_map(Visitor)
}
}
/// The [`AWS::Events::Rule.EcsParameters`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-ecsparameters.html) property type.
#[derive(Debug, Default)]
pub struct EcsParameters {
/// Property [`Group`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-ecsparameters.html#cfn-events-rule-ecsparameters-group).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub group: Option<::Value<String>>,
/// Property [`LaunchType`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-ecsparameters.html#cfn-events-rule-ecsparameters-launchtype).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub launch_type: Option<::Value<String>>,
/// Property [`NetworkConfiguration`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-ecsparameters.html#cfn-events-rule-ecsparameters-networkconfiguration).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub network_configuration: Option<::Value<NetworkConfiguration>>,
/// Property [`PlatformVersion`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-ecsparameters.html#cfn-events-rule-ecsparameters-platformversion).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub platform_version: Option<::Value<String>>,
/// Property [`TaskCount`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-ecsparameters.html#cfn-events-rule-ecsparameters-taskcount).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub task_count: Option<::Value<u32>>,
/// Property [`TaskDefinitionArn`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-ecsparameters.html#cfn-events-rule-ecsparameters-taskdefinitionarn).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub task_definition_arn: ::Value<String>,
}
impl ::codec::SerializeValue for EcsParameters {
fn serialize<S: ::serde::Serializer>(&self, s: S) -> Result<S::Ok, S::Error> {
let mut map = ::serde::Serializer::serialize_map(s, None)?;
if let Some(ref group) = self.group {
::serde::ser::SerializeMap::serialize_entry(&mut map, "Group", group)?;
}
if let Some(ref launch_type) = self.launch_type {
::serde::ser::SerializeMap::serialize_entry(&mut map, "LaunchType", launch_type)?;
}
if let Some(ref network_configuration) = self.network_configuration {
::serde::ser::SerializeMap::serialize_entry(&mut map, "NetworkConfiguration", network_configuration)?;
}
if let Some(ref platform_version) = self.platform_version {
::serde::ser::SerializeMap::serialize_entry(&mut map, "PlatformVersion", platform_version)?;
}
if let Some(ref task_count) = self.task_count {
::serde::ser::SerializeMap::serialize_entry(&mut map, "TaskCount", task_count)?;
}
::serde::ser::SerializeMap::serialize_entry(&mut map, "TaskDefinitionArn", &self.task_definition_arn)?;
::serde::ser::SerializeMap::end(map)
}
}
impl ::codec::DeserializeValue for EcsParameters {
fn deserialize<'de, D: ::serde::Deserializer<'de>>(d: D) -> Result<EcsParameters, D::Error> {
struct Visitor;
impl<'de> ::serde::de::Visitor<'de> for Visitor {
type Value = EcsParameters;
fn expecting(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
write!(f, "a struct of type EcsParameters")
}
fn visit_map<A: ::serde::de::MapAccess<'de>>(self, mut map: A) -> Result<Self::Value, A::Error> {
let mut group: Option<::Value<String>> = None;
let mut launch_type: Option<::Value<String>> = None;
let mut network_configuration: Option<::Value<NetworkConfiguration>> = None;
let mut platform_version: Option<::Value<String>> = None;
let mut task_count: Option<::Value<u32>> = None;
let mut task_definition_arn: Option<::Value<String>> = None;
while let Some(__cfn_key) = ::serde::de::MapAccess::next_key::<String>(&mut map)? {
match __cfn_key.as_ref() {
"Group" => {
group = ::serde::de::MapAccess::next_value(&mut map)?;
}
"LaunchType" => {
launch_type = ::serde::de::MapAccess::next_value(&mut map)?;
}
"NetworkConfiguration" => {
network_configuration = ::serde::de::MapAccess::next_value(&mut map)?;
}
"PlatformVersion" => {
platform_version = ::serde::de::MapAccess::next_value(&mut map)?;
}
"TaskCount" => {
task_count = ::serde::de::MapAccess::next_value(&mut map)?;
}
"TaskDefinitionArn" => {
task_definition_arn = ::serde::de::MapAccess::next_value(&mut map)?;
}
_ => {}
}
}
Ok(EcsParameters {
group: group,
launch_type: launch_type,
network_configuration: network_configuration,
platform_version: platform_version,
task_count: task_count,
task_definition_arn: task_definition_arn.ok_or(::serde::de::Error::missing_field("TaskDefinitionArn"))?,
})
}
}
d.deserialize_map(Visitor)
}
}
/// The [`AWS::Events::Rule.HttpParameters`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-httpparameters.html) property type.
#[derive(Debug, Default)]
pub struct HttpParameters {
/// Property [`HeaderParameters`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-httpparameters.html#cfn-events-rule-httpparameters-headerparameters).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub header_parameters: Option<::ValueMap<String>>,
/// Property [`PathParameterValues`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-httpparameters.html#cfn-events-rule-httpparameters-pathparametervalues).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub path_parameter_values: Option<::ValueList<String>>,
/// Property [`QueryStringParameters`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-httpparameters.html#cfn-events-rule-httpparameters-querystringparameters).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub query_string_parameters: Option<::ValueMap<String>>,
}
impl ::codec::SerializeValue for HttpParameters {
fn serialize<S: ::serde::Serializer>(&self, s: S) -> Result<S::Ok, S::Error> {
let mut map = ::serde::Serializer::serialize_map(s, None)?;
if let Some(ref header_parameters) = self.header_parameters {
::serde::ser::SerializeMap::serialize_entry(&mut map, "HeaderParameters", header_parameters)?;
}
if let Some(ref path_parameter_values) = self.path_parameter_values {
::serde::ser::SerializeMap::serialize_entry(&mut map, "PathParameterValues", path_parameter_values)?;
}
if let Some(ref query_string_parameters) = self.query_string_parameters {
::serde::ser::SerializeMap::serialize_entry(&mut map, "QueryStringParameters", query_string_parameters)?;
}
::serde::ser::SerializeMap::end(map)
}
}
impl ::codec::DeserializeValue for HttpParameters {
fn deserialize<'de, D: ::serde::Deserializer<'de>>(d: D) -> Result<HttpParameters, D::Error> {
struct Visitor;
impl<'de> ::serde::de::Visitor<'de> for Visitor {
type Value = HttpParameters;
fn expecting(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
write!(f, "a struct of type HttpParameters")
}
fn visit_map<A: ::serde::de::MapAccess<'de>>(self, mut map: A) -> Result<Self::Value, A::Error> {
let mut header_parameters: Option<::ValueMap<String>> = None;
let mut path_parameter_values: Option<::ValueList<String>> = None;
let mut query_string_parameters: Option<::ValueMap<String>> = None;
while let Some(__cfn_key) = ::serde::de::MapAccess::next_key::<String>(&mut map)? {
match __cfn_key.as_ref() {
"HeaderParameters" => {
header_parameters = ::serde::de::MapAccess::next_value(&mut map)?;
}
"PathParameterValues" => {
path_parameter_values = ::serde::de::MapAccess::next_value(&mut map)?;
}
"QueryStringParameters" => {
query_string_parameters = ::serde::de::MapAccess::next_value(&mut map)?;
}
_ => {}
}
}
Ok(HttpParameters {
header_parameters: header_parameters,
path_parameter_values: path_parameter_values,
query_string_parameters: query_string_parameters,
})
}
}
d.deserialize_map(Visitor)
}
}
/// The [`AWS::Events::Rule.InputTransformer`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-inputtransformer.html) property type.
#[derive(Debug, Default)]
pub struct InputTransformer {
/// Property [`InputPathsMap`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-inputtransformer.html#cfn-events-rule-inputtransformer-inputpathsmap).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub input_paths_map: Option<::ValueMap<String>>,
/// Property [`InputTemplate`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-inputtransformer.html#cfn-events-rule-inputtransformer-inputtemplate).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub input_template: ::Value<String>,
}
impl ::codec::SerializeValue for InputTransformer {
fn serialize<S: ::serde::Serializer>(&self, s: S) -> Result<S::Ok, S::Error> {
let mut map = ::serde::Serializer::serialize_map(s, None)?;
if let Some(ref input_paths_map) = self.input_paths_map {
::serde::ser::SerializeMap::serialize_entry(&mut map, "InputPathsMap", input_paths_map)?;
}
::serde::ser::SerializeMap::serialize_entry(&mut map, "InputTemplate", &self.input_template)?;
::serde::ser::SerializeMap::end(map)
}
}
impl ::codec::DeserializeValue for InputTransformer {
fn deserialize<'de, D: ::serde::Deserializer<'de>>(d: D) -> Result<InputTransformer, D::Error> {
struct Visitor;
impl<'de> ::serde::de::Visitor<'de> for Visitor {
type Value = InputTransformer;
fn expecting(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
write!(f, "a struct of type InputTransformer")
}
fn visit_map<A: ::serde::de::MapAccess<'de>>(self, mut map: A) -> Result<Self::Value, A::Error> {
let mut input_paths_map: Option<::ValueMap<String>> = None;
let mut input_template: Option<::Value<String>> = None;
while let Some(__cfn_key) = ::serde::de::MapAccess::next_key::<String>(&mut map)? {
match __cfn_key.as_ref() {
"InputPathsMap" => {
input_paths_map = ::serde::de::MapAccess::next_value(&mut map)?;
}
"InputTemplate" => {
input_template = ::serde::de::MapAccess::next_value(&mut map)?;
}
_ => {}
}
}
Ok(InputTransformer {
input_paths_map: input_paths_map,
input_template: input_template.ok_or(::serde::de::Error::missing_field("InputTemplate"))?,
})
}
}
d.deserialize_map(Visitor)
}
}
/// The [`AWS::Events::Rule.KinesisParameters`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-kinesisparameters.html) property type.
#[derive(Debug, Default)]
pub struct KinesisParameters {
/// Property [`PartitionKeyPath`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-kinesisparameters.html#cfn-events-rule-kinesisparameters-partitionkeypath).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub partition_key_path: ::Value<String>,
}
impl ::codec::SerializeValue for KinesisParameters {
fn serialize<S: ::serde::Serializer>(&self, s: S) -> Result<S::Ok, S::Error> {
let mut map = ::serde::Serializer::serialize_map(s, None)?;
::serde::ser::SerializeMap::serialize_entry(&mut map, "PartitionKeyPath", &self.partition_key_path)?;
::serde::ser::SerializeMap::end(map)
}
}
impl ::codec::DeserializeValue for KinesisParameters {
fn deserialize<'de, D: ::serde::Deserializer<'de>>(d: D) -> Result<KinesisParameters, D::Error> {
struct Visitor;
impl<'de> ::serde::de::Visitor<'de> for Visitor {
type Value = KinesisParameters;
fn expecting(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
write!(f, "a struct of type KinesisParameters")
}
fn visit_map<A: ::serde::de::MapAccess<'de>>(self, mut map: A) -> Result<Self::Value, A::Error> {
let mut partition_key_path: Option<::Value<String>> = None;
while let Some(__cfn_key) = ::serde::de::MapAccess::next_key::<String>(&mut map)? {
match __cfn_key.as_ref() {
"PartitionKeyPath" => {
partition_key_path = ::serde::de::MapAccess::next_value(&mut map)?;
}
_ => {}
}
}
Ok(KinesisParameters {
partition_key_path: partition_key_path.ok_or(::serde::de::Error::missing_field("PartitionKeyPath"))?,
})
}
}
d.deserialize_map(Visitor)
}
}
/// The [`AWS::Events::Rule.NetworkConfiguration`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-networkconfiguration.html) property type.
#[derive(Debug, Default)]
pub struct NetworkConfiguration {
/// Property [`AwsVpcConfiguration`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-networkconfiguration.html#cfn-events-rule-networkconfiguration-awsvpcconfiguration).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub aws_vpc_configuration: Option<::Value<AwsVpcConfiguration>>,
}
impl ::codec::SerializeValue for NetworkConfiguration {
fn serialize<S: ::serde::Serializer>(&self, s: S) -> Result<S::Ok, S::Error> {
let mut map = ::serde::Serializer::serialize_map(s, None)?;
if let Some(ref aws_vpc_configuration) = self.aws_vpc_configuration {
::serde::ser::SerializeMap::serialize_entry(&mut map, "AwsVpcConfiguration", aws_vpc_configuration)?;
}
::serde::ser::SerializeMap::end(map)
}
}
impl ::codec::DeserializeValue for NetworkConfiguration {
fn deserialize<'de, D: ::serde::Deserializer<'de>>(d: D) -> Result<NetworkConfiguration, D::Error> {
struct Visitor;
impl<'de> ::serde::de::Visitor<'de> for Visitor {
type Value = NetworkConfiguration;
fn expecting(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
write!(f, "a struct of type NetworkConfiguration")
}
fn visit_map<A: ::serde::de::MapAccess<'de>>(self, mut map: A) -> Result<Self::Value, A::Error> {
let mut aws_vpc_configuration: Option<::Value<AwsVpcConfiguration>> = None;
while let Some(__cfn_key) = ::serde::de::MapAccess::next_key::<String>(&mut map)? {
match __cfn_key.as_ref() {
"AwsVpcConfiguration" => {
aws_vpc_configuration = ::serde::de::MapAccess::next_value(&mut map)?;
}
_ => {}
}
}
Ok(NetworkConfiguration {
aws_vpc_configuration: aws_vpc_configuration,
})
}
}
d.deserialize_map(Visitor)
}
}
/// The [`AWS::Events::Rule.RedshiftDataParameters`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-redshiftdataparameters.html) property type.
#[derive(Debug, Default)]
pub struct RedshiftDataParameters {
/// Property [`Database`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-redshiftdataparameters.html#cfn-events-rule-redshiftdataparameters-database).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub database: ::Value<String>,
/// Property [`DbUser`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-redshiftdataparameters.html#cfn-events-rule-redshiftdataparameters-dbuser).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub db_user: Option<::Value<String>>,
/// Property [`SecretManagerArn`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-redshiftdataparameters.html#cfn-events-rule-redshiftdataparameters-secretmanagerarn).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub secret_manager_arn: Option<::Value<String>>,
/// Property [`Sql`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-redshiftdataparameters.html#cfn-events-rule-redshiftdataparameters-sql).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub sql: ::Value<String>,
/// Property [`StatementName`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-redshiftdataparameters.html#cfn-events-rule-redshiftdataparameters-statementname).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub statement_name: Option<::Value<String>>,
/// Property [`WithEvent`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-redshiftdataparameters.html#cfn-events-rule-redshiftdataparameters-withevent).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub with_event: Option<::Value<bool>>,
}
impl ::codec::SerializeValue for RedshiftDataParameters {
fn serialize<S: ::serde::Serializer>(&self, s: S) -> Result<S::Ok, S::Error> {
let mut map = ::serde::Serializer::serialize_map(s, None)?;
::serde::ser::SerializeMap::serialize_entry(&mut map, "Database", &self.database)?;
if let Some(ref db_user) = self.db_user {
::serde::ser::SerializeMap::serialize_entry(&mut map, "DbUser", db_user)?;
}
if let Some(ref secret_manager_arn) = self.secret_manager_arn {
::serde::ser::SerializeMap::serialize_entry(&mut map, "SecretManagerArn", secret_manager_arn)?;
}
::serde::ser::SerializeMap::serialize_entry(&mut map, "Sql", &self.sql)?;
if let Some(ref statement_name) = self.statement_name {
::serde::ser::SerializeMap::serialize_entry(&mut map, "StatementName", statement_name)?;
}
if let Some(ref with_event) = self.with_event {
::serde::ser::SerializeMap::serialize_entry(&mut map, "WithEvent", with_event)?;
}
::serde::ser::SerializeMap::end(map)
}
}
impl ::codec::DeserializeValue for RedshiftDataParameters {
fn deserialize<'de, D: ::serde::Deserializer<'de>>(d: D) -> Result<RedshiftDataParameters, D::Error> {
struct Visitor;
impl<'de> ::serde::de::Visitor<'de> for Visitor {
type Value = RedshiftDataParameters;
fn expecting(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
write!(f, "a struct of type RedshiftDataParameters")
}
fn visit_map<A: ::serde::de::MapAccess<'de>>(self, mut map: A) -> Result<Self::Value, A::Error> {
let mut database: Option<::Value<String>> = None;
let mut db_user: Option<::Value<String>> = None;
let mut secret_manager_arn: Option<::Value<String>> = None;
let mut sql: Option<::Value<String>> = None;
let mut statement_name: Option<::Value<String>> = None;
let mut with_event: Option<::Value<bool>> = None;
while let Some(__cfn_key) = ::serde::de::MapAccess::next_key::<String>(&mut map)? {
match __cfn_key.as_ref() {
"Database" => {
database = ::serde::de::MapAccess::next_value(&mut map)?;
}
"DbUser" => {
db_user = ::serde::de::MapAccess::next_value(&mut map)?;
}
"SecretManagerArn" => {
secret_manager_arn = ::serde::de::MapAccess::next_value(&mut map)?;
}
"Sql" => {
sql = ::serde::de::MapAccess::next_value(&mut map)?;
}
"StatementName" => {
statement_name = ::serde::de::MapAccess::next_value(&mut map)?;
}
"WithEvent" => {
with_event = ::serde::de::MapAccess::next_value(&mut map)?;
}
_ => {}
}
}
Ok(RedshiftDataParameters {
database: database.ok_or(::serde::de::Error::missing_field("Database"))?,
db_user: db_user,
secret_manager_arn: secret_manager_arn,
sql: sql.ok_or(::serde::de::Error::missing_field("Sql"))?,
statement_name: statement_name,
with_event: with_event,
})
}
}
d.deserialize_map(Visitor)
}
}
/// The [`AWS::Events::Rule.RetryPolicy`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-retrypolicy.html) property type.
#[derive(Debug, Default)]
pub struct RetryPolicy {
/// Property [`MaximumEventAgeInSeconds`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-retrypolicy.html#cfn-events-rule-retrypolicy-maximumeventageinseconds).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub maximum_event_age_in_seconds: Option<::Value<u32>>,
/// Property [`MaximumRetryAttempts`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-retrypolicy.html#cfn-events-rule-retrypolicy-maximumretryattempts).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub maximum_retry_attempts: Option<::Value<u32>>,
}
impl ::codec::SerializeValue for RetryPolicy {
fn serialize<S: ::serde::Serializer>(&self, s: S) -> Result<S::Ok, S::Error> {
let mut map = ::serde::Serializer::serialize_map(s, None)?;
if let Some(ref maximum_event_age_in_seconds) = self.maximum_event_age_in_seconds {
::serde::ser::SerializeMap::serialize_entry(&mut map, "MaximumEventAgeInSeconds", maximum_event_age_in_seconds)?;
}
if let Some(ref maximum_retry_attempts) = self.maximum_retry_attempts {
::serde::ser::SerializeMap::serialize_entry(&mut map, "MaximumRetryAttempts", maximum_retry_attempts)?;
}
::serde::ser::SerializeMap::end(map)
}
}
impl ::codec::DeserializeValue for RetryPolicy {
fn deserialize<'de, D: ::serde::Deserializer<'de>>(d: D) -> Result<RetryPolicy, D::Error> {
struct Visitor;
impl<'de> ::serde::de::Visitor<'de> for Visitor {
type Value = RetryPolicy;
fn expecting(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
write!(f, "a struct of type RetryPolicy")
}
fn visit_map<A: ::serde::de::MapAccess<'de>>(self, mut map: A) -> Result<Self::Value, A::Error> {
let mut maximum_event_age_in_seconds: Option<::Value<u32>> = None;
let mut maximum_retry_attempts: Option<::Value<u32>> = None;
while let Some(__cfn_key) = ::serde::de::MapAccess::next_key::<String>(&mut map)? {
match __cfn_key.as_ref() {
"MaximumEventAgeInSeconds" => {
maximum_event_age_in_seconds = ::serde::de::MapAccess::next_value(&mut map)?;
}
"MaximumRetryAttempts" => {
maximum_retry_attempts = ::serde::de::MapAccess::next_value(&mut map)?;
}
_ => {}
}
}
Ok(RetryPolicy {
maximum_event_age_in_seconds: maximum_event_age_in_seconds,
maximum_retry_attempts: maximum_retry_attempts,
})
}
}
d.deserialize_map(Visitor)
}
}
/// The [`AWS::Events::Rule.RunCommandParameters`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-runcommandparameters.html) property type.
#[derive(Debug, Default)]
pub struct RunCommandParameters {
/// Property [`RunCommandTargets`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-runcommandparameters.html#cfn-events-rule-runcommandparameters-runcommandtargets).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub run_command_targets: ::ValueList<RunCommandTarget>,
}
impl ::codec::SerializeValue for RunCommandParameters {
fn serialize<S: ::serde::Serializer>(&self, s: S) -> Result<S::Ok, S::Error> {
let mut map = ::serde::Serializer::serialize_map(s, None)?;
::serde::ser::SerializeMap::serialize_entry(&mut map, "RunCommandTargets", &self.run_command_targets)?;
::serde::ser::SerializeMap::end(map)
}
}
impl ::codec::DeserializeValue for RunCommandParameters {
fn deserialize<'de, D: ::serde::Deserializer<'de>>(d: D) -> Result<RunCommandParameters, D::Error> {
struct Visitor;
impl<'de> ::serde::de::Visitor<'de> for Visitor {
type Value = RunCommandParameters;
fn expecting(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
write!(f, "a struct of type RunCommandParameters")
}
fn visit_map<A: ::serde::de::MapAccess<'de>>(self, mut map: A) -> Result<Self::Value, A::Error> {
let mut run_command_targets: Option<::ValueList<RunCommandTarget>> = None;
while let Some(__cfn_key) = ::serde::de::MapAccess::next_key::<String>(&mut map)? {
match __cfn_key.as_ref() {
"RunCommandTargets" => {
run_command_targets = ::serde::de::MapAccess::next_value(&mut map)?;
}
_ => {}
}
}
Ok(RunCommandParameters {
run_command_targets: run_command_targets.ok_or(::serde::de::Error::missing_field("RunCommandTargets"))?,
})
}
}
d.deserialize_map(Visitor)
}
}
/// The [`AWS::Events::Rule.RunCommandTarget`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-runcommandtarget.html) property type.
#[derive(Debug, Default)]
pub struct RunCommandTarget {
/// Property [`Key`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-runcommandtarget.html#cfn-events-rule-runcommandtarget-key).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub key: ::Value<String>,
/// Property [`Values`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-runcommandtarget.html#cfn-events-rule-runcommandtarget-values).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub values: ::ValueList<String>,
}
impl ::codec::SerializeValue for RunCommandTarget {
fn serialize<S: ::serde::Serializer>(&self, s: S) -> Result<S::Ok, S::Error> {
let mut map = ::serde::Serializer::serialize_map(s, None)?;
::serde::ser::SerializeMap::serialize_entry(&mut map, "Key", &self.key)?;
::serde::ser::SerializeMap::serialize_entry(&mut map, "Values", &self.values)?;
::serde::ser::SerializeMap::end(map)
}
}
impl ::codec::DeserializeValue for RunCommandTarget {
fn deserialize<'de, D: ::serde::Deserializer<'de>>(d: D) -> Result<RunCommandTarget, D::Error> {
struct Visitor;
impl<'de> ::serde::de::Visitor<'de> for Visitor {
type Value = RunCommandTarget;
fn expecting(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
write!(f, "a struct of type RunCommandTarget")
}
fn visit_map<A: ::serde::de::MapAccess<'de>>(self, mut map: A) -> Result<Self::Value, A::Error> {
let mut key: Option<::Value<String>> = None;
let mut values: Option<::ValueList<String>> = None;
while let Some(__cfn_key) = ::serde::de::MapAccess::next_key::<String>(&mut map)? {
match __cfn_key.as_ref() {
"Key" => {
key = ::serde::de::MapAccess::next_value(&mut map)?;
}
"Values" => {
values = ::serde::de::MapAccess::next_value(&mut map)?;
}
_ => {}
}
}
Ok(RunCommandTarget {
key: key.ok_or(::serde::de::Error::missing_field("Key"))?,
values: values.ok_or(::serde::de::Error::missing_field("Values"))?,
})
}
}
d.deserialize_map(Visitor)
}
}
/// The [`AWS::Events::Rule.SqsParameters`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-sqsparameters.html) property type.
#[derive(Debug, Default)]
pub struct SqsParameters {
/// Property [`MessageGroupId`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-sqsparameters.html#cfn-events-rule-sqsparameters-messagegroupid).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub message_group_id: ::Value<String>,
}
impl ::codec::SerializeValue for SqsParameters {
fn serialize<S: ::serde::Serializer>(&self, s: S) -> Result<S::Ok, S::Error> {
let mut map = ::serde::Serializer::serialize_map(s, None)?;
::serde::ser::SerializeMap::serialize_entry(&mut map, "MessageGroupId", &self.message_group_id)?;
::serde::ser::SerializeMap::end(map)
}
}
impl ::codec::DeserializeValue for SqsParameters {
fn deserialize<'de, D: ::serde::Deserializer<'de>>(d: D) -> Result<SqsParameters, D::Error> {
struct Visitor;
impl<'de> ::serde::de::Visitor<'de> for Visitor {
type Value = SqsParameters;
fn expecting(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
write!(f, "a struct of type SqsParameters")
}
fn visit_map<A: ::serde::de::MapAccess<'de>>(self, mut map: A) -> Result<Self::Value, A::Error> {
let mut message_group_id: Option<::Value<String>> = None;
while let Some(__cfn_key) = ::serde::de::MapAccess::next_key::<String>(&mut map)? {
match __cfn_key.as_ref() {
"MessageGroupId" => {
message_group_id = ::serde::de::MapAccess::next_value(&mut map)?;
}
_ => {}
}
}
Ok(SqsParameters {
message_group_id: message_group_id.ok_or(::serde::de::Error::missing_field("MessageGroupId"))?,
})
}
}
d.deserialize_map(Visitor)
}
}
/// The [`AWS::Events::Rule.Target`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-target.html) property type.
#[derive(Debug, Default)]
pub struct Target {
/// Property [`Arn`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-target.html#cfn-events-rule-target-arn).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub arn: ::Value<String>,
/// Property [`BatchParameters`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-target.html#cfn-events-rule-target-batchparameters).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub batch_parameters: Option<::Value<BatchParameters>>,
/// Property [`DeadLetterConfig`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-target.html#cfn-events-rule-target-deadletterconfig).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub dead_letter_config: Option<::Value<DeadLetterConfig>>,
/// Property [`EcsParameters`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-target.html#cfn-events-rule-target-ecsparameters).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub ecs_parameters: Option<::Value<EcsParameters>>,
/// Property [`HttpParameters`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-target.html#cfn-events-rule-target-httpparameters).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub http_parameters: Option<::Value<HttpParameters>>,
/// Property [`Id`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-target.html#cfn-events-rule-target-id).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub id: ::Value<String>,
/// Property [`Input`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-target.html#cfn-events-rule-target-input).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub input: Option<::Value<String>>,
/// Property [`InputPath`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-target.html#cfn-events-rule-target-inputpath).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub input_path: Option<::Value<String>>,
/// Property [`InputTransformer`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-target.html#cfn-events-rule-target-inputtransformer).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub input_transformer: Option<::Value<InputTransformer>>,
/// Property [`KinesisParameters`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-target.html#cfn-events-rule-target-kinesisparameters).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub kinesis_parameters: Option<::Value<KinesisParameters>>,
/// Property [`RedshiftDataParameters`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-target.html#cfn-events-rule-target-redshiftdataparameters).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub redshift_data_parameters: Option<::Value<RedshiftDataParameters>>,
/// Property [`RetryPolicy`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-target.html#cfn-events-rule-target-retrypolicy).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub retry_policy: Option<::Value<RetryPolicy>>,
/// Property [`RoleArn`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-target.html#cfn-events-rule-target-rolearn).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub role_arn: Option<::Value<String>>,
/// Property [`RunCommandParameters`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-target.html#cfn-events-rule-target-runcommandparameters).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub run_command_parameters: Option<::Value<RunCommandParameters>>,
/// Property [`SqsParameters`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-target.html#cfn-events-rule-target-sqsparameters).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub sqs_parameters: Option<::Value<SqsParameters>>,
}
impl ::codec::SerializeValue for Target {
fn serialize<S: ::serde::Serializer>(&self, s: S) -> Result<S::Ok, S::Error> {
let mut map = ::serde::Serializer::serialize_map(s, None)?;
::serde::ser::SerializeMap::serialize_entry(&mut map, "Arn", &self.arn)?;
if let Some(ref batch_parameters) = self.batch_parameters {
::serde::ser::SerializeMap::serialize_entry(&mut map, "BatchParameters", batch_parameters)?;
}
if let Some(ref dead_letter_config) = self.dead_letter_config {
::serde::ser::SerializeMap::serialize_entry(&mut map, "DeadLetterConfig", dead_letter_config)?;
}
if let Some(ref ecs_parameters) = self.ecs_parameters {
::serde::ser::SerializeMap::serialize_entry(&mut map, "EcsParameters", ecs_parameters)?;
}
if let Some(ref http_parameters) = self.http_parameters {
::serde::ser::SerializeMap::serialize_entry(&mut map, "HttpParameters", http_parameters)?;
}
::serde::ser::SerializeMap::serialize_entry(&mut map, "Id", &self.id)?;
if let Some(ref input) = self.input {
::serde::ser::SerializeMap::serialize_entry(&mut map, "Input", input)?;
}
if let Some(ref input_path) = self.input_path {
::serde::ser::SerializeMap::serialize_entry(&mut map, "InputPath", input_path)?;
}
if let Some(ref input_transformer) = self.input_transformer {
::serde::ser::SerializeMap::serialize_entry(&mut map, "InputTransformer", input_transformer)?;
}
if let Some(ref kinesis_parameters) = self.kinesis_parameters {
::serde::ser::SerializeMap::serialize_entry(&mut map, "KinesisParameters", kinesis_parameters)?;
}
if let Some(ref redshift_data_parameters) = self.redshift_data_parameters {
::serde::ser::SerializeMap::serialize_entry(&mut map, "RedshiftDataParameters", redshift_data_parameters)?;
}
if let Some(ref retry_policy) = self.retry_policy {
::serde::ser::SerializeMap::serialize_entry(&mut map, "RetryPolicy", retry_policy)?;
}
if let Some(ref role_arn) = self.role_arn {
::serde::ser::SerializeMap::serialize_entry(&mut map, "RoleArn", role_arn)?;
}
if let Some(ref run_command_parameters) = self.run_command_parameters {
::serde::ser::SerializeMap::serialize_entry(&mut map, "RunCommandParameters", run_command_parameters)?;
}
if let Some(ref sqs_parameters) = self.sqs_parameters {
::serde::ser::SerializeMap::serialize_entry(&mut map, "SqsParameters", sqs_parameters)?;
}
::serde::ser::SerializeMap::end(map)
}
}
impl ::codec::DeserializeValue for Target {
fn deserialize<'de, D: ::serde::Deserializer<'de>>(d: D) -> Result<Target, D::Error> {
struct Visitor;
impl<'de> ::serde::de::Visitor<'de> for Visitor {
type Value = Target;
fn expecting(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
write!(f, "a struct of type Target")
}
fn visit_map<A: ::serde::de::MapAccess<'de>>(self, mut map: A) -> Result<Self::Value, A::Error> {
let mut arn: Option<::Value<String>> = None;
let mut batch_parameters: Option<::Value<BatchParameters>> = None;
let mut dead_letter_config: Option<::Value<DeadLetterConfig>> = None;
let mut ecs_parameters: Option<::Value<EcsParameters>> = None;
let mut http_parameters: Option<::Value<HttpParameters>> = None;
let mut id: Option<::Value<String>> = None;
let mut input: Option<::Value<String>> = None;
let mut input_path: Option<::Value<String>> = None;
let mut input_transformer: Option<::Value<InputTransformer>> = None;
let mut kinesis_parameters: Option<::Value<KinesisParameters>> = None;
let mut redshift_data_parameters: Option<::Value<RedshiftDataParameters>> = None;
let mut retry_policy: Option<::Value<RetryPolicy>> = None;
let mut role_arn: Option<::Value<String>> = None;
let mut run_command_parameters: Option<::Value<RunCommandParameters>> = None;
let mut sqs_parameters: Option<::Value<SqsParameters>> = None;
while let Some(__cfn_key) = ::serde::de::MapAccess::next_key::<String>(&mut map)? {
match __cfn_key.as_ref() {
"Arn" => {
arn = ::serde::de::MapAccess::next_value(&mut map)?;
}
"BatchParameters" => {
batch_parameters = ::serde::de::MapAccess::next_value(&mut map)?;
}
"DeadLetterConfig" => {
dead_letter_config = ::serde::de::MapAccess::next_value(&mut map)?;
}
"EcsParameters" => {
ecs_parameters = ::serde::de::MapAccess::next_value(&mut map)?;
}
"HttpParameters" => {
http_parameters = ::serde::de::MapAccess::next_value(&mut map)?;
}
"Id" => {
id = ::serde::de::MapAccess::next_value(&mut map)?;
}
"Input" => {
input = ::serde::de::MapAccess::next_value(&mut map)?;
}
"InputPath" => {
input_path = ::serde::de::MapAccess::next_value(&mut map)?;
}
"InputTransformer" => {
input_transformer = ::serde::de::MapAccess::next_value(&mut map)?;
}
"KinesisParameters" => {
kinesis_parameters = ::serde::de::MapAccess::next_value(&mut map)?;
}
"RedshiftDataParameters" => {
redshift_data_parameters = ::serde::de::MapAccess::next_value(&mut map)?;
}
"RetryPolicy" => {
retry_policy = ::serde::de::MapAccess::next_value(&mut map)?;
}
"RoleArn" => {
role_arn = ::serde::de::MapAccess::next_value(&mut map)?;
}
"RunCommandParameters" => {
run_command_parameters = ::serde::de::MapAccess::next_value(&mut map)?;
}
"SqsParameters" => {
sqs_parameters = ::serde::de::MapAccess::next_value(&mut map)?;
}
_ => {}
}
}
Ok(Target {
arn: arn.ok_or(::serde::de::Error::missing_field("Arn"))?,
batch_parameters: batch_parameters,
dead_letter_config: dead_letter_config,
ecs_parameters: ecs_parameters,
http_parameters: http_parameters,
id: id.ok_or(::serde::de::Error::missing_field("Id"))?,
input: input,
input_path: input_path,
input_transformer: input_transformer,
kinesis_parameters: kinesis_parameters,
redshift_data_parameters: redshift_data_parameters,
retry_policy: retry_policy,
role_arn: role_arn,
run_command_parameters: run_command_parameters,
sqs_parameters: sqs_parameters,
})
}
}
d.deserialize_map(Visitor)
}
}
}