@@ -418,7 +418,7 @@ namespace Aws
418
418
}
419
419
if (jsonView.ValueExists (" keyPath" ))
420
420
{
421
- configurationUpdateEvent.m_keyPath = {} ;
421
+ configurationUpdateEvent.m_keyPath = Crt::Vector<Crt::String>() ;
422
422
for (const Crt::JsonView &keyPathJsonView : jsonView.GetArray (" keyPath" ))
423
423
{
424
424
Crt::Optional<Crt::String> keyPathItem;
@@ -1514,6 +1514,7 @@ namespace Aws
1514
1514
}
1515
1515
if (jsonView.ValueExists (" rootComponentVersionsToAdd" ))
1516
1516
{
1517
+ createLocalDeploymentRequest.m_rootComponentVersionsToAdd = Crt::Map<Crt::String, Crt::String>();
1517
1518
for (const auto &componentToVersionMapPair :
1518
1519
jsonView.GetJsonObject (" rootComponentVersionsToAdd" ).GetAllObjects ())
1519
1520
{
@@ -1526,7 +1527,7 @@ namespace Aws
1526
1527
}
1527
1528
if (jsonView.ValueExists (" rootComponentsToRemove" ))
1528
1529
{
1529
- createLocalDeploymentRequest.m_rootComponentsToRemove = {} ;
1530
+ createLocalDeploymentRequest.m_rootComponentsToRemove = Crt::Vector<Crt::String>() ;
1530
1531
for (const Crt::JsonView &componentListJsonView : jsonView.GetArray (" rootComponentsToRemove" ))
1531
1532
{
1532
1533
Crt::Optional<Crt::String> componentListItem;
@@ -1537,6 +1538,7 @@ namespace Aws
1537
1538
}
1538
1539
if (jsonView.ValueExists (" componentToConfiguration" ))
1539
1540
{
1541
+ createLocalDeploymentRequest.m_componentToConfiguration = Crt::Map<Crt::String, Crt::JsonObject>();
1540
1542
for (const auto &componentToConfigurationPair :
1541
1543
jsonView.GetJsonObject (" componentToConfiguration" ).GetAllObjects ())
1542
1544
{
@@ -1549,6 +1551,7 @@ namespace Aws
1549
1551
}
1550
1552
if (jsonView.ValueExists (" componentToRunWithInfo" ))
1551
1553
{
1554
+ createLocalDeploymentRequest.m_componentToRunWithInfo = Crt::Map<Crt::String, RunWithInfo>();
1552
1555
for (const auto &componentToRunWithInfoPair :
1553
1556
jsonView.GetJsonObject (" componentToRunWithInfo" ).GetAllObjects ())
1554
1557
{
@@ -1823,7 +1826,7 @@ namespace Aws
1823
1826
{
1824
1827
if (jsonView.ValueExists (" localDeployments" ))
1825
1828
{
1826
- listLocalDeploymentsResponse.m_localDeployments = {} ;
1829
+ listLocalDeploymentsResponse.m_localDeployments = Crt::Vector<LocalDeployment>() ;
1827
1830
for (const Crt::JsonView &listOfLocalDeploymentsJsonView : jsonView.GetArray (" localDeployments" ))
1828
1831
{
1829
1832
Crt::Optional<LocalDeployment> listOfLocalDeploymentsItem;
@@ -2007,7 +2010,7 @@ namespace Aws
2007
2010
{
2008
2011
if (jsonView.ValueExists (" results" ))
2009
2012
{
2010
- listNamedShadowsForThingResponse.m_results = {} ;
2013
+ listNamedShadowsForThingResponse.m_results = Crt::Vector<Crt::String>() ;
2011
2014
for (const Crt::JsonView &namedShadowListJsonView : jsonView.GetArray (" results" ))
2012
2015
{
2013
2016
Crt::Optional<Crt::String> namedShadowListItem;
@@ -2268,7 +2271,7 @@ namespace Aws
2268
2271
}
2269
2272
if (jsonView.ValueExists (" versionStage" ))
2270
2273
{
2271
- getSecretValueResponse.m_versionStage = {} ;
2274
+ getSecretValueResponse.m_versionStage = Crt::Vector<Crt::String>() ;
2272
2275
for (const Crt::JsonView &secretVersionListJsonView : jsonView.GetArray (" versionStage" ))
2273
2276
{
2274
2277
Crt::Optional<Crt::String> secretVersionListItem;
@@ -2866,7 +2869,7 @@ namespace Aws
2866
2869
{
2867
2870
if (jsonView.ValueExists (" keyPath" ))
2868
2871
{
2869
- updateConfigurationRequest.m_keyPath = {} ;
2872
+ updateConfigurationRequest.m_keyPath = Crt::Vector<Crt::String>() ;
2870
2873
for (const Crt::JsonView &keyPathJsonView : jsonView.GetArray (" keyPath" ))
2871
2874
{
2872
2875
Crt::Optional<Crt::String> keyPathItem;
@@ -3394,7 +3397,7 @@ namespace Aws
3394
3397
{
3395
3398
if (jsonView.ValueExists (" components" ))
3396
3399
{
3397
- listComponentsResponse.m_components = {} ;
3400
+ listComponentsResponse.m_components = Crt::Vector<ComponentDetails>() ;
3398
3401
for (const Crt::JsonView &listOfComponentsJsonView : jsonView.GetArray (" components" ))
3399
3402
{
3400
3403
Crt::Optional<ComponentDetails> listOfComponentsItem;
@@ -3815,7 +3818,7 @@ namespace Aws
3815
3818
}
3816
3819
if (jsonView.ValueExists (" keyPath" ))
3817
3820
{
3818
- getConfigurationRequest.m_keyPath = {} ;
3821
+ getConfigurationRequest.m_keyPath = Crt::Vector<Crt::String>() ;
3819
3822
for (const Crt::JsonView &keyPathJsonView : jsonView.GetArray (" keyPath" ))
3820
3823
{
3821
3824
Crt::Optional<Crt::String> keyPathItem;
@@ -4240,7 +4243,7 @@ namespace Aws
4240
4243
}
4241
4244
if (jsonView.ValueExists (" keyPath" ))
4242
4245
{
4243
- subscribeToConfigurationUpdateRequest.m_keyPath = {} ;
4246
+ subscribeToConfigurationUpdateRequest.m_keyPath = Crt::Vector<Crt::String>() ;
4244
4247
for (const Crt::JsonView &keyPathJsonView : jsonView.GetArray (" keyPath" ))
4245
4248
{
4246
4249
Crt::Optional<Crt::String> keyPathItem;
0 commit comments