class Aws::Rekognition::Types::CreateProjectVersionRequest

@note When making an API call, you may pass CreateProjectVersionRequest

data as a hash:

    {
      project_arn: "ProjectArn", # required
      version_name: "VersionName", # required
      output_config: { # required
        s3_bucket: "S3Bucket",
        s3_key_prefix: "S3KeyPrefix",
      },
      training_data: { # required
        assets: [
          {
            ground_truth_manifest: {
              s3_object: {
                bucket: "S3Bucket",
                name: "S3ObjectName",
                version: "S3ObjectVersion",
              },
            },
          },
        ],
      },
      testing_data: { # required
        assets: [
          {
            ground_truth_manifest: {
              s3_object: {
                bucket: "S3Bucket",
                name: "S3ObjectName",
                version: "S3ObjectVersion",
              },
            },
          },
        ],
        auto_create: false,
      },
      tags: {
        "TagKey" => "TagValue",
      },
      kms_key_id: "KmsKeyId",
    }

@!attribute [rw] project_arn

The ARN of the Amazon Rekognition Custom Labels project that manages
the model that you want to train.
@return [String]

@!attribute [rw] version_name

A name for the version of the model. This value must be unique.
@return [String]

@!attribute [rw] output_config

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.
@return [Types::OutputConfig]

@!attribute [rw] training_data

The dataset to use for training.
@return [Types::TrainingData]

@!attribute [rw] testing_data

The dataset to use for testing.
@return [Types::TestingData]

@!attribute [rw] tags

A set of tags (key-value pairs) that you want to attach to the
model.
@return [Hash<String,String>]

@!attribute [rw] kms_key_id

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.
@return [String]

Constants

SENSITIVE