Skip to content

Commit

Permalink
This release adds an API, BatchGetCommits, that allows retrieval of m…
Browse files Browse the repository at this point in the history
…etadata for multiple commits in an AWS CodeCommit repository.

CreateSnapshotFromVolumeRecoveryPoint API supports new parameter: Tags (to be attached to the created resource)

This release adds support for http header based routing and route prioritization.

GetJobBookmarks API is withdrawn.

This release adds an option to use private certificates from AWS Certificate Manager (ACM) to authenticate a Site-to-Site VPN connection's tunnel endpoints and customer gateway device.

This release adds support for querying S3 Requester Pays buckets. Users can enable this feature through their Workgroup settings.
  • Loading branch information
aws-sdk-cpp-automation committed Aug 15, 2019
1 parent 284350b commit efd887c
Show file tree
Hide file tree
Showing 68 changed files with 3,936 additions and 788 deletions.
Expand Up @@ -35,7 +35,8 @@ namespace Model

/**
* <p>An object representing the AWS Cloud Map attribute information for your
* virtual node.</p><p><h3>See Also:</h3> <a
* virtual
node.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/AwsCloudMapInstanceAttribute">AWS
* API Reference</a></p>
*/
Expand All @@ -50,64 +51,64 @@ namespace Model

/**
* <p>The name of an AWS Cloud Map service instance attribute key. Any AWS Cloud
* Map service instance
that contains the specified key and value is
* Map service
instance that contains the specified key and value is
* returned.</p>
*/
inline const Aws::String& GetKey() const{ return m_key; }

/**
* <p>The name of an AWS Cloud Map service instance attribute key. Any AWS Cloud
* Map service instance
that contains the specified key and value is
* Map service
instance that contains the specified key and value is
* returned.</p>
*/
inline bool KeyHasBeenSet() const { return m_keyHasBeenSet; }

/**
* <p>The name of an AWS Cloud Map service instance attribute key. Any AWS Cloud
* Map service instance
that contains the specified key and value is
* Map service
instance that contains the specified key and value is
* returned.</p>
*/
inline void SetKey(const Aws::String& value) { m_keyHasBeenSet = true; m_key = value; }

/**
* <p>The name of an AWS Cloud Map service instance attribute key. Any AWS Cloud
* Map service instance
that contains the specified key and value is
* Map service
instance that contains the specified key and value is
* returned.</p>
*/
inline void SetKey(Aws::String&& value) { m_keyHasBeenSet = true; m_key = std::move(value); }

/**
* <p>The name of an AWS Cloud Map service instance attribute key. Any AWS Cloud
* Map service instance
that contains the specified key and value is
* Map service
instance that contains the specified key and value is
* returned.</p>
*/
inline void SetKey(const char* value) { m_keyHasBeenSet = true; m_key.assign(value); }

/**
* <p>The name of an AWS Cloud Map service instance attribute key. Any AWS Cloud
* Map service instance
that contains the specified key and value is
* Map service
instance that contains the specified key and value is
* returned.</p>
*/
inline AwsCloudMapInstanceAttribute& WithKey(const Aws::String& value) { SetKey(value); return *this;}

/**
* <p>The name of an AWS Cloud Map service instance attribute key. Any AWS Cloud
* Map service instance
that contains the specified key and value is
* Map service
instance that contains the specified key and value is
* returned.</p>
*/
inline AwsCloudMapInstanceAttribute& WithKey(Aws::String&& value) { SetKey(std::move(value)); return *this;}

/**
* <p>The name of an AWS Cloud Map service instance attribute key. Any AWS Cloud
* Map service instance
that contains the specified key and value is
* Map service
instance that contains the specified key and value is
* returned.</p>
*/
inline AwsCloudMapInstanceAttribute& WithKey(const char* value) { SetKey(value); return *this;}
Expand Down

0 comments on commit efd887c

Please sign in to comment.