Skip to main content

data_automation_projects

Creates, updates, deletes or gets a data_automation_project resource or lists data_automation_projects in a region

Overview

Namedata_automation_projects
TypeResource
DescriptionDefinition of AWS::Bedrock::DataAutomationProject Resource Type
Idawscc.bedrock.data_automation_projects

Fields

NameDatatypeDescription
creation_timestringTime Stamp
custom_output_configurationobjectCustom output configuration
last_modified_timestringTime Stamp
override_configurationobjectOverride configuration
project_arnstringARN of a DataAutomationProject
project_descriptionstringDescription of the DataAutomationProject
project_namestringName of the DataAutomationProject
project_stagestringStage of the Project
standard_output_configurationobjectStandard output configuration
statusstring
kms_key_idstringKMS key identifier
kms_encryption_contextobjectKMS encryption context
tagsarrayList of Tags
regionstringAWS region.

For more information, see AWS::Bedrock::DataAutomationProject.

Methods

NameAccessible byRequired Params
create_resourceINSERTProjectName, 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 data_automation_project.

SELECT
region,
creation_time,
custom_output_configuration,
last_modified_time,
override_configuration,
project_arn,
project_description,
project_name,
project_stage,
standard_output_configuration,
status,
kms_key_id,
kms_encryption_context,
tags
FROM awscc.bedrock.data_automation_projects
WHERE region = 'us-east-1' AND data__Identifier = '<ProjectArn>';

INSERT example

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

/*+ create */
INSERT INTO awscc.bedrock.data_automation_projects (
ProjectName,
region
)
SELECT
'{{ ProjectName }}',
'{{ region }}';

DELETE example

/*+ delete */
DELETE FROM awscc.bedrock.data_automation_projects
WHERE data__Identifier = '<ProjectArn>'
AND region = 'us-east-1';

Permissions

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

Create

bedrock:CreateDataAutomationProject,
bedrock:GetDataAutomationProject,
bedrock:TagResource,
bedrock:ListTagsForResource,
kms:DescribeKey,
kms:Decrypt,
kms:GenerateDataKey

Read

bedrock:GetDataAutomationProject,
bedrock:ListTagsForResource,
kms:DescribeKey,
kms:Decrypt

Update

bedrock:UpdateDataAutomationProject,
bedrock:GetDataAutomationProject,
bedrock:TagResource,
bedrock:UntagResource,
bedrock:ListTagsForResource,
kms:DescribeKey,
kms:Decrypt,
kms:GenerateDataKey

Delete

bedrock:DeleteDataAutomationProject,
bedrock:GetDataAutomationProject,
kms:DescribeKey,
kms:Decrypt

List

bedrock:ListDataAutomationProjects