cdk-comprehend-s3olap 2.0.64 → 2.0.67
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/.jsii +5 -5
- package/lib/cdk-comprehend-s3olap.js +2 -2
- package/lib/comprehend-lambdas.js +2 -2
- package/lib/iam-roles.js +4 -4
- package/node_modules/aws-sdk/CHANGELOG.md +12 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/amp-2020-08-01.min.json +176 -20
- package/node_modules/aws-sdk/apis/backupstorage-2018-04-10.examples.json +5 -0
- package/node_modules/aws-sdk/apis/backupstorage-2018-04-10.min.json +522 -0
- package/node_modules/aws-sdk/apis/backupstorage-2018-04-10.paginators.json +14 -0
- package/node_modules/aws-sdk/apis/chime-sdk-messaging-2021-05-15.min.json +265 -136
- package/node_modules/aws-sdk/apis/chime-sdk-messaging-2021-05-15.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/metadata.json +6 -0
- package/node_modules/aws-sdk/apis/personalize-runtime-2018-05-22.min.json +19 -2
- package/node_modules/aws-sdk/apis/privatenetworks-2021-12-03.examples.json +5 -0
- package/node_modules/aws-sdk/apis/privatenetworks-2021-12-03.min.json +1058 -0
- package/node_modules/aws-sdk/apis/privatenetworks-2021-12-03.paginators.json +34 -0
- package/node_modules/aws-sdk/clients/all.d.ts +2 -0
- package/node_modules/aws-sdk/clients/all.js +3 -1
- package/node_modules/aws-sdk/clients/amp.d.ts +128 -0
- package/node_modules/aws-sdk/clients/backupstorage.d.ts +469 -0
- package/node_modules/aws-sdk/clients/backupstorage.js +18 -0
- package/node_modules/aws-sdk/clients/chimesdkmessaging.d.ts +178 -0
- package/node_modules/aws-sdk/clients/ivs.d.ts +31 -31
- package/node_modules/aws-sdk/clients/personalizeruntime.d.ts +30 -1
- package/node_modules/aws-sdk/clients/privatenetworks.d.ts +1092 -0
- package/node_modules/aws-sdk/clients/privatenetworks.js +18 -0
- package/node_modules/aws-sdk/clients/rds.d.ts +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +82 -8
- package/node_modules/aws-sdk/dist/aws-sdk.js +28 -5
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +33 -33
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +4 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/node_modules/esbuild/install.js +4 -4
- package/node_modules/esbuild/lib/main.js +7 -7
- package/node_modules/esbuild/package.json +22 -22
- package/node_modules/esbuild-linux-64/bin/esbuild +0 -0
- package/node_modules/esbuild-linux-64/package.json +1 -1
- package/package.json +8 -8
@@ -98,13 +98,17 @@ declare namespace PersonalizeRuntime {
|
|
98
98
|
*/
|
99
99
|
filterArn?: Arn;
|
100
100
|
/**
|
101
|
-
* The values to use when filtering recommendations. For each placeholder parameter in your filter expression, provide the parameter name (in matching case) as a key and the filter value(s) as the corresponding value. Separate multiple values for one parameter with a comma. For filter expressions that use an INCLUDE element to include items, you must provide values for all parameters that are defined in the expression. For filters with expressions that use an EXCLUDE element to exclude items, you can omit the filter-values.In this case, Amazon Personalize doesn't use that portion of the expression to filter recommendations. For more information, see Filtering
|
101
|
+
* The values to use when filtering recommendations. For each placeholder parameter in your filter expression, provide the parameter name (in matching case) as a key and the filter value(s) as the corresponding value. Separate multiple values for one parameter with a comma. For filter expressions that use an INCLUDE element to include items, you must provide values for all parameters that are defined in the expression. For filters with expressions that use an EXCLUDE element to exclude items, you can omit the filter-values.In this case, Amazon Personalize doesn't use that portion of the expression to filter recommendations. For more information, see Filtering recommendations and user segments.
|
102
102
|
*/
|
103
103
|
filterValues?: FilterValues;
|
104
104
|
/**
|
105
105
|
* The Amazon Resource Name (ARN) of the recommender to use to get recommendations. Provide a recommender ARN if you created a Domain dataset group with a recommender for a domain use case.
|
106
106
|
*/
|
107
107
|
recommenderArn?: Arn;
|
108
|
+
/**
|
109
|
+
* The promotions to apply to the recommendation request. A promotion defines additional business rules that apply to a configurable subset of recommended items.
|
110
|
+
*/
|
111
|
+
promotions?: PromotionList;
|
108
112
|
}
|
109
113
|
export interface GetRecommendationsResponse {
|
110
114
|
/**
|
@@ -119,7 +123,9 @@ declare namespace PersonalizeRuntime {
|
|
119
123
|
export type InputList = ItemID[];
|
120
124
|
export type ItemID = string;
|
121
125
|
export type ItemList = PredictedItem[];
|
126
|
+
export type Name = string;
|
122
127
|
export type NumResults = number;
|
128
|
+
export type PercentPromotedItems = number;
|
123
129
|
export interface PredictedItem {
|
124
130
|
/**
|
125
131
|
* The recommended item ID.
|
@@ -129,7 +135,30 @@ declare namespace PersonalizeRuntime {
|
|
129
135
|
* A numeric representation of the model's certainty that the item will be the next user selection. For more information on scoring logic, see how-scores-work.
|
130
136
|
*/
|
131
137
|
score?: Score;
|
138
|
+
/**
|
139
|
+
* The name of the promotion that included the predicted item.
|
140
|
+
*/
|
141
|
+
promotionName?: Name;
|
142
|
+
}
|
143
|
+
export interface Promotion {
|
144
|
+
/**
|
145
|
+
* The name of the promotion.
|
146
|
+
*/
|
147
|
+
name?: Name;
|
148
|
+
/**
|
149
|
+
* The percentage of recommended items to apply the promotion to.
|
150
|
+
*/
|
151
|
+
percentPromotedItems?: PercentPromotedItems;
|
152
|
+
/**
|
153
|
+
* The Amazon Resource Name (ARN) of the filter used by the promotion. This filter defines the criteria for promoted items. For more information, see Promotion filters.
|
154
|
+
*/
|
155
|
+
filterArn?: Arn;
|
156
|
+
/**
|
157
|
+
* The values to use when promoting items. For each placeholder parameter in your promotion's filter expression, provide the parameter name (in matching case) as a key and the filter value(s) as the corresponding value. Separate multiple values for one parameter with a comma. For filter expressions that use an INCLUDE element to include items, you must provide values for all parameters that are defined in the expression. For filters with expressions that use an EXCLUDE element to exclude items, you can omit the filter-values. In this case, Amazon Personalize doesn't use that portion of the expression to filter recommendations. For more information on creating filters, see Filtering recommendations and user segments.
|
158
|
+
*/
|
159
|
+
filterValues?: FilterValues;
|
132
160
|
}
|
161
|
+
export type PromotionList = Promotion[];
|
133
162
|
export type RecommendationID = string;
|
134
163
|
export type Score = number;
|
135
164
|
export type UserID = string;
|