Class: Aws::Shield::Types::ListProtectionsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Shield::Types::ListProtectionsResponse
- Defined in:
- gems/aws-sdk-shield/lib/aws-sdk-shield/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
If you specify a value for
MaxResults
and you have more Protections than the value of MaxResults, AWS Shield Advanced returns a NextToken value in the response that allows you to list another group of Protections. -
#protections ⇒ Array<Types::Protection>
The array of enabled Protection objects.
Instance Attribute Details
#next_token ⇒ String
If you specify a value for MaxResults
and you have more
Protections than the value of MaxResults, AWS Shield Advanced
returns a NextToken value in the response that allows you to list
another group of Protections. For the second and subsequent
ListProtections requests, specify the value of NextToken from the
previous response to get information about another batch of
Protections.
Shield Advanced might return the list of Protection objects in
batches smaller than the number specified by MaxResults. If there
are more Protection objects to return, Shield Advanced will always
also return a NextToken
.
1356 1357 1358 1359 1360 1361 |
# File 'gems/aws-sdk-shield/lib/aws-sdk-shield/types.rb', line 1356 class ListProtectionsResponse < Struct.new( :protections, :next_token) SENSITIVE = [] include Aws::Structure end |
#protections ⇒ Array<Types::Protection>
The array of enabled Protection objects.
1356 1357 1358 1359 1360 1361 |
# File 'gems/aws-sdk-shield/lib/aws-sdk-shield/types.rb', line 1356 class ListProtectionsResponse < Struct.new( :protections, :next_token) SENSITIVE = [] include Aws::Structure end |