@awboost/cfn-resource-types 0.1.260 → 0.1.261

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.
@@ -130,13 +130,13 @@ export type X12FunctionalGroupHeaders = {
130
130
  /**
131
131
  * @minLength `2`
132
132
  * @maxLength `15`
133
- * @pattern `^[a-zA-Z0-9]*$`
133
+ * @pattern `^[a-zA-Z0-9 ]*$`
134
134
  */
135
135
  ApplicationReceiverCode?: string;
136
136
  /**
137
137
  * @minLength `2`
138
138
  * @maxLength `15`
139
- * @pattern `^[a-zA-Z0-9]*$`
139
+ * @pattern `^[a-zA-Z0-9 ]*$`
140
140
  */
141
141
  ApplicationSenderCode?: string;
142
142
  /**
@@ -160,7 +160,7 @@ export type X12InterchangeControlHeaders = {
160
160
  /**
161
161
  * @minLength `15`
162
162
  * @maxLength `15`
163
- * @pattern `^[a-zA-Z0-9]*$`
163
+ * @pattern `^[a-zA-Z0-9 ]*$`
164
164
  */
165
165
  ReceiverId?: string;
166
166
  /**
@@ -177,7 +177,7 @@ export type X12InterchangeControlHeaders = {
177
177
  /**
178
178
  * @minLength `15`
179
179
  * @maxLength `15`
180
- * @pattern `^[a-zA-Z0-9]*$`
180
+ * @pattern `^[a-zA-Z0-9 ]*$`
181
181
  */
182
182
  SenderId?: string;
183
183
  /**
@@ -42,6 +42,7 @@ export type BackupRuleResourceType = {
42
42
  CompletionWindowMinutes?: number;
43
43
  CopyActions?: CopyActionResourceType[];
44
44
  EnableContinuousBackup?: boolean;
45
+ IndexActions?: IndexActionsResourceType[];
45
46
  Lifecycle?: LifecycleResourceType;
46
47
  RecoveryPointTags?: Record<string, string>;
47
48
  RuleName: string;
@@ -58,6 +59,13 @@ export type CopyActionResourceType = {
58
59
  DestinationBackupVaultArn: string;
59
60
  Lifecycle?: LifecycleResourceType;
60
61
  };
62
+ /**
63
+ * Type definition for `AWS::Backup::BackupPlan.IndexActionsResourceType`.
64
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-indexactionsresourcetype.html}
65
+ */
66
+ export type IndexActionsResourceType = {
67
+ ResourceTypes?: string[];
68
+ };
61
69
  /**
62
70
  * Type definition for `AWS::Backup::BackupPlan.LifecycleResourceType`.
63
71
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-lifecycleresourcetype.html}
@@ -11,12 +11,38 @@ export type DataSyncLocationSMBProperties = {
11
11
  * @maxLength `4`
12
12
  */
13
13
  AgentArns: string[];
14
+ /**
15
+ * The authentication mode used to determine identity of user.
16
+ */
17
+ AuthenticationType?: "NTLM" | "KERBEROS";
18
+ /**
19
+ * Specifies the IPv4 addresses for the DNS servers that your SMB file server belongs to. This parameter applies only if AuthenticationType is set to KERBEROS. If you have multiple domains in your environment, configuring this parameter makes sure that DataSync connects to the right SMB file server.
20
+ * @maxLength `2`
21
+ */
22
+ DnsIpAddresses?: string[];
14
23
  /**
15
24
  * The name of the Windows domain that the SMB server belongs to.
16
25
  * @maxLength `253`
17
26
  * @pattern `^([A-Za-z0-9]+[A-Za-z0-9-.]*)*[A-Za-z0-9-]*[A-Za-z0-9]$`
18
27
  */
19
28
  Domain?: string;
29
+ /**
30
+ * The Base64 string representation of the Keytab file. Specifies your Kerberos key table (keytab) file, which includes mappings between your service principal name (SPN) and encryption keys. To avoid task execution errors, make sure that the SPN in the keytab file matches exactly what you specify for KerberosPrincipal and in your krb5.conf file.
31
+ * @maxLength `87384`
32
+ */
33
+ KerberosKeytab?: string;
34
+ /**
35
+ * The string representation of the Krb5Conf file, or the presigned URL to access the Krb5.conf file within an S3 bucket. Specifies a Kerberos configuration file (krb5.conf) that defines your Kerberos realm configuration. To avoid task execution errors, make sure that the service principal name (SPN) in the krb5.conf file matches exactly what you specify for KerberosPrincipal and in your keytab file.
36
+ * @maxLength `174764`
37
+ */
38
+ KerberosKrb5Conf?: string;
39
+ /**
40
+ * Specifies a service principal name (SPN), which is an identity in your Kerberos realm that has permission to access the files, folders, and file metadata in your SMB file server. SPNs are case sensitive and must include a prepended cifs/. For example, an SPN might look like cifs/kerberosuser@EXAMPLE.COM. Your task execution will fail if the SPN that you provide for this parameter doesn't match exactly what's in your keytab or krb5.conf files.
41
+ * @minLength `1`
42
+ * @maxLength `256`
43
+ * @pattern `^.+$`
44
+ */
45
+ KerberosPrincipal?: string;
20
46
  /**
21
47
  * The mount options used by DataSync to access the SMB server.
22
48
  */
@@ -49,7 +75,7 @@ export type DataSyncLocationSMBProperties = {
49
75
  * @maxLength `104`
50
76
  * @pattern `^[^\x5B\x5D\\/:;|=,+*?]{1,104}$`
51
77
  */
52
- User: string;
78
+ User?: string;
53
79
  };
54
80
  /**
55
81
  * Attribute type definition for `AWS::DataSync::LocationSMB`.
@@ -120,6 +120,29 @@ export type DynamoDBTarget = {
120
120
  */
121
121
  Path?: string;
122
122
  };
123
+ /**
124
+ * Type definition for `AWS::Glue::Crawler.HudiTarget`.
125
+ * Specifies Apache Hudi data store targets.
126
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-huditarget.html}
127
+ */
128
+ export type HudiTarget = {
129
+ /**
130
+ * The name of the connection to use to connect to the Hudi target.
131
+ */
132
+ ConnectionName?: string;
133
+ /**
134
+ * A list of global patterns used to exclude from the crawl.
135
+ */
136
+ Exclusions?: string[];
137
+ /**
138
+ * The maximum depth of Amazon S3 paths that the crawler can traverse to discover the Hudi metadata folder in your Amazon S3 path. Used to limit the crawler run time.
139
+ */
140
+ MaximumTraversalDepth?: number;
141
+ /**
142
+ * One or more Amazon S3 paths that contains Hudi metadata folders as s3://bucket/prefix .
143
+ */
144
+ Paths?: string[];
145
+ };
123
146
  /**
124
147
  * Type definition for `AWS::Glue::Crawler.IcebergTarget`.
125
148
  * Specifies Apache Iceberg data store targets.
@@ -284,6 +307,10 @@ export type Targets = {
284
307
  * Specifies Amazon DynamoDB targets.
285
308
  */
286
309
  DynamoDBTargets?: DynamoDBTarget[];
310
+ /**
311
+ * Specifies Apache Hudi data store targets.
312
+ */
313
+ HudiTargets?: HudiTarget[];
287
314
  /**
288
315
  * Specifies Apache Iceberg data store targets.
289
316
  */
@@ -50,7 +50,7 @@ export type Tag = {
50
50
  */
51
51
  Key: string;
52
52
  /**
53
- * @minLength `1`
53
+ * @minLength `0`
54
54
  * @maxLength `256`
55
55
  */
56
56
  Value: string;
@@ -51,7 +51,7 @@ export type Tag = {
51
51
  */
52
52
  Key: string;
53
53
  /**
54
- * @minLength `1`
54
+ * @minLength `0`
55
55
  * @maxLength `256`
56
56
  */
57
57
  Value: string;
@@ -80,6 +80,7 @@ export type RDSDBInstanceProperties = {
80
80
  Constraints: Major version upgrades must be allowed when specifying a value for the ``EngineVersion`` parameter that is a different major version than the DB instance's current version.
81
81
  */
82
82
  AllowMajorVersionUpgrade?: boolean;
83
+ ApplyImmediately?: boolean;
83
84
  /**
84
85
  * The IAMlong (IAM) roles associated with the DB instance.
85
86
  *Amazon Aurora*
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.260",
3
+ "version": "0.1.261",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },