Interface ListDistributionsByWebAclIdRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CloudFrontRequest.Builder
,CopyableBuilder<ListDistributionsByWebAclIdRequest.Builder,ListDistributionsByWebAclIdRequest>
,SdkBuilder<ListDistributionsByWebAclIdRequest.Builder,ListDistributionsByWebAclIdRequest>
,SdkPojo
,SdkRequest.Builder
- Enclosing class:
- ListDistributionsByWebAclIdRequest
public static interface ListDistributionsByWebAclIdRequest.Builder extends CloudFrontRequest.Builder, SdkPojo, CopyableBuilder<ListDistributionsByWebAclIdRequest.Builder,ListDistributionsByWebAclIdRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListDistributionsByWebAclIdRequest.Builder
marker(String marker)
UseMarker
andMaxItems
to control pagination of results.ListDistributionsByWebAclIdRequest.Builder
maxItems(String maxItems)
The maximum number of distributions that you want CloudFront to return in the response body.ListDistributionsByWebAclIdRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
ListDistributionsByWebAclIdRequest.Builder
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
ListDistributionsByWebAclIdRequest.Builder
webACLId(String webACLId)
The ID of the WAF web ACL that you want to list the associated distributions.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.services.cloudfront.model.CloudFrontRequest.Builder
build
-
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, sdkFields
-
-
-
-
Method Detail
-
marker
ListDistributionsByWebAclIdRequest.Builder marker(String marker)
Use
Marker
andMaxItems
to control pagination of results. If you have more thanMaxItems
distributions that satisfy the request, the response includes aNextMarker
element. To get the next page of results, submit another request. For the value ofMarker
, specify the value ofNextMarker
from the last response. (For the first request, omitMarker
.)- Parameters:
marker
- UseMarker
andMaxItems
to control pagination of results. If you have more thanMaxItems
distributions that satisfy the request, the response includes aNextMarker
element. To get the next page of results, submit another request. For the value ofMarker
, specify the value ofNextMarker
from the last response. (For the first request, omitMarker
.)- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxItems
ListDistributionsByWebAclIdRequest.Builder maxItems(String maxItems)
The maximum number of distributions that you want CloudFront to return in the response body. The maximum and default values are both 100.
- Parameters:
maxItems
- The maximum number of distributions that you want CloudFront to return in the response body. The maximum and default values are both 100.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
webACLId
ListDistributionsByWebAclIdRequest.Builder webACLId(String webACLId)
The ID of the WAF web ACL that you want to list the associated distributions. If you specify "null" for the ID, the request returns a list of the distributions that aren't associated with a web ACL.
For WAFV2, this is the ARN of the web ACL, such as
arn:aws:wafv2:us-east-1:123456789012:global/webacl/ExampleWebACL/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111
.For WAF Classic, this is the ID of the web ACL, such as
a1b2c3d4-5678-90ab-cdef-EXAMPLE11111
.- Parameters:
webACLId
- The ID of the WAF web ACL that you want to list the associated distributions. If you specify "null" for the ID, the request returns a list of the distributions that aren't associated with a web ACL.For WAFV2, this is the ARN of the web ACL, such as
arn:aws:wafv2:us-east-1:123456789012:global/webacl/ExampleWebACL/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111
.For WAF Classic, this is the ID of the web ACL, such as
a1b2c3d4-5678-90ab-cdef-EXAMPLE11111
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
ListDistributionsByWebAclIdRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
ListDistributionsByWebAclIdRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-