Interface ListCodeSigningConfigsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<ListCodeSigningConfigsResponse.Builder,ListCodeSigningConfigsResponse>
,LambdaResponse.Builder
,SdkBuilder<ListCodeSigningConfigsResponse.Builder,ListCodeSigningConfigsResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- ListCodeSigningConfigsResponse
public static interface ListCodeSigningConfigsResponse.Builder extends LambdaResponse.Builder, SdkPojo, CopyableBuilder<ListCodeSigningConfigsResponse.Builder,ListCodeSigningConfigsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListCodeSigningConfigsResponse.Builder
codeSigningConfigs(Collection<CodeSigningConfig> codeSigningConfigs)
The code signing configurationsListCodeSigningConfigsResponse.Builder
codeSigningConfigs(Consumer<CodeSigningConfig.Builder>... codeSigningConfigs)
The code signing configurationsListCodeSigningConfigsResponse.Builder
codeSigningConfigs(CodeSigningConfig... codeSigningConfigs)
The code signing configurationsListCodeSigningConfigsResponse.Builder
nextMarker(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, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
nextMarker
ListCodeSigningConfigsResponse.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.
-
codeSigningConfigs
ListCodeSigningConfigsResponse.Builder codeSigningConfigs(Collection<CodeSigningConfig> codeSigningConfigs)
The code signing configurations
- Parameters:
codeSigningConfigs
- The code signing configurations- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
codeSigningConfigs
ListCodeSigningConfigsResponse.Builder codeSigningConfigs(CodeSigningConfig... codeSigningConfigs)
The code signing configurations
- Parameters:
codeSigningConfigs
- The code signing configurations- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
codeSigningConfigs
ListCodeSigningConfigsResponse.Builder codeSigningConfigs(Consumer<CodeSigningConfig.Builder>... codeSigningConfigs)
The code signing configurations
This is a convenience method that creates an instance of theCodeSigningConfig.Builder
avoiding the need to create one manually viaCodeSigningConfig.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#codeSigningConfigs(List
.) - Parameters:
codeSigningConfigs
- a consumer that will call methods onCodeSigningConfig.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#codeSigningConfigs(java.util.Collection
)
-
-