-
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
Sep 26, 2023
1 parent
f05ae33
commit f9df3e3
Showing
39 changed files
with
3,097 additions
and
1,035 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": "AppIntegrations", | ||
"description": "The Amazon AppIntegrations service adds a set of APIs (in preview) to manage third party applications to be used in Amazon Connect agent workspace." | ||
}, | ||
{ | ||
"type": "feature", | ||
"category": "AppRunner", | ||
"description": "This release allows an App Runner customer to specify a custom source directory to run the build & start command. This change allows App Runner to support monorepo based repositories" | ||
}, | ||
{ | ||
"type": "feature", | ||
"category": "Connect", | ||
"description": "This release updates a set of Amazon Connect APIs that provides the ability to integrate third party applications in the Amazon Connect agent workspace." | ||
}, | ||
{ | ||
"type": "feature", | ||
"category": "DynamoDB", | ||
"description": "Amazon DynamoDB now supports Incremental Export as an enhancement to the existing Export Table" | ||
}, | ||
{ | ||
"type": "feature", | ||
"category": "EC2", | ||
"description": "The release includes AWS verified access to support FIPs compliance in North America regions" | ||
}, | ||
{ | ||
"type": "feature", | ||
"category": "LakeFormation", | ||
"description": "This release adds three new API support \"CreateLakeFormationOptIn\", \"DeleteLakeFormationOptIn\" and \"ListLakeFormationOptIns\", and also updates the corresponding documentation." | ||
}, | ||
{ | ||
"type": "feature", | ||
"category": "S3", | ||
"description": "This release adds a new field COMPLETED to the ReplicationStatus Enum. You can now use this field to validate the replication status of S3 objects using the AWS SDK." | ||
} | ||
] |
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,5 +1,88 @@ | ||
{ | ||
"version": "1.0", | ||
"examples": { | ||
"CreateApplication": [ | ||
{ | ||
"input": { | ||
"ApplicationSourceConfig": { | ||
"ExternalUrlConfig": { | ||
"AccessUrl": "https://example.com" | ||
} | ||
}, | ||
"Description": "My first application.", | ||
"Name": "My Application", | ||
"Namespace": "myapplication" | ||
}, | ||
"output": { | ||
"Arn": "arn:aws:app-integrations:us-west-2:0123456789012:application/98542c53-e8ac-4570-9c85-c6552c8d9c5e", | ||
"Id": "98542c53-e8ac-4570-9c85-c6552c8d9c5e" | ||
}, | ||
"comments": { | ||
}, | ||
"description": "The following creates an application named My Application with access url https://example.com.", | ||
"id": "create-an-application", | ||
"title": "To create an application" | ||
} | ||
], | ||
"GetApplication": [ | ||
{ | ||
"input": { | ||
"Arn": "arn:aws:app-integrations:us-west-2:0123456789012:application/98542c53-e8ac-4570-9c85-c6552c8d9c5e" | ||
}, | ||
"output": { | ||
"ApplicationSourceConfig": { | ||
"ExternalUrlConfig": { | ||
"AccessUrl": "https://example.com" | ||
} | ||
}, | ||
"Description": "My first application.", | ||
"Name": "My Application", | ||
"Namespace": "myapplication" | ||
}, | ||
"comments": { | ||
}, | ||
"description": "The following retrives an application.", | ||
"id": "get-an-application", | ||
"title": "To get an application" | ||
} | ||
], | ||
"ListApplications": [ | ||
{ | ||
"input": { | ||
"MaxResults": 1 | ||
}, | ||
"output": { | ||
"Applications": [ | ||
{ | ||
"Arn": "arn:aws:app-integrations:us-west-2:0123456789012:application/98542c53-e8ac-4570-9c85-c6552c8d9c5e", | ||
"Id": "98542c53-e8ac-4570-9c85-c6552c8d9c5e", | ||
"Name": "My Application", | ||
"Namespace": "myapplication" | ||
} | ||
], | ||
"NextToken": "abc" | ||
}, | ||
"comments": { | ||
}, | ||
"description": "The following lists application summary in the account.", | ||
"id": "list-applications", | ||
"title": "To list applications in the account" | ||
} | ||
], | ||
"UpdateApplication": [ | ||
{ | ||
"input": { | ||
"Arn": "arn:aws:app-integrations:us-west-2:0123456789012:application/98542c53-e8ac-4570-9c85-c6552c8d9c5e", | ||
"Name": "My New Application Name" | ||
}, | ||
"output": { | ||
}, | ||
"comments": { | ||
}, | ||
"description": "The following updates an existing application named with a new name.", | ||
"id": "update-an-application", | ||
"title": "To update an application" | ||
} | ||
] | ||
} | ||
} |
Oops, something went wrong.