-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
efe7b6e
commit e11cb12
Showing
72 changed files
with
6,567 additions
and
462 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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
[ | ||
{ | ||
"type": "feature", | ||
"category": "CloudFrontKeyValueStore", | ||
"description": "This release adds support for CloudFront KeyValueStore, a globally managed key value datastore associated with CloudFront Functions." | ||
}, | ||
{ | ||
"type": "api-change", | ||
"category": "CloudFront", | ||
"description": "This release adds support for CloudFront KeyValueStore, a globally managed key value datastore associated with CloudFront Functions." | ||
}, | ||
{ | ||
"type": "api-change", | ||
"category": "S3", | ||
"description": "Add support for automatic date based partitioning in S3 Server Access Logs." | ||
}, | ||
{ | ||
"type": "enhancement", | ||
"category": "EC2", | ||
"description": "Documentation updates for Amazon EC2." | ||
}, | ||
{ | ||
"type": "api-change", | ||
"category": "IoTSiteWise", | ||
"description": "Adds 1\/ user-defined unique identifier for asset and model metadata, 2\/ asset model components, and 3\/ query API for asset metadata and telemetry data. Supports 4\/ multi variate anomaly detection using Amazon Lookout for Equipment, 5\/ warm storage tier, and 6\/ buffered ingestion of time series data." | ||
}, | ||
{ | ||
"type": "api-change", | ||
"category": "IoTTwinMaker", | ||
"description": "This release adds following support. 1. New APIs for metadata bulk operations. 2. Modify the component type API to support composite component types - nesting component types within one another. 3. New list APIs for components and properties. 4. Support the larger scope digital twin modeling." | ||
}, | ||
{ | ||
"type": "feature", | ||
"category": "InspectorScan", | ||
"description": "This release adds support for the new Amazon Inspector Scan API. The new Inspector Scan API can synchronously scan SBOMs adhering to the CycloneDX v1.5 format." | ||
} | ||
] |
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
21 changes: 21 additions & 0 deletions
21
src/CloudFrontKeyValueStore/CloudFrontKeyValueStoreClient.php
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,21 @@ | ||
<?php | ||
namespace Aws\CloudFrontKeyValueStore; | ||
|
||
use Aws\AwsClient; | ||
|
||
/** | ||
* This client is used to interact with the **Amazon CloudFront KeyValueStore** service. | ||
* @method \Aws\Result deleteKey(array $args = []) | ||
* @method \GuzzleHttp\Promise\Promise deleteKeyAsync(array $args = []) | ||
* @method \Aws\Result describeKeyValueStore(array $args = []) | ||
* @method \GuzzleHttp\Promise\Promise describeKeyValueStoreAsync(array $args = []) | ||
* @method \Aws\Result getKey(array $args = []) | ||
* @method \GuzzleHttp\Promise\Promise getKeyAsync(array $args = []) | ||
* @method \Aws\Result listKeys(array $args = []) | ||
* @method \GuzzleHttp\Promise\Promise listKeysAsync(array $args = []) | ||
* @method \Aws\Result putKey(array $args = []) | ||
* @method \GuzzleHttp\Promise\Promise putKeyAsync(array $args = []) | ||
* @method \Aws\Result updateKeys(array $args = []) | ||
* @method \GuzzleHttp\Promise\Promise updateKeysAsync(array $args = []) | ||
*/ | ||
class CloudFrontKeyValueStoreClient extends AwsClient {} |
9 changes: 9 additions & 0 deletions
9
src/CloudFrontKeyValueStore/Exception/CloudFrontKeyValueStoreException.php
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,9 @@ | ||
<?php | ||
namespace Aws\CloudFrontKeyValueStore\Exception; | ||
|
||
use Aws\Exception\AwsException; | ||
|
||
/** | ||
* Represents an error interacting with the **Amazon CloudFront KeyValueStore** service. | ||
*/ | ||
class CloudFrontKeyValueStoreException extends AwsException {} |
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,9 @@ | ||
<?php | ||
namespace Aws\InspectorScan\Exception; | ||
|
||
use Aws\Exception\AwsException; | ||
|
||
/** | ||
* Represents an error interacting with the **Inspector Scan** service. | ||
*/ | ||
class InspectorScanException extends AwsException {} |
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,11 @@ | ||
<?php | ||
namespace Aws\InspectorScan; | ||
|
||
use Aws\AwsClient; | ||
|
||
/** | ||
* This client is used to interact with the **Inspector Scan** service. | ||
* @method \Aws\Result scanSbom(array $args = []) | ||
* @method \GuzzleHttp\Promise\Promise scanSbomAsync(array $args = []) | ||
*/ | ||
class InspectorScanClient extends AwsClient {} |
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
Oops, something went wrong.