@awboost/cfn-resource-types 0.1.118 → 0.1.120
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-ARCZonalShift-AutoshiftObserverNotificationStatus.d.ts +41 -0
- package/lib/AWS-ARCZonalShift-AutoshiftObserverNotificationStatus.js +12 -0
- package/lib/AWS-ARCZonalShift-ZonalAutoshiftConfiguration.d.ts +7 -7
- package/lib/AWS-Batch-JobDefinition.d.ts +1 -0
- package/lib/AWS-EntityResolution-IdMappingWorkflow.d.ts +0 -1
- package/lib/AWS-FMS-Policy.d.ts +1 -1
- package/lib/AWS-KinesisFirehose-DeliveryStream.d.ts +65 -0
- package/lib/AWS-RDS-Integration.d.ts +14 -15
- package/lib/AWS-RDS-Integration.js +1 -1
- package/lib/AWS-SageMaker-App.d.ts +6 -0
- package/lib/AWS-SageMaker-Domain.d.ts +12 -0
- package/lib/AWS-SageMaker-Model.d.ts +8 -0
- package/lib/AWS-SageMaker-Space.d.ts +18 -0
- package/lib/AWS-SageMaker-UserProfile.d.ts +18 -0
- package/package.json +1 -1
|
@@ -0,0 +1,41 @@
|
|
|
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::ARCZonalShift::AutoshiftObserverNotificationStatus Resource Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-arczonalshift-autoshiftobservernotificationstatus.html}
|
|
6
|
+
*/
|
|
7
|
+
export type ARCZonalShiftAutoshiftObserverNotificationStatusProperties = {
|
|
8
|
+
Status: AutoshiftObserverNotificationStatus;
|
|
9
|
+
};
|
|
10
|
+
/**
|
|
11
|
+
* Attribute type definition for `AWS::ARCZonalShift::AutoshiftObserverNotificationStatus`.
|
|
12
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-arczonalshift-autoshiftobservernotificationstatus.html#aws-resource-arczonalshift-autoshiftobservernotificationstatus-return-values}
|
|
13
|
+
*/
|
|
14
|
+
export type ARCZonalShiftAutoshiftObserverNotificationStatusAttributes = {
|
|
15
|
+
/**
|
|
16
|
+
* User account id, used as part of the primary identifier for the resource
|
|
17
|
+
* @pattern `^\d{12}$`
|
|
18
|
+
*/
|
|
19
|
+
AccountId: string;
|
|
20
|
+
/**
|
|
21
|
+
* Region, used as part of the primary identifier for the resource
|
|
22
|
+
* @minLength `5`
|
|
23
|
+
* @maxLength `30`
|
|
24
|
+
* @pattern `^[a-z0-9-]*$`
|
|
25
|
+
*/
|
|
26
|
+
Region: string;
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* Type definition for `AWS::ARCZonalShift::AutoshiftObserverNotificationStatus.AutoshiftObserverNotificationStatus`.
|
|
30
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arczonalshift-autoshiftobservernotificationstatus-autoshiftobservernotificationstatus.html}
|
|
31
|
+
*/
|
|
32
|
+
export type AutoshiftObserverNotificationStatus = "ENABLED";
|
|
33
|
+
/**
|
|
34
|
+
* Definition of AWS::ARCZonalShift::AutoshiftObserverNotificationStatus Resource Type
|
|
35
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-arczonalshift-autoshiftobservernotificationstatus.html}
|
|
36
|
+
*/
|
|
37
|
+
export declare class ARCZonalShiftAutoshiftObserverNotificationStatus extends $Resource<"AWS::ARCZonalShift::AutoshiftObserverNotificationStatus", ARCZonalShiftAutoshiftObserverNotificationStatusProperties, ARCZonalShiftAutoshiftObserverNotificationStatusAttributes> {
|
|
38
|
+
static readonly Type = "AWS::ARCZonalShift::AutoshiftObserverNotificationStatus";
|
|
39
|
+
constructor(logicalId: string, properties: ARCZonalShiftAutoshiftObserverNotificationStatusProperties, options?: $ResourceOptions);
|
|
40
|
+
}
|
|
41
|
+
//# sourceMappingURL=AWS-ARCZonalShift-AutoshiftObserverNotificationStatus.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Definition of AWS::ARCZonalShift::AutoshiftObserverNotificationStatus Resource Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-arczonalshift-autoshiftobservernotificationstatus.html}
|
|
5
|
+
*/
|
|
6
|
+
export class ARCZonalShiftAutoshiftObserverNotificationStatus extends $Resource {
|
|
7
|
+
static Type = "AWS::ARCZonalShift::AutoshiftObserverNotificationStatus";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, ARCZonalShiftAutoshiftObserverNotificationStatus.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-ARCZonalShift-AutoshiftObserverNotificationStatus.js.map
|
|
@@ -21,16 +21,16 @@ export type ControlCondition = {
|
|
|
21
21
|
/**
|
|
22
22
|
* @minLength `8`
|
|
23
23
|
* @maxLength `1024`
|
|
24
|
-
* @pattern
|
|
24
|
+
* @pattern `^.*$`
|
|
25
25
|
*/
|
|
26
26
|
AlarmIdentifier: string;
|
|
27
|
-
|
|
27
|
+
/**
|
|
28
|
+
* @minLength `8`
|
|
29
|
+
* @maxLength `10`
|
|
30
|
+
* @pattern `^[a-zA-Z]*$`
|
|
31
|
+
*/
|
|
32
|
+
Type: string;
|
|
28
33
|
};
|
|
29
|
-
/**
|
|
30
|
-
* Type definition for `AWS::ARCZonalShift::ZonalAutoshiftConfiguration.ControlConditionType`.
|
|
31
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arczonalshift-zonalautoshiftconfiguration-controlconditiontype.html}
|
|
32
|
-
*/
|
|
33
|
-
export type ControlConditionType = "CLOUDWATCH";
|
|
34
34
|
/**
|
|
35
35
|
* Type definition for `AWS::ARCZonalShift::ZonalAutoshiftConfiguration.PracticeRunConfiguration`.
|
|
36
36
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arczonalshift-zonalautoshiftconfiguration-practicerunconfiguration.html}
|
|
@@ -79,7 +79,6 @@ export type IdMappingRuleBasedProperties = {
|
|
|
79
79
|
*/
|
|
80
80
|
export type IdMappingTechniques = {
|
|
81
81
|
IdMappingType?: "PROVIDER" | "RULE_BASED";
|
|
82
|
-
NormalizationVersion?: string;
|
|
83
82
|
ProviderProperties?: ProviderProperties;
|
|
84
83
|
RuleBasedProperties?: IdMappingRuleBasedProperties;
|
|
85
84
|
};
|
package/lib/AWS-FMS-Policy.d.ts
CHANGED
|
@@ -18,6 +18,7 @@ export type KinesisFirehoseDeliveryStreamProperties = {
|
|
|
18
18
|
ElasticsearchDestinationConfiguration?: ElasticsearchDestinationConfiguration;
|
|
19
19
|
ExtendedS3DestinationConfiguration?: ExtendedS3DestinationConfiguration;
|
|
20
20
|
HttpEndpointDestinationConfiguration?: HttpEndpointDestinationConfiguration;
|
|
21
|
+
IcebergDestinationConfiguration?: IcebergDestinationConfiguration;
|
|
21
22
|
KinesisStreamSourceConfiguration?: KinesisStreamSourceConfiguration;
|
|
22
23
|
MSKSourceConfiguration?: MSKSourceConfiguration;
|
|
23
24
|
RedshiftDestinationConfiguration?: RedshiftDestinationConfiguration;
|
|
@@ -161,6 +162,18 @@ export type BufferingHints = {
|
|
|
161
162
|
IntervalInSeconds?: number;
|
|
162
163
|
SizeInMBs?: number;
|
|
163
164
|
};
|
|
165
|
+
/**
|
|
166
|
+
* Type definition for `AWS::KinesisFirehose::DeliveryStream.CatalogConfiguration`.
|
|
167
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-catalogconfiguration.html}
|
|
168
|
+
*/
|
|
169
|
+
export type CatalogConfiguration = {
|
|
170
|
+
/**
|
|
171
|
+
* @minLength `1`
|
|
172
|
+
* @maxLength `512`
|
|
173
|
+
* @pattern `arn:.*`
|
|
174
|
+
*/
|
|
175
|
+
CatalogArn?: string;
|
|
176
|
+
};
|
|
164
177
|
/**
|
|
165
178
|
* Type definition for `AWS::KinesisFirehose::DeliveryStream.CloudWatchLoggingOptions`.
|
|
166
179
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html}
|
|
@@ -222,6 +235,28 @@ export type Deserializer = {
|
|
|
222
235
|
HiveJsonSerDe?: HiveJsonSerDe;
|
|
223
236
|
OpenXJsonSerDe?: OpenXJsonSerDe;
|
|
224
237
|
};
|
|
238
|
+
/**
|
|
239
|
+
* Type definition for `AWS::KinesisFirehose::DeliveryStream.DestinationTableConfiguration`.
|
|
240
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-destinationtableconfiguration.html}
|
|
241
|
+
*/
|
|
242
|
+
export type DestinationTableConfiguration = {
|
|
243
|
+
/**
|
|
244
|
+
* @minLength `1`
|
|
245
|
+
* @maxLength `512`
|
|
246
|
+
*/
|
|
247
|
+
DestinationDatabaseName: string;
|
|
248
|
+
/**
|
|
249
|
+
* @minLength `1`
|
|
250
|
+
* @maxLength `512`
|
|
251
|
+
*/
|
|
252
|
+
DestinationTableName: string;
|
|
253
|
+
/**
|
|
254
|
+
* @minLength `1`
|
|
255
|
+
* @maxLength `1024`
|
|
256
|
+
*/
|
|
257
|
+
S3ErrorOutputPrefix?: string;
|
|
258
|
+
UniqueKeys?: string[];
|
|
259
|
+
};
|
|
225
260
|
/**
|
|
226
261
|
* Type definition for `AWS::KinesisFirehose::DeliveryStream.DocumentIdOptions`.
|
|
227
262
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-documentidoptions.html}
|
|
@@ -428,6 +463,26 @@ export type HttpEndpointRequestConfiguration = {
|
|
|
428
463
|
CommonAttributes?: HttpEndpointCommonAttribute[];
|
|
429
464
|
ContentEncoding?: "NONE" | "GZIP";
|
|
430
465
|
};
|
|
466
|
+
/**
|
|
467
|
+
* Type definition for `AWS::KinesisFirehose::DeliveryStream.IcebergDestinationConfiguration`.
|
|
468
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-icebergdestinationconfiguration.html}
|
|
469
|
+
*/
|
|
470
|
+
export type IcebergDestinationConfiguration = {
|
|
471
|
+
BufferingHints?: BufferingHints;
|
|
472
|
+
CatalogConfiguration: CatalogConfiguration;
|
|
473
|
+
CloudWatchLoggingOptions?: CloudWatchLoggingOptions;
|
|
474
|
+
DestinationTableConfigurationList?: DestinationTableConfiguration[];
|
|
475
|
+
ProcessingConfiguration?: ProcessingConfiguration;
|
|
476
|
+
RetryOptions?: RetryOptions;
|
|
477
|
+
/**
|
|
478
|
+
* @minLength `1`
|
|
479
|
+
* @maxLength `512`
|
|
480
|
+
* @pattern `arn:.*`
|
|
481
|
+
*/
|
|
482
|
+
RoleARN: string;
|
|
483
|
+
S3Configuration: S3DestinationConfiguration;
|
|
484
|
+
s3BackupMode?: "AllData" | "FailedDataOnly";
|
|
485
|
+
};
|
|
431
486
|
/**
|
|
432
487
|
* Type definition for `AWS::KinesisFirehose::DeliveryStream.InputFormatConfiguration`.
|
|
433
488
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-inputformatconfiguration.html}
|
|
@@ -472,6 +527,7 @@ export type MSKSourceConfiguration = {
|
|
|
472
527
|
* @pattern `arn:.*`
|
|
473
528
|
*/
|
|
474
529
|
MSKClusterARN: string;
|
|
530
|
+
ReadFromTimestamp?: string;
|
|
475
531
|
/**
|
|
476
532
|
* @minLength `1`
|
|
477
533
|
* @maxLength `255`
|
|
@@ -672,6 +728,14 @@ export type Serializer = {
|
|
|
672
728
|
OrcSerDe?: OrcSerDe;
|
|
673
729
|
ParquetSerDe?: ParquetSerDe;
|
|
674
730
|
};
|
|
731
|
+
/**
|
|
732
|
+
* Type definition for `AWS::KinesisFirehose::DeliveryStream.SnowflakeBufferingHints`.
|
|
733
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-snowflakebufferinghints.html}
|
|
734
|
+
*/
|
|
735
|
+
export type SnowflakeBufferingHints = {
|
|
736
|
+
IntervalInSeconds?: number;
|
|
737
|
+
SizeInMBs?: number;
|
|
738
|
+
};
|
|
675
739
|
/**
|
|
676
740
|
* Type definition for `AWS::KinesisFirehose::DeliveryStream.SnowflakeDestinationConfiguration`.
|
|
677
741
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-snowflakedestinationconfiguration.html}
|
|
@@ -683,6 +747,7 @@ export type SnowflakeDestinationConfiguration = {
|
|
|
683
747
|
* @pattern `.+?\.snowflakecomputing\.com`
|
|
684
748
|
*/
|
|
685
749
|
AccountUrl: string;
|
|
750
|
+
BufferingHints?: SnowflakeBufferingHints;
|
|
686
751
|
CloudWatchLoggingOptions?: CloudWatchLoggingOptions;
|
|
687
752
|
/**
|
|
688
753
|
* @minLength `1`
|
|
@@ -2,23 +2,24 @@ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/re
|
|
|
2
2
|
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
3
|
/**
|
|
4
4
|
* Resource type definition for `AWS::RDS::Integration`.
|
|
5
|
-
*
|
|
5
|
+
* A zero-ETL integration with Amazon Redshift.
|
|
6
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-integration.html}
|
|
7
7
|
*/
|
|
8
8
|
export type RDSIntegrationProperties = {
|
|
9
9
|
/**
|
|
10
|
-
|
|
11
|
-
|
|
10
|
+
* An optional set of non-secret key–value pairs that contains additional contextual information about the data. For more information, see [Encryption context](https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt_context) in the *Key Management Service Developer Guide*.
|
|
11
|
+
You can only include this parameter if you specify the ``KMSKeyId`` parameter.
|
|
12
|
+
*/
|
|
12
13
|
AdditionalEncryptionContext?: EncryptionContextMap;
|
|
13
14
|
/**
|
|
14
|
-
*
|
|
15
|
+
* Data filters for the integration. These filters determine which tables from the source database are sent to the target Amazon Redshift data warehouse.
|
|
15
16
|
* @minLength `1`
|
|
16
17
|
* @maxLength `25600`
|
|
17
18
|
* @pattern `[a-zA-Z0-9_ "\\\-$,*.:?+\/]*`
|
|
18
19
|
*/
|
|
19
20
|
DataFilter?: string;
|
|
20
21
|
/**
|
|
21
|
-
*
|
|
22
|
+
* A description of the integration.
|
|
22
23
|
* @minLength `1`
|
|
23
24
|
* @maxLength `1000`
|
|
24
25
|
*/
|
|
@@ -30,15 +31,15 @@ export type RDSIntegrationProperties = {
|
|
|
30
31
|
*/
|
|
31
32
|
IntegrationName?: string;
|
|
32
33
|
/**
|
|
33
|
-
*
|
|
34
|
+
* The AWS Key Management System (AWS KMS) key identifier for the key to use to encrypt the integration. If you don't specify an encryption key, RDS uses a default AWS owned key.
|
|
34
35
|
*/
|
|
35
36
|
KMSKeyId?: string;
|
|
36
37
|
/**
|
|
37
|
-
* The Amazon Resource Name (ARN) of the
|
|
38
|
+
* The Amazon Resource Name (ARN) of the database to use as the source for replication.
|
|
38
39
|
*/
|
|
39
40
|
SourceArn: string;
|
|
40
41
|
/**
|
|
41
|
-
*
|
|
42
|
+
* A list of tags. For more information, see [Tagging Amazon RDS Resources](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html) in the *Amazon RDS User Guide.*.
|
|
42
43
|
* @maxLength `50`
|
|
43
44
|
*/
|
|
44
45
|
Tags?: Tag[];
|
|
@@ -53,9 +54,6 @@ export type RDSIntegrationProperties = {
|
|
|
53
54
|
*/
|
|
54
55
|
export type RDSIntegrationAttributes = {
|
|
55
56
|
CreateTime: string;
|
|
56
|
-
/**
|
|
57
|
-
* The ARN of the integration.
|
|
58
|
-
*/
|
|
59
57
|
IntegrationArn: string;
|
|
60
58
|
};
|
|
61
59
|
/**
|
|
@@ -66,18 +64,19 @@ export type RDSIntegrationAttributes = {
|
|
|
66
64
|
export type EncryptionContextMap = Record<string, string>;
|
|
67
65
|
/**
|
|
68
66
|
* Type definition for `AWS::RDS::Integration.Tag`.
|
|
69
|
-
*
|
|
67
|
+
* Metadata assigned to an Amazon RDS resource consisting of a key-value pair.
|
|
68
|
+
For more information, see [Tagging Amazon RDS Resources](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html) in the *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS Resources](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html) in the *Amazon Aurora User Guide*.
|
|
70
69
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-integration-tag.html}
|
|
71
70
|
*/
|
|
72
71
|
export type Tag = {
|
|
73
72
|
/**
|
|
74
|
-
*
|
|
73
|
+
* A key is the required name of the tag. The string value can be from 1 to 128 Unicode characters in length and can't be prefixed with ``aws:`` or ``rds:``. The string can only contain only the set of Unicode letters, digits, white-space, '_', '.', ':', '/', '=', '+', '-', '@' (Java regex: "^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$").
|
|
75
74
|
* @minLength `1`
|
|
76
75
|
* @maxLength `128`
|
|
77
76
|
*/
|
|
78
77
|
Key: string;
|
|
79
78
|
/**
|
|
80
|
-
*
|
|
79
|
+
* A value is the optional value of the tag. The string value can be from 1 to 256 Unicode characters in length and can't be prefixed with ``aws:`` or ``rds:``. The string can only contain only the set of Unicode letters, digits, white-space, '_', '.', ':', '/', '=', '+', '-', '@' (Java regex: "^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$").
|
|
81
80
|
* @minLength `0`
|
|
82
81
|
* @maxLength `256`
|
|
83
82
|
*/
|
|
@@ -85,7 +84,7 @@ export type Tag = {
|
|
|
85
84
|
};
|
|
86
85
|
/**
|
|
87
86
|
* Resource type definition for `AWS::RDS::Integration`.
|
|
88
|
-
*
|
|
87
|
+
* A zero-ETL integration with Amazon Redshift.
|
|
89
88
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-integration.html}
|
|
90
89
|
*/
|
|
91
90
|
export declare class RDSIntegration extends $Resource<"AWS::RDS::Integration", RDSIntegrationProperties, RDSIntegrationAttributes> {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
3
|
* Resource type definition for `AWS::RDS::Integration`.
|
|
4
|
-
*
|
|
4
|
+
* A zero-ETL integration with Amazon Redshift.
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-integration.html}
|
|
6
6
|
*/
|
|
7
7
|
export class RDSIntegration extends $Resource {
|
|
@@ -62,6 +62,12 @@ export type ResourceSpec = {
|
|
|
62
62
|
* The instance type that the image version runs on.
|
|
63
63
|
*/
|
|
64
64
|
InstanceType?: "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.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.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.p3dn.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.g5.xlarge" | "ml.g5.2xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.12xlarge" | "ml.g5.16xlarge" | "ml.g5.24xlarge" | "ml.g5.48xlarge" | "ml.p4d.24xlarge" | "ml.p4de.24xlarge" | "ml.geospatial.interactive" | "ml.trn1.2xlarge" | "ml.trn1.32xlarge" | "ml.trn1n.32xlarge";
|
|
65
|
+
/**
|
|
66
|
+
* The Amazon Resource Name (ARN) of the Lifecycle Configuration to attach to the Resource.
|
|
67
|
+
* @maxLength `256`
|
|
68
|
+
* @pattern `arn:aws[a-z\-]*:sagemaker:[a-z0-9\-]*:[0-9]{12}:studio-lifecycle-config/.*`
|
|
69
|
+
*/
|
|
70
|
+
LifecycleConfigArn?: string;
|
|
65
71
|
/**
|
|
66
72
|
* The ARN of the SageMaker image that the image version belongs to.
|
|
67
73
|
* @minLength `1`
|
|
@@ -358,6 +358,12 @@ export type JupyterLabAppSettings = {
|
|
|
358
358
|
*/
|
|
359
359
|
export type JupyterServerAppSettings = {
|
|
360
360
|
DefaultResourceSpec?: ResourceSpec;
|
|
361
|
+
/**
|
|
362
|
+
* A list of LifecycleConfigArns available for use with JupyterServer apps.
|
|
363
|
+
* @minLength `0`
|
|
364
|
+
* @maxLength `30`
|
|
365
|
+
*/
|
|
366
|
+
LifecycleConfigArns?: string[];
|
|
361
367
|
};
|
|
362
368
|
/**
|
|
363
369
|
* Type definition for `AWS::SageMaker::Domain.KernelGatewayAppSettings`.
|
|
@@ -375,6 +381,12 @@ export type KernelGatewayAppSettings = {
|
|
|
375
381
|
* The default instance type and the Amazon Resource Name (ARN) of the default SageMaker image used by the KernelGateway app.
|
|
376
382
|
*/
|
|
377
383
|
DefaultResourceSpec?: ResourceSpec;
|
|
384
|
+
/**
|
|
385
|
+
* A list of LifecycleConfigArns available for use with KernelGateway apps.
|
|
386
|
+
* @minLength `0`
|
|
387
|
+
* @maxLength `30`
|
|
388
|
+
*/
|
|
389
|
+
LifecycleConfigArns?: string[];
|
|
378
390
|
};
|
|
379
391
|
/**
|
|
380
392
|
* Type definition for `AWS::SageMaker::Domain.MlTools`.
|
|
@@ -37,6 +37,13 @@ export type ContainerDefinition = {
|
|
|
37
37
|
ModelPackageName?: string;
|
|
38
38
|
MultiModelConfig?: MultiModelConfig;
|
|
39
39
|
};
|
|
40
|
+
/**
|
|
41
|
+
* Type definition for `AWS::SageMaker::Model.HubAccessConfig`.
|
|
42
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-hubaccessconfig.html}
|
|
43
|
+
*/
|
|
44
|
+
export type HubAccessConfig = {
|
|
45
|
+
HubContentArn: string;
|
|
46
|
+
};
|
|
40
47
|
/**
|
|
41
48
|
* Type definition for `AWS::SageMaker::Model.ImageConfig`.
|
|
42
49
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-imageconfig.html}
|
|
@@ -86,6 +93,7 @@ export type RepositoryAuthConfig = {
|
|
|
86
93
|
*/
|
|
87
94
|
export type S3DataSource = {
|
|
88
95
|
CompressionType: string;
|
|
96
|
+
HubAccessConfig?: HubAccessConfig;
|
|
89
97
|
ModelAccessConfig?: ModelAccessConfig;
|
|
90
98
|
S3DataType: string;
|
|
91
99
|
S3Uri: string;
|
|
@@ -131,6 +131,12 @@ export type EFSFileSystem = {
|
|
|
131
131
|
*/
|
|
132
132
|
export type JupyterServerAppSettings = {
|
|
133
133
|
DefaultResourceSpec?: ResourceSpec;
|
|
134
|
+
/**
|
|
135
|
+
* A list of LifecycleConfigArns available for use with JupyterServer apps.
|
|
136
|
+
* @minLength `0`
|
|
137
|
+
* @maxLength `30`
|
|
138
|
+
*/
|
|
139
|
+
LifecycleConfigArns?: string[];
|
|
134
140
|
};
|
|
135
141
|
/**
|
|
136
142
|
* Type definition for `AWS::SageMaker::Space.KernelGatewayAppSettings`.
|
|
@@ -148,6 +154,12 @@ export type KernelGatewayAppSettings = {
|
|
|
148
154
|
* The default instance type and the Amazon Resource Name (ARN) of the default SageMaker image used by the KernelGateway app.
|
|
149
155
|
*/
|
|
150
156
|
DefaultResourceSpec?: ResourceSpec;
|
|
157
|
+
/**
|
|
158
|
+
* A list of LifecycleConfigArns available for use with KernelGateway apps.
|
|
159
|
+
* @minLength `0`
|
|
160
|
+
* @maxLength `30`
|
|
161
|
+
*/
|
|
162
|
+
LifecycleConfigArns?: string[];
|
|
151
163
|
};
|
|
152
164
|
/**
|
|
153
165
|
* Type definition for `AWS::SageMaker::Space.OwnershipSettings`.
|
|
@@ -169,6 +181,12 @@ export type ResourceSpec = {
|
|
|
169
181
|
* The instance type that the image version runs on.
|
|
170
182
|
*/
|
|
171
183
|
InstanceType?: "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.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.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.p3dn.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.g5.xlarge" | "ml.g5.2xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.12xlarge" | "ml.g5.16xlarge" | "ml.g5.24xlarge" | "ml.g5.48xlarge" | "ml.p4d.24xlarge" | "ml.p4de.24xlarge" | "ml.geospatial.interactive" | "ml.trn1.2xlarge" | "ml.trn1.32xlarge" | "ml.trn1n.32xlarge";
|
|
184
|
+
/**
|
|
185
|
+
* The Amazon Resource Name (ARN) of the Lifecycle Configuration to attach to the Resource.
|
|
186
|
+
* @maxLength `256`
|
|
187
|
+
* @pattern `arn:aws[a-z\-]*:sagemaker:[a-z0-9\-]*:[0-9]{12}:studio-lifecycle-config/.*`
|
|
188
|
+
*/
|
|
189
|
+
LifecycleConfigArn?: string;
|
|
172
190
|
/**
|
|
173
191
|
* The ARN of the SageMaker image that the image version belongs to.
|
|
174
192
|
* @maxLength `256`
|
|
@@ -222,6 +222,12 @@ export type JupyterLabAppSettings = {
|
|
|
222
222
|
*/
|
|
223
223
|
export type JupyterServerAppSettings = {
|
|
224
224
|
DefaultResourceSpec?: ResourceSpec;
|
|
225
|
+
/**
|
|
226
|
+
* A list of LifecycleConfigArns available for use with JupyterServer apps.
|
|
227
|
+
* @minLength `0`
|
|
228
|
+
* @maxLength `30`
|
|
229
|
+
*/
|
|
230
|
+
LifecycleConfigArns?: string[];
|
|
225
231
|
};
|
|
226
232
|
/**
|
|
227
233
|
* Type definition for `AWS::SageMaker::UserProfile.KernelGatewayAppSettings`.
|
|
@@ -239,6 +245,12 @@ export type KernelGatewayAppSettings = {
|
|
|
239
245
|
* The default instance type and the Amazon Resource Name (ARN) of the default SageMaker image used by the KernelGateway app.
|
|
240
246
|
*/
|
|
241
247
|
DefaultResourceSpec?: ResourceSpec;
|
|
248
|
+
/**
|
|
249
|
+
* A list of LifecycleConfigArns available for use with KernelGateway apps.
|
|
250
|
+
* @minLength `0`
|
|
251
|
+
* @maxLength `30`
|
|
252
|
+
*/
|
|
253
|
+
LifecycleConfigArns?: string[];
|
|
242
254
|
};
|
|
243
255
|
/**
|
|
244
256
|
* Type definition for `AWS::SageMaker::UserProfile.MlTools`.
|
|
@@ -254,6 +266,12 @@ export type ResourceSpec = {
|
|
|
254
266
|
* The instance type that the image version runs on.
|
|
255
267
|
*/
|
|
256
268
|
InstanceType?: "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.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.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.p3dn.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.g5.xlarge" | "ml.g5.2xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.12xlarge" | "ml.g5.16xlarge" | "ml.g5.24xlarge" | "ml.g5.48xlarge" | "ml.p4d.24xlarge" | "ml.p4de.24xlarge" | "ml.geospatial.interactive" | "ml.trn1.2xlarge" | "ml.trn1.32xlarge" | "ml.trn1n.32xlarge";
|
|
269
|
+
/**
|
|
270
|
+
* The Amazon Resource Name (ARN) of the Lifecycle Configuration to attach to the Resource.
|
|
271
|
+
* @maxLength `256`
|
|
272
|
+
* @pattern `arn:aws[a-z\-]*:sagemaker:[a-z0-9\-]*:[0-9]{12}:studio-lifecycle-config/.*`
|
|
273
|
+
*/
|
|
274
|
+
LifecycleConfigArn?: string;
|
|
257
275
|
/**
|
|
258
276
|
* The ARN of the SageMaker image that the image version belongs to.
|
|
259
277
|
* @maxLength `256`
|