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 |
Adds one or more JSON Line entries to a dataset. A JSON Line includes information about an image used for training or testing an Amazon Lookout for Vision model. The following is an example JSON Line.
Updating a dataset might take a while to complete. To check the current
status, call DescribeDataset and check the Status
field in the
response.
This operation requires permissions to perform the
lookoutvision:UpdateDatasetEntries
operation.
Synopsis
- data UpdateDatasetEntries = UpdateDatasetEntries' {
- clientToken :: Maybe Text
- projectName :: Text
- datasetType :: Text
- changes :: Base64
- newUpdateDatasetEntries :: Text -> Text -> ByteString -> UpdateDatasetEntries
- updateDatasetEntries_clientToken :: Lens' UpdateDatasetEntries (Maybe Text)
- updateDatasetEntries_projectName :: Lens' UpdateDatasetEntries Text
- updateDatasetEntries_datasetType :: Lens' UpdateDatasetEntries Text
- updateDatasetEntries_changes :: Lens' UpdateDatasetEntries ByteString
- data UpdateDatasetEntriesResponse = UpdateDatasetEntriesResponse' {}
- newUpdateDatasetEntriesResponse :: Int -> UpdateDatasetEntriesResponse
- updateDatasetEntriesResponse_status :: Lens' UpdateDatasetEntriesResponse (Maybe DatasetStatus)
- updateDatasetEntriesResponse_httpStatus :: Lens' UpdateDatasetEntriesResponse Int
Creating a Request
data UpdateDatasetEntries Source #
See: newUpdateDatasetEntries
smart constructor.
UpdateDatasetEntries' | |
|
Instances
newUpdateDatasetEntries Source #
:: Text | |
-> Text | |
-> ByteString | |
-> UpdateDatasetEntries |
Create a value of UpdateDatasetEntries
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:clientToken:UpdateDatasetEntries'
, updateDatasetEntries_clientToken
- ClientToken is an idempotency token that ensures a call to
UpdateDatasetEntries
completes only once. You choose the value to
pass. For example, An issue, such as an network outage, might prevent
you from getting a response from UpdateDatasetEntries
. In this case,
safely retry your call to UpdateDatasetEntries
by using the same
ClientToken
parameter value. An error occurs if the other input
parameters are not the same as in the first request. Using a different
value for ClientToken
is considered a new call to
UpdateDatasetEntries
. An idempotency token is active for 8 hours.
$sel:projectName:UpdateDatasetEntries'
, updateDatasetEntries_projectName
- The name of the project that contains the dataset that you want to
update.
$sel:datasetType:UpdateDatasetEntries'
, updateDatasetEntries_datasetType
- The type of the dataset that you want to update. Specify train
to
update the training dataset. Specify test
to update the test dataset.
If you have a single dataset project, specify train
.
$sel:changes:UpdateDatasetEntries'
, updateDatasetEntries_changes
- The entries to add to the dataset.--
-- Note: This Lens
automatically encodes and decodes Base64 data.
-- The underlying isomorphism will encode to Base64 representation during
-- serialisation, and decode from Base64 representation during deserialisation.
-- This Lens
accepts and returns only raw unencoded data.
Request Lenses
updateDatasetEntries_clientToken :: Lens' UpdateDatasetEntries (Maybe Text) Source #
ClientToken is an idempotency token that ensures a call to
UpdateDatasetEntries
completes only once. You choose the value to
pass. For example, An issue, such as an network outage, might prevent
you from getting a response from UpdateDatasetEntries
. In this case,
safely retry your call to UpdateDatasetEntries
by using the same
ClientToken
parameter value. An error occurs if the other input
parameters are not the same as in the first request. Using a different
value for ClientToken
is considered a new call to
UpdateDatasetEntries
. An idempotency token is active for 8 hours.
updateDatasetEntries_projectName :: Lens' UpdateDatasetEntries Text Source #
The name of the project that contains the dataset that you want to update.
updateDatasetEntries_datasetType :: Lens' UpdateDatasetEntries Text Source #
The type of the dataset that you want to update. Specify train
to
update the training dataset. Specify test
to update the test dataset.
If you have a single dataset project, specify train
.
updateDatasetEntries_changes :: Lens' UpdateDatasetEntries ByteString Source #
The entries to add to the dataset.--
-- Note: This Lens
automatically encodes and decodes Base64 data.
-- The underlying isomorphism will encode to Base64 representation during
-- serialisation, and decode from Base64 representation during deserialisation.
-- This Lens
accepts and returns only raw unencoded data.
Destructuring the Response
data UpdateDatasetEntriesResponse Source #
See: newUpdateDatasetEntriesResponse
smart constructor.
UpdateDatasetEntriesResponse' | |
|
Instances
newUpdateDatasetEntriesResponse Source #
Create a value of UpdateDatasetEntriesResponse
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:status:UpdateDatasetEntriesResponse'
, updateDatasetEntriesResponse_status
- The status of the dataset update.
$sel:httpStatus:UpdateDatasetEntriesResponse'
, updateDatasetEntriesResponse_httpStatus
- The response's http status code.
Response Lenses
updateDatasetEntriesResponse_status :: Lens' UpdateDatasetEntriesResponse (Maybe DatasetStatus) Source #
The status of the dataset update.
updateDatasetEntriesResponse_httpStatus :: Lens' UpdateDatasetEntriesResponse Int Source #
The response's http status code.