forked from brendanhay/amazonka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
amazonka-kms.cabal
160 lines (152 loc) · 5.76 KB
/
amazonka-kms.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
cabal-version: 2.2
name: amazonka-kms
version: 1.6.1
synopsis: Amazon Key Management Service 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 <[email protected]>
copyright: Copyright (c) 2013-2021 Brendan Hay
category: AWS
build-type: Simple
extra-source-files:
fixture/*.proto
fixture/*.yaml
README.md
src/.gitkeep
description:
Derived from API version @2014-11-01@ 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 for legacy behaviour can be found in "Network.AWS.KMS.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>.
.
Additional types and functions from <https://hackage.haskell.org/package/amazonka-core amazonka-core> are re-exported by the "Network.AWS.Prelude" module in this package.
.
See "Network.AWS.KMS" 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-kms
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:
Network.AWS.KMS
Network.AWS.KMS.CancelKeyDeletion
Network.AWS.KMS.ConnectCustomKeyStore
Network.AWS.KMS.CreateAlias
Network.AWS.KMS.CreateCustomKeyStore
Network.AWS.KMS.CreateGrant
Network.AWS.KMS.CreateKey
Network.AWS.KMS.Decrypt
Network.AWS.KMS.DeleteAlias
Network.AWS.KMS.DeleteCustomKeyStore
Network.AWS.KMS.DeleteImportedKeyMaterial
Network.AWS.KMS.DescribeCustomKeyStores
Network.AWS.KMS.DescribeKey
Network.AWS.KMS.DisableKey
Network.AWS.KMS.DisableKeyRotation
Network.AWS.KMS.DisconnectCustomKeyStore
Network.AWS.KMS.EnableKey
Network.AWS.KMS.EnableKeyRotation
Network.AWS.KMS.Encrypt
Network.AWS.KMS.GenerateDataKey
Network.AWS.KMS.GenerateDataKeyPair
Network.AWS.KMS.GenerateDataKeyPairWithoutPlaintext
Network.AWS.KMS.GenerateDataKeyWithoutPlaintext
Network.AWS.KMS.GenerateRandom
Network.AWS.KMS.GetKeyPolicy
Network.AWS.KMS.GetKeyRotationStatus
Network.AWS.KMS.GetParametersForImport
Network.AWS.KMS.GetPublicKey
Network.AWS.KMS.ImportKeyMaterial
Network.AWS.KMS.Lens
Network.AWS.KMS.ListAliases
Network.AWS.KMS.ListGrants
Network.AWS.KMS.ListKeyPolicies
Network.AWS.KMS.ListKeys
Network.AWS.KMS.ListResourceTags
Network.AWS.KMS.ListRetirableGrants
Network.AWS.KMS.PutKeyPolicy
Network.AWS.KMS.ReEncrypt
Network.AWS.KMS.ReplicateKey
Network.AWS.KMS.RetireGrant
Network.AWS.KMS.RevokeGrant
Network.AWS.KMS.ScheduleKeyDeletion
Network.AWS.KMS.Sign
Network.AWS.KMS.TagResource
Network.AWS.KMS.Types
Network.AWS.KMS.Types.AlgorithmSpec
Network.AWS.KMS.Types.AliasListEntry
Network.AWS.KMS.Types.ConnectionErrorCodeType
Network.AWS.KMS.Types.ConnectionStateType
Network.AWS.KMS.Types.CustomerMasterKeySpec
Network.AWS.KMS.Types.CustomKeyStoresListEntry
Network.AWS.KMS.Types.DataKeyPairSpec
Network.AWS.KMS.Types.DataKeySpec
Network.AWS.KMS.Types.EncryptionAlgorithmSpec
Network.AWS.KMS.Types.ExpirationModelType
Network.AWS.KMS.Types.GrantConstraints
Network.AWS.KMS.Types.GrantListEntry
Network.AWS.KMS.Types.GrantOperation
Network.AWS.KMS.Types.KeyListEntry
Network.AWS.KMS.Types.KeyManagerType
Network.AWS.KMS.Types.KeyMetadata
Network.AWS.KMS.Types.KeySpec
Network.AWS.KMS.Types.KeyState
Network.AWS.KMS.Types.KeyUsageType
Network.AWS.KMS.Types.ListGrantsResponse
Network.AWS.KMS.Types.MessageType
Network.AWS.KMS.Types.MultiRegionConfiguration
Network.AWS.KMS.Types.MultiRegionKey
Network.AWS.KMS.Types.MultiRegionKeyType
Network.AWS.KMS.Types.OriginType
Network.AWS.KMS.Types.SigningAlgorithmSpec
Network.AWS.KMS.Types.Tag
Network.AWS.KMS.Types.WrappingKeySpec
Network.AWS.KMS.UntagResource
Network.AWS.KMS.UpdateAlias
Network.AWS.KMS.UpdateCustomKeyStore
Network.AWS.KMS.UpdateKeyDescription
Network.AWS.KMS.UpdatePrimaryRegion
Network.AWS.KMS.Verify
Network.AWS.KMS.Waiters
reexported-modules: Network.AWS
build-depends:
, amazonka >=1.6.1 && <1.6.2
, base >=4.12 && <5
test-suite amazonka-kms-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.AWS.Gen.KMS
Test.AWS.KMS
Test.AWS.KMS.Internal
build-depends:
, amazonka >=1.6.1 && <1.6.2
, amazonka-kms
, amazonka-test >=1.6.1 && <1.6.2
, base
, bytestring
, case-insensitive
, tasty
, tasty-hunit
, text
, time
, unordered-containers