@Generated(value="jsii-pacmak/1.50.0 (build d1830a4)", date="2022-01-04T15:39:05.417Z") @Stability(value=Stable) public interface CfnProjectProps extends software.amazon.jsii.JsiiSerializable
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() |
String |
getDatasetName()
`AWS::DataBrew::Project.DatasetName`.
|
String |
getName()
`AWS::DataBrew::Project.Name`.
|
String |
getRecipeName()
`AWS::DataBrew::Project.RecipeName`.
|
String |
getRoleArn()
`AWS::DataBrew::Project.RoleArn`.
|
default Object |
getSample()
`AWS::DataBrew::Project.Sample`.
|
default List<CfnTag> |
getTags()
`AWS::DataBrew::Project.Tags`.
|
@Stability(value=Stable) @NotNull String getDatasetName()
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @NotNull String getRecipeName()
@Stability(value=Stable) @NotNull String getRoleArn()
@Stability(value=Stable) @Nullable default Object getSample()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnProjectProps.Builder builder()
CfnProjectProps.Builder of CfnProjectPropsCopyright © 2022. All rights reserved.