interface NativeApplicationOidcOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnVerifiedAccessTrustProviderPropsMixin.NativeApplicationOidcOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnVerifiedAccessTrustProviderPropsMixin_NativeApplicationOidcOptionsProperty |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnVerifiedAccessTrustProviderPropsMixin.NativeApplicationOidcOptionsProperty |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnVerifiedAccessTrustProviderPropsMixin.NativeApplicationOidcOptionsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnVerifiedAccessTrustProviderPropsMixin » NativeApplicationOidcOptionsProperty |
Describes the OpenID Connect (OIDC) options.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ec2_mixins } from '@aws-cdk/mixins-preview/aws-ec2';
const nativeApplicationOidcOptionsProperty: ec2_mixins.CfnVerifiedAccessTrustProviderPropsMixin.NativeApplicationOidcOptionsProperty = {
authorizationEndpoint: 'authorizationEndpoint',
clientId: 'clientId',
clientSecret: 'clientSecret',
issuer: 'issuer',
publicSigningKeyEndpoint: 'publicSigningKeyEndpoint',
scope: 'scope',
tokenEndpoint: 'tokenEndpoint',
userInfoEndpoint: 'userInfoEndpoint',
};
Properties
| Name | Type | Description |
|---|---|---|
| authorization | string | The authorization endpoint of the IdP. |
| client | string | The OAuth 2.0 client identifier. |
| client | string | The OAuth 2.0 client secret. |
| issuer? | string | The OIDC issuer identifier of the IdP. |
| public | string | The public signing key endpoint. |
| scope? | string | The set of user claims to be requested from the IdP. |
| token | string | The token endpoint of the IdP. |
| user | string | The user info endpoint of the IdP. |
authorizationEndpoint?
Type:
string
(optional)
The authorization endpoint of the IdP.
clientId?
Type:
string
(optional)
The OAuth 2.0 client identifier.
clientSecret?
Type:
string
(optional)
The OAuth 2.0 client secret.
issuer?
Type:
string
(optional)
The OIDC issuer identifier of the IdP.
publicSigningKeyEndpoint?
Type:
string
(optional)
The public signing key endpoint.
scope?
Type:
string
(optional)
The set of user claims to be requested from the IdP.
tokenEndpoint?
Type:
string
(optional)
The token endpoint of the IdP.
userInfoEndpoint?
Type:
string
(optional)
The user info endpoint of the IdP.

.NET
Go
Java
Python
TypeScript