@@ -166,6 +166,88 @@ namespace Model
166
166
*/
167
167
inline CostAllocationTag& WithStatus (CostAllocationTagStatus&& value) { SetStatus (std::move (value)); return *this ;}
168
168
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
+
169
251
private:
170
252
171
253
Aws::String m_tagKey;
@@ -176,6 +258,12 @@ namespace Model
176
258
177
259
CostAllocationTagStatus m_status;
178
260
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 ;
179
267
};
180
268
181
269
} // namespace Model
0 commit comments