Class BedrockCustomModelQuery
Inheritance
BedrockCustomModelQuery
Assembly: Glitch9.AIDevKit.Provider.AmazonAws.dll
Syntax
public sealed class BedrockCustomModelQuery : IQuery, IRequestParameterProvider
Properties
|
Edit this page
View Source
BaseModelArnEquals
Return custom models only if the base model Amazon Resource Name (ARN) matches this parameter.
Declaration
public string BaseModelArnEquals { get; set; }
Property Value
|
Edit this page
View Source
CreationTimeAfter
Return custom models created after the specified time.
Declaration
public DateTimeOffset? CreationTimeAfter { get; set; }
Property Value
|
Edit this page
View Source
CreationTimeBefore
Return custom models created before the specified time.
Declaration
public DateTimeOffset? CreationTimeBefore { get; set; }
Property Value
|
Edit this page
View Source
FoundationModelArnEquals
Return custom models only if the foundation model Amazon Resource Name (ARN) matches this parameter.
Declaration
public string FoundationModelArnEquals { get; set; }
Property Value
|
Edit this page
View Source
IsOwned
Return custom models depending on if the current account owns them (true) or if they were shared with the current account (false).
Declaration
public bool? IsOwned { get; set; }
Property Value
|
Edit this page
View Source
MaxResults
The maximum number of results to return in the response.
Declaration
public int? MaxResults { get; set; }
Property Value
|
Edit this page
View Source
ModelStatus
The status of the model to filter results by. Valid values: Active | Creating | Failed.
Declaration
public string ModelStatus { get; set; }
Property Value
|
Edit this page
View Source
NameContains
Return custom models only if the job name contains these characters.
Declaration
public string NameContains { get; set; }
Property Value
|
Edit this page
View Source
NextToken
Token for fetching the next page of results.
Declaration
public string NextToken { get; set; }
Property Value
|
Edit this page
View Source
SortBy
The field to sort by. Valid values: CreationTime.
Declaration
public string SortBy { get; set; }
Property Value
|
Edit this page
View Source
SortOrder
The sort order of the results. Valid values: Ascending | Descending.
Declaration
public QuerySortOrder? SortOrder { get; set; }
Property Value
Methods
|
Edit this page
View Source
GetRequestParameters()
Declaration
public IEnumerable<RequestParameter> GetRequestParameters()
Returns
Implements
Extension Methods