@pulumi/aws-native
Version:
The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)
17 lines (16 loc) • 778 B
TypeScript
export declare const TrainingDatasetColumnType: {
readonly UserId: "USER_ID";
readonly ItemId: "ITEM_ID";
readonly Timestamp: "TIMESTAMP";
readonly CategoricalFeature: "CATEGORICAL_FEATURE";
readonly NumericalFeature: "NUMERICAL_FEATURE";
};
export type TrainingDatasetColumnType = (typeof TrainingDatasetColumnType)[keyof typeof TrainingDatasetColumnType];
export declare const TrainingDatasetDatasetType: {
readonly Interactions: "INTERACTIONS";
};
export type TrainingDatasetDatasetType = (typeof TrainingDatasetDatasetType)[keyof typeof TrainingDatasetDatasetType];
export declare const TrainingDatasetStatus: {
readonly Active: "ACTIVE";
};
export type TrainingDatasetStatus = (typeof TrainingDatasetStatus)[keyof typeof TrainingDatasetStatus];