@awboost/cfn-resource-types 0.1.108 → 0.1.109

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.
@@ -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 `arn:(aws|aws-us-gov|aws-cn):.*:.*:[0-9]+:.*$`
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?: "RULE_MATCHING" | "ML_MATCHING" | "PROVIDER";
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`
@@ -76,6 +76,7 @@ export type SchemaInputAttribute = {
76
76
  * @pattern `^[a-zA-Z_0-9- \t]*$`
77
77
  */
78
78
  GroupName?: string;
79
+ Hashed?: boolean;
79
80
  /**
80
81
  * @minLength `0`
81
82
  * @maxLength `255`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.108",
3
+ "version": "0.1.109",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },