interface CfnIdentityProviderProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.WorkSpacesWeb.CfnIdentityProviderProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsworkspacesweb#CfnIdentityProviderProps |
Java | software.amazon.awscdk.services.workspacesweb.CfnIdentityProviderProps |
Python | aws_cdk.aws_workspacesweb.CfnIdentityProviderProps |
TypeScript | aws-cdk-lib » aws_workspacesweb » CfnIdentityProviderProps |
Properties for defining a CfnIdentityProvider.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_workspacesweb as workspacesweb } from 'aws-cdk-lib';
const cfnIdentityProviderProps: workspacesweb.CfnIdentityProviderProps = {
identityProviderDetails: {
identityProviderDetailsKey: 'identityProviderDetails',
},
identityProviderName: 'identityProviderName',
identityProviderType: 'identityProviderType',
// the properties below are optional
portalArn: 'portalArn',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| identity | { [string]: string } | IResolvable | The identity provider details. The following list describes the provider detail keys for each identity provider type. |
| identity | string | The identity provider name. |
| identity | string | The identity provider type. |
| portal | string | The ARN of the identity provider. |
| tags? | Cfn[] |
identityProviderDetails
Type:
{ [string]: string } | IResolvable
The identity provider details. The following list describes the provider detail keys for each identity provider type.
For Google and Login with Amazon:
client_idclient_secretauthorize_scopesFor Facebook:
client_idclient_secretauthorize_scopesapi_versionFor Sign in with Apple:
client_idteam_idkey_idprivate_keyauthorize_scopesFor OIDC providers:
client_idclient_secretattributes_request_methodoidc_issuerauthorize_scopesauthorize_urlif not available from discovery URL specified by oidc_issuer keytoken_urlif not available from discovery URL specified by oidc_issuer keyattributes_urlif not available from discovery URL specified by oidc_issuer keyjwks_uriif not available from discovery URL specified by oidc_issuer keyFor SAML providers:
MetadataFileORMetadataURLIDPSignout(boolean) optionalIDPInit(boolean) optionalRequestSigningAlgorithm(string) optional - Only acceptsrsa-sha256EncryptedResponses(boolean) optional
identityProviderName
Type:
string
The identity provider name.
identityProviderType
Type:
string
The identity provider type.
portalArn?
Type:
string
(optional)
The ARN of the identity provider.
tags?
Type:
Cfn[]
(optional)

.NET
Go
Java
Python
TypeScript