@awboost/cfntypes 0.100.11 → 0.100.13

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.
@@ -46189,7 +46189,7 @@ export type EC2NatGatewayProps = {
46189
46189
  */
46190
46190
  PrivateIpAddress?: string;
46191
46191
  /**
46192
- * 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*.
46192
+ * 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*.
46193
46193
  */
46194
46194
  SecondaryAllocationIds?: string[];
46195
46195
  /**
@@ -55928,6 +55928,9 @@ export type ElasticLoadBalancingV2ListenerProps = {
55928
55928
  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).
55929
55929
  */
55930
55930
  DefaultActions: ElasticLoadBalancingV2ListenerAction[];
55931
+ /**
55932
+ * The listener attributes.
55933
+ */
55931
55934
  ListenerAttributes?: ElasticLoadBalancingV2ListenerListenerAttribute[];
55932
55935
  /**
55933
55936
  * The Amazon Resource Name (ARN) of the load balancer.
@@ -56148,10 +56151,19 @@ export type ElasticLoadBalancingV2ListenerForwardConfig = {
56148
56151
  };
56149
56152
  /**
56150
56153
  * Type definition for `AWS::ElasticLoadBalancingV2::Listener.ListenerAttribute`.
56154
+ * Information about a listener attribute.
56151
56155
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listener-listenerattribute.html}
56152
56156
  */
56153
56157
  export type ElasticLoadBalancingV2ListenerListenerAttribute = {
56158
+ /**
56159
+ * The name of the attribute.
56160
+ The following attribute is supported by Network Load Balancers, and Gateway Load Balancers.
56161
+ + ``tcp.idle_timeout.seconds`` - The tcp idle timeout value, in seconds. The valid range is 60-6000 seconds. The default is 350 seconds.
56162
+ */
56154
56163
  Key?: string;
56164
+ /**
56165
+ * The value of the attribute.
56166
+ */
56155
56167
  Value?: string;
56156
56168
  };
56157
56169
  /**
@@ -64895,300 +64907,137 @@ export type GlueConnectionPhysicalConnectionRequirements = {
64895
64907
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html}
64896
64908
  */
64897
64909
  export type GlueCrawlerProps = {
64898
- /**
64899
- * A list of UTF-8 strings that specify the names of custom classifiers that are associated with the crawler.
64900
- */
64901
64910
  Classifiers?: string[];
64902
- /**
64903
- * Crawler configuration information. This versioned JSON string allows users to specify aspects of a crawler's behavior.
64904
- */
64905
64911
  Configuration?: string;
64906
- /**
64907
- * The name of the SecurityConfiguration structure to be used by this crawler.
64908
- */
64909
64912
  CrawlerSecurityConfiguration?: string;
64910
- /**
64911
- * The name of the database in which the crawler's output is stored.
64912
- */
64913
64913
  DatabaseName?: string;
64914
- /**
64915
- * A description of the crawler.
64916
- */
64917
64914
  Description?: string;
64918
- /**
64919
- * Specifies AWS Lake Formation configuration settings for the crawler
64920
- */
64921
64915
  LakeFormationConfiguration?: GlueCrawlerLakeFormationConfiguration;
64922
- /**
64923
- * The name of the crawler.
64924
- */
64925
64916
  Name?: string;
64926
- /**
64927
- * 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.
64928
- */
64929
64917
  RecrawlPolicy?: GlueCrawlerRecrawlPolicy;
64930
- /**
64931
- * 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.
64932
- */
64933
64918
  Role: string;
64934
- /**
64935
- * A scheduling object using a cron statement to schedule an event.
64936
- */
64937
64919
  Schedule?: GlueCrawlerSchedule;
64938
- /**
64939
- * 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.
64940
- */
64941
64920
  SchemaChangePolicy?: GlueCrawlerSchemaChangePolicy;
64942
- /**
64943
- * The prefix added to the names of tables that are created.
64944
- */
64945
64921
  TablePrefix?: string;
64946
- /**
64947
- * The tags to use with this crawler.
64948
- */
64949
64922
  Tags?: Record<string, any>;
64950
- /**
64951
- * Specifies data stores to crawl.
64952
- */
64953
64923
  Targets: GlueCrawlerTargets;
64954
64924
  };
64925
+ /**
64926
+ * Attribute type definition for `AWS::Glue::Crawler`.
64927
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#aws-resource-glue-crawler-return-values}
64928
+ */
64929
+ export type GlueCrawlerAttributes = {
64930
+ Id: string;
64931
+ };
64955
64932
  /**
64956
64933
  * Type definition for `AWS::Glue::Crawler.CatalogTarget`.
64957
- * Specifies an AWS Glue Data Catalog target.
64958
64934
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-catalogtarget.html}
64959
64935
  */
64960
64936
  export type GlueCrawlerCatalogTarget = {
64961
- /**
64962
- * 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.
64963
- */
64964
64937
  ConnectionName?: string;
64965
- /**
64966
- * The name of the database to be synchronized.
64967
- */
64968
64938
  DatabaseName?: string;
64969
- /**
64970
- * A valid Amazon dead-letter SQS ARN. For example, arn:aws:sqs:region:account:deadLetterQueue.
64971
- */
64972
64939
  DlqEventQueueArn?: string;
64973
- /**
64974
- * A valid Amazon SQS ARN. For example, arn:aws:sqs:region:account:sqs.
64975
- */
64976
64940
  EventQueueArn?: string;
64977
- /**
64978
- * A list of the tables to be synchronized.
64979
- */
64980
64941
  Tables?: string[];
64981
64942
  };
64982
64943
  /**
64983
64944
  * Type definition for `AWS::Glue::Crawler.DeltaTarget`.
64984
- * Specifies a Delta data store to crawl one or more Delta tables.
64985
64945
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-deltatarget.html}
64986
64946
  */
64987
64947
  export type GlueCrawlerDeltaTarget = {
64988
- /**
64989
- * The name of the connection to use to connect to the Delta table target.
64990
- */
64991
64948
  ConnectionName?: string;
64992
- /**
64993
- * Specifies whether the crawler will create native tables, to allow integration with query engines that support querying of the Delta transaction log directly.
64994
- */
64995
64949
  CreateNativeDeltaTable?: boolean;
64996
64950
  DeltaTables?: string[];
64997
- /**
64998
- * Specifies whether to write the manifest files to the Delta table path.
64999
- */
65000
64951
  WriteManifest?: boolean;
65001
64952
  };
65002
64953
  /**
65003
64954
  * Type definition for `AWS::Glue::Crawler.DynamoDBTarget`.
65004
- * Specifies an Amazon DynamoDB table to crawl.
65005
64955
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-dynamodbtarget.html}
65006
64956
  */
65007
64957
  export type GlueCrawlerDynamoDBTarget = {
65008
- /**
65009
- * The name of the DynamoDB table to crawl.
65010
- */
65011
64958
  Path?: string;
65012
64959
  };
65013
64960
  /**
65014
64961
  * Type definition for `AWS::Glue::Crawler.IcebergTarget`.
65015
- * Specifies Apache Iceberg data store targets.
65016
64962
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-icebergtarget.html}
65017
64963
  */
65018
64964
  export type GlueCrawlerIcebergTarget = {
65019
- /**
65020
- * The name of the connection to use to connect to the Iceberg target.
65021
- */
65022
64965
  ConnectionName?: string;
65023
- /**
65024
- * A list of global patterns used to exclude from the crawl.
65025
- */
65026
64966
  Exclusions?: string[];
65027
- /**
65028
- * 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.
65029
- */
65030
64967
  MaximumTraversalDepth?: number;
65031
- /**
65032
- * One or more Amazon S3 paths that contains Iceberg metadata folders as s3://bucket/prefix .
65033
- */
65034
64968
  Paths?: string[];
65035
64969
  };
65036
64970
  /**
65037
64971
  * Type definition for `AWS::Glue::Crawler.JdbcTarget`.
65038
- * Specifies a JDBC data store to crawl.
65039
64972
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-jdbctarget.html}
65040
64973
  */
65041
64974
  export type GlueCrawlerJdbcTarget = {
65042
- /**
65043
- * The name of the connection to use to connect to the JDBC target.
65044
- */
65045
64975
  ConnectionName?: string;
65046
- /**
65047
- * 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.
65048
-
65049
- If you do not need additional metadata, keep the field empty.
65050
- */
65051
64976
  EnableAdditionalMetadata?: string[];
65052
- /**
65053
- * A list of glob patterns used to exclude from the crawl. For more information, see Catalog Tables with a Crawler.
65054
- */
65055
64977
  Exclusions?: string[];
65056
- /**
65057
- * The path of the JDBC target.
65058
- */
65059
64978
  Path?: string;
65060
64979
  };
65061
64980
  /**
65062
64981
  * Type definition for `AWS::Glue::Crawler.LakeFormationConfiguration`.
65063
- * Specifies AWS Lake Formation configuration settings for the crawler
65064
64982
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-lakeformationconfiguration.html}
65065
64983
  */
65066
64984
  export type GlueCrawlerLakeFormationConfiguration = {
65067
- /**
65068
- * Required for cross account crawls. For same account crawls as the target data, this can be left as null.
65069
- */
65070
64985
  AccountId?: string;
65071
- /**
65072
- * Specifies whether to use AWS Lake Formation credentials for the crawler instead of the IAM role credentials.
65073
- */
65074
64986
  UseLakeFormationCredentials?: boolean;
65075
64987
  };
65076
64988
  /**
65077
64989
  * Type definition for `AWS::Glue::Crawler.MongoDBTarget`.
65078
- * Specifies an Amazon DocumentDB or MongoDB data store to crawl.
65079
64990
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-mongodbtarget.html}
65080
64991
  */
65081
64992
  export type GlueCrawlerMongoDBTarget = {
65082
- /**
65083
- * The name of the connection to use to connect to the Amazon DocumentDB or MongoDB target.
65084
- */
65085
64993
  ConnectionName?: string;
65086
- /**
65087
- * The path of the Amazon DocumentDB or MongoDB target (database/collection).
65088
- */
65089
64994
  Path?: string;
65090
64995
  };
65091
64996
  /**
65092
64997
  * Type definition for `AWS::Glue::Crawler.RecrawlPolicy`.
65093
- * 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.
65094
64998
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-recrawlpolicy.html}
65095
64999
  */
65096
65000
  export type GlueCrawlerRecrawlPolicy = {
65097
- /**
65098
- * 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.
65099
- */
65100
65001
  RecrawlBehavior?: string;
65101
65002
  };
65102
65003
  /**
65103
65004
  * Type definition for `AWS::Glue::Crawler.S3Target`.
65104
- * Specifies a data store in Amazon Simple Storage Service (Amazon S3).
65105
65005
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-s3target.html}
65106
65006
  */
65107
65007
  export type GlueCrawlerS3Target = {
65108
- /**
65109
- * 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).
65110
- */
65111
65008
  ConnectionName?: string;
65112
- /**
65113
- * A valid Amazon dead-letter SQS ARN. For example, arn:aws:sqs:region:account:deadLetterQueue.
65114
- */
65115
65009
  DlqEventQueueArn?: string;
65116
- /**
65117
- * A valid Amazon SQS ARN. For example, arn:aws:sqs:region:account:sqs.
65118
- */
65119
65010
  EventQueueArn?: string;
65120
- /**
65121
- * A list of glob patterns used to exclude from the crawl.
65122
- */
65123
65011
  Exclusions?: string[];
65124
- /**
65125
- * The path to the Amazon S3 target.
65126
- */
65127
65012
  Path?: string;
65128
- /**
65129
- * 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.
65130
- */
65131
65013
  SampleSize?: number;
65132
65014
  };
65133
65015
  /**
65134
65016
  * Type definition for `AWS::Glue::Crawler.Schedule`.
65135
- * A scheduling object using a cron statement to schedule an event.
65136
65017
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schedule.html}
65137
65018
  */
65138
65019
  export type GlueCrawlerSchedule = {
65139
- /**
65140
- * 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 * * ? *).
65141
- */
65142
65020
  ScheduleExpression?: string;
65143
65021
  };
65144
65022
  /**
65145
65023
  * Type definition for `AWS::Glue::Crawler.SchemaChangePolicy`.
65146
- * 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.
65147
65024
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schemachangepolicy.html}
65148
65025
  */
65149
65026
  export type GlueCrawlerSchemaChangePolicy = {
65150
- /**
65151
- * 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.
65152
- */
65153
65027
  DeleteBehavior?: string;
65154
- /**
65155
- * 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.
65156
- */
65157
65028
  UpdateBehavior?: string;
65158
65029
  };
65159
65030
  /**
65160
65031
  * Type definition for `AWS::Glue::Crawler.Targets`.
65161
- * Specifies data stores to crawl.
65162
65032
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-targets.html}
65163
65033
  */
65164
65034
  export type GlueCrawlerTargets = {
65165
- /**
65166
- * Specifies AWS Glue Data Catalog targets.
65167
- */
65168
65035
  CatalogTargets?: GlueCrawlerCatalogTarget[];
65169
- /**
65170
- * Specifies an array of Delta data store targets.
65171
- */
65172
65036
  DeltaTargets?: GlueCrawlerDeltaTarget[];
65173
- /**
65174
- * Specifies Amazon DynamoDB targets.
65175
- */
65176
65037
  DynamoDBTargets?: GlueCrawlerDynamoDBTarget[];
65177
- /**
65178
- * Specifies Apache Iceberg data store targets.
65179
- */
65180
65038
  IcebergTargets?: GlueCrawlerIcebergTarget[];
65181
- /**
65182
- * Specifies JDBC targets.
65183
- */
65184
65039
  JdbcTargets?: GlueCrawlerJdbcTarget[];
65185
- /**
65186
- * A list of Mongo DB targets.
65187
- */
65188
65040
  MongoDBTargets?: GlueCrawlerMongoDBTarget[];
65189
- /**
65190
- * Specifies Amazon Simple Storage Service (Amazon S3) targets.
65191
- */
65192
65041
  S3Targets?: GlueCrawlerS3Target[];
65193
65042
  };
65194
65043
  /**
@@ -65421,41 +65270,107 @@ export type GlueDevEndpointAttributes = {
65421
65270
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html}
65422
65271
  */
65423
65272
  export type GlueJobProps = {
65273
+ /**
65274
+ * The number of capacity units that are allocated to this job.
65275
+ */
65424
65276
  AllocatedCapacity?: number;
65277
+ /**
65278
+ * The code that executes a job.
65279
+ */
65425
65280
  Command: GlueJobJobCommand;
65281
+ /**
65282
+ * Specifies the connections used by a job
65283
+ */
65426
65284
  Connections?: GlueJobConnectionsList;
65285
+ /**
65286
+ * The default arguments for this job, specified as name-value pairs.
65287
+ */
65427
65288
  DefaultArguments?: Record<string, any>;
65289
+ /**
65290
+ * A description of the job.
65291
+ */
65428
65292
  Description?: string;
65293
+ /**
65294
+ * Indicates whether the job is run with a standard or flexible execution class.
65295
+ */
65429
65296
  ExecutionClass?: string;
65297
+ /**
65298
+ * The maximum number of concurrent runs that are allowed for this job.
65299
+ */
65430
65300
  ExecutionProperty?: GlueJobExecutionProperty;
65301
+ /**
65302
+ * Glue version determines the versions of Apache Spark and Python that AWS Glue supports.
65303
+ */
65431
65304
  GlueVersion?: string;
65305
+ /**
65306
+ * Property description not available.
65307
+ */
65432
65308
  JobMode?: string;
65309
+ /**
65310
+ * Property description not available.
65311
+ */
65312
+ JobRunQueuingEnabled?: boolean;
65313
+ /**
65314
+ * This field is reserved for future use.
65315
+ */
65433
65316
  LogUri?: string;
65317
+ /**
65318
+ * Property description not available.
65319
+ */
65434
65320
  MaintenanceWindow?: string;
65321
+ /**
65322
+ * The number of AWS Glue data processing units (DPUs) that can be allocated when this job runs.
65323
+ */
65435
65324
  MaxCapacity?: number;
65325
+ /**
65326
+ * The maximum number of times to retry this job after a JobRun fails
65327
+ */
65436
65328
  MaxRetries?: number;
65329
+ /**
65330
+ * The name you assign to the job definition
65331
+ */
65437
65332
  Name?: string;
65333
+ /**
65334
+ * Non-overridable arguments for this job, specified as name-value pairs.
65335
+ */
65438
65336
  NonOverridableArguments?: Record<string, any>;
65337
+ /**
65338
+ * Specifies configuration properties of a notification.
65339
+ */
65439
65340
  NotificationProperty?: GlueJobNotificationProperty;
65341
+ /**
65342
+ * The number of workers of a defined workerType that are allocated when a job runs.
65343
+ */
65440
65344
  NumberOfWorkers?: number;
65345
+ /**
65346
+ * The name or Amazon Resource Name (ARN) of the IAM role associated with this job.
65347
+ */
65441
65348
  Role: string;
65349
+ /**
65350
+ * The name of the SecurityConfiguration structure to be used with this job.
65351
+ */
65442
65352
  SecurityConfiguration?: string;
65353
+ /**
65354
+ * The tags to use with this job.
65355
+ */
65443
65356
  Tags?: Record<string, any>;
65357
+ /**
65358
+ * The maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status.
65359
+ */
65444
65360
  Timeout?: number;
65445
- WorkerType?: string;
65446
- };
65447
- /**
65448
- * Attribute type definition for `AWS::Glue::Job`.
65449
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#aws-resource-glue-job-return-values}
65450
- */
65451
- export type GlueJobAttributes = {
65452
- Id: string;
65361
+ /**
65362
+ * TThe type of predefined worker that is allocated when a job runs.
65363
+ */
65364
+ WorkerType?: "Standard" | "G.1X" | "G.2X" | "G.025X" | "G.4X" | "G.8X" | "Z.2X";
65453
65365
  };
65454
65366
  /**
65455
65367
  * Type definition for `AWS::Glue::Job.ConnectionsList`.
65456
65368
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-connectionslist.html}
65457
65369
  */
65458
65370
  export type GlueJobConnectionsList = {
65371
+ /**
65372
+ * A list of connections used by the job.
65373
+ */
65459
65374
  Connections?: string[];
65460
65375
  };
65461
65376
  /**
@@ -65463,6 +65378,9 @@ export type GlueJobConnectionsList = {
65463
65378
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-executionproperty.html}
65464
65379
  */
65465
65380
  export type GlueJobExecutionProperty = {
65381
+ /**
65382
+ * The maximum number of concurrent runs allowed for the job.
65383
+ */
65466
65384
  MaxConcurrentRuns?: number;
65467
65385
  };
65468
65386
  /**
@@ -65470,9 +65388,21 @@ export type GlueJobExecutionProperty = {
65470
65388
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html}
65471
65389
  */
65472
65390
  export type GlueJobJobCommand = {
65391
+ /**
65392
+ * The name of the job command
65393
+ */
65473
65394
  Name?: string;
65395
+ /**
65396
+ * The Python version being used to execute a Python shell job.
65397
+ */
65474
65398
  PythonVersion?: string;
65399
+ /**
65400
+ * Runtime is used to specify the versions of Ray, Python and additional libraries available in your environment
65401
+ */
65475
65402
  Runtime?: string;
65403
+ /**
65404
+ * Specifies the Amazon Simple Storage Service (Amazon S3) path to a script that executes a job
65405
+ */
65476
65406
  ScriptLocation?: string;
65477
65407
  };
65478
65408
  /**
@@ -65480,6 +65410,9 @@ export type GlueJobJobCommand = {
65480
65410
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-notificationproperty.html}
65481
65411
  */
65482
65412
  export type GlueJobNotificationProperty = {
65413
+ /**
65414
+ * It is the number of minutes to wait before sending a job run delay notification after a job run starts
65415
+ */
65483
65416
  NotifyDelayAfter?: number;
65484
65417
  };
65485
65418
  /**
@@ -66255,6 +66188,84 @@ export type GlueTriggerPredicate = {
66255
66188
  */
66256
66189
  Logical?: string;
66257
66190
  };
66191
+ /**
66192
+ * Resource type definition for `AWS::Glue::UsageProfile`.
66193
+ * This creates a Resource of UsageProfile type.
66194
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-usageprofile.html}
66195
+ */
66196
+ export type GlueUsageProfileProps = {
66197
+ /**
66198
+ * UsageProfile configuration for supported service ex: (Jobs, Sessions).
66199
+ */
66200
+ Configuration?: GlueUsageProfileProfileConfiguration;
66201
+ /**
66202
+ * The description of the UsageProfile.
66203
+ * @minLength `1`
66204
+ * @maxLength `512`
66205
+ * @pattern `[a-zA-Z0-9\-\:\_]{1,64}`
66206
+ */
66207
+ Description?: string;
66208
+ /**
66209
+ * The name of the UsageProfile.
66210
+ * @minLength `5`
66211
+ * @maxLength `128`
66212
+ */
66213
+ Name: string;
66214
+ /**
66215
+ * The tags to be applied to this UsageProfiles.
66216
+ * @minLength `0`
66217
+ * @maxLength `50`
66218
+ */
66219
+ Tags?: GlueUsageProfileTag[];
66220
+ };
66221
+ /**
66222
+ * Attribute type definition for `AWS::Glue::UsageProfile`.
66223
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-usageprofile.html#aws-resource-glue-usageprofile-return-values}
66224
+ */
66225
+ export type GlueUsageProfileAttributes = {
66226
+ /**
66227
+ * Creation time.
66228
+ * @minLength `1`
66229
+ * @maxLength `128`
66230
+ */
66231
+ CreatedOn: string;
66232
+ };
66233
+ /**
66234
+ * Type definition for `AWS::Glue::UsageProfile.ConfigurationObject`.
66235
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-usageprofile-configurationobject.html}
66236
+ */
66237
+ export type GlueUsageProfileConfigurationObject = {
66238
+ AllowedValues?: string[];
66239
+ DefaultValue?: string;
66240
+ MaxValue?: string;
66241
+ MinValue?: string;
66242
+ };
66243
+ /**
66244
+ * Type definition for `AWS::Glue::UsageProfile.ProfileConfiguration`.
66245
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-usageprofile-profileconfiguration.html}
66246
+ */
66247
+ export type GlueUsageProfileProfileConfiguration = {
66248
+ JobConfiguration?: Record<string, GlueUsageProfileConfigurationObject>;
66249
+ SessionConfiguration?: Record<string, GlueUsageProfileConfigurationObject>;
66250
+ };
66251
+ /**
66252
+ * Type definition for `AWS::Glue::UsageProfile.Tag`.
66253
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-usageprofile-tag.html}
66254
+ */
66255
+ export type GlueUsageProfileTag = {
66256
+ /**
66257
+ * A key to identify the tag.
66258
+ * @minLength `1`
66259
+ * @maxLength `128`
66260
+ */
66261
+ Key: string;
66262
+ /**
66263
+ * Corresponding tag value for the key.
66264
+ * @minLength `0`
66265
+ * @maxLength `256`
66266
+ */
66267
+ Value: string;
66268
+ };
66258
66269
  /**
66259
66270
  * Resource Type definition for AWS::Glue::Workflow
66260
66271
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html}
@@ -86447,7 +86458,7 @@ export type LakeFormationPrincipalPermissionsLFTagPolicyResource = {
86447
86458
  * Type definition for `AWS::LakeFormation::PrincipalPermissions.Permission`.
86448
86459
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lakeformation-principalpermissions-permission.html}
86449
86460
  */
86450
- export type LakeFormationPrincipalPermissionsPermission = "ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_TAG" | "ASSOCIATE";
86461
+ export type LakeFormationPrincipalPermissionsPermission = "ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION";
86451
86462
  /**
86452
86463
  * Type definition for `AWS::LakeFormation::PrincipalPermissions.Resource`.
86453
86464
  * A structure for the resource.
@@ -86601,7 +86612,7 @@ export type LakeFormationTagProps = {
86601
86612
  /**
86602
86613
  * A list of possible values an attribute can take.
86603
86614
  * @minLength `1`
86604
- * @maxLength `50`
86615
+ * @maxLength `1000`
86605
86616
  */
86606
86617
  TagValues: string[];
86607
86618
  };
@@ -114372,6 +114383,11 @@ export type QuickSightAnalysisComboChartVisual = {
114372
114383
  */
114373
114384
  VisualId: string;
114374
114385
  };
114386
+ /**
114387
+ * Type definition for `AWS::QuickSight::Analysis.CommitMode`.
114388
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-commitmode.html}
114389
+ */
114390
+ export type QuickSightAnalysisCommitMode = "AUTO" | "MANUAL";
114375
114391
  /**
114376
114392
  * Type definition for `AWS::QuickSight::Analysis.ComparisonConfiguration`.
114377
114393
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-comparisonconfiguration.html}
@@ -115143,6 +115159,7 @@ export type QuickSightAnalysisDecimalValueWhenUnsetConfiguration = {
115143
115159
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-defaultdatetimepickercontroloptions.html}
115144
115160
  */
115145
115161
  export type QuickSightAnalysisDefaultDateTimePickerControlOptions = {
115162
+ CommitMode?: QuickSightAnalysisCommitMode;
115146
115163
  DisplayOptions?: QuickSightAnalysisDateTimePickerControlDisplayOptions;
115147
115164
  Type?: QuickSightAnalysisSheetControlDateTimePickerType;
115148
115165
  };
@@ -115176,6 +115193,7 @@ export type QuickSightAnalysisDefaultFilterControlOptions = {
115176
115193
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-defaultfilterdropdowncontroloptions.html}
115177
115194
  */
115178
115195
  export type QuickSightAnalysisDefaultFilterDropDownControlOptions = {
115196
+ CommitMode?: QuickSightAnalysisCommitMode;
115179
115197
  DisplayOptions?: QuickSightAnalysisDropDownControlDisplayOptions;
115180
115198
  SelectableValues?: QuickSightAnalysisFilterSelectableValues;
115181
115199
  Type?: QuickSightAnalysisSheetControlListType;
@@ -115232,6 +115250,7 @@ export type QuickSightAnalysisDefaultPaginatedLayoutConfiguration = {
115232
115250
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-defaultrelativedatetimecontroloptions.html}
115233
115251
  */
115234
115252
  export type QuickSightAnalysisDefaultRelativeDateTimeControlOptions = {
115253
+ CommitMode?: QuickSightAnalysisCommitMode;
115235
115254
  DisplayOptions?: QuickSightAnalysisRelativeDateTimeControlDisplayOptions;
115236
115255
  };
115237
115256
  /**
@@ -115625,6 +115644,7 @@ export type QuickSightAnalysisFilterCrossSheetControl = {
115625
115644
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-filterdatetimepickercontrol.html}
115626
115645
  */
115627
115646
  export type QuickSightAnalysisFilterDateTimePickerControl = {
115647
+ CommitMode?: QuickSightAnalysisCommitMode;
115628
115648
  DisplayOptions?: QuickSightAnalysisDateTimePickerControlDisplayOptions;
115629
115649
  /**
115630
115650
  * @minLength `1`
@@ -115651,6 +115671,7 @@ export type QuickSightAnalysisFilterDateTimePickerControl = {
115651
115671
  */
115652
115672
  export type QuickSightAnalysisFilterDropDownControl = {
115653
115673
  CascadingControlConfiguration?: QuickSightAnalysisCascadingControlConfiguration;
115674
+ CommitMode?: QuickSightAnalysisCommitMode;
115654
115675
  DisplayOptions?: QuickSightAnalysisDropDownControlDisplayOptions;
115655
115676
  /**
115656
115677
  * @minLength `1`
@@ -115768,6 +115789,7 @@ export type QuickSightAnalysisFilterOperationTargetVisualsConfiguration = {
115768
115789
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-filterrelativedatetimecontrol.html}
115769
115790
  */
115770
115791
  export type QuickSightAnalysisFilterRelativeDateTimeControl = {
115792
+ CommitMode?: QuickSightAnalysisCommitMode;
115771
115793
  DisplayOptions?: QuickSightAnalysisRelativeDateTimeControlDisplayOptions;
115772
115794
  /**
115773
115795
  * @minLength `1`
@@ -117749,6 +117771,7 @@ export type QuickSightAnalysisParameterDeclaration = {
117749
117771
  */
117750
117772
  export type QuickSightAnalysisParameterDropDownControl = {
117751
117773
  CascadingControlConfiguration?: QuickSightAnalysisCascadingControlConfiguration;
117774
+ CommitMode?: QuickSightAnalysisCommitMode;
117752
117775
  DisplayOptions?: QuickSightAnalysisDropDownControlDisplayOptions;
117753
117776
  /**
117754
117777
  * @minLength `1`
@@ -121757,6 +121780,11 @@ export type QuickSightDashboardComboChartVisual = {
121757
121780
  */
121758
121781
  VisualId: string;
121759
121782
  };
121783
+ /**
121784
+ * Type definition for `AWS::QuickSight::Dashboard.CommitMode`.
121785
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-commitmode.html}
121786
+ */
121787
+ export type QuickSightDashboardCommitMode = "AUTO" | "MANUAL";
121760
121788
  /**
121761
121789
  * Type definition for `AWS::QuickSight::Dashboard.ComparisonConfiguration`.
121762
121790
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-comparisonconfiguration.html}
@@ -122760,6 +122788,7 @@ export type QuickSightDashboardDecimalValueWhenUnsetConfiguration = {
122760
122788
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-defaultdatetimepickercontroloptions.html}
122761
122789
  */
122762
122790
  export type QuickSightDashboardDefaultDateTimePickerControlOptions = {
122791
+ CommitMode?: QuickSightDashboardCommitMode;
122763
122792
  DisplayOptions?: QuickSightDashboardDateTimePickerControlDisplayOptions;
122764
122793
  Type?: QuickSightDashboardSheetControlDateTimePickerType;
122765
122794
  };
@@ -122793,6 +122822,7 @@ export type QuickSightDashboardDefaultFilterControlOptions = {
122793
122822
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-defaultfilterdropdowncontroloptions.html}
122794
122823
  */
122795
122824
  export type QuickSightDashboardDefaultFilterDropDownControlOptions = {
122825
+ CommitMode?: QuickSightDashboardCommitMode;
122796
122826
  DisplayOptions?: QuickSightDashboardDropDownControlDisplayOptions;
122797
122827
  SelectableValues?: QuickSightDashboardFilterSelectableValues;
122798
122828
  Type?: QuickSightDashboardSheetControlListType;
@@ -122849,6 +122879,7 @@ export type QuickSightDashboardDefaultPaginatedLayoutConfiguration = {
122849
122879
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-defaultrelativedatetimecontroloptions.html}
122850
122880
  */
122851
122881
  export type QuickSightDashboardDefaultRelativeDateTimeControlOptions = {
122882
+ CommitMode?: QuickSightDashboardCommitMode;
122852
122883
  DisplayOptions?: QuickSightDashboardRelativeDateTimeControlDisplayOptions;
122853
122884
  };
122854
122885
  /**
@@ -123266,6 +123297,7 @@ export type QuickSightDashboardFilterCrossSheetControl = {
123266
123297
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-filterdatetimepickercontrol.html}
123267
123298
  */
123268
123299
  export type QuickSightDashboardFilterDateTimePickerControl = {
123300
+ CommitMode?: QuickSightDashboardCommitMode;
123269
123301
  DisplayOptions?: QuickSightDashboardDateTimePickerControlDisplayOptions;
123270
123302
  /**
123271
123303
  * @minLength `1`
@@ -123292,6 +123324,7 @@ export type QuickSightDashboardFilterDateTimePickerControl = {
123292
123324
  */
123293
123325
  export type QuickSightDashboardFilterDropDownControl = {
123294
123326
  CascadingControlConfiguration?: QuickSightDashboardCascadingControlConfiguration;
123327
+ CommitMode?: QuickSightDashboardCommitMode;
123295
123328
  DisplayOptions?: QuickSightDashboardDropDownControlDisplayOptions;
123296
123329
  /**
123297
123330
  * @minLength `1`
@@ -123409,6 +123442,7 @@ export type QuickSightDashboardFilterOperationTargetVisualsConfiguration = {
123409
123442
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-filterrelativedatetimecontrol.html}
123410
123443
  */
123411
123444
  export type QuickSightDashboardFilterRelativeDateTimeControl = {
123445
+ CommitMode?: QuickSightDashboardCommitMode;
123412
123446
  DisplayOptions?: QuickSightDashboardRelativeDateTimeControlDisplayOptions;
123413
123447
  /**
123414
123448
  * @minLength `1`
@@ -125401,6 +125435,7 @@ export type QuickSightDashboardParameterDeclaration = {
125401
125435
  */
125402
125436
  export type QuickSightDashboardParameterDropDownControl = {
125403
125437
  CascadingControlConfiguration?: QuickSightDashboardCascadingControlConfiguration;
125438
+ CommitMode?: QuickSightDashboardCommitMode;
125404
125439
  DisplayOptions?: QuickSightDashboardDropDownControlDisplayOptions;
125405
125440
  /**
125406
125441
  * @minLength `1`
@@ -130511,6 +130546,125 @@ export type QuickSightDataSourceVpcConnectionProperties = {
130511
130546
  */
130512
130547
  VpcConnectionArn: string;
130513
130548
  };
130549
+ /**
130550
+ * Definition of the AWS::QuickSight::Folder Resource Type.
130551
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-folder.html}
130552
+ */
130553
+ export type QuickSightFolderProps = {
130554
+ /**
130555
+ * @minLength `12`
130556
+ * @maxLength `12`
130557
+ * @pattern `^[0-9]{12}$`
130558
+ */
130559
+ AwsAccountId?: string;
130560
+ /**
130561
+ * @minLength `1`
130562
+ * @maxLength `2048`
130563
+ * @pattern `^[\w\-]+$`
130564
+ */
130565
+ FolderId?: string;
130566
+ FolderType?: QuickSightFolderFolderType;
130567
+ /**
130568
+ * @minLength `1`
130569
+ * @maxLength `200`
130570
+ */
130571
+ Name?: string;
130572
+ ParentFolderArn?: string;
130573
+ /**
130574
+ * @minLength `1`
130575
+ * @maxLength `64`
130576
+ */
130577
+ Permissions?: QuickSightFolderResourcePermission[];
130578
+ SharingModel?: QuickSightFolderSharingModel;
130579
+ /**
130580
+ * @minLength `1`
130581
+ * @maxLength `200`
130582
+ */
130583
+ Tags?: QuickSightFolderTag[];
130584
+ };
130585
+ /**
130586
+ * Attribute type definition for `AWS::QuickSight::Folder`.
130587
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-folder.html#aws-resource-quicksight-folder-return-values}
130588
+ */
130589
+ export type QuickSightFolderAttributes = {
130590
+ /**
130591
+ * <p>The Amazon Resource Name (ARN) for the folder.</p>
130592
+ * @pattern `^arn:.*`
130593
+ */
130594
+ Arn: string;
130595
+ /**
130596
+ * <p>The time that the folder was created.</p>
130597
+ */
130598
+ CreatedTime: string;
130599
+ /**
130600
+ * <p>The time that the folder was last updated.</p>
130601
+ */
130602
+ LastUpdatedTime: string;
130603
+ };
130604
+ /**
130605
+ * Type definition for `AWS::QuickSight::Folder.FolderType`.
130606
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-folder-foldertype.html}
130607
+ */
130608
+ export type QuickSightFolderFolderType = "SHARED" | "RESTRICTED";
130609
+ /**
130610
+ * Type definition for `AWS::QuickSight::Folder.ResourcePermission`.
130611
+ * <p>Permission for the resource.</p>
130612
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-folder-resourcepermission.html}
130613
+ */
130614
+ export type QuickSightFolderResourcePermission = {
130615
+ /**
130616
+ * <p>The IAM action to grant or revoke permissions on.</p>
130617
+ * @minLength `1`
130618
+ * @maxLength `20`
130619
+ */
130620
+ Actions: string[];
130621
+ /**
130622
+ * <p>The Amazon Resource Name (ARN) of the principal. This can be one of the
130623
+ following:</p>
130624
+ <ul>
130625
+ <li>
130626
+ <p>The ARN of an Amazon QuickSight user or group associated with a data source or dataset. (This is common.)</p>
130627
+ </li>
130628
+ <li>
130629
+ <p>The ARN of an Amazon QuickSight user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.)</p>
130630
+ </li>
130631
+ <li>
130632
+ <p>The ARN of an Amazon Web Services account root: This is an IAM ARN rather than a QuickSight
130633
+ ARN. Use this option only to share resources (templates) across Amazon Web Services accounts.
130634
+ (This is less common.) </p>
130635
+ </li>
130636
+ </ul>
130637
+ * @minLength `1`
130638
+ * @maxLength `256`
130639
+ * @pattern `^arn:.*`
130640
+ */
130641
+ Principal: string;
130642
+ };
130643
+ /**
130644
+ * Type definition for `AWS::QuickSight::Folder.SharingModel`.
130645
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-folder-sharingmodel.html}
130646
+ */
130647
+ export type QuickSightFolderSharingModel = "ACCOUNT" | "NAMESPACE";
130648
+ /**
130649
+ * Type definition for `AWS::QuickSight::Folder.Tag`.
130650
+ * <p>The key or keys of the key-value pairs for the resource tag or tags assigned to the
130651
+ resource.</p>
130652
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-folder-tag.html}
130653
+ */
130654
+ export type QuickSightFolderTag = {
130655
+ /**
130656
+ * <p>Tag key.</p>
130657
+ * @minLength `1`
130658
+ * @maxLength `128`
130659
+ */
130660
+ Key: string;
130661
+ /**
130662
+ * <p>Tag value.</p>
130663
+ * @minLength `1`
130664
+ * @maxLength `256`
130665
+ */
130666
+ Value: string;
130667
+ };
130514
130668
  /**
130515
130669
  * Definition of the AWS::QuickSight::RefreshSchedule Resource Type.
130516
130670
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-refreshschedule.html}
@@ -131679,6 +131833,11 @@ export type QuickSightTemplateComboChartVisual = {
131679
131833
  */
131680
131834
  VisualId: string;
131681
131835
  };
131836
+ /**
131837
+ * Type definition for `AWS::QuickSight::Template.CommitMode`.
131838
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-commitmode.html}
131839
+ */
131840
+ export type QuickSightTemplateCommitMode = "AUTO" | "MANUAL";
131682
131841
  /**
131683
131842
  * Type definition for `AWS::QuickSight::Template.ComparisonConfiguration`.
131684
131843
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-comparisonconfiguration.html}
@@ -132440,6 +132599,7 @@ export type QuickSightTemplateDecimalValueWhenUnsetConfiguration = {
132440
132599
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-defaultdatetimepickercontroloptions.html}
132441
132600
  */
132442
132601
  export type QuickSightTemplateDefaultDateTimePickerControlOptions = {
132602
+ CommitMode?: QuickSightTemplateCommitMode;
132443
132603
  DisplayOptions?: QuickSightTemplateDateTimePickerControlDisplayOptions;
132444
132604
  Type?: QuickSightTemplateSheetControlDateTimePickerType;
132445
132605
  };
@@ -132473,6 +132633,7 @@ export type QuickSightTemplateDefaultFilterControlOptions = {
132473
132633
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-defaultfilterdropdowncontroloptions.html}
132474
132634
  */
132475
132635
  export type QuickSightTemplateDefaultFilterDropDownControlOptions = {
132636
+ CommitMode?: QuickSightTemplateCommitMode;
132476
132637
  DisplayOptions?: QuickSightTemplateDropDownControlDisplayOptions;
132477
132638
  SelectableValues?: QuickSightTemplateFilterSelectableValues;
132478
132639
  Type?: QuickSightTemplateSheetControlListType;
@@ -132529,6 +132690,7 @@ export type QuickSightTemplateDefaultPaginatedLayoutConfiguration = {
132529
132690
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-defaultrelativedatetimecontroloptions.html}
132530
132691
  */
132531
132692
  export type QuickSightTemplateDefaultRelativeDateTimeControlOptions = {
132693
+ CommitMode?: QuickSightTemplateCommitMode;
132532
132694
  DisplayOptions?: QuickSightTemplateRelativeDateTimeControlDisplayOptions;
132533
132695
  };
132534
132696
  /**
@@ -132922,6 +133084,7 @@ export type QuickSightTemplateFilterCrossSheetControl = {
132922
133084
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-filterdatetimepickercontrol.html}
132923
133085
  */
132924
133086
  export type QuickSightTemplateFilterDateTimePickerControl = {
133087
+ CommitMode?: QuickSightTemplateCommitMode;
132925
133088
  DisplayOptions?: QuickSightTemplateDateTimePickerControlDisplayOptions;
132926
133089
  /**
132927
133090
  * @minLength `1`
@@ -132948,6 +133111,7 @@ export type QuickSightTemplateFilterDateTimePickerControl = {
132948
133111
  */
132949
133112
  export type QuickSightTemplateFilterDropDownControl = {
132950
133113
  CascadingControlConfiguration?: QuickSightTemplateCascadingControlConfiguration;
133114
+ CommitMode?: QuickSightTemplateCommitMode;
132951
133115
  DisplayOptions?: QuickSightTemplateDropDownControlDisplayOptions;
132952
133116
  /**
132953
133117
  * @minLength `1`
@@ -133065,6 +133229,7 @@ export type QuickSightTemplateFilterOperationTargetVisualsConfiguration = {
133065
133229
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-filterrelativedatetimecontrol.html}
133066
133230
  */
133067
133231
  export type QuickSightTemplateFilterRelativeDateTimeControl = {
133232
+ CommitMode?: QuickSightTemplateCommitMode;
133068
133233
  DisplayOptions?: QuickSightTemplateRelativeDateTimeControlDisplayOptions;
133069
133234
  /**
133070
133235
  * @minLength `1`
@@ -135030,6 +135195,7 @@ export type QuickSightTemplateParameterDeclaration = {
135030
135195
  */
135031
135196
  export type QuickSightTemplateParameterDropDownControl = {
135032
135197
  CascadingControlConfiguration?: QuickSightTemplateCascadingControlConfiguration;
135198
+ CommitMode?: QuickSightTemplateCommitMode;
135033
135199
  DisplayOptions?: QuickSightTemplateDropDownControlDisplayOptions;
135034
135200
  /**
135035
135201
  * @minLength `1`
@@ -175094,6 +175260,7 @@ export interface ResourceTypes {
175094
175260
  "AWS::Glue::Table": GlueTableProps;
175095
175261
  "AWS::Glue::TableOptimizer": GlueTableOptimizerProps;
175096
175262
  "AWS::Glue::Trigger": GlueTriggerProps;
175263
+ "AWS::Glue::UsageProfile": GlueUsageProfileProps;
175097
175264
  "AWS::Glue::Workflow": GlueWorkflowProps;
175098
175265
  "AWS::Grafana::Workspace": GrafanaWorkspaceProps;
175099
175266
  "AWS::Greengrass::ConnectorDefinition": GreengrassConnectorDefinitionProps;
@@ -175500,6 +175667,7 @@ export interface ResourceTypes {
175500
175667
  "AWS::QuickSight::Dashboard": QuickSightDashboardProps;
175501
175668
  "AWS::QuickSight::DataSet": QuickSightDataSetProps;
175502
175669
  "AWS::QuickSight::DataSource": QuickSightDataSourceProps;
175670
+ "AWS::QuickSight::Folder": QuickSightFolderProps;
175503
175671
  "AWS::QuickSight::RefreshSchedule": QuickSightRefreshScheduleProps;
175504
175672
  "AWS::QuickSight::Template": QuickSightTemplateProps;
175505
175673
  "AWS::QuickSight::Theme": QuickSightThemeProps;
@@ -176321,11 +176489,11 @@ export interface AttributeTypes {
176321
176489
  "AWS::GlobalAccelerator::Listener": GlobalAcceleratorListenerAttributes;
176322
176490
  "AWS::Glue::Classifier": GlueClassifierAttributes;
176323
176491
  "AWS::Glue::Connection": GlueConnectionAttributes;
176492
+ "AWS::Glue::Crawler": GlueCrawlerAttributes;
176324
176493
  "AWS::Glue::CustomEntityType": GlueCustomEntityTypeAttributes;
176325
176494
  "AWS::Glue::DataCatalogEncryptionSettings": GlueDataCatalogEncryptionSettingsAttributes;
176326
176495
  "AWS::Glue::DataQualityRuleset": GlueDataQualityRulesetAttributes;
176327
176496
  "AWS::Glue::DevEndpoint": GlueDevEndpointAttributes;
176328
- "AWS::Glue::Job": GlueJobAttributes;
176329
176497
  "AWS::Glue::MLTransform": GlueMLTransformAttributes;
176330
176498
  "AWS::Glue::Partition": GluePartitionAttributes;
176331
176499
  "AWS::Glue::Registry": GlueRegistryAttributes;
@@ -176334,6 +176502,7 @@ export interface AttributeTypes {
176334
176502
  "AWS::Glue::SecurityConfiguration": GlueSecurityConfigurationAttributes;
176335
176503
  "AWS::Glue::Table": GlueTableAttributes;
176336
176504
  "AWS::Glue::TableOptimizer": GlueTableOptimizerAttributes;
176505
+ "AWS::Glue::UsageProfile": GlueUsageProfileAttributes;
176337
176506
  "AWS::Glue::Workflow": GlueWorkflowAttributes;
176338
176507
  "AWS::Grafana::Workspace": GrafanaWorkspaceAttributes;
176339
176508
  "AWS::Greengrass::ConnectorDefinition": GreengrassConnectorDefinitionAttributes;
@@ -176703,6 +176872,7 @@ export interface AttributeTypes {
176703
176872
  "AWS::QuickSight::Dashboard": QuickSightDashboardAttributes;
176704
176873
  "AWS::QuickSight::DataSet": QuickSightDataSetAttributes;
176705
176874
  "AWS::QuickSight::DataSource": QuickSightDataSourceAttributes;
176875
+ "AWS::QuickSight::Folder": QuickSightFolderAttributes;
176706
176876
  "AWS::QuickSight::RefreshSchedule": QuickSightRefreshScheduleAttributes;
176707
176877
  "AWS::QuickSight::Template": QuickSightTemplateAttributes;
176708
176878
  "AWS::QuickSight::Theme": QuickSightThemeAttributes;
@@ -177571,6 +177741,7 @@ export declare const ResourceType: {
177571
177741
  readonly GlueTable: "AWS::Glue::Table";
177572
177742
  readonly GlueTableOptimizer: "AWS::Glue::TableOptimizer";
177573
177743
  readonly GlueTrigger: "AWS::Glue::Trigger";
177744
+ readonly GlueUsageProfile: "AWS::Glue::UsageProfile";
177574
177745
  readonly GlueWorkflow: "AWS::Glue::Workflow";
177575
177746
  readonly GrafanaWorkspace: "AWS::Grafana::Workspace";
177576
177747
  readonly GreengrassConnectorDefinition: "AWS::Greengrass::ConnectorDefinition";
@@ -177977,6 +178148,7 @@ export declare const ResourceType: {
177977
178148
  readonly QuickSightDashboard: "AWS::QuickSight::Dashboard";
177978
178149
  readonly QuickSightDataSet: "AWS::QuickSight::DataSet";
177979
178150
  readonly QuickSightDataSource: "AWS::QuickSight::DataSource";
178151
+ readonly QuickSightFolder: "AWS::QuickSight::Folder";
177980
178152
  readonly QuickSightRefreshSchedule: "AWS::QuickSight::RefreshSchedule";
177981
178153
  readonly QuickSightTemplate: "AWS::QuickSight::Template";
177982
178154
  readonly QuickSightTheme: "AWS::QuickSight::Theme";