Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Returns information about a journal export job, including the ledger name, export ID, creation time, current status, and the parameters of the original export creation request.
This action does not return any expired export jobs. For more information, see Export job expiration in the Amazon QLDB Developer Guide.
If the export job with the given ExportId
doesn't exist, then throws
ResourceNotFoundException
.
If the ledger with the given Name
doesn't exist, then throws
ResourceNotFoundException
.
Synopsis
- data DescribeJournalS3Export = DescribeJournalS3Export' {}
- newDescribeJournalS3Export :: Text -> Text -> DescribeJournalS3Export
- describeJournalS3Export_name :: Lens' DescribeJournalS3Export Text
- describeJournalS3Export_exportId :: Lens' DescribeJournalS3Export Text
- data DescribeJournalS3ExportResponse = DescribeJournalS3ExportResponse' {}
- newDescribeJournalS3ExportResponse :: Int -> JournalS3ExportDescription -> DescribeJournalS3ExportResponse
- describeJournalS3ExportResponse_httpStatus :: Lens' DescribeJournalS3ExportResponse Int
- describeJournalS3ExportResponse_exportDescription :: Lens' DescribeJournalS3ExportResponse JournalS3ExportDescription
Creating a Request
data DescribeJournalS3Export Source #
See: newDescribeJournalS3Export
smart constructor.
Instances
newDescribeJournalS3Export Source #
:: Text | |
-> Text | |
-> DescribeJournalS3Export |
Create a value of DescribeJournalS3Export
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:name:DescribeJournalS3Export'
, describeJournalS3Export_name
- The name of the ledger.
$sel:exportId:DescribeJournalS3Export'
, describeJournalS3Export_exportId
- The UUID (represented in Base62-encoded text) of the journal export job
to describe.
Request Lenses
describeJournalS3Export_name :: Lens' DescribeJournalS3Export Text Source #
The name of the ledger.
describeJournalS3Export_exportId :: Lens' DescribeJournalS3Export Text Source #
The UUID (represented in Base62-encoded text) of the journal export job to describe.
Destructuring the Response
data DescribeJournalS3ExportResponse Source #
See: newDescribeJournalS3ExportResponse
smart constructor.
DescribeJournalS3ExportResponse' | |
|
Instances
Eq DescribeJournalS3ExportResponse Source # | |
Read DescribeJournalS3ExportResponse Source # | |
Show DescribeJournalS3ExportResponse Source # | |
Defined in Amazonka.QLDB.DescribeJournalS3Export | |
Generic DescribeJournalS3ExportResponse Source # | |
NFData DescribeJournalS3ExportResponse Source # | |
Defined in Amazonka.QLDB.DescribeJournalS3Export rnf :: DescribeJournalS3ExportResponse -> () # | |
type Rep DescribeJournalS3ExportResponse Source # | |
Defined in Amazonka.QLDB.DescribeJournalS3Export type Rep DescribeJournalS3ExportResponse = D1 ('MetaData "DescribeJournalS3ExportResponse" "Amazonka.QLDB.DescribeJournalS3Export" "libZSservicesZSamazonka-qldbZSamazonka-qldb" 'False) (C1 ('MetaCons "DescribeJournalS3ExportResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "exportDescription") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 JournalS3ExportDescription))) |
newDescribeJournalS3ExportResponse Source #
Create a value of DescribeJournalS3ExportResponse
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:httpStatus:DescribeJournalS3ExportResponse'
, describeJournalS3ExportResponse_httpStatus
- The response's http status code.
$sel:exportDescription:DescribeJournalS3ExportResponse'
, describeJournalS3ExportResponse_exportDescription
- Information about the journal export job returned by a
DescribeJournalS3Export
request.
Response Lenses
describeJournalS3ExportResponse_httpStatus :: Lens' DescribeJournalS3ExportResponse Int Source #
The response's http status code.
describeJournalS3ExportResponse_exportDescription :: Lens' DescribeJournalS3ExportResponse JournalS3ExportDescription Source #
Information about the journal export job returned by a
DescribeJournalS3Export
request.