cabal-version: 2.2 name: aws-arn version: 0.1.0.0 x-revision: 2 synopsis: Types and optics for manipulating Amazon Resource Names (ARNs) description: This library provides a type representing [Amazon Resource Names (ARNs)](https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html), and parsing/unparsing functions for them. The provided optics make it very convenient to rewrite parts of ARNs. . Start reading at the "Network.AWS.ARN" module, which defines the core data type and includes some examples. . The @ARN@ type is not designed to be a 100% correct-by-construction representation of only valid ARNs; it is designed to be a lightweight way to destructure and reassemble ARNs to be used in place of string munging. . The library aims to provide additional parsers for destructuring the "resource" part of an ARN, but many are missing right now. PRs to add this support for more AWS resource types are __especially__ welcome. bug-reports: http://github.com/bellroy/aws-arn/issues license: BSD-3-Clause license-file: LICENSE author: Bellroy Tech Team maintainer: Bellroy Tech Team copyright: Copyright (C) 2020-2021 Bellroy Pty Ltd category: AWS, Cloud build-type: Simple extra-source-files: CHANGELOG.md README.md tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.4 common opts default-language: Haskell2010 ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Werror=incomplete-patterns -Wredundant-constraints -Wpartial-fields -Wtabs -Wmissing-local-signatures -fhelpful-errors -fprint-expanded-synonyms -fwarn-unused-do-bind common deps build-depends: , base >=4.12 && <4.16 , deriving-compat >=0.5.10 && <0.7 , lens >=4.18.1 && <5.1 , text ^>=1.2.3 library import: opts, deps exposed-modules: Network.AWS.ARN Network.AWS.ARN.Lambda build-depends: hashable ^>=1.3.0.0 hs-source-dirs: src test-suite spec import: opts, deps type: exitcode-stdio-1.0 main-is: Main.hs other-modules: Network.AWS.ARN.Lambda.Test Network.AWS.ARN.Test hs-source-dirs: test ghc-options: -threaded build-depends: , aws-arn , tasty ^>=1.4.0.2 , tasty-discover ^>=4.2.2 , tasty-hunit ^>=0.10.0.3 build-tool-depends: tasty-discover:tasty-discover -any source-repository head type: git location: https://github.com/bellroy/aws-arn.git