|
1580 | 1580 | }
|
1581 | 1581 | },
|
1582 | 1582 | "shapes":{
|
| 1583 | + "AccessBudget":{ |
| 1584 | + "type":"structure", |
| 1585 | + "required":[ |
| 1586 | + "resourceArn", |
| 1587 | + "details", |
| 1588 | + "aggregateRemainingBudget" |
| 1589 | + ], |
| 1590 | + "members":{ |
| 1591 | + "resourceArn":{"shape":"BudgetedResourceArn"}, |
| 1592 | + "details":{"shape":"AccessBudgetDetailsList"}, |
| 1593 | + "aggregateRemainingBudget":{"shape":"RemainingBudget"} |
| 1594 | + } |
| 1595 | + }, |
| 1596 | + "AccessBudgetDetails":{ |
| 1597 | + "type":"structure", |
| 1598 | + "required":[ |
| 1599 | + "startTime", |
| 1600 | + "remainingBudget", |
| 1601 | + "budget", |
| 1602 | + "budgetType" |
| 1603 | + ], |
| 1604 | + "members":{ |
| 1605 | + "startTime":{"shape":"Timestamp"}, |
| 1606 | + "endTime":{"shape":"Timestamp"}, |
| 1607 | + "remainingBudget":{"shape":"RemainingBudget"}, |
| 1608 | + "budget":{"shape":"Budget"}, |
| 1609 | + "budgetType":{"shape":"AccessBudgetType"}, |
| 1610 | + "autoRefresh":{"shape":"AutoRefreshMode"} |
| 1611 | + } |
| 1612 | + }, |
| 1613 | + "AccessBudgetDetailsList":{ |
| 1614 | + "type":"list", |
| 1615 | + "member":{"shape":"AccessBudgetDetails"}, |
| 1616 | + "max":2, |
| 1617 | + "min":1 |
| 1618 | + }, |
| 1619 | + "AccessBudgetType":{ |
| 1620 | + "type":"string", |
| 1621 | + "enum":[ |
| 1622 | + "CALENDAR_DAY", |
| 1623 | + "CALENDAR_MONTH", |
| 1624 | + "CALENDAR_WEEK", |
| 1625 | + "LIFETIME" |
| 1626 | + ] |
| 1627 | + }, |
| 1628 | + "AccessBudgetsPrivacyTemplateParametersInput":{ |
| 1629 | + "type":"structure", |
| 1630 | + "required":[ |
| 1631 | + "budgetParameters", |
| 1632 | + "resourceArn" |
| 1633 | + ], |
| 1634 | + "members":{ |
| 1635 | + "budgetParameters":{"shape":"BudgetParameters"}, |
| 1636 | + "resourceArn":{"shape":"BudgetedResourceArn"} |
| 1637 | + } |
| 1638 | + }, |
| 1639 | + "AccessBudgetsPrivacyTemplateParametersOutput":{ |
| 1640 | + "type":"structure", |
| 1641 | + "required":[ |
| 1642 | + "budgetParameters", |
| 1643 | + "resourceArn" |
| 1644 | + ], |
| 1645 | + "members":{ |
| 1646 | + "budgetParameters":{"shape":"BudgetParameters"}, |
| 1647 | + "resourceArn":{"shape":"BudgetedResourceArn"} |
| 1648 | + } |
| 1649 | + }, |
| 1650 | + "AccessBudgetsPrivacyTemplateUpdateParameters":{ |
| 1651 | + "type":"structure", |
| 1652 | + "required":["budgetParameters"], |
| 1653 | + "members":{ |
| 1654 | + "budgetParameters":{"shape":"BudgetParameters"} |
| 1655 | + } |
| 1656 | + }, |
1583 | 1657 | "AccessDeniedException":{
|
1584 | 1658 | "type":"structure",
|
1585 | 1659 | "members":{
|
|
2111 | 2185 | "type":"list",
|
2112 | 2186 | "member":{"shape":"AutoApprovedChangeType"}
|
2113 | 2187 | },
|
| 2188 | + "AutoRefreshMode":{ |
| 2189 | + "type":"string", |
| 2190 | + "enum":[ |
| 2191 | + "ENABLED", |
| 2192 | + "DISABLED" |
| 2193 | + ] |
| 2194 | + }, |
2114 | 2195 | "BatchGetCollaborationAnalysisTemplateError":{
|
2115 | 2196 | "type":"structure",
|
2116 | 2197 | "required":[
|
|
2266 | 2347 | "type":"boolean",
|
2267 | 2348 | "box":true
|
2268 | 2349 | },
|
| 2350 | + "Budget":{ |
| 2351 | + "type":"integer", |
| 2352 | + "box":true, |
| 2353 | + "max":1000000, |
| 2354 | + "min":0 |
| 2355 | + }, |
| 2356 | + "BudgetParameter":{ |
| 2357 | + "type":"structure", |
| 2358 | + "required":[ |
| 2359 | + "type", |
| 2360 | + "budget" |
| 2361 | + ], |
| 2362 | + "members":{ |
| 2363 | + "type":{"shape":"AccessBudgetType"}, |
| 2364 | + "budget":{"shape":"Budget"}, |
| 2365 | + "autoRefresh":{"shape":"AutoRefreshMode"} |
| 2366 | + } |
| 2367 | + }, |
| 2368 | + "BudgetParameters":{ |
| 2369 | + "type":"list", |
| 2370 | + "member":{"shape":"BudgetParameter"}, |
| 2371 | + "max":2, |
| 2372 | + "min":1 |
| 2373 | + }, |
| 2374 | + "BudgetedResourceArn":{ |
| 2375 | + "type":"string", |
| 2376 | + "max":200, |
| 2377 | + "min":0, |
| 2378 | + "pattern":"arn:aws:[\\w]+:[\\w]{2}-[\\w]{4,9}-[\\d]:[\\d]{12}:membership/[\\d\\w-]+/configuredtableassociation/[\\d\\w-]+" |
| 2379 | + }, |
2269 | 2380 | "Change":{
|
2270 | 2381 | "type":"structure",
|
2271 | 2382 | "required":[
|
|
3545 | 3656 | "type":"structure",
|
3546 | 3657 | "required":[
|
3547 | 3658 | "membershipIdentifier",
|
3548 |
| - "autoRefresh", |
3549 | 3659 | "privacyBudgetType",
|
3550 | 3660 | "parameters"
|
3551 | 3661 | ],
|
|
5124 | 5234 | "shape":"PaginationToken",
|
5125 | 5235 | "location":"querystring",
|
5126 | 5236 | "locationName":"nextToken"
|
| 5237 | + }, |
| 5238 | + "accessBudgetResourceArn":{ |
| 5239 | + "shape":"BudgetedResourceArn", |
| 5240 | + "location":"querystring", |
| 5241 | + "locationName":"accessBudgetResourceArn" |
5127 | 5242 | }
|
5128 | 5243 | }
|
5129 | 5244 | },
|
|
5414 | 5529 | "shape":"MaxResults",
|
5415 | 5530 | "location":"querystring",
|
5416 | 5531 | "locationName":"maxResults"
|
| 5532 | + }, |
| 5533 | + "accessBudgetResourceArn":{ |
| 5534 | + "shape":"BudgetedResourceArn", |
| 5535 | + "location":"querystring", |
| 5536 | + "locationName":"accessBudgetResourceArn" |
5417 | 5537 | }
|
5418 | 5538 | }
|
5419 | 5539 | },
|
|
5971 | 6091 | "PrivacyBudget":{
|
5972 | 6092 | "type":"structure",
|
5973 | 6093 | "members":{
|
5974 |
| - "differentialPrivacy":{"shape":"DifferentialPrivacyPrivacyBudget"} |
| 6094 | + "differentialPrivacy":{"shape":"DifferentialPrivacyPrivacyBudget"}, |
| 6095 | + "accessBudget":{"shape":"AccessBudget"} |
5975 | 6096 | },
|
5976 | 6097 | "union":true
|
5977 | 6098 | },
|
|
6059 | 6180 | "PrivacyBudgetTemplateParametersInput":{
|
6060 | 6181 | "type":"structure",
|
6061 | 6182 | "members":{
|
6062 |
| - "differentialPrivacy":{"shape":"DifferentialPrivacyTemplateParametersInput"} |
| 6183 | + "differentialPrivacy":{"shape":"DifferentialPrivacyTemplateParametersInput"}, |
| 6184 | + "accessBudget":{"shape":"AccessBudgetsPrivacyTemplateParametersInput"} |
6063 | 6185 | },
|
6064 | 6186 | "union":true
|
6065 | 6187 | },
|
6066 | 6188 | "PrivacyBudgetTemplateParametersOutput":{
|
6067 | 6189 | "type":"structure",
|
6068 | 6190 | "members":{
|
6069 |
| - "differentialPrivacy":{"shape":"DifferentialPrivacyTemplateParametersOutput"} |
| 6191 | + "differentialPrivacy":{"shape":"DifferentialPrivacyTemplateParametersOutput"}, |
| 6192 | + "accessBudget":{"shape":"AccessBudgetsPrivacyTemplateParametersOutput"} |
6070 | 6193 | },
|
6071 | 6194 | "union":true
|
6072 | 6195 | },
|
|
6102 | 6225 | "PrivacyBudgetTemplateUpdateParameters":{
|
6103 | 6226 | "type":"structure",
|
6104 | 6227 | "members":{
|
6105 |
| - "differentialPrivacy":{"shape":"DifferentialPrivacyTemplateUpdateParameters"} |
| 6228 | + "differentialPrivacy":{"shape":"DifferentialPrivacyTemplateUpdateParameters"}, |
| 6229 | + "accessBudget":{"shape":"AccessBudgetsPrivacyTemplateUpdateParameters"} |
6106 | 6230 | },
|
6107 | 6231 | "union":true
|
6108 | 6232 | },
|
6109 | 6233 | "PrivacyBudgetType":{
|
6110 | 6234 | "type":"string",
|
6111 |
| - "enum":["DIFFERENTIAL_PRIVACY"] |
| 6235 | + "enum":[ |
| 6236 | + "DIFFERENTIAL_PRIVACY", |
| 6237 | + "ACCESS_BUDGET" |
| 6238 | + ] |
6112 | 6239 | },
|
6113 | 6240 | "PrivacyImpact":{
|
6114 | 6241 | "type":"structure",
|
|
6626 | 6753 | "type":"list",
|
6627 | 6754 | "member":{"shape":"ReceiverConfiguration"}
|
6628 | 6755 | },
|
| 6756 | + "RemainingBudget":{ |
| 6757 | + "type":"integer", |
| 6758 | + "box":true, |
| 6759 | + "min":0 |
| 6760 | + }, |
6629 | 6761 | "ResourceAlias":{
|
6630 | 6762 | "type":"string",
|
6631 | 6763 | "max":128,
|
|
6763 | 6895 | "updateTime":{"shape":"Timestamp"},
|
6764 | 6896 | "type":{"shape":"SchemaType"},
|
6765 | 6897 | "schemaStatusDetails":{"shape":"SchemaStatusDetailList"},
|
| 6898 | + "resourceArn":{"shape":"SchemaResourceArn"}, |
6766 | 6899 | "schemaTypeProperties":{"shape":"SchemaTypeProperties"}
|
6767 | 6900 | }
|
6768 | 6901 | },
|
|
6803 | 6936 | "max":25,
|
6804 | 6937 | "min":0
|
6805 | 6938 | },
|
| 6939 | + "SchemaResourceArn":{ |
| 6940 | + "type":"string", |
| 6941 | + "max":200, |
| 6942 | + "min":0, |
| 6943 | + "pattern":"arn:aws:cleanrooms:[\\w]{2}-[\\w]{4,9}-[\\d]:[\\d]{12}:membership\\/[\\d\\w-]+\\/(configuredtableassociation|idmappingtable)\\/[\\d\\w-]+" |
| 6944 | + }, |
6806 | 6945 | "SchemaStatus":{
|
6807 | 6946 | "type":"string",
|
6808 | 6947 | "enum":[
|
|
6881 | 7020 | "collaborationArn":{"shape":"CollaborationArn"},
|
6882 | 7021 | "analysisRuleTypes":{"shape":"AnalysisRuleTypeList"},
|
6883 | 7022 | "analysisMethod":{"shape":"AnalysisMethod"},
|
| 7023 | + "resourceArn":{"shape":"SchemaResourceArn"}, |
6884 | 7024 | "selectedAnalysisMethods":{"shape":"SelectedAnalysisMethods"}
|
6885 | 7025 | }
|
6886 | 7026 | },
|
|
0 commit comments