@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:39.850Z") @Stability(value=Stable) public interface CfnAuthorizerProps extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.iot.*;
CfnAuthorizerProps cfnAuthorizerProps = CfnAuthorizerProps.builder()
.authorizerFunctionArn("authorizerFunctionArn")
// the properties below are optional
.authorizerName("authorizerName")
.enableCachingForHttp(false)
.signingDisabled(false)
.status("status")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.tokenKeyName("tokenKeyName")
.tokenSigningPublicKeys(Map.of(
"tokenSigningPublicKeysKey", "tokenSigningPublicKeys"))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnAuthorizerProps.Builder
A builder for
CfnAuthorizerProps |
static class |
CfnAuthorizerProps.Jsii$Proxy
An implementation for
CfnAuthorizerProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnAuthorizerProps.Builder |
builder() |
String |
getAuthorizerFunctionArn()
The authorizer's Lambda function ARN.
|
default String |
getAuthorizerName()
The authorizer name.
|
default Object |
getEnableCachingForHttp()
`AWS::IoT::Authorizer.EnableCachingForHttp`.
|
default Object |
getSigningDisabled()
Specifies whether AWS IoT validates the token signature in an authorization request.
|
default String |
getStatus()
The status of the authorizer.
|
default List<CfnTag> |
getTags()
Metadata which can be used to manage the custom authorizer.
|
default String |
getTokenKeyName()
The key used to extract the token from the HTTP headers.
|
default Object |
getTokenSigningPublicKeys()
The public keys used to validate the token signature returned by your custom authentication service.
|
@Stability(value=Stable) @NotNull String getAuthorizerFunctionArn()
@Stability(value=Stable) @Nullable default String getAuthorizerName()
@Stability(value=Stable) @Nullable default Object getEnableCachingForHttp()
@Stability(value=Stable) @Nullable default Object getSigningDisabled()
@Stability(value=Stable) @Nullable default String getStatus()
Valid values: ACTIVE | INACTIVE
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
For URI Request parameters use format: ...key1=value1&key2=value2...
For the CLI command-line parameter use format: &&tags "key1=value1&key2=value2..."
For the cli-input-json file use format: "tags": "key1=value1&key2=value2..."
@Stability(value=Stable) @Nullable default String getTokenKeyName()
@Stability(value=Stable) @Nullable default Object getTokenSigningPublicKeys()
@Stability(value=Stable) static CfnAuthorizerProps.Builder builder()
CfnAuthorizerProps.Builder of CfnAuthorizerPropsCopyright © 2022. All rights reserved.