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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-codeguruprofiler/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 'gems/aws-sdk-codeguruprofiler/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 objects is returned.

Returns:

  • (Array<String>)


1273
1274
1275
1276
1277
1278
1279
# File 'gems/aws-sdk-codeguruprofiler/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 objects. A list of ProfilingGroupDescription objects is returned only if includeDescription is true, otherwise a list of profiling group names is returned.



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

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