@awboost/cfntypes 0.100.188 → 0.100.190

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.
@@ -13935,6 +13935,9 @@ export type AutoScalingAutoScalingGroupProps = {
13935
13935
  * Indicates whether Capacity Rebalancing is enabled. Otherwise, Capacity Rebalancing is disabled. When you turn on Capacity Rebalancing, Amazon EC2 Auto Scaling attempts to launch a Spot Instance whenever Amazon EC2 notifies that a Spot Instance is at an elevated risk of interruption. After launching a new instance, it then terminates an old instance. For more information, see [Use Capacity Rebalancing to handle Amazon EC2 Spot Interruptions](https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-capacity-rebalancing.html) in the in the *Amazon EC2 Auto Scaling User Guide*.
13936
13936
  */
13937
13937
  CapacityRebalance?: boolean;
13938
+ /**
13939
+ * The capacity reservation specification.
13940
+ */
13938
13941
  CapacityReservationSpecification?: AutoScalingAutoScalingGroupCapacityReservationSpecification;
13939
13942
  /**
13940
13943
  * Reserved.
@@ -14078,6 +14081,13 @@ export type AutoScalingAutoScalingGroupProps = {
14078
14081
  */
14079
14082
  VPCZoneIdentifier?: string[];
14080
14083
  };
14084
+ /**
14085
+ * Attribute type definition for `AWS::AutoScaling::AutoScalingGroup`.
14086
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscaling-autoscalinggroup.html#aws-resource-autoscaling-autoscalinggroup-return-values}
14087
+ */
14088
+ export type AutoScalingAutoScalingGroupAttributes = {
14089
+ AutoScalingGroupARN: string;
14090
+ };
14081
14091
  /**
14082
14092
  * Type definition for `AWS::AutoScaling::AutoScalingGroup.AcceleratorCountRequest`.
14083
14093
  * ``AcceleratorCountRequest`` is a property of the ``InstanceRequirements`` property of the [AWS::AutoScaling::AutoScalingGroup LaunchTemplateOverrides](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplateoverrides.html) property type that describes the minimum and maximum number of accelerators for an instance type.
@@ -14153,32 +14163,60 @@ export type AutoScalingAutoScalingGroupBaselineEbsBandwidthMbpsRequest = {
14153
14163
  };
14154
14164
  /**
14155
14165
  * Type definition for `AWS::AutoScaling::AutoScalingGroup.BaselinePerformanceFactorsRequest`.
14166
+ * The baseline performance to consider, using an instance family as a baseline reference. The instance family establishes the lowest acceptable level of performance. Auto Scaling uses this baseline to guide instance type selection, but there is no guarantee that the selected instance types will always exceed the baseline for every application.
14167
+ Currently, this parameter only supports CPU performance as a baseline performance factor. For example, specifying ``c6i`` uses the CPU performance of the ``c6i`` family as the baseline reference.
14156
14168
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-baselineperformancefactorsrequest.html}
14157
14169
  */
14158
14170
  export type AutoScalingAutoScalingGroupBaselinePerformanceFactorsRequest = {
14171
+ /**
14172
+ * The CPU performance to consider, using an instance family as the baseline reference.
14173
+ */
14159
14174
  Cpu?: AutoScalingAutoScalingGroupCpuPerformanceFactorRequest;
14160
14175
  };
14161
14176
  /**
14162
14177
  * Type definition for `AWS::AutoScaling::AutoScalingGroup.CapacityReservationSpecification`.
14178
+ * Describes the Capacity Reservation preference and targeting options. If you specify ``open`` or ``none`` for ``CapacityReservationPreference``, do not specify a ``CapacityReservationTarget``.
14163
14179
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-capacityreservationspecification.html}
14164
14180
  */
14165
14181
  export type AutoScalingAutoScalingGroupCapacityReservationSpecification = {
14182
+ /**
14183
+ * The capacity reservation preference. The following options are available:
14184
+ + ``capacity-reservations-only`` - Auto Scaling will only launch instances into a Capacity Reservation or Capacity Reservation resource group. If capacity isn't available, instances will fail to launch.
14185
+ + ``capacity-reservations-first`` - Auto Scaling will try to launch instances into a Capacity Reservation or Capacity Reservation resource group first. If capacity isn't available, instances will run in On-Demand capacity.
14186
+ + ``none`` - Auto Scaling will not launch instances into a Capacity Reservation. Instances will run in On-Demand capacity.
14187
+ + ``default`` - Auto Scaling uses the Capacity Reservation preference from your launch template or an open Capacity Reservation.
14188
+ */
14166
14189
  CapacityReservationPreference: string;
14190
+ /**
14191
+ * Describes a target Capacity Reservation or Capacity Reservation resource group.
14192
+ */
14167
14193
  CapacityReservationTarget?: AutoScalingAutoScalingGroupCapacityReservationTarget;
14168
14194
  };
14169
14195
  /**
14170
14196
  * Type definition for `AWS::AutoScaling::AutoScalingGroup.CapacityReservationTarget`.
14197
+ * The target for the Capacity Reservation. Specify Capacity Reservations IDs or Capacity Reservation resource group ARNs.
14171
14198
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-capacityreservationtarget.html}
14172
14199
  */
14173
14200
  export type AutoScalingAutoScalingGroupCapacityReservationTarget = {
14201
+ /**
14202
+ * The Capacity Reservation IDs to launch instances into.
14203
+ */
14174
14204
  CapacityReservationIds?: string[];
14205
+ /**
14206
+ * The resource group ARNs of the Capacity Reservation to launch instances into.
14207
+ */
14175
14208
  CapacityReservationResourceGroupArns?: string[];
14176
14209
  };
14177
14210
  /**
14178
14211
  * Type definition for `AWS::AutoScaling::AutoScalingGroup.CpuPerformanceFactorRequest`.
14212
+ * The CPU performance to consider, using an instance family as the baseline reference.
14179
14213
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-cpuperformancefactorrequest.html}
14180
14214
  */
14181
14215
  export type AutoScalingAutoScalingGroupCpuPerformanceFactorRequest = {
14216
+ /**
14217
+ * Specify an instance family to use as the baseline reference for CPU performance. All instance types that match your specified attributes will be compared against the CPU performance of the referenced instance family, regardless of CPU manufacturer or architecture differences.
14218
+ Currently only one instance family can be specified in the list.
14219
+ */
14182
14220
  References?: AutoScalingAutoScalingGroupPerformanceFactorReferenceRequest[];
14183
14221
  };
14184
14222
  /**
@@ -14274,6 +14312,9 @@ export type AutoScalingAutoScalingGroupInstanceRequirements = {
14274
14312
  Default: No minimum or maximum limits
14275
14313
  */
14276
14314
  BaselineEbsBandwidthMbps?: AutoScalingAutoScalingGroupBaselineEbsBandwidthMbpsRequest;
14315
+ /**
14316
+ * The baseline performance factors for the instance requirements.
14317
+ */
14277
14318
  BaselinePerformanceFactors?: AutoScalingAutoScalingGroupBaselinePerformanceFactorsRequest;
14278
14319
  /**
14279
14320
  * Indicates whether burstable performance instance types are included, excluded, or required. For more information, see [Burstable performance instances](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/burstable-performance-instances.html) in the *Amazon EC2 User Guide for Linux Instances*.
@@ -14689,9 +14730,27 @@ export type AutoScalingAutoScalingGroupNotificationConfiguration = {
14689
14730
  };
14690
14731
  /**
14691
14732
  * Type definition for `AWS::AutoScaling::AutoScalingGroup.PerformanceFactorReferenceRequest`.
14733
+ * Specify an instance family to use as the baseline reference for CPU performance. All instance types that All instance types that match your specified attributes will be compared against the CPU performance of the referenced instance family, regardless of CPU manufacturer or architecture differences.
14734
+ Currently only one instance family can be specified in the list.
14692
14735
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-performancefactorreferencerequest.html}
14693
14736
  */
14694
14737
  export type AutoScalingAutoScalingGroupPerformanceFactorReferenceRequest = {
14738
+ /**
14739
+ * The instance family to use as a baseline reference.
14740
+ Make sure that you specify the correct value for the instance family. The instance family is everything before the period (.) in the instance type name. For example, in the instance ``c6i.large``, the instance family is ``c6i``, not ``c6``. For more information, see [Amazon EC2 instance type naming conventions](https://docs.aws.amazon.com/ec2/latest/instancetypes/instance-type-names.html) in *Amazon EC2 Instance Types*.
14741
+ The following instance types are *not supported* for performance protection.
14742
+ + ``c1``
14743
+ + ``g3| g3s``
14744
+ + ``hpc7g``
14745
+ + ``m1| m2``
14746
+ + ``mac1 | mac2 | mac2-m1ultra | mac2-m2 | mac2-m2pro``
14747
+ + ``p3dn | p4d | p5``
14748
+ + ``t1``
14749
+ + ``u-12tb1 | u-18tb1 | u-24tb1 | u-3tb1 | u-6tb1 | u-9tb1 | u7i-12tb | u7in-16tb | u7in-24tb | u7in-32tb``
14750
+
14751
+ If you performance protection by specifying a supported instance family, the returned instance types will exclude the preceding unsupported instance families.
14752
+ If you specify an unsupported instance family as a value for baseline performance, the API returns an empty response.
14753
+ */
14695
14754
  InstanceFamily?: string;
14696
14755
  };
14697
14756
  /**
@@ -44757,6 +44816,53 @@ export type DataSyncLocationSMBTag = {
44757
44816
  */
44758
44817
  Value: string;
44759
44818
  };
44819
+ /**
44820
+ * Resource Type definition for AWS::DataSync::StorageSystem
44821
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-storagesystem.html}
44822
+ */
44823
+ export type DataSyncStorageSystemProps = {
44824
+ AgentArns: string[];
44825
+ CloudWatchLogGroupArn?: string;
44826
+ Name?: string;
44827
+ ServerConfiguration: DataSyncStorageSystemServerConfiguration;
44828
+ ServerCredentials?: DataSyncStorageSystemServerCredentials;
44829
+ SystemType: string;
44830
+ Tags?: DataSyncStorageSystemTag[];
44831
+ };
44832
+ /**
44833
+ * Attribute type definition for `AWS::DataSync::StorageSystem`.
44834
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-storagesystem.html#aws-resource-datasync-storagesystem-return-values}
44835
+ */
44836
+ export type DataSyncStorageSystemAttributes = {
44837
+ ConnectivityStatus: string;
44838
+ Id: string;
44839
+ SecretsManagerArn: string;
44840
+ StorageSystemArn: string;
44841
+ };
44842
+ /**
44843
+ * Type definition for `AWS::DataSync::StorageSystem.ServerConfiguration`.
44844
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-storagesystem-serverconfiguration.html}
44845
+ */
44846
+ export type DataSyncStorageSystemServerConfiguration = {
44847
+ ServerHostname: string;
44848
+ ServerPort?: number;
44849
+ };
44850
+ /**
44851
+ * Type definition for `AWS::DataSync::StorageSystem.ServerCredentials`.
44852
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-storagesystem-servercredentials.html}
44853
+ */
44854
+ export type DataSyncStorageSystemServerCredentials = {
44855
+ Password: string;
44856
+ Username: string;
44857
+ };
44858
+ /**
44859
+ * Type definition for `AWS::DataSync::StorageSystem.Tag`.
44860
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-storagesystem-tag.html}
44861
+ */
44862
+ export type DataSyncStorageSystemTag = {
44863
+ Key: string;
44864
+ Value: string;
44865
+ };
44760
44866
  /**
44761
44867
  * Resource schema for AWS::DataSync::Task.
44762
44868
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-task.html}
@@ -53546,6 +53652,7 @@ export type EC2LaunchTemplateEbs = {
53546
53652
  Valid Range: Minimum value of 125. Maximum value of 1000.
53547
53653
  */
53548
53654
  Throughput?: number;
53655
+ VolumeInitializationRate?: number;
53549
53656
  /**
53550
53657
  * The size of the volume, in GiBs. You must specify either a snapshot ID or a volume size. The following are the supported volumes sizes for each volume type:
53551
53658
  + ``gp2`` and ``gp3``: 1 - 16,384 GiB
@@ -60314,12 +60421,13 @@ export type ECRRegistryPolicyAttributes = {
60314
60421
  RegistryId: string;
60315
60422
  };
60316
60423
  /**
60317
- * The AWS::ECR::RegistryScanningConfiguration controls the scanning configuration for an Amazon Elastic Container Registry (Amazon Private ECR). For more information, see https://docs.aws.amazon.com/AmazonECR/latest/userguide/image-scanning.html
60424
+ * Resource type definition for `AWS::ECR::RegistryScanningConfiguration`.
60425
+ * The scanning configuration for a private registry.
60318
60426
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-registryscanningconfiguration.html}
60319
60427
  */
60320
60428
  export type ECRRegistryScanningConfigurationProps = {
60321
60429
  /**
60322
- * The scanning rules associated with the registry. A registry scanning configuration may contain a maximum of 2 rules.
60430
+ * The scanning rules associated with the registry.
60323
60431
  * @minLength `0`
60324
60432
  * @maxLength `2`
60325
60433
  */
@@ -60348,7 +60456,7 @@ export type ECRRegistryScanningConfigurationAttributes = {
60348
60456
  export type ECRRegistryScanningConfigurationFilterType = "WILDCARD";
60349
60457
  /**
60350
60458
  * Type definition for `AWS::ECR::RegistryScanningConfiguration.RepositoryFilter`.
60351
- * The details of a scanning repository filter.
60459
+ * The filter settings used with image replication. Specifying a repository filter to a replication rule provides a method for controlling which repositories in a private registry are replicated. If no filters are added, the contents of all repositories are replicated.
60352
60460
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-registryscanningconfiguration-repositoryfilter.html}
60353
60461
  */
60354
60462
  export type ECRRegistryScanningConfigurationRepositoryFilter = {
@@ -60370,18 +60478,18 @@ export type ECRRegistryScanningConfigurationRepositoryFilter = {
60370
60478
  export type ECRRegistryScanningConfigurationScanFrequency = "SCAN_ON_PUSH" | "CONTINUOUS_SCAN";
60371
60479
  /**
60372
60480
  * Type definition for `AWS::ECR::RegistryScanningConfiguration.ScanningRule`.
60373
- * A rule representing the details of a scanning configuration.
60481
+ * The scanning rules associated with the registry.
60374
60482
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-registryscanningconfiguration-scanningrule.html}
60375
60483
  */
60376
60484
  export type ECRRegistryScanningConfigurationScanningRule = {
60377
60485
  /**
60378
- * The repository filters associated with the scanning configuration for a private registry.
60486
+ * The details of a scanning repository filter. For more information on how to use filters, see [Using filters](https://docs.aws.amazon.com/AmazonECR/latest/userguide/image-scanning.html#image-scanning-filters) in the *Amazon Elastic Container Registry User Guide*.
60379
60487
  * @minLength `0`
60380
60488
  * @maxLength `100`
60381
60489
  */
60382
60490
  RepositoryFilters: ECRRegistryScanningConfigurationRepositoryFilter[];
60383
60491
  /**
60384
- * The frequency that scans are performed.
60492
+ * The frequency that scans are performed at for a private registry. When the ``ENHANCED`` scan type is specified, the supported scan frequencies are ``CONTINUOUS_SCAN`` and ``SCAN_ON_PUSH``. When the ``BASIC`` scan type is specified, the ``SCAN_ON_PUSH`` scan frequency is supported. If scan on push is not specified, then the ``MANUAL`` scan frequency is set by default.
60385
60493
  */
60386
60494
  ScanFrequency: ECRRegistryScanningConfigurationScanFrequency;
60387
60495
  };
@@ -105026,7 +105134,7 @@ export type LogsTransformerProcessor = {
105026
105134
  */
105027
105135
  Columns?: string[];
105028
105136
  /**
105029
- * @maxLength `1`
105137
+ * @maxLength `2`
105030
105138
  */
105031
105139
  Delimiter?: string;
105032
105140
  /**
@@ -105064,7 +105172,7 @@ export type LogsTransformerProcessor = {
105064
105172
  };
105065
105173
  Grok?: {
105066
105174
  /**
105067
- * @maxLength `128`
105175
+ * @maxLength `512`
105068
105176
  */
105069
105177
  Match: string;
105070
105178
  /**
@@ -105205,7 +105313,7 @@ export type LogsTransformerRenameKeyEntry = {
105205
105313
  */
105206
105314
  export type LogsTransformerSplitStringEntry = {
105207
105315
  /**
105208
- * @maxLength `1`
105316
+ * @maxLength `128`
105209
105317
  */
105210
105318
  Delimiter: string;
105211
105319
  /**
@@ -119239,6 +119347,11 @@ export type OmicsWorkflowProps = {
119239
119347
  * @max `100000`
119240
119348
  */
119241
119349
  StorageCapacity?: number;
119350
+ /**
119351
+ * @minLength `1`
119352
+ * @maxLength `64`
119353
+ */
119354
+ StorageType?: OmicsWorkflowStorageType;
119242
119355
  /**
119243
119356
  * A map of resource tags
119244
119357
  */
@@ -119272,12 +119385,21 @@ export type OmicsWorkflowAttributes = {
119272
119385
  * @maxLength `64`
119273
119386
  */
119274
119387
  Type: OmicsWorkflowWorkflowType;
119388
+ /**
119389
+ * @pattern `^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$`
119390
+ */
119391
+ Uuid: string;
119275
119392
  };
119276
119393
  /**
119277
119394
  * Type definition for `AWS::Omics::Workflow.Accelerators`.
119278
119395
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-accelerators.html}
119279
119396
  */
119280
119397
  export type OmicsWorkflowAccelerators = "GPU";
119398
+ /**
119399
+ * Type definition for `AWS::Omics::Workflow.StorageType`.
119400
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-storagetype.html}
119401
+ */
119402
+ export type OmicsWorkflowStorageType = "STATIC" | "DYNAMIC";
119281
119403
  /**
119282
119404
  * Type definition for `AWS::Omics::Workflow.TagMap`.
119283
119405
  * A map of resource tags
@@ -119317,6 +119439,151 @@ export type OmicsWorkflowWorkflowStatus = "CREATING" | "ACTIVE" | "UPDATING" | "
119317
119439
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-workflowtype.html}
119318
119440
  */
119319
119441
  export type OmicsWorkflowWorkflowType = "PRIVATE";
119442
+ /**
119443
+ * Definition of AWS::Omics::WorkflowVersion Resource Type.
119444
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html}
119445
+ */
119446
+ export type OmicsWorkflowVersionProps = {
119447
+ /**
119448
+ * @minLength `1`
119449
+ * @maxLength `64`
119450
+ */
119451
+ Accelerators?: OmicsWorkflowVersionAccelerators;
119452
+ /**
119453
+ * @minLength `1`
119454
+ * @maxLength `256`
119455
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
119456
+ */
119457
+ DefinitionUri?: string;
119458
+ /**
119459
+ * @minLength `1`
119460
+ * @maxLength `256`
119461
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
119462
+ */
119463
+ Description?: string;
119464
+ /**
119465
+ * @minLength `1`
119466
+ * @maxLength `64`
119467
+ */
119468
+ Engine?: OmicsWorkflowVersionWorkflowEngine;
119469
+ /**
119470
+ * @minLength `1`
119471
+ * @maxLength `128`
119472
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
119473
+ */
119474
+ Main?: string;
119475
+ ParameterTemplate?: OmicsWorkflowVersionWorkflowParameterTemplate;
119476
+ /**
119477
+ * @min `0`
119478
+ * @max `100000`
119479
+ */
119480
+ StorageCapacity?: number;
119481
+ /**
119482
+ * @minLength `1`
119483
+ * @maxLength `64`
119484
+ */
119485
+ StorageType?: OmicsWorkflowVersionStorageType;
119486
+ /**
119487
+ * A map of resource tags
119488
+ */
119489
+ Tags?: OmicsWorkflowVersionTagMap;
119490
+ /**
119491
+ * @minLength `1`
119492
+ * @maxLength `64`
119493
+ * @pattern `^[A-Za-z0-9][A-Za-z0-9\-\._]*$`
119494
+ */
119495
+ VersionName: string;
119496
+ /**
119497
+ * @minLength `1`
119498
+ * @maxLength `12`
119499
+ * @pattern `^[0-9]{12}$`
119500
+ */
119501
+ WorkflowBucketOwnerId?: string;
119502
+ /**
119503
+ * @minLength `1`
119504
+ * @maxLength `18`
119505
+ * @pattern `^[0-9]+$`
119506
+ */
119507
+ WorkflowId: string;
119508
+ };
119509
+ /**
119510
+ * Attribute type definition for `AWS::Omics::WorkflowVersion`.
119511
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html#aws-resource-omics-workflowversion-return-values}
119512
+ */
119513
+ export type OmicsWorkflowVersionAttributes = {
119514
+ /**
119515
+ * @minLength `1`
119516
+ * @maxLength `128`
119517
+ * @pattern `^arn:.+$`
119518
+ */
119519
+ Arn: string;
119520
+ CreationTime: string;
119521
+ /**
119522
+ * @minLength `1`
119523
+ * @maxLength `64`
119524
+ */
119525
+ Status: OmicsWorkflowVersionWorkflowStatus;
119526
+ /**
119527
+ * @minLength `1`
119528
+ * @maxLength `64`
119529
+ */
119530
+ Type: OmicsWorkflowVersionWorkflowType;
119531
+ /**
119532
+ * @minLength `1`
119533
+ * @maxLength `36`
119534
+ * @pattern `^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$`
119535
+ */
119536
+ Uuid: string;
119537
+ };
119538
+ /**
119539
+ * Type definition for `AWS::Omics::WorkflowVersion.Accelerators`.
119540
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-accelerators.html}
119541
+ */
119542
+ export type OmicsWorkflowVersionAccelerators = "GPU";
119543
+ /**
119544
+ * Type definition for `AWS::Omics::WorkflowVersion.StorageType`.
119545
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-storagetype.html}
119546
+ */
119547
+ export type OmicsWorkflowVersionStorageType = "STATIC" | "DYNAMIC";
119548
+ /**
119549
+ * Type definition for `AWS::Omics::WorkflowVersion.TagMap`.
119550
+ * A map of resource tags
119551
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-tagmap.html}
119552
+ */
119553
+ export type OmicsWorkflowVersionTagMap = Record<string, string>;
119554
+ /**
119555
+ * Type definition for `AWS::Omics::WorkflowVersion.WorkflowEngine`.
119556
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-workflowengine.html}
119557
+ */
119558
+ export type OmicsWorkflowVersionWorkflowEngine = "WDL" | "NEXTFLOW" | "CWL";
119559
+ /**
119560
+ * Type definition for `AWS::Omics::WorkflowVersion.WorkflowParameter`.
119561
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-workflowparameter.html}
119562
+ */
119563
+ export type OmicsWorkflowVersionWorkflowParameter = {
119564
+ /**
119565
+ * @minLength `0`
119566
+ * @maxLength `256`
119567
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
119568
+ */
119569
+ Description?: string;
119570
+ Optional?: boolean;
119571
+ };
119572
+ /**
119573
+ * Type definition for `AWS::Omics::WorkflowVersion.WorkflowParameterTemplate`.
119574
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-workflowparametertemplate.html}
119575
+ */
119576
+ export type OmicsWorkflowVersionWorkflowParameterTemplate = Record<string, OmicsWorkflowVersionWorkflowParameter>;
119577
+ /**
119578
+ * Type definition for `AWS::Omics::WorkflowVersion.WorkflowStatus`.
119579
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-workflowstatus.html}
119580
+ */
119581
+ export type OmicsWorkflowVersionWorkflowStatus = "CREATING" | "ACTIVE" | "UPDATING" | "DELETED" | "FAILED" | "INACTIVE";
119582
+ /**
119583
+ * Type definition for `AWS::Omics::WorkflowVersion.WorkflowType`.
119584
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-workflowtype.html}
119585
+ */
119586
+ export type OmicsWorkflowVersionWorkflowType = "PRIVATE" | "READY2RUN";
119320
119587
  /**
119321
119588
  * Resource type definition for `AWS::OpenSearchServerless::AccessPolicy`.
119322
119589
  * Amazon OpenSearchServerless access policy resource
@@ -121143,7 +121410,7 @@ export type OSISPipelineProps = {
121143
121410
  /**
121144
121411
  * The Data Prepper pipeline configuration.
121145
121412
  * @minLength `1`
121146
- * @maxLength `24000`
121413
+ * @maxLength `100000`
121147
121414
  */
121148
121415
  PipelineConfigurationBody: string;
121149
121416
  /**
@@ -167259,6 +167526,10 @@ export type SageMakerAppProps = {
167259
167526
  * @maxLength `63`
167260
167527
  */
167261
167528
  DomainId: string;
167529
+ /**
167530
+ * Indicates whether the application is launched in recovery mode.
167531
+ */
167532
+ RecoveryMode?: boolean;
167262
167533
  /**
167263
167534
  * The instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance.
167264
167535
  */
@@ -167289,6 +167560,12 @@ export type SageMakerAppAttributes = {
167289
167560
  * @pattern `arn:aws[a-z\-]*:sagemaker:[a-z0-9\-]*:[0-9]{12}:app/.*`
167290
167561
  */
167291
167562
  AppArn: string;
167563
+ /**
167564
+ * The lifecycle configuration that runs before the default lifecycle configuration.
167565
+ * @maxLength `256`
167566
+ * @pattern `^(arn:aws[a-z\-]*:sagemaker:[a-z0-9\-]*:[0-9]{12}:studio-lifecycle-config/.*|None)$`
167567
+ */
167568
+ BuiltInLifecycleConfigArn: string;
167292
167569
  };
167293
167570
  /**
167294
167571
  * Type definition for `AWS::SageMaker::App.ResourceSpec`.
@@ -167302,7 +167579,7 @@ export type SageMakerAppResourceSpec = {
167302
167579
  /**
167303
167580
  * The Amazon Resource Name (ARN) of the Lifecycle Configuration to attach to the Resource.
167304
167581
  * @maxLength `256`
167305
- * @pattern `arn:aws[a-z\-]*:sagemaker:[a-z0-9\-]*:[0-9]{12}:studio-lifecycle-config/.*`
167582
+ * @pattern `^(arn:aws[a-z\-]*:sagemaker:[a-z0-9\-]*:[0-9]{12}:studio-lifecycle-config/.*|None)$`
167306
167583
  */
167307
167584
  LifecycleConfigArn?: string;
167308
167585
  /**
@@ -168485,6 +168762,12 @@ export type SageMakerDomainAttributes = {
168485
168762
  */
168486
168763
  Url: string;
168487
168764
  };
168765
+ /**
168766
+ * Type definition for `AWS::SageMaker::Domain.AppInstanceType`.
168767
+ * The instance type that the image version runs on.
168768
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-appinstancetype.html}
168769
+ */
168770
+ export type SageMakerDomainAppInstanceType = "system" | "ml.t3.micro" | "ml.t3.small" | "ml.t3.medium" | "ml.t3.large" | "ml.t3.xlarge" | "ml.t3.2xlarge" | "ml.m5.large" | "ml.m5.xlarge" | "ml.m5.2xlarge" | "ml.m5.4xlarge" | "ml.m5.8xlarge" | "ml.m5.12xlarge" | "ml.m5.16xlarge" | "ml.m5.24xlarge" | "ml.m5d.large" | "ml.m5d.xlarge" | "ml.m5d.2xlarge" | "ml.m5d.4xlarge" | "ml.m5d.8xlarge" | "ml.m5d.12xlarge" | "ml.m5d.16xlarge" | "ml.m5d.24xlarge" | "ml.c5.large" | "ml.c5.xlarge" | "ml.c5.2xlarge" | "ml.c5.4xlarge" | "ml.c5.9xlarge" | "ml.c5.12xlarge" | "ml.c5.18xlarge" | "ml.c5.24xlarge" | "ml.p3.2xlarge" | "ml.p3.8xlarge" | "ml.p3.16xlarge" | "ml.p3dn.24xlarge" | "ml.g4dn.xlarge" | "ml.g4dn.2xlarge" | "ml.g4dn.4xlarge" | "ml.g4dn.8xlarge" | "ml.g4dn.12xlarge" | "ml.g4dn.16xlarge" | "ml.r5.large" | "ml.r5.xlarge" | "ml.r5.2xlarge" | "ml.r5.4xlarge" | "ml.r5.8xlarge" | "ml.r5.12xlarge" | "ml.r5.16xlarge" | "ml.r5.24xlarge" | "ml.g5.xlarge" | "ml.g5.2xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.12xlarge" | "ml.g5.16xlarge" | "ml.g5.24xlarge" | "ml.g5.48xlarge" | "ml.g6.xlarge" | "ml.g6.2xlarge" | "ml.g6.4xlarge" | "ml.g6.8xlarge" | "ml.g6.12xlarge" | "ml.g6.16xlarge" | "ml.g6.24xlarge" | "ml.g6.48xlarge" | "ml.g6e.xlarge" | "ml.g6e.2xlarge" | "ml.g6e.4xlarge" | "ml.g6e.8xlarge" | "ml.g6e.12xlarge" | "ml.g6e.16xlarge" | "ml.g6e.24xlarge" | "ml.g6e.48xlarge" | "ml.geospatial.interactive" | "ml.p4d.24xlarge" | "ml.p4de.24xlarge" | "ml.trn1.2xlarge" | "ml.trn1.32xlarge" | "ml.trn1n.32xlarge" | "ml.p5.48xlarge" | "ml.m6i.large" | "ml.m6i.xlarge" | "ml.m6i.2xlarge" | "ml.m6i.4xlarge" | "ml.m6i.8xlarge" | "ml.m6i.12xlarge" | "ml.m6i.16xlarge" | "ml.m6i.24xlarge" | "ml.m6i.32xlarge" | "ml.m7i.large" | "ml.m7i.xlarge" | "ml.m7i.2xlarge" | "ml.m7i.4xlarge" | "ml.m7i.8xlarge" | "ml.m7i.12xlarge" | "ml.m7i.16xlarge" | "ml.m7i.24xlarge" | "ml.m7i.48xlarge" | "ml.c6i.large" | "ml.c6i.xlarge" | "ml.c6i.2xlarge" | "ml.c6i.4xlarge" | "ml.c6i.8xlarge" | "ml.c6i.12xlarge" | "ml.c6i.16xlarge" | "ml.c6i.24xlarge" | "ml.c6i.32xlarge" | "ml.c7i.large" | "ml.c7i.xlarge" | "ml.c7i.2xlarge" | "ml.c7i.4xlarge" | "ml.c7i.8xlarge" | "ml.c7i.12xlarge" | "ml.c7i.16xlarge" | "ml.c7i.24xlarge" | "ml.c7i.48xlarge" | "ml.r6i.large" | "ml.r6i.xlarge" | "ml.r6i.2xlarge" | "ml.r6i.4xlarge" | "ml.r6i.8xlarge" | "ml.r6i.12xlarge" | "ml.r6i.16xlarge" | "ml.r6i.24xlarge" | "ml.r6i.32xlarge" | "ml.r7i.large" | "ml.r7i.xlarge" | "ml.r7i.2xlarge" | "ml.r7i.4xlarge" | "ml.r7i.8xlarge" | "ml.r7i.12xlarge" | "ml.r7i.16xlarge" | "ml.r7i.24xlarge" | "ml.r7i.48xlarge" | "ml.m6id.large" | "ml.m6id.xlarge" | "ml.m6id.2xlarge" | "ml.m6id.4xlarge" | "ml.m6id.8xlarge" | "ml.m6id.12xlarge" | "ml.m6id.16xlarge" | "ml.m6id.24xlarge" | "ml.m6id.32xlarge" | "ml.c6id.large" | "ml.c6id.xlarge" | "ml.c6id.2xlarge" | "ml.c6id.4xlarge" | "ml.c6id.8xlarge" | "ml.c6id.12xlarge" | "ml.c6id.16xlarge" | "ml.c6id.24xlarge" | "ml.c6id.32xlarge" | "ml.r6id.large" | "ml.r6id.xlarge" | "ml.r6id.2xlarge" | "ml.r6id.4xlarge" | "ml.r6id.8xlarge" | "ml.r6id.12xlarge" | "ml.r6id.16xlarge" | "ml.r6id.24xlarge" | "ml.r6id.32xlarge";
168488
168771
  /**
168489
168772
  * Type definition for `AWS::SageMaker::Domain.AppLifecycleManagement`.
168490
168773
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-applifecyclemanagement.html}
@@ -168504,6 +168787,12 @@ export type SageMakerDomainAppType = "JupyterServer" | "TensorBoard" | "RStudioS
168504
168787
  */
168505
168788
  export type SageMakerDomainCodeEditorAppSettings = {
168506
168789
  AppLifecycleManagement?: SageMakerDomainAppLifecycleManagement;
168790
+ /**
168791
+ * The lifecycle configuration that runs before the default lifecycle configuration.
168792
+ * @maxLength `256`
168793
+ * @pattern `^(arn:aws[a-z\-]*:sagemaker:[a-z0-9\-]*:[0-9]{12}:studio-lifecycle-config/.*|None)$`
168794
+ */
168795
+ BuiltInLifecycleConfigArn?: string;
168507
168796
  /**
168508
168797
  * A list of custom images for use for CodeEditor apps.
168509
168798
  * @minLength `0`
@@ -168734,6 +169023,20 @@ export type SageMakerDomainFSxLustreFileSystemConfig = {
168734
169023
  */
168735
169024
  FileSystemPath?: string;
168736
169025
  };
169026
+ /**
169027
+ * Type definition for `AWS::SageMaker::Domain.HiddenSageMakerImage`.
169028
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-hiddensagemakerimage.html}
169029
+ */
169030
+ export type SageMakerDomainHiddenSageMakerImage = {
169031
+ /**
169032
+ * The SageMaker image name that you are hiding from the Studio user interface.
169033
+ */
169034
+ SageMakerImageName?: "sagemaker_distribution";
169035
+ /**
169036
+ * @maxLength `20`
169037
+ */
169038
+ VersionAliases?: string[];
169039
+ };
168737
169040
  /**
168738
169041
  * Type definition for `AWS::SageMaker::Domain.IdleSettings`.
168739
169042
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-idlesettings.html}
@@ -168769,6 +169072,12 @@ export type SageMakerDomainIdleSettings = {
168769
169072
  */
168770
169073
  export type SageMakerDomainJupyterLabAppSettings = {
168771
169074
  AppLifecycleManagement?: SageMakerDomainAppLifecycleManagement;
169075
+ /**
169076
+ * The lifecycle configuration that runs before the default lifecycle configuration.
169077
+ * @maxLength `256`
169078
+ * @pattern `^(arn:aws[a-z\-]*:sagemaker:[a-z0-9\-]*:[0-9]{12}:studio-lifecycle-config/.*|None)$`
169079
+ */
169080
+ BuiltInLifecycleConfigArn?: string;
168772
169081
  /**
168773
169082
  * A list of CodeRepositories available for use with JupyterLab apps.
168774
169083
  * @minLength `0`
@@ -168852,7 +169161,7 @@ export type SageMakerDomainResourceSpec = {
168852
169161
  /**
168853
169162
  * The Amazon Resource Name (ARN) of the Lifecycle Configuration to attach to the Resource.
168854
169163
  * @maxLength `256`
168855
- * @pattern `arn:aws[a-z\-]*:sagemaker:[a-z0-9\-]*:[0-9]{12}:studio-lifecycle-config/.*`
169164
+ * @pattern `^(arn:aws[a-z\-]*:sagemaker:[a-z0-9\-]*:[0-9]{12}:studio-lifecycle-config/.*|None)$`
168856
169165
  */
168857
169166
  LifecycleConfigArn?: string;
168858
169167
  /**
@@ -168956,11 +169265,22 @@ export type SageMakerDomainStudioWebPortalSettings = {
168956
169265
  * @minLength `0`
168957
169266
  */
168958
169267
  HiddenAppTypes?: SageMakerDomainAppType[];
169268
+ /**
169269
+ * The instance types you are hiding from the Studio user interface.
169270
+ * @minLength `0`
169271
+ */
169272
+ HiddenInstanceTypes?: SageMakerDomainAppInstanceType[];
168959
169273
  /**
168960
169274
  * The machine learning tools that are hidden from the Studio left navigation pane.
168961
169275
  * @minLength `0`
168962
169276
  */
168963
169277
  HiddenMlTools?: SageMakerDomainMlTools[];
169278
+ /**
169279
+ * The version aliases you are hiding from the Studio user interface.
169280
+ * @minLength `0`
169281
+ * @maxLength `5`
169282
+ */
169283
+ HiddenSageMakerImageVersionAliases?: SageMakerDomainHiddenSageMakerImage[];
168964
169284
  };
168965
169285
  /**
168966
169286
  * Type definition for `AWS::SageMaker::Domain.Tag`.
@@ -168984,6 +169304,10 @@ export type SageMakerDomainTag = {
168984
169304
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-usersettings.html}
168985
169305
  */
168986
169306
  export type SageMakerDomainUserSettings = {
169307
+ /**
169308
+ * Indicates whether auto-mounting of an EFS volume is supported for the user profile.
169309
+ */
169310
+ AutoMountHomeEFS?: "Enabled" | "Disabled" | "DefaultAsDomain";
168987
169311
  /**
168988
169312
  * The CodeEditor app settings.
168989
169313
  */
@@ -175136,6 +175460,12 @@ export type SageMakerUserProfileAttributes = {
175136
175460
  */
175137
175461
  UserProfileArn: string;
175138
175462
  };
175463
+ /**
175464
+ * Type definition for `AWS::SageMaker::UserProfile.AppInstanceType`.
175465
+ * The instance type that the image version runs on.
175466
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-appinstancetype.html}
175467
+ */
175468
+ export type SageMakerUserProfileAppInstanceType = "system" | "ml.t3.micro" | "ml.t3.small" | "ml.t3.medium" | "ml.t3.large" | "ml.t3.xlarge" | "ml.t3.2xlarge" | "ml.m5.large" | "ml.m5.xlarge" | "ml.m5.2xlarge" | "ml.m5.4xlarge" | "ml.m5.8xlarge" | "ml.m5.12xlarge" | "ml.m5.16xlarge" | "ml.m5.24xlarge" | "ml.m5d.large" | "ml.m5d.xlarge" | "ml.m5d.2xlarge" | "ml.m5d.4xlarge" | "ml.m5d.8xlarge" | "ml.m5d.12xlarge" | "ml.m5d.16xlarge" | "ml.m5d.24xlarge" | "ml.c5.large" | "ml.c5.xlarge" | "ml.c5.2xlarge" | "ml.c5.4xlarge" | "ml.c5.9xlarge" | "ml.c5.12xlarge" | "ml.c5.18xlarge" | "ml.c5.24xlarge" | "ml.p3.2xlarge" | "ml.p3.8xlarge" | "ml.p3.16xlarge" | "ml.p3dn.24xlarge" | "ml.g4dn.xlarge" | "ml.g4dn.2xlarge" | "ml.g4dn.4xlarge" | "ml.g4dn.8xlarge" | "ml.g4dn.12xlarge" | "ml.g4dn.16xlarge" | "ml.r5.large" | "ml.r5.xlarge" | "ml.r5.2xlarge" | "ml.r5.4xlarge" | "ml.r5.8xlarge" | "ml.r5.12xlarge" | "ml.r5.16xlarge" | "ml.r5.24xlarge" | "ml.g5.xlarge" | "ml.g5.2xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.12xlarge" | "ml.g5.16xlarge" | "ml.g5.24xlarge" | "ml.g5.48xlarge" | "ml.g6.xlarge" | "ml.g6.2xlarge" | "ml.g6.4xlarge" | "ml.g6.8xlarge" | "ml.g6.12xlarge" | "ml.g6.16xlarge" | "ml.g6.24xlarge" | "ml.g6.48xlarge" | "ml.g6e.xlarge" | "ml.g6e.2xlarge" | "ml.g6e.4xlarge" | "ml.g6e.8xlarge" | "ml.g6e.12xlarge" | "ml.g6e.16xlarge" | "ml.g6e.24xlarge" | "ml.g6e.48xlarge" | "ml.geospatial.interactive" | "ml.p4d.24xlarge" | "ml.p4de.24xlarge" | "ml.trn1.2xlarge" | "ml.trn1.32xlarge" | "ml.trn1n.32xlarge" | "ml.p5.48xlarge" | "ml.m6i.large" | "ml.m6i.xlarge" | "ml.m6i.2xlarge" | "ml.m6i.4xlarge" | "ml.m6i.8xlarge" | "ml.m6i.12xlarge" | "ml.m6i.16xlarge" | "ml.m6i.24xlarge" | "ml.m6i.32xlarge" | "ml.m7i.large" | "ml.m7i.xlarge" | "ml.m7i.2xlarge" | "ml.m7i.4xlarge" | "ml.m7i.8xlarge" | "ml.m7i.12xlarge" | "ml.m7i.16xlarge" | "ml.m7i.24xlarge" | "ml.m7i.48xlarge" | "ml.c6i.large" | "ml.c6i.xlarge" | "ml.c6i.2xlarge" | "ml.c6i.4xlarge" | "ml.c6i.8xlarge" | "ml.c6i.12xlarge" | "ml.c6i.16xlarge" | "ml.c6i.24xlarge" | "ml.c6i.32xlarge" | "ml.c7i.large" | "ml.c7i.xlarge" | "ml.c7i.2xlarge" | "ml.c7i.4xlarge" | "ml.c7i.8xlarge" | "ml.c7i.12xlarge" | "ml.c7i.16xlarge" | "ml.c7i.24xlarge" | "ml.c7i.48xlarge" | "ml.r6i.large" | "ml.r6i.xlarge" | "ml.r6i.2xlarge" | "ml.r6i.4xlarge" | "ml.r6i.8xlarge" | "ml.r6i.12xlarge" | "ml.r6i.16xlarge" | "ml.r6i.24xlarge" | "ml.r6i.32xlarge" | "ml.r7i.large" | "ml.r7i.xlarge" | "ml.r7i.2xlarge" | "ml.r7i.4xlarge" | "ml.r7i.8xlarge" | "ml.r7i.12xlarge" | "ml.r7i.16xlarge" | "ml.r7i.24xlarge" | "ml.r7i.48xlarge" | "ml.m6id.large" | "ml.m6id.xlarge" | "ml.m6id.2xlarge" | "ml.m6id.4xlarge" | "ml.m6id.8xlarge" | "ml.m6id.12xlarge" | "ml.m6id.16xlarge" | "ml.m6id.24xlarge" | "ml.m6id.32xlarge" | "ml.c6id.large" | "ml.c6id.xlarge" | "ml.c6id.2xlarge" | "ml.c6id.4xlarge" | "ml.c6id.8xlarge" | "ml.c6id.12xlarge" | "ml.c6id.16xlarge" | "ml.c6id.24xlarge" | "ml.c6id.32xlarge" | "ml.r6id.large" | "ml.r6id.xlarge" | "ml.r6id.2xlarge" | "ml.r6id.4xlarge" | "ml.r6id.8xlarge" | "ml.r6id.12xlarge" | "ml.r6id.16xlarge" | "ml.r6id.24xlarge" | "ml.r6id.32xlarge";
175139
175469
  /**
175140
175470
  * Type definition for `AWS::SageMaker::UserProfile.AppLifecycleManagement`.
175141
175471
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-applifecyclemanagement.html}
@@ -175155,6 +175485,12 @@ export type SageMakerUserProfileAppType = "JupyterServer" | "TensorBoard" | "RSt
175155
175485
  */
175156
175486
  export type SageMakerUserProfileCodeEditorAppSettings = {
175157
175487
  AppLifecycleManagement?: SageMakerUserProfileAppLifecycleManagement;
175488
+ /**
175489
+ * The lifecycle configuration that runs before the default lifecycle configuration.
175490
+ * @maxLength `256`
175491
+ * @pattern `^(arn:aws[a-z\-]*:sagemaker:[a-z0-9\-]*:[0-9]{12}:studio-lifecycle-config/.*|None)$`
175492
+ */
175493
+ BuiltInLifecycleConfigArn?: string;
175158
175494
  /**
175159
175495
  * A list of custom images for use for CodeEditor apps.
175160
175496
  * @minLength `0`
@@ -175298,6 +175634,20 @@ export type SageMakerUserProfileFSxLustreFileSystemConfig = {
175298
175634
  */
175299
175635
  FileSystemPath?: string;
175300
175636
  };
175637
+ /**
175638
+ * Type definition for `AWS::SageMaker::UserProfile.HiddenSageMakerImage`.
175639
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-hiddensagemakerimage.html}
175640
+ */
175641
+ export type SageMakerUserProfileHiddenSageMakerImage = {
175642
+ /**
175643
+ * The SageMaker image name that you are hiding from the Studio user interface.
175644
+ */
175645
+ SageMakerImageName?: "sagemaker_distribution";
175646
+ /**
175647
+ * @maxLength `20`
175648
+ */
175649
+ VersionAliases?: string[];
175650
+ };
175301
175651
  /**
175302
175652
  * Type definition for `AWS::SageMaker::UserProfile.IdleSettings`.
175303
175653
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-idlesettings.html}
@@ -175333,6 +175683,12 @@ export type SageMakerUserProfileIdleSettings = {
175333
175683
  */
175334
175684
  export type SageMakerUserProfileJupyterLabAppSettings = {
175335
175685
  AppLifecycleManagement?: SageMakerUserProfileAppLifecycleManagement;
175686
+ /**
175687
+ * The lifecycle configuration that runs before the default lifecycle configuration.
175688
+ * @maxLength `256`
175689
+ * @pattern `^(arn:aws[a-z\-]*:sagemaker:[a-z0-9\-]*:[0-9]{12}:studio-lifecycle-config/.*|None)$`
175690
+ */
175691
+ BuiltInLifecycleConfigArn?: string;
175336
175692
  /**
175337
175693
  * A list of CodeRepositories available for use with JupyterLab apps.
175338
175694
  * @minLength `0`
@@ -175416,7 +175772,7 @@ export type SageMakerUserProfileResourceSpec = {
175416
175772
  /**
175417
175773
  * The Amazon Resource Name (ARN) of the Lifecycle Configuration to attach to the Resource.
175418
175774
  * @maxLength `256`
175419
- * @pattern `arn:aws[a-z\-]*:sagemaker:[a-z0-9\-]*:[0-9]{12}:studio-lifecycle-config/.*`
175775
+ * @pattern `^(arn:aws[a-z\-]*:sagemaker:[a-z0-9\-]*:[0-9]{12}:studio-lifecycle-config/.*|None)$`
175420
175776
  */
175421
175777
  LifecycleConfigArn?: string;
175422
175778
  /**
@@ -175481,11 +175837,22 @@ export type SageMakerUserProfileStudioWebPortalSettings = {
175481
175837
  * @minLength `0`
175482
175838
  */
175483
175839
  HiddenAppTypes?: SageMakerUserProfileAppType[];
175840
+ /**
175841
+ * The instance types you are hiding from the Studio user interface.
175842
+ * @minLength `0`
175843
+ */
175844
+ HiddenInstanceTypes?: SageMakerUserProfileAppInstanceType[];
175484
175845
  /**
175485
175846
  * The machine learning tools that are hidden from the Studio left navigation pane.
175486
175847
  * @minLength `0`
175487
175848
  */
175488
175849
  HiddenMlTools?: SageMakerUserProfileMlTools[];
175850
+ /**
175851
+ * The version aliases you are hiding from the Studio user interface.
175852
+ * @minLength `0`
175853
+ * @maxLength `5`
175854
+ */
175855
+ HiddenSageMakerImageVersionAliases?: SageMakerUserProfileHiddenSageMakerImage[];
175489
175856
  };
175490
175857
  /**
175491
175858
  * Type definition for `AWS::SageMaker::UserProfile.Tag`.
@@ -175509,6 +175876,10 @@ export type SageMakerUserProfileTag = {
175509
175876
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-usersettings.html}
175510
175877
  */
175511
175878
  export type SageMakerUserProfileUserSettings = {
175879
+ /**
175880
+ * Indicates whether auto-mounting of an EFS volume is supported for the user profile.
175881
+ */
175882
+ AutoMountHomeEFS?: "Enabled" | "Disabled" | "DefaultAsDomain";
175512
175883
  /**
175513
175884
  * The CodeEditor app settings.
175514
175885
  */
@@ -176897,15 +177268,15 @@ export type SecurityHubAutomationRuleMapFilter = {
176897
177268
  + To search for values that include the filter value, use ``CONTAINS``. For example, for the ``ResourceTags`` field, the filter ``Department CONTAINS Security`` matches findings that include the value ``Security`` for the ``Department`` tag. In the same example, a finding with a value of ``Security team`` for the ``Department`` tag is a match.
176898
177269
  + To search for values that exactly match the filter value, use ``EQUALS``. For example, for the ``ResourceTags`` field, the filter ``Department EQUALS Security`` matches findings that have the value ``Security`` for the ``Department`` tag.
176899
177270
 
176900
- ``CONTAINS`` and ``EQUALS`` filters on the same field are joined by ``OR``. A finding matches if it matches any one of those filters. For example, the filters ``Department CONTAINS Security OR Department CONTAINS Finance`` match a finding that includes either ``Security``, ``Finance``, or both values.
177271
+ ``CONTAINS`` and ``EQUALS`` filters on the same field are joined by ``OR``. A finding matches if it matches any one of those filters. For example, the filters ``Department CONTAINS Security OR Department CONTAINS Finance`` match a finding that includes either ``Security``, ``Finance``, or both values.
176901
177272
  To search for values that don't have the filter value, use one of the following comparison operators:
176902
177273
  + To search for values that exclude the filter value, use ``NOT_CONTAINS``. For example, for the ``ResourceTags`` field, the filter ``Department NOT_CONTAINS Finance`` matches findings that exclude the value ``Finance`` for the ``Department`` tag.
176903
177274
  + To search for values other than the filter value, use ``NOT_EQUALS``. For example, for the ``ResourceTags`` field, the filter ``Department NOT_EQUALS Finance`` matches findings that don’t have the value ``Finance`` for the ``Department`` tag.
176904
177275
 
176905
- ``NOT_CONTAINS`` and ``NOT_EQUALS`` filters on the same field are joined by ``AND``. A finding matches only if it matches all of those filters. For example, the filters ``Department NOT_CONTAINS Security AND Department NOT_CONTAINS Finance`` match a finding that excludes both the ``Security`` and ``Finance`` values.
176906
- ``CONTAINS`` filters can only be used with other ``CONTAINS`` filters. ``NOT_CONTAINS`` filters can only be used with other ``NOT_CONTAINS`` filters.
177276
+ ``NOT_CONTAINS`` and ``NOT_EQUALS`` filters on the same field are joined by ``AND``. A finding matches only if it matches all of those filters. For example, the filters ``Department NOT_CONTAINS Security AND Department NOT_CONTAINS Finance`` match a finding that excludes both the ``Security`` and ``Finance`` values.
177277
+ ``CONTAINS`` filters can only be used with other ``CONTAINS`` filters. ``NOT_CONTAINS`` filters can only be used with other ``NOT_CONTAINS`` filters.
176907
177278
  You can’t have both a ``CONTAINS`` filter and a ``NOT_CONTAINS`` filter on the same field. Similarly, you can’t have both an ``EQUALS`` filter and a ``NOT_EQUALS`` filter on the same field. Combining filters in this way returns an error.
176908
- ``CONTAINS`` and ``NOT_CONTAINS`` operators can be used only with automation rules. For more information, see [Automation rules](https://docs.aws.amazon.com/securityhub/latest/userguide/automation-rules.html) in the *User Guide*.
177279
+ ``CONTAINS`` and ``NOT_CONTAINS`` operators can be used only with automation rules. For more information, see [Automation rules](https://docs.aws.amazon.com/securityhub/latest/userguide/automation-rules.html) in the *User Guide*.
176909
177280
  */
176910
177281
  Comparison: "EQUALS" | "NOT_EQUALS" | "CONTAINS" | "NOT_CONTAINS";
176911
177282
  /**
@@ -176980,11 +177351,11 @@ export type SecurityHubAutomationRuleRelatedFinding = {
176980
177351
  export type SecurityHubAutomationRuleSeverityUpdate = {
176981
177352
  /**
176982
177353
  * The severity value of the finding. The allowed values are the following.
176983
- + ``INFORMATIONAL`` - No issue was found.
176984
- + ``LOW`` - The issue does not require action on its own.
176985
- + ``MEDIUM`` - The issue must be addressed but not urgently.
176986
- + ``HIGH`` - The issue must be addressed as a priority.
176987
- + ``CRITICAL`` - The issue must be remediated immediately to avoid it escalating.
177354
+ + ``INFORMATIONAL`` - No issue was found.
177355
+ + ``LOW`` - The issue does not require action on its own.
177356
+ + ``MEDIUM`` - The issue must be addressed but not urgently.
177357
+ + ``HIGH`` - The issue must be addressed as a priority.
177358
+ + ``CRITICAL`` - The issue must be remediated immediately to avoid it escalating.
176988
177359
  */
176989
177360
  Label?: "INFORMATIONAL" | "LOW" | "MEDIUM" | "HIGH" | "CRITICAL";
176990
177361
  /**
@@ -177017,13 +177388,13 @@ export type SecurityHubAutomationRuleStringFilter = {
177017
177388
  + To search for values that exactly match the filter value, use ``EQUALS``. For example, the filter ``AwsAccountId EQUALS 123456789012`` only matches findings that have an account ID of ``123456789012``.
177018
177389
  + To search for values that start with the filter value, use ``PREFIX``. For example, the filter ``ResourceRegion PREFIX us`` matches findings that have a ``ResourceRegion`` that starts with ``us``. A ``ResourceRegion`` that starts with a different value, such as ``af``, ``ap``, or ``ca``, doesn't match.
177019
177390
 
177020
- ``CONTAINS``, ``EQUALS``, and ``PREFIX`` filters on the same field are joined by ``OR``. A finding matches if it matches any one of those filters. For example, the filters ``Title CONTAINS CloudFront OR Title CONTAINS CloudWatch`` match a finding that includes either ``CloudFront``, ``CloudWatch``, or both strings in the title.
177391
+ ``CONTAINS``, ``EQUALS``, and ``PREFIX`` filters on the same field are joined by ``OR``. A finding matches if it matches any one of those filters. For example, the filters ``Title CONTAINS CloudFront OR Title CONTAINS CloudWatch`` match a finding that includes either ``CloudFront``, ``CloudWatch``, or both strings in the title.
177021
177392
  To search for values that don’t have the filter value, use one of the following comparison operators:
177022
177393
  + To search for values that exclude the filter value, use ``NOT_CONTAINS``. For example, the filter ``Title NOT_CONTAINS CloudFront`` matches findings that have a ``Title`` that excludes the string CloudFront.
177023
177394
  + To search for values other than the filter value, use ``NOT_EQUALS``. For example, the filter ``AwsAccountId NOT_EQUALS 123456789012`` only matches findings that have an account ID other than ``123456789012``.
177024
177395
  + To search for values that don't start with the filter value, use ``PREFIX_NOT_EQUALS``. For example, the filter ``ResourceRegion PREFIX_NOT_EQUALS us`` matches findings with a ``ResourceRegion`` that starts with a value other than ``us``.
177025
177396
 
177026
- ``NOT_CONTAINS``, ``NOT_EQUALS``, and ``PREFIX_NOT_EQUALS`` filters on the same field are joined by ``AND``. A finding matches only if it matches all of those filters. For example, the filters ``Title NOT_CONTAINS CloudFront AND Title NOT_CONTAINS CloudWatch`` match a finding that excludes both ``CloudFront`` and ``CloudWatch`` in the title.
177397
+ ``NOT_CONTAINS``, ``NOT_EQUALS``, and ``PREFIX_NOT_EQUALS`` filters on the same field are joined by ``AND``. A finding matches only if it matches all of those filters. For example, the filters ``Title NOT_CONTAINS CloudFront AND Title NOT_CONTAINS CloudWatch`` match a finding that excludes both ``CloudFront`` and ``CloudWatch`` in the title.
177027
177398
  You can’t have both a ``CONTAINS`` filter and a ``NOT_CONTAINS`` filter on the same field. Similarly, you can't provide both an ``EQUALS`` filter and a ``NOT_EQUALS`` or ``PREFIX_NOT_EQUALS`` filter on the same field. Combining filters in this way returns an error. ``CONTAINS`` filters can only be used with other ``CONTAINS`` filters. ``NOT_CONTAINS`` filters can only be used with other ``NOT_CONTAINS`` filters.
177028
177399
  You can combine ``PREFIX`` filters with ``NOT_EQUALS`` or ``PREFIX_NOT_EQUALS`` filters for the same field. Security Hub first processes the ``PREFIX`` filters, and then the ``NOT_EQUALS`` or ``PREFIX_NOT_EQUALS`` filters.
177029
177400
  For example, for the following filters, Security Hub first identifies findings that have resource types that start with either ``AwsIam`` or ``AwsEc2``. It then excludes findings that have a resource type of ``AwsIamPolicy`` and findings that have a resource type of ``AwsEc2NetworkInterface``.
@@ -177032,7 +177403,7 @@ export type SecurityHubAutomationRuleStringFilter = {
177032
177403
  + ``ResourceType NOT_EQUALS AwsIamPolicy``
177033
177404
  + ``ResourceType NOT_EQUALS AwsEc2NetworkInterface``
177034
177405
 
177035
- ``CONTAINS`` and ``NOT_CONTAINS`` operators can be used only with automation rules. For more information, see [Automation rules](https://docs.aws.amazon.com/securityhub/latest/userguide/automation-rules.html) in the *User Guide*.
177406
+ ``CONTAINS`` and ``NOT_CONTAINS`` operators can be used only with automation rules. For more information, see [Automation rules](https://docs.aws.amazon.com/securityhub/latest/userguide/automation-rules.html) in the *User Guide*.
177036
177407
  */
177037
177408
  Comparison: SecurityHubAutomationRuleStringFilterComparison;
177038
177409
  /**
@@ -177061,14 +177432,14 @@ export type SecurityHubAutomationRuleWorkflowUpdate = {
177061
177432
  /**
177062
177433
  * The status of the investigation into the finding. The workflow status is specific to an individual finding. It does not affect the generation of new findings. For example, setting the workflow status to ``SUPPRESSED`` or ``RESOLVED`` does not prevent a new finding for the same issue.
177063
177434
  The allowed values are the following.
177064
- + ``NEW`` - The initial state of a finding, before it is reviewed.
177435
+ + ``NEW`` - The initial state of a finding, before it is reviewed.
177065
177436
  Security Hub also resets ``WorkFlowStatus`` from ``NOTIFIED`` or ``RESOLVED`` to ``NEW`` in the following cases:
177066
177437
  + The record state changes from ``ARCHIVED`` to ``ACTIVE``.
177067
177438
  + The compliance status changes from ``PASSED`` to either ``WARNING``, ``FAILED``, or ``NOT_AVAILABLE``.
177068
177439
 
177069
- + ``NOTIFIED`` - Indicates that you notified the resource owner about the security issue. Used when the initial reviewer is not the resource owner, and needs intervention from the resource owner.
177070
- + ``RESOLVED`` - The finding was reviewed and remediated and is now considered resolved.
177071
- + ``SUPPRESSED`` - Indicates that you reviewed the finding and don't believe that any action is needed. The finding is no longer updated.
177440
+ + ``NOTIFIED`` - Indicates that you notified the resource owner about the security issue. Used when the initial reviewer is not the resource owner, and needs intervention from the resource owner.
177441
+ + ``RESOLVED`` - The finding was reviewed and remediated and is now considered resolved.
177442
+ + ``SUPPRESSED`` - Indicates that you reviewed the finding and don't believe that any action is needed. The finding is no longer updated.
177072
177443
  */
177073
177444
  Status: "NEW" | "NOTIFIED" | "RESOLVED" | "SUPPRESSED";
177074
177445
  };
@@ -177296,9 +177667,9 @@ export type SecurityHubFindingAggregatorProps = {
177296
177667
  * Indicates whether to aggregate findings from all of the available Regions in the current partition. Also determines whether to automatically aggregate findings from new Regions as Security Hub supports them and you opt into them.
177297
177668
  The selected option also determines how to use the Regions provided in the Regions list.
177298
177669
  In CFN, the options for this property are as follows:
177299
- + ``ALL_REGIONS`` - Indicates to aggregate findings from all of the Regions where Security Hub is enabled. When you choose this option, Security Hub also automatically aggregates findings from new Regions as Security Hub supports them and you opt into them.
177300
- + ``ALL_REGIONS_EXCEPT_SPECIFIED`` - Indicates to aggregate findings from all of the Regions where Security Hub is enabled, except for the Regions listed in the ``Regions`` parameter. When you choose this option, Security Hub also automatically aggregates findings from new Regions as Security Hub supports them and you opt into them.
177301
- + ``SPECIFIED_REGIONS`` - Indicates to aggregate findings only from the Regions listed in the ``Regions`` parameter. Security Hub does not automatically aggregate findings from new Regions.
177670
+ + ``ALL_REGIONS`` - Indicates to aggregate findings from all of the Regions where Security Hub is enabled. When you choose this option, Security Hub also automatically aggregates findings from new Regions as Security Hub supports them and you opt into them.
177671
+ + ``ALL_REGIONS_EXCEPT_SPECIFIED`` - Indicates to aggregate findings from all of the Regions where Security Hub is enabled, except for the Regions listed in the ``Regions`` parameter. When you choose this option, Security Hub also automatically aggregates findings from new Regions as Security Hub supports them and you opt into them.
177672
+ + ``SPECIFIED_REGIONS`` - Indicates to aggregate findings only from the Regions listed in the ``Regions`` parameter. Security Hub does not automatically aggregate findings from new Regions.
177302
177673
  */
177303
177674
  RegionLinkingMode: "ALL_REGIONS" | "ALL_REGIONS_EXCEPT_SPECIFIED" | "SPECIFIED_REGIONS";
177304
177675
  /**
@@ -182205,7 +182576,7 @@ export type SSMDocumentProps = {
182205
182576
  /**
182206
182577
  * The type of document to create.
182207
182578
  */
182208
- DocumentType?: "ApplicationConfiguration" | "ApplicationConfigurationSchema" | "Automation" | "Automation.ChangeTemplate" | "ChangeCalendar" | "CloudFormation" | "Command" | "DeploymentStrategy" | "Package" | "Policy" | "ProblemAnalysis" | "ProblemAnalysisTemplate" | "Session";
182579
+ DocumentType?: "ApplicationConfiguration" | "ApplicationConfigurationSchema" | "Automation" | "Automation.ChangeTemplate" | "AutoApprovalPolicy" | "ChangeCalendar" | "CloudFormation" | "Command" | "DeploymentStrategy" | "ManualApprovalPolicy" | "Package" | "Policy" | "ProblemAnalysis" | "ProblemAnalysisTemplate" | "Session";
182209
182580
  /**
182210
182581
  * A name for the Systems Manager document.
182211
182582
  * @pattern `^[a-zA-Z0-9_\-.]{3,128}$`
@@ -195429,6 +195800,7 @@ export interface ResourceTypes {
195429
195800
  "AWS::DataSync::LocationObjectStorage": DataSyncLocationObjectStorageProps;
195430
195801
  "AWS::DataSync::LocationS3": DataSyncLocationS3Props;
195431
195802
  "AWS::DataSync::LocationSMB": DataSyncLocationSMBProps;
195803
+ "AWS::DataSync::StorageSystem": DataSyncStorageSystemProps;
195432
195804
  "AWS::DataSync::Task": DataSyncTaskProps;
195433
195805
  "AWS::DataZone::Connection": DataZoneConnectionProps;
195434
195806
  "AWS::DataZone::DataSource": DataZoneDataSourceProps;
@@ -196063,6 +196435,7 @@ export interface ResourceTypes {
196063
196435
  "AWS::Omics::SequenceStore": OmicsSequenceStoreProps;
196064
196436
  "AWS::Omics::VariantStore": OmicsVariantStoreProps;
196065
196437
  "AWS::Omics::Workflow": OmicsWorkflowProps;
196438
+ "AWS::Omics::WorkflowVersion": OmicsWorkflowVersionProps;
196066
196439
  "AWS::OpenSearchServerless::AccessPolicy": OpenSearchServerlessAccessPolicyProps;
196067
196440
  "AWS::OpenSearchServerless::Collection": OpenSearchServerlessCollectionProps;
196068
196441
  "AWS::OpenSearchServerless::Index": OpenSearchServerlessIndexProps;
@@ -196591,6 +196964,7 @@ export interface AttributeTypes {
196591
196964
  "AWS::Athena::NamedQuery": AthenaNamedQueryAttributes;
196592
196965
  "AWS::Athena::WorkGroup": AthenaWorkGroupAttributes;
196593
196966
  "AWS::AuditManager::Assessment": AuditManagerAssessmentAttributes;
196967
+ "AWS::AutoScaling::AutoScalingGroup": AutoScalingAutoScalingGroupAttributes;
196594
196968
  "AWS::AutoScaling::ScalingPolicy": AutoScalingScalingPolicyAttributes;
196595
196969
  "AWS::AutoScaling::ScheduledAction": AutoScalingScheduledActionAttributes;
196596
196970
  "AWS::AutoScalingPlans::ScalingPlan": AutoScalingPlansScalingPlanAttributes;
@@ -196782,6 +197156,7 @@ export interface AttributeTypes {
196782
197156
  "AWS::DataSync::LocationObjectStorage": DataSyncLocationObjectStorageAttributes;
196783
197157
  "AWS::DataSync::LocationS3": DataSyncLocationS3Attributes;
196784
197158
  "AWS::DataSync::LocationSMB": DataSyncLocationSMBAttributes;
197159
+ "AWS::DataSync::StorageSystem": DataSyncStorageSystemAttributes;
196785
197160
  "AWS::DataSync::Task": DataSyncTaskAttributes;
196786
197161
  "AWS::DataZone::Connection": DataZoneConnectionAttributes;
196787
197162
  "AWS::DataZone::DataSource": DataZoneDataSourceAttributes;
@@ -197345,6 +197720,7 @@ export interface AttributeTypes {
197345
197720
  "AWS::Omics::SequenceStore": OmicsSequenceStoreAttributes;
197346
197721
  "AWS::Omics::VariantStore": OmicsVariantStoreAttributes;
197347
197722
  "AWS::Omics::Workflow": OmicsWorkflowAttributes;
197723
+ "AWS::Omics::WorkflowVersion": OmicsWorkflowVersionAttributes;
197348
197724
  "AWS::OpenSearchServerless::Collection": OpenSearchServerlessCollectionAttributes;
197349
197725
  "AWS::OpenSearchServerless::Index": OpenSearchServerlessIndexAttributes;
197350
197726
  "AWS::OpenSearchServerless::SecurityConfig": OpenSearchServerlessSecurityConfigAttributes;
@@ -198064,6 +198440,7 @@ export declare const ResourceType: {
198064
198440
  readonly DataSyncLocationObjectStorage: "AWS::DataSync::LocationObjectStorage";
198065
198441
  readonly DataSyncLocationS3: "AWS::DataSync::LocationS3";
198066
198442
  readonly DataSyncLocationSMB: "AWS::DataSync::LocationSMB";
198443
+ readonly DataSyncStorageSystem: "AWS::DataSync::StorageSystem";
198067
198444
  readonly DataSyncTask: "AWS::DataSync::Task";
198068
198445
  readonly DataZoneConnection: "AWS::DataZone::Connection";
198069
198446
  readonly DataZoneDataSource: "AWS::DataZone::DataSource";
@@ -198698,6 +199075,7 @@ export declare const ResourceType: {
198698
199075
  readonly OmicsSequenceStore: "AWS::Omics::SequenceStore";
198699
199076
  readonly OmicsVariantStore: "AWS::Omics::VariantStore";
198700
199077
  readonly OmicsWorkflow: "AWS::Omics::Workflow";
199078
+ readonly OmicsWorkflowVersion: "AWS::Omics::WorkflowVersion";
198701
199079
  readonly OpenSearchServerlessAccessPolicy: "AWS::OpenSearchServerless::AccessPolicy";
198702
199080
  readonly OpenSearchServerlessCollection: "AWS::OpenSearchServerless::Collection";
198703
199081
  readonly OpenSearchServerlessIndex: "AWS::OpenSearchServerless::Index";