Class CfnDatasetPropsMixin
java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.Mixin
software.amazon.awscdk.cfnpropertymixins.services.databrew.CfnDatasetPropsMixin
- All Implemented Interfaces:
software.amazon.jsii.JsiiSerializable,software.constructs.IMixin
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:57.796Z")
@Stability(Stable)
public class CfnDatasetPropsMixin
extends Mixin
implements software.constructs.IMixin
Specifies a new DataBrew dataset.
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.*;
import software.amazon.awscdk.*;
IMergeStrategy mergeStrategy;
CfnDatasetPropsMixin cfnDatasetPropsMixin = CfnDatasetPropsMixin.Builder.create(CfnDatasetMixinProps.builder()
.format("format")
.formatOptions(FormatOptionsProperty.builder()
.csv(CsvOptionsProperty.builder()
.delimiter("delimiter")
.headerRow(false)
.build())
.excel(ExcelOptionsProperty.builder()
.headerRow(false)
.sheetIndexes(List.of(123))
.sheetNames(List.of("sheetNames"))
.build())
.json(JsonOptionsProperty.builder()
.multiLine(false)
.build())
.build())
.input(InputProperty.builder()
.databaseInputDefinition(DatabaseInputDefinitionProperty.builder()
.databaseTableName("databaseTableName")
.glueConnectionName("glueConnectionName")
.queryString("queryString")
.tempDirectory(S3LocationProperty.builder()
.bucket("bucket")
.bucketOwner("bucketOwner")
.key("key")
.build())
.build())
.dataCatalogInputDefinition(DataCatalogInputDefinitionProperty.builder()
.catalogId("catalogId")
.databaseName("databaseName")
.tableName("tableName")
.tempDirectory(S3LocationProperty.builder()
.bucket("bucket")
.bucketOwner("bucketOwner")
.key("key")
.build())
.build())
.metadata(MetadataProperty.builder()
.sourceArn("sourceArn")
.build())
.s3InputDefinition(S3LocationProperty.builder()
.bucket("bucket")
.bucketOwner("bucketOwner")
.key("key")
.build())
.build())
.name("name")
.pathOptions(PathOptionsProperty.builder()
.filesLimit(FilesLimitProperty.builder()
.maxFiles(123)
.order("order")
.orderedBy("orderedBy")
.build())
.lastModifiedDateCondition(FilterExpressionProperty.builder()
.expression("expression")
.valuesMap(List.of(FilterValueProperty.builder()
.value("value")
.valueReference("valueReference")
.build()))
.build())
.parameters(List.of(PathParameterProperty.builder()
.datasetParameter(DatasetParameterProperty.builder()
.createColumn(false)
.datetimeOptions(DatetimeOptionsProperty.builder()
.format("format")
.localeCode("localeCode")
.timezoneOffset("timezoneOffset")
.build())
.filter(FilterExpressionProperty.builder()
.expression("expression")
.valuesMap(List.of(FilterValueProperty.builder()
.value("value")
.valueReference("valueReference")
.build()))
.build())
.name("name")
.type("type")
.build())
.pathParameterName("pathParameterName")
.build()))
.build())
.source("source")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build())
.strategy(mergeStrategy)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final classA fluent builder forCfnDatasetPropsMixin.static interfaceRepresents a set of options that define how DataBrew will read a comma-separated value (CSV) file when creating a dataset from that file.static interfaceConnection information for dataset input files stored in a database.static interfaceRepresents how metadata stored in the AWS Glue Data Catalog is defined in a DataBrew dataset.static interfaceRepresents a dataset paramater that defines type and conditions for a parameter in the Amazon S3 path of the dataset.static interfaceRepresents additional options for correct interpretation of datetime parameters used in the Amazon S3 path of a dataset.static interfaceRepresents a set of options that define how DataBrew will interpret a Microsoft Excel file when creating a dataset from that file.static interfaceRepresents a limit imposed on number of Amazon S3 files that should be selected for a dataset from a connected Amazon S3 path.static interfaceRepresents a structure for defining parameter conditions.static interfaceRepresents a single entry in theValuesMapof aFilterExpression.static interfaceRepresents a set of options that define the structure of either comma-separated value (CSV), Excel, or JSON input.static interfaceRepresents information on how DataBrew can find data, in either the AWS Glue Data Catalog or Amazon S3.static interfaceRepresents the JSON-specific options that define how input is to be interpreted by AWS Glue DataBrew .static interfaceContains additional resource information needed for specific datasets.static interfaceRepresents a set of options that define how DataBrew selects files for a given Amazon S3 path in a dataset.static interfaceRepresents a single entry in the path parameters of a dataset.static interfaceRepresents an Amazon S3 location (bucket name, bucket owner, and object key) where DataBrew can read input data, or write output from a job.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.constructs.IMixin
software.constructs.IMixin.Jsii$Default, software.constructs.IMixin.Jsii$Proxy -
Field Summary
Fields -
Constructor Summary
ConstructorsModifierConstructorDescriptionCreate a mixin to apply properties toAWS::DataBrew::Dataset.CfnDatasetPropsMixin(CfnDatasetMixinProps props, CfnPropertyMixinOptions options) Create a mixin to apply properties toAWS::DataBrew::Dataset.protectedCfnDatasetPropsMixin(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedCfnDatasetPropsMixin(software.amazon.jsii.JsiiObjectRef objRef) -
Method Summary
Modifier and TypeMethodDescriptionvoidapplyTo(software.constructs.IConstruct construct) Apply the mixin properties to the construct.protected CfnDatasetMixinPropsgetProps()protected IMergeStrategysupports(software.constructs.IConstruct construct) Check if this mixin supports the given construct.Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_PROPERTY_KEYS
-
-
Constructor Details
-
CfnDatasetPropsMixin
protected CfnDatasetPropsMixin(software.amazon.jsii.JsiiObjectRef objRef) -
CfnDatasetPropsMixin
protected CfnDatasetPropsMixin(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnDatasetPropsMixin
@Stability(Stable) public CfnDatasetPropsMixin(@NotNull CfnDatasetMixinProps props, @Nullable CfnPropertyMixinOptions options) Create a mixin to apply properties toAWS::DataBrew::Dataset.- Parameters:
props- L1 properties to apply. This parameter is required.options- Mixin options.
-
CfnDatasetPropsMixin
Create a mixin to apply properties toAWS::DataBrew::Dataset.- Parameters:
props- L1 properties to apply. This parameter is required.
-
-
Method Details
-
applyTo
@Stability(Stable) public void applyTo(@NotNull software.constructs.IConstruct construct) Apply the mixin properties to the construct. -
supports
@Stability(Stable) @NotNull public Boolean supports(@NotNull software.constructs.IConstruct construct) Check if this mixin supports the given construct. -
getProps
-
getStrategy
-