interface OpenIdConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.PCAConnectorSCEP.CfnConnector.OpenIdConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awspcaconnectorscep#CfnConnector_OpenIdConfigurationProperty |
Java | software.amazon.awscdk.services.pcaconnectorscep.CfnConnector.OpenIdConfigurationProperty |
Python | aws_cdk.aws_pcaconnectorscep.CfnConnector.OpenIdConfigurationProperty |
TypeScript | aws-cdk-lib » aws_pcaconnectorscep » CfnConnector » OpenIdConfigurationProperty |
Contains OpenID Connect (OIDC) parameters for use with Microsoft Intune.
For more information about using Connector for SCEP for Microsoft Intune, see Using Connector for SCEP for Microsoft Intune .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_pcaconnectorscep as pcaconnectorscep } from 'aws-cdk-lib';
const openIdConfigurationProperty: pcaconnectorscep.CfnConnector.OpenIdConfigurationProperty = {
audience: 'audience',
issuer: 'issuer',
subject: 'subject',
};
Properties
| Name | Type | Description |
|---|---|---|
| audience? | string | The audience value to copy into your Microsoft Entra app registration's OIDC. |
| issuer? | string | The issuer value to copy into your Microsoft Entra app registration's OIDC. |
| subject? | string | The subject value to copy into your Microsoft Entra app registration's OIDC. |
audience?
Type:
string
(optional)
The audience value to copy into your Microsoft Entra app registration's OIDC.
issuer?
Type:
string
(optional)
The issuer value to copy into your Microsoft Entra app registration's OIDC.
subject?
Type:
string
(optional)
The subject value to copy into your Microsoft Entra app registration's OIDC.

.NET
Go
Java
Python
TypeScript