cdk-iam-floyd 0.777.0 → 0.778.0

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/README.md CHANGED
@@ -16,8 +16,8 @@
16
16
  Support for:
17
17
 
18
18
  - 447 Services
19
- - 20637 Actions
20
- - 2194 Resource Types
19
+ - 20656 Actions
20
+ - 2199 Resource Types
21
21
  - 2333 Condition keys
22
22
  <!-- /stats -->
23
23
 
@@ -103,6 +103,30 @@ export declare class Profile extends PolicyStatement {
103
103
  * https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_CreateRecommender.html
104
104
  */
105
105
  toCreateRecommender(): this;
106
+ /**
107
+ * Grants permission to create a recommender filter in the domain
108
+ *
109
+ * Access Level: Write
110
+ *
111
+ * Possible conditions:
112
+ * - .ifAwsRequestTag()
113
+ * - .ifAwsTagKeys()
114
+ *
115
+ * https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_CreateRecommenderFilter.html
116
+ */
117
+ toCreateRecommenderFilter(): this;
118
+ /**
119
+ * Grants permission to create a recommender schema in the domain
120
+ *
121
+ * Access Level: Write
122
+ *
123
+ * Possible conditions:
124
+ * - .ifAwsRequestTag()
125
+ * - .ifAwsTagKeys()
126
+ *
127
+ * https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_CreateRecommenderSchema.html
128
+ */
129
+ toCreateRecommenderSchema(): this;
106
130
  /**
107
131
  * Grants permission to create a segment definition in the domain
108
132
  *
@@ -240,6 +264,22 @@ export declare class Profile extends PolicyStatement {
240
264
  * https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_DeleteRecommender.html
241
265
  */
242
266
  toDeleteRecommender(): this;
267
+ /**
268
+ * Grants permission to delete a recommender filter in the domain
269
+ *
270
+ * Access Level: Write
271
+ *
272
+ * https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_DeleteRecommenderFilter.html
273
+ */
274
+ toDeleteRecommenderFilter(): this;
275
+ /**
276
+ * Grants permission to delete a recommender schema in the domain
277
+ *
278
+ * Access Level: Write
279
+ *
280
+ * https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_DeleteRecommenderSchema.html
281
+ */
282
+ toDeleteRecommenderSchema(): this;
243
283
  /**
244
284
  * Grants permission to delete a segment definition in the domain
245
285
  *
@@ -411,6 +451,22 @@ export declare class Profile extends PolicyStatement {
411
451
  * https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_GetRecommender.html
412
452
  */
413
453
  toGetRecommender(): this;
454
+ /**
455
+ * Grants permission to get recommender filter details in the domain
456
+ *
457
+ * Access Level: Read
458
+ *
459
+ * https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_GetRecommenderFilter.html
460
+ */
461
+ toGetRecommenderFilter(): this;
462
+ /**
463
+ * Grants permission to get recommender schema details in the domain
464
+ *
465
+ * Access Level: Read
466
+ *
467
+ * https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_GetRecommenderSchema.html
468
+ */
469
+ toGetRecommenderSchema(): this;
414
470
  /**
415
471
  * Grants permission to get a segment definition in the domain
416
472
  *
@@ -633,6 +689,14 @@ export declare class Profile extends PolicyStatement {
633
689
  * https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_ListProfileObjects.html
634
690
  */
635
691
  toListProfileObjects(): this;
692
+ /**
693
+ * Grants permission to list all recommender filters in the domain
694
+ *
695
+ * Access Level: List
696
+ *
697
+ * https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_ListRecommenderFilters.html
698
+ */
699
+ toListRecommenderFilters(): this;
636
700
  /**
637
701
  * Grants permission to list all the Recommenders Recipes in the domain
638
702
  *
@@ -641,6 +705,14 @@ export declare class Profile extends PolicyStatement {
641
705
  * https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_ListRecommenderRecipes.html
642
706
  */
643
707
  toListRecommenderRecipes(): this;
708
+ /**
709
+ * Grants permission to list all recommender schemas in the domain
710
+ *
711
+ * Access Level: List
712
+ *
713
+ * https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_ListRecommenderSchemas.html
714
+ */
715
+ toListRecommenderSchemas(): this;
644
716
  /**
645
717
  * Grants permission to list all the Recommenders in the domain
646
718
  *
@@ -1000,6 +1072,36 @@ export declare class Profile extends PolicyStatement {
1000
1072
  * - .ifAwsResourceTag()
1001
1073
  */
1002
1074
  onDomainObjectTypes(domainName: string, objectTypeName: string, account?: string, region?: string, partition?: string): this;
1075
+ /**
1076
+ * Adds a resource of type recommender-filters to the statement
1077
+ *
1078
+ * https://docs.aws.amazon.com/customerprofiles/latest/APIReference/
1079
+ *
1080
+ * @param domainName - Identifier for the domainName.
1081
+ * @param recommenderFilterName - Identifier for the recommenderFilterName.
1082
+ * @param account - Account of the resource; defaults to `*`, unless using the CDK, where the default is the current Stack's account.
1083
+ * @param region - Region of the resource; defaults to `*`, unless using the CDK, where the default is the current Stack's region.
1084
+ * @param partition - Partition of the AWS account [aws, aws-cn, aws-us-gov]; defaults to `aws`, unless using the CDK, where the default is the current Stack's partition.
1085
+ *
1086
+ * Possible conditions:
1087
+ * - .ifAwsResourceTag()
1088
+ */
1089
+ onRecommenderFilters(domainName: string, recommenderFilterName: string, account?: string, region?: string, partition?: string): this;
1090
+ /**
1091
+ * Adds a resource of type recommender-schemas to the statement
1092
+ *
1093
+ * https://docs.aws.amazon.com/customerprofiles/latest/APIReference/
1094
+ *
1095
+ * @param domainName - Identifier for the domainName.
1096
+ * @param recommenderSchemaName - Identifier for the recommenderSchemaName.
1097
+ * @param account - Account of the resource; defaults to `*`, unless using the CDK, where the default is the current Stack's account.
1098
+ * @param region - Region of the resource; defaults to `*`, unless using the CDK, where the default is the current Stack's region.
1099
+ * @param partition - Partition of the AWS account [aws, aws-cn, aws-us-gov]; defaults to `aws`, unless using the CDK, where the default is the current Stack's partition.
1100
+ *
1101
+ * Possible conditions:
1102
+ * - .ifAwsResourceTag()
1103
+ */
1104
+ onRecommenderSchemas(domainName: string, recommenderSchemaName: string, account?: string, region?: string, partition?: string): this;
1003
1105
  /**
1004
1106
  * Filters access by a key that is present in the request the user makes to the customer profile service
1005
1107
  *
@@ -1013,6 +1115,8 @@ export declare class Profile extends PolicyStatement {
1013
1115
  * - .toCreateEventTrigger()
1014
1116
  * - .toCreateIntegrationWorkflow()
1015
1117
  * - .toCreateRecommender()
1118
+ * - .toCreateRecommenderFilter()
1119
+ * - .toCreateRecommenderSchema()
1016
1120
  * - .toCreateSegmentDefinition()
1017
1121
  * - .toPutDomainObjectType()
1018
1122
  * - .toPutIntegration()
@@ -1040,6 +1144,8 @@ export declare class Profile extends PolicyStatement {
1040
1144
  * - layouts
1041
1145
  * - recommenders
1042
1146
  * - domain-object-types
1147
+ * - recommender-filters
1148
+ * - recommender-schemas
1043
1149
  *
1044
1150
  * @param tagKey The tag key to check
1045
1151
  * @param value The value(s) to check
@@ -1059,6 +1165,8 @@ export declare class Profile extends PolicyStatement {
1059
1165
  * - .toCreateEventTrigger()
1060
1166
  * - .toCreateIntegrationWorkflow()
1061
1167
  * - .toCreateRecommender()
1168
+ * - .toCreateRecommenderFilter()
1169
+ * - .toCreateRecommenderSchema()
1062
1170
  * - .toCreateSegmentDefinition()
1063
1171
  * - .toPutDomainObjectType()
1064
1172
  * - .toPutIntegration()