-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* release-1.24.7: Bumping version to 1.24.7 Update changelog based on model updates Change S3 bucket names in tests to use only permitted chars Update createcluster.py add test. Adding to CloudFormation's URL parameters Lambda and Serverless properties for CFN deploy
- Loading branch information
Showing
10 changed files
with
78 additions
and
9 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,27 @@ | ||
[ | ||
{ | ||
"category": "``ec2``", | ||
"description": "Stop Protection feature enables customers to protect their instances from accidental stop actions.", | ||
"type": "api-change" | ||
}, | ||
{ | ||
"category": "``cognito-idp``", | ||
"description": "Amazon Cognito now supports requiring attribute verification (ex. email and phone number) before update.", | ||
"type": "api-change" | ||
}, | ||
{ | ||
"category": "``mediaconvert``", | ||
"description": "AWS Elemental MediaConvert SDK has added support for rules that constrain Automatic-ABR rendition selection when generating ABR package ladders.", | ||
"type": "api-change" | ||
}, | ||
{ | ||
"category": "``networkmanager``", | ||
"description": "This release adds Multi Account API support for a TGW Global Network, to enable and disable AWSServiceAccess with AwsOrganizations for Network Manager service and dependency CloudFormation StackSets service.", | ||
"type": "api-change" | ||
}, | ||
{ | ||
"category": "``ivschat``", | ||
"description": "Doc-only update. For MessageReviewHandler structure, added timeout period in the description of the fallbackResult field", | ||
"type": "api-change" | ||
} | ||
] |
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
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
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,28 @@ | ||
# Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"). You | ||
# may not use this file except in compliance with the License. A copy of | ||
# the License is located at | ||
# | ||
# http://aws.amazon.com/apache2.0/ | ||
# | ||
# or in the "license" file accompanying this file. This file is | ||
# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF | ||
# ANY KIND, either express or implied. See the License for the specific | ||
# language governing permissions and limitations under the License. | ||
from awscli.testutils import BaseAWSCommandParamsTest | ||
|
||
|
||
class TestRegisterType(BaseAWSCommandParamsTest): | ||
|
||
prefix = 'cloudformation register-type' | ||
|
||
def test_schema_handler_package_during_register_url(self): | ||
cmdline = self.prefix | ||
cmdline += ' --type-name test-type-name ' | ||
cmdline += '--schema-handler-package s3://bucket-name/my-organization-resource_name.zip' | ||
result = { | ||
'TypeName': 'test-type-name', | ||
'SchemaHandlerPackage': 's3://bucket-name/my-organization-resource_name.zip' | ||
} | ||
self.assert_params_for_cmd(cmdline, result) |