@awboost/cfn-resource-types 0.1.146 → 0.1.147

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.
@@ -11,6 +11,16 @@ export type CognitoUserPoolProperties = {
11
11
  AutoVerifiedAttributes?: string[];
12
12
  DeletionProtection?: string;
13
13
  DeviceConfiguration?: DeviceConfiguration;
14
+ /**
15
+ * @minLength `6`
16
+ * @maxLength `20000`
17
+ */
18
+ EmailAuthenticationMessage?: string;
19
+ /**
20
+ * @minLength `1`
21
+ * @maxLength `140`
22
+ */
23
+ EmailAuthenticationSubject?: string;
14
24
  EmailConfiguration?: EmailConfiguration;
15
25
  /**
16
26
  * @minLength `6`
@@ -105,7 +105,7 @@ export type EC2VolumeAttributes = {
105
105
  };
106
106
  /**
107
107
  * Type definition for `AWS::EC2::Volume.Tag`.
108
- * Specifies a tag. For more information, see [Add tags to a resource](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html#cloudformation-add-tag-specifications).
108
+ * Specifies a tag. For more information, see [Resource tags](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html).
109
109
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-volume-tag.html}
110
110
  */
111
111
  export type Tag = {
@@ -13,6 +13,7 @@ export type GlueJobProperties = {
13
13
  ExecutionClass?: string;
14
14
  ExecutionProperty?: ExecutionProperty;
15
15
  GlueVersion?: string;
16
+ JobMode?: string;
16
17
  LogUri?: string;
17
18
  MaintenanceWindow?: string;
18
19
  MaxCapacity?: number;
@@ -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-s3express-directorybucket.html}
6
6
  */
7
7
  export type S3ExpressDirectoryBucketProperties = {
8
+ BucketEncryption?: any;
8
9
  /**
9
10
  * Specifies a name for the bucket. The bucket name must contain only lowercase letters, numbers, and hyphens (-). A directory bucket name must be unique in the chosen Availability Zone. The bucket name must also follow the format 'bucket_base_name--az_id--x-s3' (for example, 'DOC-EXAMPLE-BUCKET--usw2-az1--x-s3'). If you don't specify a name, AWS CloudFormation generates a unique physical ID and uses that ID for the bucket name.
10
11
  * @maxLength `63`
@@ -29,6 +30,10 @@ export type S3ExpressDirectoryBucketAttributes = {
29
30
  * Returns the Amazon Resource Name (ARN) of the specified bucket.
30
31
  */
31
32
  Arn: string;
33
+ /**
34
+ * Returns the code for the Availability Zone where the directory bucket was created.
35
+ */
36
+ AvailabilityZoneName: string;
32
37
  };
33
38
  /**
34
39
  * Resource Type definition for AWS::S3Express::DirectoryBucket.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.146",
3
+ "version": "0.1.147",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },