Interface CfnProjectMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnProjectMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:57.814Z")
@Stability(Stable)
public interface CfnProjectMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnProjectPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.databrew.*;
CfnProjectMixinProps cfnProjectMixinProps = CfnProjectMixinProps.builder()
.datasetName("datasetName")
.name("name")
.recipeName("recipeName")
.roleArn("roleArn")
.sample(SampleProperty.builder()
.size(123)
.type("type")
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnProjectMixinPropsstatic final classAn implementation forCfnProjectMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnProjectMixinProps.Builderbuilder()default StringThe dataset that the project is to act upon.default StringgetName()The unique name of a project.default StringThe name of a recipe that will be developed during a project session.default StringThe Amazon Resource Name (ARN) of the role that will be assumed for this project.default ObjectThe 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.
Returns union: either
IResolvableorCfnProjectPropsMixin.SampleProperty- See Also:
-
getTags
Metadata tags that have been applied to the project.- See Also:
-
builder
- Returns:
- a
CfnProjectMixinProps.BuilderofCfnProjectMixinProps
-