AWS Fundamentals Logo
AWS Fundamentals
AWS::Rekognition::Project

Rekognition Project

The AWS::Rekognition::Project type creates an Amazon Rekognition CustomLabels Project. A project is a grouping of the resources needed to create and manage Dataset and ProjectVersions.

Properties

2 configurable properties. 1 required. Click a row to see details.

Filter:
PropertyTypeFlags
ProjectName
string
RequiredCreate-only
Tags
Array<Tag>

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
Arnstring-

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::Rekognition::Project

Resources:
  MyResource:
    Type: AWS::Rekognition::Project
    Properties:
      ProjectName: "my-projectname"
      Tags:
        - Key: Environment
          Value: Production

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

create

rekognition:CreateProjectrekognition:TagResourcerekognition:ListTagsForResource

read

rekognition:DescribeProjectsrekognition:ListTagsForResource

update

rekognition:DescribeProjectsrekognition:TagResourcerekognition:UntagResourcerekognition:ListTagsForResource

delete

rekognition:DescribeProjectsrekognition:DeleteProject

list

rekognition:DescribeProjects

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter

Quick Facts

ServiceRekognition
Properties3
Required1
TaggingSupported
Primary IDProjectName

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

These properties cannot be changed after the resource is created. Updating them triggers a replacement.

ProjectName

Related Resources

External Links