Package services.verifiedpermissions
Interface CfnIdentitySource.IdentitySourceDetailsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIdentitySource.IdentitySourceDetailsProperty.Jsii$Proxy
- Enclosing class:
CfnIdentitySource
@Stability(Stable)
public static interface CfnIdentitySource.IdentitySourceDetailsProperty
extends software.amazon.jsii.JsiiSerializable
A structure that contains configuration of the identity source.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import services.verifiedpermissions.*; IdentitySourceDetailsProperty identitySourceDetailsProperty = IdentitySourceDetailsProperty.builder() .clientIds(List.of("clientIds")) .discoveryUrl("discoveryUrl") .openIdIssuer("openIdIssuer") .userPoolArn("userPoolArn") .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnIdentitySource.IdentitySourceDetailsProperty
static final class
An implementation forCfnIdentitySource.IdentitySourceDetailsProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The application client IDs associated with the specified Amazon Cognito user pool that are enabled for this identity source.default String
The well-known URL that points to this user pool's OIDC discovery endpoint.default String
A string that identifies the type of OIDC service represented by this .default String
The Amazon Resource Name (ARN) of the Amazon Cognito user pool whose identities are accessible to this Verified Permissions policy store.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getClientIds
The application client IDs associated with the specified Amazon Cognito user pool that are enabled for this identity source.- See Also:
-
getDiscoveryUrl
The well-known URL that points to this user pool's OIDC discovery endpoint.This is a URL string in the following format. This URL replaces the placeholders for both the AWS Region and the user pool identifier with those appropriate for this user pool.
https://cognito-idp. *<region>* .amazonaws.com/ *<user-pool-id>* /.well-known/openid-configuration
- See Also:
-
getOpenIdIssuer
A string that identifies the type of OIDC service represented by this .At this time, the only valid value is
cognito
.- See Also:
-
getUserPoolArn
The Amazon Resource Name (ARN) of the Amazon Cognito user pool whose identities are accessible to this Verified Permissions policy store.- See Also:
-
builder
-