Skip to main content

project_profiles

Creates, updates, deletes or gets a project_profile resource or lists project_profiles in a region

Overview

Nameproject_profiles
TypeResource
DescriptionDefinition of AWS::DataZone::ProjectProfile Resource Type
Idawscc.datazone.project_profiles

Fields

NameDatatypeDescription
created_atstring
created_bystring
descriptionstring
domain_idstring
domain_identifierstring
domain_unit_idstring
domain_unit_identifierstring
environment_configurationsarray
idstring
identifierstring
last_updated_atstring
namestring
statusstring
regionstringAWS region.

For more information, see AWS::DataZone::ProjectProfile.

Methods

NameAccessible byRequired Params
create_resourceINSERTName, region
delete_resourceDELETEdata__Identifier, region
update_resourceUPDATEdata__Identifier, data__PatchDocument, region
list_resourcesSELECTregion
get_resourceSELECTdata__Identifier, region

SELECT examples

Gets all properties from an individual project_profile.

SELECT
region,
created_at,
created_by,
description,
domain_id,
domain_identifier,
domain_unit_id,
domain_unit_identifier,
environment_configurations,
id,
identifier,
last_updated_at,
name,
status
FROM awscc.datazone.project_profiles
WHERE region = 'us-east-1' AND data__Identifier = '<DomainIdentifier>|<Identifier>';

INSERT example

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

/*+ create */
INSERT INTO awscc.datazone.project_profiles (
Name,
region
)
SELECT
'{{ Name }}',
'{{ region }}';

DELETE example

/*+ delete */
DELETE FROM awscc.datazone.project_profiles
WHERE data__Identifier = '<DomainIdentifier|Identifier>'
AND region = 'us-east-1';

Permissions

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

Create

datazone:CreateProjectProfile,
datazone:GetProjectProfile,
ssm:GetParameter

Read

datazone:GetProjectProfile,
ssm:GetParameter

Update

datazone:UpdateProjectProfile,
datazone:GetProjectProfile,
ssm:GetParameter

Delete

datazone:DeleteProjectProfile,
datazone:GetProjectProfile

List

datazone:ListProjectProfiles