@awboost/cfn-resource-types 0.1.200 → 0.1.201
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/AWS-Cognito-ManagedLoginBranding.d.ts +67 -0
- package/lib/AWS-Cognito-ManagedLoginBranding.js +12 -0
- package/lib/AWS-Cognito-UserPool.d.ts +19 -0
- package/lib/AWS-QuickSight-Analysis.d.ts +799 -0
- package/lib/AWS-QuickSight-Dashboard.d.ts +947 -0
- package/lib/AWS-QuickSight-Template.d.ts +500 -0
- package/lib/AWS-Wisdom-KnowledgeBase.d.ts +149 -2
- package/package.json +1 -1
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
|
+
/**
|
|
4
|
+
* Resource Type definition for AWS::Cognito::ManagedLoginBranding
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-managedloginbranding.html}
|
|
6
|
+
*/
|
|
7
|
+
export type CognitoManagedLoginBrandingProperties = {
|
|
8
|
+
Assets?: AssetType[];
|
|
9
|
+
ClientId?: string;
|
|
10
|
+
ReturnMergedResources?: boolean;
|
|
11
|
+
Settings?: Record<string, any>;
|
|
12
|
+
UseCognitoProvidedValues?: boolean;
|
|
13
|
+
UserPoolId: string;
|
|
14
|
+
};
|
|
15
|
+
/**
|
|
16
|
+
* Attribute type definition for `AWS::Cognito::ManagedLoginBranding`.
|
|
17
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-managedloginbranding.html#aws-resource-cognito-managedloginbranding-return-values}
|
|
18
|
+
*/
|
|
19
|
+
export type CognitoManagedLoginBrandingAttributes = {
|
|
20
|
+
/**
|
|
21
|
+
* @pattern `^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[4][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$`
|
|
22
|
+
*/
|
|
23
|
+
ManagedLoginBrandingId: string;
|
|
24
|
+
};
|
|
25
|
+
/**
|
|
26
|
+
* Type definition for `AWS::Cognito::ManagedLoginBranding.AssetType`.
|
|
27
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-managedloginbranding-assettype.html}
|
|
28
|
+
*/
|
|
29
|
+
export type AssetType = {
|
|
30
|
+
/**
|
|
31
|
+
* @maxLength `1000000`
|
|
32
|
+
*/
|
|
33
|
+
Bytes?: string;
|
|
34
|
+
Category: CategoryType;
|
|
35
|
+
ColorMode: ColorModeType;
|
|
36
|
+
Extension: ExtensionType;
|
|
37
|
+
/**
|
|
38
|
+
* @minLength `1`
|
|
39
|
+
* @maxLength `40`
|
|
40
|
+
* @pattern `^[\w\- ]+$`
|
|
41
|
+
*/
|
|
42
|
+
ResourceId?: string;
|
|
43
|
+
};
|
|
44
|
+
/**
|
|
45
|
+
* Type definition for `AWS::Cognito::ManagedLoginBranding.CategoryType`.
|
|
46
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-managedloginbranding-categorytype.html}
|
|
47
|
+
*/
|
|
48
|
+
export type CategoryType = "FAVICON_ICO" | "FAVICON_SVG" | "EMAIL_GRAPHIC" | "SMS_GRAPHIC" | "AUTH_APP_GRAPHIC" | "PASSWORD_GRAPHIC" | "PASSKEY_GRAPHIC" | "PAGE_HEADER_LOGO" | "PAGE_HEADER_BACKGROUND" | "PAGE_FOOTER_LOGO" | "PAGE_FOOTER_BACKGROUND" | "PAGE_BACKGROUND" | "FORM_BACKGROUND" | "FORM_LOGO" | "IDP_BUTTON_ICON";
|
|
49
|
+
/**
|
|
50
|
+
* Type definition for `AWS::Cognito::ManagedLoginBranding.ColorModeType`.
|
|
51
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-managedloginbranding-colormodetype.html}
|
|
52
|
+
*/
|
|
53
|
+
export type ColorModeType = "LIGHT" | "DARK" | "DYNAMIC";
|
|
54
|
+
/**
|
|
55
|
+
* Type definition for `AWS::Cognito::ManagedLoginBranding.ExtensionType`.
|
|
56
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-managedloginbranding-extensiontype.html}
|
|
57
|
+
*/
|
|
58
|
+
export type ExtensionType = "ICO" | "JPEG" | "PNG" | "SVG" | "WEBP";
|
|
59
|
+
/**
|
|
60
|
+
* Resource Type definition for AWS::Cognito::ManagedLoginBranding
|
|
61
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-managedloginbranding.html}
|
|
62
|
+
*/
|
|
63
|
+
export declare class CognitoManagedLoginBranding extends $Resource<"AWS::Cognito::ManagedLoginBranding", CognitoManagedLoginBrandingProperties, CognitoManagedLoginBrandingAttributes> {
|
|
64
|
+
static readonly Type = "AWS::Cognito::ManagedLoginBranding";
|
|
65
|
+
constructor(logicalId: string, properties: CognitoManagedLoginBrandingProperties, options?: $ResourceOptions);
|
|
66
|
+
}
|
|
67
|
+
//# sourceMappingURL=AWS-Cognito-ManagedLoginBranding.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Resource Type definition for AWS::Cognito::ManagedLoginBranding
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-managedloginbranding.html}
|
|
5
|
+
*/
|
|
6
|
+
export class CognitoManagedLoginBranding extends $Resource {
|
|
7
|
+
static Type = "AWS::Cognito::ManagedLoginBranding";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, CognitoManagedLoginBranding.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-Cognito-ManagedLoginBranding.js.map
|
|
@@ -56,9 +56,20 @@ export type CognitoUserPoolProperties = {
|
|
|
56
56
|
*/
|
|
57
57
|
UserPoolName?: string;
|
|
58
58
|
UserPoolTags?: Record<string, string>;
|
|
59
|
+
UserPoolTier?: "LITE" | "ESSENTIALS" | "PLUS";
|
|
59
60
|
UsernameAttributes?: string[];
|
|
60
61
|
UsernameConfiguration?: UsernameConfiguration;
|
|
61
62
|
VerificationMessageTemplate?: VerificationMessageTemplate;
|
|
63
|
+
/**
|
|
64
|
+
* @minLength `1`
|
|
65
|
+
* @maxLength `63`
|
|
66
|
+
*/
|
|
67
|
+
WebAuthnRelyingPartyID?: string;
|
|
68
|
+
/**
|
|
69
|
+
* @minLength `1`
|
|
70
|
+
* @maxLength `9`
|
|
71
|
+
*/
|
|
72
|
+
WebAuthnUserVerification?: string;
|
|
62
73
|
};
|
|
63
74
|
/**
|
|
64
75
|
* Attribute type definition for `AWS::Cognito::UserPool`.
|
|
@@ -184,6 +195,7 @@ export type PasswordPolicy = {
|
|
|
184
195
|
*/
|
|
185
196
|
export type Policies = {
|
|
186
197
|
PasswordPolicy?: PasswordPolicy;
|
|
198
|
+
SignInPolicy?: SignInPolicy;
|
|
187
199
|
};
|
|
188
200
|
/**
|
|
189
201
|
* Type definition for `AWS::Cognito::UserPool.PreTokenGenerationConfig`.
|
|
@@ -214,6 +226,13 @@ export type SchemaAttribute = {
|
|
|
214
226
|
Required?: boolean;
|
|
215
227
|
StringAttributeConstraints?: StringAttributeConstraints;
|
|
216
228
|
};
|
|
229
|
+
/**
|
|
230
|
+
* Type definition for `AWS::Cognito::UserPool.SignInPolicy`.
|
|
231
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-signinpolicy.html}
|
|
232
|
+
*/
|
|
233
|
+
export type SignInPolicy = {
|
|
234
|
+
AllowedFirstAuthFactors?: string[];
|
|
235
|
+
};
|
|
217
236
|
/**
|
|
218
237
|
* Type definition for `AWS::Cognito::UserPool.SmsConfiguration`.
|
|
219
238
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-smsconfiguration.html}
|