Interface GetFunctionRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CloudFrontRequest.Builder
,CopyableBuilder<GetFunctionRequest.Builder,GetFunctionRequest>
,SdkBuilder<GetFunctionRequest.Builder,GetFunctionRequest>
,SdkPojo
,SdkRequest.Builder
- Enclosing class:
- GetFunctionRequest
public static interface GetFunctionRequest.Builder extends CloudFrontRequest.Builder, SdkPojo, CopyableBuilder<GetFunctionRequest.Builder,GetFunctionRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetFunctionRequest.Builder
name(String name)
The name of the function whose code you are getting.GetFunctionRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
GetFunctionRequest.Builder
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
GetFunctionRequest.Builder
stage(String stage)
The function's stage, eitherDEVELOPMENT
orLIVE
.GetFunctionRequest.Builder
stage(FunctionStage stage)
The function's stage, eitherDEVELOPMENT
orLIVE
.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.services.cloudfront.model.CloudFrontRequest.Builder
build
-
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
-
name
GetFunctionRequest.Builder name(String name)
The name of the function whose code you are getting.
- Parameters:
name
- The name of the function whose code you are getting.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
stage
GetFunctionRequest.Builder stage(String stage)
The function's stage, either
DEVELOPMENT
orLIVE
.- Parameters:
stage
- The function's stage, eitherDEVELOPMENT
orLIVE
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FunctionStage
,FunctionStage
-
stage
GetFunctionRequest.Builder stage(FunctionStage stage)
The function's stage, either
DEVELOPMENT
orLIVE
.- Parameters:
stage
- The function's stage, eitherDEVELOPMENT
orLIVE
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FunctionStage
,FunctionStage
-
overrideConfiguration
GetFunctionRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
GetFunctionRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-