Class: Aws::MPA::Types::ListSessionsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::MPA::Types::ListSessionsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mpa/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#approval_team_arn ⇒ String
Amazon Resource Name (ARN) for the approval team.
-
#filters ⇒ Array<Types::Filter>
An array of ‘Filter` objects.
-
#max_results ⇒ Integer
The maximum number of items to return in the response.
-
#next_token ⇒ String
If present, indicates that more output is available than is included in the current response.
Instance Attribute Details
#approval_team_arn ⇒ String
Amazon Resource Name (ARN) for the approval team.
1495 1496 1497 1498 1499 1500 1501 1502 |
# File 'lib/aws-sdk-mpa/types.rb', line 1495 class ListSessionsRequest < Struct.new( :approval_team_arn, :max_results, :next_token, :filters) SENSITIVE = [] include Aws::Structure end |
#filters ⇒ Array<Types::Filter>
An array of ‘Filter` objects. Contains the filter to apply when listing sessions.
1495 1496 1497 1498 1499 1500 1501 1502 |
# File 'lib/aws-sdk-mpa/types.rb', line 1495 class ListSessionsRequest < Struct.new( :approval_team_arn, :max_results, :next_token, :filters) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of items to return in the response. If more results exist than the specified ‘MaxResults` value, a token is included in the response so that you can retrieve the remaining results.
1495 1496 1497 1498 1499 1500 1501 1502 |
# File 'lib/aws-sdk-mpa/types.rb', line 1495 class ListSessionsRequest < Struct.new( :approval_team_arn, :max_results, :next_token, :filters) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If present, indicates that more output is available than is included in the current response. Use this value in the ‘NextToken` request parameter in a next call to the operation to get more output. You can repeat this until the `NextToken` response element returns `null`.
1495 1496 1497 1498 1499 1500 1501 1502 |
# File 'lib/aws-sdk-mpa/types.rb', line 1495 class ListSessionsRequest < Struct.new( :approval_team_arn, :max_results, :next_token, :filters) SENSITIVE = [] include Aws::Structure end |