Class: Aws::CodeGuruProfiler::Types::ListProfileTimesResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeGuruProfiler::Types::ListProfileTimesResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codeguruprofiler/types.rb
Overview
The structure representing the listProfileTimesResponse.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
The ‘nextToken` value to include in a future `ListProfileTimes` request.
-
#profile_times ⇒ Array<Types::ProfileTime>
The list of start times of the available profiles for the aggregation period in the specified time range.
Instance Attribute Details
#next_token ⇒ String
The ‘nextToken` value to include in a future `ListProfileTimes` request. When the results of a `ListProfileTimes` 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.
1186 1187 1188 1189 1190 1191 |
# File 'lib/aws-sdk-codeguruprofiler/types.rb', line 1186 class ListProfileTimesResponse < Struct.new( :next_token, :profile_times) SENSITIVE = [] include Aws::Structure end |
#profile_times ⇒ Array<Types::ProfileTime>
The list of start times of the available profiles for the aggregation period in the specified time range.
1186 1187 1188 1189 1190 1191 |
# File 'lib/aws-sdk-codeguruprofiler/types.rb', line 1186 class ListProfileTimesResponse < Struct.new( :next_token, :profile_times) SENSITIVE = [] include Aws::Structure end |