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
Modifier and TypeMethodDescriptionauthorizerFunctionArn
(String authorizerFunctionArn) The ARN of the authorizer's Lambda function.authorizerName
(String authorizerName) The authorizer name.enableCachingForHttp
(Boolean enableCachingForHttp) Whentrue
, the result from the authorizer’s Lambda function is cached for the time specified inrefreshAfterInSeconds
.overrideConfiguration
(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Add an optional request override configuration.overrideConfiguration
(AwsRequestOverrideConfiguration overrideConfiguration) Add an optional request override configuration.The status of the update authorizer request.status
(AuthorizerStatus status) The status of the update authorizer request.tokenKeyName
(String tokenKeyName) The key used to extract the token from the HTTP headers.tokenSigningPublicKeys
(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 Details
-
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
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
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
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
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:
-
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:
-
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) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
overrideConfiguration
- The override configuration.- Returns:
- This object for method chaining.
-
overrideConfiguration
UpdateAuthorizerRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
builderConsumer
- AConsumer
to which an emptyAwsRequestOverrideConfiguration.Builder
will be given.- Returns:
- This object for method chaining.
-