Interface HttpRequestMethodConditionConfig.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<HttpRequestMethodConditionConfig.Builder,HttpRequestMethodConditionConfig>
,SdkBuilder<HttpRequestMethodConditionConfig.Builder,HttpRequestMethodConditionConfig>
,SdkPojo
- Enclosing class:
- HttpRequestMethodConditionConfig
public static interface HttpRequestMethodConditionConfig.Builder extends SdkPojo, CopyableBuilder<HttpRequestMethodConditionConfig.Builder,HttpRequestMethodConditionConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HttpRequestMethodConditionConfig.Builder
values(String... values)
The name of the request method.HttpRequestMethodConditionConfig.Builder
values(Collection<String> values)
The name of the request method.-
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
-
values
HttpRequestMethodConditionConfig.Builder values(Collection<String> values)
The name of the request method. The maximum size is 40 characters. The allowed characters are A-Z, hyphen (-), and underscore (_). The comparison is case sensitive. Wildcards are not supported; therefore, the method name must be an exact match.
If you specify multiple strings, the condition is satisfied if one of the strings matches the HTTP request method. We recommend that you route GET and HEAD requests in the same way, because the response to a HEAD request may be cached.
- Parameters:
values
- The name of the request method. The maximum size is 40 characters. The allowed characters are A-Z, hyphen (-), and underscore (_). The comparison is case sensitive. Wildcards are not supported; therefore, the method name must be an exact match.If you specify multiple strings, the condition is satisfied if one of the strings matches the HTTP request method. We recommend that you route GET and HEAD requests in the same way, because the response to a HEAD request may be cached.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
HttpRequestMethodConditionConfig.Builder values(String... values)
The name of the request method. The maximum size is 40 characters. The allowed characters are A-Z, hyphen (-), and underscore (_). The comparison is case sensitive. Wildcards are not supported; therefore, the method name must be an exact match.
If you specify multiple strings, the condition is satisfied if one of the strings matches the HTTP request method. We recommend that you route GET and HEAD requests in the same way, because the response to a HEAD request may be cached.
- Parameters:
values
- The name of the request method. The maximum size is 40 characters. The allowed characters are A-Z, hyphen (-), and underscore (_). The comparison is case sensitive. Wildcards are not supported; therefore, the method name must be an exact match.If you specify multiple strings, the condition is satisfied if one of the strings matches the HTTP request method. We recommend that you route GET and HEAD requests in the same way, because the response to a HEAD request may be cached.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-