Class: Aws::CodeGuruProfiler::Types::ListProfilingGroupsResponse

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-codeguruprofiler/types.rb

Overview

The structure representing the listProfilingGroupsResponse.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#next_tokenString

The ‘nextToken` value to include in a future `ListProfilingGroups` request. When the results of a `ListProfilingGroups` request exceed `maxResults`, this value can be used to retrieve the next page of results. This value is `null` when there are no more results to return.

Returns:

  • (String)


1273
1274
1275
1276
1277
1278
1279
# File 'lib/aws-sdk-codeguruprofiler/types.rb', line 1273

class ListProfilingGroupsResponse < Struct.new(
  :next_token,
  :profiling_group_names,
  :profiling_groups)
  SENSITIVE = []
  include Aws::Structure
end

#profiling_group_namesArray<String>

A returned list of profiling group names. A list of the names is returned only if ‘includeDescription` is `false`, otherwise a list of [ `ProfilingGroupDescription` ][1] objects is returned.

[1]: docs.aws.amazon.com/codeguru/latest/profiler-api/API_ProfilingGroupDescription.html

Returns:

  • (Array<String>)


1273
1274
1275
1276
1277
1278
1279
# File 'lib/aws-sdk-codeguruprofiler/types.rb', line 1273

class ListProfilingGroupsResponse < Struct.new(
  :next_token,
  :profiling_group_names,
  :profiling_groups)
  SENSITIVE = []
  include Aws::Structure
end

#profiling_groupsArray<Types::ProfilingGroupDescription>

A returned list [ ‘ProfilingGroupDescription` ][1] objects. A list of [ `ProfilingGroupDescription` ][1] objects is returned only if `includeDescription` is `true`, otherwise a list of profiling group names is returned.

[1]: docs.aws.amazon.com/codeguru/latest/profiler-api/API_ProfilingGroupDescription.html



1273
1274
1275
1276
1277
1278
1279
# File 'lib/aws-sdk-codeguruprofiler/types.rb', line 1273

class ListProfilingGroupsResponse < Struct.new(
  :next_token,
  :profiling_group_names,
  :profiling_groups)
  SENSITIVE = []
  include Aws::Structure
end