Interface CfnProjectProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnProjectProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-17T21:37:28.931Z")
@Stability(Stable)
public interface CfnProjectProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnProject
.
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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnProjectProps
static final class
An implementation forCfnProjectProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnProjectProps.Builder
builder()
The dataset that the project is to act upon.getName()
The unique name of a project.The name of a recipe that will be developed during a project session.The Amazon Resource Name (ARN) of the role that will be assumed for this project.default Object
The sample size and sampling type to apply to the data.getTags()
Metadata tags that have been applied to the project.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDatasetName
The dataset that the project is to act upon.- See Also:
-
getName
The unique name of a project.- See Also:
-
getRecipeName
The name of a recipe that will be developed during a project session.- See Also:
-
getRoleArn
The Amazon Resource Name (ARN) of the role that will be assumed for this project.- See Also:
-
getSample
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.
- See Also:
-
getTags
Metadata tags that have been applied to the project.- See Also:
-
builder
- Returns:
- a
CfnProjectProps.Builder
ofCfnProjectProps
-