Interface UpdateAuthorizerRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<UpdateAuthorizerRequest.Builder,UpdateAuthorizerRequest>,IotRequest.Builder,SdkBuilder<UpdateAuthorizerRequest.Builder,UpdateAuthorizerRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- UpdateAuthorizerRequest
public static interface UpdateAuthorizerRequest.Builder extends IotRequest.Builder, SdkPojo, CopyableBuilder<UpdateAuthorizerRequest.Builder,UpdateAuthorizerRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UpdateAuthorizerRequest.BuilderauthorizerFunctionArn(String authorizerFunctionArn)The ARN of the authorizer's Lambda function.UpdateAuthorizerRequest.BuilderauthorizerName(String authorizerName)The authorizer name.UpdateAuthorizerRequest.BuilderenableCachingForHttp(Boolean enableCachingForHttp)Whentrue, the result from the authorizer’s Lambda function is cached for the time specified inrefreshAfterInSeconds.UpdateAuthorizerRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)UpdateAuthorizerRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)UpdateAuthorizerRequest.Builderstatus(String status)The status of the update authorizer request.UpdateAuthorizerRequest.Builderstatus(AuthorizerStatus status)The status of the update authorizer request.UpdateAuthorizerRequest.BuildertokenKeyName(String tokenKeyName)The key used to extract the token from the HTTP headers.UpdateAuthorizerRequest.BuildertokenSigningPublicKeys(Map<String,String> tokenSigningPublicKeys)The public keys used to verify the token signature.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.iot.model.IotRequest.Builder
build
-
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
-
authorizerName
UpdateAuthorizerRequest.Builder authorizerName(String authorizerName)
The authorizer name.
- Parameters:
authorizerName- The authorizer name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
authorizerFunctionArn
UpdateAuthorizerRequest.Builder authorizerFunctionArn(String authorizerFunctionArn)
The ARN of the authorizer's Lambda function.
- Parameters:
authorizerFunctionArn- The ARN of the authorizer's Lambda function.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tokenKeyName
UpdateAuthorizerRequest.Builder tokenKeyName(String tokenKeyName)
The key used to extract the token from the HTTP headers.
- Parameters:
tokenKeyName- The key used to extract the token from the HTTP headers.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tokenSigningPublicKeys
UpdateAuthorizerRequest.Builder tokenSigningPublicKeys(Map<String,String> tokenSigningPublicKeys)
The public keys used to verify the token signature.
- Parameters:
tokenSigningPublicKeys- The public keys used to verify the token signature.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
UpdateAuthorizerRequest.Builder status(String status)
The status of the update authorizer request.
- Parameters:
status- The status of the update authorizer request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AuthorizerStatus,AuthorizerStatus
-
status
UpdateAuthorizerRequest.Builder status(AuthorizerStatus status)
The status of the update authorizer request.
- Parameters:
status- The status of the update authorizer request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AuthorizerStatus,AuthorizerStatus
-
enableCachingForHttp
UpdateAuthorizerRequest.Builder enableCachingForHttp(Boolean enableCachingForHttp)
When
true, the result from the authorizer’s Lambda function is cached for the time specified inrefreshAfterInSeconds. The cached result is used while the device reuses the same HTTP connection.- Parameters:
enableCachingForHttp- Whentrue, the result from the authorizer’s Lambda function is cached for the time specified inrefreshAfterInSeconds. The cached result is used while the device reuses the same HTTP connection.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
UpdateAuthorizerRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateAuthorizerRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-