Sha256: 3c8b584b9bc3cc0b58eb3cc8ac86254508d43025363b56061650cef6509a6464

Contents?: true

Size: 506 Bytes

Versions: 4

Compression:

Stored size: 506 Bytes

Contents

# language: en
@sts @client
Feature: AWS STS

  Scenario: Making a basic request
    When I call "get_session_token" on "sts"
    Then the response data should include "credentials"

  Scenario: Error handling
    Given I call "get_federation_token" on "sts" with:
    """
    { name: 'temp', policy: '' }
    """
    Then I expect the response error code to be "ValidationError"
    And I expect the response error message to include:
    """
    Value '' at 'policy' failed to satisfy constraint
    """

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
aws-sdk-core-2.0.0.rc4 features/sts/client.feature
aws-sdk-core-2.0.0.rc3 features/sts/client.feature
aws-sdk-core-2.0.0.rc2 features/sts/client.feature
aws-sdk-core-2.0.0.rc1 features/sts/client.feature