Class: Aws::Synthetics::Types::ListGroupResourcesResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Synthetics::Types::ListGroupResourcesResponse
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-synthetics/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
A token that indicates that there is more data available.
-
#resources ⇒ Array<String>
An array of ARNs.
Instance Attribute Details
#next_token ⇒ String
A token that indicates that there is more data available. You can use this token in a subsequent ‘ListGroupResources` operation to retrieve the next set of results.
1421 1422 1423 1424 1425 1426 |
# File 'lib/aws-sdk-synthetics/types.rb', line 1421 class ListGroupResourcesResponse < Struct.new( :resources, :next_token) SENSITIVE = [] include Aws::Structure end |
#resources ⇒ Array<String>
An array of ARNs. These ARNs are for the canaries that are associated with the group.
1421 1422 1423 1424 1425 1426 |
# File 'lib/aws-sdk-synthetics/types.rb', line 1421 class ListGroupResourcesResponse < Struct.new( :resources, :next_token) SENSITIVE = [] include Aws::Structure end |