@aws-sdk/client-amplify 3.438.0 → 3.441.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.
Files changed (73) hide show
  1. package/README.md +2 -2
  2. package/dist-cjs/index.js +1 -0
  3. package/dist-cjs/pagination/Interfaces.js +2 -0
  4. package/dist-cjs/pagination/ListAppsPaginator.js +29 -0
  5. package/dist-cjs/pagination/ListBranchesPaginator.js +29 -0
  6. package/dist-cjs/pagination/ListDomainAssociationsPaginator.js +29 -0
  7. package/dist-cjs/pagination/ListJobsPaginator.js +29 -0
  8. package/dist-cjs/pagination/index.js +8 -0
  9. package/dist-cjs/protocols/Aws_restJson1.js +3 -0
  10. package/dist-es/index.js +1 -0
  11. package/dist-es/pagination/Interfaces.js +1 -0
  12. package/dist-es/pagination/ListAppsPaginator.js +25 -0
  13. package/dist-es/pagination/ListBranchesPaginator.js +25 -0
  14. package/dist-es/pagination/ListDomainAssociationsPaginator.js +25 -0
  15. package/dist-es/pagination/ListJobsPaginator.js +25 -0
  16. package/dist-es/pagination/index.js +5 -0
  17. package/dist-es/protocols/Aws_restJson1.js +3 -0
  18. package/dist-types/Amplify.d.ts +2 -2
  19. package/dist-types/AmplifyClient.d.ts +2 -2
  20. package/dist-types/commands/CreateAppCommand.d.ts +6 -6
  21. package/dist-types/commands/CreateBackendEnvironmentCommand.d.ts +6 -6
  22. package/dist-types/commands/CreateBranchCommand.d.ts +12 -6
  23. package/dist-types/commands/CreateDeploymentCommand.d.ts +9 -5
  24. package/dist-types/commands/CreateDomainAssociationCommand.d.ts +6 -6
  25. package/dist-types/commands/CreateWebhookCommand.d.ts +7 -7
  26. package/dist-types/commands/DeleteAppCommand.d.ts +6 -6
  27. package/dist-types/commands/DeleteBackendEnvironmentCommand.d.ts +6 -6
  28. package/dist-types/commands/DeleteBranchCommand.d.ts +8 -5
  29. package/dist-types/commands/DeleteDomainAssociationCommand.d.ts +5 -5
  30. package/dist-types/commands/DeleteJobCommand.d.ts +5 -5
  31. package/dist-types/commands/DeleteWebhookCommand.d.ts +6 -6
  32. package/dist-types/commands/GenerateAccessLogsCommand.d.ts +5 -5
  33. package/dist-types/commands/GetAppCommand.d.ts +5 -5
  34. package/dist-types/commands/GetArtifactUrlCommand.d.ts +6 -6
  35. package/dist-types/commands/GetBackendEnvironmentCommand.d.ts +5 -5
  36. package/dist-types/commands/GetBranchCommand.d.ts +7 -4
  37. package/dist-types/commands/GetDomainAssociationCommand.d.ts +4 -4
  38. package/dist-types/commands/GetJobCommand.d.ts +5 -5
  39. package/dist-types/commands/GetWebhookCommand.d.ts +6 -6
  40. package/dist-types/commands/ListAppsCommand.d.ts +4 -4
  41. package/dist-types/commands/ListArtifactsCommand.d.ts +5 -5
  42. package/dist-types/commands/ListBackendEnvironmentsCommand.d.ts +4 -4
  43. package/dist-types/commands/ListBranchesCommand.d.ts +6 -3
  44. package/dist-types/commands/ListDomainAssociationsCommand.d.ts +3 -3
  45. package/dist-types/commands/ListJobsCommand.d.ts +4 -4
  46. package/dist-types/commands/ListTagsForResourceCommand.d.ts +4 -4
  47. package/dist-types/commands/ListWebhooksCommand.d.ts +5 -5
  48. package/dist-types/commands/StartDeploymentCommand.d.ts +10 -6
  49. package/dist-types/commands/StartJobCommand.d.ts +5 -5
  50. package/dist-types/commands/StopJobCommand.d.ts +5 -5
  51. package/dist-types/commands/TagResourceCommand.d.ts +4 -4
  52. package/dist-types/commands/UntagResourceCommand.d.ts +4 -4
  53. package/dist-types/commands/UpdateAppCommand.d.ts +5 -5
  54. package/dist-types/commands/UpdateBranchCommand.d.ts +11 -5
  55. package/dist-types/commands/UpdateDomainAssociationCommand.d.ts +5 -5
  56. package/dist-types/commands/UpdateWebhookCommand.d.ts +6 -6
  57. package/dist-types/index.d.ts +3 -2
  58. package/dist-types/models/models_0.d.ts +277 -248
  59. package/dist-types/pagination/Interfaces.d.ts +8 -0
  60. package/dist-types/pagination/ListAppsPaginator.d.ts +7 -0
  61. package/dist-types/pagination/ListBranchesPaginator.d.ts +7 -0
  62. package/dist-types/pagination/ListDomainAssociationsPaginator.d.ts +7 -0
  63. package/dist-types/pagination/ListJobsPaginator.d.ts +7 -0
  64. package/dist-types/pagination/index.d.ts +5 -0
  65. package/dist-types/ts3.4/index.d.ts +1 -0
  66. package/dist-types/ts3.4/models/models_0.d.ts +6 -0
  67. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  68. package/dist-types/ts3.4/pagination/ListAppsPaginator.d.ts +11 -0
  69. package/dist-types/ts3.4/pagination/ListBranchesPaginator.d.ts +11 -0
  70. package/dist-types/ts3.4/pagination/ListDomainAssociationsPaginator.d.ts +11 -0
  71. package/dist-types/ts3.4/pagination/ListJobsPaginator.d.ts +11 -0
  72. package/dist-types/ts3.4/pagination/index.d.ts +5 -0
  73. package/package.json +4 -4
@@ -23,7 +23,7 @@ export interface DeleteBackendEnvironmentCommandOutput extends DeleteBackendEnvi
23
23
  }
24
24
  /**
25
25
  * @public
26
- * <p> Deletes a backend environment for an Amplify app. </p>
26
+ * <p>Deletes a backend environment for an Amplify app. </p>
27
27
  * @example
28
28
  * Use a bare-bones client and the command you need to make an API call.
29
29
  * ```javascript
@@ -56,19 +56,19 @@ export interface DeleteBackendEnvironmentCommandOutput extends DeleteBackendEnvi
56
56
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
57
57
  *
58
58
  * @throws {@link BadRequestException} (client fault)
59
- * <p> A request contains unexpected data. </p>
59
+ * <p>A request contains unexpected data. </p>
60
60
  *
61
61
  * @throws {@link DependentServiceFailureException} (server fault)
62
- * <p> An operation failed because a dependent service threw an exception. </p>
62
+ * <p>An operation failed because a dependent service threw an exception. </p>
63
63
  *
64
64
  * @throws {@link InternalFailureException} (server fault)
65
- * <p> The service failed to perform an operation due to an internal issue. </p>
65
+ * <p>The service failed to perform an operation due to an internal issue. </p>
66
66
  *
67
67
  * @throws {@link NotFoundException} (client fault)
68
- * <p> An entity was not found during an operation. </p>
68
+ * <p>An entity was not found during an operation. </p>
69
69
  *
70
70
  * @throws {@link UnauthorizedException} (client fault)
71
- * <p> An operation failed due to a lack of access. </p>
71
+ * <p>An operation failed due to a lack of access. </p>
72
72
  *
73
73
  * @throws {@link AmplifyServiceException}
74
74
  * <p>Base exception class for all service exceptions from Amplify service.</p>
@@ -73,6 +73,9 @@ export interface DeleteBranchCommandOutput extends DeleteBranchResult, __Metadat
73
73
  * // destinationBranch: "STRING_VALUE",
74
74
  * // sourceBranch: "STRING_VALUE",
75
75
  * // backendEnvironmentArn: "STRING_VALUE",
76
+ * // backend: { // Backend
77
+ * // stackArn: "STRING_VALUE",
78
+ * // },
76
79
  * // },
77
80
  * // };
78
81
  *
@@ -85,19 +88,19 @@ export interface DeleteBranchCommandOutput extends DeleteBranchResult, __Metadat
85
88
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
86
89
  *
87
90
  * @throws {@link BadRequestException} (client fault)
88
- * <p> A request contains unexpected data. </p>
91
+ * <p>A request contains unexpected data. </p>
89
92
  *
90
93
  * @throws {@link DependentServiceFailureException} (server fault)
91
- * <p> An operation failed because a dependent service threw an exception. </p>
94
+ * <p>An operation failed because a dependent service threw an exception. </p>
92
95
  *
93
96
  * @throws {@link InternalFailureException} (server fault)
94
- * <p> The service failed to perform an operation due to an internal issue. </p>
97
+ * <p>The service failed to perform an operation due to an internal issue. </p>
95
98
  *
96
99
  * @throws {@link NotFoundException} (client fault)
97
- * <p> An entity was not found during an operation. </p>
100
+ * <p>An entity was not found during an operation. </p>
98
101
  *
99
102
  * @throws {@link UnauthorizedException} (client fault)
100
- * <p> An operation failed due to a lack of access. </p>
103
+ * <p>An operation failed due to a lack of access. </p>
101
104
  *
102
105
  * @throws {@link AmplifyServiceException}
103
106
  * <p>Base exception class for all service exceptions from Amplify service.</p>
@@ -70,19 +70,19 @@ export interface DeleteDomainAssociationCommandOutput extends DeleteDomainAssoci
70
70
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
71
71
  *
72
72
  * @throws {@link BadRequestException} (client fault)
73
- * <p> A request contains unexpected data. </p>
73
+ * <p>A request contains unexpected data. </p>
74
74
  *
75
75
  * @throws {@link DependentServiceFailureException} (server fault)
76
- * <p> An operation failed because a dependent service threw an exception. </p>
76
+ * <p>An operation failed because a dependent service threw an exception. </p>
77
77
  *
78
78
  * @throws {@link InternalFailureException} (server fault)
79
- * <p> The service failed to perform an operation due to an internal issue. </p>
79
+ * <p>The service failed to perform an operation due to an internal issue. </p>
80
80
  *
81
81
  * @throws {@link NotFoundException} (client fault)
82
- * <p> An entity was not found during an operation. </p>
82
+ * <p>An entity was not found during an operation. </p>
83
83
  *
84
84
  * @throws {@link UnauthorizedException} (client fault)
85
- * <p> An operation failed due to a lack of access. </p>
85
+ * <p>An operation failed due to a lack of access. </p>
86
86
  *
87
87
  * @throws {@link AmplifyServiceException}
88
88
  * <p>Base exception class for all service exceptions from Amplify service.</p>
@@ -60,19 +60,19 @@ export interface DeleteJobCommandOutput extends DeleteJobResult, __MetadataBeare
60
60
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
61
61
  *
62
62
  * @throws {@link BadRequestException} (client fault)
63
- * <p> A request contains unexpected data. </p>
63
+ * <p>A request contains unexpected data. </p>
64
64
  *
65
65
  * @throws {@link InternalFailureException} (server fault)
66
- * <p> The service failed to perform an operation due to an internal issue. </p>
66
+ * <p>The service failed to perform an operation due to an internal issue. </p>
67
67
  *
68
68
  * @throws {@link LimitExceededException} (client fault)
69
- * <p> A resource could not be created because service quotas were exceeded. </p>
69
+ * <p>A resource could not be created because service quotas were exceeded. </p>
70
70
  *
71
71
  * @throws {@link NotFoundException} (client fault)
72
- * <p> An entity was not found during an operation. </p>
72
+ * <p>An entity was not found during an operation. </p>
73
73
  *
74
74
  * @throws {@link UnauthorizedException} (client fault)
75
- * <p> An operation failed due to a lack of access. </p>
75
+ * <p>An operation failed due to a lack of access. </p>
76
76
  *
77
77
  * @throws {@link AmplifyServiceException}
78
78
  * <p>Base exception class for all service exceptions from Amplify service.</p>
@@ -23,7 +23,7 @@ export interface DeleteWebhookCommandOutput extends DeleteWebhookResult, __Metad
23
23
  }
24
24
  /**
25
25
  * @public
26
- * <p> Deletes a webhook. </p>
26
+ * <p>Deletes a webhook. </p>
27
27
  * @example
28
28
  * Use a bare-bones client and the command you need to make an API call.
29
29
  * ```javascript
@@ -56,19 +56,19 @@ export interface DeleteWebhookCommandOutput extends DeleteWebhookResult, __Metad
56
56
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
57
57
  *
58
58
  * @throws {@link BadRequestException} (client fault)
59
- * <p> A request contains unexpected data. </p>
59
+ * <p>A request contains unexpected data. </p>
60
60
  *
61
61
  * @throws {@link InternalFailureException} (server fault)
62
- * <p> The service failed to perform an operation due to an internal issue. </p>
62
+ * <p>The service failed to perform an operation due to an internal issue. </p>
63
63
  *
64
64
  * @throws {@link LimitExceededException} (client fault)
65
- * <p> A resource could not be created because service quotas were exceeded. </p>
65
+ * <p>A resource could not be created because service quotas were exceeded. </p>
66
66
  *
67
67
  * @throws {@link NotFoundException} (client fault)
68
- * <p> An entity was not found during an operation. </p>
68
+ * <p>An entity was not found during an operation. </p>
69
69
  *
70
70
  * @throws {@link UnauthorizedException} (client fault)
71
- * <p> An operation failed due to a lack of access. </p>
71
+ * <p>An operation failed due to a lack of access. </p>
72
72
  *
73
73
  * @throws {@link AmplifyServiceException}
74
74
  * <p>Base exception class for all service exceptions from Amplify service.</p>
@@ -23,7 +23,7 @@ export interface GenerateAccessLogsCommandOutput extends GenerateAccessLogsResul
23
23
  }
24
24
  /**
25
25
  * @public
26
- * <p> Returns the website access logs for a specific time range using a presigned URL.
26
+ * <p>Returns the website access logs for a specific time range using a presigned URL.
27
27
  * </p>
28
28
  * @example
29
29
  * Use a bare-bones client and the command you need to make an API call.
@@ -52,16 +52,16 @@ export interface GenerateAccessLogsCommandOutput extends GenerateAccessLogsResul
52
52
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
53
53
  *
54
54
  * @throws {@link BadRequestException} (client fault)
55
- * <p> A request contains unexpected data. </p>
55
+ * <p>A request contains unexpected data. </p>
56
56
  *
57
57
  * @throws {@link InternalFailureException} (server fault)
58
- * <p> The service failed to perform an operation due to an internal issue. </p>
58
+ * <p>The service failed to perform an operation due to an internal issue. </p>
59
59
  *
60
60
  * @throws {@link NotFoundException} (client fault)
61
- * <p> An entity was not found during an operation. </p>
61
+ * <p>An entity was not found during an operation. </p>
62
62
  *
63
63
  * @throws {@link UnauthorizedException} (client fault)
64
- * <p> An operation failed due to a lack of access. </p>
64
+ * <p>An operation failed due to a lack of access. </p>
65
65
  *
66
66
  * @throws {@link AmplifyServiceException}
67
67
  * <p>Base exception class for all service exceptions from Amplify service.</p>
@@ -23,7 +23,7 @@ export interface GetAppCommandOutput extends GetAppResult, __MetadataBearer {
23
23
  }
24
24
  /**
25
25
  * @public
26
- * <p> Returns an existing Amplify app by appID. </p>
26
+ * <p>Returns an existing Amplify app specified by an app ID.</p>
27
27
  * @example
28
28
  * Use a bare-bones client and the command you need to make an API call.
29
29
  * ```javascript
@@ -104,16 +104,16 @@ export interface GetAppCommandOutput extends GetAppResult, __MetadataBearer {
104
104
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
105
105
  *
106
106
  * @throws {@link BadRequestException} (client fault)
107
- * <p> A request contains unexpected data. </p>
107
+ * <p>A request contains unexpected data. </p>
108
108
  *
109
109
  * @throws {@link InternalFailureException} (server fault)
110
- * <p> The service failed to perform an operation due to an internal issue. </p>
110
+ * <p>The service failed to perform an operation due to an internal issue. </p>
111
111
  *
112
112
  * @throws {@link NotFoundException} (client fault)
113
- * <p> An entity was not found during an operation. </p>
113
+ * <p>An entity was not found during an operation. </p>
114
114
  *
115
115
  * @throws {@link UnauthorizedException} (client fault)
116
- * <p> An operation failed due to a lack of access. </p>
116
+ * <p>An operation failed due to a lack of access. </p>
117
117
  *
118
118
  * @throws {@link AmplifyServiceException}
119
119
  * <p>Base exception class for all service exceptions from Amplify service.</p>
@@ -23,7 +23,7 @@ export interface GetArtifactUrlCommandOutput extends GetArtifactUrlResult, __Met
23
23
  }
24
24
  /**
25
25
  * @public
26
- * <p> Returns the artifact info that corresponds to an artifact id. </p>
26
+ * <p>Returns the artifact info that corresponds to an artifact id. </p>
27
27
  * @example
28
28
  * Use a bare-bones client and the command you need to make an API call.
29
29
  * ```javascript
@@ -49,19 +49,19 @@ export interface GetArtifactUrlCommandOutput extends GetArtifactUrlResult, __Met
49
49
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
50
50
  *
51
51
  * @throws {@link BadRequestException} (client fault)
52
- * <p> A request contains unexpected data. </p>
52
+ * <p>A request contains unexpected data. </p>
53
53
  *
54
54
  * @throws {@link InternalFailureException} (server fault)
55
- * <p> The service failed to perform an operation due to an internal issue. </p>
55
+ * <p>The service failed to perform an operation due to an internal issue. </p>
56
56
  *
57
57
  * @throws {@link LimitExceededException} (client fault)
58
- * <p> A resource could not be created because service quotas were exceeded. </p>
58
+ * <p>A resource could not be created because service quotas were exceeded. </p>
59
59
  *
60
60
  * @throws {@link NotFoundException} (client fault)
61
- * <p> An entity was not found during an operation. </p>
61
+ * <p>An entity was not found during an operation. </p>
62
62
  *
63
63
  * @throws {@link UnauthorizedException} (client fault)
64
- * <p> An operation failed due to a lack of access. </p>
64
+ * <p>An operation failed due to a lack of access. </p>
65
65
  *
66
66
  * @throws {@link AmplifyServiceException}
67
67
  * <p>Base exception class for all service exceptions from Amplify service.</p>
@@ -23,7 +23,7 @@ export interface GetBackendEnvironmentCommandOutput extends GetBackendEnvironmen
23
23
  }
24
24
  /**
25
25
  * @public
26
- * <p> Returns a backend environment for an Amplify app. </p>
26
+ * <p>Returns a backend environment for an Amplify app. </p>
27
27
  * @example
28
28
  * Use a bare-bones client and the command you need to make an API call.
29
29
  * ```javascript
@@ -56,16 +56,16 @@ export interface GetBackendEnvironmentCommandOutput extends GetBackendEnvironmen
56
56
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
57
57
  *
58
58
  * @throws {@link BadRequestException} (client fault)
59
- * <p> A request contains unexpected data. </p>
59
+ * <p>A request contains unexpected data. </p>
60
60
  *
61
61
  * @throws {@link InternalFailureException} (server fault)
62
- * <p> The service failed to perform an operation due to an internal issue. </p>
62
+ * <p>The service failed to perform an operation due to an internal issue. </p>
63
63
  *
64
64
  * @throws {@link NotFoundException} (client fault)
65
- * <p> An entity was not found during an operation. </p>
65
+ * <p>An entity was not found during an operation. </p>
66
66
  *
67
67
  * @throws {@link UnauthorizedException} (client fault)
68
- * <p> An operation failed due to a lack of access. </p>
68
+ * <p>An operation failed due to a lack of access. </p>
69
69
  *
70
70
  * @throws {@link AmplifyServiceException}
71
71
  * <p>Base exception class for all service exceptions from Amplify service.</p>
@@ -73,6 +73,9 @@ export interface GetBranchCommandOutput extends GetBranchResult, __MetadataBeare
73
73
  * // destinationBranch: "STRING_VALUE",
74
74
  * // sourceBranch: "STRING_VALUE",
75
75
  * // backendEnvironmentArn: "STRING_VALUE",
76
+ * // backend: { // Backend
77
+ * // stackArn: "STRING_VALUE",
78
+ * // },
76
79
  * // },
77
80
  * // };
78
81
  *
@@ -85,16 +88,16 @@ export interface GetBranchCommandOutput extends GetBranchResult, __MetadataBeare
85
88
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
86
89
  *
87
90
  * @throws {@link BadRequestException} (client fault)
88
- * <p> A request contains unexpected data. </p>
91
+ * <p>A request contains unexpected data. </p>
89
92
  *
90
93
  * @throws {@link InternalFailureException} (server fault)
91
- * <p> The service failed to perform an operation due to an internal issue. </p>
94
+ * <p>The service failed to perform an operation due to an internal issue. </p>
92
95
  *
93
96
  * @throws {@link NotFoundException} (client fault)
94
- * <p> An entity was not found during an operation. </p>
97
+ * <p>An entity was not found during an operation. </p>
95
98
  *
96
99
  * @throws {@link UnauthorizedException} (client fault)
97
- * <p> An operation failed due to a lack of access. </p>
100
+ * <p>An operation failed due to a lack of access. </p>
98
101
  *
99
102
  * @throws {@link AmplifyServiceException}
100
103
  * <p>Base exception class for all service exceptions from Amplify service.</p>
@@ -70,16 +70,16 @@ export interface GetDomainAssociationCommandOutput extends GetDomainAssociationR
70
70
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
71
71
  *
72
72
  * @throws {@link BadRequestException} (client fault)
73
- * <p> A request contains unexpected data. </p>
73
+ * <p>A request contains unexpected data. </p>
74
74
  *
75
75
  * @throws {@link InternalFailureException} (server fault)
76
- * <p> The service failed to perform an operation due to an internal issue. </p>
76
+ * <p>The service failed to perform an operation due to an internal issue. </p>
77
77
  *
78
78
  * @throws {@link NotFoundException} (client fault)
79
- * <p> An entity was not found during an operation. </p>
79
+ * <p>An entity was not found during an operation. </p>
80
80
  *
81
81
  * @throws {@link UnauthorizedException} (client fault)
82
- * <p> An operation failed due to a lack of access. </p>
82
+ * <p>An operation failed due to a lack of access. </p>
83
83
  *
84
84
  * @throws {@link AmplifyServiceException}
85
85
  * <p>Base exception class for all service exceptions from Amplify service.</p>
@@ -79,19 +79,19 @@ export interface GetJobCommandOutput extends GetJobResult, __MetadataBearer {
79
79
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
80
80
  *
81
81
  * @throws {@link BadRequestException} (client fault)
82
- * <p> A request contains unexpected data. </p>
82
+ * <p>A request contains unexpected data. </p>
83
83
  *
84
84
  * @throws {@link InternalFailureException} (server fault)
85
- * <p> The service failed to perform an operation due to an internal issue. </p>
85
+ * <p>The service failed to perform an operation due to an internal issue. </p>
86
86
  *
87
87
  * @throws {@link LimitExceededException} (client fault)
88
- * <p> A resource could not be created because service quotas were exceeded. </p>
88
+ * <p>A resource could not be created because service quotas were exceeded. </p>
89
89
  *
90
90
  * @throws {@link NotFoundException} (client fault)
91
- * <p> An entity was not found during an operation. </p>
91
+ * <p>An entity was not found during an operation. </p>
92
92
  *
93
93
  * @throws {@link UnauthorizedException} (client fault)
94
- * <p> An operation failed due to a lack of access. </p>
94
+ * <p>An operation failed due to a lack of access. </p>
95
95
  *
96
96
  * @throws {@link AmplifyServiceException}
97
97
  * <p>Base exception class for all service exceptions from Amplify service.</p>
@@ -23,7 +23,7 @@ export interface GetWebhookCommandOutput extends GetWebhookResult, __MetadataBea
23
23
  }
24
24
  /**
25
25
  * @public
26
- * <p> Returns the webhook information that corresponds to a specified webhook ID. </p>
26
+ * <p>Returns the webhook information that corresponds to a specified webhook ID. </p>
27
27
  * @example
28
28
  * Use a bare-bones client and the command you need to make an API call.
29
29
  * ```javascript
@@ -56,19 +56,19 @@ export interface GetWebhookCommandOutput extends GetWebhookResult, __MetadataBea
56
56
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
57
57
  *
58
58
  * @throws {@link BadRequestException} (client fault)
59
- * <p> A request contains unexpected data. </p>
59
+ * <p>A request contains unexpected data. </p>
60
60
  *
61
61
  * @throws {@link InternalFailureException} (server fault)
62
- * <p> The service failed to perform an operation due to an internal issue. </p>
62
+ * <p>The service failed to perform an operation due to an internal issue. </p>
63
63
  *
64
64
  * @throws {@link LimitExceededException} (client fault)
65
- * <p> A resource could not be created because service quotas were exceeded. </p>
65
+ * <p>A resource could not be created because service quotas were exceeded. </p>
66
66
  *
67
67
  * @throws {@link NotFoundException} (client fault)
68
- * <p> An entity was not found during an operation. </p>
68
+ * <p>An entity was not found during an operation. </p>
69
69
  *
70
70
  * @throws {@link UnauthorizedException} (client fault)
71
- * <p> An operation failed due to a lack of access. </p>
71
+ * <p>An operation failed due to a lack of access. </p>
72
72
  *
73
73
  * @throws {@link AmplifyServiceException}
74
74
  * <p>Base exception class for all service exceptions from Amplify service.</p>
@@ -23,7 +23,7 @@ export interface ListAppsCommandOutput extends ListAppsResult, __MetadataBearer
23
23
  }
24
24
  /**
25
25
  * @public
26
- * <p> Returns a list of the existing Amplify apps. </p>
26
+ * <p>Returns a list of the existing Amplify apps. </p>
27
27
  * @example
28
28
  * Use a bare-bones client and the command you need to make an API call.
29
29
  * ```javascript
@@ -108,13 +108,13 @@ export interface ListAppsCommandOutput extends ListAppsResult, __MetadataBearer
108
108
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
109
109
  *
110
110
  * @throws {@link BadRequestException} (client fault)
111
- * <p> A request contains unexpected data. </p>
111
+ * <p>A request contains unexpected data. </p>
112
112
  *
113
113
  * @throws {@link InternalFailureException} (server fault)
114
- * <p> The service failed to perform an operation due to an internal issue. </p>
114
+ * <p>The service failed to perform an operation due to an internal issue. </p>
115
115
  *
116
116
  * @throws {@link UnauthorizedException} (client fault)
117
- * <p> An operation failed due to a lack of access. </p>
117
+ * <p>An operation failed due to a lack of access. </p>
118
118
  *
119
119
  * @throws {@link AmplifyServiceException}
120
120
  * <p>Base exception class for all service exceptions from Amplify service.</p>
@@ -23,7 +23,7 @@ export interface ListArtifactsCommandOutput extends ListArtifactsResult, __Metad
23
23
  }
24
24
  /**
25
25
  * @public
26
- * <p> Returns a list of artifacts for a specified app, branch, and job. </p>
26
+ * <p>Returns a list of artifacts for a specified app, branch, and job. </p>
27
27
  * @example
28
28
  * Use a bare-bones client and the command you need to make an API call.
29
29
  * ```javascript
@@ -58,16 +58,16 @@ export interface ListArtifactsCommandOutput extends ListArtifactsResult, __Metad
58
58
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
59
59
  *
60
60
  * @throws {@link BadRequestException} (client fault)
61
- * <p> A request contains unexpected data. </p>
61
+ * <p>A request contains unexpected data. </p>
62
62
  *
63
63
  * @throws {@link InternalFailureException} (server fault)
64
- * <p> The service failed to perform an operation due to an internal issue. </p>
64
+ * <p>The service failed to perform an operation due to an internal issue. </p>
65
65
  *
66
66
  * @throws {@link LimitExceededException} (client fault)
67
- * <p> A resource could not be created because service quotas were exceeded. </p>
67
+ * <p>A resource could not be created because service quotas were exceeded. </p>
68
68
  *
69
69
  * @throws {@link UnauthorizedException} (client fault)
70
- * <p> An operation failed due to a lack of access. </p>
70
+ * <p>An operation failed due to a lack of access. </p>
71
71
  *
72
72
  * @throws {@link AmplifyServiceException}
73
73
  * <p>Base exception class for all service exceptions from Amplify service.</p>
@@ -23,7 +23,7 @@ export interface ListBackendEnvironmentsCommandOutput extends ListBackendEnviron
23
23
  }
24
24
  /**
25
25
  * @public
26
- * <p> Lists the backend environments for an Amplify app. </p>
26
+ * <p>Lists the backend environments for an Amplify app. </p>
27
27
  * @example
28
28
  * Use a bare-bones client and the command you need to make an API call.
29
29
  * ```javascript
@@ -61,13 +61,13 @@ export interface ListBackendEnvironmentsCommandOutput extends ListBackendEnviron
61
61
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
62
62
  *
63
63
  * @throws {@link BadRequestException} (client fault)
64
- * <p> A request contains unexpected data. </p>
64
+ * <p>A request contains unexpected data. </p>
65
65
  *
66
66
  * @throws {@link InternalFailureException} (server fault)
67
- * <p> The service failed to perform an operation due to an internal issue. </p>
67
+ * <p>The service failed to perform an operation due to an internal issue. </p>
68
68
  *
69
69
  * @throws {@link UnauthorizedException} (client fault)
70
- * <p> An operation failed due to a lack of access. </p>
70
+ * <p>An operation failed due to a lack of access. </p>
71
71
  *
72
72
  * @throws {@link AmplifyServiceException}
73
73
  * <p>Base exception class for all service exceptions from Amplify service.</p>
@@ -75,6 +75,9 @@ export interface ListBranchesCommandOutput extends ListBranchesResult, __Metadat
75
75
  * // destinationBranch: "STRING_VALUE",
76
76
  * // sourceBranch: "STRING_VALUE",
77
77
  * // backendEnvironmentArn: "STRING_VALUE",
78
+ * // backend: { // Backend
79
+ * // stackArn: "STRING_VALUE",
80
+ * // },
78
81
  * // },
79
82
  * // ],
80
83
  * // nextToken: "STRING_VALUE",
@@ -89,13 +92,13 @@ export interface ListBranchesCommandOutput extends ListBranchesResult, __Metadat
89
92
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
90
93
  *
91
94
  * @throws {@link BadRequestException} (client fault)
92
- * <p> A request contains unexpected data. </p>
95
+ * <p>A request contains unexpected data. </p>
93
96
  *
94
97
  * @throws {@link InternalFailureException} (server fault)
95
- * <p> The service failed to perform an operation due to an internal issue. </p>
98
+ * <p>The service failed to perform an operation due to an internal issue. </p>
96
99
  *
97
100
  * @throws {@link UnauthorizedException} (client fault)
98
- * <p> An operation failed due to a lack of access. </p>
101
+ * <p>An operation failed due to a lack of access. </p>
99
102
  *
100
103
  * @throws {@link AmplifyServiceException}
101
104
  * <p>Base exception class for all service exceptions from Amplify service.</p>
@@ -74,13 +74,13 @@ export interface ListDomainAssociationsCommandOutput extends ListDomainAssociati
74
74
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
75
75
  *
76
76
  * @throws {@link BadRequestException} (client fault)
77
- * <p> A request contains unexpected data. </p>
77
+ * <p>A request contains unexpected data. </p>
78
78
  *
79
79
  * @throws {@link InternalFailureException} (server fault)
80
- * <p> The service failed to perform an operation due to an internal issue. </p>
80
+ * <p>The service failed to perform an operation due to an internal issue. </p>
81
81
  *
82
82
  * @throws {@link UnauthorizedException} (client fault)
83
- * <p> An operation failed due to a lack of access. </p>
83
+ * <p>An operation failed due to a lack of access. </p>
84
84
  *
85
85
  * @throws {@link AmplifyServiceException}
86
86
  * <p>Base exception class for all service exceptions from Amplify service.</p>
@@ -64,16 +64,16 @@ export interface ListJobsCommandOutput extends ListJobsResult, __MetadataBearer
64
64
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
65
65
  *
66
66
  * @throws {@link BadRequestException} (client fault)
67
- * <p> A request contains unexpected data. </p>
67
+ * <p>A request contains unexpected data. </p>
68
68
  *
69
69
  * @throws {@link InternalFailureException} (server fault)
70
- * <p> The service failed to perform an operation due to an internal issue. </p>
70
+ * <p>The service failed to perform an operation due to an internal issue. </p>
71
71
  *
72
72
  * @throws {@link LimitExceededException} (client fault)
73
- * <p> A resource could not be created because service quotas were exceeded. </p>
73
+ * <p>A resource could not be created because service quotas were exceeded. </p>
74
74
  *
75
75
  * @throws {@link UnauthorizedException} (client fault)
76
- * <p> An operation failed due to a lack of access. </p>
76
+ * <p>An operation failed due to a lack of access. </p>
77
77
  *
78
78
  * @throws {@link AmplifyServiceException}
79
79
  * <p>Base exception class for all service exceptions from Amplify service.</p>
@@ -23,7 +23,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
23
23
  }
24
24
  /**
25
25
  * @public
26
- * <p> Returns a list of tags for a specified Amazon Resource Name (ARN). </p>
26
+ * <p>Returns a list of tags for a specified Amazon Resource Name (ARN).</p>
27
27
  * @example
28
28
  * Use a bare-bones client and the command you need to make an API call.
29
29
  * ```javascript
@@ -50,13 +50,13 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
50
50
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
51
51
  *
52
52
  * @throws {@link BadRequestException} (client fault)
53
- * <p> A request contains unexpected data. </p>
53
+ * <p>A request contains unexpected data. </p>
54
54
  *
55
55
  * @throws {@link InternalFailureException} (server fault)
56
- * <p> The service failed to perform an operation due to an internal issue. </p>
56
+ * <p>The service failed to perform an operation due to an internal issue. </p>
57
57
  *
58
58
  * @throws {@link ResourceNotFoundException} (client fault)
59
- * <p> An operation failed due to a non-existent resource. </p>
59
+ * <p>An operation failed due to a non-existent resource. </p>
60
60
  *
61
61
  * @throws {@link AmplifyServiceException}
62
62
  * <p>Base exception class for all service exceptions from Amplify service.</p>
@@ -23,7 +23,7 @@ export interface ListWebhooksCommandOutput extends ListWebhooksResult, __Metadat
23
23
  }
24
24
  /**
25
25
  * @public
26
- * <p> Returns a list of webhooks for an Amplify app. </p>
26
+ * <p>Returns a list of webhooks for an Amplify app. </p>
27
27
  * @example
28
28
  * Use a bare-bones client and the command you need to make an API call.
29
29
  * ```javascript
@@ -61,16 +61,16 @@ export interface ListWebhooksCommandOutput extends ListWebhooksResult, __Metadat
61
61
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
62
62
  *
63
63
  * @throws {@link BadRequestException} (client fault)
64
- * <p> A request contains unexpected data. </p>
64
+ * <p>A request contains unexpected data. </p>
65
65
  *
66
66
  * @throws {@link InternalFailureException} (server fault)
67
- * <p> The service failed to perform an operation due to an internal issue. </p>
67
+ * <p>The service failed to perform an operation due to an internal issue. </p>
68
68
  *
69
69
  * @throws {@link LimitExceededException} (client fault)
70
- * <p> A resource could not be created because service quotas were exceeded. </p>
70
+ * <p>A resource could not be created because service quotas were exceeded. </p>
71
71
  *
72
72
  * @throws {@link UnauthorizedException} (client fault)
73
- * <p> An operation failed due to a lack of access. </p>
73
+ * <p>An operation failed due to a lack of access. </p>
74
74
  *
75
75
  * @throws {@link AmplifyServiceException}
76
76
  * <p>Base exception class for all service exceptions from Amplify service.</p>