@awboost/cfntypes 0.100.187 → 0.100.189

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.
@@ -44757,127 +44757,6 @@ export type DataSyncLocationSMBTag = {
44757
44757
  */
44758
44758
  Value: string;
44759
44759
  };
44760
- /**
44761
- * Resource schema for AWS::DataSync::StorageSystem.
44762
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-storagesystem.html}
44763
- */
44764
- export type DataSyncStorageSystemProps = {
44765
- /**
44766
- * The ARN of the DataSync agent that connects to and reads from the on-premises storage system's management interface.
44767
- * @minLength `1`
44768
- * @maxLength `1`
44769
- */
44770
- AgentArns: string[];
44771
- /**
44772
- * The ARN of the Amazon CloudWatch log group used to monitor and log discovery job events.
44773
- * @maxLength `562`
44774
- * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):logs:[a-z\-0-9]+:[0-9]{12}:log-group:([^:\*]*)(:\*)?$`
44775
- */
44776
- CloudWatchLogGroupArn?: string;
44777
- /**
44778
- * A familiar name for the on-premises storage system.
44779
- * @minLength `1`
44780
- * @maxLength `256`
44781
- * @pattern `^[a-zA-Z0-9\s+=._:@/-]+$`
44782
- */
44783
- Name?: string;
44784
- /**
44785
- * The server name and network port required to connect with the management interface of the on-premises storage system.
44786
- */
44787
- ServerConfiguration: DataSyncStorageSystemServerConfiguration;
44788
- /**
44789
- * The username and password for accessing your on-premises storage system's management interface.
44790
- */
44791
- ServerCredentials?: DataSyncStorageSystemServerCredentials;
44792
- /**
44793
- * The type of on-premises storage system that DataSync Discovery will analyze.
44794
- */
44795
- SystemType: "NetAppONTAP";
44796
- /**
44797
- * An array of key-value pairs to apply to this resource.
44798
- * @maxLength `50`
44799
- */
44800
- Tags?: DataSyncStorageSystemTag[];
44801
- };
44802
- /**
44803
- * Attribute type definition for `AWS::DataSync::StorageSystem`.
44804
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-storagesystem.html#aws-resource-datasync-storagesystem-return-values}
44805
- */
44806
- export type DataSyncStorageSystemAttributes = {
44807
- /**
44808
- * Indicates whether the DataSync agent can access the on-premises storage system.
44809
- */
44810
- ConnectivityStatus: "PASS" | "FAIL" | "UNKNOWN";
44811
- /**
44812
- * The ARN of a secret stored by AWS Secrets Manager.
44813
- * @maxLength `2048`
44814
- * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z\-0-9]+:[0-9]{12}:secret:.*`
44815
- */
44816
- SecretsManagerArn: string;
44817
- /**
44818
- * The ARN of the on-premises storage system added to DataSync Discovery.
44819
- * @maxLength `128`
44820
- * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:system/storage-system-[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$`
44821
- */
44822
- StorageSystemArn: string;
44823
- };
44824
- /**
44825
- * Type definition for `AWS::DataSync::StorageSystem.ServerConfiguration`.
44826
- * The server name and network port required to connect with the management interface of the on-premises storage system.
44827
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-storagesystem-serverconfiguration.html}
44828
- */
44829
- export type DataSyncStorageSystemServerConfiguration = {
44830
- /**
44831
- * The domain name or IP address of the storage system's management interface.
44832
- * @maxLength `255`
44833
- * @pattern `^(([a-zA-Z0-9\-]*[a-zA-Z0-9])\.)*([A-Za-z0-9\-]*[A-Za-z0-9])$`
44834
- */
44835
- ServerHostname: string;
44836
- /**
44837
- * The network port needed to access the system's management interface
44838
- * @min `1`
44839
- * @max `65535`
44840
- */
44841
- ServerPort?: number;
44842
- };
44843
- /**
44844
- * Type definition for `AWS::DataSync::StorageSystem.ServerCredentials`.
44845
- * The username and password for accessing your on-premises storage system's management interface.
44846
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-storagesystem-servercredentials.html}
44847
- */
44848
- export type DataSyncStorageSystemServerCredentials = {
44849
- /**
44850
- * The password for your storage system's management interface
44851
- * @maxLength `1024`
44852
- */
44853
- Password: string;
44854
- /**
44855
- * The username for your storage system's management interface.
44856
- * @maxLength `1024`
44857
- */
44858
- Username: string;
44859
- };
44860
- /**
44861
- * Type definition for `AWS::DataSync::StorageSystem.Tag`.
44862
- * A key-value pair to associate with a resource.
44863
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-storagesystem-tag.html}
44864
- */
44865
- export type DataSyncStorageSystemTag = {
44866
- /**
44867
- * The key for an AWS resource tag.
44868
- * @minLength `1`
44869
- * @maxLength `256`
44870
- * @pattern `^[a-zA-Z0-9\s+=._:/-]+$`
44871
- */
44872
- Key: string;
44873
- /**
44874
- * The value for an AWS resource tag.
44875
- * @minLength `1`
44876
- * @maxLength `256`
44877
- * @pattern `^[a-zA-Z0-9\s+=._:@/-]+$`
44878
- */
44879
- Value: string;
44880
- };
44881
44760
  /**
44882
44761
  * Resource schema for AWS::DataSync::Task.
44883
44762
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-task.html}
@@ -53667,6 +53546,7 @@ export type EC2LaunchTemplateEbs = {
53667
53546
  Valid Range: Minimum value of 125. Maximum value of 1000.
53668
53547
  */
53669
53548
  Throughput?: number;
53549
+ VolumeInitializationRate?: number;
53670
53550
  /**
53671
53551
  * 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:
53672
53552
  + ``gp2`` and ``gp3``: 1 - 16,384 GiB
@@ -55166,6 +55046,7 @@ export type EC2NetworkInsightsAccessScopeAnalysisTag = {
55166
55046
  export type EC2NetworkInsightsAnalysisProps = {
55167
55047
  AdditionalAccounts?: string[];
55168
55048
  FilterInArns?: string[];
55049
+ FilterOutArns?: string[];
55169
55050
  NetworkInsightsPathId: string;
55170
55051
  Tags?: EC2NetworkInsightsAnalysisTag[];
55171
55052
  };
@@ -119359,6 +119240,11 @@ export type OmicsWorkflowProps = {
119359
119240
  * @max `100000`
119360
119241
  */
119361
119242
  StorageCapacity?: number;
119243
+ /**
119244
+ * @minLength `1`
119245
+ * @maxLength `64`
119246
+ */
119247
+ StorageType?: OmicsWorkflowStorageType;
119362
119248
  /**
119363
119249
  * A map of resource tags
119364
119250
  */
@@ -119392,12 +119278,21 @@ export type OmicsWorkflowAttributes = {
119392
119278
  * @maxLength `64`
119393
119279
  */
119394
119280
  Type: OmicsWorkflowWorkflowType;
119281
+ /**
119282
+ * @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}$`
119283
+ */
119284
+ Uuid: string;
119395
119285
  };
119396
119286
  /**
119397
119287
  * Type definition for `AWS::Omics::Workflow.Accelerators`.
119398
119288
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-accelerators.html}
119399
119289
  */
119400
119290
  export type OmicsWorkflowAccelerators = "GPU";
119291
+ /**
119292
+ * Type definition for `AWS::Omics::Workflow.StorageType`.
119293
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-storagetype.html}
119294
+ */
119295
+ export type OmicsWorkflowStorageType = "STATIC" | "DYNAMIC";
119401
119296
  /**
119402
119297
  * Type definition for `AWS::Omics::Workflow.TagMap`.
119403
119298
  * A map of resource tags
@@ -119437,6 +119332,151 @@ export type OmicsWorkflowWorkflowStatus = "CREATING" | "ACTIVE" | "UPDATING" | "
119437
119332
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-workflowtype.html}
119438
119333
  */
119439
119334
  export type OmicsWorkflowWorkflowType = "PRIVATE";
119335
+ /**
119336
+ * Definition of AWS::Omics::WorkflowVersion Resource Type.
119337
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html}
119338
+ */
119339
+ export type OmicsWorkflowVersionProps = {
119340
+ /**
119341
+ * @minLength `1`
119342
+ * @maxLength `64`
119343
+ */
119344
+ Accelerators?: OmicsWorkflowVersionAccelerators;
119345
+ /**
119346
+ * @minLength `1`
119347
+ * @maxLength `256`
119348
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
119349
+ */
119350
+ DefinitionUri?: string;
119351
+ /**
119352
+ * @minLength `1`
119353
+ * @maxLength `256`
119354
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
119355
+ */
119356
+ Description?: string;
119357
+ /**
119358
+ * @minLength `1`
119359
+ * @maxLength `64`
119360
+ */
119361
+ Engine?: OmicsWorkflowVersionWorkflowEngine;
119362
+ /**
119363
+ * @minLength `1`
119364
+ * @maxLength `128`
119365
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
119366
+ */
119367
+ Main?: string;
119368
+ ParameterTemplate?: OmicsWorkflowVersionWorkflowParameterTemplate;
119369
+ /**
119370
+ * @min `0`
119371
+ * @max `100000`
119372
+ */
119373
+ StorageCapacity?: number;
119374
+ /**
119375
+ * @minLength `1`
119376
+ * @maxLength `64`
119377
+ */
119378
+ StorageType?: OmicsWorkflowVersionStorageType;
119379
+ /**
119380
+ * A map of resource tags
119381
+ */
119382
+ Tags?: OmicsWorkflowVersionTagMap;
119383
+ /**
119384
+ * @minLength `1`
119385
+ * @maxLength `64`
119386
+ * @pattern `^[A-Za-z0-9][A-Za-z0-9\-\._]*$`
119387
+ */
119388
+ VersionName: string;
119389
+ /**
119390
+ * @minLength `1`
119391
+ * @maxLength `12`
119392
+ * @pattern `^[0-9]{12}$`
119393
+ */
119394
+ WorkflowBucketOwnerId?: string;
119395
+ /**
119396
+ * @minLength `1`
119397
+ * @maxLength `18`
119398
+ * @pattern `^[0-9]+$`
119399
+ */
119400
+ WorkflowId: string;
119401
+ };
119402
+ /**
119403
+ * Attribute type definition for `AWS::Omics::WorkflowVersion`.
119404
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html#aws-resource-omics-workflowversion-return-values}
119405
+ */
119406
+ export type OmicsWorkflowVersionAttributes = {
119407
+ /**
119408
+ * @minLength `1`
119409
+ * @maxLength `128`
119410
+ * @pattern `^arn:.+$`
119411
+ */
119412
+ Arn: string;
119413
+ CreationTime: string;
119414
+ /**
119415
+ * @minLength `1`
119416
+ * @maxLength `64`
119417
+ */
119418
+ Status: OmicsWorkflowVersionWorkflowStatus;
119419
+ /**
119420
+ * @minLength `1`
119421
+ * @maxLength `64`
119422
+ */
119423
+ Type: OmicsWorkflowVersionWorkflowType;
119424
+ /**
119425
+ * @minLength `1`
119426
+ * @maxLength `36`
119427
+ * @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}$`
119428
+ */
119429
+ Uuid: string;
119430
+ };
119431
+ /**
119432
+ * Type definition for `AWS::Omics::WorkflowVersion.Accelerators`.
119433
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-accelerators.html}
119434
+ */
119435
+ export type OmicsWorkflowVersionAccelerators = "GPU";
119436
+ /**
119437
+ * Type definition for `AWS::Omics::WorkflowVersion.StorageType`.
119438
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-storagetype.html}
119439
+ */
119440
+ export type OmicsWorkflowVersionStorageType = "STATIC" | "DYNAMIC";
119441
+ /**
119442
+ * Type definition for `AWS::Omics::WorkflowVersion.TagMap`.
119443
+ * A map of resource tags
119444
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-tagmap.html}
119445
+ */
119446
+ export type OmicsWorkflowVersionTagMap = Record<string, string>;
119447
+ /**
119448
+ * Type definition for `AWS::Omics::WorkflowVersion.WorkflowEngine`.
119449
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-workflowengine.html}
119450
+ */
119451
+ export type OmicsWorkflowVersionWorkflowEngine = "WDL" | "NEXTFLOW" | "CWL";
119452
+ /**
119453
+ * Type definition for `AWS::Omics::WorkflowVersion.WorkflowParameter`.
119454
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-workflowparameter.html}
119455
+ */
119456
+ export type OmicsWorkflowVersionWorkflowParameter = {
119457
+ /**
119458
+ * @minLength `0`
119459
+ * @maxLength `256`
119460
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
119461
+ */
119462
+ Description?: string;
119463
+ Optional?: boolean;
119464
+ };
119465
+ /**
119466
+ * Type definition for `AWS::Omics::WorkflowVersion.WorkflowParameterTemplate`.
119467
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-workflowparametertemplate.html}
119468
+ */
119469
+ export type OmicsWorkflowVersionWorkflowParameterTemplate = Record<string, OmicsWorkflowVersionWorkflowParameter>;
119470
+ /**
119471
+ * Type definition for `AWS::Omics::WorkflowVersion.WorkflowStatus`.
119472
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-workflowstatus.html}
119473
+ */
119474
+ export type OmicsWorkflowVersionWorkflowStatus = "CREATING" | "ACTIVE" | "UPDATING" | "DELETED" | "FAILED" | "INACTIVE";
119475
+ /**
119476
+ * Type definition for `AWS::Omics::WorkflowVersion.WorkflowType`.
119477
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-workflowtype.html}
119478
+ */
119479
+ export type OmicsWorkflowVersionWorkflowType = "PRIVATE" | "READY2RUN";
119440
119480
  /**
119441
119481
  * Resource type definition for `AWS::OpenSearchServerless::AccessPolicy`.
119442
119482
  * Amazon OpenSearchServerless access policy resource
@@ -121263,7 +121303,7 @@ export type OSISPipelineProps = {
121263
121303
  /**
121264
121304
  * The Data Prepper pipeline configuration.
121265
121305
  * @minLength `1`
121266
- * @maxLength `24000`
121306
+ * @maxLength `100000`
121267
121307
  */
121268
121308
  PipelineConfigurationBody: string;
121269
121309
  /**
@@ -156541,7 +156581,8 @@ export type RDSDBClusterProps = {
156541
156581
  AssociatedRoles?: RDSDBClusterDBClusterRole[];
156542
156582
  /**
156543
156583
  * Specifies whether minor engine upgrades are applied automatically to the DB cluster during the maintenance window. By default, minor engine upgrades are applied automatically.
156544
- Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB cluster
156584
+ Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB cluster.
156585
+ For more information about automatic minor version upgrades, see [Automatically upgrading the minor engine version](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Upgrading.html#USER_UpgradeDBInstance.Upgrading.AutoMinorVersionUpgrades).
156545
156586
  */
156546
156587
  AutoMinorVersionUpgrade?: boolean;
156547
156588
  /**
@@ -167378,6 +167419,10 @@ export type SageMakerAppProps = {
167378
167419
  * @maxLength `63`
167379
167420
  */
167380
167421
  DomainId: string;
167422
+ /**
167423
+ * Indicates whether the application is launched in recovery mode.
167424
+ */
167425
+ RecoveryMode?: boolean;
167381
167426
  /**
167382
167427
  * The instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance.
167383
167428
  */
@@ -167408,6 +167453,12 @@ export type SageMakerAppAttributes = {
167408
167453
  * @pattern `arn:aws[a-z\-]*:sagemaker:[a-z0-9\-]*:[0-9]{12}:app/.*`
167409
167454
  */
167410
167455
  AppArn: string;
167456
+ /**
167457
+ * The lifecycle configuration that runs before the default lifecycle configuration.
167458
+ * @maxLength `256`
167459
+ * @pattern `^(arn:aws[a-z\-]*:sagemaker:[a-z0-9\-]*:[0-9]{12}:studio-lifecycle-config/.*|None)$`
167460
+ */
167461
+ BuiltInLifecycleConfigArn: string;
167411
167462
  };
167412
167463
  /**
167413
167464
  * Type definition for `AWS::SageMaker::App.ResourceSpec`.
@@ -167421,7 +167472,7 @@ export type SageMakerAppResourceSpec = {
167421
167472
  /**
167422
167473
  * The Amazon Resource Name (ARN) of the Lifecycle Configuration to attach to the Resource.
167423
167474
  * @maxLength `256`
167424
- * @pattern `arn:aws[a-z\-]*:sagemaker:[a-z0-9\-]*:[0-9]{12}:studio-lifecycle-config/.*`
167475
+ * @pattern `^(arn:aws[a-z\-]*:sagemaker:[a-z0-9\-]*:[0-9]{12}:studio-lifecycle-config/.*|None)$`
167425
167476
  */
167426
167477
  LifecycleConfigArn?: string;
167427
167478
  /**
@@ -168604,6 +168655,12 @@ export type SageMakerDomainAttributes = {
168604
168655
  */
168605
168656
  Url: string;
168606
168657
  };
168658
+ /**
168659
+ * Type definition for `AWS::SageMaker::Domain.AppInstanceType`.
168660
+ * The instance type that the image version runs on.
168661
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-appinstancetype.html}
168662
+ */
168663
+ 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";
168607
168664
  /**
168608
168665
  * Type definition for `AWS::SageMaker::Domain.AppLifecycleManagement`.
168609
168666
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-applifecyclemanagement.html}
@@ -168623,6 +168680,12 @@ export type SageMakerDomainAppType = "JupyterServer" | "TensorBoard" | "RStudioS
168623
168680
  */
168624
168681
  export type SageMakerDomainCodeEditorAppSettings = {
168625
168682
  AppLifecycleManagement?: SageMakerDomainAppLifecycleManagement;
168683
+ /**
168684
+ * The lifecycle configuration that runs before the default lifecycle configuration.
168685
+ * @maxLength `256`
168686
+ * @pattern `^(arn:aws[a-z\-]*:sagemaker:[a-z0-9\-]*:[0-9]{12}:studio-lifecycle-config/.*|None)$`
168687
+ */
168688
+ BuiltInLifecycleConfigArn?: string;
168626
168689
  /**
168627
168690
  * A list of custom images for use for CodeEditor apps.
168628
168691
  * @minLength `0`
@@ -168853,6 +168916,20 @@ export type SageMakerDomainFSxLustreFileSystemConfig = {
168853
168916
  */
168854
168917
  FileSystemPath?: string;
168855
168918
  };
168919
+ /**
168920
+ * Type definition for `AWS::SageMaker::Domain.HiddenSageMakerImage`.
168921
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-hiddensagemakerimage.html}
168922
+ */
168923
+ export type SageMakerDomainHiddenSageMakerImage = {
168924
+ /**
168925
+ * The SageMaker image name that you are hiding from the Studio user interface.
168926
+ */
168927
+ SageMakerImageName?: "sagemaker_distribution";
168928
+ /**
168929
+ * @maxLength `20`
168930
+ */
168931
+ VersionAliases?: string[];
168932
+ };
168856
168933
  /**
168857
168934
  * Type definition for `AWS::SageMaker::Domain.IdleSettings`.
168858
168935
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-idlesettings.html}
@@ -168888,6 +168965,12 @@ export type SageMakerDomainIdleSettings = {
168888
168965
  */
168889
168966
  export type SageMakerDomainJupyterLabAppSettings = {
168890
168967
  AppLifecycleManagement?: SageMakerDomainAppLifecycleManagement;
168968
+ /**
168969
+ * The lifecycle configuration that runs before the default lifecycle configuration.
168970
+ * @maxLength `256`
168971
+ * @pattern `^(arn:aws[a-z\-]*:sagemaker:[a-z0-9\-]*:[0-9]{12}:studio-lifecycle-config/.*|None)$`
168972
+ */
168973
+ BuiltInLifecycleConfigArn?: string;
168891
168974
  /**
168892
168975
  * A list of CodeRepositories available for use with JupyterLab apps.
168893
168976
  * @minLength `0`
@@ -168971,7 +169054,7 @@ export type SageMakerDomainResourceSpec = {
168971
169054
  /**
168972
169055
  * The Amazon Resource Name (ARN) of the Lifecycle Configuration to attach to the Resource.
168973
169056
  * @maxLength `256`
168974
- * @pattern `arn:aws[a-z\-]*:sagemaker:[a-z0-9\-]*:[0-9]{12}:studio-lifecycle-config/.*`
169057
+ * @pattern `^(arn:aws[a-z\-]*:sagemaker:[a-z0-9\-]*:[0-9]{12}:studio-lifecycle-config/.*|None)$`
168975
169058
  */
168976
169059
  LifecycleConfigArn?: string;
168977
169060
  /**
@@ -169075,11 +169158,22 @@ export type SageMakerDomainStudioWebPortalSettings = {
169075
169158
  * @minLength `0`
169076
169159
  */
169077
169160
  HiddenAppTypes?: SageMakerDomainAppType[];
169161
+ /**
169162
+ * The instance types you are hiding from the Studio user interface.
169163
+ * @minLength `0`
169164
+ */
169165
+ HiddenInstanceTypes?: SageMakerDomainAppInstanceType[];
169078
169166
  /**
169079
169167
  * The machine learning tools that are hidden from the Studio left navigation pane.
169080
169168
  * @minLength `0`
169081
169169
  */
169082
169170
  HiddenMlTools?: SageMakerDomainMlTools[];
169171
+ /**
169172
+ * The version aliases you are hiding from the Studio user interface.
169173
+ * @minLength `0`
169174
+ * @maxLength `5`
169175
+ */
169176
+ HiddenSageMakerImageVersionAliases?: SageMakerDomainHiddenSageMakerImage[];
169083
169177
  };
169084
169178
  /**
169085
169179
  * Type definition for `AWS::SageMaker::Domain.Tag`.
@@ -169103,6 +169197,10 @@ export type SageMakerDomainTag = {
169103
169197
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-usersettings.html}
169104
169198
  */
169105
169199
  export type SageMakerDomainUserSettings = {
169200
+ /**
169201
+ * Indicates whether auto-mounting of an EFS volume is supported for the user profile.
169202
+ */
169203
+ AutoMountHomeEFS?: "Enabled" | "Disabled" | "DefaultAsDomain";
169106
169204
  /**
169107
169205
  * The CodeEditor app settings.
169108
169206
  */
@@ -175255,6 +175353,12 @@ export type SageMakerUserProfileAttributes = {
175255
175353
  */
175256
175354
  UserProfileArn: string;
175257
175355
  };
175356
+ /**
175357
+ * Type definition for `AWS::SageMaker::UserProfile.AppInstanceType`.
175358
+ * The instance type that the image version runs on.
175359
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-appinstancetype.html}
175360
+ */
175361
+ 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";
175258
175362
  /**
175259
175363
  * Type definition for `AWS::SageMaker::UserProfile.AppLifecycleManagement`.
175260
175364
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-applifecyclemanagement.html}
@@ -175274,6 +175378,12 @@ export type SageMakerUserProfileAppType = "JupyterServer" | "TensorBoard" | "RSt
175274
175378
  */
175275
175379
  export type SageMakerUserProfileCodeEditorAppSettings = {
175276
175380
  AppLifecycleManagement?: SageMakerUserProfileAppLifecycleManagement;
175381
+ /**
175382
+ * The lifecycle configuration that runs before the default lifecycle configuration.
175383
+ * @maxLength `256`
175384
+ * @pattern `^(arn:aws[a-z\-]*:sagemaker:[a-z0-9\-]*:[0-9]{12}:studio-lifecycle-config/.*|None)$`
175385
+ */
175386
+ BuiltInLifecycleConfigArn?: string;
175277
175387
  /**
175278
175388
  * A list of custom images for use for CodeEditor apps.
175279
175389
  * @minLength `0`
@@ -175417,6 +175527,20 @@ export type SageMakerUserProfileFSxLustreFileSystemConfig = {
175417
175527
  */
175418
175528
  FileSystemPath?: string;
175419
175529
  };
175530
+ /**
175531
+ * Type definition for `AWS::SageMaker::UserProfile.HiddenSageMakerImage`.
175532
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-hiddensagemakerimage.html}
175533
+ */
175534
+ export type SageMakerUserProfileHiddenSageMakerImage = {
175535
+ /**
175536
+ * The SageMaker image name that you are hiding from the Studio user interface.
175537
+ */
175538
+ SageMakerImageName?: "sagemaker_distribution";
175539
+ /**
175540
+ * @maxLength `20`
175541
+ */
175542
+ VersionAliases?: string[];
175543
+ };
175420
175544
  /**
175421
175545
  * Type definition for `AWS::SageMaker::UserProfile.IdleSettings`.
175422
175546
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-idlesettings.html}
@@ -175452,6 +175576,12 @@ export type SageMakerUserProfileIdleSettings = {
175452
175576
  */
175453
175577
  export type SageMakerUserProfileJupyterLabAppSettings = {
175454
175578
  AppLifecycleManagement?: SageMakerUserProfileAppLifecycleManagement;
175579
+ /**
175580
+ * The lifecycle configuration that runs before the default lifecycle configuration.
175581
+ * @maxLength `256`
175582
+ * @pattern `^(arn:aws[a-z\-]*:sagemaker:[a-z0-9\-]*:[0-9]{12}:studio-lifecycle-config/.*|None)$`
175583
+ */
175584
+ BuiltInLifecycleConfigArn?: string;
175455
175585
  /**
175456
175586
  * A list of CodeRepositories available for use with JupyterLab apps.
175457
175587
  * @minLength `0`
@@ -175535,7 +175665,7 @@ export type SageMakerUserProfileResourceSpec = {
175535
175665
  /**
175536
175666
  * The Amazon Resource Name (ARN) of the Lifecycle Configuration to attach to the Resource.
175537
175667
  * @maxLength `256`
175538
- * @pattern `arn:aws[a-z\-]*:sagemaker:[a-z0-9\-]*:[0-9]{12}:studio-lifecycle-config/.*`
175668
+ * @pattern `^(arn:aws[a-z\-]*:sagemaker:[a-z0-9\-]*:[0-9]{12}:studio-lifecycle-config/.*|None)$`
175539
175669
  */
175540
175670
  LifecycleConfigArn?: string;
175541
175671
  /**
@@ -175600,11 +175730,22 @@ export type SageMakerUserProfileStudioWebPortalSettings = {
175600
175730
  * @minLength `0`
175601
175731
  */
175602
175732
  HiddenAppTypes?: SageMakerUserProfileAppType[];
175733
+ /**
175734
+ * The instance types you are hiding from the Studio user interface.
175735
+ * @minLength `0`
175736
+ */
175737
+ HiddenInstanceTypes?: SageMakerUserProfileAppInstanceType[];
175603
175738
  /**
175604
175739
  * The machine learning tools that are hidden from the Studio left navigation pane.
175605
175740
  * @minLength `0`
175606
175741
  */
175607
175742
  HiddenMlTools?: SageMakerUserProfileMlTools[];
175743
+ /**
175744
+ * The version aliases you are hiding from the Studio user interface.
175745
+ * @minLength `0`
175746
+ * @maxLength `5`
175747
+ */
175748
+ HiddenSageMakerImageVersionAliases?: SageMakerUserProfileHiddenSageMakerImage[];
175608
175749
  };
175609
175750
  /**
175610
175751
  * Type definition for `AWS::SageMaker::UserProfile.Tag`.
@@ -175628,6 +175769,10 @@ export type SageMakerUserProfileTag = {
175628
175769
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-usersettings.html}
175629
175770
  */
175630
175771
  export type SageMakerUserProfileUserSettings = {
175772
+ /**
175773
+ * Indicates whether auto-mounting of an EFS volume is supported for the user profile.
175774
+ */
175775
+ AutoMountHomeEFS?: "Enabled" | "Disabled" | "DefaultAsDomain";
175631
175776
  /**
175632
175777
  * The CodeEditor app settings.
175633
175778
  */
@@ -177016,15 +177161,15 @@ export type SecurityHubAutomationRuleMapFilter = {
177016
177161
  + 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.
177017
177162
  + 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.
177018
177163
 
177019
- ``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.
177164
+ ``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.
177020
177165
  To search for values that don't have the filter value, use one of the following comparison operators:
177021
177166
  + 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.
177022
177167
  + 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.
177023
177168
 
177024
- ``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.
177025
- ``CONTAINS`` filters can only be used with other ``CONTAINS`` filters. ``NOT_CONTAINS`` filters can only be used with other ``NOT_CONTAINS`` filters.
177169
+ ``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.
177170
+ ``CONTAINS`` filters can only be used with other ``CONTAINS`` filters. ``NOT_CONTAINS`` filters can only be used with other ``NOT_CONTAINS`` filters.
177026
177171
  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.
177027
- ``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*.
177172
+ ``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*.
177028
177173
  */
177029
177174
  Comparison: "EQUALS" | "NOT_EQUALS" | "CONTAINS" | "NOT_CONTAINS";
177030
177175
  /**
@@ -177099,11 +177244,11 @@ export type SecurityHubAutomationRuleRelatedFinding = {
177099
177244
  export type SecurityHubAutomationRuleSeverityUpdate = {
177100
177245
  /**
177101
177246
  * The severity value of the finding. The allowed values are the following.
177102
- + ``INFORMATIONAL`` - No issue was found.
177103
- + ``LOW`` - The issue does not require action on its own.
177104
- + ``MEDIUM`` - The issue must be addressed but not urgently.
177105
- + ``HIGH`` - The issue must be addressed as a priority.
177106
- + ``CRITICAL`` - The issue must be remediated immediately to avoid it escalating.
177247
+ + ``INFORMATIONAL`` - No issue was found.
177248
+ + ``LOW`` - The issue does not require action on its own.
177249
+ + ``MEDIUM`` - The issue must be addressed but not urgently.
177250
+ + ``HIGH`` - The issue must be addressed as a priority.
177251
+ + ``CRITICAL`` - The issue must be remediated immediately to avoid it escalating.
177107
177252
  */
177108
177253
  Label?: "INFORMATIONAL" | "LOW" | "MEDIUM" | "HIGH" | "CRITICAL";
177109
177254
  /**
@@ -177136,13 +177281,13 @@ export type SecurityHubAutomationRuleStringFilter = {
177136
177281
  + 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``.
177137
177282
  + 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.
177138
177283
 
177139
- ``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.
177284
+ ``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.
177140
177285
  To search for values that don’t have the filter value, use one of the following comparison operators:
177141
177286
  + 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.
177142
177287
  + 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``.
177143
177288
  + 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``.
177144
177289
 
177145
- ``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.
177290
+ ``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.
177146
177291
  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.
177147
177292
  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.
177148
177293
  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``.
@@ -177151,7 +177296,7 @@ export type SecurityHubAutomationRuleStringFilter = {
177151
177296
  + ``ResourceType NOT_EQUALS AwsIamPolicy``
177152
177297
  + ``ResourceType NOT_EQUALS AwsEc2NetworkInterface``
177153
177298
 
177154
- ``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*.
177299
+ ``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*.
177155
177300
  */
177156
177301
  Comparison: SecurityHubAutomationRuleStringFilterComparison;
177157
177302
  /**
@@ -177180,14 +177325,14 @@ export type SecurityHubAutomationRuleWorkflowUpdate = {
177180
177325
  /**
177181
177326
  * 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.
177182
177327
  The allowed values are the following.
177183
- + ``NEW`` - The initial state of a finding, before it is reviewed.
177328
+ + ``NEW`` - The initial state of a finding, before it is reviewed.
177184
177329
  Security Hub also resets ``WorkFlowStatus`` from ``NOTIFIED`` or ``RESOLVED`` to ``NEW`` in the following cases:
177185
177330
  + The record state changes from ``ARCHIVED`` to ``ACTIVE``.
177186
177331
  + The compliance status changes from ``PASSED`` to either ``WARNING``, ``FAILED``, or ``NOT_AVAILABLE``.
177187
177332
 
177188
- + ``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.
177189
- + ``RESOLVED`` - The finding was reviewed and remediated and is now considered resolved.
177190
- + ``SUPPRESSED`` - Indicates that you reviewed the finding and don't believe that any action is needed. The finding is no longer updated.
177333
+ + ``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.
177334
+ + ``RESOLVED`` - The finding was reviewed and remediated and is now considered resolved.
177335
+ + ``SUPPRESSED`` - Indicates that you reviewed the finding and don't believe that any action is needed. The finding is no longer updated.
177191
177336
  */
177192
177337
  Status: "NEW" | "NOTIFIED" | "RESOLVED" | "SUPPRESSED";
177193
177338
  };
@@ -177415,9 +177560,9 @@ export type SecurityHubFindingAggregatorProps = {
177415
177560
  * 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.
177416
177561
  The selected option also determines how to use the Regions provided in the Regions list.
177417
177562
  In CFN, the options for this property are as follows:
177418
- + ``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.
177419
- + ``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.
177420
- + ``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.
177563
+ + ``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.
177564
+ + ``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.
177565
+ + ``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.
177421
177566
  */
177422
177567
  RegionLinkingMode: "ALL_REGIONS" | "ALL_REGIONS_EXCEPT_SPECIFIED" | "SPECIFIED_REGIONS";
177423
177568
  /**
@@ -182973,6 +183118,7 @@ export type SSMContactsContactProps = {
182973
183118
  * The stages that an escalation plan or engagement plan engages contacts and contact methods in.
182974
183119
  */
182975
183120
  Plan?: SSMContactsContactStage[];
183121
+ Tags?: SSMContactsContactTag[];
182976
183122
  /**
182977
183123
  * Contact type, which specify type of contact. Currently supported values: “PERSONAL”, “SHARED”, “OTHER“.
182978
183124
  */
@@ -183037,6 +183183,25 @@ export type SSMContactsContactStage = {
183037
183183
  */
183038
183184
  Targets?: SSMContactsContactTargets[];
183039
183185
  };
183186
+ /**
183187
+ * Type definition for `AWS::SSMContacts::Contact.Tag`.
183188
+ * A key-value pair to associate with a resource.
183189
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssmcontacts-contact-tag.html}
183190
+ */
183191
+ export type SSMContactsContactTag = {
183192
+ /**
183193
+ * The key name of the tag
183194
+ * @minLength `1`
183195
+ * @maxLength `128`
183196
+ */
183197
+ Key: string;
183198
+ /**
183199
+ * The value for the tag.
183200
+ * @minLength `0`
183201
+ * @maxLength `256`
183202
+ */
183203
+ Value: string;
183204
+ };
183040
183205
  /**
183041
183206
  * Type definition for `AWS::SSMContacts::Contact.Targets`.
183042
183207
  * The contacts or contact methods that the escalation plan or engagement plan is engaging.
@@ -195528,7 +195693,6 @@ export interface ResourceTypes {
195528
195693
  "AWS::DataSync::LocationObjectStorage": DataSyncLocationObjectStorageProps;
195529
195694
  "AWS::DataSync::LocationS3": DataSyncLocationS3Props;
195530
195695
  "AWS::DataSync::LocationSMB": DataSyncLocationSMBProps;
195531
- "AWS::DataSync::StorageSystem": DataSyncStorageSystemProps;
195532
195696
  "AWS::DataSync::Task": DataSyncTaskProps;
195533
195697
  "AWS::DataZone::Connection": DataZoneConnectionProps;
195534
195698
  "AWS::DataZone::DataSource": DataZoneDataSourceProps;
@@ -196163,6 +196327,7 @@ export interface ResourceTypes {
196163
196327
  "AWS::Omics::SequenceStore": OmicsSequenceStoreProps;
196164
196328
  "AWS::Omics::VariantStore": OmicsVariantStoreProps;
196165
196329
  "AWS::Omics::Workflow": OmicsWorkflowProps;
196330
+ "AWS::Omics::WorkflowVersion": OmicsWorkflowVersionProps;
196166
196331
  "AWS::OpenSearchServerless::AccessPolicy": OpenSearchServerlessAccessPolicyProps;
196167
196332
  "AWS::OpenSearchServerless::Collection": OpenSearchServerlessCollectionProps;
196168
196333
  "AWS::OpenSearchServerless::Index": OpenSearchServerlessIndexProps;
@@ -196882,7 +197047,6 @@ export interface AttributeTypes {
196882
197047
  "AWS::DataSync::LocationObjectStorage": DataSyncLocationObjectStorageAttributes;
196883
197048
  "AWS::DataSync::LocationS3": DataSyncLocationS3Attributes;
196884
197049
  "AWS::DataSync::LocationSMB": DataSyncLocationSMBAttributes;
196885
- "AWS::DataSync::StorageSystem": DataSyncStorageSystemAttributes;
196886
197050
  "AWS::DataSync::Task": DataSyncTaskAttributes;
196887
197051
  "AWS::DataZone::Connection": DataZoneConnectionAttributes;
196888
197052
  "AWS::DataZone::DataSource": DataZoneDataSourceAttributes;
@@ -197446,6 +197610,7 @@ export interface AttributeTypes {
197446
197610
  "AWS::Omics::SequenceStore": OmicsSequenceStoreAttributes;
197447
197611
  "AWS::Omics::VariantStore": OmicsVariantStoreAttributes;
197448
197612
  "AWS::Omics::Workflow": OmicsWorkflowAttributes;
197613
+ "AWS::Omics::WorkflowVersion": OmicsWorkflowVersionAttributes;
197449
197614
  "AWS::OpenSearchServerless::Collection": OpenSearchServerlessCollectionAttributes;
197450
197615
  "AWS::OpenSearchServerless::Index": OpenSearchServerlessIndexAttributes;
197451
197616
  "AWS::OpenSearchServerless::SecurityConfig": OpenSearchServerlessSecurityConfigAttributes;
@@ -198165,7 +198330,6 @@ export declare const ResourceType: {
198165
198330
  readonly DataSyncLocationObjectStorage: "AWS::DataSync::LocationObjectStorage";
198166
198331
  readonly DataSyncLocationS3: "AWS::DataSync::LocationS3";
198167
198332
  readonly DataSyncLocationSMB: "AWS::DataSync::LocationSMB";
198168
- readonly DataSyncStorageSystem: "AWS::DataSync::StorageSystem";
198169
198333
  readonly DataSyncTask: "AWS::DataSync::Task";
198170
198334
  readonly DataZoneConnection: "AWS::DataZone::Connection";
198171
198335
  readonly DataZoneDataSource: "AWS::DataZone::DataSource";
@@ -198800,6 +198964,7 @@ export declare const ResourceType: {
198800
198964
  readonly OmicsSequenceStore: "AWS::Omics::SequenceStore";
198801
198965
  readonly OmicsVariantStore: "AWS::Omics::VariantStore";
198802
198966
  readonly OmicsWorkflow: "AWS::Omics::Workflow";
198967
+ readonly OmicsWorkflowVersion: "AWS::Omics::WorkflowVersion";
198803
198968
  readonly OpenSearchServerlessAccessPolicy: "AWS::OpenSearchServerless::AccessPolicy";
198804
198969
  readonly OpenSearchServerlessCollection: "AWS::OpenSearchServerless::Collection";
198805
198970
  readonly OpenSearchServerlessIndex: "AWS::OpenSearchServerless::Index";