@awboost/cfn-resource-types 0.1.108 → 0.1.110
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-Cognito-UserPoolUICustomizationAttachment.d.ts +1 -8
- package/lib/AWS-EntityResolution-IdMappingWorkflow.d.ts +36 -3
- package/lib/AWS-EntityResolution-IdNamespace.d.ts +43 -1
- package/lib/AWS-EntityResolution-MatchingWorkflow.d.ts +7 -1
- package/lib/AWS-EntityResolution-SchemaMapping.d.ts +1 -0
- package/lib/AWS-SageMaker-Domain.d.ts +31 -0
- package/lib/AWS-SageMaker-UserProfile.d.ts +31 -0
- package/package.json +1 -1
|
@@ -9,18 +9,11 @@ export type CognitoUserPoolUICustomizationAttachmentProperties = {
|
|
|
9
9
|
ClientId: string;
|
|
10
10
|
UserPoolId: string;
|
|
11
11
|
};
|
|
12
|
-
/**
|
|
13
|
-
* Attribute type definition for `AWS::Cognito::UserPoolUICustomizationAttachment`.
|
|
14
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html#aws-resource-cognito-userpooluicustomizationattachment-return-values}
|
|
15
|
-
*/
|
|
16
|
-
export type CognitoUserPoolUICustomizationAttachmentAttributes = {
|
|
17
|
-
Id: string;
|
|
18
|
-
};
|
|
19
12
|
/**
|
|
20
13
|
* Resource Type definition for AWS::Cognito::UserPoolUICustomizationAttachment
|
|
21
14
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluicustomizationattachment.html}
|
|
22
15
|
*/
|
|
23
|
-
export declare class CognitoUserPoolUICustomizationAttachment extends $Resource<"AWS::Cognito::UserPoolUICustomizationAttachment", CognitoUserPoolUICustomizationAttachmentProperties,
|
|
16
|
+
export declare class CognitoUserPoolUICustomizationAttachment extends $Resource<"AWS::Cognito::UserPoolUICustomizationAttachment", CognitoUserPoolUICustomizationAttachmentProperties, Record<string, never>> {
|
|
24
17
|
static readonly Type = "AWS::Cognito::UserPoolUICustomizationAttachment";
|
|
25
18
|
constructor(logicalId: string, properties: CognitoUserPoolUICustomizationAttachmentProperties, options?: $ResourceOptions);
|
|
26
19
|
}
|
|
@@ -59,13 +59,29 @@ export type EntityResolutionIdMappingWorkflowAttributes = {
|
|
|
59
59
|
*/
|
|
60
60
|
WorkflowArn: string;
|
|
61
61
|
};
|
|
62
|
+
/**
|
|
63
|
+
* Type definition for `AWS::EntityResolution::IdMappingWorkflow.IdMappingRuleBasedProperties`.
|
|
64
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-idmappingrulebasedproperties.html}
|
|
65
|
+
*/
|
|
66
|
+
export type IdMappingRuleBasedProperties = {
|
|
67
|
+
AttributeMatchingModel: "ONE_TO_ONE" | "MANY_TO_MANY";
|
|
68
|
+
RecordMatchingModel: "ONE_SOURCE_TO_ONE_TARGET" | "MANY_SOURCE_TO_ONE_TARGET";
|
|
69
|
+
RuleDefinitionType?: "SOURCE" | "TARGET";
|
|
70
|
+
/**
|
|
71
|
+
* @minLength `1`
|
|
72
|
+
* @maxLength `25`
|
|
73
|
+
*/
|
|
74
|
+
Rules?: Rule[];
|
|
75
|
+
};
|
|
62
76
|
/**
|
|
63
77
|
* Type definition for `AWS::EntityResolution::IdMappingWorkflow.IdMappingTechniques`.
|
|
64
78
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-idmappingtechniques.html}
|
|
65
79
|
*/
|
|
66
80
|
export type IdMappingTechniques = {
|
|
67
|
-
IdMappingType?: "PROVIDER";
|
|
81
|
+
IdMappingType?: "PROVIDER" | "RULE_BASED";
|
|
82
|
+
NormalizationVersion?: string;
|
|
68
83
|
ProviderProperties?: ProviderProperties;
|
|
84
|
+
RuleBasedProperties?: IdMappingRuleBasedProperties;
|
|
69
85
|
};
|
|
70
86
|
/**
|
|
71
87
|
* Type definition for `AWS::EntityResolution::IdMappingWorkflow.IdMappingWorkflowInputSource`.
|
|
@@ -73,8 +89,8 @@ export type IdMappingTechniques = {
|
|
|
73
89
|
*/
|
|
74
90
|
export type IdMappingWorkflowInputSource = {
|
|
75
91
|
/**
|
|
76
|
-
* An Glue table ARN for the input source table or IdNamespace ARN
|
|
77
|
-
* @pattern
|
|
92
|
+
* An Glue table ARN for the input source table, MatchingWorkflow arn or IdNamespace ARN
|
|
93
|
+
* @pattern `^arn:(aws|aws-us-gov|aws-cn):entityresolution:[a-z]{2}-[a-z]{1,10}-[0-9]:[0-9]{12}:(idnamespace/[a-zA-Z_0-9-]{1,255})$|^arn:(aws|aws-us-gov|aws-cn):entityresolution:[a-z]{2}-[a-z]{1,10}-[0-9]:[0-9]{12}:(matchingworkflow/[a-zA-Z_0-9-]{1,255})$|^arn:(aws|aws-us-gov|aws-cn):glue:[a-z]{2}-[a-z]{1,10}-[0-9]:[0-9]{12}:(table/[a-zA-Z_0-9-]{1,255}/[a-zA-Z_0-9-]{1,255})$`
|
|
78
94
|
*/
|
|
79
95
|
InputSourceARN: string;
|
|
80
96
|
/**
|
|
@@ -125,6 +141,23 @@ export type ProviderProperties = {
|
|
|
125
141
|
*/
|
|
126
142
|
ProviderServiceArn: string;
|
|
127
143
|
};
|
|
144
|
+
/**
|
|
145
|
+
* Type definition for `AWS::EntityResolution::IdMappingWorkflow.Rule`.
|
|
146
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-rule.html}
|
|
147
|
+
*/
|
|
148
|
+
export type Rule = {
|
|
149
|
+
/**
|
|
150
|
+
* @minLength `1`
|
|
151
|
+
* @maxLength `15`
|
|
152
|
+
*/
|
|
153
|
+
MatchingKeys: string[];
|
|
154
|
+
/**
|
|
155
|
+
* @minLength `0`
|
|
156
|
+
* @maxLength `255`
|
|
157
|
+
* @pattern `^[a-zA-Z_0-9- \t]*$`
|
|
158
|
+
*/
|
|
159
|
+
RuleName: string;
|
|
160
|
+
};
|
|
128
161
|
/**
|
|
129
162
|
* Type definition for `AWS::EntityResolution::IdMappingWorkflow.Tag`.
|
|
130
163
|
* A key-value pair to associate with a resource
|
|
@@ -64,8 +64,9 @@ export type EntityResolutionIdNamespaceAttributes = {
|
|
|
64
64
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idnamespace-idnamespaceidmappingworkflowproperties.html}
|
|
65
65
|
*/
|
|
66
66
|
export type IdNamespaceIdMappingWorkflowProperties = {
|
|
67
|
-
IdMappingType: "PROVIDER";
|
|
67
|
+
IdMappingType: "PROVIDER" | "RULE_BASED";
|
|
68
68
|
ProviderProperties?: NamespaceProviderProperties;
|
|
69
|
+
RuleBasedProperties?: NamespaceRuleBasedProperties;
|
|
69
70
|
};
|
|
70
71
|
/**
|
|
71
72
|
* Type definition for `AWS::EntityResolution::IdNamespace.IdNamespaceInputSource`.
|
|
@@ -99,6 +100,47 @@ export type NamespaceProviderProperties = {
|
|
|
99
100
|
*/
|
|
100
101
|
ProviderServiceArn: string;
|
|
101
102
|
};
|
|
103
|
+
/**
|
|
104
|
+
* Type definition for `AWS::EntityResolution::IdNamespace.NamespaceRuleBasedProperties`.
|
|
105
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idnamespace-namespacerulebasedproperties.html}
|
|
106
|
+
*/
|
|
107
|
+
export type NamespaceRuleBasedProperties = {
|
|
108
|
+
AttributeMatchingModel?: "ONE_TO_ONE" | "MANY_TO_MANY";
|
|
109
|
+
RecordMatchingModels?: RecordMatchingModel[];
|
|
110
|
+
RuleDefinitionTypes?: RuleDefinitionType[];
|
|
111
|
+
/**
|
|
112
|
+
* @minLength `1`
|
|
113
|
+
* @maxLength `25`
|
|
114
|
+
*/
|
|
115
|
+
Rules?: Rule[];
|
|
116
|
+
};
|
|
117
|
+
/**
|
|
118
|
+
* Type definition for `AWS::EntityResolution::IdNamespace.RecordMatchingModel`.
|
|
119
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idnamespace-recordmatchingmodel.html}
|
|
120
|
+
*/
|
|
121
|
+
export type RecordMatchingModel = "ONE_SOURCE_TO_ONE_TARGET" | "MANY_SOURCE_TO_ONE_TARGET";
|
|
122
|
+
/**
|
|
123
|
+
* Type definition for `AWS::EntityResolution::IdNamespace.Rule`.
|
|
124
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idnamespace-rule.html}
|
|
125
|
+
*/
|
|
126
|
+
export type Rule = {
|
|
127
|
+
/**
|
|
128
|
+
* @minLength `1`
|
|
129
|
+
* @maxLength `25`
|
|
130
|
+
*/
|
|
131
|
+
MatchingKeys: string[];
|
|
132
|
+
/**
|
|
133
|
+
* @minLength `0`
|
|
134
|
+
* @maxLength `255`
|
|
135
|
+
* @pattern `^[a-zA-Z_0-9- \t]*$`
|
|
136
|
+
*/
|
|
137
|
+
RuleName: string;
|
|
138
|
+
};
|
|
139
|
+
/**
|
|
140
|
+
* Type definition for `AWS::EntityResolution::IdNamespace.RuleDefinitionType`.
|
|
141
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idnamespace-ruledefinitiontype.html}
|
|
142
|
+
*/
|
|
143
|
+
export type RuleDefinitionType = "SOURCE" | "TARGET";
|
|
102
144
|
/**
|
|
103
145
|
* Type definition for `AWS::EntityResolution::IdNamespace.Tag`.
|
|
104
146
|
* A key-value pair to associate with a resource.
|
|
@@ -141,9 +141,14 @@ export type ProviderProperties = {
|
|
|
141
141
|
*/
|
|
142
142
|
export type ResolutionTechniques = {
|
|
143
143
|
ProviderProperties?: ProviderProperties;
|
|
144
|
-
ResolutionType?:
|
|
144
|
+
ResolutionType?: ResolutionType;
|
|
145
145
|
RuleBasedProperties?: RuleBasedProperties;
|
|
146
146
|
};
|
|
147
|
+
/**
|
|
148
|
+
* Type definition for `AWS::EntityResolution::MatchingWorkflow.ResolutionType`.
|
|
149
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-resolutiontype.html}
|
|
150
|
+
*/
|
|
151
|
+
export type ResolutionType = "RULE_MATCHING" | "ML_MATCHING" | "PROVIDER";
|
|
147
152
|
/**
|
|
148
153
|
* Type definition for `AWS::EntityResolution::MatchingWorkflow.Rule`.
|
|
149
154
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-rule.html}
|
|
@@ -167,6 +172,7 @@ export type Rule = {
|
|
|
167
172
|
*/
|
|
168
173
|
export type RuleBasedProperties = {
|
|
169
174
|
AttributeMatchingModel: "ONE_TO_ONE" | "MANY_TO_MANY";
|
|
175
|
+
MatchPurpose?: "IDENTIFIER_GENERATION" | "INDEXING";
|
|
170
176
|
/**
|
|
171
177
|
* @minLength `1`
|
|
172
178
|
* @maxLength `15`
|
|
@@ -104,6 +104,11 @@ export type SageMakerDomainAttributes = {
|
|
|
104
104
|
*/
|
|
105
105
|
Url: string;
|
|
106
106
|
};
|
|
107
|
+
/**
|
|
108
|
+
* Type definition for `AWS::SageMaker::Domain.AppType`.
|
|
109
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-apptype.html}
|
|
110
|
+
*/
|
|
111
|
+
export type AppType = "JupyterServer" | "TensorBoard" | "RStudioServerPro" | "JupyterLab" | "CodeEditor" | "DetailedProfiler" | "Canvas";
|
|
107
112
|
/**
|
|
108
113
|
* Type definition for `AWS::SageMaker::Domain.CodeEditorAppSettings`.
|
|
109
114
|
* The CodeEditor app settings.
|
|
@@ -371,6 +376,11 @@ export type KernelGatewayAppSettings = {
|
|
|
371
376
|
*/
|
|
372
377
|
DefaultResourceSpec?: ResourceSpec;
|
|
373
378
|
};
|
|
379
|
+
/**
|
|
380
|
+
* Type definition for `AWS::SageMaker::Domain.MlTools`.
|
|
381
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-mltools.html}
|
|
382
|
+
*/
|
|
383
|
+
export type MlTools = "DataWrangler" | "FeatureStore" | "EmrClusters" | "AutoML" | "Experiments" | "Training" | "ModelEvaluation" | "Pipelines" | "Models" | "JumpStart" | "InferenceRecommender" | "Endpoints" | "Projects";
|
|
374
384
|
/**
|
|
375
385
|
* Type definition for `AWS::SageMaker::Domain.ResourceSpec`.
|
|
376
386
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-resourcespec.html}
|
|
@@ -476,6 +486,23 @@ export type SharingSettings = {
|
|
|
476
486
|
*/
|
|
477
487
|
S3OutputPath?: string;
|
|
478
488
|
};
|
|
489
|
+
/**
|
|
490
|
+
* Type definition for `AWS::SageMaker::Domain.StudioWebPortalSettings`.
|
|
491
|
+
* Studio settings. If these settings are applied on a user level, they take priority over the settings applied on a domain level.
|
|
492
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-studiowebportalsettings.html}
|
|
493
|
+
*/
|
|
494
|
+
export type StudioWebPortalSettings = {
|
|
495
|
+
/**
|
|
496
|
+
* Applications supported in Studio that are hidden from the Studio left navigation pane.
|
|
497
|
+
* @minLength `0`
|
|
498
|
+
*/
|
|
499
|
+
HiddenAppTypes?: AppType[];
|
|
500
|
+
/**
|
|
501
|
+
* The machine learning tools that are hidden from the Studio left navigation pane.
|
|
502
|
+
* @minLength `0`
|
|
503
|
+
*/
|
|
504
|
+
HiddenMlTools?: MlTools[];
|
|
505
|
+
};
|
|
479
506
|
/**
|
|
480
507
|
* Type definition for `AWS::SageMaker::Domain.Tag`.
|
|
481
508
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-tag.html}
|
|
@@ -558,6 +585,10 @@ export type UserSettings = {
|
|
|
558
585
|
* Indicates whether the Studio experience is available to users. If not, users cannot access Studio.
|
|
559
586
|
*/
|
|
560
587
|
StudioWebPortal?: "ENABLED" | "DISABLED";
|
|
588
|
+
/**
|
|
589
|
+
* Studio settings. If these settings are applied on a user level, they take priority over the settings applied on a domain level.
|
|
590
|
+
*/
|
|
591
|
+
StudioWebPortalSettings?: StudioWebPortalSettings;
|
|
561
592
|
};
|
|
562
593
|
/**
|
|
563
594
|
* Resource Type definition for AWS::SageMaker::Domain
|
|
@@ -51,6 +51,11 @@ export type SageMakerUserProfileAttributes = {
|
|
|
51
51
|
*/
|
|
52
52
|
UserProfileArn: string;
|
|
53
53
|
};
|
|
54
|
+
/**
|
|
55
|
+
* Type definition for `AWS::SageMaker::UserProfile.AppType`.
|
|
56
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-apptype.html}
|
|
57
|
+
*/
|
|
58
|
+
export type AppType = "JupyterServer" | "TensorBoard" | "RStudioServerPro" | "JupyterLab" | "CodeEditor" | "DetailedProfiler" | "Canvas";
|
|
54
59
|
/**
|
|
55
60
|
* Type definition for `AWS::SageMaker::UserProfile.CodeEditorAppSettings`.
|
|
56
61
|
* The CodeEditor app settings.
|
|
@@ -235,6 +240,11 @@ export type KernelGatewayAppSettings = {
|
|
|
235
240
|
*/
|
|
236
241
|
DefaultResourceSpec?: ResourceSpec;
|
|
237
242
|
};
|
|
243
|
+
/**
|
|
244
|
+
* Type definition for `AWS::SageMaker::UserProfile.MlTools`.
|
|
245
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-mltools.html}
|
|
246
|
+
*/
|
|
247
|
+
export type MlTools = "DataWrangler" | "FeatureStore" | "EmrClusters" | "AutoML" | "Experiments" | "Training" | "ModelEvaluation" | "Pipelines" | "Models" | "JumpStart" | "InferenceRecommender" | "Endpoints" | "Projects";
|
|
238
248
|
/**
|
|
239
249
|
* Type definition for `AWS::SageMaker::UserProfile.ResourceSpec`.
|
|
240
250
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-resourcespec.html}
|
|
@@ -295,6 +305,23 @@ export type SharingSettings = {
|
|
|
295
305
|
*/
|
|
296
306
|
S3OutputPath?: string;
|
|
297
307
|
};
|
|
308
|
+
/**
|
|
309
|
+
* Type definition for `AWS::SageMaker::UserProfile.StudioWebPortalSettings`.
|
|
310
|
+
* Studio settings. If these settings are applied on a user level, they take priority over the settings applied on a domain level.
|
|
311
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-studiowebportalsettings.html}
|
|
312
|
+
*/
|
|
313
|
+
export type StudioWebPortalSettings = {
|
|
314
|
+
/**
|
|
315
|
+
* Applications supported in Studio that are hidden from the Studio left navigation pane.
|
|
316
|
+
* @minLength `0`
|
|
317
|
+
*/
|
|
318
|
+
HiddenAppTypes?: AppType[];
|
|
319
|
+
/**
|
|
320
|
+
* The machine learning tools that are hidden from the Studio left navigation pane.
|
|
321
|
+
* @minLength `0`
|
|
322
|
+
*/
|
|
323
|
+
HiddenMlTools?: MlTools[];
|
|
324
|
+
};
|
|
298
325
|
/**
|
|
299
326
|
* Type definition for `AWS::SageMaker::UserProfile.Tag`.
|
|
300
327
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-tag.html}
|
|
@@ -373,6 +400,10 @@ export type UserSettings = {
|
|
|
373
400
|
* Indicates whether the Studio experience is available to users. If not, users cannot access Studio.
|
|
374
401
|
*/
|
|
375
402
|
StudioWebPortal?: "ENABLED" | "DISABLED";
|
|
403
|
+
/**
|
|
404
|
+
* Studio settings. If these settings are applied on a user level, they take priority over the settings applied on a domain level.
|
|
405
|
+
*/
|
|
406
|
+
StudioWebPortalSettings?: StudioWebPortalSettings;
|
|
376
407
|
};
|
|
377
408
|
/**
|
|
378
409
|
* Resource Type definition for AWS::SageMaker::UserProfile
|