123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- {
- "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"
- }
- ],
- "DeleteApplication": [
- {
- "input": {
- "Arn": "arn:aws:app-integrations:us-west-2:0123456789012:application/98542c53-e8ac-4570-9c85-c6552c8d9c5e"
- },
- "output": {
- },
- "comments": {
- },
- "description": "The following deletes an application.",
- "id": "delete-an-application",
- "title": "To delete 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"
- }
- ],
- "ListApplicationAssociations": [
- {
- "input": {
- "ApplicationId": "98542c53-e8ac-4570-9c85-c6552c8d9c5e"
- },
- "output": {
- "ApplicationAssociations": [
- {
- "ApplicationArn": "arn:aws:app-integrations:us-west-2:0123456789012:application/98542c53-e8ac-4570-9c85-c6552c8d9c5e",
- "ApplicationAssociationArn": "arn:aws:app-integrations:us-west-2:0123456789012:application-association/98542c53-e8ac-4570-9c85-c6552c8d9c5e/461dfb57-320a-454d-9bba-bb560845ff38",
- "ClientId": "connect.amazonaws.com"
- }
- ],
- "NextToken": "abc"
- },
- "comments": {
- },
- "description": "The following retrives application associations of an application",
- "id": "list-application-associations",
- "title": "To list application associations of 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"
- }
- ]
- }
- }
|