packages feed

amazonka-identitystore-2.0: amazonka-identitystore.cabal

cabal-version:      2.2
name:               amazonka-identitystore
version:            2.0
synopsis:           Amazon SSO Identity Store SDK.
homepage:           https://github.com/brendanhay/amazonka
bug-reports:        https://github.com/brendanhay/amazonka/issues
license:            MPL-2.0
license-file:       LICENSE
author:             Brendan Hay
maintainer:
  Brendan Hay <brendan.g.hay+amazonka@gmail.com>, Jack Kelly <jack@jackkelly.name>

copyright:          Copyright (c) 2013-2023 Brendan Hay
category:           AWS
build-type:         Simple
extra-source-files:
  fixture/*.proto
  fixture/*.yaml
  README.md
  src/.gitkeep

description:
  Derived from API version @2020-06-15@ of the AWS service descriptions, licensed under Apache 2.0.
  .
  The types from this library are intended to be used with <http://hackage.haskell.org/package/amazonka amazonka>,
  which provides mechanisms for specifying AuthN/AuthZ information, sending requests, and receiving responses.
  .
  It is recommended to use generic lenses or optics from packages such as <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify optional fields and deconstruct responses.
  .
  Generated lenses can be found in "Amazonka.IdentityStore.Lens" and are
  suitable for use with a lens package such as <http://hackage.haskell.org/package/lens lens> or <http://hackage.haskell.org/package/lens-family-core lens-family-core>.
  .
  See "Amazonka.IdentityStore" and the <https://aws.amazon.com/documentation/ AWS documentation> to get started.

source-repository head
  type:     git
  location: git://github.com/brendanhay/amazonka.git
  subdir:   amazonka-identitystore

library
  default-language: Haskell2010
  hs-source-dirs:   src gen
  ghc-options:
    -Wall -fwarn-incomplete-uni-patterns
    -fwarn-incomplete-record-updates -funbox-strict-fields

  exposed-modules:
    Amazonka.IdentityStore
    Amazonka.IdentityStore.CreateGroup
    Amazonka.IdentityStore.CreateGroupMembership
    Amazonka.IdentityStore.CreateUser
    Amazonka.IdentityStore.DeleteGroup
    Amazonka.IdentityStore.DeleteGroupMembership
    Amazonka.IdentityStore.DeleteUser
    Amazonka.IdentityStore.DescribeGroup
    Amazonka.IdentityStore.DescribeGroupMembership
    Amazonka.IdentityStore.DescribeUser
    Amazonka.IdentityStore.GetGroupId
    Amazonka.IdentityStore.GetGroupMembershipId
    Amazonka.IdentityStore.GetUserId
    Amazonka.IdentityStore.IsMemberInGroups
    Amazonka.IdentityStore.Lens
    Amazonka.IdentityStore.ListGroupMemberships
    Amazonka.IdentityStore.ListGroupMembershipsForMember
    Amazonka.IdentityStore.ListGroups
    Amazonka.IdentityStore.ListUsers
    Amazonka.IdentityStore.Types
    Amazonka.IdentityStore.Types.Address
    Amazonka.IdentityStore.Types.AlternateIdentifier
    Amazonka.IdentityStore.Types.AttributeOperation
    Amazonka.IdentityStore.Types.AttributeValue
    Amazonka.IdentityStore.Types.Email
    Amazonka.IdentityStore.Types.ExternalId
    Amazonka.IdentityStore.Types.Filter
    Amazonka.IdentityStore.Types.Group
    Amazonka.IdentityStore.Types.GroupMembership
    Amazonka.IdentityStore.Types.GroupMembershipExistenceResult
    Amazonka.IdentityStore.Types.MemberId
    Amazonka.IdentityStore.Types.Name
    Amazonka.IdentityStore.Types.PhoneNumber
    Amazonka.IdentityStore.Types.UniqueAttribute
    Amazonka.IdentityStore.Types.User
    Amazonka.IdentityStore.UpdateGroup
    Amazonka.IdentityStore.UpdateUser
    Amazonka.IdentityStore.Waiters

  build-depends:
    , amazonka-core  >=2.0  && <2.1
    , base           >=4.12 && <5

test-suite amazonka-identitystore-test
  type:             exitcode-stdio-1.0
  default-language: Haskell2010
  hs-source-dirs:   test
  main-is:          Main.hs
  ghc-options:      -Wall -threaded

  -- This section is encoded by the template and any modules added by
  -- hand outside these namespaces will not correctly be added to the
  -- distribution package.
  other-modules:
    Test.Amazonka.Gen.IdentityStore
    Test.Amazonka.IdentityStore
    Test.Amazonka.IdentityStore.Internal

  build-depends:
    , amazonka-core           >=2.0 && <2.1
    , amazonka-identitystore
    , amazonka-test           >=2.0 && <2.1
    , base
    , bytestring
    , case-insensitive
    , tasty
    , tasty-hunit
    , text
    , time
    , unordered-containers