Returns the details about one feature. You must already know the feature name. To retrieve a list of features in your account, use ListFeatures.
Use a bare-bones client and the command you need to make an API call.
import { EvidentlyClient, GetFeatureCommand } from "@aws-sdk/client-evidently"; // ES Modules import // const { EvidentlyClient, GetFeatureCommand } = require("@aws-sdk/client-evidently"); // CommonJS import const client = new EvidentlyClient(config); const command = new GetFeatureCommand(input); const response = await client.send(command);
GetFeatureCommandInput for command's input shape.
input
GetFeatureCommandOutput for command's response shape.
response
config for EvidentlyClient's config shape.
config
Returns the details about one feature. You must already know the feature name. To retrieve a list of features in your account, use ListFeatures.
Use a bare-bones client and the command you need to make an API call.
import { EvidentlyClient, GetFeatureCommand } from "@aws-sdk/client-evidently"; // ES Modules import // const { EvidentlyClient, GetFeatureCommand } = require("@aws-sdk/client-evidently"); // CommonJS import const client = new EvidentlyClient(config); const command = new GetFeatureCommand(input); const response = await client.send(command);
GetFeatureCommandInput for command's
input
shape.GetFeatureCommandOutput for command's
response
shape.config for EvidentlyClient's
config
shape.