Skip to content

Commit 64f91f1

Browse files
committed
fix idempotency token initialization value
1 parent 085397c commit 64f91f1

File tree

1,016 files changed

+2039
-2032
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,016 files changed

+2039
-2032
lines changed

generated/src/aws-cpp-sdk-accessanalyzer/include/aws/accessanalyzer/model/ApplyArchiveRuleRequest.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ namespace Model
7979
Aws::String m_ruleName;
8080
bool m_ruleNameHasBeenSet = false;
8181

82-
Aws::String m_clientToken;
83-
bool m_clientTokenHasBeenSet = false;
82+
Aws::String m_clientToken{Aws::Utils::UUID::PseudoRandomUUID()};
83+
bool m_clientTokenHasBeenSet = true;
8484
};
8585

8686
} // namespace Model

generated/src/aws-cpp-sdk-accessanalyzer/include/aws/accessanalyzer/model/CreateAccessPreviewRequest.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@ namespace Model
8989
Aws::Map<Aws::String, Configuration> m_configurations;
9090
bool m_configurationsHasBeenSet = false;
9191

92-
Aws::String m_clientToken;
93-
bool m_clientTokenHasBeenSet = false;
92+
Aws::String m_clientToken{Aws::Utils::UUID::PseudoRandomUUID()};
93+
bool m_clientTokenHasBeenSet = true;
9494
};
9595

9696
} // namespace Model

generated/src/aws-cpp-sdk-accessanalyzer/include/aws/accessanalyzer/model/CreateAnalyzerRequest.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,8 @@ namespace Model
143143
Aws::Map<Aws::String, Aws::String> m_tags;
144144
bool m_tagsHasBeenSet = false;
145145

146-
Aws::String m_clientToken;
147-
bool m_clientTokenHasBeenSet = false;
146+
Aws::String m_clientToken{Aws::Utils::UUID::PseudoRandomUUID()};
147+
bool m_clientTokenHasBeenSet = true;
148148

149149
AnalyzerConfiguration m_configuration;
150150
bool m_configurationHasBeenSet = false;

generated/src/aws-cpp-sdk-accessanalyzer/include/aws/accessanalyzer/model/CreateArchiveRuleRequest.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,8 @@ namespace Model
100100
Aws::Map<Aws::String, Criterion> m_filter;
101101
bool m_filterHasBeenSet = false;
102102

103-
Aws::String m_clientToken;
104-
bool m_clientTokenHasBeenSet = false;
103+
Aws::String m_clientToken{Aws::Utils::UUID::PseudoRandomUUID()};
104+
bool m_clientTokenHasBeenSet = true;
105105
};
106106

107107
} // namespace Model

generated/src/aws-cpp-sdk-accessanalyzer/include/aws/accessanalyzer/model/DeleteAnalyzerRequest.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ namespace Model
7070
Aws::String m_analyzerName;
7171
bool m_analyzerNameHasBeenSet = false;
7272

73-
Aws::String m_clientToken;
74-
bool m_clientTokenHasBeenSet = false;
73+
Aws::String m_clientToken{Aws::Utils::UUID::PseudoRandomUUID()};
74+
bool m_clientTokenHasBeenSet = true;
7575
};
7676

7777
} // namespace Model

generated/src/aws-cpp-sdk-accessanalyzer/include/aws/accessanalyzer/model/DeleteArchiveRuleRequest.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ namespace Model
8585
Aws::String m_ruleName;
8686
bool m_ruleNameHasBeenSet = false;
8787

88-
Aws::String m_clientToken;
89-
bool m_clientTokenHasBeenSet = false;
88+
Aws::String m_clientToken{Aws::Utils::UUID::PseudoRandomUUID()};
89+
bool m_clientTokenHasBeenSet = true;
9090
};
9191

9292
} // namespace Model

generated/src/aws-cpp-sdk-accessanalyzer/include/aws/accessanalyzer/model/StartPolicyGenerationRequest.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,8 @@ namespace Model
8686
CloudTrailDetails m_cloudTrailDetails;
8787
bool m_cloudTrailDetailsHasBeenSet = false;
8888

89-
Aws::String m_clientToken;
90-
bool m_clientTokenHasBeenSet = false;
89+
Aws::String m_clientToken{Aws::Utils::UUID::PseudoRandomUUID()};
90+
bool m_clientTokenHasBeenSet = true;
9191
};
9292

9393
} // namespace Model

generated/src/aws-cpp-sdk-accessanalyzer/include/aws/accessanalyzer/model/UpdateArchiveRuleRequest.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@ namespace Model
101101
Aws::Map<Aws::String, Criterion> m_filter;
102102
bool m_filterHasBeenSet = false;
103103

104-
Aws::String m_clientToken;
105-
bool m_clientTokenHasBeenSet = false;
104+
Aws::String m_clientToken{Aws::Utils::UUID::PseudoRandomUUID()};
105+
bool m_clientTokenHasBeenSet = true;
106106
};
107107

108108
} // namespace Model

generated/src/aws-cpp-sdk-accessanalyzer/include/aws/accessanalyzer/model/UpdateFindingsRequest.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,8 @@ namespace Model
116116
Aws::String m_resourceArn;
117117
bool m_resourceArnHasBeenSet = false;
118118

119-
Aws::String m_clientToken;
120-
bool m_clientTokenHasBeenSet = false;
119+
Aws::String m_clientToken{Aws::Utils::UUID::PseudoRandomUUID()};
120+
bool m_clientTokenHasBeenSet = true;
121121
};
122122

123123
} // namespace Model

generated/src/aws-cpp-sdk-amp/include/aws/amp/model/CreateAlertManagerDefinitionRequest.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ namespace Model
7979
///@}
8080
private:
8181

82-
Aws::String m_clientToken;
83-
bool m_clientTokenHasBeenSet = false;
82+
Aws::String m_clientToken{Aws::Utils::UUID::PseudoRandomUUID()};
83+
bool m_clientTokenHasBeenSet = true;
8484

8585
Aws::Utils::ByteBuffer m_data{};
8686
bool m_dataHasBeenSet = false;

generated/src/aws-cpp-sdk-amp/include/aws/amp/model/CreateLoggingConfigurationRequest.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ namespace Model
7676
///@}
7777
private:
7878

79-
Aws::String m_clientToken;
80-
bool m_clientTokenHasBeenSet = false;
79+
Aws::String m_clientToken{Aws::Utils::UUID::PseudoRandomUUID()};
80+
bool m_clientTokenHasBeenSet = true;
8181

8282
Aws::String m_logGroupArn;
8383
bool m_logGroupArnHasBeenSet = false;

generated/src/aws-cpp-sdk-amp/include/aws/amp/model/CreateRuleGroupsNamespaceRequest.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,8 @@ namespace Model
109109
///@}
110110
private:
111111

112-
Aws::String m_clientToken;
113-
bool m_clientTokenHasBeenSet = false;
112+
Aws::String m_clientToken{Aws::Utils::UUID::PseudoRandomUUID()};
113+
bool m_clientTokenHasBeenSet = true;
114114

115115
Aws::Utils::ByteBuffer m_data{};
116116
bool m_dataHasBeenSet = false;

generated/src/aws-cpp-sdk-amp/include/aws/amp/model/CreateScraperRequest.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,8 +141,8 @@ namespace Model
141141
Aws::String m_alias;
142142
bool m_aliasHasBeenSet = false;
143143

144-
Aws::String m_clientToken;
145-
bool m_clientTokenHasBeenSet = false;
144+
Aws::String m_clientToken{Aws::Utils::UUID::PseudoRandomUUID()};
145+
bool m_clientTokenHasBeenSet = true;
146146

147147
Destination m_destination;
148148
bool m_destinationHasBeenSet = false;

generated/src/aws-cpp-sdk-amp/include/aws/amp/model/CreateWorkspaceRequest.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@ namespace Model
101101
Aws::String m_alias;
102102
bool m_aliasHasBeenSet = false;
103103

104-
Aws::String m_clientToken;
105-
bool m_clientTokenHasBeenSet = false;
104+
Aws::String m_clientToken{Aws::Utils::UUID::PseudoRandomUUID()};
105+
bool m_clientTokenHasBeenSet = true;
106106

107107
Aws::String m_kmsKeyArn;
108108
bool m_kmsKeyArnHasBeenSet = false;

generated/src/aws-cpp-sdk-amp/include/aws/amp/model/DeleteAlertManagerDefinitionRequest.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ namespace Model
6969
///@}
7070
private:
7171

72-
Aws::String m_clientToken;
73-
bool m_clientTokenHasBeenSet = false;
72+
Aws::String m_clientToken{Aws::Utils::UUID::PseudoRandomUUID()};
73+
bool m_clientTokenHasBeenSet = true;
7474

7575
Aws::String m_workspaceId;
7676
bool m_workspaceIdHasBeenSet = false;

generated/src/aws-cpp-sdk-amp/include/aws/amp/model/DeleteLoggingConfigurationRequest.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ namespace Model
6969
///@}
7070
private:
7171

72-
Aws::String m_clientToken;
73-
bool m_clientTokenHasBeenSet = false;
72+
Aws::String m_clientToken{Aws::Utils::UUID::PseudoRandomUUID()};
73+
bool m_clientTokenHasBeenSet = true;
7474

7575
Aws::String m_workspaceId;
7676
bool m_workspaceIdHasBeenSet = false;

generated/src/aws-cpp-sdk-amp/include/aws/amp/model/DeleteRuleGroupsNamespaceRequest.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ namespace Model
8282
///@}
8383
private:
8484

85-
Aws::String m_clientToken;
86-
bool m_clientTokenHasBeenSet = false;
85+
Aws::String m_clientToken{Aws::Utils::UUID::PseudoRandomUUID()};
86+
bool m_clientTokenHasBeenSet = true;
8787

8888
Aws::String m_name;
8989
bool m_nameHasBeenSet = false;

generated/src/aws-cpp-sdk-amp/include/aws/amp/model/DeleteScraperRequest.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ namespace Model
6969
///@}
7070
private:
7171

72-
Aws::String m_clientToken;
73-
bool m_clientTokenHasBeenSet = false;
72+
Aws::String m_clientToken{Aws::Utils::UUID::PseudoRandomUUID()};
73+
bool m_clientTokenHasBeenSet = true;
7474

7575
Aws::String m_scraperId;
7676
bool m_scraperIdHasBeenSet = false;

generated/src/aws-cpp-sdk-amp/include/aws/amp/model/DeleteWorkspaceRequest.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ namespace Model
6969
///@}
7070
private:
7171

72-
Aws::String m_clientToken;
73-
bool m_clientTokenHasBeenSet = false;
72+
Aws::String m_clientToken{Aws::Utils::UUID::PseudoRandomUUID()};
73+
bool m_clientTokenHasBeenSet = true;
7474

7575
Aws::String m_workspaceId;
7676
bool m_workspaceIdHasBeenSet = false;

generated/src/aws-cpp-sdk-amp/include/aws/amp/model/PutAlertManagerDefinitionRequest.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ namespace Model
7979
///@}
8080
private:
8181

82-
Aws::String m_clientToken;
83-
bool m_clientTokenHasBeenSet = false;
82+
Aws::String m_clientToken{Aws::Utils::UUID::PseudoRandomUUID()};
83+
bool m_clientTokenHasBeenSet = true;
8484

8585
Aws::Utils::ByteBuffer m_data{};
8686
bool m_dataHasBeenSet = false;

generated/src/aws-cpp-sdk-amp/include/aws/amp/model/PutRuleGroupsNamespaceRequest.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,8 @@ namespace Model
9191
///@}
9292
private:
9393

94-
Aws::String m_clientToken;
95-
bool m_clientTokenHasBeenSet = false;
94+
Aws::String m_clientToken{Aws::Utils::UUID::PseudoRandomUUID()};
95+
bool m_clientTokenHasBeenSet = true;
9696

9797
Aws::Utils::ByteBuffer m_data{};
9898
bool m_dataHasBeenSet = false;

generated/src/aws-cpp-sdk-amp/include/aws/amp/model/UpdateLoggingConfigurationRequest.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ namespace Model
7676
///@}
7777
private:
7878

79-
Aws::String m_clientToken;
80-
bool m_clientTokenHasBeenSet = false;
79+
Aws::String m_clientToken{Aws::Utils::UUID::PseudoRandomUUID()};
80+
bool m_clientTokenHasBeenSet = true;
8181

8282
Aws::String m_logGroupArn;
8383
bool m_logGroupArnHasBeenSet = false;

generated/src/aws-cpp-sdk-amp/include/aws/amp/model/UpdateScraperRequest.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,8 @@ namespace Model
119119
Aws::String m_alias;
120120
bool m_aliasHasBeenSet = false;
121121

122-
Aws::String m_clientToken;
123-
bool m_clientTokenHasBeenSet = false;
122+
Aws::String m_clientToken{Aws::Utils::UUID::PseudoRandomUUID()};
123+
bool m_clientTokenHasBeenSet = true;
124124

125125
Destination m_destination;
126126
bool m_destinationHasBeenSet = false;

generated/src/aws-cpp-sdk-amp/include/aws/amp/model/UpdateWorkspaceAliasRequest.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ namespace Model
8080
Aws::String m_alias;
8181
bool m_aliasHasBeenSet = false;
8282

83-
Aws::String m_clientToken;
84-
bool m_clientTokenHasBeenSet = false;
83+
Aws::String m_clientToken{Aws::Utils::UUID::PseudoRandomUUID()};
84+
bool m_clientTokenHasBeenSet = true;
8585

8686
Aws::String m_workspaceId;
8787
bool m_workspaceIdHasBeenSet = false;

generated/src/aws-cpp-sdk-amp/include/aws/amp/model/UpdateWorkspaceConfigurationRequest.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@ namespace Model
9090
///@}
9191
private:
9292

93-
Aws::String m_clientToken;
94-
bool m_clientTokenHasBeenSet = false;
93+
Aws::String m_clientToken{Aws::Utils::UUID::PseudoRandomUUID()};
94+
bool m_clientTokenHasBeenSet = true;
9595

9696
Aws::Vector<LimitsPerLabelSet> m_limitsPerLabelSet;
9797
bool m_limitsPerLabelSetHasBeenSet = false;

generated/src/aws-cpp-sdk-amplifyuibuilder/include/aws/amplifyuibuilder/model/CreateComponentRequest.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ namespace Model
9595
Aws::String m_environmentName;
9696
bool m_environmentNameHasBeenSet = false;
9797

98-
Aws::String m_clientToken;
99-
bool m_clientTokenHasBeenSet = false;
98+
Aws::String m_clientToken{Aws::Utils::UUID::PseudoRandomUUID()};
99+
bool m_clientTokenHasBeenSet = true;
100100

101101
CreateComponentData m_componentToCreate;
102102
bool m_componentToCreateHasBeenSet = false;

generated/src/aws-cpp-sdk-amplifyuibuilder/include/aws/amplifyuibuilder/model/CreateFormRequest.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ namespace Model
9595
Aws::String m_environmentName;
9696
bool m_environmentNameHasBeenSet = false;
9797

98-
Aws::String m_clientToken;
99-
bool m_clientTokenHasBeenSet = false;
98+
Aws::String m_clientToken{Aws::Utils::UUID::PseudoRandomUUID()};
99+
bool m_clientTokenHasBeenSet = true;
100100

101101
CreateFormData m_formToCreate;
102102
bool m_formToCreateHasBeenSet = false;

generated/src/aws-cpp-sdk-amplifyuibuilder/include/aws/amplifyuibuilder/model/CreateThemeRequest.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ namespace Model
9595
Aws::String m_environmentName;
9696
bool m_environmentNameHasBeenSet = false;
9797

98-
Aws::String m_clientToken;
99-
bool m_clientTokenHasBeenSet = false;
98+
Aws::String m_clientToken{Aws::Utils::UUID::PseudoRandomUUID()};
99+
bool m_clientTokenHasBeenSet = true;
100100

101101
CreateThemeData m_themeToCreate;
102102
bool m_themeToCreateHasBeenSet = false;

generated/src/aws-cpp-sdk-amplifyuibuilder/include/aws/amplifyuibuilder/model/StartCodegenJobRequest.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@ namespace Model
9696
Aws::String m_environmentName;
9797
bool m_environmentNameHasBeenSet = false;
9898

99-
Aws::String m_clientToken;
100-
bool m_clientTokenHasBeenSet = false;
99+
Aws::String m_clientToken{Aws::Utils::UUID::PseudoRandomUUID()};
100+
bool m_clientTokenHasBeenSet = true;
101101

102102
StartCodegenJobData m_codegenJobToCreate;
103103
bool m_codegenJobToCreateHasBeenSet = false;

generated/src/aws-cpp-sdk-amplifyuibuilder/include/aws/amplifyuibuilder/model/UpdateComponentRequest.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,8 @@ namespace Model
110110
Aws::String m_id;
111111
bool m_idHasBeenSet = false;
112112

113-
Aws::String m_clientToken;
114-
bool m_clientTokenHasBeenSet = false;
113+
Aws::String m_clientToken{Aws::Utils::UUID::PseudoRandomUUID()};
114+
bool m_clientTokenHasBeenSet = true;
115115

116116
UpdateComponentData m_updatedComponent;
117117
bool m_updatedComponentHasBeenSet = false;

generated/src/aws-cpp-sdk-amplifyuibuilder/include/aws/amplifyuibuilder/model/UpdateFormRequest.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,8 @@ namespace Model
110110
Aws::String m_id;
111111
bool m_idHasBeenSet = false;
112112

113-
Aws::String m_clientToken;
114-
bool m_clientTokenHasBeenSet = false;
113+
Aws::String m_clientToken{Aws::Utils::UUID::PseudoRandomUUID()};
114+
bool m_clientTokenHasBeenSet = true;
115115

116116
UpdateFormData m_updatedForm;
117117
bool m_updatedFormHasBeenSet = false;

generated/src/aws-cpp-sdk-amplifyuibuilder/include/aws/amplifyuibuilder/model/UpdateThemeRequest.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,8 @@ namespace Model
110110
Aws::String m_id;
111111
bool m_idHasBeenSet = false;
112112

113-
Aws::String m_clientToken;
114-
bool m_clientTokenHasBeenSet = false;
113+
Aws::String m_clientToken{Aws::Utils::UUID::PseudoRandomUUID()};
114+
bool m_clientTokenHasBeenSet = true;
115115

116116
UpdateThemeData m_updatedTheme;
117117
bool m_updatedThemeHasBeenSet = false;

generated/src/aws-cpp-sdk-appfabric/include/aws/appfabric/model/CreateAppAuthorizationRequest.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,8 +160,8 @@ namespace Model
160160
AuthType m_authType{AuthType::NOT_SET};
161161
bool m_authTypeHasBeenSet = false;
162162

163-
Aws::String m_clientToken;
164-
bool m_clientTokenHasBeenSet = false;
163+
Aws::String m_clientToken{Aws::Utils::UUID::PseudoRandomUUID()};
164+
bool m_clientTokenHasBeenSet = true;
165165

166166
Aws::Vector<Tag> m_tags;
167167
bool m_tagsHasBeenSet = false;

generated/src/aws-cpp-sdk-appfabric/include/aws/appfabric/model/CreateAppBundleRequest.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,8 @@ namespace Model
8686
///@}
8787
private:
8888

89-
Aws::String m_clientToken;
90-
bool m_clientTokenHasBeenSet = false;
89+
Aws::String m_clientToken{Aws::Utils::UUID::PseudoRandomUUID()};
90+
bool m_clientTokenHasBeenSet = true;
9191

9292
Aws::String m_customerManagedKeyIdentifier;
9393
bool m_customerManagedKeyIdentifierHasBeenSet = false;

generated/src/aws-cpp-sdk-appfabric/include/aws/appfabric/model/CreateIngestionDestinationRequest.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,8 @@ namespace Model
136136
DestinationConfiguration m_destinationConfiguration;
137137
bool m_destinationConfigurationHasBeenSet = false;
138138

139-
Aws::String m_clientToken;
140-
bool m_clientTokenHasBeenSet = false;
139+
Aws::String m_clientToken{Aws::Utils::UUID::PseudoRandomUUID()};
140+
bool m_clientTokenHasBeenSet = true;
141141

142142
Aws::Vector<Tag> m_tags;
143143
bool m_tagsHasBeenSet = false;

generated/src/aws-cpp-sdk-appfabric/include/aws/appfabric/model/CreateIngestionRequest.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,8 @@ namespace Model
139139
IngestionType m_ingestionType{IngestionType::NOT_SET};
140140
bool m_ingestionTypeHasBeenSet = false;
141141

142-
Aws::String m_clientToken;
143-
bool m_clientTokenHasBeenSet = false;
142+
Aws::String m_clientToken{Aws::Utils::UUID::PseudoRandomUUID()};
143+
bool m_clientTokenHasBeenSet = true;
144144

145145
Aws::Vector<Tag> m_tags;
146146
bool m_tagsHasBeenSet = false;

0 commit comments

Comments
 (0)