Seleziona le tue preferenze relative ai cookie

Utilizziamo cookie essenziali e strumenti simili necessari per fornire il nostro sito e i nostri servizi. Utilizziamo i cookie prestazionali per raccogliere statistiche anonime in modo da poter capire come i clienti utilizzano il nostro sito e apportare miglioramenti. I cookie essenziali non possono essere disattivati, ma puoi fare clic su \"Personalizza\" o \"Rifiuta\" per rifiutare i cookie prestazionali.

Se sei d'accordo, AWS e le terze parti approvate utilizzeranno i cookie anche per fornire utili funzionalità del sito, ricordare le tue preferenze e visualizzare contenuti pertinenti, inclusa la pubblicità pertinente. Per continuare senza accettare questi cookie, fai clic su \"Continua\" o \"Rifiuta\". Per effettuare scelte più dettagliate o saperne di più, fai clic su \"Personalizza\".

AWS::DataBrew::Project

Modalità Focus
AWS::DataBrew::Project - AWS CloudFormation
Questa pagina non è tradotta nella tua lingua. Richiedi traduzione
Filtro Visualizza

Specifies a new AWS Glue DataBrew project.

Syntax

To declare this entity in your AWS CloudFormation template, use the following syntax:

JSON

{ "Type" : "AWS::DataBrew::Project", "Properties" : { "DatasetName" : String, "Name" : String, "RecipeName" : String, "RoleArn" : String, "Sample" : Sample, "Tags" : [ Tag, ... ] } }

YAML

Type: AWS::DataBrew::Project Properties: DatasetName: String Name: String RecipeName: String RoleArn: String Sample: Sample Tags: - Tag

Properties

DatasetName

The dataset that the project is to act upon.

Required: Yes

Type: String

Minimum: 1

Maximum: 255

Update requires: No interruption

Name

The unique name of a project.

Required: Yes

Type: String

Minimum: 1

Maximum: 255

Update requires: Replacement

RecipeName

The name of a recipe that will be developed during a project session.

Required: Yes

Type: String

Minimum: 1

Maximum: 255

Update requires: No interruption

RoleArn

The Amazon Resource Name (ARN) of the role that will be assumed for this project.

Required: Yes

Type: String

Minimum: 20

Maximum: 2048

Update requires: No interruption

Sample

The sample size and sampling type to apply to the data. If this parameter isn't specified, then the sample consists of the first 500 rows from the dataset.

Required: No

Type: Sample

Update requires: No interruption

Tags

Metadata tags that have been applied to the project.

Required: No

Type: Array of Tag

Update requires: No interruption

Return values

Ref

When you pass the logical ID of this resource to the intrinsic Ref function, Ref returns the resource name. For example:

{ "Ref": "myProject" }

For an AWS Glue DataBrew project named myProject, Ref returns the name of the project.

Examples

Creating projects

The following examples create new DataBrew projects.

YAML

Resources: TestDataBrewProject: Type: AWS::DataBrew::Project Properties: Name: project-name RecipeName: recipe-name DatasetName: dataset-name RoleArn: arn:aws:iam::12345678910:role/PassRoleAdmin Sample: Size: 500 Type: LAST_N

JSON

{ "AWSTemplateFormatVersion": "2010-09-09", "Description": "This CloudFormation template specifies a DataBrew Project", "Resources": { "MyDataBrewProject": { "Type": "AWS::DataBrew::Project", "Properties": { "Name": "test-project", "RecipeName": "test-project-recipe", "DatasetName": "test-dataset", "RoleArn": "arn:aws:iam::1234567891011:role/PassRoleAdmin", "Sample": { "Size": 500, "Type": "LAST_N" }, "Tags": [ { "Key": "key00AtCreate", "Value": "value001AtCreate" } ] } } } }

In questa pagina

Argomento successivo:

Sample

Argomento precedente:

ValidationConfiguration
PrivacyCondizioni del sitoPreferenze cookie
© 2025, Amazon Web Services, Inc. o società affiliate. Tutti i diritti riservati.