Class CfnJobPropsMixin
java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.Mixin
software.amazon.awscdk.cfnpropertymixins.services.databrew.CfnJobPropsMixin
- 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.805Z")
@Stability(Stable)
public class CfnJobPropsMixin
extends Mixin
implements software.constructs.IMixin
Specifies a new DataBrew job.
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;
CfnJobPropsMixin cfnJobPropsMixin = CfnJobPropsMixin.Builder.create(CfnJobMixinProps.builder()
.databaseOutputs(List.of(DatabaseOutputProperty.builder()
.databaseOptions(DatabaseTableOutputOptionsProperty.builder()
.tableName("tableName")
.tempDirectory(S3LocationProperty.builder()
.bucket("bucket")
.bucketOwner("bucketOwner")
.key("key")
.build())
.build())
.databaseOutputMode("databaseOutputMode")
.glueConnectionName("glueConnectionName")
.build()))
.dataCatalogOutputs(List.of(DataCatalogOutputProperty.builder()
.catalogId("catalogId")
.databaseName("databaseName")
.databaseOptions(DatabaseTableOutputOptionsProperty.builder()
.tableName("tableName")
.tempDirectory(S3LocationProperty.builder()
.bucket("bucket")
.bucketOwner("bucketOwner")
.key("key")
.build())
.build())
.overwrite(false)
.s3Options(S3TableOutputOptionsProperty.builder()
.location(S3LocationProperty.builder()
.bucket("bucket")
.bucketOwner("bucketOwner")
.key("key")
.build())
.build())
.tableName("tableName")
.build()))
.datasetName("datasetName")
.encryptionKeyArn("encryptionKeyArn")
.encryptionMode("encryptionMode")
.jobSample(JobSampleProperty.builder()
.mode("mode")
.size(123)
.build())
.logSubscription("logSubscription")
.maxCapacity(123)
.maxRetries(123)
.name("name")
.outputLocation(OutputLocationProperty.builder()
.bucket("bucket")
.bucketOwner("bucketOwner")
.key("key")
.build())
.outputs(List.of(OutputProperty.builder()
.compressionFormat("compressionFormat")
.format("format")
.formatOptions(OutputFormatOptionsProperty.builder()
.csv(CsvOutputOptionsProperty.builder()
.delimiter("delimiter")
.build())
.build())
.location(S3LocationProperty.builder()
.bucket("bucket")
.bucketOwner("bucketOwner")
.key("key")
.build())
.maxOutputFiles(123)
.overwrite(false)
.partitionColumns(List.of("partitionColumns"))
.build()))
.profileConfiguration(ProfileConfigurationProperty.builder()
.columnStatisticsConfigurations(List.of(ColumnStatisticsConfigurationProperty.builder()
.selectors(List.of(ColumnSelectorProperty.builder()
.name("name")
.regex("regex")
.build()))
.statistics(StatisticsConfigurationProperty.builder()
.includedStatistics(List.of("includedStatistics"))
.overrides(List.of(StatisticOverrideProperty.builder()
.parameters(Map.of(
"parametersKey", "parameters"))
.statistic("statistic")
.build()))
.build())
.build()))
.datasetStatisticsConfiguration(StatisticsConfigurationProperty.builder()
.includedStatistics(List.of("includedStatistics"))
.overrides(List.of(StatisticOverrideProperty.builder()
.parameters(Map.of(
"parametersKey", "parameters"))
.statistic("statistic")
.build()))
.build())
.entityDetectorConfiguration(EntityDetectorConfigurationProperty.builder()
.allowedStatistics(AllowedStatisticsProperty.builder()
.statistics(List.of("statistics"))
.build())
.entityTypes(List.of("entityTypes"))
.build())
.profileColumns(List.of(ColumnSelectorProperty.builder()
.name("name")
.regex("regex")
.build()))
.build())
.projectName("projectName")
.recipe(RecipeProperty.builder()
.name("name")
.version("version")
.build())
.roleArn("roleArn")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.timeout(123)
.type("type")
.validationConfigurations(List.of(ValidationConfigurationProperty.builder()
.rulesetArn("rulesetArn")
.validationMode("validationMode")
.build()))
.build())
.strategy(mergeStrategy)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic interfaceConfiguration of statistics that are allowed to be run on columns that contain detected entities.static final classA fluent builder forCfnJobPropsMixin.static interfaceSelector of a column from a dataset for profile job configuration.static interfaceConfiguration for column evaluations for a profile job.static interfaceRepresents a set of options that define how DataBrew will write a comma-separated value (CSV) file.static interfaceRepresents a JDBC database output object which defines the output destination for a DataBrew recipe job to write into.static interfaceRepresents options that specify how and where DataBrew writes the database output generated by recipe jobs.static interfaceRepresents options that specify how and where in the AWS Glue Data Catalog DataBrew writes the output generated by recipe jobs.static interfaceConfiguration of entity detection for a profile job.static interfaceA sample configuration for profile jobs only, which determines the number of rows on which the profile job is run.static interfaceRepresents a set of options that define the structure of comma-separated (CSV) job output.static interfaceThe location in Amazon S3 or AWS Glue Data Catalog where the job writes its output.static interfaceRepresents options that specify how and where in Amazon S3 DataBrew writes the output generated by recipe jobs or profile jobs.static interfaceConfiguration for profile jobs.static interfaceRepresents one or more actions to be performed on a DataBrew 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.static interfaceRepresents options that specify how and where DataBrew writes the Amazon S3 output generated by recipe jobs.static interfaceOverride of a particular evaluation for a profile job.static interfaceConfiguration of evaluations for a profile job.static interfaceConfiguration for data quality validation.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
ConstructorsModifierConstructorDescriptionCfnJobPropsMixin(CfnJobMixinProps props) Create a mixin to apply properties toAWS::DataBrew::Job.CfnJobPropsMixin(CfnJobMixinProps props, CfnPropertyMixinOptions options) Create a mixin to apply properties toAWS::DataBrew::Job.protectedCfnJobPropsMixin(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedCfnJobPropsMixin(software.amazon.jsii.JsiiObjectRef objRef) -
Method Summary
Modifier and TypeMethodDescriptionvoidapplyTo(software.constructs.IConstruct construct) Apply the mixin properties to the construct.protected CfnJobMixinPropsgetProps()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
-
CfnJobPropsMixin
protected CfnJobPropsMixin(software.amazon.jsii.JsiiObjectRef objRef) -
CfnJobPropsMixin
protected CfnJobPropsMixin(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnJobPropsMixin
@Stability(Stable) public CfnJobPropsMixin(@NotNull CfnJobMixinProps props, @Nullable CfnPropertyMixinOptions options) Create a mixin to apply properties toAWS::DataBrew::Job.- Parameters:
props- L1 properties to apply. This parameter is required.options- Mixin options.
-
CfnJobPropsMixin
Create a mixin to apply properties toAWS::DataBrew::Job.- 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
-