Skip to content

Commit 18364aa

Browse files
author
aws-sdk-cpp-automation
committed
This release supports tagging on Amazon Managed Blockchain resources.
Update to SDK to support label time zones in CloudWatch GetMetricData This SDK release adds support for specifying a custom delimiter for input CSV datasets and for CSV job outputs. This release allows Robomaker customers to specify configuration for uploading logs and artifacts generated by their simulation jobs. Documentation updates for AWS Well-Architected Tool Documentation updates for IoT DeleteOTAUpdate API
1 parent e08bbbd commit 18364aa

File tree

132 files changed

+7219
-1308
lines changed

Some content is hidden

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

132 files changed

+7219
-1308
lines changed

aws-cpp-sdk-core/include/aws/core/VersionConfig.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
* SPDX-License-Identifier: Apache-2.0.
44
*/
55

6-
#define AWS_SDK_VERSION_STRING "1.8.131"
6+
#define AWS_SDK_VERSION_STRING "1.8.132"

aws-cpp-sdk-databrew/include/aws/databrew/GlueDataBrewClient.h

Lines changed: 216 additions & 228 deletions
Large diffs are not rendered by default.

aws-cpp-sdk-databrew/include/aws/databrew/model/BatchDeleteRecipeVersionRequest.h

Lines changed: 35 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -34,88 +34,106 @@ namespace Model
3434

3535

3636
/**
37-
* <p>The name of the recipe to be modified.</p>
37+
* <p>The name of the recipe whose versions are to be deleted.</p>
3838
*/
3939
inline const Aws::String& GetName() const{ return m_name; }
4040

4141
/**
42-
* <p>The name of the recipe to be modified.</p>
42+
* <p>The name of the recipe whose versions are to be deleted.</p>
4343
*/
4444
inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
4545

4646
/**
47-
* <p>The name of the recipe to be modified.</p>
47+
* <p>The name of the recipe whose versions are to be deleted.</p>
4848
*/
4949
inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
5050

5151
/**
52-
* <p>The name of the recipe to be modified.</p>
52+
* <p>The name of the recipe whose versions are to be deleted.</p>
5353
*/
5454
inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
5555

5656
/**
57-
* <p>The name of the recipe to be modified.</p>
57+
* <p>The name of the recipe whose versions are to be deleted.</p>
5858
*/
5959
inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
6060

6161
/**
62-
* <p>The name of the recipe to be modified.</p>
62+
* <p>The name of the recipe whose versions are to be deleted.</p>
6363
*/
6464
inline BatchDeleteRecipeVersionRequest& WithName(const Aws::String& value) { SetName(value); return *this;}
6565

6666
/**
67-
* <p>The name of the recipe to be modified.</p>
67+
* <p>The name of the recipe whose versions are to be deleted.</p>
6868
*/
6969
inline BatchDeleteRecipeVersionRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
7070

7171
/**
72-
* <p>The name of the recipe to be modified.</p>
72+
* <p>The name of the recipe whose versions are to be deleted.</p>
7373
*/
7474
inline BatchDeleteRecipeVersionRequest& WithName(const char* value) { SetName(value); return *this;}
7575

7676

7777
/**
78-
* <p>An array of version identifiers to be deleted.</p>
78+
* <p>An array of version identifiers, for the recipe versions to be deleted. You
79+
* can specify numeric versions (<code>X.Y</code>) or <code>LATEST_WORKING</code>.
80+
* <code>LATEST_PUBLISHED</code> is not supported.</p>
7981
*/
8082
inline const Aws::Vector<Aws::String>& GetRecipeVersions() const{ return m_recipeVersions; }
8183

8284
/**
83-
* <p>An array of version identifiers to be deleted.</p>
85+
* <p>An array of version identifiers, for the recipe versions to be deleted. You
86+
* can specify numeric versions (<code>X.Y</code>) or <code>LATEST_WORKING</code>.
87+
* <code>LATEST_PUBLISHED</code> is not supported.</p>
8488
*/
8589
inline bool RecipeVersionsHasBeenSet() const { return m_recipeVersionsHasBeenSet; }
8690

8791
/**
88-
* <p>An array of version identifiers to be deleted.</p>
92+
* <p>An array of version identifiers, for the recipe versions to be deleted. You
93+
* can specify numeric versions (<code>X.Y</code>) or <code>LATEST_WORKING</code>.
94+
* <code>LATEST_PUBLISHED</code> is not supported.</p>
8995
*/
9096
inline void SetRecipeVersions(const Aws::Vector<Aws::String>& value) { m_recipeVersionsHasBeenSet = true; m_recipeVersions = value; }
9197

9298
/**
93-
* <p>An array of version identifiers to be deleted.</p>
99+
* <p>An array of version identifiers, for the recipe versions to be deleted. You
100+
* can specify numeric versions (<code>X.Y</code>) or <code>LATEST_WORKING</code>.
101+
* <code>LATEST_PUBLISHED</code> is not supported.</p>
94102
*/
95103
inline void SetRecipeVersions(Aws::Vector<Aws::String>&& value) { m_recipeVersionsHasBeenSet = true; m_recipeVersions = std::move(value); }
96104

97105
/**
98-
* <p>An array of version identifiers to be deleted.</p>
106+
* <p>An array of version identifiers, for the recipe versions to be deleted. You
107+
* can specify numeric versions (<code>X.Y</code>) or <code>LATEST_WORKING</code>.
108+
* <code>LATEST_PUBLISHED</code> is not supported.</p>
99109
*/
100110
inline BatchDeleteRecipeVersionRequest& WithRecipeVersions(const Aws::Vector<Aws::String>& value) { SetRecipeVersions(value); return *this;}
101111

102112
/**
103-
* <p>An array of version identifiers to be deleted.</p>
113+
* <p>An array of version identifiers, for the recipe versions to be deleted. You
114+
* can specify numeric versions (<code>X.Y</code>) or <code>LATEST_WORKING</code>.
115+
* <code>LATEST_PUBLISHED</code> is not supported.</p>
104116
*/
105117
inline BatchDeleteRecipeVersionRequest& WithRecipeVersions(Aws::Vector<Aws::String>&& value) { SetRecipeVersions(std::move(value)); return *this;}
106118

107119
/**
108-
* <p>An array of version identifiers to be deleted.</p>
120+
* <p>An array of version identifiers, for the recipe versions to be deleted. You
121+
* can specify numeric versions (<code>X.Y</code>) or <code>LATEST_WORKING</code>.
122+
* <code>LATEST_PUBLISHED</code> is not supported.</p>
109123
*/
110124
inline BatchDeleteRecipeVersionRequest& AddRecipeVersions(const Aws::String& value) { m_recipeVersionsHasBeenSet = true; m_recipeVersions.push_back(value); return *this; }
111125

112126
/**
113-
* <p>An array of version identifiers to be deleted.</p>
127+
* <p>An array of version identifiers, for the recipe versions to be deleted. You
128+
* can specify numeric versions (<code>X.Y</code>) or <code>LATEST_WORKING</code>.
129+
* <code>LATEST_PUBLISHED</code> is not supported.</p>
114130
*/
115131
inline BatchDeleteRecipeVersionRequest& AddRecipeVersions(Aws::String&& value) { m_recipeVersionsHasBeenSet = true; m_recipeVersions.push_back(std::move(value)); return *this; }
116132

117133
/**
118-
* <p>An array of version identifiers to be deleted.</p>
134+
* <p>An array of version identifiers, for the recipe versions to be deleted. You
135+
* can specify numeric versions (<code>X.Y</code>) or <code>LATEST_WORKING</code>.
136+
* <code>LATEST_PUBLISHED</code> is not supported.</p>
119137
*/
120138
inline BatchDeleteRecipeVersionRequest& AddRecipeVersions(const char* value) { m_recipeVersionsHasBeenSet = true; m_recipeVersions.push_back(value); return *this; }
121139

aws-cpp-sdk-databrew/include/aws/databrew/model/BatchDeleteRecipeVersionResult.h

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -71,37 +71,44 @@ namespace Model
7171

7272

7373
/**
74-
* <p>Errors, if any, that were encountered when deleting the recipe versions.</p>
74+
* <p>Errors, if any, that occurred while attempting to delete the recipe
75+
* versions.</p>
7576
*/
7677
inline const Aws::Vector<RecipeVersionErrorDetail>& GetErrors() const{ return m_errors; }
7778

7879
/**
79-
* <p>Errors, if any, that were encountered when deleting the recipe versions.</p>
80+
* <p>Errors, if any, that occurred while attempting to delete the recipe
81+
* versions.</p>
8082
*/
8183
inline void SetErrors(const Aws::Vector<RecipeVersionErrorDetail>& value) { m_errors = value; }
8284

8385
/**
84-
* <p>Errors, if any, that were encountered when deleting the recipe versions.</p>
86+
* <p>Errors, if any, that occurred while attempting to delete the recipe
87+
* versions.</p>
8588
*/
8689
inline void SetErrors(Aws::Vector<RecipeVersionErrorDetail>&& value) { m_errors = std::move(value); }
8790

8891
/**
89-
* <p>Errors, if any, that were encountered when deleting the recipe versions.</p>
92+
* <p>Errors, if any, that occurred while attempting to delete the recipe
93+
* versions.</p>
9094
*/
9195
inline BatchDeleteRecipeVersionResult& WithErrors(const Aws::Vector<RecipeVersionErrorDetail>& value) { SetErrors(value); return *this;}
9296

9397
/**
94-
* <p>Errors, if any, that were encountered when deleting the recipe versions.</p>
98+
* <p>Errors, if any, that occurred while attempting to delete the recipe
99+
* versions.</p>
95100
*/
96101
inline BatchDeleteRecipeVersionResult& WithErrors(Aws::Vector<RecipeVersionErrorDetail>&& value) { SetErrors(std::move(value)); return *this;}
97102

98103
/**
99-
* <p>Errors, if any, that were encountered when deleting the recipe versions.</p>
104+
* <p>Errors, if any, that occurred while attempting to delete the recipe
105+
* versions.</p>
100106
*/
101107
inline BatchDeleteRecipeVersionResult& AddErrors(const RecipeVersionErrorDetail& value) { m_errors.push_back(value); return *this; }
102108

103109
/**
104-
* <p>Errors, if any, that were encountered when deleting the recipe versions.</p>
110+
* <p>Errors, if any, that occurred while attempting to delete the recipe
111+
* versions.</p>
105112
*/
106113
inline BatchDeleteRecipeVersionResult& AddErrors(RecipeVersionErrorDetail&& value) { m_errors.push_back(std::move(value)); return *this; }
107114

aws-cpp-sdk-databrew/include/aws/databrew/model/ConditionExpression.h

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -46,63 +46,63 @@ namespace Model
4646
/**
4747
* <p>A specific condition to apply to a recipe action. For more information, see
4848
* <a
49-
* href="https://docs.aws.amazon.com/databrew/latest/dg/recipe-structure.html">Recipe
49+
* href="https://docs.aws.amazon.com/databrew/latest/dg/recipes.html#recipes.structure">Recipe
5050
* structure</a> in the <i>AWS Glue DataBrew Developer Guide</i>.</p>
5151
*/
5252
inline const Aws::String& GetCondition() const{ return m_condition; }
5353

5454
/**
5555
* <p>A specific condition to apply to a recipe action. For more information, see
5656
* <a
57-
* href="https://docs.aws.amazon.com/databrew/latest/dg/recipe-structure.html">Recipe
57+
* href="https://docs.aws.amazon.com/databrew/latest/dg/recipes.html#recipes.structure">Recipe
5858
* structure</a> in the <i>AWS Glue DataBrew Developer Guide</i>.</p>
5959
*/
6060
inline bool ConditionHasBeenSet() const { return m_conditionHasBeenSet; }
6161

6262
/**
6363
* <p>A specific condition to apply to a recipe action. For more information, see
6464
* <a
65-
* href="https://docs.aws.amazon.com/databrew/latest/dg/recipe-structure.html">Recipe
65+
* href="https://docs.aws.amazon.com/databrew/latest/dg/recipes.html#recipes.structure">Recipe
6666
* structure</a> in the <i>AWS Glue DataBrew Developer Guide</i>.</p>
6767
*/
6868
inline void SetCondition(const Aws::String& value) { m_conditionHasBeenSet = true; m_condition = value; }
6969

7070
/**
7171
* <p>A specific condition to apply to a recipe action. For more information, see
7272
* <a
73-
* href="https://docs.aws.amazon.com/databrew/latest/dg/recipe-structure.html">Recipe
73+
* href="https://docs.aws.amazon.com/databrew/latest/dg/recipes.html#recipes.structure">Recipe
7474
* structure</a> in the <i>AWS Glue DataBrew Developer Guide</i>.</p>
7575
*/
7676
inline void SetCondition(Aws::String&& value) { m_conditionHasBeenSet = true; m_condition = std::move(value); }
7777

7878
/**
7979
* <p>A specific condition to apply to a recipe action. For more information, see
8080
* <a
81-
* href="https://docs.aws.amazon.com/databrew/latest/dg/recipe-structure.html">Recipe
81+
* href="https://docs.aws.amazon.com/databrew/latest/dg/recipes.html#recipes.structure">Recipe
8282
* structure</a> in the <i>AWS Glue DataBrew Developer Guide</i>.</p>
8383
*/
8484
inline void SetCondition(const char* value) { m_conditionHasBeenSet = true; m_condition.assign(value); }
8585

8686
/**
8787
* <p>A specific condition to apply to a recipe action. For more information, see
8888
* <a
89-
* href="https://docs.aws.amazon.com/databrew/latest/dg/recipe-structure.html">Recipe
89+
* href="https://docs.aws.amazon.com/databrew/latest/dg/recipes.html#recipes.structure">Recipe
9090
* structure</a> in the <i>AWS Glue DataBrew Developer Guide</i>.</p>
9191
*/
9292
inline ConditionExpression& WithCondition(const Aws::String& value) { SetCondition(value); return *this;}
9393

9494
/**
9595
* <p>A specific condition to apply to a recipe action. For more information, see
9696
* <a
97-
* href="https://docs.aws.amazon.com/databrew/latest/dg/recipe-structure.html">Recipe
97+
* href="https://docs.aws.amazon.com/databrew/latest/dg/recipes.html#recipes.structure">Recipe
9898
* structure</a> in the <i>AWS Glue DataBrew Developer Guide</i>.</p>
9999
*/
100100
inline ConditionExpression& WithCondition(Aws::String&& value) { SetCondition(std::move(value)); return *this;}
101101

102102
/**
103103
* <p>A specific condition to apply to a recipe action. For more information, see
104104
* <a
105-
* href="https://docs.aws.amazon.com/databrew/latest/dg/recipe-structure.html">Recipe
105+
* href="https://docs.aws.amazon.com/databrew/latest/dg/recipes.html#recipes.structure">Recipe
106106
* structure</a> in the <i>AWS Glue DataBrew Developer Guide</i>.</p>
107107
*/
108108
inline ConditionExpression& WithCondition(const char* value) { SetCondition(value); return *this;}
@@ -150,42 +150,42 @@ namespace Model
150150

151151

152152
/**
153-
* <p>A column to apply this condition to, within an AWS Glue DataBrew dataset.</p>
153+
* <p>A column to apply this condition to.</p>
154154
*/
155155
inline const Aws::String& GetTargetColumn() const{ return m_targetColumn; }
156156

157157
/**
158-
* <p>A column to apply this condition to, within an AWS Glue DataBrew dataset.</p>
158+
* <p>A column to apply this condition to.</p>
159159
*/
160160
inline bool TargetColumnHasBeenSet() const { return m_targetColumnHasBeenSet; }
161161

162162
/**
163-
* <p>A column to apply this condition to, within an AWS Glue DataBrew dataset.</p>
163+
* <p>A column to apply this condition to.</p>
164164
*/
165165
inline void SetTargetColumn(const Aws::String& value) { m_targetColumnHasBeenSet = true; m_targetColumn = value; }
166166

167167
/**
168-
* <p>A column to apply this condition to, within an AWS Glue DataBrew dataset.</p>
168+
* <p>A column to apply this condition to.</p>
169169
*/
170170
inline void SetTargetColumn(Aws::String&& value) { m_targetColumnHasBeenSet = true; m_targetColumn = std::move(value); }
171171

172172
/**
173-
* <p>A column to apply this condition to, within an AWS Glue DataBrew dataset.</p>
173+
* <p>A column to apply this condition to.</p>
174174
*/
175175
inline void SetTargetColumn(const char* value) { m_targetColumnHasBeenSet = true; m_targetColumn.assign(value); }
176176

177177
/**
178-
* <p>A column to apply this condition to, within an AWS Glue DataBrew dataset.</p>
178+
* <p>A column to apply this condition to.</p>
179179
*/
180180
inline ConditionExpression& WithTargetColumn(const Aws::String& value) { SetTargetColumn(value); return *this;}
181181

182182
/**
183-
* <p>A column to apply this condition to, within an AWS Glue DataBrew dataset.</p>
183+
* <p>A column to apply this condition to.</p>
184184
*/
185185
inline ConditionExpression& WithTargetColumn(Aws::String&& value) { SetTargetColumn(std::move(value)); return *this;}
186186

187187
/**
188-
* <p>A column to apply this condition to, within an AWS Glue DataBrew dataset.</p>
188+
* <p>A column to apply this condition to.</p>
189189
*/
190190
inline ConditionExpression& WithTargetColumn(const char* value) { SetTargetColumn(value); return *this;}
191191

aws-cpp-sdk-databrew/include/aws/databrew/model/CreateDatasetRequest.h

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -36,42 +36,50 @@ namespace Model
3636

3737

3838
/**
39-
* <p>The name of the dataset to be created.</p>
39+
* <p>The name of the dataset to be created. Valid characters are alphanumeric
40+
* (A-Z, a-z, 0-9), hyphen (-), period (.), and space.</p>
4041
*/
4142
inline const Aws::String& GetName() const{ return m_name; }
4243

4344
/**
44-
* <p>The name of the dataset to be created.</p>
45+
* <p>The name of the dataset to be created. Valid characters are alphanumeric
46+
* (A-Z, a-z, 0-9), hyphen (-), period (.), and space.</p>
4547
*/
4648
inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
4749

4850
/**
49-
* <p>The name of the dataset to be created.</p>
51+
* <p>The name of the dataset to be created. Valid characters are alphanumeric
52+
* (A-Z, a-z, 0-9), hyphen (-), period (.), and space.</p>
5053
*/
5154
inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
5255

5356
/**
54-
* <p>The name of the dataset to be created.</p>
57+
* <p>The name of the dataset to be created. Valid characters are alphanumeric
58+
* (A-Z, a-z, 0-9), hyphen (-), period (.), and space.</p>
5559
*/
5660
inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
5761

5862
/**
59-
* <p>The name of the dataset to be created.</p>
63+
* <p>The name of the dataset to be created. Valid characters are alphanumeric
64+
* (A-Z, a-z, 0-9), hyphen (-), period (.), and space.</p>
6065
*/
6166
inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
6267

6368
/**
64-
* <p>The name of the dataset to be created.</p>
69+
* <p>The name of the dataset to be created. Valid characters are alphanumeric
70+
* (A-Z, a-z, 0-9), hyphen (-), period (.), and space.</p>
6571
*/
6672
inline CreateDatasetRequest& WithName(const Aws::String& value) { SetName(value); return *this;}
6773

6874
/**
69-
* <p>The name of the dataset to be created.</p>
75+
* <p>The name of the dataset to be created. Valid characters are alphanumeric
76+
* (A-Z, a-z, 0-9), hyphen (-), period (.), and space.</p>
7077
*/
7178
inline CreateDatasetRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
7279

7380
/**
74-
* <p>The name of the dataset to be created.</p>
81+
* <p>The name of the dataset to be created. Valid characters are alphanumeric
82+
* (A-Z, a-z, 0-9), hyphen (-), period (.), and space.</p>
7583
*/
7684
inline CreateDatasetRequest& WithName(const char* value) { SetName(value); return *this;}
7785

0 commit comments

Comments
 (0)