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

Class: Aws::LakeFormation::Types::ListResourcesRequest

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

Overview

Note:

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

{
  filter_condition_list: [
    {
      field: "RESOURCE_ARN", # accepts RESOURCE_ARN, ROLE_ARN, LAST_MODIFIED
      comparison_operator: "EQ", # accepts EQ, NE, LE, LT, GE, GT, CONTAINS, NOT_CONTAINS, BEGINS_WITH, IN, BETWEEN
      string_value_list: ["StringValue"],
    },
  ],
  max_results: 1,
  next_token: "Token",
}

Instance Attribute Summary collapse

Instance Attribute Details

#filter_condition_listArray<Types::FilterCondition>

Any applicable row-level and/or column-level filtering conditions for the resources.

Returns:

  • (Array<Types::FilterCondition>)

    Any applicable row-level and/or column-level filtering conditions for the resources.

#max_resultsInteger

The maximum number of resource results.

Returns:

  • (Integer)

    The maximum number of resource results.

#next_tokenString

A continuation token, if this is not the first call to retrieve these resources.

Returns:

  • (String)

    A continuation token, if this is not the first call to retrieve these resources.