Skip to content

Commit d0d62c1

Browse files
author
Bret Ambrose
committed
Merge from master + additional unix config/export polish
2 parents 10e9795 + 8732f0a commit d0d62c1

File tree

4,140 files changed

+248846
-238822
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

4,140 files changed

+248846
-238822
lines changed

CMakeLists.txt

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,14 @@
1313
# permissions and limitations under the License.
1414
#
1515

16-
# minimum version of cmake that
17-
# (1) supports ExternalProject_Add URL_HASH
18-
# (2) correctly extracts OPENSSL's version number from openssl/opensslv.h in version 1.0.2d
1916
cmake_minimum_required (VERSION 2.8.12)
2017

18+
# 3.0 or higher is strongly suggested; build settings (target_compile_options/etc...) sometimes do not get propagated properly under certain conditions prior to this version
19+
# Making this a hard requirement is potentially disruptive to existing customers who aren't affected by the bad behavior though, so just warn for now
20+
if(CMAKE_MAJOR_VERSION LESS 3)
21+
message(WARNING "Building with CMake 3.0 or higher is strongly suggested; current version is ${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}.${CMAKE_PATCH_VERSION}")
22+
endif()
23+
2124
# git is required for Android builds and optional for all other platforms
2225
find_package(Git)
2326

android-unified-tests/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
cmake_minimum_required(VERSION 2.8.12)
21
project(android-unified-tests)
32

43
# Headers are included in the source so that they show up in Visual Studio.

aws-cpp-sdk-access-management/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
cmake_minimum_required(VERSION 2.8.12)
21
add_project(aws-cpp-sdk-access-management
32
"C++ interface for Amazon Access Management"
43
aws-cpp-sdk-cognito-identity

aws-cpp-sdk-acm/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
cmake_minimum_required(VERSION 2.8.12)
21
project(aws-cpp-sdk-acm)
32

43
file(GLOB AWS_ACM_HEADERS

aws-cpp-sdk-acm/include/aws/acm/ACMClient.h

Lines changed: 242 additions & 242 deletions
Large diffs are not rendered by default.

aws-cpp-sdk-acm/include/aws/acm/model/AddTagsToCertificateRequest.h

Lines changed: 35 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -37,71 +37,71 @@ namespace Model
3737
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
3838

3939
/**
40-
* <p>String that contains the ARN of the ACM Certificate to which the tag is to be
41-
* applied. This must be of the form:</p> <p>
42-
* <code>arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012</code>
43-
* </p> <p>For more information about ARNs, see <a
44-
* href="http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon
40+
* <p>String that contains the ARN of the ACM Certificate to which the tag is to be
41+
* applied. This must be of the form:</p> <p>
42+
* <code>arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012</code>
43+
* </p> <p>For more information about ARNs, see <a
44+
* href="http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon
4545
* Resource Names (ARNs) and AWS Service Namespaces</a>.</p>
4646
*/
4747
inline const Aws::String& GetCertificateArn() const{ return m_certificateArn; }
4848

4949
/**
50-
* <p>String that contains the ARN of the ACM Certificate to which the tag is to be
51-
* applied. This must be of the form:</p> <p>
52-
* <code>arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012</code>
53-
* </p> <p>For more information about ARNs, see <a
54-
* href="http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon
50+
* <p>String that contains the ARN of the ACM Certificate to which the tag is to be
51+
* applied. This must be of the form:</p> <p>
52+
* <code>arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012</code>
53+
* </p> <p>For more information about ARNs, see <a
54+
* href="http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon
5555
* Resource Names (ARNs) and AWS Service Namespaces</a>.</p>
5656
*/
5757
inline void SetCertificateArn(const Aws::String& value) { m_certificateArnHasBeenSet = true; m_certificateArn = value; }
5858

5959
/**
60-
* <p>String that contains the ARN of the ACM Certificate to which the tag is to be
61-
* applied. This must be of the form:</p> <p>
62-
* <code>arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012</code>
63-
* </p> <p>For more information about ARNs, see <a
64-
* href="http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon
60+
* <p>String that contains the ARN of the ACM Certificate to which the tag is to be
61+
* applied. This must be of the form:</p> <p>
62+
* <code>arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012</code>
63+
* </p> <p>For more information about ARNs, see <a
64+
* href="http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon
6565
* Resource Names (ARNs) and AWS Service Namespaces</a>.</p>
6666
*/
6767
inline void SetCertificateArn(Aws::String&& value) { m_certificateArnHasBeenSet = true; m_certificateArn = value; }
6868

6969
/**
70-
* <p>String that contains the ARN of the ACM Certificate to which the tag is to be
71-
* applied. This must be of the form:</p> <p>
72-
* <code>arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012</code>
73-
* </p> <p>For more information about ARNs, see <a
74-
* href="http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon
70+
* <p>String that contains the ARN of the ACM Certificate to which the tag is to be
71+
* applied. This must be of the form:</p> <p>
72+
* <code>arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012</code>
73+
* </p> <p>For more information about ARNs, see <a
74+
* href="http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon
7575
* Resource Names (ARNs) and AWS Service Namespaces</a>.</p>
7676
*/
7777
inline void SetCertificateArn(const char* value) { m_certificateArnHasBeenSet = true; m_certificateArn.assign(value); }
7878

7979
/**
80-
* <p>String that contains the ARN of the ACM Certificate to which the tag is to be
81-
* applied. This must be of the form:</p> <p>
82-
* <code>arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012</code>
83-
* </p> <p>For more information about ARNs, see <a
84-
* href="http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon
80+
* <p>String that contains the ARN of the ACM Certificate to which the tag is to be
81+
* applied. This must be of the form:</p> <p>
82+
* <code>arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012</code>
83+
* </p> <p>For more information about ARNs, see <a
84+
* href="http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon
8585
* Resource Names (ARNs) and AWS Service Namespaces</a>.</p>
8686
*/
8787
inline AddTagsToCertificateRequest& WithCertificateArn(const Aws::String& value) { SetCertificateArn(value); return *this;}
8888

8989
/**
90-
* <p>String that contains the ARN of the ACM Certificate to which the tag is to be
91-
* applied. This must be of the form:</p> <p>
92-
* <code>arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012</code>
93-
* </p> <p>For more information about ARNs, see <a
94-
* href="http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon
90+
* <p>String that contains the ARN of the ACM Certificate to which the tag is to be
91+
* applied. This must be of the form:</p> <p>
92+
* <code>arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012</code>
93+
* </p> <p>For more information about ARNs, see <a
94+
* href="http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon
9595
* Resource Names (ARNs) and AWS Service Namespaces</a>.</p>
9696
*/
9797
inline AddTagsToCertificateRequest& WithCertificateArn(Aws::String&& value) { SetCertificateArn(value); return *this;}
9898

9999
/**
100-
* <p>String that contains the ARN of the ACM Certificate to which the tag is to be
101-
* applied. This must be of the form:</p> <p>
102-
* <code>arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012</code>
103-
* </p> <p>For more information about ARNs, see <a
104-
* href="http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon
100+
* <p>String that contains the ARN of the ACM Certificate to which the tag is to be
101+
* applied. This must be of the form:</p> <p>
102+
* <code>arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012</code>
103+
* </p> <p>For more information about ARNs, see <a
104+
* href="http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon
105105
* Resource Names (ARNs) and AWS Service Namespaces</a>.</p>
106106
*/
107107
inline AddTagsToCertificateRequest& WithCertificateArn(const char* value) { SetCertificateArn(value); return *this;}

0 commit comments

Comments
 (0)