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 |
Creates a new version of a model and begins training. Models are managed
as part of an Amazon Rekognition Custom Labels project. You can specify
one training dataset and one testing dataset. The response from
CreateProjectVersion
is an Amazon Resource Name (ARN) for the version
of the model.
Training takes a while to complete. You can get the current status by calling DescribeProjectVersions.
Once training has successfully completed, call DescribeProjectVersions to get the training results and evaluate the model.
After evaluating the model, you start the model by calling StartProjectVersion.
This operation requires permissions to perform the
rekognition:CreateProjectVersion
action.
Synopsis
- data CreateProjectVersion = CreateProjectVersion' {}
- newCreateProjectVersion :: Text -> Text -> OutputConfig -> TrainingData -> TestingData -> CreateProjectVersion
- createProjectVersion_kmsKeyId :: Lens' CreateProjectVersion (Maybe Text)
- createProjectVersion_tags :: Lens' CreateProjectVersion (Maybe (HashMap Text Text))
- createProjectVersion_projectArn :: Lens' CreateProjectVersion Text
- createProjectVersion_versionName :: Lens' CreateProjectVersion Text
- createProjectVersion_outputConfig :: Lens' CreateProjectVersion OutputConfig
- createProjectVersion_trainingData :: Lens' CreateProjectVersion TrainingData
- createProjectVersion_testingData :: Lens' CreateProjectVersion TestingData
- data CreateProjectVersionResponse = CreateProjectVersionResponse' {}
- newCreateProjectVersionResponse :: Int -> CreateProjectVersionResponse
- createProjectVersionResponse_projectVersionArn :: Lens' CreateProjectVersionResponse (Maybe Text)
- createProjectVersionResponse_httpStatus :: Lens' CreateProjectVersionResponse Int
Creating a Request
data CreateProjectVersion Source #
See: newCreateProjectVersion
smart constructor.
CreateProjectVersion' | |
|
Instances
newCreateProjectVersion Source #
:: Text | |
-> Text | |
-> OutputConfig | |
-> TrainingData | |
-> TestingData | |
-> CreateProjectVersion |
Create a value of CreateProjectVersion
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:kmsKeyId:CreateProjectVersion'
, createProjectVersion_kmsKeyId
- The identifier for your AWS Key Management Service (AWS KMS) customer
master key (CMK). You can supply the Amazon Resource Name (ARN) of your
CMK, the ID of your CMK, an alias for your CMK, or an alias ARN. The key
is used to encrypt training and test images copied into the service for
model training. Your source images are unaffected. The key is also used
to encrypt training results and manifest files written to the output
Amazon S3 bucket (OutputConfig
).
If you choose to use your own CMK, you need the following permissions on the CMK.
- kms:CreateGrant
- kms:DescribeKey
- kms:GenerateDataKey
- kms:Decrypt
If you don't specify a value for KmsKeyId
, images copied into the
service are encrypted using a key that AWS owns and manages.
$sel:tags:CreateProjectVersion'
, createProjectVersion_tags
- A set of tags (key-value pairs) that you want to attach to the model.
$sel:projectArn:CreateProjectVersion'
, createProjectVersion_projectArn
- The ARN of the Amazon Rekognition Custom Labels project that manages the
model that you want to train.
$sel:versionName:CreateProjectVersion'
, createProjectVersion_versionName
- A name for the version of the model. This value must be unique.
$sel:outputConfig:CreateProjectVersion'
, createProjectVersion_outputConfig
- The Amazon S3 bucket location to store the results of training. The S3
bucket can be in any AWS account as long as the caller has
s3:PutObject
permissions on the S3 bucket.
$sel:trainingData:CreateProjectVersion'
, createProjectVersion_trainingData
- The dataset to use for training.
$sel:testingData:CreateProjectVersion'
, createProjectVersion_testingData
- The dataset to use for testing.
Request Lenses
createProjectVersion_kmsKeyId :: Lens' CreateProjectVersion (Maybe Text) Source #
The identifier for your AWS Key Management Service (AWS KMS) customer
master key (CMK). You can supply the Amazon Resource Name (ARN) of your
CMK, the ID of your CMK, an alias for your CMK, or an alias ARN. The key
is used to encrypt training and test images copied into the service for
model training. Your source images are unaffected. The key is also used
to encrypt training results and manifest files written to the output
Amazon S3 bucket (OutputConfig
).
If you choose to use your own CMK, you need the following permissions on the CMK.
- kms:CreateGrant
- kms:DescribeKey
- kms:GenerateDataKey
- kms:Decrypt
If you don't specify a value for KmsKeyId
, images copied into the
service are encrypted using a key that AWS owns and manages.
createProjectVersion_tags :: Lens' CreateProjectVersion (Maybe (HashMap Text Text)) Source #
A set of tags (key-value pairs) that you want to attach to the model.
createProjectVersion_projectArn :: Lens' CreateProjectVersion Text Source #
The ARN of the Amazon Rekognition Custom Labels project that manages the model that you want to train.
createProjectVersion_versionName :: Lens' CreateProjectVersion Text Source #
A name for the version of the model. This value must be unique.
createProjectVersion_outputConfig :: Lens' CreateProjectVersion OutputConfig Source #
The Amazon S3 bucket location to store the results of training. The S3
bucket can be in any AWS account as long as the caller has
s3:PutObject
permissions on the S3 bucket.
createProjectVersion_trainingData :: Lens' CreateProjectVersion TrainingData Source #
The dataset to use for training.
createProjectVersion_testingData :: Lens' CreateProjectVersion TestingData Source #
The dataset to use for testing.
Destructuring the Response
data CreateProjectVersionResponse Source #
See: newCreateProjectVersionResponse
smart constructor.
CreateProjectVersionResponse' | |
|
Instances
newCreateProjectVersionResponse Source #
Create a value of CreateProjectVersionResponse
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:projectVersionArn:CreateProjectVersionResponse'
, createProjectVersionResponse_projectVersionArn
- The ARN of the model version that was created. Use
DescribeProjectVersion
to get the current status of the training
operation.
$sel:httpStatus:CreateProjectVersionResponse'
, createProjectVersionResponse_httpStatus
- The response's http status code.
Response Lenses
createProjectVersionResponse_projectVersionArn :: Lens' CreateProjectVersionResponse (Maybe Text) Source #
The ARN of the model version that was created. Use
DescribeProjectVersion
to get the current status of the training
operation.
createProjectVersionResponse_httpStatus :: Lens' CreateProjectVersionResponse Int Source #
The response's http status code.