interface AuthorizerConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoT.CfnDomainConfiguration.AuthorizerConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiot#CfnDomainConfiguration_AuthorizerConfigProperty |
Java | software.amazon.awscdk.services.iot.CfnDomainConfiguration.AuthorizerConfigProperty |
Python | aws_cdk.aws_iot.CfnDomainConfiguration.AuthorizerConfigProperty |
TypeScript | aws-cdk-lib » aws_iot » CfnDomainConfiguration » AuthorizerConfigProperty |
An object that specifies the authorization service for a domain.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iot as iot } from 'aws-cdk-lib';
const authorizerConfigProperty: iot.CfnDomainConfiguration.AuthorizerConfigProperty = {
allowAuthorizerOverride: false,
defaultAuthorizerName: 'defaultAuthorizerName',
};
Properties
| Name | Type | Description |
|---|---|---|
| allow | boolean | IResolvable | A Boolean that specifies whether the domain configuration's authorization service can be overridden. |
| default | string | The name of the authorization service for a domain configuration. |
allowAuthorizerOverride?
Type:
boolean | IResolvable
(optional)
A Boolean that specifies whether the domain configuration's authorization service can be overridden.
defaultAuthorizerName?
Type:
string
(optional)
The name of the authorization service for a domain configuration.

.NET
Go
Java
Python
TypeScript