Class: Aws::Synthetics::Types::GetCanaryRunsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Synthetics::Types::GetCanaryRunsResponse
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-synthetics/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#canary_runs ⇒ Array<Types::CanaryRun>
An array of structures.
-
#next_token ⇒ String
A token that indicates that there is more data available.
Instance Attribute Details
#canary_runs ⇒ Array<Types::CanaryRun>
An array of structures. Each structure contains the details of one of the retrieved canary runs.
1214 1215 1216 1217 1218 1219 |
# File 'lib/aws-sdk-synthetics/types.rb', line 1214 class GetCanaryRunsResponse < Struct.new( :canary_runs, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A token that indicates that there is more data available. You can use this token in a subsequent ‘GetCanaryRuns` operation to retrieve the next set of results.
1214 1215 1216 1217 1218 1219 |
# File 'lib/aws-sdk-synthetics/types.rb', line 1214 class GetCanaryRunsResponse < Struct.new( :canary_runs, :next_token) SENSITIVE = [] include Aws::Structure end |