Sha256: e079c6a54895e3e4eee8c9c2bc806310ca0eee2d7a12159ce3cf06a0dab333bd

Contents?: true

Size: 492 Bytes

Versions: 8

Compression:

Stored size: 492 Bytes

Contents

# language: en
@iam @client
Feature: AWS Identity and Access Management

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

  Scenario: Error handling
    When I attempt to call the "GetUser" API with:
    | UserName | fake_user |
    Then I expect the response error code to be "NoSuchEntity"
    And I expect the response error message to include:
    """
    The user with name fake_user cannot be found.
    """

Version data entries

8 entries across 8 versions & 1 rubygems

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