@awboost/cfn-resource-types 0.1.128 → 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.
- package/lib/AWS-ACMPCA-CertificateAuthority.d.ts +0 -3
- package/lib/AWS-Cognito-LogDeliveryConfiguration.d.ts +16 -0
- package/lib/AWS-Cognito-UserPool.d.ts +11 -2
- package/lib/AWS-Cognito-UserPool.js +1 -1
- package/lib/AWS-EC2-TransitGatewayAttachment.d.ts +0 -4
- package/lib/AWS-EC2-TransitGatewayMulticastGroupMember.d.ts +0 -4
- package/lib/AWS-EC2-TransitGatewayMulticastGroupSource.d.ts +0 -4
- package/lib/AWS-ECS-Cluster.d.ts +12 -2
- package/lib/AWS-KinesisFirehose-DeliveryStream.d.ts +1 -0
- package/lib/AWS-Logs-DeliveryDestination.d.ts +1 -1
- package/lib/AWS-RolesAnywhere-Profile.d.ts +1 -0
- package/package.json +1 -1
|
@@ -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 {
|
|
@@ -21,10 +21,6 @@ export type EC2TransitGatewayAttachmentProperties = {
|
|
|
21
21
|
* Indicates whether to enable Ipv6 Support for Vpc Attachment. Valid Values: enable | disable
|
|
22
22
|
*/
|
|
23
23
|
Ipv6Support?: string;
|
|
24
|
-
/**
|
|
25
|
-
* Indicates whether to enable Security Group referencing support for Vpc Attachment. Valid Values: enable | disable
|
|
26
|
-
*/
|
|
27
|
-
SecurityGroupReferencingSupport?: string;
|
|
28
24
|
};
|
|
29
25
|
SubnetIds: string[];
|
|
30
26
|
Tags?: Tag[];
|
|
@@ -31,10 +31,6 @@ export type EC2TransitGatewayMulticastGroupSourceAttributes = {
|
|
|
31
31
|
* Indicates that the resource is a transit gateway multicast group member.
|
|
32
32
|
*/
|
|
33
33
|
GroupSource: boolean;
|
|
34
|
-
/**
|
|
35
|
-
* The member type (for example, static).
|
|
36
|
-
*/
|
|
37
|
-
MemberType: string;
|
|
38
34
|
/**
|
|
39
35
|
* The ID of the resource.
|
|
40
36
|
*/
|
package/lib/AWS-ECS-Cluster.d.ts
CHANGED
|
@@ -21,7 +21,7 @@ export type ECSClusterProperties = {
|
|
|
21
21
|
*/
|
|
22
22
|
ClusterSettings?: ClusterSettings[];
|
|
23
23
|
/**
|
|
24
|
-
* The execute command configuration for the cluster.
|
|
24
|
+
* The execute command and managed storage configuration for the cluster.
|
|
25
25
|
*/
|
|
26
26
|
Configuration?: ClusterConfiguration;
|
|
27
27
|
/**
|
|
@@ -76,7 +76,7 @@ export type CapacityProviderStrategyItem = {
|
|
|
76
76
|
};
|
|
77
77
|
/**
|
|
78
78
|
* Type definition for `AWS::ECS::Cluster.ClusterConfiguration`.
|
|
79
|
-
* The execute command configuration for the cluster.
|
|
79
|
+
* The execute command and managed storage configuration for the cluster.
|
|
80
80
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-cluster-clusterconfiguration.html}
|
|
81
81
|
*/
|
|
82
82
|
export type ClusterConfiguration = {
|
|
@@ -84,6 +84,9 @@ export type ClusterConfiguration = {
|
|
|
84
84
|
* The details of the execute command configuration.
|
|
85
85
|
*/
|
|
86
86
|
ExecuteCommandConfiguration?: ExecuteCommandConfiguration;
|
|
87
|
+
/**
|
|
88
|
+
* The details of the managed storage configuration.
|
|
89
|
+
*/
|
|
87
90
|
ManagedStorageConfiguration?: ManagedStorageConfiguration;
|
|
88
91
|
};
|
|
89
92
|
/**
|
|
@@ -155,10 +158,17 @@ export type ExecuteCommandLogConfiguration = {
|
|
|
155
158
|
};
|
|
156
159
|
/**
|
|
157
160
|
* Type definition for `AWS::ECS::Cluster.ManagedStorageConfiguration`.
|
|
161
|
+
* The managed storage configuration for the cluster.
|
|
158
162
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-cluster-managedstorageconfiguration.html}
|
|
159
163
|
*/
|
|
160
164
|
export type ManagedStorageConfiguration = {
|
|
165
|
+
/**
|
|
166
|
+
* Specify the KMSlong key ID for the Fargate ephemeral storage.
|
|
167
|
+
*/
|
|
161
168
|
FargateEphemeralStorageKmsKeyId?: string;
|
|
169
|
+
/**
|
|
170
|
+
* Specify a KMSlong key ID to encrypt the managed storage.
|
|
171
|
+
*/
|
|
162
172
|
KmsKeyId?: string;
|
|
163
173
|
};
|
|
164
174
|
/**
|
|
@@ -17,7 +17,7 @@ export type LogsDeliveryDestinationProperties = {
|
|
|
17
17
|
*/
|
|
18
18
|
DeliveryDestinationPolicy?: Record<string, any>;
|
|
19
19
|
/**
|
|
20
|
-
* The ARN of the
|
|
20
|
+
* The ARN of the Amazon Web Services destination that this delivery destination represents. That Amazon Web Services destination can be a log group in CloudWatch Logs, an Amazon S3 bucket, or a delivery stream in Firehose.
|
|
21
21
|
* @minLength `16`
|
|
22
22
|
* @maxLength `2048`
|
|
23
23
|
* @pattern `[\w#+=/:,.@-]*\*?`
|
|
@@ -5,6 +5,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rolesanywhere-profile.html}
|
|
6
6
|
*/
|
|
7
7
|
export type RolesAnywhereProfileProperties = {
|
|
8
|
+
AcceptRoleSessionName?: boolean;
|
|
8
9
|
AttributeMappings?: AttributeMapping[];
|
|
9
10
|
/**
|
|
10
11
|
* @min `900`
|