interface AuthorizerConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoT.Mixins.CfnDomainConfigurationPropsMixin.AuthorizerConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiot/mixins#CfnDomainConfigurationPropsMixin_AuthorizerConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.iot.mixins.CfnDomainConfigurationPropsMixin.AuthorizerConfigProperty |
Python | aws_cdk.mixins_preview.aws_iot.mixins.CfnDomainConfigurationPropsMixin.AuthorizerConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iot » mixins » CfnDomainConfigurationPropsMixin » 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 { mixins as iot_mixins } from '@aws-cdk/mixins-preview/aws-iot';
const authorizerConfigProperty: iot_mixins.CfnDomainConfigurationPropsMixin.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