@awboost/cfn-resource-types 0.1.333 → 0.1.335
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.
- package/lib/AWS-AutoScaling-AutoScalingGroup.d.ts +60 -1
- package/lib/AWS-DataSync-StorageSystem.d.ts +5 -79
- package/lib/AWS-DataSync-StorageSystem.js +1 -1
- package/lib/AWS-EC2-LaunchTemplate.d.ts +1 -0
- package/lib/AWS-ECR-RegistryScanningConfiguration.d.ts +9 -7
- package/lib/AWS-ECR-RegistryScanningConfiguration.js +2 -1
- package/lib/AWS-Logs-Transformer.d.ts +3 -3
- package/lib/AWS-OSIS-Pipeline.d.ts +1 -1
- package/lib/AWS-Omics-Workflow.d.ts +14 -0
- package/lib/AWS-Omics-WorkflowVersion.d.ts +156 -0
- package/lib/AWS-Omics-WorkflowVersion.js +12 -0
- package/lib/AWS-SSM-Document.d.ts +1 -1
- package/lib/AWS-SageMaker-App.d.ts +11 -1
- package/lib/AWS-SageMaker-Domain.d.ts +48 -1
- package/lib/AWS-SageMaker-UserProfile.d.ts +48 -1
- package/lib/AWS-SecurityHub-AutomationRule.d.ts +16 -16
- package/lib/AWS-SecurityHub-FindingAggregator.d.ts +3 -3
- package/package.json +1 -1
|
@@ -30,6 +30,9 @@ export type AutoScalingAutoScalingGroupProperties = {
|
|
|
30
30
|
* Indicates whether Capacity Rebalancing is enabled. Otherwise, Capacity Rebalancing is disabled. When you turn on Capacity Rebalancing, Amazon EC2 Auto Scaling attempts to launch a Spot Instance whenever Amazon EC2 notifies that a Spot Instance is at an elevated risk of interruption. After launching a new instance, it then terminates an old instance. For more information, see [Use Capacity Rebalancing to handle Amazon EC2 Spot Interruptions](https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-capacity-rebalancing.html) in the in the *Amazon EC2 Auto Scaling User Guide*.
|
|
31
31
|
*/
|
|
32
32
|
CapacityRebalance?: boolean;
|
|
33
|
+
/**
|
|
34
|
+
* The capacity reservation specification.
|
|
35
|
+
*/
|
|
33
36
|
CapacityReservationSpecification?: CapacityReservationSpecification;
|
|
34
37
|
/**
|
|
35
38
|
* Reserved.
|
|
@@ -173,6 +176,13 @@ export type AutoScalingAutoScalingGroupProperties = {
|
|
|
173
176
|
*/
|
|
174
177
|
VPCZoneIdentifier?: string[];
|
|
175
178
|
};
|
|
179
|
+
/**
|
|
180
|
+
* Attribute type definition for `AWS::AutoScaling::AutoScalingGroup`.
|
|
181
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscaling-autoscalinggroup.html#aws-resource-autoscaling-autoscalinggroup-return-values}
|
|
182
|
+
*/
|
|
183
|
+
export type AutoScalingAutoScalingGroupAttributes = {
|
|
184
|
+
AutoScalingGroupARN: string;
|
|
185
|
+
};
|
|
176
186
|
/**
|
|
177
187
|
* Type definition for `AWS::AutoScaling::AutoScalingGroup.AcceleratorCountRequest`.
|
|
178
188
|
* ``AcceleratorCountRequest`` is a property of the ``InstanceRequirements`` property of the [AWS::AutoScaling::AutoScalingGroup LaunchTemplateOverrides](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplateoverrides.html) property type that describes the minimum and maximum number of accelerators for an instance type.
|
|
@@ -248,32 +258,60 @@ export type BaselineEbsBandwidthMbpsRequest = {
|
|
|
248
258
|
};
|
|
249
259
|
/**
|
|
250
260
|
* Type definition for `AWS::AutoScaling::AutoScalingGroup.BaselinePerformanceFactorsRequest`.
|
|
261
|
+
* The baseline performance to consider, using an instance family as a baseline reference. The instance family establishes the lowest acceptable level of performance. Auto Scaling uses this baseline to guide instance type selection, but there is no guarantee that the selected instance types will always exceed the baseline for every application.
|
|
262
|
+
Currently, this parameter only supports CPU performance as a baseline performance factor. For example, specifying ``c6i`` uses the CPU performance of the ``c6i`` family as the baseline reference.
|
|
251
263
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-baselineperformancefactorsrequest.html}
|
|
252
264
|
*/
|
|
253
265
|
export type BaselinePerformanceFactorsRequest = {
|
|
266
|
+
/**
|
|
267
|
+
* The CPU performance to consider, using an instance family as the baseline reference.
|
|
268
|
+
*/
|
|
254
269
|
Cpu?: CpuPerformanceFactorRequest;
|
|
255
270
|
};
|
|
256
271
|
/**
|
|
257
272
|
* Type definition for `AWS::AutoScaling::AutoScalingGroup.CapacityReservationSpecification`.
|
|
273
|
+
* Describes the Capacity Reservation preference and targeting options. If you specify ``open`` or ``none`` for ``CapacityReservationPreference``, do not specify a ``CapacityReservationTarget``.
|
|
258
274
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-capacityreservationspecification.html}
|
|
259
275
|
*/
|
|
260
276
|
export type CapacityReservationSpecification = {
|
|
277
|
+
/**
|
|
278
|
+
* The capacity reservation preference. The following options are available:
|
|
279
|
+
+ ``capacity-reservations-only`` - Auto Scaling will only launch instances into a Capacity Reservation or Capacity Reservation resource group. If capacity isn't available, instances will fail to launch.
|
|
280
|
+
+ ``capacity-reservations-first`` - Auto Scaling will try to launch instances into a Capacity Reservation or Capacity Reservation resource group first. If capacity isn't available, instances will run in On-Demand capacity.
|
|
281
|
+
+ ``none`` - Auto Scaling will not launch instances into a Capacity Reservation. Instances will run in On-Demand capacity.
|
|
282
|
+
+ ``default`` - Auto Scaling uses the Capacity Reservation preference from your launch template or an open Capacity Reservation.
|
|
283
|
+
*/
|
|
261
284
|
CapacityReservationPreference: string;
|
|
285
|
+
/**
|
|
286
|
+
* Describes a target Capacity Reservation or Capacity Reservation resource group.
|
|
287
|
+
*/
|
|
262
288
|
CapacityReservationTarget?: CapacityReservationTarget;
|
|
263
289
|
};
|
|
264
290
|
/**
|
|
265
291
|
* Type definition for `AWS::AutoScaling::AutoScalingGroup.CapacityReservationTarget`.
|
|
292
|
+
* The target for the Capacity Reservation. Specify Capacity Reservations IDs or Capacity Reservation resource group ARNs.
|
|
266
293
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-capacityreservationtarget.html}
|
|
267
294
|
*/
|
|
268
295
|
export type CapacityReservationTarget = {
|
|
296
|
+
/**
|
|
297
|
+
* The Capacity Reservation IDs to launch instances into.
|
|
298
|
+
*/
|
|
269
299
|
CapacityReservationIds?: string[];
|
|
300
|
+
/**
|
|
301
|
+
* The resource group ARNs of the Capacity Reservation to launch instances into.
|
|
302
|
+
*/
|
|
270
303
|
CapacityReservationResourceGroupArns?: string[];
|
|
271
304
|
};
|
|
272
305
|
/**
|
|
273
306
|
* Type definition for `AWS::AutoScaling::AutoScalingGroup.CpuPerformanceFactorRequest`.
|
|
307
|
+
* The CPU performance to consider, using an instance family as the baseline reference.
|
|
274
308
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-cpuperformancefactorrequest.html}
|
|
275
309
|
*/
|
|
276
310
|
export type CpuPerformanceFactorRequest = {
|
|
311
|
+
/**
|
|
312
|
+
* Specify an instance family to use as the baseline reference for CPU performance. All instance types that match your specified attributes will be compared against the CPU performance of the referenced instance family, regardless of CPU manufacturer or architecture differences.
|
|
313
|
+
Currently only one instance family can be specified in the list.
|
|
314
|
+
*/
|
|
277
315
|
References?: PerformanceFactorReferenceRequest[];
|
|
278
316
|
};
|
|
279
317
|
/**
|
|
@@ -369,6 +407,9 @@ export type InstanceRequirements = {
|
|
|
369
407
|
Default: No minimum or maximum limits
|
|
370
408
|
*/
|
|
371
409
|
BaselineEbsBandwidthMbps?: BaselineEbsBandwidthMbpsRequest;
|
|
410
|
+
/**
|
|
411
|
+
* The baseline performance factors for the instance requirements.
|
|
412
|
+
*/
|
|
372
413
|
BaselinePerformanceFactors?: BaselinePerformanceFactorsRequest;
|
|
373
414
|
/**
|
|
374
415
|
* Indicates whether burstable performance instance types are included, excluded, or required. For more information, see [Burstable performance instances](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/burstable-performance-instances.html) in the *Amazon EC2 User Guide for Linux Instances*.
|
|
@@ -784,9 +825,27 @@ export type NotificationConfiguration = {
|
|
|
784
825
|
};
|
|
785
826
|
/**
|
|
786
827
|
* Type definition for `AWS::AutoScaling::AutoScalingGroup.PerformanceFactorReferenceRequest`.
|
|
828
|
+
* Specify an instance family to use as the baseline reference for CPU performance. All instance types that All instance types that match your specified attributes will be compared against the CPU performance of the referenced instance family, regardless of CPU manufacturer or architecture differences.
|
|
829
|
+
Currently only one instance family can be specified in the list.
|
|
787
830
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-performancefactorreferencerequest.html}
|
|
788
831
|
*/
|
|
789
832
|
export type PerformanceFactorReferenceRequest = {
|
|
833
|
+
/**
|
|
834
|
+
* The instance family to use as a baseline reference.
|
|
835
|
+
Make sure that you specify the correct value for the instance family. The instance family is everything before the period (.) in the instance type name. For example, in the instance ``c6i.large``, the instance family is ``c6i``, not ``c6``. For more information, see [Amazon EC2 instance type naming conventions](https://docs.aws.amazon.com/ec2/latest/instancetypes/instance-type-names.html) in *Amazon EC2 Instance Types*.
|
|
836
|
+
The following instance types are *not supported* for performance protection.
|
|
837
|
+
+ ``c1``
|
|
838
|
+
+ ``g3| g3s``
|
|
839
|
+
+ ``hpc7g``
|
|
840
|
+
+ ``m1| m2``
|
|
841
|
+
+ ``mac1 | mac2 | mac2-m1ultra | mac2-m2 | mac2-m2pro``
|
|
842
|
+
+ ``p3dn | p4d | p5``
|
|
843
|
+
+ ``t1``
|
|
844
|
+
+ ``u-12tb1 | u-18tb1 | u-24tb1 | u-3tb1 | u-6tb1 | u-9tb1 | u7i-12tb | u7in-16tb | u7in-24tb | u7in-32tb``
|
|
845
|
+
|
|
846
|
+
If you performance protection by specifying a supported instance family, the returned instance types will exclude the preceding unsupported instance families.
|
|
847
|
+
If you specify an unsupported instance family as a value for baseline performance, the API returns an empty response.
|
|
848
|
+
*/
|
|
790
849
|
InstanceFamily?: string;
|
|
791
850
|
};
|
|
792
851
|
/**
|
|
@@ -879,7 +938,7 @@ export type VCpuCountRequest = {
|
|
|
879
938
|
For help migrating from launch configurations to launch templates, see [Migrate CloudFormation stacks from launch configurations to launch templates](https://docs.aws.amazon.com/autoscaling/ec2/userguide/migrate-launch-configurations-with-cloudformation.html) in the *Amazon EC2 Auto Scaling User Guide*.
|
|
880
939
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscaling-autoscalinggroup.html}
|
|
881
940
|
*/
|
|
882
|
-
export declare class AutoScalingAutoScalingGroup extends $Resource<"AWS::AutoScaling::AutoScalingGroup", AutoScalingAutoScalingGroupProperties,
|
|
941
|
+
export declare class AutoScalingAutoScalingGroup extends $Resource<"AWS::AutoScaling::AutoScalingGroup", AutoScalingAutoScalingGroupProperties, AutoScalingAutoScalingGroupAttributes> {
|
|
883
942
|
static readonly Type = "AWS::AutoScaling::AutoScalingGroup";
|
|
884
943
|
constructor(logicalId: string, properties: AutoScalingAutoScalingGroupProperties, options?: $ResourceOptions);
|
|
885
944
|
}
|
|
@@ -1,45 +1,16 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
3
|
/**
|
|
4
|
-
* Resource
|
|
4
|
+
* Resource Type definition for AWS::DataSync::StorageSystem
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-storagesystem.html}
|
|
6
6
|
*/
|
|
7
7
|
export type DataSyncStorageSystemProperties = {
|
|
8
|
-
/**
|
|
9
|
-
* The ARN of the DataSync agent that connects to and reads from the on-premises storage system's management interface.
|
|
10
|
-
* @minLength `1`
|
|
11
|
-
* @maxLength `1`
|
|
12
|
-
*/
|
|
13
8
|
AgentArns: string[];
|
|
14
|
-
/**
|
|
15
|
-
* The ARN of the Amazon CloudWatch log group used to monitor and log discovery job events.
|
|
16
|
-
* @maxLength `562`
|
|
17
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):logs:[a-z\-0-9]+:[0-9]{12}:log-group:([^:\*]*)(:\*)?$`
|
|
18
|
-
*/
|
|
19
9
|
CloudWatchLogGroupArn?: string;
|
|
20
|
-
/**
|
|
21
|
-
* A familiar name for the on-premises storage system.
|
|
22
|
-
* @minLength `1`
|
|
23
|
-
* @maxLength `256`
|
|
24
|
-
* @pattern `^[a-zA-Z0-9\s+=._:@/-]+$`
|
|
25
|
-
*/
|
|
26
10
|
Name?: string;
|
|
27
|
-
/**
|
|
28
|
-
* The server name and network port required to connect with the management interface of the on-premises storage system.
|
|
29
|
-
*/
|
|
30
11
|
ServerConfiguration: ServerConfiguration;
|
|
31
|
-
/**
|
|
32
|
-
* The username and password for accessing your on-premises storage system's management interface.
|
|
33
|
-
*/
|
|
34
12
|
ServerCredentials?: ServerCredentials;
|
|
35
|
-
|
|
36
|
-
* The type of on-premises storage system that DataSync Discovery will analyze.
|
|
37
|
-
*/
|
|
38
|
-
SystemType: "NetAppONTAP";
|
|
39
|
-
/**
|
|
40
|
-
* An array of key-value pairs to apply to this resource.
|
|
41
|
-
* @maxLength `50`
|
|
42
|
-
*/
|
|
13
|
+
SystemType: string;
|
|
43
14
|
Tags?: Tag[];
|
|
44
15
|
};
|
|
45
16
|
/**
|
|
@@ -47,82 +18,37 @@ export type DataSyncStorageSystemProperties = {
|
|
|
47
18
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-storagesystem.html#aws-resource-datasync-storagesystem-return-values}
|
|
48
19
|
*/
|
|
49
20
|
export type DataSyncStorageSystemAttributes = {
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
*/
|
|
53
|
-
ConnectivityStatus: "PASS" | "FAIL" | "UNKNOWN";
|
|
54
|
-
/**
|
|
55
|
-
* The ARN of a secret stored by AWS Secrets Manager.
|
|
56
|
-
* @maxLength `2048`
|
|
57
|
-
* @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z\-0-9]+:[0-9]{12}:secret:.*`
|
|
58
|
-
*/
|
|
21
|
+
ConnectivityStatus: string;
|
|
22
|
+
Id: string;
|
|
59
23
|
SecretsManagerArn: string;
|
|
60
|
-
/**
|
|
61
|
-
* The ARN of the on-premises storage system added to DataSync Discovery.
|
|
62
|
-
* @maxLength `128`
|
|
63
|
-
* @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}$`
|
|
64
|
-
*/
|
|
65
24
|
StorageSystemArn: string;
|
|
66
25
|
};
|
|
67
26
|
/**
|
|
68
27
|
* Type definition for `AWS::DataSync::StorageSystem.ServerConfiguration`.
|
|
69
|
-
* The server name and network port required to connect with the management interface of the on-premises storage system.
|
|
70
28
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-storagesystem-serverconfiguration.html}
|
|
71
29
|
*/
|
|
72
30
|
export type ServerConfiguration = {
|
|
73
|
-
/**
|
|
74
|
-
* The domain name or IP address of the storage system's management interface.
|
|
75
|
-
* @maxLength `255`
|
|
76
|
-
* @pattern `^(([a-zA-Z0-9\-]*[a-zA-Z0-9])\.)*([A-Za-z0-9\-]*[A-Za-z0-9])$`
|
|
77
|
-
*/
|
|
78
31
|
ServerHostname: string;
|
|
79
|
-
/**
|
|
80
|
-
* The network port needed to access the system's management interface
|
|
81
|
-
* @min `1`
|
|
82
|
-
* @max `65535`
|
|
83
|
-
*/
|
|
84
32
|
ServerPort?: number;
|
|
85
33
|
};
|
|
86
34
|
/**
|
|
87
35
|
* Type definition for `AWS::DataSync::StorageSystem.ServerCredentials`.
|
|
88
|
-
* The username and password for accessing your on-premises storage system's management interface.
|
|
89
36
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-storagesystem-servercredentials.html}
|
|
90
37
|
*/
|
|
91
38
|
export type ServerCredentials = {
|
|
92
|
-
/**
|
|
93
|
-
* The password for your storage system's management interface
|
|
94
|
-
* @maxLength `1024`
|
|
95
|
-
*/
|
|
96
39
|
Password: string;
|
|
97
|
-
/**
|
|
98
|
-
* The username for your storage system's management interface.
|
|
99
|
-
* @maxLength `1024`
|
|
100
|
-
*/
|
|
101
40
|
Username: string;
|
|
102
41
|
};
|
|
103
42
|
/**
|
|
104
43
|
* Type definition for `AWS::DataSync::StorageSystem.Tag`.
|
|
105
|
-
* A key-value pair to associate with a resource.
|
|
106
44
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-storagesystem-tag.html}
|
|
107
45
|
*/
|
|
108
46
|
export type Tag = {
|
|
109
|
-
/**
|
|
110
|
-
* The key for an AWS resource tag.
|
|
111
|
-
* @minLength `1`
|
|
112
|
-
* @maxLength `256`
|
|
113
|
-
* @pattern `^[a-zA-Z0-9\s+=._:/-]+$`
|
|
114
|
-
*/
|
|
115
47
|
Key: string;
|
|
116
|
-
/**
|
|
117
|
-
* The value for an AWS resource tag.
|
|
118
|
-
* @minLength `1`
|
|
119
|
-
* @maxLength `256`
|
|
120
|
-
* @pattern `^[a-zA-Z0-9\s+=._:@/-]+$`
|
|
121
|
-
*/
|
|
122
48
|
Value: string;
|
|
123
49
|
};
|
|
124
50
|
/**
|
|
125
|
-
* Resource
|
|
51
|
+
* Resource Type definition for AWS::DataSync::StorageSystem
|
|
126
52
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-storagesystem.html}
|
|
127
53
|
*/
|
|
128
54
|
export declare class DataSyncStorageSystem extends $Resource<"AWS::DataSync::StorageSystem", DataSyncStorageSystemProperties, DataSyncStorageSystemAttributes> {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
* Resource
|
|
3
|
+
* Resource Type definition for AWS::DataSync::StorageSystem
|
|
4
4
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-storagesystem.html}
|
|
5
5
|
*/
|
|
6
6
|
export class DataSyncStorageSystem extends $Resource {
|
|
@@ -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
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
3
|
/**
|
|
4
|
-
*
|
|
4
|
+
* Resource type definition for `AWS::ECR::RegistryScanningConfiguration`.
|
|
5
|
+
* The scanning configuration for a private registry.
|
|
5
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-registryscanningconfiguration.html}
|
|
6
7
|
*/
|
|
7
8
|
export type ECRRegistryScanningConfigurationProperties = {
|
|
8
9
|
/**
|
|
9
|
-
* The scanning rules associated with the registry.
|
|
10
|
+
* The scanning rules associated with the registry.
|
|
10
11
|
* @minLength `0`
|
|
11
12
|
* @maxLength `2`
|
|
12
13
|
*/
|
|
@@ -35,7 +36,7 @@ export type ECRRegistryScanningConfigurationAttributes = {
|
|
|
35
36
|
export type FilterType = "WILDCARD";
|
|
36
37
|
/**
|
|
37
38
|
* Type definition for `AWS::ECR::RegistryScanningConfiguration.RepositoryFilter`.
|
|
38
|
-
* The
|
|
39
|
+
* The filter settings used with image replication. Specifying a repository filter to a replication rule provides a method for controlling which repositories in a private registry are replicated. If no filters are added, the contents of all repositories are replicated.
|
|
39
40
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-registryscanningconfiguration-repositoryfilter.html}
|
|
40
41
|
*/
|
|
41
42
|
export type RepositoryFilter = {
|
|
@@ -57,18 +58,18 @@ export type RepositoryFilter = {
|
|
|
57
58
|
export type ScanFrequency = "SCAN_ON_PUSH" | "CONTINUOUS_SCAN";
|
|
58
59
|
/**
|
|
59
60
|
* Type definition for `AWS::ECR::RegistryScanningConfiguration.ScanningRule`.
|
|
60
|
-
*
|
|
61
|
+
* The scanning rules associated with the registry.
|
|
61
62
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-registryscanningconfiguration-scanningrule.html}
|
|
62
63
|
*/
|
|
63
64
|
export type ScanningRule = {
|
|
64
65
|
/**
|
|
65
|
-
* The repository filters
|
|
66
|
+
* The details of a scanning repository filter. For more information on how to use filters, see [Using filters](https://docs.aws.amazon.com/AmazonECR/latest/userguide/image-scanning.html#image-scanning-filters) in the *Amazon Elastic Container Registry User Guide*.
|
|
66
67
|
* @minLength `0`
|
|
67
68
|
* @maxLength `100`
|
|
68
69
|
*/
|
|
69
70
|
RepositoryFilters: RepositoryFilter[];
|
|
70
71
|
/**
|
|
71
|
-
* The frequency that scans are performed.
|
|
72
|
+
* The frequency that scans are performed at for a private registry. When the ``ENHANCED`` scan type is specified, the supported scan frequencies are ``CONTINUOUS_SCAN`` and ``SCAN_ON_PUSH``. When the ``BASIC`` scan type is specified, the ``SCAN_ON_PUSH`` scan frequency is supported. If scan on push is not specified, then the ``MANUAL`` scan frequency is set by default.
|
|
72
73
|
*/
|
|
73
74
|
ScanFrequency: ScanFrequency;
|
|
74
75
|
};
|
|
@@ -79,7 +80,8 @@ export type ScanningRule = {
|
|
|
79
80
|
*/
|
|
80
81
|
export type ScanType = "BASIC" | "ENHANCED";
|
|
81
82
|
/**
|
|
82
|
-
*
|
|
83
|
+
* Resource type definition for `AWS::ECR::RegistryScanningConfiguration`.
|
|
84
|
+
* The scanning configuration for a private registry.
|
|
83
85
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-registryscanningconfiguration.html}
|
|
84
86
|
*/
|
|
85
87
|
export declare class ECRRegistryScanningConfiguration extends $Resource<"AWS::ECR::RegistryScanningConfiguration", ECRRegistryScanningConfigurationProperties, ECRRegistryScanningConfigurationAttributes> {
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* Resource type definition for `AWS::ECR::RegistryScanningConfiguration`.
|
|
4
|
+
* The scanning configuration for a private registry.
|
|
4
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-registryscanningconfiguration.html}
|
|
5
6
|
*/
|
|
6
7
|
export class ECRRegistryScanningConfiguration extends $Resource {
|
|
@@ -145,7 +145,7 @@ export type Processor = {
|
|
|
145
145
|
*/
|
|
146
146
|
Columns?: string[];
|
|
147
147
|
/**
|
|
148
|
-
* @maxLength `
|
|
148
|
+
* @maxLength `2`
|
|
149
149
|
*/
|
|
150
150
|
Delimiter?: string;
|
|
151
151
|
/**
|
|
@@ -183,7 +183,7 @@ export type Processor = {
|
|
|
183
183
|
};
|
|
184
184
|
Grok?: {
|
|
185
185
|
/**
|
|
186
|
-
* @maxLength `
|
|
186
|
+
* @maxLength `512`
|
|
187
187
|
*/
|
|
188
188
|
Match: string;
|
|
189
189
|
/**
|
|
@@ -324,7 +324,7 @@ export type RenameKeyEntry = {
|
|
|
324
324
|
*/
|
|
325
325
|
export type SplitStringEntry = {
|
|
326
326
|
/**
|
|
327
|
-
* @maxLength `
|
|
327
|
+
* @maxLength `128`
|
|
328
328
|
*/
|
|
329
329
|
Delimiter: string;
|
|
330
330
|
/**
|
|
@@ -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
|
|
@@ -22,7 +22,7 @@ export type SSMDocumentProperties = {
|
|
|
22
22
|
/**
|
|
23
23
|
* The type of document to create.
|
|
24
24
|
*/
|
|
25
|
-
DocumentType?: "ApplicationConfiguration" | "ApplicationConfigurationSchema" | "Automation" | "Automation.ChangeTemplate" | "ChangeCalendar" | "CloudFormation" | "Command" | "DeploymentStrategy" | "Package" | "Policy" | "ProblemAnalysis" | "ProblemAnalysisTemplate" | "Session";
|
|
25
|
+
DocumentType?: "ApplicationConfiguration" | "ApplicationConfigurationSchema" | "Automation" | "Automation.ChangeTemplate" | "AutoApprovalPolicy" | "ChangeCalendar" | "CloudFormation" | "Command" | "DeploymentStrategy" | "ManualApprovalPolicy" | "Package" | "Policy" | "ProblemAnalysis" | "ProblemAnalysisTemplate" | "Session";
|
|
26
26
|
/**
|
|
27
27
|
* A name for the Systems Manager document.
|
|
28
28
|
* @pattern `^[a-zA-Z0-9_\-.]{3,128}$`
|
|
@@ -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
|
|
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
|
|
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
|
|
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
|
-
|
|
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
|
-
|
|
429
|
-
|
|
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
|
-
|
|
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
|
-
+
|
|
507
|
-
+
|
|
508
|
-
+
|
|
509
|
-
+
|
|
510
|
-
+
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
+
|
|
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
|
-
+
|
|
593
|
-
+
|
|
594
|
-
+
|
|
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
|
-
+
|
|
15
|
-
+
|
|
16
|
-
+
|
|
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
|
/**
|