@awboost/cfn-resource-types 0.1.157 → 0.1.158

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.
@@ -26,7 +26,7 @@ export type EC2NatGatewayProperties = {
26
26
  */
27
27
  PrivateIpAddress?: string;
28
28
  /**
29
- * Secondary EIP allocation IDs. For more information, see [Create a NAT gateway](https://docs.aws.amazon.com/vpc/latest/userguide/vpc-nat-gateway.html#nat-gateway-creating) in the *Amazon VPC User Guide*.
29
+ * Secondary EIP allocation IDs. For more information, see [Create a NAT gateway](https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateway-working-with.html) in the *Amazon VPC User Guide*.
30
30
  */
31
31
  SecondaryAllocationIds?: string[];
32
32
  /**
@@ -20,6 +20,9 @@ export type ElasticLoadBalancingV2ListenerProperties = {
20
20
  To create additional rules for an Application Load Balancer, use [AWS::ElasticLoadBalancingV2::ListenerRule](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html).
21
21
  */
22
22
  DefaultActions: Action[];
23
+ /**
24
+ * The listener attributes.
25
+ */
23
26
  ListenerAttributes?: ListenerAttribute[];
24
27
  /**
25
28
  * The Amazon Resource Name (ARN) of the load balancer.
@@ -240,10 +243,19 @@ export type ForwardConfig = {
240
243
  };
241
244
  /**
242
245
  * Type definition for `AWS::ElasticLoadBalancingV2::Listener.ListenerAttribute`.
246
+ * Information about a listener attribute.
243
247
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listener-listenerattribute.html}
244
248
  */
245
249
  export type ListenerAttribute = {
250
+ /**
251
+ * The name of the attribute.
252
+ The following attribute is supported by Network Load Balancers, and Gateway Load Balancers.
253
+ + ``tcp.idle_timeout.seconds`` - The tcp idle timeout value, in seconds. The valid range is 60-6000 seconds. The default is 350 seconds.
254
+ */
246
255
  Key?: string;
256
+ /**
257
+ * The value of the attribute.
258
+ */
247
259
  Value?: string;
248
260
  };
249
261
  /**
@@ -5,307 +5,144 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html}
6
6
  */
7
7
  export type GlueCrawlerProperties = {
8
- /**
9
- * A list of UTF-8 strings that specify the names of custom classifiers that are associated with the crawler.
10
- */
11
8
  Classifiers?: string[];
12
- /**
13
- * Crawler configuration information. This versioned JSON string allows users to specify aspects of a crawler's behavior.
14
- */
15
9
  Configuration?: string;
16
- /**
17
- * The name of the SecurityConfiguration structure to be used by this crawler.
18
- */
19
10
  CrawlerSecurityConfiguration?: string;
20
- /**
21
- * The name of the database in which the crawler's output is stored.
22
- */
23
11
  DatabaseName?: string;
24
- /**
25
- * A description of the crawler.
26
- */
27
12
  Description?: string;
28
- /**
29
- * Specifies AWS Lake Formation configuration settings for the crawler
30
- */
31
13
  LakeFormationConfiguration?: LakeFormationConfiguration;
32
- /**
33
- * The name of the crawler.
34
- */
35
14
  Name?: string;
36
- /**
37
- * When crawling an Amazon S3 data source after the first crawl is complete, specifies whether to crawl the entire dataset again or to crawl only folders that were added since the last crawler run. For more information, see Incremental Crawls in AWS Glue in the developer guide.
38
- */
39
15
  RecrawlPolicy?: RecrawlPolicy;
40
- /**
41
- * The Amazon Resource Name (ARN) of an IAM role that's used to access customer resources, such as Amazon Simple Storage Service (Amazon S3) data.
42
- */
43
16
  Role: string;
44
- /**
45
- * A scheduling object using a cron statement to schedule an event.
46
- */
47
17
  Schedule?: Schedule;
48
- /**
49
- * The policy that specifies update and delete behaviors for the crawler. The policy tells the crawler what to do in the event that it detects a change in a table that already exists in the customer's database at the time of the crawl. The SchemaChangePolicy does not affect whether or how new tables and partitions are added. New tables and partitions are always created regardless of the SchemaChangePolicy on a crawler. The SchemaChangePolicy consists of two components, UpdateBehavior and DeleteBehavior.
50
- */
51
18
  SchemaChangePolicy?: SchemaChangePolicy;
52
- /**
53
- * The prefix added to the names of tables that are created.
54
- */
55
19
  TablePrefix?: string;
56
- /**
57
- * The tags to use with this crawler.
58
- */
59
20
  Tags?: Record<string, any>;
60
- /**
61
- * Specifies data stores to crawl.
62
- */
63
21
  Targets: Targets;
64
22
  };
23
+ /**
24
+ * Attribute type definition for `AWS::Glue::Crawler`.
25
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#aws-resource-glue-crawler-return-values}
26
+ */
27
+ export type GlueCrawlerAttributes = {
28
+ Id: string;
29
+ };
65
30
  /**
66
31
  * Type definition for `AWS::Glue::Crawler.CatalogTarget`.
67
- * Specifies an AWS Glue Data Catalog target.
68
32
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-catalogtarget.html}
69
33
  */
70
34
  export type CatalogTarget = {
71
- /**
72
- * The name of the connection for an Amazon S3-backed Data Catalog table to be a target of the crawl when using a Catalog connection type paired with a NETWORK Connection type.
73
- */
74
35
  ConnectionName?: string;
75
- /**
76
- * The name of the database to be synchronized.
77
- */
78
36
  DatabaseName?: string;
79
- /**
80
- * A valid Amazon dead-letter SQS ARN. For example, arn:aws:sqs:region:account:deadLetterQueue.
81
- */
82
37
  DlqEventQueueArn?: string;
83
- /**
84
- * A valid Amazon SQS ARN. For example, arn:aws:sqs:region:account:sqs.
85
- */
86
38
  EventQueueArn?: string;
87
- /**
88
- * A list of the tables to be synchronized.
89
- */
90
39
  Tables?: string[];
91
40
  };
92
41
  /**
93
42
  * Type definition for `AWS::Glue::Crawler.DeltaTarget`.
94
- * Specifies a Delta data store to crawl one or more Delta tables.
95
43
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-deltatarget.html}
96
44
  */
97
45
  export type DeltaTarget = {
98
- /**
99
- * The name of the connection to use to connect to the Delta table target.
100
- */
101
46
  ConnectionName?: string;
102
- /**
103
- * Specifies whether the crawler will create native tables, to allow integration with query engines that support querying of the Delta transaction log directly.
104
- */
105
47
  CreateNativeDeltaTable?: boolean;
106
48
  DeltaTables?: string[];
107
- /**
108
- * Specifies whether to write the manifest files to the Delta table path.
109
- */
110
49
  WriteManifest?: boolean;
111
50
  };
112
51
  /**
113
52
  * Type definition for `AWS::Glue::Crawler.DynamoDBTarget`.
114
- * Specifies an Amazon DynamoDB table to crawl.
115
53
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-dynamodbtarget.html}
116
54
  */
117
55
  export type DynamoDBTarget = {
118
- /**
119
- * The name of the DynamoDB table to crawl.
120
- */
121
56
  Path?: string;
122
57
  };
123
58
  /**
124
59
  * Type definition for `AWS::Glue::Crawler.IcebergTarget`.
125
- * Specifies Apache Iceberg data store targets.
126
60
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-icebergtarget.html}
127
61
  */
128
62
  export type IcebergTarget = {
129
- /**
130
- * The name of the connection to use to connect to the Iceberg target.
131
- */
132
63
  ConnectionName?: string;
133
- /**
134
- * A list of global patterns used to exclude from the crawl.
135
- */
136
64
  Exclusions?: string[];
137
- /**
138
- * The maximum depth of Amazon S3 paths that the crawler can traverse to discover the Iceberg metadata folder in your Amazon S3 path. Used to limit the crawler run time.
139
- */
140
65
  MaximumTraversalDepth?: number;
141
- /**
142
- * One or more Amazon S3 paths that contains Iceberg metadata folders as s3://bucket/prefix .
143
- */
144
66
  Paths?: string[];
145
67
  };
146
68
  /**
147
69
  * Type definition for `AWS::Glue::Crawler.JdbcTarget`.
148
- * Specifies a JDBC data store to crawl.
149
70
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-jdbctarget.html}
150
71
  */
151
72
  export type JdbcTarget = {
152
- /**
153
- * The name of the connection to use to connect to the JDBC target.
154
- */
155
73
  ConnectionName?: string;
156
- /**
157
- * Specify a value of RAWTYPES or COMMENTS to enable additional metadata in table responses. RAWTYPES provides the native-level datatype. COMMENTS provides comments associated with a column or table in the database.
158
-
159
- If you do not need additional metadata, keep the field empty.
160
- */
161
74
  EnableAdditionalMetadata?: string[];
162
- /**
163
- * A list of glob patterns used to exclude from the crawl. For more information, see Catalog Tables with a Crawler.
164
- */
165
75
  Exclusions?: string[];
166
- /**
167
- * The path of the JDBC target.
168
- */
169
76
  Path?: string;
170
77
  };
171
78
  /**
172
79
  * Type definition for `AWS::Glue::Crawler.LakeFormationConfiguration`.
173
- * Specifies AWS Lake Formation configuration settings for the crawler
174
80
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-lakeformationconfiguration.html}
175
81
  */
176
82
  export type LakeFormationConfiguration = {
177
- /**
178
- * Required for cross account crawls. For same account crawls as the target data, this can be left as null.
179
- */
180
83
  AccountId?: string;
181
- /**
182
- * Specifies whether to use AWS Lake Formation credentials for the crawler instead of the IAM role credentials.
183
- */
184
84
  UseLakeFormationCredentials?: boolean;
185
85
  };
186
86
  /**
187
87
  * Type definition for `AWS::Glue::Crawler.MongoDBTarget`.
188
- * Specifies an Amazon DocumentDB or MongoDB data store to crawl.
189
88
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-mongodbtarget.html}
190
89
  */
191
90
  export type MongoDBTarget = {
192
- /**
193
- * The name of the connection to use to connect to the Amazon DocumentDB or MongoDB target.
194
- */
195
91
  ConnectionName?: string;
196
- /**
197
- * The path of the Amazon DocumentDB or MongoDB target (database/collection).
198
- */
199
92
  Path?: string;
200
93
  };
201
94
  /**
202
95
  * Type definition for `AWS::Glue::Crawler.RecrawlPolicy`.
203
- * When crawling an Amazon S3 data source after the first crawl is complete, specifies whether to crawl the entire dataset again or to crawl only folders that were added since the last crawler run. For more information, see Incremental Crawls in AWS Glue in the developer guide.
204
96
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-recrawlpolicy.html}
205
97
  */
206
98
  export type RecrawlPolicy = {
207
- /**
208
- * Specifies whether to crawl the entire dataset again or to crawl only folders that were added since the last crawler run. A value of CRAWL_EVERYTHING specifies crawling the entire dataset again. A value of CRAWL_NEW_FOLDERS_ONLY specifies crawling only folders that were added since the last crawler run. A value of CRAWL_EVENT_MODE specifies crawling only the changes identified by Amazon S3 events.
209
- */
210
99
  RecrawlBehavior?: string;
211
100
  };
212
101
  /**
213
102
  * Type definition for `AWS::Glue::Crawler.S3Target`.
214
- * Specifies a data store in Amazon Simple Storage Service (Amazon S3).
215
103
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-s3target.html}
216
104
  */
217
105
  export type S3Target = {
218
- /**
219
- * The name of a connection which allows a job or crawler to access data in Amazon S3 within an Amazon Virtual Private Cloud environment (Amazon VPC).
220
- */
221
106
  ConnectionName?: string;
222
- /**
223
- * A valid Amazon dead-letter SQS ARN. For example, arn:aws:sqs:region:account:deadLetterQueue.
224
- */
225
107
  DlqEventQueueArn?: string;
226
- /**
227
- * A valid Amazon SQS ARN. For example, arn:aws:sqs:region:account:sqs.
228
- */
229
108
  EventQueueArn?: string;
230
- /**
231
- * A list of glob patterns used to exclude from the crawl.
232
- */
233
109
  Exclusions?: string[];
234
- /**
235
- * The path to the Amazon S3 target.
236
- */
237
110
  Path?: string;
238
- /**
239
- * Sets the number of files in each leaf folder to be crawled when crawling sample files in a dataset. If not set, all the files are crawled. A valid value is an integer between 1 and 249.
240
- */
241
111
  SampleSize?: number;
242
112
  };
243
113
  /**
244
114
  * Type definition for `AWS::Glue::Crawler.Schedule`.
245
- * A scheduling object using a cron statement to schedule an event.
246
115
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schedule.html}
247
116
  */
248
117
  export type Schedule = {
249
- /**
250
- * A cron expression used to specify the schedule. For more information, see Time-Based Schedules for Jobs and Crawlers. For example, to run something every day at 12:15 UTC, specify cron(15 12 * * ? *).
251
- */
252
118
  ScheduleExpression?: string;
253
119
  };
254
120
  /**
255
121
  * Type definition for `AWS::Glue::Crawler.SchemaChangePolicy`.
256
- * The policy that specifies update and delete behaviors for the crawler. The policy tells the crawler what to do in the event that it detects a change in a table that already exists in the customer's database at the time of the crawl. The SchemaChangePolicy does not affect whether or how new tables and partitions are added. New tables and partitions are always created regardless of the SchemaChangePolicy on a crawler. The SchemaChangePolicy consists of two components, UpdateBehavior and DeleteBehavior.
257
122
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schemachangepolicy.html}
258
123
  */
259
124
  export type SchemaChangePolicy = {
260
- /**
261
- * The deletion behavior when the crawler finds a deleted object. A value of LOG specifies that if a table or partition is found to no longer exist, do not delete it, only log that it was found to no longer exist. A value of DELETE_FROM_DATABASE specifies that if a table or partition is found to have been removed, delete it from the database. A value of DEPRECATE_IN_DATABASE specifies that if a table has been found to no longer exist, to add a property to the table that says 'DEPRECATED' and includes a timestamp with the time of deprecation.
262
- */
263
125
  DeleteBehavior?: string;
264
- /**
265
- * The update behavior when the crawler finds a changed schema. A value of LOG specifies that if a table or a partition already exists, and a change is detected, do not update it, only log that a change was detected. Add new tables and new partitions (including on existing tables). A value of UPDATE_IN_DATABASE specifies that if a table or partition already exists, and a change is detected, update it. Add new tables and partitions.
266
- */
267
126
  UpdateBehavior?: string;
268
127
  };
269
128
  /**
270
129
  * Type definition for `AWS::Glue::Crawler.Targets`.
271
- * Specifies data stores to crawl.
272
130
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-targets.html}
273
131
  */
274
132
  export type Targets = {
275
- /**
276
- * Specifies AWS Glue Data Catalog targets.
277
- */
278
133
  CatalogTargets?: CatalogTarget[];
279
- /**
280
- * Specifies an array of Delta data store targets.
281
- */
282
134
  DeltaTargets?: DeltaTarget[];
283
- /**
284
- * Specifies Amazon DynamoDB targets.
285
- */
286
135
  DynamoDBTargets?: DynamoDBTarget[];
287
- /**
288
- * Specifies Apache Iceberg data store targets.
289
- */
290
136
  IcebergTargets?: IcebergTarget[];
291
- /**
292
- * Specifies JDBC targets.
293
- */
294
137
  JdbcTargets?: JdbcTarget[];
295
- /**
296
- * A list of Mongo DB targets.
297
- */
298
138
  MongoDBTargets?: MongoDBTarget[];
299
- /**
300
- * Specifies Amazon Simple Storage Service (Amazon S3) targets.
301
- */
302
139
  S3Targets?: S3Target[];
303
140
  };
304
141
  /**
305
142
  * Resource Type definition for AWS::Glue::Crawler
306
143
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html}
307
144
  */
308
- export declare class GlueCrawler extends $Resource<"AWS::Glue::Crawler", GlueCrawlerProperties, Record<string, never>> {
145
+ export declare class GlueCrawler extends $Resource<"AWS::Glue::Crawler", GlueCrawlerProperties, GlueCrawlerAttributes> {
309
146
  static readonly Type = "AWS::Glue::Crawler";
310
147
  constructor(logicalId: string, properties: GlueCrawlerProperties, options?: $ResourceOptions);
311
148
  }
@@ -5,41 +5,107 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html}
6
6
  */
7
7
  export type GlueJobProperties = {
8
+ /**
9
+ * The number of capacity units that are allocated to this job.
10
+ */
8
11
  AllocatedCapacity?: number;
12
+ /**
13
+ * The code that executes a job.
14
+ */
9
15
  Command: JobCommand;
16
+ /**
17
+ * Specifies the connections used by a job
18
+ */
10
19
  Connections?: ConnectionsList;
20
+ /**
21
+ * The default arguments for this job, specified as name-value pairs.
22
+ */
11
23
  DefaultArguments?: Record<string, any>;
24
+ /**
25
+ * A description of the job.
26
+ */
12
27
  Description?: string;
28
+ /**
29
+ * Indicates whether the job is run with a standard or flexible execution class.
30
+ */
13
31
  ExecutionClass?: string;
32
+ /**
33
+ * The maximum number of concurrent runs that are allowed for this job.
34
+ */
14
35
  ExecutionProperty?: ExecutionProperty;
36
+ /**
37
+ * Glue version determines the versions of Apache Spark and Python that AWS Glue supports.
38
+ */
15
39
  GlueVersion?: string;
40
+ /**
41
+ * Property description not available.
42
+ */
16
43
  JobMode?: string;
44
+ /**
45
+ * Property description not available.
46
+ */
47
+ JobRunQueuingEnabled?: boolean;
48
+ /**
49
+ * This field is reserved for future use.
50
+ */
17
51
  LogUri?: string;
52
+ /**
53
+ * Property description not available.
54
+ */
18
55
  MaintenanceWindow?: string;
56
+ /**
57
+ * The number of AWS Glue data processing units (DPUs) that can be allocated when this job runs.
58
+ */
19
59
  MaxCapacity?: number;
60
+ /**
61
+ * The maximum number of times to retry this job after a JobRun fails
62
+ */
20
63
  MaxRetries?: number;
64
+ /**
65
+ * The name you assign to the job definition
66
+ */
21
67
  Name?: string;
68
+ /**
69
+ * Non-overridable arguments for this job, specified as name-value pairs.
70
+ */
22
71
  NonOverridableArguments?: Record<string, any>;
72
+ /**
73
+ * Specifies configuration properties of a notification.
74
+ */
23
75
  NotificationProperty?: NotificationProperty;
76
+ /**
77
+ * The number of workers of a defined workerType that are allocated when a job runs.
78
+ */
24
79
  NumberOfWorkers?: number;
80
+ /**
81
+ * The name or Amazon Resource Name (ARN) of the IAM role associated with this job.
82
+ */
25
83
  Role: string;
84
+ /**
85
+ * The name of the SecurityConfiguration structure to be used with this job.
86
+ */
26
87
  SecurityConfiguration?: string;
88
+ /**
89
+ * The tags to use with this job.
90
+ */
27
91
  Tags?: Record<string, any>;
92
+ /**
93
+ * The maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status.
94
+ */
28
95
  Timeout?: number;
29
- WorkerType?: string;
30
- };
31
- /**
32
- * Attribute type definition for `AWS::Glue::Job`.
33
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#aws-resource-glue-job-return-values}
34
- */
35
- export type GlueJobAttributes = {
36
- Id: string;
96
+ /**
97
+ * TThe type of predefined worker that is allocated when a job runs.
98
+ */
99
+ WorkerType?: "Standard" | "G.1X" | "G.2X" | "G.025X" | "G.4X" | "G.8X" | "Z.2X";
37
100
  };
38
101
  /**
39
102
  * Type definition for `AWS::Glue::Job.ConnectionsList`.
40
103
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-connectionslist.html}
41
104
  */
42
105
  export type ConnectionsList = {
106
+ /**
107
+ * A list of connections used by the job.
108
+ */
43
109
  Connections?: string[];
44
110
  };
45
111
  /**
@@ -47,6 +113,9 @@ export type ConnectionsList = {
47
113
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-executionproperty.html}
48
114
  */
49
115
  export type ExecutionProperty = {
116
+ /**
117
+ * The maximum number of concurrent runs allowed for the job.
118
+ */
50
119
  MaxConcurrentRuns?: number;
51
120
  };
52
121
  /**
@@ -54,9 +123,21 @@ export type ExecutionProperty = {
54
123
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html}
55
124
  */
56
125
  export type JobCommand = {
126
+ /**
127
+ * The name of the job command
128
+ */
57
129
  Name?: string;
130
+ /**
131
+ * The Python version being used to execute a Python shell job.
132
+ */
58
133
  PythonVersion?: string;
134
+ /**
135
+ * Runtime is used to specify the versions of Ray, Python and additional libraries available in your environment
136
+ */
59
137
  Runtime?: string;
138
+ /**
139
+ * Specifies the Amazon Simple Storage Service (Amazon S3) path to a script that executes a job
140
+ */
60
141
  ScriptLocation?: string;
61
142
  };
62
143
  /**
@@ -64,13 +145,16 @@ export type JobCommand = {
64
145
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-notificationproperty.html}
65
146
  */
66
147
  export type NotificationProperty = {
148
+ /**
149
+ * It is the number of minutes to wait before sending a job run delay notification after a job run starts
150
+ */
67
151
  NotifyDelayAfter?: number;
68
152
  };
69
153
  /**
70
154
  * Resource Type definition for AWS::Glue::Job
71
155
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html}
72
156
  */
73
- export declare class GlueJob extends $Resource<"AWS::Glue::Job", GlueJobProperties, GlueJobAttributes> {
157
+ export declare class GlueJob extends $Resource<"AWS::Glue::Job", GlueJobProperties, Record<string, never>> {
74
158
  static readonly Type = "AWS::Glue::Job";
75
159
  constructor(logicalId: string, properties: GlueJobProperties, options?: $ResourceOptions);
76
160
  }
@@ -204,7 +204,7 @@ export type LFTagPolicyResource = {
204
204
  * Type definition for `AWS::LakeFormation::PrincipalPermissions.Permission`.
205
205
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lakeformation-principalpermissions-permission.html}
206
206
  */
207
- export type Permission = "ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_TAG" | "ASSOCIATE";
207
+ export type Permission = "ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION";
208
208
  /**
209
209
  * Type definition for `AWS::LakeFormation::PrincipalPermissions.Resource`.
210
210
  * A structure for the resource.
@@ -22,7 +22,7 @@ export type LakeFormationTagProperties = {
22
22
  /**
23
23
  * A list of possible values an attribute can take.
24
24
  * @minLength `1`
25
- * @maxLength `50`
25
+ * @maxLength `1000`
26
26
  */
27
27
  TagValues: string[];
28
28
  };
@@ -0,0 +1,130 @@
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
+ * Definition of the AWS::QuickSight::Folder Resource Type.
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-folder.html}
6
+ */
7
+ export type QuickSightFolderProperties = {
8
+ /**
9
+ * @minLength `12`
10
+ * @maxLength `12`
11
+ * @pattern `^[0-9]{12}$`
12
+ */
13
+ AwsAccountId?: string;
14
+ /**
15
+ * @minLength `1`
16
+ * @maxLength `2048`
17
+ * @pattern `^[\w\-]+$`
18
+ */
19
+ FolderId?: string;
20
+ FolderType?: FolderType;
21
+ /**
22
+ * @minLength `1`
23
+ * @maxLength `200`
24
+ */
25
+ Name?: string;
26
+ ParentFolderArn?: string;
27
+ /**
28
+ * @minLength `1`
29
+ * @maxLength `64`
30
+ */
31
+ Permissions?: ResourcePermission[];
32
+ SharingModel?: SharingModel;
33
+ /**
34
+ * @minLength `1`
35
+ * @maxLength `200`
36
+ */
37
+ Tags?: Tag[];
38
+ };
39
+ /**
40
+ * Attribute type definition for `AWS::QuickSight::Folder`.
41
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-folder.html#aws-resource-quicksight-folder-return-values}
42
+ */
43
+ export type QuickSightFolderAttributes = {
44
+ /**
45
+ * <p>The Amazon Resource Name (ARN) for the folder.</p>
46
+ * @pattern `^arn:.*`
47
+ */
48
+ Arn: string;
49
+ /**
50
+ * <p>The time that the folder was created.</p>
51
+ */
52
+ CreatedTime: string;
53
+ /**
54
+ * <p>The time that the folder was last updated.</p>
55
+ */
56
+ LastUpdatedTime: string;
57
+ };
58
+ /**
59
+ * Type definition for `AWS::QuickSight::Folder.FolderType`.
60
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-folder-foldertype.html}
61
+ */
62
+ export type FolderType = "SHARED" | "RESTRICTED";
63
+ /**
64
+ * Type definition for `AWS::QuickSight::Folder.ResourcePermission`.
65
+ * <p>Permission for the resource.</p>
66
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-folder-resourcepermission.html}
67
+ */
68
+ export type ResourcePermission = {
69
+ /**
70
+ * <p>The IAM action to grant or revoke permissions on.</p>
71
+ * @minLength `1`
72
+ * @maxLength `20`
73
+ */
74
+ Actions: string[];
75
+ /**
76
+ * <p>The Amazon Resource Name (ARN) of the principal. This can be one of the
77
+ following:</p>
78
+ <ul>
79
+ <li>
80
+ <p>The ARN of an Amazon QuickSight user or group associated with a data source or dataset. (This is common.)</p>
81
+ </li>
82
+ <li>
83
+ <p>The ARN of an Amazon QuickSight user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.)</p>
84
+ </li>
85
+ <li>
86
+ <p>The ARN of an Amazon Web Services account root: This is an IAM ARN rather than a QuickSight
87
+ ARN. Use this option only to share resources (templates) across Amazon Web Services accounts.
88
+ (This is less common.) </p>
89
+ </li>
90
+ </ul>
91
+ * @minLength `1`
92
+ * @maxLength `256`
93
+ * @pattern `^arn:.*`
94
+ */
95
+ Principal: string;
96
+ };
97
+ /**
98
+ * Type definition for `AWS::QuickSight::Folder.SharingModel`.
99
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-folder-sharingmodel.html}
100
+ */
101
+ export type SharingModel = "ACCOUNT" | "NAMESPACE";
102
+ /**
103
+ * Type definition for `AWS::QuickSight::Folder.Tag`.
104
+ * <p>The key or keys of the key-value pairs for the resource tag or tags assigned to the
105
+ resource.</p>
106
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-folder-tag.html}
107
+ */
108
+ export type Tag = {
109
+ /**
110
+ * <p>Tag key.</p>
111
+ * @minLength `1`
112
+ * @maxLength `128`
113
+ */
114
+ Key: string;
115
+ /**
116
+ * <p>Tag value.</p>
117
+ * @minLength `1`
118
+ * @maxLength `256`
119
+ */
120
+ Value: string;
121
+ };
122
+ /**
123
+ * Definition of the AWS::QuickSight::Folder Resource Type.
124
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-folder.html}
125
+ */
126
+ export declare class QuickSightFolder extends $Resource<"AWS::QuickSight::Folder", QuickSightFolderProperties, QuickSightFolderAttributes> {
127
+ static readonly Type = "AWS::QuickSight::Folder";
128
+ constructor(logicalId: string, properties: QuickSightFolderProperties, options?: $ResourceOptions);
129
+ }
130
+ //# sourceMappingURL=AWS-QuickSight-Folder.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Definition of the AWS::QuickSight::Folder Resource Type.
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-folder.html}
5
+ */
6
+ export class QuickSightFolder extends $Resource {
7
+ static Type = "AWS::QuickSight::Folder";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, QuickSightFolder.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-QuickSight-Folder.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.157",
3
+ "version": "0.1.158",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },