Method: Aws::IAM::Types::GetAccountAuthorizationDetailsResponse#is_truncated

Defined in:
lib/aws-sdk-iam/types.rb

#is_truncatedBoolean

A flag that indicates whether there are more items to return. If your results were truncated, you can make a subsequent pagination request using the ‘Marker` request parameter to retrieve more items. Note that IAM might return fewer than the `MaxItems` number of results even when there are more results available. We recommend that you check `IsTruncated` after every call to ensure that you receive all your results.

Returns:

  • (Boolean)


3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
# File 'lib/aws-sdk-iam/types.rb', line 3157

class GetAccountAuthorizationDetailsResponse < Struct.new(
  :user_detail_list,
  :group_detail_list,
  :role_detail_list,
  :policies,
  :is_truncated,
  :marker)
  SENSITIVE = []
  include Aws::Structure
end