Class: Aws::Pinpoint::Types::JourneyRunsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::JourneyRunsResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpoint/types.rb
Overview
Provides information from all runs of a journey.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#item ⇒ Array<Types::JourneyRunResponse>
An array of responses, one for each run of the journey.
-
#next_token ⇒ String
The string to use in a subsequent request to get the next page of results in a paginated response.
Instance Attribute Details
#item ⇒ Array<Types::JourneyRunResponse>
An array of responses, one for each run of the journey
8897 8898 8899 8900 8901 8902 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 8897 class JourneyRunsResponse < Struct.new( :item, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The string to use in a subsequent request to get the next page of results in a paginated response. This value is null if there are no additional pages.
8897 8898 8899 8900 8901 8902 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 8897 class JourneyRunsResponse < Struct.new( :item, :next_token) SENSITIVE = [] include Aws::Structure end |