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

Class: Aws::ServiceCatalog::Types::SearchProvisionedProductsInput

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

Overview

Note:

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

{
  accept_language: "AcceptLanguage",
  access_level_filter: {
    key: "Account", # accepts Account, Role, User
    value: "AccessLevelFilterValue",
  },
  filters: {
    "SearchQuery" => ["ProvisionedProductViewFilterValue"],
  },
  sort_by: "SortField",
  sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
  page_size: 1,
  page_token: "PageToken",
}

Instance Attribute Summary collapse

Instance Attribute Details

#accept_languageString

The language code.

  • en - English (default)

  • jp - Japanese

  • zh - Chinese

Returns:

  • (String)

    The language code.

#access_level_filterTypes::AccessLevelFilter

The access level to use to obtain results. The default is User.

Returns:

#filtersHash<String,Array<String>>

The search filters.

When the key is SearchQuery, the searchable fields are arn, createdTime, id, lastRecordId, idempotencyToken, name, physicalId, productId, provisioningArtifact, type, status, tags, userArn, userArnSession, lastProvisioningRecordId, lastSuccessfulProvisioningRecordId, productName, and provisioningArtifactName.

Example: "SearchQuery":["status:AVAILABLE"]

Returns:

  • (Hash<String,Array<String>>)

    The search filters.

#page_sizeInteger

The maximum number of items to return with this call.

Returns:

  • (Integer)

    The maximum number of items to return with this call.

#page_tokenString

The page token for the next set of results. To retrieve the first set of results, use null.

Returns:

  • (String)

    The page token for the next set of results.

#sort_byString

The sort field. If no value is specified, the results are not sorted. The valid values are arn, id, name, and lastRecordId.

Returns:

  • (String)

    The sort field.

#sort_orderString

The sort order. If no value is specified, the results are not sorted.

Possible values:

  • ASCENDING
  • DESCENDING

Returns:

  • (String)

    The sort order.