interface NativeApplicationOidcOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EC2.CfnVerifiedAccessTrustProvider.NativeApplicationOidcOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnVerifiedAccessTrustProvider_NativeApplicationOidcOptionsProperty |
Java | software.amazon.awscdk.services.ec2.CfnVerifiedAccessTrustProvider.NativeApplicationOidcOptionsProperty |
Python | aws_cdk.aws_ec2.CfnVerifiedAccessTrustProvider.NativeApplicationOidcOptionsProperty |
TypeScript | aws-cdk-lib » aws_ec2 » CfnVerifiedAccessTrustProvider » 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 { aws_ec2 as ec2 } from 'aws-cdk-lib';
const nativeApplicationOidcOptionsProperty: ec2.CfnVerifiedAccessTrustProvider.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