@awboost/cfn-resource-types 0.1.118 → 0.1.119
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-Glue-Trigger.d.ts +84 -8
- 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
|
@@ -5,75 +5,151 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html}
|
|
6
6
|
*/
|
|
7
7
|
export type GlueTriggerProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* The actions initiated by this trigger.
|
|
10
|
+
*/
|
|
8
11
|
Actions: Action[];
|
|
12
|
+
/**
|
|
13
|
+
* A description of this trigger.
|
|
14
|
+
*/
|
|
9
15
|
Description?: string;
|
|
16
|
+
/**
|
|
17
|
+
* Batch condition that must be met (specified number of events received or batch time window expired) before EventBridge event trigger fires.
|
|
18
|
+
*/
|
|
10
19
|
EventBatchingCondition?: EventBatchingCondition;
|
|
20
|
+
/**
|
|
21
|
+
* The name of the trigger.
|
|
22
|
+
*/
|
|
11
23
|
Name?: string;
|
|
24
|
+
/**
|
|
25
|
+
* The predicate of this trigger, which defines when it will fire.
|
|
26
|
+
*/
|
|
12
27
|
Predicate?: Predicate;
|
|
28
|
+
/**
|
|
29
|
+
* A cron expression used to specify the schedule.
|
|
30
|
+
*/
|
|
13
31
|
Schedule?: string;
|
|
32
|
+
/**
|
|
33
|
+
* Set to true to start SCHEDULED and CONDITIONAL triggers when created. True is not supported for ON_DEMAND triggers.
|
|
34
|
+
*/
|
|
14
35
|
StartOnCreation?: boolean;
|
|
36
|
+
/**
|
|
37
|
+
* The tags to use with this trigger.
|
|
38
|
+
*/
|
|
15
39
|
Tags?: Record<string, any>;
|
|
40
|
+
/**
|
|
41
|
+
* The type of trigger that this is.
|
|
42
|
+
*/
|
|
16
43
|
Type: string;
|
|
44
|
+
/**
|
|
45
|
+
* The name of the workflow associated with the trigger.
|
|
46
|
+
*/
|
|
17
47
|
WorkflowName?: string;
|
|
18
48
|
};
|
|
19
|
-
/**
|
|
20
|
-
* Attribute type definition for `AWS::Glue::Trigger`.
|
|
21
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#aws-resource-glue-trigger-return-values}
|
|
22
|
-
*/
|
|
23
|
-
export type GlueTriggerAttributes = {
|
|
24
|
-
Id: string;
|
|
25
|
-
};
|
|
26
49
|
/**
|
|
27
50
|
* Type definition for `AWS::Glue::Trigger.Action`.
|
|
51
|
+
* The actions initiated by this trigger.
|
|
28
52
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-action.html}
|
|
29
53
|
*/
|
|
30
54
|
export type Action = {
|
|
55
|
+
/**
|
|
56
|
+
* The job arguments used when this trigger fires. For this job run, they replace the default arguments set in the job definition itself.
|
|
57
|
+
*/
|
|
31
58
|
Arguments?: Record<string, any>;
|
|
59
|
+
/**
|
|
60
|
+
* The name of the crawler to be used with this action.
|
|
61
|
+
*/
|
|
32
62
|
CrawlerName?: string;
|
|
63
|
+
/**
|
|
64
|
+
* The name of a job to be executed.
|
|
65
|
+
*/
|
|
33
66
|
JobName?: string;
|
|
67
|
+
/**
|
|
68
|
+
* Specifies configuration properties of a job run notification.
|
|
69
|
+
*/
|
|
34
70
|
NotificationProperty?: NotificationProperty;
|
|
71
|
+
/**
|
|
72
|
+
* The name of the SecurityConfiguration structure to be used with this action.
|
|
73
|
+
*/
|
|
35
74
|
SecurityConfiguration?: string;
|
|
75
|
+
/**
|
|
76
|
+
* The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours). This overrides the timeout value set in the parent job.
|
|
77
|
+
*/
|
|
36
78
|
Timeout?: number;
|
|
37
79
|
};
|
|
38
80
|
/**
|
|
39
81
|
* Type definition for `AWS::Glue::Trigger.Condition`.
|
|
82
|
+
* Defines a condition under which a trigger fires.
|
|
40
83
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-condition.html}
|
|
41
84
|
*/
|
|
42
85
|
export type Condition = {
|
|
86
|
+
/**
|
|
87
|
+
* The state of the crawler to which this condition applies.
|
|
88
|
+
*/
|
|
43
89
|
CrawlState?: string;
|
|
90
|
+
/**
|
|
91
|
+
* The name of the crawler to which this condition applies.
|
|
92
|
+
*/
|
|
44
93
|
CrawlerName?: string;
|
|
94
|
+
/**
|
|
95
|
+
* The name of the job whose JobRuns this condition applies to, and on which this trigger waits.
|
|
96
|
+
*/
|
|
45
97
|
JobName?: string;
|
|
98
|
+
/**
|
|
99
|
+
* A logical operator.
|
|
100
|
+
*/
|
|
46
101
|
LogicalOperator?: string;
|
|
102
|
+
/**
|
|
103
|
+
* The condition state. Currently, the values supported are SUCCEEDED, STOPPED, TIMEOUT, and FAILED.
|
|
104
|
+
*/
|
|
47
105
|
State?: string;
|
|
48
106
|
};
|
|
49
107
|
/**
|
|
50
108
|
* Type definition for `AWS::Glue::Trigger.EventBatchingCondition`.
|
|
109
|
+
* Batch condition that must be met (specified number of events received or batch time window expired) before EventBridge event trigger fires.
|
|
51
110
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-eventbatchingcondition.html}
|
|
52
111
|
*/
|
|
53
112
|
export type EventBatchingCondition = {
|
|
113
|
+
/**
|
|
114
|
+
* Number of events that must be received from Amazon EventBridge before EventBridge event trigger fires.
|
|
115
|
+
*/
|
|
54
116
|
BatchSize: number;
|
|
117
|
+
/**
|
|
118
|
+
* Window of time in seconds after which EventBridge event trigger fires. Window starts when first event is received.
|
|
119
|
+
*/
|
|
55
120
|
BatchWindow?: number;
|
|
56
121
|
};
|
|
57
122
|
/**
|
|
58
123
|
* Type definition for `AWS::Glue::Trigger.NotificationProperty`.
|
|
124
|
+
* Specifies configuration properties of a job run notification.
|
|
59
125
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-notificationproperty.html}
|
|
60
126
|
*/
|
|
61
127
|
export type NotificationProperty = {
|
|
128
|
+
/**
|
|
129
|
+
* After a job run starts, the number of minutes to wait before sending a job run delay notification
|
|
130
|
+
*/
|
|
62
131
|
NotifyDelayAfter?: number;
|
|
63
132
|
};
|
|
64
133
|
/**
|
|
65
134
|
* Type definition for `AWS::Glue::Trigger.Predicate`.
|
|
135
|
+
* The predicate of this trigger, which defines when it will fire.
|
|
66
136
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-predicate.html}
|
|
67
137
|
*/
|
|
68
138
|
export type Predicate = {
|
|
139
|
+
/**
|
|
140
|
+
* A list of the conditions that determine when the trigger will fire.
|
|
141
|
+
*/
|
|
69
142
|
Conditions?: Condition[];
|
|
143
|
+
/**
|
|
144
|
+
* An optional field if only one condition is listed. If multiple conditions are listed, then this field is required.
|
|
145
|
+
*/
|
|
70
146
|
Logical?: string;
|
|
71
147
|
};
|
|
72
148
|
/**
|
|
73
149
|
* Resource Type definition for AWS::Glue::Trigger
|
|
74
150
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html}
|
|
75
151
|
*/
|
|
76
|
-
export declare class GlueTrigger extends $Resource<"AWS::Glue::Trigger", GlueTriggerProperties,
|
|
152
|
+
export declare class GlueTrigger extends $Resource<"AWS::Glue::Trigger", GlueTriggerProperties, Record<string, never>> {
|
|
77
153
|
static readonly Type = "AWS::Glue::Trigger";
|
|
78
154
|
constructor(logicalId: string, properties: GlueTriggerProperties, options?: $ResourceOptions);
|
|
79
155
|
}
|
|
@@ -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`
|