Skip to content

Commit e81102f

Browse files
authored
Merge branch 'main' into download-checksums
2 parents 38b9f2d + 7c1e20f commit e81102f

File tree

1,462 files changed

+78898
-19137
lines changed

Some content is hidden

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

1,462 files changed

+78898
-19137
lines changed

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,15 @@ You can download and install aws-sdk-cpp using the [vcpkg](https://github.com/Mi
118118
119119
The aws-sdk-cpp port in vcpkg is kept up to date by Microsoft team members and community contributors. If the version is out of date, please [create an issue or pull request](https://github.com/Microsoft/vcpkg) on the vcpkg repository.
120120
121+
### Building aws-sdk-cpp - Using Conan
122+
123+
You can download and install aws-sdk-cpp using [Conan](https://conan.io/). Use the following command:
124+
125+
conan install --requires="aws-sdk-cpp/[*]" --build="aws-*"
126+
127+
The aws-sdk-cpp Conan recipe is kept up to date by JFrog's Conan team members and community contributors.
128+
If the version is out of date, please [create an issue or pull request](https://github.com/conan-io/conan-center-index) on the ConanCenterIndex repository.
129+
121130
# Maintenance and support for SDK major versions
122131

123132
For information about maintenance and support for SDK major versions and our underlying dependencies, see the following in the AWS SDKs and Tools Shared Configuration and Credentials Reference Guide

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.11.706
1+
1.11.714

generated/smoke-tests/apigateway/APIGatewaySmokeTests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,6 @@ TEST_F(APIGatewaySmokeTestSuite, GetDomainNamesSuccess )
4141

4242
GetDomainNamesRequest input;
4343
auto outcome = clientSp->GetDomainNames(input);
44-
EXPECT_TRUE( outcome.IsSuccess());
44+
EXPECT_TRUE( outcome.IsSuccess()) << outcome.GetError().GetExceptionName() << " - " << outcome.GetError().GetMessage();
4545
}
4646
}

generated/smoke-tests/application-autoscaling/ApplicationAutoScalingSmokeTests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@ TEST_F(ApplicationAutoScalingSmokeTestSuite, DescribeScalableTargetsSuccess )
4242
DescribeScalableTargetsRequest input;
4343
input.SetServiceNamespace(ServiceNamespace::ec2);
4444
auto outcome = clientSp->DescribeScalableTargets(input);
45-
EXPECT_TRUE( outcome.IsSuccess());
45+
EXPECT_TRUE( outcome.IsSuccess()) << outcome.GetError().GetExceptionName() << " - " << outcome.GetError().GetMessage();
4646
}
4747
}

generated/smoke-tests/cloudhsmv2/CloudHSMV2SmokeTests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,6 @@ TEST_F(CloudHSMV2SmokeTestSuite, DescribeClustersSuccess )
4141

4242
DescribeClustersRequest input;
4343
auto outcome = clientSp->DescribeClusters(input);
44-
EXPECT_TRUE( outcome.IsSuccess());
44+
EXPECT_TRUE( outcome.IsSuccess()) << outcome.GetError().GetExceptionName() << " - " << outcome.GetError().GetMessage();
4545
}
4646
}

generated/smoke-tests/cognito-idp/CognitoIdentityProviderSmokeTests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@ TEST_F(CognitoIdentityProviderSmokeTestSuite, ListUserPoolsSuccess )
4242
ListUserPoolsRequest input;
4343
input.SetMaxResults(10);
4444
auto outcome = clientSp->ListUserPools(input);
45-
EXPECT_TRUE( outcome.IsSuccess());
45+
EXPECT_TRUE( outcome.IsSuccess()) << outcome.GetError().GetExceptionName() << " - " << outcome.GetError().GetMessage();
4646
}
4747
}

generated/smoke-tests/config/ConfigServiceSmokeTests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,6 @@ TEST_F(ConfigServiceSmokeTestSuite, DescribeConfigurationRecordersSuccess )
4141

4242
DescribeConfigurationRecordersRequest input;
4343
auto outcome = clientSp->DescribeConfigurationRecorders(input);
44-
EXPECT_TRUE( outcome.IsSuccess());
44+
EXPECT_TRUE( outcome.IsSuccess()) << outcome.GetError().GetExceptionName() << " - " << outcome.GetError().GetMessage();
4545
}
4646
}

generated/smoke-tests/cur/CostandUsageReportServiceSmokeTests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,6 @@ TEST_F(CostandUsageReportServiceSmokeTestSuite, DescribeReportDefinitionsSuccess
4141

4242
DescribeReportDefinitionsRequest input;
4343
auto outcome = clientSp->DescribeReportDefinitions(input);
44-
EXPECT_TRUE( outcome.IsSuccess());
44+
EXPECT_TRUE( outcome.IsSuccess()) << outcome.GetError().GetExceptionName() << " - " << outcome.GetError().GetMessage();
4545
}
4646
}

generated/smoke-tests/directconnect/DirectConnectSmokeTests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ TEST_F(DirectConnectSmokeTestSuite, DescribeConnectionsSuccess )
4242

4343
DescribeConnectionsRequest input;
4444
auto outcome = clientSp->DescribeConnections(input);
45-
EXPECT_TRUE( outcome.IsSuccess());
45+
EXPECT_TRUE( outcome.IsSuccess()) << outcome.GetError().GetExceptionName() << " - " << outcome.GetError().GetMessage();
4646
}
4747
TEST_F(DirectConnectSmokeTestSuite, DescribeConnectionsFailure )
4848
{

0 commit comments

Comments
 (0)