Interface DescribeFunctionRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CloudFrontRequest.Builder
,CopyableBuilder<DescribeFunctionRequest.Builder,DescribeFunctionRequest>
,SdkBuilder<DescribeFunctionRequest.Builder,DescribeFunctionRequest>
,SdkPojo
,SdkRequest.Builder
- Enclosing class:
- DescribeFunctionRequest
public static interface DescribeFunctionRequest.Builder extends CloudFrontRequest.Builder, SdkPojo, CopyableBuilder<DescribeFunctionRequest.Builder,DescribeFunctionRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeFunctionRequest.Builder
name(String name)
The name of the function that you are getting information about.DescribeFunctionRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
DescribeFunctionRequest.Builder
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
DescribeFunctionRequest.Builder
stage(String stage)
The function's stage, eitherDEVELOPMENT
orLIVE
.DescribeFunctionRequest.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
DescribeFunctionRequest.Builder name(String name)
The name of the function that you are getting information about.
- Parameters:
name
- The name of the function that you are getting information about.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
stage
DescribeFunctionRequest.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
DescribeFunctionRequest.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
DescribeFunctionRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
DescribeFunctionRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-