You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::SageMaker::Types::ListAppImageConfigsRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ListAppImageConfigsRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  max_results: 1,
  next_token: "NextToken",
  name_contains: "AppImageConfigName",
  creation_time_before: Time.now,
  creation_time_after: Time.now,
  modified_time_before: Time.now,
  modified_time_after: Time.now,
  sort_by: "CreationTime", # accepts CreationTime, LastModifiedTime, Name
  sort_order: "Ascending", # accepts Ascending, Descending
}

Instance Attribute Summary collapse

Instance Attribute Details

#creation_time_afterTime

A filter that returns only AppImageConfigs created on or after the specified time.

Returns:

  • (Time)

    A filter that returns only AppImageConfigs created on or after the specified time.

#creation_time_beforeTime

A filter that returns only AppImageConfigs created on or before the specified time.

Returns:

  • (Time)

    A filter that returns only AppImageConfigs created on or before the specified time.

#max_resultsInteger

The maximum number of AppImageConfigs to return in the response. The default value is 10.

Returns:

  • (Integer)

    The maximum number of AppImageConfigs to return in the response.

#modified_time_afterTime

A filter that returns only AppImageConfigs modified on or after the specified time.

Returns:

  • (Time)

    A filter that returns only AppImageConfigs modified on or after the specified time.

#modified_time_beforeTime

A filter that returns only AppImageConfigs modified on or before the specified time.

Returns:

  • (Time)

    A filter that returns only AppImageConfigs modified on or before the specified time.

#name_containsString

A filter that returns only AppImageConfigs whose name contains the specified string.

Returns:

  • (String)

    A filter that returns only AppImageConfigs whose name contains the specified string.

#next_tokenString

If the previous call to ListImages didn\'t return the full set of AppImageConfigs, the call returns a token for getting the next set of AppImageConfigs.

Returns:

  • (String)

    If the previous call to ListImages didn\'t return the full set of AppImageConfigs, the call returns a token for getting the next set of AppImageConfigs.

#sort_byString

The property used to sort results. The default value is CreationTime.

Possible values:

  • CreationTime
  • LastModifiedTime
  • Name

Returns:

  • (String)

    The property used to sort results.

#sort_orderString

The sort order. The default value is Descending.

Possible values:

  • Ascending
  • Descending

Returns:

  • (String)

    The sort order.