Class: Aws::Synthetics::Types::DescribeCanariesResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Synthetics::Types::DescribeCanariesResponse
- Defined in:
- gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#canaries ⇒ Array<Types::Canary>
Returns an array.
-
#next_token ⇒ String
A token that indicates that there is more data available.
Instance Attribute Details
#canaries ⇒ Array<Types::Canary>
Returns an array. Each item in the array contains the full information about one canary.
1080 1081 1082 1083 1084 1085 |
# File 'gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb', line 1080 class DescribeCanariesResponse < Struct.new( :canaries, :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 DescribeCanaries
operation to
retrieve the next set of results.
1080 1081 1082 1083 1084 1085 |
# File 'gems/aws-sdk-synthetics/lib/aws-sdk-synthetics/types.rb', line 1080 class DescribeCanariesResponse < Struct.new( :canaries, :next_token) SENSITIVE = [] include Aws::Structure end |