Interface SourceIpConditionConfig.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<SourceIpConditionConfig.Builder,SourceIpConditionConfig>
,SdkBuilder<SourceIpConditionConfig.Builder,SourceIpConditionConfig>
,SdkPojo
- Enclosing class:
- SourceIpConditionConfig
public static interface SourceIpConditionConfig.Builder extends SdkPojo, CopyableBuilder<SourceIpConditionConfig.Builder,SourceIpConditionConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SourceIpConditionConfig.Builder
values(String... values)
The source IP addresses, in CIDR format.SourceIpConditionConfig.Builder
values(Collection<String> values)
The source IP addresses, in CIDR format.-
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
-
-
-
-
Method Detail
-
values
SourceIpConditionConfig.Builder values(Collection<String> values)
The source IP addresses, in CIDR format. You can use both IPv4 and IPv6 addresses. Wildcards are not supported.
If you specify multiple addresses, the condition is satisfied if the source IP address of the request matches one of the CIDR blocks. This condition is not satisfied by the addresses in the X-Forwarded-For header. To search for addresses in the X-Forwarded-For header, use HttpHeaderConditionConfig.
The total number of values must be less than, or equal to five.
- Parameters:
values
- The source IP addresses, in CIDR format. You can use both IPv4 and IPv6 addresses. Wildcards are not supported.If you specify multiple addresses, the condition is satisfied if the source IP address of the request matches one of the CIDR blocks. This condition is not satisfied by the addresses in the X-Forwarded-For header. To search for addresses in the X-Forwarded-For header, use HttpHeaderConditionConfig.
The total number of values must be less than, or equal to five.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
SourceIpConditionConfig.Builder values(String... values)
The source IP addresses, in CIDR format. You can use both IPv4 and IPv6 addresses. Wildcards are not supported.
If you specify multiple addresses, the condition is satisfied if the source IP address of the request matches one of the CIDR blocks. This condition is not satisfied by the addresses in the X-Forwarded-For header. To search for addresses in the X-Forwarded-For header, use HttpHeaderConditionConfig.
The total number of values must be less than, or equal to five.
- Parameters:
values
- The source IP addresses, in CIDR format. You can use both IPv4 and IPv6 addresses. Wildcards are not supported.If you specify multiple addresses, the condition is satisfied if the source IP address of the request matches one of the CIDR blocks. This condition is not satisfied by the addresses in the X-Forwarded-For header. To search for addresses in the X-Forwarded-For header, use HttpHeaderConditionConfig.
The total number of values must be less than, or equal to five.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-