Sha256: b67738c2652bf7a481b6179dcd73baf59c519f1f9ce4b2adfadaa0c5c94c11ef

Contents?: true

Size: 608 Bytes

Versions: 8

Compression:

Stored size: 608 Bytes

Contents

# language: en
@cloudformation @client
Feature: AWS CloudFormation

  Scenario: Making a basic request
    When I call the "ListStacks" API
    Then the response should contain a list of "StackSummaries"

  Scenario: Error handling
    When I attempt to call the "CreateStack" API with:
    | StackName   | fakestack                       |
    | TemplateURL | http://s3.amazonaws.com/foo/bar |
    Then I expect the response error code to be "ValidationError"
    And I expect the response error message to include:
    """
    TemplateURL must reference a valid S3 object to which you have access.
    """

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
aws-sdk-core-2.0.0.rc12 features/cloudformation/client.feature
aws-sdk-core-2.0.0.rc11 features/cloudformation/client.feature
aws-sdk-core-2.0.0.rc10 features/cloudformation/client.feature
aws-sdk-core-2.0.0.rc9 features/cloudformation/client.feature
aws-sdk-core-2.0.0.rc8 features/cloudformation/client.feature
aws-sdk-core-2.0.0.rc7 features/cloudformation/client.feature
aws-sdk-core-2.0.0.rc6 features/cloudformation/client.feature
aws-sdk-core-2.0.0.rc5 features/cloudformation/client.feature