Method: Aws::IAM::Types::SimulateCustomPolicyRequest#max_items
- Defined in:
- lib/aws-sdk-iam/types.rb
#max_items ⇒ Integer
Use this only when paginating results to indicate the maximum number of items you want in the response. If additional items exist beyond the maximum you specify, the IsTruncated response element is true.
If you do not include this parameter, the number of items defaults to 100. Note that IAM might return fewer results, even when there are more results available. In that case, the IsTruncated response element returns true, and Marker contains a value to include in the subsequent call that tells the service where to continue from.
11241 11242 11243 11244 11245 11246 11247 11248 11249 11250 11251 11252 11253 11254 11255 |
# File 'lib/aws-sdk-iam/types.rb', line 11241 class SimulateCustomPolicyRequest < Struct.new( :policy_input_list, :permissions_boundary_policy_input_list, :action_names, :resource_arns, :resource_policy, :resource_owner, :caller_arn, :context_entries, :resource_handling_option, :max_items, :marker) SENSITIVE = [] include Aws::Structure end |