@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)",
date="2023-03-28T21:34:14.818Z")
public interface CfnProjectProps
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.databrew.*; CfnProjectProps cfnProjectProps = CfnProjectProps.builder() .datasetName("datasetName") .name("name") .recipeName("recipeName") .roleArn("roleArn") // the properties below are optional .sample(SampleProperty.builder() .type("type") // the properties below are optional .size(123) .build()) .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnProjectProps.Builder
A builder for
CfnProjectProps |
static class |
CfnProjectProps.Jsii$Proxy
An implementation for
CfnProjectProps |
Modifier and Type | Method and Description |
---|---|
static CfnProjectProps.Builder |
builder() |
java.lang.String |
getDatasetName()
The dataset that the project is to act upon.
|
java.lang.String |
getName()
The unique name of a project.
|
java.lang.String |
getRecipeName()
The name of a recipe that will be developed during a project session.
|
java.lang.String |
getRoleArn()
The Amazon Resource Name (ARN) of the role that will be assumed for this project.
|
default java.lang.Object |
getSample()
The sample size and sampling type to apply to the data.
|
default java.util.List<CfnTag> |
getTags()
Metadata tags that have been applied to the project.
|
java.lang.String getDatasetName()
java.lang.String getName()
java.lang.String getRecipeName()
java.lang.String getRoleArn()
default java.lang.Object getSample()
If this parameter isn't specified, then the sample consists of the first 500 rows from the dataset.
default java.util.List<CfnTag> getTags()
static CfnProjectProps.Builder builder()
CfnProjectProps.Builder
of CfnProjectProps