amazonka-elastictranscoder 0.0.4 → 0.0.5
raw patch · 21 files changed
+42/−2 lines, 21 filesdep ~amazonka-corePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: amazonka-core
API changes (from Hackage documentation)
Files
- README.md +2/−0
- amazonka-elastictranscoder.cabal +2/−2
- gen/Network/AWS/ElasticTranscoder.hs +2/−0
- gen/Network/AWS/ElasticTranscoder/CancelJob.hs +2/−0
- gen/Network/AWS/ElasticTranscoder/CreateJob.hs +2/−0
- gen/Network/AWS/ElasticTranscoder/CreatePipeline.hs +2/−0
- gen/Network/AWS/ElasticTranscoder/CreatePreset.hs +2/−0
- gen/Network/AWS/ElasticTranscoder/DeletePipeline.hs +2/−0
- gen/Network/AWS/ElasticTranscoder/DeletePreset.hs +2/−0
- gen/Network/AWS/ElasticTranscoder/ListJobsByPipeline.hs +2/−0
- gen/Network/AWS/ElasticTranscoder/ListJobsByStatus.hs +2/−0
- gen/Network/AWS/ElasticTranscoder/ListPipelines.hs +2/−0
- gen/Network/AWS/ElasticTranscoder/ListPresets.hs +2/−0
- gen/Network/AWS/ElasticTranscoder/ReadJob.hs +2/−0
- gen/Network/AWS/ElasticTranscoder/ReadPipeline.hs +2/−0
- gen/Network/AWS/ElasticTranscoder/ReadPreset.hs +2/−0
- gen/Network/AWS/ElasticTranscoder/TestRole.hs +2/−0
- gen/Network/AWS/ElasticTranscoder/Types.hs +2/−0
- gen/Network/AWS/ElasticTranscoder/UpdatePipeline.hs +2/−0
- gen/Network/AWS/ElasticTranscoder/UpdatePipelineNotifications.hs +2/−0
- gen/Network/AWS/ElasticTranscoder/UpdatePipelineStatus.hs +2/−0
README.md view
@@ -28,3 +28,5 @@ ## Licence `amazonka-elastictranscoder` is released under the [Mozilla Public License Version 2.0](http://www.mozilla.org/MPL/).++Parts of the code are derived from AWS service descriptions, licensed under Apache 2.0.
amazonka-elastictranscoder.cabal view
@@ -1,5 +1,5 @@ name: amazonka-elastictranscoder-version: 0.0.4+version: 0.0.5 synopsis: Amazon Elastic Transcoder SDK. homepage: https://github.com/brendanhay/amazonka license: OtherLicense@@ -59,5 +59,5 @@ other-modules: build-depends:- amazonka-core == 0.0.4.*+ amazonka-core == 0.0.5.* , base >= 4.7 && < 5
gen/Network/AWS/ElasticTranscoder.hs view
@@ -7,6 +7,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Amazon Elastic Transcoder lets you convert media files that you have stored -- in Amazon Simple Storage Service (Amazon S3) into media files in the formats
gen/Network/AWS/ElasticTranscoder/CancelJob.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | The CancelJob operation cancels an unfinished job. --
gen/Network/AWS/ElasticTranscoder/CreateJob.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | When you create a job, Elastic Transcoder returns JSON data that includes -- the values that you specified plus information about the job that is created.
gen/Network/AWS/ElasticTranscoder/CreatePipeline.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | The CreatePipeline operation creates a pipeline with settings that you -- specify.
gen/Network/AWS/ElasticTranscoder/CreatePreset.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | The CreatePreset operation creates a preset with settings that you specify. --
gen/Network/AWS/ElasticTranscoder/DeletePipeline.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | The DeletePipeline operation removes a pipeline. --
gen/Network/AWS/ElasticTranscoder/DeletePreset.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | The DeletePreset operation removes a preset that you've added in an AWS -- region.
gen/Network/AWS/ElasticTranscoder/ListJobsByPipeline.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | The ListJobsByPipeline operation gets a list of the jobs currently in a -- pipeline.
gen/Network/AWS/ElasticTranscoder/ListJobsByStatus.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | The ListJobsByStatus operation gets a list of jobs that have a specified -- status. The response body contains one element for each job that satisfies
gen/Network/AWS/ElasticTranscoder/ListPipelines.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | The ListPipelines operation gets a list of the pipelines associated with the -- current AWS account.
gen/Network/AWS/ElasticTranscoder/ListPresets.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | The ListPresets operation gets a list of the default presets included with -- Elastic Transcoder and the presets that you've added in an AWS region.
gen/Network/AWS/ElasticTranscoder/ReadJob.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | The ReadJob operation returns detailed information about a job. --
gen/Network/AWS/ElasticTranscoder/ReadPipeline.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | The ReadPipeline operation gets detailed information about a pipeline. --
gen/Network/AWS/ElasticTranscoder/ReadPreset.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | The ReadPreset operation gets detailed information about a preset. --
gen/Network/AWS/ElasticTranscoder/TestRole.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | The TestRole operation tests the IAM role used to create the pipeline. --
gen/Network/AWS/ElasticTranscoder/Types.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. module Network.AWS.ElasticTranscoder.Types (
gen/Network/AWS/ElasticTranscoder/UpdatePipeline.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Use the 'UpdatePipeline' operation to update settings for a pipeline. When you -- change pipeline settings, your changes take effect immediately. Jobs that you
gen/Network/AWS/ElasticTranscoder/UpdatePipelineNotifications.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | With the UpdatePipelineNotifications operation, you can update Amazon Simple -- Notification Service (Amazon SNS) notifications for a pipeline.
gen/Network/AWS/ElasticTranscoder/UpdatePipelineStatus.hs view
@@ -19,6 +19,8 @@ -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions)+--+-- Derived from AWS service descriptions, licensed under Apache 2.0. -- | The UpdatePipelineStatus operation pauses or reactivates a pipeline, so that -- the pipeline stops or restarts the processing of jobs.