List Inference Components
| sagemaker_list_inference_components | R Documentation |
Lists the inference components in your account and their properties¶
Description¶
Lists the inference components in your account and their properties.
Usage¶
sagemaker_list_inference_components(SortBy, SortOrder, NextToken,
MaxResults, NameContains, CreationTimeBefore, CreationTimeAfter,
LastModifiedTimeBefore, LastModifiedTimeAfter, StatusEquals,
EndpointNameEquals, VariantNameEquals)
Arguments¶
SortByThe field by which to sort the inference components in the response. The default is
CreationTime.SortOrderThe sort order for results. The default is
Descending.NextTokenA token that you use to get the next set of results following a truncated response. If the response to the previous request was truncated, that response provides the value for this token.
MaxResultsThe maximum number of inference components to return in the response. This value defaults to 10.
NameContainsFilters the results to only those inference components with a name that contains the specified string.
CreationTimeBeforeFilters the results to only those inference components that were created before the specified time.
CreationTimeAfterFilters the results to only those inference components that were created after the specified time.
LastModifiedTimeBeforeFilters the results to only those inference components that were updated before the specified time.
LastModifiedTimeAfterFilters the results to only those inference components that were updated after the specified time.
StatusEqualsFilters the results to only those inference components with the specified status.
EndpointNameEqualsAn endpoint name to filter the listed inference components. The response includes only those inference components that are hosted at the specified endpoint.
VariantNameEqualsA production variant name to filter the listed inference components. The response includes only those inference components that are hosted at the specified variant.
Value¶
A list with the following syntax:
list(
InferenceComponents = list(
list(
CreationTime = as.POSIXct(
"2015-01-01"
),
InferenceComponentArn = "string",
InferenceComponentName = "string",
EndpointArn = "string",
EndpointName = "string",
VariantName = "string",
InferenceComponentStatus = "InService"|"Creating"|"Updating"|"Failed"|"Deleting",
LastModifiedTime = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)
Request syntax¶
svc$list_inference_components(
SortBy = "Name"|"CreationTime"|"Status",
SortOrder = "Ascending"|"Descending",
NextToken = "string",
MaxResults = 123,
NameContains = "string",
CreationTimeBefore = as.POSIXct(
"2015-01-01"
),
CreationTimeAfter = as.POSIXct(
"2015-01-01"
),
LastModifiedTimeBefore = as.POSIXct(
"2015-01-01"
),
LastModifiedTimeAfter = as.POSIXct(
"2015-01-01"
),
StatusEquals = "InService"|"Creating"|"Updating"|"Failed"|"Deleting",
EndpointNameEquals = "string",
VariantNameEquals = "string"
)