File tree 6 files changed +11
-11
lines changed
packages/aws-cdk-lib/aws-cognito/lib/user-pool-idps
6 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -8,12 +8,12 @@ import { CfnUserPoolIdentityProvider } from '../cognito.generated';
8
8
*/
9
9
export interface UserPoolIdentityProviderAmazonProps extends UserPoolIdentityProviderProps {
10
10
/**
11
- * The client id recognized by ' Login with Amazon' APIs.
11
+ * The client id recognized by Login with Amazon APIs.
12
12
* @see https://developer.amazon.com/docs/login-with-amazon/security-profile.html#client-identifier
13
13
*/
14
14
readonly clientId : string ;
15
15
/**
16
- * The client secret to be accompanied with clientId for ' Login with Amazon' APIs to authenticate the client.
16
+ * The client secret to be accompanied with clientId for Login with Amazon APIs to authenticate the client.
17
17
* @see https://developer.amazon.com/docs/login-with-amazon/security-profile.html#client-identifier
18
18
*/
19
19
readonly clientSecret : string ;
@@ -26,7 +26,7 @@ export interface UserPoolIdentityProviderAmazonProps extends UserPoolIdentityPro
26
26
}
27
27
28
28
/**
29
- * Represents a identity provider that integrates with ' Login with Amazon'
29
+ * Represents an identity provider that integrates with Login with Amazon
30
30
* @resource AWS::Cognito::UserPoolIdentityProvider
31
31
*/
32
32
export class UserPoolIdentityProviderAmazon extends UserPoolIdentityProviderBase {
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ export interface UserPoolIdentityProviderAppleProps extends UserPoolIdentityProv
33
33
}
34
34
35
35
/**
36
- * Represents a identity provider that integrates with ' Apple'
36
+ * Represents an identity provider that integrates with Apple
37
37
* @resource AWS::Cognito::UserPoolIdentityProvider
38
38
*/
39
39
export class UserPoolIdentityProviderApple extends UserPoolIdentityProviderBase {
Original file line number Diff line number Diff line change @@ -12,12 +12,12 @@ export interface UserPoolIdentityProviderFacebookProps extends UserPoolIdentityP
12
12
*/
13
13
readonly clientId : string ;
14
14
/**
15
- * The client secret to be accompanied with clientUd for Facebook to authenticate the client.
15
+ * The client secret to be accompanied with clientId for Facebook to authenticate the client.
16
16
* @see https://developers.facebook.com/docs/facebook-login/security#appsecret
17
17
*/
18
18
readonly clientSecret : string ;
19
19
/**
20
- * The list of facebook permissions to obtain for getting access to the Facebook profile.
20
+ * The list of Facebook permissions to obtain for getting access to the Facebook profile.
21
21
* @see https://developers.facebook.com/docs/facebook-login/permissions
22
22
* @default [ public_profile ]
23
23
*/
@@ -30,7 +30,7 @@ export interface UserPoolIdentityProviderFacebookProps extends UserPoolIdentityP
30
30
}
31
31
32
32
/**
33
- * Represents a identity provider that integrates with ' Facebook Login'
33
+ * Represents an identity provider that integrates with Facebook Login
34
34
* @resource AWS::Cognito::UserPoolIdentityProvider
35
35
*/
36
36
export class UserPoolIdentityProviderFacebook extends UserPoolIdentityProviderBase {
Original file line number Diff line number Diff line change @@ -27,15 +27,15 @@ export interface UserPoolIdentityProviderGoogleProps extends UserPoolIdentityPro
27
27
*/
28
28
readonly clientSecretValue ?: SecretValue ;
29
29
/**
30
- * The list of google permissions to obtain for getting access to the google profile
30
+ * The list of Google permissions to obtain for getting access to the Google profile
31
31
* @see https://developers.google.com/identity/sign-in/web/sign-in
32
32
* @default [ profile ]
33
33
*/
34
34
readonly scopes ?: string [ ] ;
35
35
}
36
36
37
37
/**
38
- * Represents a identity provider that integrates with ' Google'
38
+ * Represents an identity provider that integrates with Google
39
39
* @resource AWS::Cognito::UserPoolIdentityProvider
40
40
*/
41
41
export class UserPoolIdentityProviderGoogle extends UserPoolIdentityProviderBase {
Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ export enum OidcAttributeRequestMethod {
98
98
}
99
99
100
100
/**
101
- * Represents a identity provider that integrates with OpenID Connect
101
+ * Represents an identity provider that integrates with OpenID Connect
102
102
* @resource AWS::Cognito::UserPoolIdentityProvider
103
103
*/
104
104
export class UserPoolIdentityProviderOidc extends UserPoolIdentityProviderBase {
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ export class UserPoolIdentityProviderSamlMetadata {
78
78
}
79
79
80
80
/**
81
- * Represents a identity provider that integrates with SAML.
81
+ * Represents an identity provider that integrates with SAML.
82
82
* @resource AWS::Cognito::UserPoolIdentityProvider
83
83
*/
84
84
export class UserPoolIdentityProviderSaml extends UserPoolIdentityProviderBase {
You can’t perform that action at this time.
0 commit comments