New module cloudformation_stack_set (#41669)

* [AWS] new module cloudformation_stack_set with integration tests
This commit is contained in:
Ryan Brown 2018-08-20 14:38:14 -04:00 committed by Sloane Hertel
commit 6d52afeed6
8 changed files with 900 additions and 1 deletions

View file

@ -69,7 +69,7 @@ from ansible.module_utils._text import to_native
from ansible.module_utils.ec2 import HAS_BOTO3, camel_dict_to_snake_dict, ec2_argument_spec, boto3_conn, get_aws_connection_info
# We will also export HAS_BOTO3 so end user modules can use it.
__all__ = ('AnsibleAWSModule', 'HAS_BOTO3',)
__all__ = ('AnsibleAWSModule', 'HAS_BOTO3', 'is_boto3_error_code')
class AnsibleAWSModule(object):