forked from aws/aws-sdk-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support for a new API "GetMFADevice" to present MFA device metadata s…
…uch as device certifications Added time zone estimation support for journeys This release provides a way to search for existing tags within an instance. Before tagging a resource, ensure consistency by searching for pre-existing key:value pairs. Timestamp Starting Position For Kinesis and Kafka Data Sources in a Glue Streaming Job Add support for user.extra.sessionName in Kubernetes Audit Logs Findings.
- Loading branch information
1 parent
fa0b625
commit a5ad600
Showing
44 changed files
with
2,845 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.11.107 | ||
1.11.108 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
78 changes: 78 additions & 0 deletions
78
generated/src/aws-cpp-sdk-connect/include/aws/connect/model/ResourceTagsSearchCriteria.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
/** | ||
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* SPDX-License-Identifier: Apache-2.0. | ||
*/ | ||
|
||
#pragma once | ||
#include <aws/connect/Connect_EXPORTS.h> | ||
#include <aws/connect/model/TagSearchCondition.h> | ||
#include <utility> | ||
|
||
namespace Aws | ||
{ | ||
namespace Utils | ||
{ | ||
namespace Json | ||
{ | ||
class JsonValue; | ||
class JsonView; | ||
} // namespace Json | ||
} // namespace Utils | ||
namespace Connect | ||
{ | ||
namespace Model | ||
{ | ||
|
||
/** | ||
* <p>The search criteria to be used to search tags.</p><p><h3>See Also:</h3> <a | ||
* href="http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ResourceTagsSearchCriteria">AWS | ||
* API Reference</a></p> | ||
*/ | ||
class ResourceTagsSearchCriteria | ||
{ | ||
public: | ||
AWS_CONNECT_API ResourceTagsSearchCriteria(); | ||
AWS_CONNECT_API ResourceTagsSearchCriteria(Aws::Utils::Json::JsonView jsonValue); | ||
AWS_CONNECT_API ResourceTagsSearchCriteria& operator=(Aws::Utils::Json::JsonView jsonValue); | ||
AWS_CONNECT_API Aws::Utils::Json::JsonValue Jsonize() const; | ||
|
||
|
||
/** | ||
* <p>The search criteria to be used to return tags.</p> | ||
*/ | ||
inline const TagSearchCondition& GetTagSearchCondition() const{ return m_tagSearchCondition; } | ||
|
||
/** | ||
* <p>The search criteria to be used to return tags.</p> | ||
*/ | ||
inline bool TagSearchConditionHasBeenSet() const { return m_tagSearchConditionHasBeenSet; } | ||
|
||
/** | ||
* <p>The search criteria to be used to return tags.</p> | ||
*/ | ||
inline void SetTagSearchCondition(const TagSearchCondition& value) { m_tagSearchConditionHasBeenSet = true; m_tagSearchCondition = value; } | ||
|
||
/** | ||
* <p>The search criteria to be used to return tags.</p> | ||
*/ | ||
inline void SetTagSearchCondition(TagSearchCondition&& value) { m_tagSearchConditionHasBeenSet = true; m_tagSearchCondition = std::move(value); } | ||
|
||
/** | ||
* <p>The search criteria to be used to return tags.</p> | ||
*/ | ||
inline ResourceTagsSearchCriteria& WithTagSearchCondition(const TagSearchCondition& value) { SetTagSearchCondition(value); return *this;} | ||
|
||
/** | ||
* <p>The search criteria to be used to return tags.</p> | ||
*/ | ||
inline ResourceTagsSearchCriteria& WithTagSearchCondition(TagSearchCondition&& value) { SetTagSearchCondition(std::move(value)); return *this;} | ||
|
||
private: | ||
|
||
TagSearchCondition m_tagSearchCondition; | ||
bool m_tagSearchConditionHasBeenSet = false; | ||
}; | ||
|
||
} // namespace Model | ||
} // namespace Connect | ||
} // namespace Aws |
Oops, something went wrong.