Skip to content

Commit 9f2214b

Browse files
committedAug 22, 2023
Documentation updates for Amazon Verified Permissions. Increases max results per page for ListPolicyStores, ListPolicies, and ListPolicyTemplates APIs from 20 to 50.
Adding parameters to CreateCustomDbEngineVersion reserved for future use. Global Accelerator now supports Client Ip Preservation for Network Load Balancer endpoints. This release adds the LastUpdatedDate and LastUsedDate timestamps to help you manage your cost allocation tags.
·
1.11.6081.11.148
1 parent 6952c4f commit 9f2214b

File tree

26 files changed

+1109
-822
lines changed

26 files changed

+1109
-822
lines changed
 

‎VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.11.147
1+
1.11.148

‎generated/src/aws-cpp-sdk-ce/include/aws/ce/CostExplorerClient.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -652,7 +652,7 @@ namespace CostExplorer
652652

653653
/**
654654
* <p>Retrieves the details for a Savings Plan recommendation. These details
655-
* include the hourly data-points that construct the new cost, coverage, and
655+
* include the hourly data-points that construct the cost, coverage, and
656656
* utilization charts.</p><p><h3>See Also:</h3> <a
657657
* href="http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/GetSavingsPlanPurchaseRecommendationDetails">AWS
658658
* API Reference</a></p>

‎generated/src/aws-cpp-sdk-ce/include/aws/ce/model/CostAllocationTag.h

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,88 @@ namespace Model
166166
*/
167167
inline CostAllocationTag& WithStatus(CostAllocationTagStatus&& value) { SetStatus(std::move(value)); return *this;}
168168

169+
170+
/**
171+
* <p>The last date that the tag was either activated or deactivated.</p>
172+
*/
173+
inline const Aws::String& GetLastUpdatedDate() const{ return m_lastUpdatedDate; }
174+
175+
/**
176+
* <p>The last date that the tag was either activated or deactivated.</p>
177+
*/
178+
inline bool LastUpdatedDateHasBeenSet() const { return m_lastUpdatedDateHasBeenSet; }
179+
180+
/**
181+
* <p>The last date that the tag was either activated or deactivated.</p>
182+
*/
183+
inline void SetLastUpdatedDate(const Aws::String& value) { m_lastUpdatedDateHasBeenSet = true; m_lastUpdatedDate = value; }
184+
185+
/**
186+
* <p>The last date that the tag was either activated or deactivated.</p>
187+
*/
188+
inline void SetLastUpdatedDate(Aws::String&& value) { m_lastUpdatedDateHasBeenSet = true; m_lastUpdatedDate = std::move(value); }
189+
190+
/**
191+
* <p>The last date that the tag was either activated or deactivated.</p>
192+
*/
193+
inline void SetLastUpdatedDate(const char* value) { m_lastUpdatedDateHasBeenSet = true; m_lastUpdatedDate.assign(value); }
194+
195+
/**
196+
* <p>The last date that the tag was either activated or deactivated.</p>
197+
*/
198+
inline CostAllocationTag& WithLastUpdatedDate(const Aws::String& value) { SetLastUpdatedDate(value); return *this;}
199+
200+
/**
201+
* <p>The last date that the tag was either activated or deactivated.</p>
202+
*/
203+
inline CostAllocationTag& WithLastUpdatedDate(Aws::String&& value) { SetLastUpdatedDate(std::move(value)); return *this;}
204+
205+
/**
206+
* <p>The last date that the tag was either activated or deactivated.</p>
207+
*/
208+
inline CostAllocationTag& WithLastUpdatedDate(const char* value) { SetLastUpdatedDate(value); return *this;}
209+
210+
211+
/**
212+
* <p>The last month that the tag was used on an Amazon Web Services resource.</p>
213+
*/
214+
inline const Aws::String& GetLastUsedDate() const{ return m_lastUsedDate; }
215+
216+
/**
217+
* <p>The last month that the tag was used on an Amazon Web Services resource.</p>
218+
*/
219+
inline bool LastUsedDateHasBeenSet() const { return m_lastUsedDateHasBeenSet; }
220+
221+
/**
222+
* <p>The last month that the tag was used on an Amazon Web Services resource.</p>
223+
*/
224+
inline void SetLastUsedDate(const Aws::String& value) { m_lastUsedDateHasBeenSet = true; m_lastUsedDate = value; }
225+
226+
/**
227+
* <p>The last month that the tag was used on an Amazon Web Services resource.</p>
228+
*/
229+
inline void SetLastUsedDate(Aws::String&& value) { m_lastUsedDateHasBeenSet = true; m_lastUsedDate = std::move(value); }
230+
231+
/**
232+
* <p>The last month that the tag was used on an Amazon Web Services resource.</p>
233+
*/
234+
inline void SetLastUsedDate(const char* value) { m_lastUsedDateHasBeenSet = true; m_lastUsedDate.assign(value); }
235+
236+
/**
237+
* <p>The last month that the tag was used on an Amazon Web Services resource.</p>
238+
*/
239+
inline CostAllocationTag& WithLastUsedDate(const Aws::String& value) { SetLastUsedDate(value); return *this;}
240+
241+
/**
242+
* <p>The last month that the tag was used on an Amazon Web Services resource.</p>
243+
*/
244+
inline CostAllocationTag& WithLastUsedDate(Aws::String&& value) { SetLastUsedDate(std::move(value)); return *this;}
245+
246+
/**
247+
* <p>The last month that the tag was used on an Amazon Web Services resource.</p>
248+
*/
249+
inline CostAllocationTag& WithLastUsedDate(const char* value) { SetLastUsedDate(value); return *this;}
250+
169251
private:
170252

171253
Aws::String m_tagKey;
@@ -176,6 +258,12 @@ namespace Model
176258

177259
CostAllocationTagStatus m_status;
178260
bool m_statusHasBeenSet = false;
261+
262+
Aws::String m_lastUpdatedDate;
263+
bool m_lastUpdatedDateHasBeenSet = false;
264+
265+
Aws::String m_lastUsedDate;
266+
bool m_lastUsedDateHasBeenSet = false;
179267
};
180268

181269
} // namespace Model

0 commit comments

Comments
 (0)
Please sign in to comment.