Skip to content

Commit

Permalink
Documentation updates for Amazon Verified Permissions. Increases max …
Browse files Browse the repository at this point in the history
…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.
  • Loading branch information
aws-sdk-cpp-automation committed Aug 22, 2023
1 parent 6952c4f commit 9f2214b
Show file tree
Hide file tree
Showing 26 changed files with 1,109 additions and 822 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.11.147
1.11.148
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,7 @@ namespace CostExplorer

/**
* <p>Retrieves the details for a Savings Plan recommendation. These details
* include the hourly data-points that construct the new cost, coverage, and
* include the hourly data-points that construct the cost, coverage, and
* utilization charts.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/GetSavingsPlanPurchaseRecommendationDetails">AWS
* API Reference</a></p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,88 @@ namespace Model
*/
inline CostAllocationTag& WithStatus(CostAllocationTagStatus&& value) { SetStatus(std::move(value)); return *this;}


/**
* <p>The last date that the tag was either activated or deactivated.</p>
*/
inline const Aws::String& GetLastUpdatedDate() const{ return m_lastUpdatedDate; }

/**
* <p>The last date that the tag was either activated or deactivated.</p>
*/
inline bool LastUpdatedDateHasBeenSet() const { return m_lastUpdatedDateHasBeenSet; }

/**
* <p>The last date that the tag was either activated or deactivated.</p>
*/
inline void SetLastUpdatedDate(const Aws::String& value) { m_lastUpdatedDateHasBeenSet = true; m_lastUpdatedDate = value; }

/**
* <p>The last date that the tag was either activated or deactivated.</p>
*/
inline void SetLastUpdatedDate(Aws::String&& value) { m_lastUpdatedDateHasBeenSet = true; m_lastUpdatedDate = std::move(value); }

/**
* <p>The last date that the tag was either activated or deactivated.</p>
*/
inline void SetLastUpdatedDate(const char* value) { m_lastUpdatedDateHasBeenSet = true; m_lastUpdatedDate.assign(value); }

/**
* <p>The last date that the tag was either activated or deactivated.</p>
*/
inline CostAllocationTag& WithLastUpdatedDate(const Aws::String& value) { SetLastUpdatedDate(value); return *this;}

/**
* <p>The last date that the tag was either activated or deactivated.</p>
*/
inline CostAllocationTag& WithLastUpdatedDate(Aws::String&& value) { SetLastUpdatedDate(std::move(value)); return *this;}

/**
* <p>The last date that the tag was either activated or deactivated.</p>
*/
inline CostAllocationTag& WithLastUpdatedDate(const char* value) { SetLastUpdatedDate(value); return *this;}


/**
* <p>The last month that the tag was used on an Amazon Web Services resource.</p>
*/
inline const Aws::String& GetLastUsedDate() const{ return m_lastUsedDate; }

/**
* <p>The last month that the tag was used on an Amazon Web Services resource.</p>
*/
inline bool LastUsedDateHasBeenSet() const { return m_lastUsedDateHasBeenSet; }

/**
* <p>The last month that the tag was used on an Amazon Web Services resource.</p>
*/
inline void SetLastUsedDate(const Aws::String& value) { m_lastUsedDateHasBeenSet = true; m_lastUsedDate = value; }

/**
* <p>The last month that the tag was used on an Amazon Web Services resource.</p>
*/
inline void SetLastUsedDate(Aws::String&& value) { m_lastUsedDateHasBeenSet = true; m_lastUsedDate = std::move(value); }

/**
* <p>The last month that the tag was used on an Amazon Web Services resource.</p>
*/
inline void SetLastUsedDate(const char* value) { m_lastUsedDateHasBeenSet = true; m_lastUsedDate.assign(value); }

/**
* <p>The last month that the tag was used on an Amazon Web Services resource.</p>
*/
inline CostAllocationTag& WithLastUsedDate(const Aws::String& value) { SetLastUsedDate(value); return *this;}

/**
* <p>The last month that the tag was used on an Amazon Web Services resource.</p>
*/
inline CostAllocationTag& WithLastUsedDate(Aws::String&& value) { SetLastUsedDate(std::move(value)); return *this;}

/**
* <p>The last month that the tag was used on an Amazon Web Services resource.</p>
*/
inline CostAllocationTag& WithLastUsedDate(const char* value) { SetLastUsedDate(value); return *this;}

private:

Aws::String m_tagKey;
Expand All @@ -176,6 +258,12 @@ namespace Model

CostAllocationTagStatus m_status;
bool m_statusHasBeenSet = false;

Aws::String m_lastUpdatedDate;
bool m_lastUpdatedDateHasBeenSet = false;

Aws::String m_lastUsedDate;
bool m_lastUsedDateHasBeenSet = false;
};

} // namespace Model
Expand Down
Loading

0 comments on commit 9f2214b

Please sign in to comment.