Skip to main content

projects

Creates, updates, deletes or gets a project resource or lists projects in a region

Overview

Nameprojects
TypeResource
DescriptionThe AWS::LookoutVision::Project type creates an Amazon Lookout for Vision project. A project is a grouping of the resources needed to create and manage a Lookout for Vision model.
Idawscc.lookoutvision.projects

Fields

NameDatatypeDescription
arnstring
project_namestringThe name of the Amazon Lookout for Vision project
regionstringAWS region.

For more information, see AWS::LookoutVision::Project.

Methods

NameResourceAccessible byRequired Params
create_resourceprojectsINSERTProjectName, region
delete_resourceprojectsDELETEIdentifier, region
list_resourcesprojects_list_onlySELECTregion
get_resourceprojectsSELECTIdentifier, region

SELECT examples

Gets all properties from an individual project.

SELECT
region,
arn,
project_name
FROM awscc.lookoutvision.projects
WHERE
region = 'us-east-1' AND
Identifier = '{{ project_name }}';

INSERT example

Use the following StackQL query and manifest file to create a new project resource, using stack-deploy.

/*+ create */
INSERT INTO awscc.lookoutvision.projects (
ProjectName,
region
)
SELECT
'{{ project_name }}',
'{{ region }}';

DELETE example

/*+ delete */
DELETE FROM awscc.lookoutvision.projects
WHERE
Identifier = '{{ project_name }}' AND
region = 'us-east-1';

Permissions

To operate on the projects resource, the following permissions are required:

lookoutvision:CreateProject