@awboost/cfn-resource-types 0.1.332 → 0.1.334

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.
@@ -257,6 +257,7 @@ export type Ebs = {
257
257
  Valid Range: Minimum value of 125. Maximum value of 1000.
258
258
  */
259
259
  Throughput?: number;
260
+ VolumeInitializationRate?: number;
260
261
  /**
261
262
  * 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:
262
263
  + ``gp2`` and ``gp3``: 1 - 16,384 GiB
@@ -7,6 +7,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
7
7
  export type EC2NetworkInsightsAnalysisProperties = {
8
8
  AdditionalAccounts?: string[];
9
9
  FilterInArns?: string[];
10
+ FilterOutArns?: string[];
10
11
  NetworkInsightsPathId: string;
11
12
  Tags?: Tag[];
12
13
  };
@@ -33,7 +33,7 @@ export type OSISPipelineProperties = {
33
33
  /**
34
34
  * The Data Prepper pipeline configuration.
35
35
  * @minLength `1`
36
- * @maxLength `24000`
36
+ * @maxLength `100000`
37
37
  */
38
38
  PipelineConfigurationBody: string;
39
39
  /**
@@ -45,6 +45,11 @@ export type OmicsWorkflowProperties = {
45
45
  * @max `100000`
46
46
  */
47
47
  StorageCapacity?: number;
48
+ /**
49
+ * @minLength `1`
50
+ * @maxLength `64`
51
+ */
52
+ StorageType?: StorageType;
48
53
  /**
49
54
  * A map of resource tags
50
55
  */
@@ -78,12 +83,21 @@ export type OmicsWorkflowAttributes = {
78
83
  * @maxLength `64`
79
84
  */
80
85
  Type: WorkflowType;
86
+ /**
87
+ * @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}$`
88
+ */
89
+ Uuid: string;
81
90
  };
82
91
  /**
83
92
  * Type definition for `AWS::Omics::Workflow.Accelerators`.
84
93
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-accelerators.html}
85
94
  */
86
95
  export type Accelerators = "GPU";
96
+ /**
97
+ * Type definition for `AWS::Omics::Workflow.StorageType`.
98
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-storagetype.html}
99
+ */
100
+ export type StorageType = "STATIC" | "DYNAMIC";
87
101
  /**
88
102
  * Type definition for `AWS::Omics::Workflow.TagMap`.
89
103
  * A map of resource tags
@@ -0,0 +1,156 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
+ /**
4
+ * Definition of AWS::Omics::WorkflowVersion Resource Type.
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html}
6
+ */
7
+ export type OmicsWorkflowVersionProperties = {
8
+ /**
9
+ * @minLength `1`
10
+ * @maxLength `64`
11
+ */
12
+ Accelerators?: Accelerators;
13
+ /**
14
+ * @minLength `1`
15
+ * @maxLength `256`
16
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
17
+ */
18
+ DefinitionUri?: string;
19
+ /**
20
+ * @minLength `1`
21
+ * @maxLength `256`
22
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
23
+ */
24
+ Description?: string;
25
+ /**
26
+ * @minLength `1`
27
+ * @maxLength `64`
28
+ */
29
+ Engine?: WorkflowEngine;
30
+ /**
31
+ * @minLength `1`
32
+ * @maxLength `128`
33
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
34
+ */
35
+ Main?: string;
36
+ ParameterTemplate?: WorkflowParameterTemplate;
37
+ /**
38
+ * @min `0`
39
+ * @max `100000`
40
+ */
41
+ StorageCapacity?: number;
42
+ /**
43
+ * @minLength `1`
44
+ * @maxLength `64`
45
+ */
46
+ StorageType?: StorageType;
47
+ /**
48
+ * A map of resource tags
49
+ */
50
+ Tags?: TagMap;
51
+ /**
52
+ * @minLength `1`
53
+ * @maxLength `64`
54
+ * @pattern `^[A-Za-z0-9][A-Za-z0-9\-\._]*$`
55
+ */
56
+ VersionName: string;
57
+ /**
58
+ * @minLength `1`
59
+ * @maxLength `12`
60
+ * @pattern `^[0-9]{12}$`
61
+ */
62
+ WorkflowBucketOwnerId?: string;
63
+ /**
64
+ * @minLength `1`
65
+ * @maxLength `18`
66
+ * @pattern `^[0-9]+$`
67
+ */
68
+ WorkflowId: string;
69
+ };
70
+ /**
71
+ * Attribute type definition for `AWS::Omics::WorkflowVersion`.
72
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html#aws-resource-omics-workflowversion-return-values}
73
+ */
74
+ export type OmicsWorkflowVersionAttributes = {
75
+ /**
76
+ * @minLength `1`
77
+ * @maxLength `128`
78
+ * @pattern `^arn:.+$`
79
+ */
80
+ Arn: string;
81
+ CreationTime: string;
82
+ /**
83
+ * @minLength `1`
84
+ * @maxLength `64`
85
+ */
86
+ Status: WorkflowStatus;
87
+ /**
88
+ * @minLength `1`
89
+ * @maxLength `64`
90
+ */
91
+ Type: WorkflowType;
92
+ /**
93
+ * @minLength `1`
94
+ * @maxLength `36`
95
+ * @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}$`
96
+ */
97
+ Uuid: string;
98
+ };
99
+ /**
100
+ * Type definition for `AWS::Omics::WorkflowVersion.Accelerators`.
101
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-accelerators.html}
102
+ */
103
+ export type Accelerators = "GPU";
104
+ /**
105
+ * Type definition for `AWS::Omics::WorkflowVersion.StorageType`.
106
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-storagetype.html}
107
+ */
108
+ export type StorageType = "STATIC" | "DYNAMIC";
109
+ /**
110
+ * Type definition for `AWS::Omics::WorkflowVersion.TagMap`.
111
+ * A map of resource tags
112
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-tagmap.html}
113
+ */
114
+ export type TagMap = Record<string, string>;
115
+ /**
116
+ * Type definition for `AWS::Omics::WorkflowVersion.WorkflowEngine`.
117
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-workflowengine.html}
118
+ */
119
+ export type WorkflowEngine = "WDL" | "NEXTFLOW" | "CWL";
120
+ /**
121
+ * Type definition for `AWS::Omics::WorkflowVersion.WorkflowParameter`.
122
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-workflowparameter.html}
123
+ */
124
+ export type WorkflowParameter = {
125
+ /**
126
+ * @minLength `0`
127
+ * @maxLength `256`
128
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
129
+ */
130
+ Description?: string;
131
+ Optional?: boolean;
132
+ };
133
+ /**
134
+ * Type definition for `AWS::Omics::WorkflowVersion.WorkflowParameterTemplate`.
135
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-workflowparametertemplate.html}
136
+ */
137
+ export type WorkflowParameterTemplate = Record<string, WorkflowParameter>;
138
+ /**
139
+ * Type definition for `AWS::Omics::WorkflowVersion.WorkflowStatus`.
140
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-workflowstatus.html}
141
+ */
142
+ export type WorkflowStatus = "CREATING" | "ACTIVE" | "UPDATING" | "DELETED" | "FAILED" | "INACTIVE";
143
+ /**
144
+ * Type definition for `AWS::Omics::WorkflowVersion.WorkflowType`.
145
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-workflowtype.html}
146
+ */
147
+ export type WorkflowType = "PRIVATE" | "READY2RUN";
148
+ /**
149
+ * Definition of AWS::Omics::WorkflowVersion Resource Type.
150
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html}
151
+ */
152
+ export declare class OmicsWorkflowVersion extends $Resource<"AWS::Omics::WorkflowVersion", OmicsWorkflowVersionProperties, OmicsWorkflowVersionAttributes> {
153
+ static readonly Type = "AWS::Omics::WorkflowVersion";
154
+ constructor(logicalId: string, properties: OmicsWorkflowVersionProperties, options?: $ResourceOptions);
155
+ }
156
+ //# sourceMappingURL=AWS-Omics-WorkflowVersion.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Definition of AWS::Omics::WorkflowVersion Resource Type.
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html}
5
+ */
6
+ export class OmicsWorkflowVersion extends $Resource {
7
+ static Type = "AWS::Omics::WorkflowVersion";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, OmicsWorkflowVersion.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-Omics-WorkflowVersion.js.map
@@ -34,7 +34,8 @@ export type RDSDBClusterProperties = {
34
34
  AssociatedRoles?: DBClusterRole[];
35
35
  /**
36
36
  * Specifies whether minor engine upgrades are applied automatically to the DB cluster during the maintenance window. By default, minor engine upgrades are applied automatically.
37
- Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB cluster
37
+ Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB cluster.
38
+ 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).
38
39
  */
39
40
  AutoMinorVersionUpgrade?: boolean;
40
41
  /**
@@ -23,6 +23,7 @@ export type SSMContactsContactProperties = {
23
23
  * The stages that an escalation plan or engagement plan engages contacts and contact methods in.
24
24
  */
25
25
  Plan?: Stage[];
26
+ Tags?: Tag[];
26
27
  /**
27
28
  * Contact type, which specify type of contact. Currently supported values: “PERSONAL”, “SHARED”, “OTHER“.
28
29
  */
@@ -87,6 +88,25 @@ export type Stage = {
87
88
  */
88
89
  Targets?: Targets[];
89
90
  };
91
+ /**
92
+ * Type definition for `AWS::SSMContacts::Contact.Tag`.
93
+ * A key-value pair to associate with a resource.
94
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssmcontacts-contact-tag.html}
95
+ */
96
+ export type Tag = {
97
+ /**
98
+ * The key name of the tag
99
+ * @minLength `1`
100
+ * @maxLength `128`
101
+ */
102
+ Key: string;
103
+ /**
104
+ * The value for the tag.
105
+ * @minLength `0`
106
+ * @maxLength `256`
107
+ */
108
+ Value: string;
109
+ };
90
110
  /**
91
111
  * Type definition for `AWS::SSMContacts::Contact.Targets`.
92
112
  * The contacts or contact methods that the escalation plan or engagement plan is engaging.
@@ -22,6 +22,10 @@ export type SageMakerAppProperties = {
22
22
  * @maxLength `63`
23
23
  */
24
24
  DomainId: string;
25
+ /**
26
+ * Indicates whether the application is launched in recovery mode.
27
+ */
28
+ RecoveryMode?: boolean;
25
29
  /**
26
30
  * The instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance.
27
31
  */
@@ -52,6 +56,12 @@ export type SageMakerAppAttributes = {
52
56
  * @pattern `arn:aws[a-z\-]*:sagemaker:[a-z0-9\-]*:[0-9]{12}:app/.*`
53
57
  */
54
58
  AppArn: string;
59
+ /**
60
+ * The lifecycle configuration that runs before the default lifecycle configuration.
61
+ * @maxLength `256`
62
+ * @pattern `^(arn:aws[a-z\-]*:sagemaker:[a-z0-9\-]*:[0-9]{12}:studio-lifecycle-config/.*|None)$`
63
+ */
64
+ BuiltInLifecycleConfigArn: string;
55
65
  };
56
66
  /**
57
67
  * Type definition for `AWS::SageMaker::App.ResourceSpec`.
@@ -65,7 +75,7 @@ export type ResourceSpec = {
65
75
  /**
66
76
  * The Amazon Resource Name (ARN) of the Lifecycle Configuration to attach to the Resource.
67
77
  * @maxLength `256`
68
- * @pattern `arn:aws[a-z\-]*:sagemaker:[a-z0-9\-]*:[0-9]{12}:studio-lifecycle-config/.*`
78
+ * @pattern `^(arn:aws[a-z\-]*:sagemaker:[a-z0-9\-]*:[0-9]{12}:studio-lifecycle-config/.*|None)$`
69
79
  */
70
80
  LifecycleConfigArn?: string;
71
81
  /**
@@ -108,6 +108,12 @@ export type SageMakerDomainAttributes = {
108
108
  */
109
109
  Url: string;
110
110
  };
111
+ /**
112
+ * Type definition for `AWS::SageMaker::Domain.AppInstanceType`.
113
+ * The instance type that the image version runs on.
114
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-appinstancetype.html}
115
+ */
116
+ export type AppInstanceType = "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";
111
117
  /**
112
118
  * Type definition for `AWS::SageMaker::Domain.AppLifecycleManagement`.
113
119
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-applifecyclemanagement.html}
@@ -127,6 +133,12 @@ export type AppType = "JupyterServer" | "TensorBoard" | "RStudioServerPro" | "Ju
127
133
  */
128
134
  export type CodeEditorAppSettings = {
129
135
  AppLifecycleManagement?: AppLifecycleManagement;
136
+ /**
137
+ * The lifecycle configuration that runs before the default lifecycle configuration.
138
+ * @maxLength `256`
139
+ * @pattern `^(arn:aws[a-z\-]*:sagemaker:[a-z0-9\-]*:[0-9]{12}:studio-lifecycle-config/.*|None)$`
140
+ */
141
+ BuiltInLifecycleConfigArn?: string;
130
142
  /**
131
143
  * A list of custom images for use for CodeEditor apps.
132
144
  * @minLength `0`
@@ -357,6 +369,20 @@ export type FSxLustreFileSystemConfig = {
357
369
  */
358
370
  FileSystemPath?: string;
359
371
  };
372
+ /**
373
+ * Type definition for `AWS::SageMaker::Domain.HiddenSageMakerImage`.
374
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-hiddensagemakerimage.html}
375
+ */
376
+ export type HiddenSageMakerImage = {
377
+ /**
378
+ * The SageMaker image name that you are hiding from the Studio user interface.
379
+ */
380
+ SageMakerImageName?: "sagemaker_distribution";
381
+ /**
382
+ * @maxLength `20`
383
+ */
384
+ VersionAliases?: string[];
385
+ };
360
386
  /**
361
387
  * Type definition for `AWS::SageMaker::Domain.IdleSettings`.
362
388
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-idlesettings.html}
@@ -392,6 +418,12 @@ export type IdleSettings = {
392
418
  */
393
419
  export type JupyterLabAppSettings = {
394
420
  AppLifecycleManagement?: AppLifecycleManagement;
421
+ /**
422
+ * The lifecycle configuration that runs before the default lifecycle configuration.
423
+ * @maxLength `256`
424
+ * @pattern `^(arn:aws[a-z\-]*:sagemaker:[a-z0-9\-]*:[0-9]{12}:studio-lifecycle-config/.*|None)$`
425
+ */
426
+ BuiltInLifecycleConfigArn?: string;
395
427
  /**
396
428
  * A list of CodeRepositories available for use with JupyterLab apps.
397
429
  * @minLength `0`
@@ -475,7 +507,7 @@ export type ResourceSpec = {
475
507
  /**
476
508
  * The Amazon Resource Name (ARN) of the Lifecycle Configuration to attach to the Resource.
477
509
  * @maxLength `256`
478
- * @pattern `arn:aws[a-z\-]*:sagemaker:[a-z0-9\-]*:[0-9]{12}:studio-lifecycle-config/.*`
510
+ * @pattern `^(arn:aws[a-z\-]*:sagemaker:[a-z0-9\-]*:[0-9]{12}:studio-lifecycle-config/.*|None)$`
479
511
  */
480
512
  LifecycleConfigArn?: string;
481
513
  /**
@@ -579,11 +611,22 @@ export type StudioWebPortalSettings = {
579
611
  * @minLength `0`
580
612
  */
581
613
  HiddenAppTypes?: AppType[];
614
+ /**
615
+ * The instance types you are hiding from the Studio user interface.
616
+ * @minLength `0`
617
+ */
618
+ HiddenInstanceTypes?: AppInstanceType[];
582
619
  /**
583
620
  * The machine learning tools that are hidden from the Studio left navigation pane.
584
621
  * @minLength `0`
585
622
  */
586
623
  HiddenMlTools?: MlTools[];
624
+ /**
625
+ * The version aliases you are hiding from the Studio user interface.
626
+ * @minLength `0`
627
+ * @maxLength `5`
628
+ */
629
+ HiddenSageMakerImageVersionAliases?: HiddenSageMakerImage[];
587
630
  };
588
631
  /**
589
632
  * Type definition for `AWS::SageMaker::Domain.Tag`.
@@ -607,6 +650,10 @@ export type Tag = {
607
650
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-usersettings.html}
608
651
  */
609
652
  export type UserSettings = {
653
+ /**
654
+ * Indicates whether auto-mounting of an EFS volume is supported for the user profile.
655
+ */
656
+ AutoMountHomeEFS?: "Enabled" | "Disabled" | "DefaultAsDomain";
610
657
  /**
611
658
  * The CodeEditor app settings.
612
659
  */
@@ -51,6 +51,12 @@ export type SageMakerUserProfileAttributes = {
51
51
  */
52
52
  UserProfileArn: string;
53
53
  };
54
+ /**
55
+ * Type definition for `AWS::SageMaker::UserProfile.AppInstanceType`.
56
+ * The instance type that the image version runs on.
57
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-appinstancetype.html}
58
+ */
59
+ export type AppInstanceType = "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";
54
60
  /**
55
61
  * Type definition for `AWS::SageMaker::UserProfile.AppLifecycleManagement`.
56
62
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-applifecyclemanagement.html}
@@ -70,6 +76,12 @@ export type AppType = "JupyterServer" | "TensorBoard" | "RStudioServerPro" | "Ju
70
76
  */
71
77
  export type CodeEditorAppSettings = {
72
78
  AppLifecycleManagement?: AppLifecycleManagement;
79
+ /**
80
+ * The lifecycle configuration that runs before the default lifecycle configuration.
81
+ * @maxLength `256`
82
+ * @pattern `^(arn:aws[a-z\-]*:sagemaker:[a-z0-9\-]*:[0-9]{12}:studio-lifecycle-config/.*|None)$`
83
+ */
84
+ BuiltInLifecycleConfigArn?: string;
73
85
  /**
74
86
  * A list of custom images for use for CodeEditor apps.
75
87
  * @minLength `0`
@@ -213,6 +225,20 @@ export type FSxLustreFileSystemConfig = {
213
225
  */
214
226
  FileSystemPath?: string;
215
227
  };
228
+ /**
229
+ * Type definition for `AWS::SageMaker::UserProfile.HiddenSageMakerImage`.
230
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-hiddensagemakerimage.html}
231
+ */
232
+ export type HiddenSageMakerImage = {
233
+ /**
234
+ * The SageMaker image name that you are hiding from the Studio user interface.
235
+ */
236
+ SageMakerImageName?: "sagemaker_distribution";
237
+ /**
238
+ * @maxLength `20`
239
+ */
240
+ VersionAliases?: string[];
241
+ };
216
242
  /**
217
243
  * Type definition for `AWS::SageMaker::UserProfile.IdleSettings`.
218
244
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-idlesettings.html}
@@ -248,6 +274,12 @@ export type IdleSettings = {
248
274
  */
249
275
  export type JupyterLabAppSettings = {
250
276
  AppLifecycleManagement?: AppLifecycleManagement;
277
+ /**
278
+ * The lifecycle configuration that runs before the default lifecycle configuration.
279
+ * @maxLength `256`
280
+ * @pattern `^(arn:aws[a-z\-]*:sagemaker:[a-z0-9\-]*:[0-9]{12}:studio-lifecycle-config/.*|None)$`
281
+ */
282
+ BuiltInLifecycleConfigArn?: string;
251
283
  /**
252
284
  * A list of CodeRepositories available for use with JupyterLab apps.
253
285
  * @minLength `0`
@@ -331,7 +363,7 @@ export type ResourceSpec = {
331
363
  /**
332
364
  * The Amazon Resource Name (ARN) of the Lifecycle Configuration to attach to the Resource.
333
365
  * @maxLength `256`
334
- * @pattern `arn:aws[a-z\-]*:sagemaker:[a-z0-9\-]*:[0-9]{12}:studio-lifecycle-config/.*`
366
+ * @pattern `^(arn:aws[a-z\-]*:sagemaker:[a-z0-9\-]*:[0-9]{12}:studio-lifecycle-config/.*|None)$`
335
367
  */
336
368
  LifecycleConfigArn?: string;
337
369
  /**
@@ -396,11 +428,22 @@ export type StudioWebPortalSettings = {
396
428
  * @minLength `0`
397
429
  */
398
430
  HiddenAppTypes?: AppType[];
431
+ /**
432
+ * The instance types you are hiding from the Studio user interface.
433
+ * @minLength `0`
434
+ */
435
+ HiddenInstanceTypes?: AppInstanceType[];
399
436
  /**
400
437
  * The machine learning tools that are hidden from the Studio left navigation pane.
401
438
  * @minLength `0`
402
439
  */
403
440
  HiddenMlTools?: MlTools[];
441
+ /**
442
+ * The version aliases you are hiding from the Studio user interface.
443
+ * @minLength `0`
444
+ * @maxLength `5`
445
+ */
446
+ HiddenSageMakerImageVersionAliases?: HiddenSageMakerImage[];
404
447
  };
405
448
  /**
406
449
  * Type definition for `AWS::SageMaker::UserProfile.Tag`.
@@ -424,6 +467,10 @@ export type Tag = {
424
467
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-usersettings.html}
425
468
  */
426
469
  export type UserSettings = {
470
+ /**
471
+ * Indicates whether auto-mounting of an EFS volume is supported for the user profile.
472
+ */
473
+ AutoMountHomeEFS?: "Enabled" | "Disabled" | "DefaultAsDomain";
427
474
  /**
428
475
  * The CodeEditor app settings.
429
476
  */
@@ -420,15 +420,15 @@ export type MapFilter = {
420
420
  + 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.
421
421
  + 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.
422
422
 
423
- ``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.
423
+ ``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.
424
424
  To search for values that don't have the filter value, use one of the following comparison operators:
425
425
  + 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.
426
426
  + 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.
427
427
 
428
- ``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.
429
- ``CONTAINS`` filters can only be used with other ``CONTAINS`` filters. ``NOT_CONTAINS`` filters can only be used with other ``NOT_CONTAINS`` filters.
428
+ ``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.
429
+ ``CONTAINS`` filters can only be used with other ``CONTAINS`` filters. ``NOT_CONTAINS`` filters can only be used with other ``NOT_CONTAINS`` filters.
430
430
  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.
431
- ``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*.
431
+ ``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*.
432
432
  */
433
433
  Comparison: "EQUALS" | "NOT_EQUALS" | "CONTAINS" | "NOT_CONTAINS";
434
434
  /**
@@ -503,11 +503,11 @@ export type RelatedFinding = {
503
503
  export type SeverityUpdate = {
504
504
  /**
505
505
  * The severity value of the finding. The allowed values are the following.
506
- + ``INFORMATIONAL`` - No issue was found.
507
- + ``LOW`` - The issue does not require action on its own.
508
- + ``MEDIUM`` - The issue must be addressed but not urgently.
509
- + ``HIGH`` - The issue must be addressed as a priority.
510
- + ``CRITICAL`` - The issue must be remediated immediately to avoid it escalating.
506
+ + ``INFORMATIONAL`` - No issue was found.
507
+ + ``LOW`` - The issue does not require action on its own.
508
+ + ``MEDIUM`` - The issue must be addressed but not urgently.
509
+ + ``HIGH`` - The issue must be addressed as a priority.
510
+ + ``CRITICAL`` - The issue must be remediated immediately to avoid it escalating.
511
511
  */
512
512
  Label?: "INFORMATIONAL" | "LOW" | "MEDIUM" | "HIGH" | "CRITICAL";
513
513
  /**
@@ -540,13 +540,13 @@ export type StringFilter = {
540
540
  + 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``.
541
541
  + 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.
542
542
 
543
- ``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.
543
+ ``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.
544
544
  To search for values that don’t have the filter value, use one of the following comparison operators:
545
545
  + 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.
546
546
  + 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``.
547
547
  + 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``.
548
548
 
549
- ``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.
549
+ ``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.
550
550
  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.
551
551
  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.
552
552
  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``.
@@ -555,7 +555,7 @@ export type StringFilter = {
555
555
  + ``ResourceType NOT_EQUALS AwsIamPolicy``
556
556
  + ``ResourceType NOT_EQUALS AwsEc2NetworkInterface``
557
557
 
558
- ``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*.
558
+ ``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*.
559
559
  */
560
560
  Comparison: StringFilterComparison;
561
561
  /**
@@ -584,14 +584,14 @@ export type WorkflowUpdate = {
584
584
  /**
585
585
  * 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.
586
586
  The allowed values are the following.
587
- + ``NEW`` - The initial state of a finding, before it is reviewed.
587
+ + ``NEW`` - The initial state of a finding, before it is reviewed.
588
588
  Security Hub also resets ``WorkFlowStatus`` from ``NOTIFIED`` or ``RESOLVED`` to ``NEW`` in the following cases:
589
589
  + The record state changes from ``ARCHIVED`` to ``ACTIVE``.
590
590
  + The compliance status changes from ``PASSED`` to either ``WARNING``, ``FAILED``, or ``NOT_AVAILABLE``.
591
591
 
592
- + ``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.
593
- + ``RESOLVED`` - The finding was reviewed and remediated and is now considered resolved.
594
- + ``SUPPRESSED`` - Indicates that you reviewed the finding and don't believe that any action is needed. The finding is no longer updated.
592
+ + ``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.
593
+ + ``RESOLVED`` - The finding was reviewed and remediated and is now considered resolved.
594
+ + ``SUPPRESSED`` - Indicates that you reviewed the finding and don't believe that any action is needed. The finding is no longer updated.
595
595
  */
596
596
  Status: "NEW" | "NOTIFIED" | "RESOLVED" | "SUPPRESSED";
597
597
  };
@@ -11,9 +11,9 @@ export type SecurityHubFindingAggregatorProperties = {
11
11
  * 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.
12
12
  The selected option also determines how to use the Regions provided in the Regions list.
13
13
  In CFN, the options for this property are as follows:
14
- + ``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.
15
- + ``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.
16
- + ``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.
14
+ + ``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.
15
+ + ``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.
16
+ + ``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.
17
17
  */
18
18
  RegionLinkingMode: "ALL_REGIONS" | "ALL_REGIONS_EXCEPT_SPECIFIED" | "SPECIFIED_REGIONS";
19
19
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.332",
3
+ "version": "0.1.334",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },