Interface QueryStringObject.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<QueryStringObject.Builder,QueryStringObject>,SdkBuilder<QueryStringObject.Builder,QueryStringObject>,SdkPojo
- Enclosing class:
- QueryStringObject
public static interface QueryStringObject.Builder extends SdkPojo, CopyableBuilder<QueryStringObject.Builder,QueryStringObject>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description QueryStringObject.Builderoption(Boolean option)Indicates whether the distribution forwards and caches based on query strings.QueryStringObject.BuilderqueryStringsAllowList(String... queryStringsAllowList)The specific query strings that the distribution forwards to the origin.QueryStringObject.BuilderqueryStringsAllowList(Collection<String> queryStringsAllowList)The specific query strings that the distribution forwards to the origin.-
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
-
option
QueryStringObject.Builder option(Boolean option)
Indicates whether the distribution forwards and caches based on query strings.
- Parameters:
option- Indicates whether the distribution forwards and caches based on query strings.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
queryStringsAllowList
QueryStringObject.Builder queryStringsAllowList(Collection<String> queryStringsAllowList)
The specific query strings that the distribution forwards to the origin.
Your distribution will cache content based on the specified query strings.
If the
optionparameter is true, then your distribution forwards all query strings, regardless of what you specify using thequeryStringsAllowListparameter.- Parameters:
queryStringsAllowList- The specific query strings that the distribution forwards to the origin.Your distribution will cache content based on the specified query strings.
If the
optionparameter is true, then your distribution forwards all query strings, regardless of what you specify using thequeryStringsAllowListparameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
queryStringsAllowList
QueryStringObject.Builder queryStringsAllowList(String... queryStringsAllowList)
The specific query strings that the distribution forwards to the origin.
Your distribution will cache content based on the specified query strings.
If the
optionparameter is true, then your distribution forwards all query strings, regardless of what you specify using thequeryStringsAllowListparameter.- Parameters:
queryStringsAllowList- The specific query strings that the distribution forwards to the origin.Your distribution will cache content based on the specified query strings.
If the
optionparameter is true, then your distribution forwards all query strings, regardless of what you specify using thequeryStringsAllowListparameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-