Interface ListProtectionsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListProtectionsResponse.Builder,ListProtectionsResponse>,SdkBuilder<ListProtectionsResponse.Builder,ListProtectionsResponse>,SdkPojo,SdkResponse.Builder,ShieldResponse.Builder
- Enclosing class:
- ListProtectionsResponse
public static interface ListProtectionsResponse.Builder extends ShieldResponse.Builder, SdkPojo, CopyableBuilder<ListProtectionsResponse.Builder,ListProtectionsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListProtectionsResponse.BuildernextToken(String nextToken)When you request a list of objects from Shield Advanced, if the response does not include all of the remaining available objects, Shield Advanced includes aNextTokenvalue in the response.ListProtectionsResponse.Builderprotections(Collection<Protection> protections)The array of enabled Protection objects.ListProtectionsResponse.Builderprotections(Consumer<Protection.Builder>... protections)The array of enabled Protection objects.ListProtectionsResponse.Builderprotections(Protection... protections)The array of enabled Protection objects.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
Methods inherited from interface software.amazon.awssdk.services.shield.model.ShieldResponse.Builder
build, responseMetadata, responseMetadata
-
-
-
-
Method Detail
-
protections
ListProtectionsResponse.Builder protections(Collection<Protection> protections)
The array of enabled Protection objects.
- Parameters:
protections- The array of enabled Protection objects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
protections
ListProtectionsResponse.Builder protections(Protection... protections)
The array of enabled Protection objects.
- Parameters:
protections- The array of enabled Protection objects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
protections
ListProtectionsResponse.Builder protections(Consumer<Protection.Builder>... protections)
The array of enabled Protection objects.
This is a convenience method that creates an instance of theProtection.Builderavoiding the need to create one manually viaProtection.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#protections(List.) - Parameters:
protections- a consumer that will call methods onProtection.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#protections(java.util.Collection)
-
nextToken
ListProtectionsResponse.Builder nextToken(String nextToken)
When you request a list of objects from Shield Advanced, if the response does not include all of the remaining available objects, Shield Advanced includes a
NextTokenvalue in the response. You can retrieve the next batch of objects by requesting the list again and providing the token that was returned by the prior call in your request.You can indicate the maximum number of objects that you want Shield Advanced to return for a single call with the
MaxResultssetting. Shield Advanced will not return more thanMaxResultsobjects, but may return fewer, even if more objects are still available.Whenever more objects remain that Shield Advanced has not yet returned to you, the response will include a
NextTokenvalue.- Parameters:
nextToken- When you request a list of objects from Shield Advanced, if the response does not include all of the remaining available objects, Shield Advanced includes aNextTokenvalue in the response. You can retrieve the next batch of objects by requesting the list again and providing the token that was returned by the prior call in your request.You can indicate the maximum number of objects that you want Shield Advanced to return for a single call with the
MaxResultssetting. Shield Advanced will not return more thanMaxResultsobjects, but may return fewer, even if more objects are still available.Whenever more objects remain that Shield Advanced has not yet returned to you, the response will include a
NextTokenvalue.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-