interface OpenIdConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.PCAConnectorSCEP.CfnConnectorPropsMixin.OpenIdConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awspcaconnectorscep#CfnConnectorPropsMixin_OpenIdConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.pcaconnectorscep.CfnConnectorPropsMixin.OpenIdConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_pcaconnectorscep.CfnConnectorPropsMixin.OpenIdConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_pcaconnectorscep » CfnConnectorPropsMixin » 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/cfn-property-mixins';
const openIdConfigurationProperty: pcaconnectorscep.CfnConnectorPropsMixin.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