@awboost/cfn-resource-types 0.1.129 → 0.1.130
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.
|
@@ -95,11 +95,8 @@ export type CrlConfiguration = {
|
|
|
95
95
|
*/
|
|
96
96
|
CrlDistributionPointExtensionConfiguration?: CrlDistributionPointExtensionConfiguration;
|
|
97
97
|
CustomCname?: string;
|
|
98
|
-
CustomPath?: string;
|
|
99
98
|
Enabled: boolean;
|
|
100
99
|
ExpirationInDays?: number;
|
|
101
|
-
PartitioningEnabled?: boolean;
|
|
102
|
-
RetainExpiredCertificates?: boolean;
|
|
103
100
|
S3BucketName?: string;
|
|
104
101
|
S3ObjectAcl?: string;
|
|
105
102
|
};
|
|
@@ -22,6 +22,13 @@ export type CognitoLogDeliveryConfigurationAttributes = {
|
|
|
22
22
|
export type CloudWatchLogsConfiguration = {
|
|
23
23
|
LogGroupArn?: string;
|
|
24
24
|
};
|
|
25
|
+
/**
|
|
26
|
+
* Type definition for `AWS::Cognito::LogDeliveryConfiguration.FirehoseConfiguration`.
|
|
27
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-logdeliveryconfiguration-firehoseconfiguration.html}
|
|
28
|
+
*/
|
|
29
|
+
export type FirehoseConfiguration = {
|
|
30
|
+
StreamArn?: string;
|
|
31
|
+
};
|
|
25
32
|
/**
|
|
26
33
|
* Type definition for `AWS::Cognito::LogDeliveryConfiguration.LogConfiguration`.
|
|
27
34
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-logdeliveryconfiguration-logconfiguration.html}
|
|
@@ -29,7 +36,16 @@ export type CloudWatchLogsConfiguration = {
|
|
|
29
36
|
export type LogConfiguration = {
|
|
30
37
|
CloudWatchLogsConfiguration?: CloudWatchLogsConfiguration;
|
|
31
38
|
EventSource?: string;
|
|
39
|
+
FirehoseConfiguration?: FirehoseConfiguration;
|
|
32
40
|
LogLevel?: string;
|
|
41
|
+
S3Configuration?: S3Configuration;
|
|
42
|
+
};
|
|
43
|
+
/**
|
|
44
|
+
* Type definition for `AWS::Cognito::LogDeliveryConfiguration.S3Configuration`.
|
|
45
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-logdeliveryconfiguration-s3configuration.html}
|
|
46
|
+
*/
|
|
47
|
+
export type S3Configuration = {
|
|
48
|
+
BucketArn?: string;
|
|
33
49
|
};
|
|
34
50
|
/**
|
|
35
51
|
* Resource Type definition for AWS::Cognito::LogDeliveryConfiguration
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
3
|
/**
|
|
4
|
-
*
|
|
4
|
+
* Definition of AWS::Cognito::UserPool Resource Type
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html}
|
|
6
6
|
*/
|
|
7
7
|
export type CognitoUserPoolProperties = {
|
|
@@ -76,6 +76,13 @@ export type AdminCreateUserConfig = {
|
|
|
76
76
|
InviteMessageTemplate?: InviteMessageTemplate;
|
|
77
77
|
UnusedAccountValidityDays?: number;
|
|
78
78
|
};
|
|
79
|
+
/**
|
|
80
|
+
* Type definition for `AWS::Cognito::UserPool.AdvancedSecurityAdditionalFlows`.
|
|
81
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-advancedsecurityadditionalflows.html}
|
|
82
|
+
*/
|
|
83
|
+
export type AdvancedSecurityAdditionalFlows = {
|
|
84
|
+
CustomAuthMode?: string;
|
|
85
|
+
};
|
|
79
86
|
/**
|
|
80
87
|
* Type definition for `AWS::Cognito::UserPool.CustomEmailSender`.
|
|
81
88
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-customemailsender.html}
|
|
@@ -154,6 +161,7 @@ export type NumberAttributeConstraints = {
|
|
|
154
161
|
*/
|
|
155
162
|
export type PasswordPolicy = {
|
|
156
163
|
MinimumLength?: number;
|
|
164
|
+
PasswordHistorySize?: number;
|
|
157
165
|
RequireLowercase?: boolean;
|
|
158
166
|
RequireNumbers?: boolean;
|
|
159
167
|
RequireSymbols?: boolean;
|
|
@@ -232,6 +240,7 @@ export type UsernameConfiguration = {
|
|
|
232
240
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-userpooladdons.html}
|
|
233
241
|
*/
|
|
234
242
|
export type UserPoolAddOns = {
|
|
243
|
+
AdvancedSecurityAdditionalFlows?: AdvancedSecurityAdditionalFlows;
|
|
235
244
|
AdvancedSecurityMode?: string;
|
|
236
245
|
};
|
|
237
246
|
/**
|
|
@@ -247,7 +256,7 @@ export type VerificationMessageTemplate = {
|
|
|
247
256
|
SmsMessage?: string;
|
|
248
257
|
};
|
|
249
258
|
/**
|
|
250
|
-
*
|
|
259
|
+
* Definition of AWS::Cognito::UserPool Resource Type
|
|
251
260
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html}
|
|
252
261
|
*/
|
|
253
262
|
export declare class CognitoUserPool extends $Resource<"AWS::Cognito::UserPool", CognitoUserPoolProperties, CognitoUserPoolAttributes> {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* Definition of AWS::Cognito::UserPool Resource Type
|
|
4
4
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html}
|
|
5
5
|
*/
|
|
6
6
|
export class CognitoUserPool extends $Resource {
|