interface AuthorizerConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoT.CfnDomainConfiguration.AuthorizerConfigProperty |
Java | software.amazon.awscdk.services.iot.CfnDomainConfiguration.AuthorizerConfigProperty |
Python | aws_cdk.aws_iot.CfnDomainConfiguration.AuthorizerConfigProperty |
TypeScript | @aws-cdk/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 * as iot from '@aws-cdk/aws-iot';
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
Java
Python
TypeScript