-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
awstools
committed
Jul 23, 2024
1 parent
0ac6138
commit 8539c1b
Showing
33 changed files
with
5,836 additions
and
2,055 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
[ | ||
{ | ||
"type": "feature", | ||
"category": "AppSync", | ||
"description": "Adding support for paginators in AppSync list APIs" | ||
}, | ||
{ | ||
"type": "feature", | ||
"category": "CleanRooms", | ||
"description": "This release adds AWS Entity Resolution integration to associate ID namespaces & ID mapping workflow resources as part of ID namespace association and ID mapping table in AWS Clean Rooms. It also introduces a new ID_MAPPING_TABLE analysis rule to manage the protection on ID mapping table." | ||
}, | ||
{ | ||
"type": "feature", | ||
"category": "CleanRoomsML", | ||
"description": "Adds SQL query as the source of seed audience for audience generation job." | ||
}, | ||
{ | ||
"type": "feature", | ||
"category": "Connect", | ||
"description": "Added PostContactSummary segment type on ListRealTimeContactAnalysisSegmentsV2 API" | ||
}, | ||
{ | ||
"type": "feature", | ||
"category": "ConnectContactLens", | ||
"description": "Added PostContactSummary segment type on ListRealTimeContactAnalysisSegments API" | ||
}, | ||
{ | ||
"type": "feature", | ||
"category": "DataZone", | ||
"description": "This release removes the deprecated dataProductItem field from Search API output." | ||
}, | ||
{ | ||
"type": "feature", | ||
"category": "EntityResolution", | ||
"description": "Support First Party ID Mapping" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,64 @@ | ||
{ | ||
"pagination": { | ||
"ListApiKeys": { | ||
"input_token": "nextToken", | ||
"output_token": "nextToken", | ||
"limit_key": "maxResults", | ||
"result_key": "apiKeys" | ||
}, | ||
"ListDataSources": { | ||
"input_token": "nextToken", | ||
"output_token": "nextToken", | ||
"limit_key": "maxResults", | ||
"result_key": "dataSources" | ||
}, | ||
"ListDomainNames": { | ||
"input_token": "nextToken", | ||
"output_token": "nextToken", | ||
"limit_key": "maxResults", | ||
"result_key": "domainNameConfigs" | ||
}, | ||
"ListFunctions": { | ||
"input_token": "nextToken", | ||
"output_token": "nextToken", | ||
"limit_key": "maxResults", | ||
"result_key": "functions" | ||
}, | ||
"ListGraphqlApis": { | ||
"input_token": "nextToken", | ||
"output_token": "nextToken", | ||
"limit_key": "maxResults", | ||
"result_key": "graphqlApis" | ||
}, | ||
"ListResolvers": { | ||
"input_token": "nextToken", | ||
"output_token": "nextToken", | ||
"limit_key": "maxResults", | ||
"result_key": "resolvers" | ||
}, | ||
"ListResolversByFunction": { | ||
"input_token": "nextToken", | ||
"output_token": "nextToken", | ||
"limit_key": "maxResults", | ||
"result_key": "resolvers" | ||
}, | ||
"ListSourceApiAssociations": { | ||
"input_token": "nextToken", | ||
"output_token": "nextToken", | ||
"limit_key": "maxResults", | ||
"result_key": "sourceApiAssociationSummaries" | ||
}, | ||
"ListTypes": { | ||
"input_token": "nextToken", | ||
"output_token": "nextToken", | ||
"limit_key": "maxResults", | ||
"result_key": "types" | ||
}, | ||
"ListTypesByAssociation": { | ||
"input_token": "nextToken", | ||
"output_token": "nextToken", | ||
"limit_key": "maxResults", | ||
"result_key": "types" | ||
} | ||
} | ||
} |
Oops, something went wrong.