You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::GlueDataBrew::Types::CreateProjectRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing CreateProjectRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  dataset_name: "DatasetName", # required
  name: "ProjectName", # required
  recipe_name: "RecipeName", # required
  sample: {
    size: 1,
    type: "FIRST_N", # required, accepts FIRST_N, LAST_N, RANDOM
  },
  role_arn: "Arn", # required
  tags: {
    "TagKey" => "TagValue",
  },
}

Instance Attribute Summary collapse

Instance Attribute Details

#dataset_nameString

The name of the dataset to associate this project with.

Returns:

  • (String)

    The name of the dataset to associate this project with.

#nameString

A unique name for the new project.

Returns:

  • (String)

    A unique name for the new project.

#recipe_nameString

The name of an existing recipe to associate with the project.

Returns:

  • (String)

    The name of an existing recipe to associate with the project.

#role_arnString

The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to be assumed for this request.

Returns:

  • (String)

    The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to be assumed for this request.

#sampleTypes::Sample

Represents the sample size and sampling type for AWS Glue DataBrew to use for interactive data analysis.

Returns:

  • (Types::Sample)

    Represents the sample size and sampling type for AWS Glue DataBrew to use for interactive data analysis.

    .

#tagsHash<String,String>

Metadata tags to apply to this project.

Returns:

  • (Hash<String,String>)

    Metadata tags to apply to this project.