interface PathParameterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DataBrew.CfnDataset.PathParameterProperty |
Java | software.amazon.awscdk.services.databrew.CfnDataset.PathParameterProperty |
Python | aws_cdk.aws_databrew.CfnDataset.PathParameterProperty |
TypeScript | @aws-cdk/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 * as databrew from '@aws-cdk/aws-databrew';
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
| Name | Type | Description |
|---|---|---|
| dataset | IResolvable | Dataset | The path parameter definition. |
| path | string | The name of the path parameter. |
datasetParameter
Type:
IResolvable | Dataset
The path parameter definition.
pathParameterName
Type:
string
The name of the path parameter.

.NET
Java
Python
TypeScript