The input for CreateAdapterCommand.

interface CreateAdapterCommandInput {
    AdapterName: undefined | string;
    AutoUpdate?: AutoUpdate;
    ClientRequestToken?: string;
    Description?: string;
    FeatureTypes: undefined | FeatureType[];
    Tags?: Record<string, string>;
}

Hierarchy (view full)

Properties

AdapterName: undefined | string

The name to be assigned to the adapter being created.

AutoUpdate?: AutoUpdate

Controls whether or not the adapter should automatically update.

ClientRequestToken?: string

Idempotent token is used to recognize the request. If the same token is used with multiple CreateAdapter requests, the same session is returned. This token is employed to avoid unintentionally creating the same session multiple times.

Description?: string

The description to be assigned to the adapter being created.

FeatureTypes: undefined | FeatureType[]

The type of feature that the adapter is being trained on. Currrenly, supported feature types are: QUERIES

Tags?: Record<string, string>

A list of tags to be added to the adapter.