Class: Aws::Synthetics::Types::DescribeCanariesLastRunResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Synthetics::Types::DescribeCanariesLastRunResponse
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-synthetics/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#canaries_last_run ⇒ Array<Types::CanaryLastRun>
An array that contains the information from the most recent run of each canary.
-
#next_token ⇒ String
A token that indicates that there is more data available.
Instance Attribute Details
#canaries_last_run ⇒ Array<Types::CanaryLastRun>
An array that contains the information from the most recent run of each canary.
1019 1020 1021 1022 1023 1024 |
# File 'lib/aws-sdk-synthetics/types.rb', line 1019 class DescribeCanariesLastRunResponse < Struct.new( :canaries_last_run, :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 ‘DescribeCanariesLastRun` operation to retrieve the next set of results.
1019 1020 1021 1022 1023 1024 |
# File 'lib/aws-sdk-synthetics/types.rb', line 1019 class DescribeCanariesLastRunResponse < Struct.new( :canaries_last_run, :next_token) SENSITIVE = [] include Aws::Structure end |