Class CfnDomainConfiguration.AuthorizerConfigProperty
An object that specifies the authorization service for a domain.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.IoT
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDomainConfiguration.AuthorizerConfigProperty : CfnDomainConfiguration.IAuthorizerConfigProperty
Syntax (vb)
Public Class CfnDomainConfiguration.AuthorizerConfigProperty Implements CfnDomainConfiguration.IAuthorizerConfigProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.IoT;
var authorizerConfigProperty = new AuthorizerConfigProperty {
AllowAuthorizerOverride = false,
DefaultAuthorizerName = "defaultAuthorizerName"
};
Synopsis
Constructors
AuthorizerConfigProperty() | An object that specifies the authorization service for a domain. |
Properties
AllowAuthorizerOverride | A Boolean that specifies whether the domain configuration's authorization service can be overridden. |
DefaultAuthorizerName | The name of the authorization service for a domain configuration. |
Constructors
AuthorizerConfigProperty()
An object that specifies the authorization service for a domain.
public AuthorizerConfigProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.IoT;
var authorizerConfigProperty = new AuthorizerConfigProperty {
AllowAuthorizerOverride = false,
DefaultAuthorizerName = "defaultAuthorizerName"
};
Properties
AllowAuthorizerOverride
A Boolean that specifies whether the domain configuration's authorization service can be overridden.
public object? AllowAuthorizerOverride { get; set; }
Property Value
Remarks
DefaultAuthorizerName
The name of the authorization service for a domain configuration.
public string? DefaultAuthorizerName { get; set; }