Class: Aws::CodeStarNotifications::Types::ListTargetsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeStarNotifications::Types::ListTargetsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codestarnotifications/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#filters ⇒ Array<Types::ListTargetsFilter>
The filters to use to return information by service or resource type.
-
#max_results ⇒ Integer
A non-negative integer used to limit the number of returned results.
-
#next_token ⇒ String
An enumeration token that, when provided in a request, returns the next batch of the results.
Instance Attribute Details
#filters ⇒ Array<Types::ListTargetsFilter>
The filters to use to return information by service or resource type. Valid filters include target type, target address, and target status.
<note markdown=“1”> A filter with the same name can appear more than once when used with OR statements. Filters with different names should be applied with AND statements.
</note>
558 559 560 561 562 563 564 |
# File 'lib/aws-sdk-codestarnotifications/types.rb', line 558 class ListTargetsRequest < Struct.new( :filters, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
A non-negative integer used to limit the number of returned results. The maximum number of results that can be returned is 100.
558 559 560 561 562 563 564 |
# File 'lib/aws-sdk-codestarnotifications/types.rb', line 558 class ListTargetsRequest < Struct.new( :filters, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
An enumeration token that, when provided in a request, returns the next batch of the results.
558 559 560 561 562 563 564 |
# File 'lib/aws-sdk-codestarnotifications/types.rb', line 558 class ListTargetsRequest < Struct.new( :filters, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |