aws-cdk-lib.aws_databrew.CfnDataset.PathParameterProperty

interface PathParameterProperty

LanguageType name
.NETAmazon.CDK.AWS.DataBrew.CfnDataset.PathParameterProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsdatabrew#CfnDataset_PathParameterProperty
Javasoftware.amazon.awscdk.services.databrew.CfnDataset.PathParameterProperty
Pythonaws_cdk.aws_databrew.CfnDataset.PathParameterProperty
TypeScript aws-cdk-lib » aws_databrew » CfnDataset » PathParameterProperty

Represents a single entry in the path parameters of a dataset.

Each PathParameter consists of a name and a parameter definition.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_databrew as databrew } from 'aws-cdk-lib';
const pathParameterProperty: databrew.CfnDataset.PathParameterProperty = {
  datasetParameter: {
    name: 'name',
    type: 'type',

    // the properties below are optional
    createColumn: false,
    datetimeOptions: {
      format: 'format',

      // the properties below are optional
      localeCode: 'localeCode',
      timezoneOffset: 'timezoneOffset',
    },
    filter: {
      expression: 'expression',
      valuesMap: [{
        value: 'value',
        valueReference: 'valueReference',
      }],
    },
  },
  pathParameterName: 'pathParameterName',
};

Properties

NameTypeDescription
datasetParameterIResolvable | DatasetParameterPropertyThe path parameter definition.
pathParameterNamestringThe name of the path parameter.

datasetParameter

Type: IResolvable | DatasetParameterProperty

The path parameter definition.


pathParameterName

Type: string

The name of the path parameter.