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
//! Types for the `AppStream` service.
/// The [`AWS::AppStream::DirectoryConfig`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html) resource type.
#[derive(Debug, Default)]
pub struct DirectoryConfig {
properties: DirectoryConfigProperties
}
/// Properties for the `DirectoryConfig` resource.
#[derive(Debug, Default)]
pub struct DirectoryConfigProperties {
/// Property [`DirectoryName`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html#cfn-appstream-directoryconfig-directoryname).
///
/// Update type: _Immutable_.
/// AWS CloudFormation replaces the resource when you change this property.
pub directory_name: ::Value<String>,
/// Property [`OrganizationalUnitDistinguishedNames`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html#cfn-appstream-directoryconfig-organizationalunitdistinguishednames).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub organizational_unit_distinguished_names: ::ValueList<String>,
/// Property [`ServiceAccountCredentials`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html#cfn-appstream-directoryconfig-serviceaccountcredentials).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub service_account_credentials: ::Value<self::directory_config::ServiceAccountCredentials>,
}
impl ::serde::Serialize for DirectoryConfigProperties {
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, "DirectoryName", &self.directory_name)?;
::serde::ser::SerializeMap::serialize_entry(&mut map, "OrganizationalUnitDistinguishedNames", &self.organizational_unit_distinguished_names)?;
::serde::ser::SerializeMap::serialize_entry(&mut map, "ServiceAccountCredentials", &self.service_account_credentials)?;
::serde::ser::SerializeMap::end(map)
}
}
impl<'de> ::serde::Deserialize<'de> for DirectoryConfigProperties {
fn deserialize<D: ::serde::Deserializer<'de>>(d: D) -> Result<DirectoryConfigProperties, D::Error> {
struct Visitor;
impl<'de> ::serde::de::Visitor<'de> for Visitor {
type Value = DirectoryConfigProperties;
fn expecting(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
write!(f, "a struct of type DirectoryConfigProperties")
}
fn visit_map<A: ::serde::de::MapAccess<'de>>(self, mut map: A) -> Result<Self::Value, A::Error> {
let mut directory_name: Option<::Value<String>> = None;
let mut organizational_unit_distinguished_names: Option<::ValueList<String>> = None;
let mut service_account_credentials: Option<::Value<self::directory_config::ServiceAccountCredentials>> = None;
while let Some(__cfn_key) = ::serde::de::MapAccess::next_key::<String>(&mut map)? {
match __cfn_key.as_ref() {
"DirectoryName" => {
directory_name = ::serde::de::MapAccess::next_value(&mut map)?;
}
"OrganizationalUnitDistinguishedNames" => {
organizational_unit_distinguished_names = ::serde::de::MapAccess::next_value(&mut map)?;
}
"ServiceAccountCredentials" => {
service_account_credentials = ::serde::de::MapAccess::next_value(&mut map)?;
}
_ => {}
}
}
Ok(DirectoryConfigProperties {
directory_name: directory_name.ok_or(::serde::de::Error::missing_field("DirectoryName"))?,
organizational_unit_distinguished_names: organizational_unit_distinguished_names.ok_or(::serde::de::Error::missing_field("OrganizationalUnitDistinguishedNames"))?,
service_account_credentials: service_account_credentials.ok_or(::serde::de::Error::missing_field("ServiceAccountCredentials"))?,
})
}
}
d.deserialize_map(Visitor)
}
}
impl ::Resource for DirectoryConfig {
type Properties = DirectoryConfigProperties;
const TYPE: &'static str = "AWS::AppStream::DirectoryConfig";
fn properties(&self) -> &DirectoryConfigProperties {
&self.properties
}
fn properties_mut(&mut self) -> &mut DirectoryConfigProperties {
&mut self.properties
}
}
impl ::private::Sealed for DirectoryConfig {}
impl From<DirectoryConfigProperties> for DirectoryConfig {
fn from(properties: DirectoryConfigProperties) -> DirectoryConfig {
DirectoryConfig { properties }
}
}
/// The [`AWS::AppStream::Fleet`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html) resource type.
#[derive(Debug, Default)]
pub struct Fleet {
properties: FleetProperties
}
/// Properties for the `Fleet` resource.
#[derive(Debug, Default)]
pub struct FleetProperties {
/// Property [`ComputeCapacity`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-computecapacity).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub compute_capacity: ::Value<self::fleet::ComputeCapacity>,
/// Property [`Description`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-description).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub description: Option<::Value<String>>,
/// Property [`DisconnectTimeoutInSeconds`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-disconnecttimeoutinseconds).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub disconnect_timeout_in_seconds: Option<::Value<u32>>,
/// Property [`DisplayName`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-displayname).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub display_name: Option<::Value<String>>,
/// Property [`DomainJoinInfo`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-domainjoininfo).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub domain_join_info: Option<::Value<self::fleet::DomainJoinInfo>>,
/// Property [`EnableDefaultInternetAccess`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-enabledefaultinternetaccess).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub enable_default_internet_access: Option<::Value<bool>>,
/// Property [`FleetType`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-fleettype).
///
/// Update type: _Immutable_.
/// AWS CloudFormation replaces the resource when you change this property.
pub fleet_type: Option<::Value<String>>,
/// Property [`IamRoleArn`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-iamrolearn).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub iam_role_arn: Option<::Value<String>>,
/// Property [`IdleDisconnectTimeoutInSeconds`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-idledisconnecttimeoutinseconds).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub idle_disconnect_timeout_in_seconds: Option<::Value<u32>>,
/// Property [`ImageArn`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-imagearn).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub image_arn: Option<::Value<String>>,
/// Property [`ImageName`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-imagename).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub image_name: Option<::Value<String>>,
/// Property [`InstanceType`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-instancetype).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub instance_type: ::Value<String>,
/// Property [`MaxUserDurationInSeconds`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-maxuserdurationinseconds).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub max_user_duration_in_seconds: Option<::Value<u32>>,
/// Property [`Name`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-name).
///
/// Update type: _Immutable_.
/// AWS CloudFormation replaces the resource when you change this property.
pub name: ::Value<String>,
/// Property [`StreamView`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-streamview).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub stream_view: Option<::Value<String>>,
/// Property [`Tags`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-tags).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub tags: Option<::ValueList<::Tag>>,
/// Property [`VpcConfig`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-fleet.html#cfn-appstream-fleet-vpcconfig).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub vpc_config: Option<::Value<self::fleet::VpcConfig>>,
}
impl ::serde::Serialize for FleetProperties {
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, "ComputeCapacity", &self.compute_capacity)?;
if let Some(ref description) = self.description {
::serde::ser::SerializeMap::serialize_entry(&mut map, "Description", description)?;
}
if let Some(ref disconnect_timeout_in_seconds) = self.disconnect_timeout_in_seconds {
::serde::ser::SerializeMap::serialize_entry(&mut map, "DisconnectTimeoutInSeconds", disconnect_timeout_in_seconds)?;
}
if let Some(ref display_name) = self.display_name {
::serde::ser::SerializeMap::serialize_entry(&mut map, "DisplayName", display_name)?;
}
if let Some(ref domain_join_info) = self.domain_join_info {
::serde::ser::SerializeMap::serialize_entry(&mut map, "DomainJoinInfo", domain_join_info)?;
}
if let Some(ref enable_default_internet_access) = self.enable_default_internet_access {
::serde::ser::SerializeMap::serialize_entry(&mut map, "EnableDefaultInternetAccess", enable_default_internet_access)?;
}
if let Some(ref fleet_type) = self.fleet_type {
::serde::ser::SerializeMap::serialize_entry(&mut map, "FleetType", fleet_type)?;
}
if let Some(ref iam_role_arn) = self.iam_role_arn {
::serde::ser::SerializeMap::serialize_entry(&mut map, "IamRoleArn", iam_role_arn)?;
}
if let Some(ref idle_disconnect_timeout_in_seconds) = self.idle_disconnect_timeout_in_seconds {
::serde::ser::SerializeMap::serialize_entry(&mut map, "IdleDisconnectTimeoutInSeconds", idle_disconnect_timeout_in_seconds)?;
}
if let Some(ref image_arn) = self.image_arn {
::serde::ser::SerializeMap::serialize_entry(&mut map, "ImageArn", image_arn)?;
}
if let Some(ref image_name) = self.image_name {
::serde::ser::SerializeMap::serialize_entry(&mut map, "ImageName", image_name)?;
}
::serde::ser::SerializeMap::serialize_entry(&mut map, "InstanceType", &self.instance_type)?;
if let Some(ref max_user_duration_in_seconds) = self.max_user_duration_in_seconds {
::serde::ser::SerializeMap::serialize_entry(&mut map, "MaxUserDurationInSeconds", max_user_duration_in_seconds)?;
}
::serde::ser::SerializeMap::serialize_entry(&mut map, "Name", &self.name)?;
if let Some(ref stream_view) = self.stream_view {
::serde::ser::SerializeMap::serialize_entry(&mut map, "StreamView", stream_view)?;
}
if let Some(ref tags) = self.tags {
::serde::ser::SerializeMap::serialize_entry(&mut map, "Tags", tags)?;
}
if let Some(ref vpc_config) = self.vpc_config {
::serde::ser::SerializeMap::serialize_entry(&mut map, "VpcConfig", vpc_config)?;
}
::serde::ser::SerializeMap::end(map)
}
}
impl<'de> ::serde::Deserialize<'de> for FleetProperties {
fn deserialize<D: ::serde::Deserializer<'de>>(d: D) -> Result<FleetProperties, D::Error> {
struct Visitor;
impl<'de> ::serde::de::Visitor<'de> for Visitor {
type Value = FleetProperties;
fn expecting(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
write!(f, "a struct of type FleetProperties")
}
fn visit_map<A: ::serde::de::MapAccess<'de>>(self, mut map: A) -> Result<Self::Value, A::Error> {
let mut compute_capacity: Option<::Value<self::fleet::ComputeCapacity>> = None;
let mut description: Option<::Value<String>> = None;
let mut disconnect_timeout_in_seconds: Option<::Value<u32>> = None;
let mut display_name: Option<::Value<String>> = None;
let mut domain_join_info: Option<::Value<self::fleet::DomainJoinInfo>> = None;
let mut enable_default_internet_access: Option<::Value<bool>> = None;
let mut fleet_type: Option<::Value<String>> = None;
let mut iam_role_arn: Option<::Value<String>> = None;
let mut idle_disconnect_timeout_in_seconds: Option<::Value<u32>> = None;
let mut image_arn: Option<::Value<String>> = None;
let mut image_name: Option<::Value<String>> = None;
let mut instance_type: Option<::Value<String>> = None;
let mut max_user_duration_in_seconds: Option<::Value<u32>> = None;
let mut name: Option<::Value<String>> = None;
let mut stream_view: Option<::Value<String>> = None;
let mut tags: Option<::ValueList<::Tag>> = None;
let mut vpc_config: Option<::Value<self::fleet::VpcConfig>> = None;
while let Some(__cfn_key) = ::serde::de::MapAccess::next_key::<String>(&mut map)? {
match __cfn_key.as_ref() {
"ComputeCapacity" => {
compute_capacity = ::serde::de::MapAccess::next_value(&mut map)?;
}
"Description" => {
description = ::serde::de::MapAccess::next_value(&mut map)?;
}
"DisconnectTimeoutInSeconds" => {
disconnect_timeout_in_seconds = ::serde::de::MapAccess::next_value(&mut map)?;
}
"DisplayName" => {
display_name = ::serde::de::MapAccess::next_value(&mut map)?;
}
"DomainJoinInfo" => {
domain_join_info = ::serde::de::MapAccess::next_value(&mut map)?;
}
"EnableDefaultInternetAccess" => {
enable_default_internet_access = ::serde::de::MapAccess::next_value(&mut map)?;
}
"FleetType" => {
fleet_type = ::serde::de::MapAccess::next_value(&mut map)?;
}
"IamRoleArn" => {
iam_role_arn = ::serde::de::MapAccess::next_value(&mut map)?;
}
"IdleDisconnectTimeoutInSeconds" => {
idle_disconnect_timeout_in_seconds = ::serde::de::MapAccess::next_value(&mut map)?;
}
"ImageArn" => {
image_arn = ::serde::de::MapAccess::next_value(&mut map)?;
}
"ImageName" => {
image_name = ::serde::de::MapAccess::next_value(&mut map)?;
}
"InstanceType" => {
instance_type = ::serde::de::MapAccess::next_value(&mut map)?;
}
"MaxUserDurationInSeconds" => {
max_user_duration_in_seconds = ::serde::de::MapAccess::next_value(&mut map)?;
}
"Name" => {
name = ::serde::de::MapAccess::next_value(&mut map)?;
}
"StreamView" => {
stream_view = ::serde::de::MapAccess::next_value(&mut map)?;
}
"Tags" => {
tags = ::serde::de::MapAccess::next_value(&mut map)?;
}
"VpcConfig" => {
vpc_config = ::serde::de::MapAccess::next_value(&mut map)?;
}
_ => {}
}
}
Ok(FleetProperties {
compute_capacity: compute_capacity.ok_or(::serde::de::Error::missing_field("ComputeCapacity"))?,
description: description,
disconnect_timeout_in_seconds: disconnect_timeout_in_seconds,
display_name: display_name,
domain_join_info: domain_join_info,
enable_default_internet_access: enable_default_internet_access,
fleet_type: fleet_type,
iam_role_arn: iam_role_arn,
idle_disconnect_timeout_in_seconds: idle_disconnect_timeout_in_seconds,
image_arn: image_arn,
image_name: image_name,
instance_type: instance_type.ok_or(::serde::de::Error::missing_field("InstanceType"))?,
max_user_duration_in_seconds: max_user_duration_in_seconds,
name: name.ok_or(::serde::de::Error::missing_field("Name"))?,
stream_view: stream_view,
tags: tags,
vpc_config: vpc_config,
})
}
}
d.deserialize_map(Visitor)
}
}
impl ::Resource for Fleet {
type Properties = FleetProperties;
const TYPE: &'static str = "AWS::AppStream::Fleet";
fn properties(&self) -> &FleetProperties {
&self.properties
}
fn properties_mut(&mut self) -> &mut FleetProperties {
&mut self.properties
}
}
impl ::private::Sealed for Fleet {}
impl From<FleetProperties> for Fleet {
fn from(properties: FleetProperties) -> Fleet {
Fleet { properties }
}
}
/// The [`AWS::AppStream::ImageBuilder`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html) resource type.
#[derive(Debug, Default)]
pub struct ImageBuilder {
properties: ImageBuilderProperties
}
/// Properties for the `ImageBuilder` resource.
#[derive(Debug, Default)]
pub struct ImageBuilderProperties {
/// Property [`AccessEndpoints`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-accessendpoints).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub access_endpoints: Option<::ValueList<self::image_builder::AccessEndpoint>>,
/// Property [`AppstreamAgentVersion`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-appstreamagentversion).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub appstream_agent_version: Option<::Value<String>>,
/// Property [`Description`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-description).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub description: Option<::Value<String>>,
/// Property [`DisplayName`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-displayname).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub display_name: Option<::Value<String>>,
/// Property [`DomainJoinInfo`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-domainjoininfo).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub domain_join_info: Option<::Value<self::image_builder::DomainJoinInfo>>,
/// Property [`EnableDefaultInternetAccess`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-enabledefaultinternetaccess).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub enable_default_internet_access: Option<::Value<bool>>,
/// Property [`IamRoleArn`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-iamrolearn).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub iam_role_arn: Option<::Value<String>>,
/// Property [`ImageArn`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-imagearn).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub image_arn: Option<::Value<String>>,
/// Property [`ImageName`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-imagename).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub image_name: Option<::Value<String>>,
/// Property [`InstanceType`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-instancetype).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub instance_type: ::Value<String>,
/// Property [`Name`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-name).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub name: ::Value<String>,
/// Property [`Tags`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-tags).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub tags: Option<::ValueList<::Tag>>,
/// Property [`VpcConfig`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-vpcconfig).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub vpc_config: Option<::Value<self::image_builder::VpcConfig>>,
}
impl ::serde::Serialize for ImageBuilderProperties {
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 access_endpoints) = self.access_endpoints {
::serde::ser::SerializeMap::serialize_entry(&mut map, "AccessEndpoints", access_endpoints)?;
}
if let Some(ref appstream_agent_version) = self.appstream_agent_version {
::serde::ser::SerializeMap::serialize_entry(&mut map, "AppstreamAgentVersion", appstream_agent_version)?;
}
if let Some(ref description) = self.description {
::serde::ser::SerializeMap::serialize_entry(&mut map, "Description", description)?;
}
if let Some(ref display_name) = self.display_name {
::serde::ser::SerializeMap::serialize_entry(&mut map, "DisplayName", display_name)?;
}
if let Some(ref domain_join_info) = self.domain_join_info {
::serde::ser::SerializeMap::serialize_entry(&mut map, "DomainJoinInfo", domain_join_info)?;
}
if let Some(ref enable_default_internet_access) = self.enable_default_internet_access {
::serde::ser::SerializeMap::serialize_entry(&mut map, "EnableDefaultInternetAccess", enable_default_internet_access)?;
}
if let Some(ref iam_role_arn) = self.iam_role_arn {
::serde::ser::SerializeMap::serialize_entry(&mut map, "IamRoleArn", iam_role_arn)?;
}
if let Some(ref image_arn) = self.image_arn {
::serde::ser::SerializeMap::serialize_entry(&mut map, "ImageArn", image_arn)?;
}
if let Some(ref image_name) = self.image_name {
::serde::ser::SerializeMap::serialize_entry(&mut map, "ImageName", image_name)?;
}
::serde::ser::SerializeMap::serialize_entry(&mut map, "InstanceType", &self.instance_type)?;
::serde::ser::SerializeMap::serialize_entry(&mut map, "Name", &self.name)?;
if let Some(ref tags) = self.tags {
::serde::ser::SerializeMap::serialize_entry(&mut map, "Tags", tags)?;
}
if let Some(ref vpc_config) = self.vpc_config {
::serde::ser::SerializeMap::serialize_entry(&mut map, "VpcConfig", vpc_config)?;
}
::serde::ser::SerializeMap::end(map)
}
}
impl<'de> ::serde::Deserialize<'de> for ImageBuilderProperties {
fn deserialize<D: ::serde::Deserializer<'de>>(d: D) -> Result<ImageBuilderProperties, D::Error> {
struct Visitor;
impl<'de> ::serde::de::Visitor<'de> for Visitor {
type Value = ImageBuilderProperties;
fn expecting(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
write!(f, "a struct of type ImageBuilderProperties")
}
fn visit_map<A: ::serde::de::MapAccess<'de>>(self, mut map: A) -> Result<Self::Value, A::Error> {
let mut access_endpoints: Option<::ValueList<self::image_builder::AccessEndpoint>> = None;
let mut appstream_agent_version: Option<::Value<String>> = None;
let mut description: Option<::Value<String>> = None;
let mut display_name: Option<::Value<String>> = None;
let mut domain_join_info: Option<::Value<self::image_builder::DomainJoinInfo>> = None;
let mut enable_default_internet_access: Option<::Value<bool>> = None;
let mut iam_role_arn: Option<::Value<String>> = None;
let mut image_arn: Option<::Value<String>> = None;
let mut image_name: Option<::Value<String>> = None;
let mut instance_type: Option<::Value<String>> = None;
let mut name: Option<::Value<String>> = None;
let mut tags: Option<::ValueList<::Tag>> = None;
let mut vpc_config: Option<::Value<self::image_builder::VpcConfig>> = None;
while let Some(__cfn_key) = ::serde::de::MapAccess::next_key::<String>(&mut map)? {
match __cfn_key.as_ref() {
"AccessEndpoints" => {
access_endpoints = ::serde::de::MapAccess::next_value(&mut map)?;
}
"AppstreamAgentVersion" => {
appstream_agent_version = ::serde::de::MapAccess::next_value(&mut map)?;
}
"Description" => {
description = ::serde::de::MapAccess::next_value(&mut map)?;
}
"DisplayName" => {
display_name = ::serde::de::MapAccess::next_value(&mut map)?;
}
"DomainJoinInfo" => {
domain_join_info = ::serde::de::MapAccess::next_value(&mut map)?;
}
"EnableDefaultInternetAccess" => {
enable_default_internet_access = ::serde::de::MapAccess::next_value(&mut map)?;
}
"IamRoleArn" => {
iam_role_arn = ::serde::de::MapAccess::next_value(&mut map)?;
}
"ImageArn" => {
image_arn = ::serde::de::MapAccess::next_value(&mut map)?;
}
"ImageName" => {
image_name = ::serde::de::MapAccess::next_value(&mut map)?;
}
"InstanceType" => {
instance_type = ::serde::de::MapAccess::next_value(&mut map)?;
}
"Name" => {
name = ::serde::de::MapAccess::next_value(&mut map)?;
}
"Tags" => {
tags = ::serde::de::MapAccess::next_value(&mut map)?;
}
"VpcConfig" => {
vpc_config = ::serde::de::MapAccess::next_value(&mut map)?;
}
_ => {}
}
}
Ok(ImageBuilderProperties {
access_endpoints: access_endpoints,
appstream_agent_version: appstream_agent_version,
description: description,
display_name: display_name,
domain_join_info: domain_join_info,
enable_default_internet_access: enable_default_internet_access,
iam_role_arn: iam_role_arn,
image_arn: image_arn,
image_name: image_name,
instance_type: instance_type.ok_or(::serde::de::Error::missing_field("InstanceType"))?,
name: name.ok_or(::serde::de::Error::missing_field("Name"))?,
tags: tags,
vpc_config: vpc_config,
})
}
}
d.deserialize_map(Visitor)
}
}
impl ::Resource for ImageBuilder {
type Properties = ImageBuilderProperties;
const TYPE: &'static str = "AWS::AppStream::ImageBuilder";
fn properties(&self) -> &ImageBuilderProperties {
&self.properties
}
fn properties_mut(&mut self) -> &mut ImageBuilderProperties {
&mut self.properties
}
}
impl ::private::Sealed for ImageBuilder {}
impl From<ImageBuilderProperties> for ImageBuilder {
fn from(properties: ImageBuilderProperties) -> ImageBuilder {
ImageBuilder { properties }
}
}
/// The [`AWS::AppStream::Stack`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html) resource type.
#[derive(Debug, Default)]
pub struct Stack {
properties: StackProperties
}
/// Properties for the `Stack` resource.
#[derive(Debug, Default)]
pub struct StackProperties {
/// Property [`AccessEndpoints`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-accessendpoints).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub access_endpoints: Option<::ValueList<self::stack::AccessEndpoint>>,
/// Property [`ApplicationSettings`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-applicationsettings).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub application_settings: Option<::Value<self::stack::ApplicationSettings>>,
/// Property [`AttributesToDelete`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-attributestodelete).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub attributes_to_delete: Option<::ValueList<String>>,
/// Property [`DeleteStorageConnectors`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-deletestorageconnectors).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub delete_storage_connectors: Option<::Value<bool>>,
/// Property [`Description`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-description).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub description: Option<::Value<String>>,
/// Property [`DisplayName`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-displayname).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub display_name: Option<::Value<String>>,
/// Property [`EmbedHostDomains`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-embedhostdomains).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub embed_host_domains: Option<::ValueList<String>>,
/// Property [`FeedbackURL`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-feedbackurl).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub feedback_url: Option<::Value<String>>,
/// Property [`Name`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-name).
///
/// Update type: _Immutable_.
/// AWS CloudFormation replaces the resource when you change this property.
pub name: Option<::Value<String>>,
/// Property [`RedirectURL`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-redirecturl).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub redirect_url: Option<::Value<String>>,
/// Property [`StorageConnectors`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-storageconnectors).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub storage_connectors: Option<::ValueList<self::stack::StorageConnector>>,
/// Property [`Tags`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-tags).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub tags: Option<::ValueList<::Tag>>,
/// Property [`UserSettings`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-usersettings).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub user_settings: Option<::ValueList<self::stack::UserSetting>>,
}
impl ::serde::Serialize for StackProperties {
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 access_endpoints) = self.access_endpoints {
::serde::ser::SerializeMap::serialize_entry(&mut map, "AccessEndpoints", access_endpoints)?;
}
if let Some(ref application_settings) = self.application_settings {
::serde::ser::SerializeMap::serialize_entry(&mut map, "ApplicationSettings", application_settings)?;
}
if let Some(ref attributes_to_delete) = self.attributes_to_delete {
::serde::ser::SerializeMap::serialize_entry(&mut map, "AttributesToDelete", attributes_to_delete)?;
}
if let Some(ref delete_storage_connectors) = self.delete_storage_connectors {
::serde::ser::SerializeMap::serialize_entry(&mut map, "DeleteStorageConnectors", delete_storage_connectors)?;
}
if let Some(ref description) = self.description {
::serde::ser::SerializeMap::serialize_entry(&mut map, "Description", description)?;
}
if let Some(ref display_name) = self.display_name {
::serde::ser::SerializeMap::serialize_entry(&mut map, "DisplayName", display_name)?;
}
if let Some(ref embed_host_domains) = self.embed_host_domains {
::serde::ser::SerializeMap::serialize_entry(&mut map, "EmbedHostDomains", embed_host_domains)?;
}
if let Some(ref feedback_url) = self.feedback_url {
::serde::ser::SerializeMap::serialize_entry(&mut map, "FeedbackURL", feedback_url)?;
}
if let Some(ref name) = self.name {
::serde::ser::SerializeMap::serialize_entry(&mut map, "Name", name)?;
}
if let Some(ref redirect_url) = self.redirect_url {
::serde::ser::SerializeMap::serialize_entry(&mut map, "RedirectURL", redirect_url)?;
}
if let Some(ref storage_connectors) = self.storage_connectors {
::serde::ser::SerializeMap::serialize_entry(&mut map, "StorageConnectors", storage_connectors)?;
}
if let Some(ref tags) = self.tags {
::serde::ser::SerializeMap::serialize_entry(&mut map, "Tags", tags)?;
}
if let Some(ref user_settings) = self.user_settings {
::serde::ser::SerializeMap::serialize_entry(&mut map, "UserSettings", user_settings)?;
}
::serde::ser::SerializeMap::end(map)
}
}
impl<'de> ::serde::Deserialize<'de> for StackProperties {
fn deserialize<D: ::serde::Deserializer<'de>>(d: D) -> Result<StackProperties, D::Error> {
struct Visitor;
impl<'de> ::serde::de::Visitor<'de> for Visitor {
type Value = StackProperties;
fn expecting(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
write!(f, "a struct of type StackProperties")
}
fn visit_map<A: ::serde::de::MapAccess<'de>>(self, mut map: A) -> Result<Self::Value, A::Error> {
let mut access_endpoints: Option<::ValueList<self::stack::AccessEndpoint>> = None;
let mut application_settings: Option<::Value<self::stack::ApplicationSettings>> = None;
let mut attributes_to_delete: Option<::ValueList<String>> = None;
let mut delete_storage_connectors: Option<::Value<bool>> = None;
let mut description: Option<::Value<String>> = None;
let mut display_name: Option<::Value<String>> = None;
let mut embed_host_domains: Option<::ValueList<String>> = None;
let mut feedback_url: Option<::Value<String>> = None;
let mut name: Option<::Value<String>> = None;
let mut redirect_url: Option<::Value<String>> = None;
let mut storage_connectors: Option<::ValueList<self::stack::StorageConnector>> = None;
let mut tags: Option<::ValueList<::Tag>> = None;
let mut user_settings: Option<::ValueList<self::stack::UserSetting>> = None;
while let Some(__cfn_key) = ::serde::de::MapAccess::next_key::<String>(&mut map)? {
match __cfn_key.as_ref() {
"AccessEndpoints" => {
access_endpoints = ::serde::de::MapAccess::next_value(&mut map)?;
}
"ApplicationSettings" => {
application_settings = ::serde::de::MapAccess::next_value(&mut map)?;
}
"AttributesToDelete" => {
attributes_to_delete = ::serde::de::MapAccess::next_value(&mut map)?;
}
"DeleteStorageConnectors" => {
delete_storage_connectors = ::serde::de::MapAccess::next_value(&mut map)?;
}
"Description" => {
description = ::serde::de::MapAccess::next_value(&mut map)?;
}
"DisplayName" => {
display_name = ::serde::de::MapAccess::next_value(&mut map)?;
}
"EmbedHostDomains" => {
embed_host_domains = ::serde::de::MapAccess::next_value(&mut map)?;
}
"FeedbackURL" => {
feedback_url = ::serde::de::MapAccess::next_value(&mut map)?;
}
"Name" => {
name = ::serde::de::MapAccess::next_value(&mut map)?;
}
"RedirectURL" => {
redirect_url = ::serde::de::MapAccess::next_value(&mut map)?;
}
"StorageConnectors" => {
storage_connectors = ::serde::de::MapAccess::next_value(&mut map)?;
}
"Tags" => {
tags = ::serde::de::MapAccess::next_value(&mut map)?;
}
"UserSettings" => {
user_settings = ::serde::de::MapAccess::next_value(&mut map)?;
}
_ => {}
}
}
Ok(StackProperties {
access_endpoints: access_endpoints,
application_settings: application_settings,
attributes_to_delete: attributes_to_delete,
delete_storage_connectors: delete_storage_connectors,
description: description,
display_name: display_name,
embed_host_domains: embed_host_domains,
feedback_url: feedback_url,
name: name,
redirect_url: redirect_url,
storage_connectors: storage_connectors,
tags: tags,
user_settings: user_settings,
})
}
}
d.deserialize_map(Visitor)
}
}
impl ::Resource for Stack {
type Properties = StackProperties;
const TYPE: &'static str = "AWS::AppStream::Stack";
fn properties(&self) -> &StackProperties {
&self.properties
}
fn properties_mut(&mut self) -> &mut StackProperties {
&mut self.properties
}
}
impl ::private::Sealed for Stack {}
impl From<StackProperties> for Stack {
fn from(properties: StackProperties) -> Stack {
Stack { properties }
}
}
/// The [`AWS::AppStream::StackFleetAssociation`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html) resource type.
#[derive(Debug, Default)]
pub struct StackFleetAssociation {
properties: StackFleetAssociationProperties
}
/// Properties for the `StackFleetAssociation` resource.
#[derive(Debug, Default)]
pub struct StackFleetAssociationProperties {
/// Property [`FleetName`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html#cfn-appstream-stackfleetassociation-fleetname).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub fleet_name: ::Value<String>,
/// Property [`StackName`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackfleetassociation.html#cfn-appstream-stackfleetassociation-stackname).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub stack_name: ::Value<String>,
}
impl ::serde::Serialize for StackFleetAssociationProperties {
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, "FleetName", &self.fleet_name)?;
::serde::ser::SerializeMap::serialize_entry(&mut map, "StackName", &self.stack_name)?;
::serde::ser::SerializeMap::end(map)
}
}
impl<'de> ::serde::Deserialize<'de> for StackFleetAssociationProperties {
fn deserialize<D: ::serde::Deserializer<'de>>(d: D) -> Result<StackFleetAssociationProperties, D::Error> {
struct Visitor;
impl<'de> ::serde::de::Visitor<'de> for Visitor {
type Value = StackFleetAssociationProperties;
fn expecting(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
write!(f, "a struct of type StackFleetAssociationProperties")
}
fn visit_map<A: ::serde::de::MapAccess<'de>>(self, mut map: A) -> Result<Self::Value, A::Error> {
let mut fleet_name: Option<::Value<String>> = None;
let mut stack_name: Option<::Value<String>> = None;
while let Some(__cfn_key) = ::serde::de::MapAccess::next_key::<String>(&mut map)? {
match __cfn_key.as_ref() {
"FleetName" => {
fleet_name = ::serde::de::MapAccess::next_value(&mut map)?;
}
"StackName" => {
stack_name = ::serde::de::MapAccess::next_value(&mut map)?;
}
_ => {}
}
}
Ok(StackFleetAssociationProperties {
fleet_name: fleet_name.ok_or(::serde::de::Error::missing_field("FleetName"))?,
stack_name: stack_name.ok_or(::serde::de::Error::missing_field("StackName"))?,
})
}
}
d.deserialize_map(Visitor)
}
}
impl ::Resource for StackFleetAssociation {
type Properties = StackFleetAssociationProperties;
const TYPE: &'static str = "AWS::AppStream::StackFleetAssociation";
fn properties(&self) -> &StackFleetAssociationProperties {
&self.properties
}
fn properties_mut(&mut self) -> &mut StackFleetAssociationProperties {
&mut self.properties
}
}
impl ::private::Sealed for StackFleetAssociation {}
impl From<StackFleetAssociationProperties> for StackFleetAssociation {
fn from(properties: StackFleetAssociationProperties) -> StackFleetAssociation {
StackFleetAssociation { properties }
}
}
/// The [`AWS::AppStream::StackUserAssociation`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html) resource type.
#[derive(Debug, Default)]
pub struct StackUserAssociation {
properties: StackUserAssociationProperties
}
/// Properties for the `StackUserAssociation` resource.
#[derive(Debug, Default)]
pub struct StackUserAssociationProperties {
/// Property [`AuthenticationType`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-authenticationtype).
///
/// Update type: _Immutable_.
/// AWS CloudFormation replaces the resource when you change this property.
pub authentication_type: ::Value<String>,
/// Property [`SendEmailNotification`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-sendemailnotification).
///
/// Update type: _Immutable_.
/// AWS CloudFormation replaces the resource when you change this property.
pub send_email_notification: Option<::Value<bool>>,
/// Property [`StackName`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-stackname).
///
/// Update type: _Immutable_.
/// AWS CloudFormation replaces the resource when you change this property.
pub stack_name: ::Value<String>,
/// Property [`UserName`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-username).
///
/// Update type: _Immutable_.
/// AWS CloudFormation replaces the resource when you change this property.
pub user_name: ::Value<String>,
}
impl ::serde::Serialize for StackUserAssociationProperties {
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, "AuthenticationType", &self.authentication_type)?;
if let Some(ref send_email_notification) = self.send_email_notification {
::serde::ser::SerializeMap::serialize_entry(&mut map, "SendEmailNotification", send_email_notification)?;
}
::serde::ser::SerializeMap::serialize_entry(&mut map, "StackName", &self.stack_name)?;
::serde::ser::SerializeMap::serialize_entry(&mut map, "UserName", &self.user_name)?;
::serde::ser::SerializeMap::end(map)
}
}
impl<'de> ::serde::Deserialize<'de> for StackUserAssociationProperties {
fn deserialize<D: ::serde::Deserializer<'de>>(d: D) -> Result<StackUserAssociationProperties, D::Error> {
struct Visitor;
impl<'de> ::serde::de::Visitor<'de> for Visitor {
type Value = StackUserAssociationProperties;
fn expecting(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
write!(f, "a struct of type StackUserAssociationProperties")
}
fn visit_map<A: ::serde::de::MapAccess<'de>>(self, mut map: A) -> Result<Self::Value, A::Error> {
let mut authentication_type: Option<::Value<String>> = None;
let mut send_email_notification: Option<::Value<bool>> = None;
let mut stack_name: Option<::Value<String>> = None;
let mut user_name: Option<::Value<String>> = None;
while let Some(__cfn_key) = ::serde::de::MapAccess::next_key::<String>(&mut map)? {
match __cfn_key.as_ref() {
"AuthenticationType" => {
authentication_type = ::serde::de::MapAccess::next_value(&mut map)?;
}
"SendEmailNotification" => {
send_email_notification = ::serde::de::MapAccess::next_value(&mut map)?;
}
"StackName" => {
stack_name = ::serde::de::MapAccess::next_value(&mut map)?;
}
"UserName" => {
user_name = ::serde::de::MapAccess::next_value(&mut map)?;
}
_ => {}
}
}
Ok(StackUserAssociationProperties {
authentication_type: authentication_type.ok_or(::serde::de::Error::missing_field("AuthenticationType"))?,
send_email_notification: send_email_notification,
stack_name: stack_name.ok_or(::serde::de::Error::missing_field("StackName"))?,
user_name: user_name.ok_or(::serde::de::Error::missing_field("UserName"))?,
})
}
}
d.deserialize_map(Visitor)
}
}
impl ::Resource for StackUserAssociation {
type Properties = StackUserAssociationProperties;
const TYPE: &'static str = "AWS::AppStream::StackUserAssociation";
fn properties(&self) -> &StackUserAssociationProperties {
&self.properties
}
fn properties_mut(&mut self) -> &mut StackUserAssociationProperties {
&mut self.properties
}
}
impl ::private::Sealed for StackUserAssociation {}
impl From<StackUserAssociationProperties> for StackUserAssociation {
fn from(properties: StackUserAssociationProperties) -> StackUserAssociation {
StackUserAssociation { properties }
}
}
/// The [`AWS::AppStream::User`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html) resource type.
#[derive(Debug, Default)]
pub struct User {
properties: UserProperties
}
/// Properties for the `User` resource.
#[derive(Debug, Default)]
pub struct UserProperties {
/// Property [`AuthenticationType`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-authenticationtype).
///
/// Update type: _Immutable_.
/// AWS CloudFormation replaces the resource when you change this property.
pub authentication_type: ::Value<String>,
/// Property [`FirstName`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-firstname).
///
/// Update type: _Immutable_.
/// AWS CloudFormation replaces the resource when you change this property.
pub first_name: Option<::Value<String>>,
/// Property [`LastName`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-lastname).
///
/// Update type: _Immutable_.
/// AWS CloudFormation replaces the resource when you change this property.
pub last_name: Option<::Value<String>>,
/// Property [`MessageAction`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-messageaction).
///
/// Update type: _Immutable_.
/// AWS CloudFormation replaces the resource when you change this property.
pub message_action: Option<::Value<String>>,
/// Property [`UserName`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-user.html#cfn-appstream-user-username).
///
/// Update type: _Immutable_.
/// AWS CloudFormation replaces the resource when you change this property.
pub user_name: ::Value<String>,
}
impl ::serde::Serialize for UserProperties {
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, "AuthenticationType", &self.authentication_type)?;
if let Some(ref first_name) = self.first_name {
::serde::ser::SerializeMap::serialize_entry(&mut map, "FirstName", first_name)?;
}
if let Some(ref last_name) = self.last_name {
::serde::ser::SerializeMap::serialize_entry(&mut map, "LastName", last_name)?;
}
if let Some(ref message_action) = self.message_action {
::serde::ser::SerializeMap::serialize_entry(&mut map, "MessageAction", message_action)?;
}
::serde::ser::SerializeMap::serialize_entry(&mut map, "UserName", &self.user_name)?;
::serde::ser::SerializeMap::end(map)
}
}
impl<'de> ::serde::Deserialize<'de> for UserProperties {
fn deserialize<D: ::serde::Deserializer<'de>>(d: D) -> Result<UserProperties, D::Error> {
struct Visitor;
impl<'de> ::serde::de::Visitor<'de> for Visitor {
type Value = UserProperties;
fn expecting(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
write!(f, "a struct of type UserProperties")
}
fn visit_map<A: ::serde::de::MapAccess<'de>>(self, mut map: A) -> Result<Self::Value, A::Error> {
let mut authentication_type: Option<::Value<String>> = None;
let mut first_name: Option<::Value<String>> = None;
let mut last_name: Option<::Value<String>> = None;
let mut message_action: Option<::Value<String>> = None;
let mut user_name: Option<::Value<String>> = None;
while let Some(__cfn_key) = ::serde::de::MapAccess::next_key::<String>(&mut map)? {
match __cfn_key.as_ref() {
"AuthenticationType" => {
authentication_type = ::serde::de::MapAccess::next_value(&mut map)?;
}
"FirstName" => {
first_name = ::serde::de::MapAccess::next_value(&mut map)?;
}
"LastName" => {
last_name = ::serde::de::MapAccess::next_value(&mut map)?;
}
"MessageAction" => {
message_action = ::serde::de::MapAccess::next_value(&mut map)?;
}
"UserName" => {
user_name = ::serde::de::MapAccess::next_value(&mut map)?;
}
_ => {}
}
}
Ok(UserProperties {
authentication_type: authentication_type.ok_or(::serde::de::Error::missing_field("AuthenticationType"))?,
first_name: first_name,
last_name: last_name,
message_action: message_action,
user_name: user_name.ok_or(::serde::de::Error::missing_field("UserName"))?,
})
}
}
d.deserialize_map(Visitor)
}
}
impl ::Resource for User {
type Properties = UserProperties;
const TYPE: &'static str = "AWS::AppStream::User";
fn properties(&self) -> &UserProperties {
&self.properties
}
fn properties_mut(&mut self) -> &mut UserProperties {
&mut self.properties
}
}
impl ::private::Sealed for User {}
impl From<UserProperties> for User {
fn from(properties: UserProperties) -> User {
User { properties }
}
}
pub mod directory_config {
//! Property types for the `DirectoryConfig` resource.
/// The [`AWS::AppStream::DirectoryConfig.ServiceAccountCredentials`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-directoryconfig-serviceaccountcredentials.html) property type.
#[derive(Debug, Default)]
pub struct ServiceAccountCredentials {
/// Property [`AccountName`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-directoryconfig-serviceaccountcredentials.html#cfn-appstream-directoryconfig-serviceaccountcredentials-accountname).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub account_name: ::Value<String>,
/// Property [`AccountPassword`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-directoryconfig-serviceaccountcredentials.html#cfn-appstream-directoryconfig-serviceaccountcredentials-accountpassword).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub account_password: ::Value<String>,
}
impl ::codec::SerializeValue for ServiceAccountCredentials {
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, "AccountName", &self.account_name)?;
::serde::ser::SerializeMap::serialize_entry(&mut map, "AccountPassword", &self.account_password)?;
::serde::ser::SerializeMap::end(map)
}
}
impl ::codec::DeserializeValue for ServiceAccountCredentials {
fn deserialize<'de, D: ::serde::Deserializer<'de>>(d: D) -> Result<ServiceAccountCredentials, D::Error> {
struct Visitor;
impl<'de> ::serde::de::Visitor<'de> for Visitor {
type Value = ServiceAccountCredentials;
fn expecting(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
write!(f, "a struct of type ServiceAccountCredentials")
}
fn visit_map<A: ::serde::de::MapAccess<'de>>(self, mut map: A) -> Result<Self::Value, A::Error> {
let mut account_name: Option<::Value<String>> = None;
let mut account_password: Option<::Value<String>> = None;
while let Some(__cfn_key) = ::serde::de::MapAccess::next_key::<String>(&mut map)? {
match __cfn_key.as_ref() {
"AccountName" => {
account_name = ::serde::de::MapAccess::next_value(&mut map)?;
}
"AccountPassword" => {
account_password = ::serde::de::MapAccess::next_value(&mut map)?;
}
_ => {}
}
}
Ok(ServiceAccountCredentials {
account_name: account_name.ok_or(::serde::de::Error::missing_field("AccountName"))?,
account_password: account_password.ok_or(::serde::de::Error::missing_field("AccountPassword"))?,
})
}
}
d.deserialize_map(Visitor)
}
}
}
pub mod fleet {
//! Property types for the `Fleet` resource.
/// The [`AWS::AppStream::Fleet.ComputeCapacity`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-fleet-computecapacity.html) property type.
#[derive(Debug, Default)]
pub struct ComputeCapacity {
/// Property [`DesiredInstances`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-fleet-computecapacity.html#cfn-appstream-fleet-computecapacity-desiredinstances).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub desired_instances: ::Value<u32>,
}
impl ::codec::SerializeValue for ComputeCapacity {
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, "DesiredInstances", &self.desired_instances)?;
::serde::ser::SerializeMap::end(map)
}
}
impl ::codec::DeserializeValue for ComputeCapacity {
fn deserialize<'de, D: ::serde::Deserializer<'de>>(d: D) -> Result<ComputeCapacity, D::Error> {
struct Visitor;
impl<'de> ::serde::de::Visitor<'de> for Visitor {
type Value = ComputeCapacity;
fn expecting(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
write!(f, "a struct of type ComputeCapacity")
}
fn visit_map<A: ::serde::de::MapAccess<'de>>(self, mut map: A) -> Result<Self::Value, A::Error> {
let mut desired_instances: Option<::Value<u32>> = None;
while let Some(__cfn_key) = ::serde::de::MapAccess::next_key::<String>(&mut map)? {
match __cfn_key.as_ref() {
"DesiredInstances" => {
desired_instances = ::serde::de::MapAccess::next_value(&mut map)?;
}
_ => {}
}
}
Ok(ComputeCapacity {
desired_instances: desired_instances.ok_or(::serde::de::Error::missing_field("DesiredInstances"))?,
})
}
}
d.deserialize_map(Visitor)
}
}
/// The [`AWS::AppStream::Fleet.DomainJoinInfo`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-fleet-domainjoininfo.html) property type.
#[derive(Debug, Default)]
pub struct DomainJoinInfo {
/// Property [`DirectoryName`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-fleet-domainjoininfo.html#cfn-appstream-fleet-domainjoininfo-directoryname).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub directory_name: Option<::Value<String>>,
/// Property [`OrganizationalUnitDistinguishedName`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-fleet-domainjoininfo.html#cfn-appstream-fleet-domainjoininfo-organizationalunitdistinguishedname).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub organizational_unit_distinguished_name: Option<::Value<String>>,
}
impl ::codec::SerializeValue for DomainJoinInfo {
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 directory_name) = self.directory_name {
::serde::ser::SerializeMap::serialize_entry(&mut map, "DirectoryName", directory_name)?;
}
if let Some(ref organizational_unit_distinguished_name) = self.organizational_unit_distinguished_name {
::serde::ser::SerializeMap::serialize_entry(&mut map, "OrganizationalUnitDistinguishedName", organizational_unit_distinguished_name)?;
}
::serde::ser::SerializeMap::end(map)
}
}
impl ::codec::DeserializeValue for DomainJoinInfo {
fn deserialize<'de, D: ::serde::Deserializer<'de>>(d: D) -> Result<DomainJoinInfo, D::Error> {
struct Visitor;
impl<'de> ::serde::de::Visitor<'de> for Visitor {
type Value = DomainJoinInfo;
fn expecting(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
write!(f, "a struct of type DomainJoinInfo")
}
fn visit_map<A: ::serde::de::MapAccess<'de>>(self, mut map: A) -> Result<Self::Value, A::Error> {
let mut directory_name: Option<::Value<String>> = None;
let mut organizational_unit_distinguished_name: Option<::Value<String>> = None;
while let Some(__cfn_key) = ::serde::de::MapAccess::next_key::<String>(&mut map)? {
match __cfn_key.as_ref() {
"DirectoryName" => {
directory_name = ::serde::de::MapAccess::next_value(&mut map)?;
}
"OrganizationalUnitDistinguishedName" => {
organizational_unit_distinguished_name = ::serde::de::MapAccess::next_value(&mut map)?;
}
_ => {}
}
}
Ok(DomainJoinInfo {
directory_name: directory_name,
organizational_unit_distinguished_name: organizational_unit_distinguished_name,
})
}
}
d.deserialize_map(Visitor)
}
}
/// The [`AWS::AppStream::Fleet.VpcConfig`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-fleet-vpcconfig.html) property type.
#[derive(Debug, Default)]
pub struct VpcConfig {
/// Property [`SecurityGroupIds`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-fleet-vpcconfig.html#cfn-appstream-fleet-vpcconfig-securitygroupids).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub security_group_ids: Option<::ValueList<String>>,
/// Property [`SubnetIds`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-fleet-vpcconfig.html#cfn-appstream-fleet-vpcconfig-subnetids).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub subnet_ids: Option<::ValueList<String>>,
}
impl ::codec::SerializeValue for VpcConfig {
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 security_group_ids) = self.security_group_ids {
::serde::ser::SerializeMap::serialize_entry(&mut map, "SecurityGroupIds", security_group_ids)?;
}
if let Some(ref subnet_ids) = self.subnet_ids {
::serde::ser::SerializeMap::serialize_entry(&mut map, "SubnetIds", subnet_ids)?;
}
::serde::ser::SerializeMap::end(map)
}
}
impl ::codec::DeserializeValue for VpcConfig {
fn deserialize<'de, D: ::serde::Deserializer<'de>>(d: D) -> Result<VpcConfig, D::Error> {
struct Visitor;
impl<'de> ::serde::de::Visitor<'de> for Visitor {
type Value = VpcConfig;
fn expecting(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
write!(f, "a struct of type VpcConfig")
}
fn visit_map<A: ::serde::de::MapAccess<'de>>(self, mut map: A) -> Result<Self::Value, A::Error> {
let mut security_group_ids: Option<::ValueList<String>> = None;
let mut subnet_ids: Option<::ValueList<String>> = None;
while let Some(__cfn_key) = ::serde::de::MapAccess::next_key::<String>(&mut map)? {
match __cfn_key.as_ref() {
"SecurityGroupIds" => {
security_group_ids = ::serde::de::MapAccess::next_value(&mut map)?;
}
"SubnetIds" => {
subnet_ids = ::serde::de::MapAccess::next_value(&mut map)?;
}
_ => {}
}
}
Ok(VpcConfig {
security_group_ids: security_group_ids,
subnet_ids: subnet_ids,
})
}
}
d.deserialize_map(Visitor)
}
}
}
pub mod image_builder {
//! Property types for the `ImageBuilder` resource.
/// The [`AWS::AppStream::ImageBuilder.AccessEndpoint`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-imagebuilder-accessendpoint.html) property type.
#[derive(Debug, Default)]
pub struct AccessEndpoint {
/// Property [`EndpointType`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-imagebuilder-accessendpoint.html#cfn-appstream-imagebuilder-accessendpoint-endpointtype).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub endpoint_type: ::Value<String>,
/// Property [`VpceId`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-imagebuilder-accessendpoint.html#cfn-appstream-imagebuilder-accessendpoint-vpceid).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub vpce_id: ::Value<String>,
}
impl ::codec::SerializeValue for AccessEndpoint {
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, "EndpointType", &self.endpoint_type)?;
::serde::ser::SerializeMap::serialize_entry(&mut map, "VpceId", &self.vpce_id)?;
::serde::ser::SerializeMap::end(map)
}
}
impl ::codec::DeserializeValue for AccessEndpoint {
fn deserialize<'de, D: ::serde::Deserializer<'de>>(d: D) -> Result<AccessEndpoint, D::Error> {
struct Visitor;
impl<'de> ::serde::de::Visitor<'de> for Visitor {
type Value = AccessEndpoint;
fn expecting(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
write!(f, "a struct of type AccessEndpoint")
}
fn visit_map<A: ::serde::de::MapAccess<'de>>(self, mut map: A) -> Result<Self::Value, A::Error> {
let mut endpoint_type: Option<::Value<String>> = None;
let mut vpce_id: Option<::Value<String>> = None;
while let Some(__cfn_key) = ::serde::de::MapAccess::next_key::<String>(&mut map)? {
match __cfn_key.as_ref() {
"EndpointType" => {
endpoint_type = ::serde::de::MapAccess::next_value(&mut map)?;
}
"VpceId" => {
vpce_id = ::serde::de::MapAccess::next_value(&mut map)?;
}
_ => {}
}
}
Ok(AccessEndpoint {
endpoint_type: endpoint_type.ok_or(::serde::de::Error::missing_field("EndpointType"))?,
vpce_id: vpce_id.ok_or(::serde::de::Error::missing_field("VpceId"))?,
})
}
}
d.deserialize_map(Visitor)
}
}
/// The [`AWS::AppStream::ImageBuilder.DomainJoinInfo`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-imagebuilder-domainjoininfo.html) property type.
#[derive(Debug, Default)]
pub struct DomainJoinInfo {
/// Property [`DirectoryName`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-imagebuilder-domainjoininfo.html#cfn-appstream-imagebuilder-domainjoininfo-directoryname).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub directory_name: Option<::Value<String>>,
/// Property [`OrganizationalUnitDistinguishedName`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-imagebuilder-domainjoininfo.html#cfn-appstream-imagebuilder-domainjoininfo-organizationalunitdistinguishedname).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub organizational_unit_distinguished_name: Option<::Value<String>>,
}
impl ::codec::SerializeValue for DomainJoinInfo {
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 directory_name) = self.directory_name {
::serde::ser::SerializeMap::serialize_entry(&mut map, "DirectoryName", directory_name)?;
}
if let Some(ref organizational_unit_distinguished_name) = self.organizational_unit_distinguished_name {
::serde::ser::SerializeMap::serialize_entry(&mut map, "OrganizationalUnitDistinguishedName", organizational_unit_distinguished_name)?;
}
::serde::ser::SerializeMap::end(map)
}
}
impl ::codec::DeserializeValue for DomainJoinInfo {
fn deserialize<'de, D: ::serde::Deserializer<'de>>(d: D) -> Result<DomainJoinInfo, D::Error> {
struct Visitor;
impl<'de> ::serde::de::Visitor<'de> for Visitor {
type Value = DomainJoinInfo;
fn expecting(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
write!(f, "a struct of type DomainJoinInfo")
}
fn visit_map<A: ::serde::de::MapAccess<'de>>(self, mut map: A) -> Result<Self::Value, A::Error> {
let mut directory_name: Option<::Value<String>> = None;
let mut organizational_unit_distinguished_name: Option<::Value<String>> = None;
while let Some(__cfn_key) = ::serde::de::MapAccess::next_key::<String>(&mut map)? {
match __cfn_key.as_ref() {
"DirectoryName" => {
directory_name = ::serde::de::MapAccess::next_value(&mut map)?;
}
"OrganizationalUnitDistinguishedName" => {
organizational_unit_distinguished_name = ::serde::de::MapAccess::next_value(&mut map)?;
}
_ => {}
}
}
Ok(DomainJoinInfo {
directory_name: directory_name,
organizational_unit_distinguished_name: organizational_unit_distinguished_name,
})
}
}
d.deserialize_map(Visitor)
}
}
/// The [`AWS::AppStream::ImageBuilder.VpcConfig`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-imagebuilder-vpcconfig.html) property type.
#[derive(Debug, Default)]
pub struct VpcConfig {
/// Property [`SecurityGroupIds`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-imagebuilder-vpcconfig.html#cfn-appstream-imagebuilder-vpcconfig-securitygroupids).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub security_group_ids: Option<::ValueList<String>>,
/// Property [`SubnetIds`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-imagebuilder-vpcconfig.html#cfn-appstream-imagebuilder-vpcconfig-subnetids).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub subnet_ids: Option<::ValueList<String>>,
}
impl ::codec::SerializeValue for VpcConfig {
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 security_group_ids) = self.security_group_ids {
::serde::ser::SerializeMap::serialize_entry(&mut map, "SecurityGroupIds", security_group_ids)?;
}
if let Some(ref subnet_ids) = self.subnet_ids {
::serde::ser::SerializeMap::serialize_entry(&mut map, "SubnetIds", subnet_ids)?;
}
::serde::ser::SerializeMap::end(map)
}
}
impl ::codec::DeserializeValue for VpcConfig {
fn deserialize<'de, D: ::serde::Deserializer<'de>>(d: D) -> Result<VpcConfig, D::Error> {
struct Visitor;
impl<'de> ::serde::de::Visitor<'de> for Visitor {
type Value = VpcConfig;
fn expecting(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
write!(f, "a struct of type VpcConfig")
}
fn visit_map<A: ::serde::de::MapAccess<'de>>(self, mut map: A) -> Result<Self::Value, A::Error> {
let mut security_group_ids: Option<::ValueList<String>> = None;
let mut subnet_ids: Option<::ValueList<String>> = None;
while let Some(__cfn_key) = ::serde::de::MapAccess::next_key::<String>(&mut map)? {
match __cfn_key.as_ref() {
"SecurityGroupIds" => {
security_group_ids = ::serde::de::MapAccess::next_value(&mut map)?;
}
"SubnetIds" => {
subnet_ids = ::serde::de::MapAccess::next_value(&mut map)?;
}
_ => {}
}
}
Ok(VpcConfig {
security_group_ids: security_group_ids,
subnet_ids: subnet_ids,
})
}
}
d.deserialize_map(Visitor)
}
}
}
pub mod stack {
//! Property types for the `Stack` resource.
/// The [`AWS::AppStream::Stack.AccessEndpoint`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-accessendpoint.html) property type.
#[derive(Debug, Default)]
pub struct AccessEndpoint {
/// Property [`EndpointType`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-accessendpoint.html#cfn-appstream-stack-accessendpoint-endpointtype).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub endpoint_type: ::Value<String>,
/// Property [`VpceId`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-accessendpoint.html#cfn-appstream-stack-accessendpoint-vpceid).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub vpce_id: ::Value<String>,
}
impl ::codec::SerializeValue for AccessEndpoint {
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, "EndpointType", &self.endpoint_type)?;
::serde::ser::SerializeMap::serialize_entry(&mut map, "VpceId", &self.vpce_id)?;
::serde::ser::SerializeMap::end(map)
}
}
impl ::codec::DeserializeValue for AccessEndpoint {
fn deserialize<'de, D: ::serde::Deserializer<'de>>(d: D) -> Result<AccessEndpoint, D::Error> {
struct Visitor;
impl<'de> ::serde::de::Visitor<'de> for Visitor {
type Value = AccessEndpoint;
fn expecting(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
write!(f, "a struct of type AccessEndpoint")
}
fn visit_map<A: ::serde::de::MapAccess<'de>>(self, mut map: A) -> Result<Self::Value, A::Error> {
let mut endpoint_type: Option<::Value<String>> = None;
let mut vpce_id: Option<::Value<String>> = None;
while let Some(__cfn_key) = ::serde::de::MapAccess::next_key::<String>(&mut map)? {
match __cfn_key.as_ref() {
"EndpointType" => {
endpoint_type = ::serde::de::MapAccess::next_value(&mut map)?;
}
"VpceId" => {
vpce_id = ::serde::de::MapAccess::next_value(&mut map)?;
}
_ => {}
}
}
Ok(AccessEndpoint {
endpoint_type: endpoint_type.ok_or(::serde::de::Error::missing_field("EndpointType"))?,
vpce_id: vpce_id.ok_or(::serde::de::Error::missing_field("VpceId"))?,
})
}
}
d.deserialize_map(Visitor)
}
}
/// The [`AWS::AppStream::Stack.ApplicationSettings`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-applicationsettings.html) property type.
#[derive(Debug, Default)]
pub struct ApplicationSettings {
/// Property [`Enabled`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-applicationsettings.html#cfn-appstream-stack-applicationsettings-enabled).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub enabled: ::Value<bool>,
/// Property [`SettingsGroup`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-applicationsettings.html#cfn-appstream-stack-applicationsettings-settingsgroup).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub settings_group: Option<::Value<String>>,
}
impl ::codec::SerializeValue for ApplicationSettings {
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, "Enabled", &self.enabled)?;
if let Some(ref settings_group) = self.settings_group {
::serde::ser::SerializeMap::serialize_entry(&mut map, "SettingsGroup", settings_group)?;
}
::serde::ser::SerializeMap::end(map)
}
}
impl ::codec::DeserializeValue for ApplicationSettings {
fn deserialize<'de, D: ::serde::Deserializer<'de>>(d: D) -> Result<ApplicationSettings, D::Error> {
struct Visitor;
impl<'de> ::serde::de::Visitor<'de> for Visitor {
type Value = ApplicationSettings;
fn expecting(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
write!(f, "a struct of type ApplicationSettings")
}
fn visit_map<A: ::serde::de::MapAccess<'de>>(self, mut map: A) -> Result<Self::Value, A::Error> {
let mut enabled: Option<::Value<bool>> = None;
let mut settings_group: Option<::Value<String>> = None;
while let Some(__cfn_key) = ::serde::de::MapAccess::next_key::<String>(&mut map)? {
match __cfn_key.as_ref() {
"Enabled" => {
enabled = ::serde::de::MapAccess::next_value(&mut map)?;
}
"SettingsGroup" => {
settings_group = ::serde::de::MapAccess::next_value(&mut map)?;
}
_ => {}
}
}
Ok(ApplicationSettings {
enabled: enabled.ok_or(::serde::de::Error::missing_field("Enabled"))?,
settings_group: settings_group,
})
}
}
d.deserialize_map(Visitor)
}
}
/// The [`AWS::AppStream::Stack.StorageConnector`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-storageconnector.html) property type.
#[derive(Debug, Default)]
pub struct StorageConnector {
/// Property [`ConnectorType`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-storageconnector.html#cfn-appstream-stack-storageconnector-connectortype).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub connector_type: ::Value<String>,
/// Property [`Domains`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-storageconnector.html#cfn-appstream-stack-storageconnector-domains).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub domains: Option<::ValueList<String>>,
/// Property [`ResourceIdentifier`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-storageconnector.html#cfn-appstream-stack-storageconnector-resourceidentifier).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub resource_identifier: Option<::Value<String>>,
}
impl ::codec::SerializeValue for StorageConnector {
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, "ConnectorType", &self.connector_type)?;
if let Some(ref domains) = self.domains {
::serde::ser::SerializeMap::serialize_entry(&mut map, "Domains", domains)?;
}
if let Some(ref resource_identifier) = self.resource_identifier {
::serde::ser::SerializeMap::serialize_entry(&mut map, "ResourceIdentifier", resource_identifier)?;
}
::serde::ser::SerializeMap::end(map)
}
}
impl ::codec::DeserializeValue for StorageConnector {
fn deserialize<'de, D: ::serde::Deserializer<'de>>(d: D) -> Result<StorageConnector, D::Error> {
struct Visitor;
impl<'de> ::serde::de::Visitor<'de> for Visitor {
type Value = StorageConnector;
fn expecting(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
write!(f, "a struct of type StorageConnector")
}
fn visit_map<A: ::serde::de::MapAccess<'de>>(self, mut map: A) -> Result<Self::Value, A::Error> {
let mut connector_type: Option<::Value<String>> = None;
let mut domains: Option<::ValueList<String>> = None;
let mut resource_identifier: Option<::Value<String>> = None;
while let Some(__cfn_key) = ::serde::de::MapAccess::next_key::<String>(&mut map)? {
match __cfn_key.as_ref() {
"ConnectorType" => {
connector_type = ::serde::de::MapAccess::next_value(&mut map)?;
}
"Domains" => {
domains = ::serde::de::MapAccess::next_value(&mut map)?;
}
"ResourceIdentifier" => {
resource_identifier = ::serde::de::MapAccess::next_value(&mut map)?;
}
_ => {}
}
}
Ok(StorageConnector {
connector_type: connector_type.ok_or(::serde::de::Error::missing_field("ConnectorType"))?,
domains: domains,
resource_identifier: resource_identifier,
})
}
}
d.deserialize_map(Visitor)
}
}
/// The [`AWS::AppStream::Stack.UserSetting`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-usersetting.html) property type.
#[derive(Debug, Default)]
pub struct UserSetting {
/// Property [`Action`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-usersetting.html#cfn-appstream-stack-usersetting-action).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub action: ::Value<String>,
/// Property [`Permission`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-usersetting.html#cfn-appstream-stack-usersetting-permission).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub permission: ::Value<String>,
}
impl ::codec::SerializeValue for UserSetting {
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, "Action", &self.action)?;
::serde::ser::SerializeMap::serialize_entry(&mut map, "Permission", &self.permission)?;
::serde::ser::SerializeMap::end(map)
}
}
impl ::codec::DeserializeValue for UserSetting {
fn deserialize<'de, D: ::serde::Deserializer<'de>>(d: D) -> Result<UserSetting, D::Error> {
struct Visitor;
impl<'de> ::serde::de::Visitor<'de> for Visitor {
type Value = UserSetting;
fn expecting(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
write!(f, "a struct of type UserSetting")
}
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 permission: 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)?;
}
"Permission" => {
permission = ::serde::de::MapAccess::next_value(&mut map)?;
}
_ => {}
}
}
Ok(UserSetting {
action: action.ok_or(::serde::de::Error::missing_field("Action"))?,
permission: permission.ok_or(::serde::de::Error::missing_field("Permission"))?,
})
}
}
d.deserialize_map(Visitor)
}
}
}