Interface ListFunctionUrlConfigsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListFunctionUrlConfigsResponse.Builder,ListFunctionUrlConfigsResponse>,LambdaResponse.Builder,SdkBuilder<ListFunctionUrlConfigsResponse.Builder,ListFunctionUrlConfigsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListFunctionUrlConfigsResponse
@Mutable @NotThreadSafe public static interface ListFunctionUrlConfigsResponse.Builder extends LambdaResponse.Builder, SdkPojo, CopyableBuilder<ListFunctionUrlConfigsResponse.Builder,ListFunctionUrlConfigsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListFunctionUrlConfigsResponse.BuilderfunctionUrlConfigs(Collection<FunctionUrlConfig> functionUrlConfigs)A list of function URL configurations.ListFunctionUrlConfigsResponse.BuilderfunctionUrlConfigs(Consumer<FunctionUrlConfig.Builder>... functionUrlConfigs)A list of function URL configurations.ListFunctionUrlConfigsResponse.BuilderfunctionUrlConfigs(FunctionUrlConfig... functionUrlConfigs)A list of function URL configurations.ListFunctionUrlConfigsResponse.BuildernextMarker(String nextMarker)The pagination token that's included if more results are available.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.lambda.model.LambdaResponse.Builder
build, responseMetadata, responseMetadata
-
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
-
-
-
-
Method Detail
-
functionUrlConfigs
ListFunctionUrlConfigsResponse.Builder functionUrlConfigs(Collection<FunctionUrlConfig> functionUrlConfigs)
A list of function URL configurations.
- Parameters:
functionUrlConfigs- A list of function URL configurations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
functionUrlConfigs
ListFunctionUrlConfigsResponse.Builder functionUrlConfigs(FunctionUrlConfig... functionUrlConfigs)
A list of function URL configurations.
- Parameters:
functionUrlConfigs- A list of function URL configurations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
functionUrlConfigs
ListFunctionUrlConfigsResponse.Builder functionUrlConfigs(Consumer<FunctionUrlConfig.Builder>... functionUrlConfigs)
A list of function URL configurations.
This is a convenience method that creates an instance of theFunctionUrlConfig.Builderavoiding the need to create one manually viaFunctionUrlConfig.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#functionUrlConfigs(List.) - Parameters:
functionUrlConfigs- a consumer that will call methods onFunctionUrlConfig.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#functionUrlConfigs(java.util.Collection)
-
nextMarker
ListFunctionUrlConfigsResponse.Builder nextMarker(String nextMarker)
The pagination token that's included if more results are available.
- Parameters:
nextMarker- The pagination token that's included if more results are available.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-