-
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
eeb8df6
commit dd722cc
Showing
55 changed files
with
2,833 additions
and
101 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,47 @@ | ||
[ | ||
{ | ||
"type": "enhancement", | ||
"category": "ControlTower", | ||
"description": "Updated Control Tower service documentation for controlcatalog control ARN support with existing Control Tower public APIs" | ||
}, | ||
{ | ||
"type": "api-change", | ||
"category": "ControlCatalog", | ||
"description": "AWS Control Tower provides two new public APIs controlcatalog:ListControls and controlcatalog:GetControl under controlcatalog service namespace, which enable customers to programmatically retrieve control metadata of available controls." | ||
}, | ||
{ | ||
"type": "enhancement", | ||
"category": "Support", | ||
"description": "Doc only updates to CaseDetails" | ||
}, | ||
{ | ||
"type": "feature", | ||
"category": "SSMQuickSetup", | ||
"description": "This release adds API support for the QuickSetup feature of AWS Systems Manager" | ||
}, | ||
{ | ||
"type": "enhancement", | ||
"category": "MemoryDB", | ||
"description": "Doc only update for changes to deletion API." | ||
}, | ||
{ | ||
"type": "api-change", | ||
"category": "RDS", | ||
"description": "This release adds support for specifying optional MinACU parameter in CreateDBShardGroup and ModifyDBShardGroup API. DBShardGroup response will contain MinACU if specified." | ||
}, | ||
{ | ||
"type": "api-change", | ||
"category": "SageMaker", | ||
"description": "This release adds support for Amazon EMR Serverless applications in SageMaker Studio for running data processing jobs." | ||
}, | ||
{ | ||
"type": "api-change", | ||
"category": "Bedrock", | ||
"description": "API and Documentation for Bedrock Model Copy feature. This feature lets you share and copy a custom model from one region to another or one account to another." | ||
}, | ||
{ | ||
"type": "api-change", | ||
"category": "IAM", | ||
"description": "Add v2 smoke tests and smithy smokeTests trait for SDK testing." | ||
} | ||
] |
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
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\SSMQuickSetup\Exception; | ||
|
||
use Aws\Exception\AwsException; | ||
|
||
/** | ||
* Represents an error interacting with the **AWS Systems Manager QuickSetup** service. | ||
*/ | ||
class SSMQuickSetupException 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,33 @@ | ||
<?php | ||
namespace Aws\SSMQuickSetup; | ||
|
||
use Aws\AwsClient; | ||
|
||
/** | ||
* This client is used to interact with the **AWS Systems Manager QuickSetup** service. | ||
* @method \Aws\Result createConfigurationManager(array $args = []) | ||
* @method \GuzzleHttp\Promise\Promise createConfigurationManagerAsync(array $args = []) | ||
* @method \Aws\Result deleteConfigurationManager(array $args = []) | ||
* @method \GuzzleHttp\Promise\Promise deleteConfigurationManagerAsync(array $args = []) | ||
* @method \Aws\Result getConfigurationManager(array $args = []) | ||
* @method \GuzzleHttp\Promise\Promise getConfigurationManagerAsync(array $args = []) | ||
* @method \Aws\Result getServiceSettings(array $args = []) | ||
* @method \GuzzleHttp\Promise\Promise getServiceSettingsAsync(array $args = []) | ||
* @method \Aws\Result listConfigurationManagers(array $args = []) | ||
* @method \GuzzleHttp\Promise\Promise listConfigurationManagersAsync(array $args = []) | ||
* @method \Aws\Result listQuickSetupTypes(array $args = []) | ||
* @method \GuzzleHttp\Promise\Promise listQuickSetupTypesAsync(array $args = []) | ||
* @method \Aws\Result listTagsForResource(array $args = []) | ||
* @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = []) | ||
* @method \Aws\Result tagResource(array $args = []) | ||
* @method \GuzzleHttp\Promise\Promise tagResourceAsync(array $args = []) | ||
* @method \Aws\Result untagResource(array $args = []) | ||
* @method \GuzzleHttp\Promise\Promise untagResourceAsync(array $args = []) | ||
* @method \Aws\Result updateConfigurationDefinition(array $args = []) | ||
* @method \GuzzleHttp\Promise\Promise updateConfigurationDefinitionAsync(array $args = []) | ||
* @method \Aws\Result updateConfigurationManager(array $args = []) | ||
* @method \GuzzleHttp\Promise\Promise updateConfigurationManagerAsync(array $args = []) | ||
* @method \Aws\Result updateServiceSettings(array $args = []) | ||
* @method \GuzzleHttp\Promise\Promise updateServiceSettingsAsync(array $args = []) | ||
*/ | ||
class SSMQuickSetupClient 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
Oops, something went wrong.