@aws-sdk/client-amplify 3.289.0 → 3.292.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 (38) hide show
  1. package/dist-types/commands/CreateAppCommand.d.ts +16 -0
  2. package/dist-types/commands/CreateBackendEnvironmentCommand.d.ts +16 -0
  3. package/dist-types/commands/CreateBranchCommand.d.ts +19 -0
  4. package/dist-types/commands/CreateDeploymentCommand.d.ts +13 -0
  5. package/dist-types/commands/CreateDomainAssociationCommand.d.ts +19 -0
  6. package/dist-types/commands/CreateWebhookCommand.d.ts +19 -0
  7. package/dist-types/commands/DeleteAppCommand.d.ts +16 -0
  8. package/dist-types/commands/DeleteBackendEnvironmentCommand.d.ts +16 -0
  9. package/dist-types/commands/DeleteBranchCommand.d.ts +16 -0
  10. package/dist-types/commands/DeleteDomainAssociationCommand.d.ts +16 -0
  11. package/dist-types/commands/DeleteJobCommand.d.ts +16 -0
  12. package/dist-types/commands/DeleteWebhookCommand.d.ts +16 -0
  13. package/dist-types/commands/GenerateAccessLogsCommand.d.ts +13 -0
  14. package/dist-types/commands/GetAppCommand.d.ts +13 -0
  15. package/dist-types/commands/GetArtifactUrlCommand.d.ts +16 -0
  16. package/dist-types/commands/GetBackendEnvironmentCommand.d.ts +13 -0
  17. package/dist-types/commands/GetBranchCommand.d.ts +13 -0
  18. package/dist-types/commands/GetDomainAssociationCommand.d.ts +13 -0
  19. package/dist-types/commands/GetJobCommand.d.ts +16 -0
  20. package/dist-types/commands/GetWebhookCommand.d.ts +16 -0
  21. package/dist-types/commands/ListAppsCommand.d.ts +10 -0
  22. package/dist-types/commands/ListArtifactsCommand.d.ts +13 -0
  23. package/dist-types/commands/ListBackendEnvironmentsCommand.d.ts +10 -0
  24. package/dist-types/commands/ListBranchesCommand.d.ts +10 -0
  25. package/dist-types/commands/ListDomainAssociationsCommand.d.ts +10 -0
  26. package/dist-types/commands/ListJobsCommand.d.ts +13 -0
  27. package/dist-types/commands/ListTagsForResourceCommand.d.ts +10 -0
  28. package/dist-types/commands/ListWebhooksCommand.d.ts +13 -0
  29. package/dist-types/commands/StartDeploymentCommand.d.ts +16 -0
  30. package/dist-types/commands/StartJobCommand.d.ts +16 -0
  31. package/dist-types/commands/StopJobCommand.d.ts +16 -0
  32. package/dist-types/commands/TagResourceCommand.d.ts +10 -0
  33. package/dist-types/commands/UntagResourceCommand.d.ts +10 -0
  34. package/dist-types/commands/UpdateAppCommand.d.ts +13 -0
  35. package/dist-types/commands/UpdateBranchCommand.d.ts +16 -0
  36. package/dist-types/commands/UpdateDomainAssociationCommand.d.ts +16 -0
  37. package/dist-types/commands/UpdateWebhookCommand.d.ts +16 -0
  38. package/package.json +35 -40
@@ -29,6 +29,22 @@ export interface CreateAppCommandOutput extends CreateAppResult, __MetadataBeare
29
29
  * @see {@link CreateAppCommandOutput} for command's `response` shape.
30
30
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p> A request contains unexpected data. </p>
34
+ *
35
+ * @throws {@link DependentServiceFailureException} (server fault)
36
+ * <p> An operation failed because a dependent service threw an exception. </p>
37
+ *
38
+ * @throws {@link InternalFailureException} (server fault)
39
+ * <p> The service failed to perform an operation due to an internal issue. </p>
40
+ *
41
+ * @throws {@link LimitExceededException} (client fault)
42
+ * <p> A resource could not be created because service quotas were exceeded. </p>
43
+ *
44
+ * @throws {@link UnauthorizedException} (client fault)
45
+ * <p> An operation failed due to a lack of access. </p>
46
+ *
47
+ *
32
48
  */
33
49
  export declare class CreateAppCommand extends $Command<CreateAppCommandInput, CreateAppCommandOutput, AmplifyClientResolvedConfig> {
34
50
  readonly input: CreateAppCommandInput;
@@ -29,6 +29,22 @@ export interface CreateBackendEnvironmentCommandOutput extends CreateBackendEnvi
29
29
  * @see {@link CreateBackendEnvironmentCommandOutput} for command's `response` shape.
30
30
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p> A request contains unexpected data. </p>
34
+ *
35
+ * @throws {@link InternalFailureException} (server fault)
36
+ * <p> The service failed to perform an operation due to an internal issue. </p>
37
+ *
38
+ * @throws {@link LimitExceededException} (client fault)
39
+ * <p> A resource could not be created because service quotas were exceeded. </p>
40
+ *
41
+ * @throws {@link NotFoundException} (client fault)
42
+ * <p> An entity was not found during an operation. </p>
43
+ *
44
+ * @throws {@link UnauthorizedException} (client fault)
45
+ * <p> An operation failed due to a lack of access. </p>
46
+ *
47
+ *
32
48
  */
33
49
  export declare class CreateBackendEnvironmentCommand extends $Command<CreateBackendEnvironmentCommandInput, CreateBackendEnvironmentCommandOutput, AmplifyClientResolvedConfig> {
34
50
  readonly input: CreateBackendEnvironmentCommandInput;
@@ -29,6 +29,25 @@ export interface CreateBranchCommandOutput extends CreateBranchResult, __Metadat
29
29
  * @see {@link CreateBranchCommandOutput} for command's `response` shape.
30
30
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p> A request contains unexpected data. </p>
34
+ *
35
+ * @throws {@link DependentServiceFailureException} (server fault)
36
+ * <p> An operation failed because a dependent service threw an exception. </p>
37
+ *
38
+ * @throws {@link InternalFailureException} (server fault)
39
+ * <p> The service failed to perform an operation due to an internal issue. </p>
40
+ *
41
+ * @throws {@link LimitExceededException} (client fault)
42
+ * <p> A resource could not be created because service quotas were exceeded. </p>
43
+ *
44
+ * @throws {@link NotFoundException} (client fault)
45
+ * <p> An entity was not found during an operation. </p>
46
+ *
47
+ * @throws {@link UnauthorizedException} (client fault)
48
+ * <p> An operation failed due to a lack of access. </p>
49
+ *
50
+ *
32
51
  */
33
52
  export declare class CreateBranchCommand extends $Command<CreateBranchCommandInput, CreateBranchCommandOutput, AmplifyClientResolvedConfig> {
34
53
  readonly input: CreateBranchCommandInput;
@@ -30,6 +30,19 @@ export interface CreateDeploymentCommandOutput extends CreateDeploymentResult, _
30
30
  * @see {@link CreateDeploymentCommandOutput} for command's `response` shape.
31
31
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
32
32
  *
33
+ * @throws {@link BadRequestException} (client fault)
34
+ * <p> A request contains unexpected data. </p>
35
+ *
36
+ * @throws {@link InternalFailureException} (server fault)
37
+ * <p> The service failed to perform an operation due to an internal issue. </p>
38
+ *
39
+ * @throws {@link LimitExceededException} (client fault)
40
+ * <p> A resource could not be created because service quotas were exceeded. </p>
41
+ *
42
+ * @throws {@link UnauthorizedException} (client fault)
43
+ * <p> An operation failed due to a lack of access. </p>
44
+ *
45
+ *
33
46
  */
34
47
  export declare class CreateDeploymentCommand extends $Command<CreateDeploymentCommandInput, CreateDeploymentCommandOutput, AmplifyClientResolvedConfig> {
35
48
  readonly input: CreateDeploymentCommandInput;
@@ -30,6 +30,25 @@ export interface CreateDomainAssociationCommandOutput extends CreateDomainAssoci
30
30
  * @see {@link CreateDomainAssociationCommandOutput} for command's `response` shape.
31
31
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
32
32
  *
33
+ * @throws {@link BadRequestException} (client fault)
34
+ * <p> A request contains unexpected data. </p>
35
+ *
36
+ * @throws {@link DependentServiceFailureException} (server fault)
37
+ * <p> An operation failed because a dependent service threw an exception. </p>
38
+ *
39
+ * @throws {@link InternalFailureException} (server fault)
40
+ * <p> The service failed to perform an operation due to an internal issue. </p>
41
+ *
42
+ * @throws {@link LimitExceededException} (client fault)
43
+ * <p> A resource could not be created because service quotas were exceeded. </p>
44
+ *
45
+ * @throws {@link NotFoundException} (client fault)
46
+ * <p> An entity was not found during an operation. </p>
47
+ *
48
+ * @throws {@link UnauthorizedException} (client fault)
49
+ * <p> An operation failed due to a lack of access. </p>
50
+ *
51
+ *
33
52
  */
34
53
  export declare class CreateDomainAssociationCommand extends $Command<CreateDomainAssociationCommandInput, CreateDomainAssociationCommandOutput, AmplifyClientResolvedConfig> {
35
54
  readonly input: CreateDomainAssociationCommandInput;
@@ -29,6 +29,25 @@ export interface CreateWebhookCommandOutput extends CreateWebhookResult, __Metad
29
29
  * @see {@link CreateWebhookCommandOutput} for command's `response` shape.
30
30
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p> A request contains unexpected data. </p>
34
+ *
35
+ * @throws {@link DependentServiceFailureException} (server fault)
36
+ * <p> An operation failed because a dependent service threw an exception. </p>
37
+ *
38
+ * @throws {@link InternalFailureException} (server fault)
39
+ * <p> The service failed to perform an operation due to an internal issue. </p>
40
+ *
41
+ * @throws {@link LimitExceededException} (client fault)
42
+ * <p> A resource could not be created because service quotas were exceeded. </p>
43
+ *
44
+ * @throws {@link NotFoundException} (client fault)
45
+ * <p> An entity was not found during an operation. </p>
46
+ *
47
+ * @throws {@link UnauthorizedException} (client fault)
48
+ * <p> An operation failed due to a lack of access. </p>
49
+ *
50
+ *
32
51
  */
33
52
  export declare class CreateWebhookCommand extends $Command<CreateWebhookCommandInput, CreateWebhookCommandOutput, AmplifyClientResolvedConfig> {
34
53
  readonly input: CreateWebhookCommandInput;
@@ -29,6 +29,22 @@ export interface DeleteAppCommandOutput extends DeleteAppResult, __MetadataBeare
29
29
  * @see {@link DeleteAppCommandOutput} for command's `response` shape.
30
30
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p> A request contains unexpected data. </p>
34
+ *
35
+ * @throws {@link DependentServiceFailureException} (server fault)
36
+ * <p> An operation failed because a dependent service threw an exception. </p>
37
+ *
38
+ * @throws {@link InternalFailureException} (server fault)
39
+ * <p> The service failed to perform an operation due to an internal issue. </p>
40
+ *
41
+ * @throws {@link NotFoundException} (client fault)
42
+ * <p> An entity was not found during an operation. </p>
43
+ *
44
+ * @throws {@link UnauthorizedException} (client fault)
45
+ * <p> An operation failed due to a lack of access. </p>
46
+ *
47
+ *
32
48
  */
33
49
  export declare class DeleteAppCommand extends $Command<DeleteAppCommandInput, DeleteAppCommandOutput, AmplifyClientResolvedConfig> {
34
50
  readonly input: DeleteAppCommandInput;
@@ -29,6 +29,22 @@ export interface DeleteBackendEnvironmentCommandOutput extends DeleteBackendEnvi
29
29
  * @see {@link DeleteBackendEnvironmentCommandOutput} for command's `response` shape.
30
30
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p> A request contains unexpected data. </p>
34
+ *
35
+ * @throws {@link DependentServiceFailureException} (server fault)
36
+ * <p> An operation failed because a dependent service threw an exception. </p>
37
+ *
38
+ * @throws {@link InternalFailureException} (server fault)
39
+ * <p> The service failed to perform an operation due to an internal issue. </p>
40
+ *
41
+ * @throws {@link NotFoundException} (client fault)
42
+ * <p> An entity was not found during an operation. </p>
43
+ *
44
+ * @throws {@link UnauthorizedException} (client fault)
45
+ * <p> An operation failed due to a lack of access. </p>
46
+ *
47
+ *
32
48
  */
33
49
  export declare class DeleteBackendEnvironmentCommand extends $Command<DeleteBackendEnvironmentCommandInput, DeleteBackendEnvironmentCommandOutput, AmplifyClientResolvedConfig> {
34
50
  readonly input: DeleteBackendEnvironmentCommandInput;
@@ -29,6 +29,22 @@ export interface DeleteBranchCommandOutput extends DeleteBranchResult, __Metadat
29
29
  * @see {@link DeleteBranchCommandOutput} for command's `response` shape.
30
30
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p> A request contains unexpected data. </p>
34
+ *
35
+ * @throws {@link DependentServiceFailureException} (server fault)
36
+ * <p> An operation failed because a dependent service threw an exception. </p>
37
+ *
38
+ * @throws {@link InternalFailureException} (server fault)
39
+ * <p> The service failed to perform an operation due to an internal issue. </p>
40
+ *
41
+ * @throws {@link NotFoundException} (client fault)
42
+ * <p> An entity was not found during an operation. </p>
43
+ *
44
+ * @throws {@link UnauthorizedException} (client fault)
45
+ * <p> An operation failed due to a lack of access. </p>
46
+ *
47
+ *
32
48
  */
33
49
  export declare class DeleteBranchCommand extends $Command<DeleteBranchCommandInput, DeleteBranchCommandOutput, AmplifyClientResolvedConfig> {
34
50
  readonly input: DeleteBranchCommandInput;
@@ -29,6 +29,22 @@ export interface DeleteDomainAssociationCommandOutput extends DeleteDomainAssoci
29
29
  * @see {@link DeleteDomainAssociationCommandOutput} for command's `response` shape.
30
30
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p> A request contains unexpected data. </p>
34
+ *
35
+ * @throws {@link DependentServiceFailureException} (server fault)
36
+ * <p> An operation failed because a dependent service threw an exception. </p>
37
+ *
38
+ * @throws {@link InternalFailureException} (server fault)
39
+ * <p> The service failed to perform an operation due to an internal issue. </p>
40
+ *
41
+ * @throws {@link NotFoundException} (client fault)
42
+ * <p> An entity was not found during an operation. </p>
43
+ *
44
+ * @throws {@link UnauthorizedException} (client fault)
45
+ * <p> An operation failed due to a lack of access. </p>
46
+ *
47
+ *
32
48
  */
33
49
  export declare class DeleteDomainAssociationCommand extends $Command<DeleteDomainAssociationCommandInput, DeleteDomainAssociationCommandOutput, AmplifyClientResolvedConfig> {
34
50
  readonly input: DeleteDomainAssociationCommandInput;
@@ -29,6 +29,22 @@ export interface DeleteJobCommandOutput extends DeleteJobResult, __MetadataBeare
29
29
  * @see {@link DeleteJobCommandOutput} for command's `response` shape.
30
30
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p> A request contains unexpected data. </p>
34
+ *
35
+ * @throws {@link InternalFailureException} (server fault)
36
+ * <p> The service failed to perform an operation due to an internal issue. </p>
37
+ *
38
+ * @throws {@link LimitExceededException} (client fault)
39
+ * <p> A resource could not be created because service quotas were exceeded. </p>
40
+ *
41
+ * @throws {@link NotFoundException} (client fault)
42
+ * <p> An entity was not found during an operation. </p>
43
+ *
44
+ * @throws {@link UnauthorizedException} (client fault)
45
+ * <p> An operation failed due to a lack of access. </p>
46
+ *
47
+ *
32
48
  */
33
49
  export declare class DeleteJobCommand extends $Command<DeleteJobCommandInput, DeleteJobCommandOutput, AmplifyClientResolvedConfig> {
34
50
  readonly input: DeleteJobCommandInput;
@@ -29,6 +29,22 @@ export interface DeleteWebhookCommandOutput extends DeleteWebhookResult, __Metad
29
29
  * @see {@link DeleteWebhookCommandOutput} for command's `response` shape.
30
30
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p> A request contains unexpected data. </p>
34
+ *
35
+ * @throws {@link InternalFailureException} (server fault)
36
+ * <p> The service failed to perform an operation due to an internal issue. </p>
37
+ *
38
+ * @throws {@link LimitExceededException} (client fault)
39
+ * <p> A resource could not be created because service quotas were exceeded. </p>
40
+ *
41
+ * @throws {@link NotFoundException} (client fault)
42
+ * <p> An entity was not found during an operation. </p>
43
+ *
44
+ * @throws {@link UnauthorizedException} (client fault)
45
+ * <p> An operation failed due to a lack of access. </p>
46
+ *
47
+ *
32
48
  */
33
49
  export declare class DeleteWebhookCommand extends $Command<DeleteWebhookCommandInput, DeleteWebhookCommandOutput, AmplifyClientResolvedConfig> {
34
50
  readonly input: DeleteWebhookCommandInput;
@@ -30,6 +30,19 @@ export interface GenerateAccessLogsCommandOutput extends GenerateAccessLogsResul
30
30
  * @see {@link GenerateAccessLogsCommandOutput} for command's `response` shape.
31
31
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
32
32
  *
33
+ * @throws {@link BadRequestException} (client fault)
34
+ * <p> A request contains unexpected data. </p>
35
+ *
36
+ * @throws {@link InternalFailureException} (server fault)
37
+ * <p> The service failed to perform an operation due to an internal issue. </p>
38
+ *
39
+ * @throws {@link NotFoundException} (client fault)
40
+ * <p> An entity was not found during an operation. </p>
41
+ *
42
+ * @throws {@link UnauthorizedException} (client fault)
43
+ * <p> An operation failed due to a lack of access. </p>
44
+ *
45
+ *
33
46
  */
34
47
  export declare class GenerateAccessLogsCommand extends $Command<GenerateAccessLogsCommandInput, GenerateAccessLogsCommandOutput, AmplifyClientResolvedConfig> {
35
48
  readonly input: GenerateAccessLogsCommandInput;
@@ -29,6 +29,19 @@ export interface GetAppCommandOutput extends GetAppResult, __MetadataBearer {
29
29
  * @see {@link GetAppCommandOutput} for command's `response` shape.
30
30
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p> A request contains unexpected data. </p>
34
+ *
35
+ * @throws {@link InternalFailureException} (server fault)
36
+ * <p> The service failed to perform an operation due to an internal issue. </p>
37
+ *
38
+ * @throws {@link NotFoundException} (client fault)
39
+ * <p> An entity was not found during an operation. </p>
40
+ *
41
+ * @throws {@link UnauthorizedException} (client fault)
42
+ * <p> An operation failed due to a lack of access. </p>
43
+ *
44
+ *
32
45
  */
33
46
  export declare class GetAppCommand extends $Command<GetAppCommandInput, GetAppCommandOutput, AmplifyClientResolvedConfig> {
34
47
  readonly input: GetAppCommandInput;
@@ -29,6 +29,22 @@ export interface GetArtifactUrlCommandOutput extends GetArtifactUrlResult, __Met
29
29
  * @see {@link GetArtifactUrlCommandOutput} for command's `response` shape.
30
30
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p> A request contains unexpected data. </p>
34
+ *
35
+ * @throws {@link InternalFailureException} (server fault)
36
+ * <p> The service failed to perform an operation due to an internal issue. </p>
37
+ *
38
+ * @throws {@link LimitExceededException} (client fault)
39
+ * <p> A resource could not be created because service quotas were exceeded. </p>
40
+ *
41
+ * @throws {@link NotFoundException} (client fault)
42
+ * <p> An entity was not found during an operation. </p>
43
+ *
44
+ * @throws {@link UnauthorizedException} (client fault)
45
+ * <p> An operation failed due to a lack of access. </p>
46
+ *
47
+ *
32
48
  */
33
49
  export declare class GetArtifactUrlCommand extends $Command<GetArtifactUrlCommandInput, GetArtifactUrlCommandOutput, AmplifyClientResolvedConfig> {
34
50
  readonly input: GetArtifactUrlCommandInput;
@@ -29,6 +29,19 @@ export interface GetBackendEnvironmentCommandOutput extends GetBackendEnvironmen
29
29
  * @see {@link GetBackendEnvironmentCommandOutput} for command's `response` shape.
30
30
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p> A request contains unexpected data. </p>
34
+ *
35
+ * @throws {@link InternalFailureException} (server fault)
36
+ * <p> The service failed to perform an operation due to an internal issue. </p>
37
+ *
38
+ * @throws {@link NotFoundException} (client fault)
39
+ * <p> An entity was not found during an operation. </p>
40
+ *
41
+ * @throws {@link UnauthorizedException} (client fault)
42
+ * <p> An operation failed due to a lack of access. </p>
43
+ *
44
+ *
32
45
  */
33
46
  export declare class GetBackendEnvironmentCommand extends $Command<GetBackendEnvironmentCommandInput, GetBackendEnvironmentCommandOutput, AmplifyClientResolvedConfig> {
34
47
  readonly input: GetBackendEnvironmentCommandInput;
@@ -29,6 +29,19 @@ export interface GetBranchCommandOutput extends GetBranchResult, __MetadataBeare
29
29
  * @see {@link GetBranchCommandOutput} for command's `response` shape.
30
30
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p> A request contains unexpected data. </p>
34
+ *
35
+ * @throws {@link InternalFailureException} (server fault)
36
+ * <p> The service failed to perform an operation due to an internal issue. </p>
37
+ *
38
+ * @throws {@link NotFoundException} (client fault)
39
+ * <p> An entity was not found during an operation. </p>
40
+ *
41
+ * @throws {@link UnauthorizedException} (client fault)
42
+ * <p> An operation failed due to a lack of access. </p>
43
+ *
44
+ *
32
45
  */
33
46
  export declare class GetBranchCommand extends $Command<GetBranchCommandInput, GetBranchCommandOutput, AmplifyClientResolvedConfig> {
34
47
  readonly input: GetBranchCommandInput;
@@ -29,6 +29,19 @@ export interface GetDomainAssociationCommandOutput extends GetDomainAssociationR
29
29
  * @see {@link GetDomainAssociationCommandOutput} for command's `response` shape.
30
30
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p> A request contains unexpected data. </p>
34
+ *
35
+ * @throws {@link InternalFailureException} (server fault)
36
+ * <p> The service failed to perform an operation due to an internal issue. </p>
37
+ *
38
+ * @throws {@link NotFoundException} (client fault)
39
+ * <p> An entity was not found during an operation. </p>
40
+ *
41
+ * @throws {@link UnauthorizedException} (client fault)
42
+ * <p> An operation failed due to a lack of access. </p>
43
+ *
44
+ *
32
45
  */
33
46
  export declare class GetDomainAssociationCommand extends $Command<GetDomainAssociationCommandInput, GetDomainAssociationCommandOutput, AmplifyClientResolvedConfig> {
34
47
  readonly input: GetDomainAssociationCommandInput;
@@ -29,6 +29,22 @@ export interface GetJobCommandOutput extends GetJobResult, __MetadataBearer {
29
29
  * @see {@link GetJobCommandOutput} for command's `response` shape.
30
30
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p> A request contains unexpected data. </p>
34
+ *
35
+ * @throws {@link InternalFailureException} (server fault)
36
+ * <p> The service failed to perform an operation due to an internal issue. </p>
37
+ *
38
+ * @throws {@link LimitExceededException} (client fault)
39
+ * <p> A resource could not be created because service quotas were exceeded. </p>
40
+ *
41
+ * @throws {@link NotFoundException} (client fault)
42
+ * <p> An entity was not found during an operation. </p>
43
+ *
44
+ * @throws {@link UnauthorizedException} (client fault)
45
+ * <p> An operation failed due to a lack of access. </p>
46
+ *
47
+ *
32
48
  */
33
49
  export declare class GetJobCommand extends $Command<GetJobCommandInput, GetJobCommandOutput, AmplifyClientResolvedConfig> {
34
50
  readonly input: GetJobCommandInput;
@@ -29,6 +29,22 @@ export interface GetWebhookCommandOutput extends GetWebhookResult, __MetadataBea
29
29
  * @see {@link GetWebhookCommandOutput} for command's `response` shape.
30
30
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p> A request contains unexpected data. </p>
34
+ *
35
+ * @throws {@link InternalFailureException} (server fault)
36
+ * <p> The service failed to perform an operation due to an internal issue. </p>
37
+ *
38
+ * @throws {@link LimitExceededException} (client fault)
39
+ * <p> A resource could not be created because service quotas were exceeded. </p>
40
+ *
41
+ * @throws {@link NotFoundException} (client fault)
42
+ * <p> An entity was not found during an operation. </p>
43
+ *
44
+ * @throws {@link UnauthorizedException} (client fault)
45
+ * <p> An operation failed due to a lack of access. </p>
46
+ *
47
+ *
32
48
  */
33
49
  export declare class GetWebhookCommand extends $Command<GetWebhookCommandInput, GetWebhookCommandOutput, AmplifyClientResolvedConfig> {
34
50
  readonly input: GetWebhookCommandInput;
@@ -29,6 +29,16 @@ export interface ListAppsCommandOutput extends ListAppsResult, __MetadataBearer
29
29
  * @see {@link ListAppsCommandOutput} for command's `response` shape.
30
30
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p> A request contains unexpected data. </p>
34
+ *
35
+ * @throws {@link InternalFailureException} (server fault)
36
+ * <p> The service failed to perform an operation due to an internal issue. </p>
37
+ *
38
+ * @throws {@link UnauthorizedException} (client fault)
39
+ * <p> An operation failed due to a lack of access. </p>
40
+ *
41
+ *
32
42
  */
33
43
  export declare class ListAppsCommand extends $Command<ListAppsCommandInput, ListAppsCommandOutput, AmplifyClientResolvedConfig> {
34
44
  readonly input: ListAppsCommandInput;
@@ -29,6 +29,19 @@ export interface ListArtifactsCommandOutput extends ListArtifactsResult, __Metad
29
29
  * @see {@link ListArtifactsCommandOutput} for command's `response` shape.
30
30
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p> A request contains unexpected data. </p>
34
+ *
35
+ * @throws {@link InternalFailureException} (server fault)
36
+ * <p> The service failed to perform an operation due to an internal issue. </p>
37
+ *
38
+ * @throws {@link LimitExceededException} (client fault)
39
+ * <p> A resource could not be created because service quotas were exceeded. </p>
40
+ *
41
+ * @throws {@link UnauthorizedException} (client fault)
42
+ * <p> An operation failed due to a lack of access. </p>
43
+ *
44
+ *
32
45
  */
33
46
  export declare class ListArtifactsCommand extends $Command<ListArtifactsCommandInput, ListArtifactsCommandOutput, AmplifyClientResolvedConfig> {
34
47
  readonly input: ListArtifactsCommandInput;
@@ -29,6 +29,16 @@ export interface ListBackendEnvironmentsCommandOutput extends ListBackendEnviron
29
29
  * @see {@link ListBackendEnvironmentsCommandOutput} for command's `response` shape.
30
30
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p> A request contains unexpected data. </p>
34
+ *
35
+ * @throws {@link InternalFailureException} (server fault)
36
+ * <p> The service failed to perform an operation due to an internal issue. </p>
37
+ *
38
+ * @throws {@link UnauthorizedException} (client fault)
39
+ * <p> An operation failed due to a lack of access. </p>
40
+ *
41
+ *
32
42
  */
33
43
  export declare class ListBackendEnvironmentsCommand extends $Command<ListBackendEnvironmentsCommandInput, ListBackendEnvironmentsCommandOutput, AmplifyClientResolvedConfig> {
34
44
  readonly input: ListBackendEnvironmentsCommandInput;
@@ -29,6 +29,16 @@ export interface ListBranchesCommandOutput extends ListBranchesResult, __Metadat
29
29
  * @see {@link ListBranchesCommandOutput} for command's `response` shape.
30
30
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p> A request contains unexpected data. </p>
34
+ *
35
+ * @throws {@link InternalFailureException} (server fault)
36
+ * <p> The service failed to perform an operation due to an internal issue. </p>
37
+ *
38
+ * @throws {@link UnauthorizedException} (client fault)
39
+ * <p> An operation failed due to a lack of access. </p>
40
+ *
41
+ *
32
42
  */
33
43
  export declare class ListBranchesCommand extends $Command<ListBranchesCommandInput, ListBranchesCommandOutput, AmplifyClientResolvedConfig> {
34
44
  readonly input: ListBranchesCommandInput;
@@ -29,6 +29,16 @@ export interface ListDomainAssociationsCommandOutput extends ListDomainAssociati
29
29
  * @see {@link ListDomainAssociationsCommandOutput} for command's `response` shape.
30
30
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p> A request contains unexpected data. </p>
34
+ *
35
+ * @throws {@link InternalFailureException} (server fault)
36
+ * <p> The service failed to perform an operation due to an internal issue. </p>
37
+ *
38
+ * @throws {@link UnauthorizedException} (client fault)
39
+ * <p> An operation failed due to a lack of access. </p>
40
+ *
41
+ *
32
42
  */
33
43
  export declare class ListDomainAssociationsCommand extends $Command<ListDomainAssociationsCommandInput, ListDomainAssociationsCommandOutput, AmplifyClientResolvedConfig> {
34
44
  readonly input: ListDomainAssociationsCommandInput;
@@ -29,6 +29,19 @@ export interface ListJobsCommandOutput extends ListJobsResult, __MetadataBearer
29
29
  * @see {@link ListJobsCommandOutput} for command's `response` shape.
30
30
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p> A request contains unexpected data. </p>
34
+ *
35
+ * @throws {@link InternalFailureException} (server fault)
36
+ * <p> The service failed to perform an operation due to an internal issue. </p>
37
+ *
38
+ * @throws {@link LimitExceededException} (client fault)
39
+ * <p> A resource could not be created because service quotas were exceeded. </p>
40
+ *
41
+ * @throws {@link UnauthorizedException} (client fault)
42
+ * <p> An operation failed due to a lack of access. </p>
43
+ *
44
+ *
32
45
  */
33
46
  export declare class ListJobsCommand extends $Command<ListJobsCommandInput, ListJobsCommandOutput, AmplifyClientResolvedConfig> {
34
47
  readonly input: ListJobsCommandInput;
@@ -29,6 +29,16 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
29
29
  * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
30
30
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p> A request contains unexpected data. </p>
34
+ *
35
+ * @throws {@link InternalFailureException} (server fault)
36
+ * <p> The service failed to perform an operation due to an internal issue. </p>
37
+ *
38
+ * @throws {@link ResourceNotFoundException} (client fault)
39
+ * <p> An operation failed due to a non-existent resource. </p>
40
+ *
41
+ *
32
42
  */
33
43
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, AmplifyClientResolvedConfig> {
34
44
  readonly input: ListTagsForResourceCommandInput;
@@ -29,6 +29,19 @@ export interface ListWebhooksCommandOutput extends ListWebhooksResult, __Metadat
29
29
  * @see {@link ListWebhooksCommandOutput} for command's `response` shape.
30
30
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p> A request contains unexpected data. </p>
34
+ *
35
+ * @throws {@link InternalFailureException} (server fault)
36
+ * <p> The service failed to perform an operation due to an internal issue. </p>
37
+ *
38
+ * @throws {@link LimitExceededException} (client fault)
39
+ * <p> A resource could not be created because service quotas were exceeded. </p>
40
+ *
41
+ * @throws {@link UnauthorizedException} (client fault)
42
+ * <p> An operation failed due to a lack of access. </p>
43
+ *
44
+ *
32
45
  */
33
46
  export declare class ListWebhooksCommand extends $Command<ListWebhooksCommandInput, ListWebhooksCommandOutput, AmplifyClientResolvedConfig> {
34
47
  readonly input: ListWebhooksCommandInput;
@@ -30,6 +30,22 @@ export interface StartDeploymentCommandOutput extends StartDeploymentResult, __M
30
30
  * @see {@link StartDeploymentCommandOutput} for command's `response` shape.
31
31
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
32
32
  *
33
+ * @throws {@link BadRequestException} (client fault)
34
+ * <p> A request contains unexpected data. </p>
35
+ *
36
+ * @throws {@link InternalFailureException} (server fault)
37
+ * <p> The service failed to perform an operation due to an internal issue. </p>
38
+ *
39
+ * @throws {@link LimitExceededException} (client fault)
40
+ * <p> A resource could not be created because service quotas were exceeded. </p>
41
+ *
42
+ * @throws {@link NotFoundException} (client fault)
43
+ * <p> An entity was not found during an operation. </p>
44
+ *
45
+ * @throws {@link UnauthorizedException} (client fault)
46
+ * <p> An operation failed due to a lack of access. </p>
47
+ *
48
+ *
33
49
  */
34
50
  export declare class StartDeploymentCommand extends $Command<StartDeploymentCommandInput, StartDeploymentCommandOutput, AmplifyClientResolvedConfig> {
35
51
  readonly input: StartDeploymentCommandInput;
@@ -29,6 +29,22 @@ export interface StartJobCommandOutput extends StartJobResult, __MetadataBearer
29
29
  * @see {@link StartJobCommandOutput} for command's `response` shape.
30
30
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p> A request contains unexpected data. </p>
34
+ *
35
+ * @throws {@link InternalFailureException} (server fault)
36
+ * <p> The service failed to perform an operation due to an internal issue. </p>
37
+ *
38
+ * @throws {@link LimitExceededException} (client fault)
39
+ * <p> A resource could not be created because service quotas were exceeded. </p>
40
+ *
41
+ * @throws {@link NotFoundException} (client fault)
42
+ * <p> An entity was not found during an operation. </p>
43
+ *
44
+ * @throws {@link UnauthorizedException} (client fault)
45
+ * <p> An operation failed due to a lack of access. </p>
46
+ *
47
+ *
32
48
  */
33
49
  export declare class StartJobCommand extends $Command<StartJobCommandInput, StartJobCommandOutput, AmplifyClientResolvedConfig> {
34
50
  readonly input: StartJobCommandInput;
@@ -29,6 +29,22 @@ export interface StopJobCommandOutput extends StopJobResult, __MetadataBearer {
29
29
  * @see {@link StopJobCommandOutput} for command's `response` shape.
30
30
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p> A request contains unexpected data. </p>
34
+ *
35
+ * @throws {@link InternalFailureException} (server fault)
36
+ * <p> The service failed to perform an operation due to an internal issue. </p>
37
+ *
38
+ * @throws {@link LimitExceededException} (client fault)
39
+ * <p> A resource could not be created because service quotas were exceeded. </p>
40
+ *
41
+ * @throws {@link NotFoundException} (client fault)
42
+ * <p> An entity was not found during an operation. </p>
43
+ *
44
+ * @throws {@link UnauthorizedException} (client fault)
45
+ * <p> An operation failed due to a lack of access. </p>
46
+ *
47
+ *
32
48
  */
33
49
  export declare class StopJobCommand extends $Command<StopJobCommandInput, StopJobCommandOutput, AmplifyClientResolvedConfig> {
34
50
  readonly input: StopJobCommandInput;
@@ -29,6 +29,16 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
29
29
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
30
30
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p> A request contains unexpected data. </p>
34
+ *
35
+ * @throws {@link InternalFailureException} (server fault)
36
+ * <p> The service failed to perform an operation due to an internal issue. </p>
37
+ *
38
+ * @throws {@link ResourceNotFoundException} (client fault)
39
+ * <p> An operation failed due to a non-existent resource. </p>
40
+ *
41
+ *
32
42
  */
33
43
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, AmplifyClientResolvedConfig> {
34
44
  readonly input: TagResourceCommandInput;
@@ -29,6 +29,16 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
29
29
  * @see {@link UntagResourceCommandOutput} for command's `response` shape.
30
30
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p> A request contains unexpected data. </p>
34
+ *
35
+ * @throws {@link InternalFailureException} (server fault)
36
+ * <p> The service failed to perform an operation due to an internal issue. </p>
37
+ *
38
+ * @throws {@link ResourceNotFoundException} (client fault)
39
+ * <p> An operation failed due to a non-existent resource. </p>
40
+ *
41
+ *
32
42
  */
33
43
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, AmplifyClientResolvedConfig> {
34
44
  readonly input: UntagResourceCommandInput;
@@ -29,6 +29,19 @@ export interface UpdateAppCommandOutput extends UpdateAppResult, __MetadataBeare
29
29
  * @see {@link UpdateAppCommandOutput} for command's `response` shape.
30
30
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p> A request contains unexpected data. </p>
34
+ *
35
+ * @throws {@link InternalFailureException} (server fault)
36
+ * <p> The service failed to perform an operation due to an internal issue. </p>
37
+ *
38
+ * @throws {@link NotFoundException} (client fault)
39
+ * <p> An entity was not found during an operation. </p>
40
+ *
41
+ * @throws {@link UnauthorizedException} (client fault)
42
+ * <p> An operation failed due to a lack of access. </p>
43
+ *
44
+ *
32
45
  */
33
46
  export declare class UpdateAppCommand extends $Command<UpdateAppCommandInput, UpdateAppCommandOutput, AmplifyClientResolvedConfig> {
34
47
  readonly input: UpdateAppCommandInput;
@@ -29,6 +29,22 @@ export interface UpdateBranchCommandOutput extends UpdateBranchResult, __Metadat
29
29
  * @see {@link UpdateBranchCommandOutput} for command's `response` shape.
30
30
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p> A request contains unexpected data. </p>
34
+ *
35
+ * @throws {@link DependentServiceFailureException} (server fault)
36
+ * <p> An operation failed because a dependent service threw an exception. </p>
37
+ *
38
+ * @throws {@link InternalFailureException} (server fault)
39
+ * <p> The service failed to perform an operation due to an internal issue. </p>
40
+ *
41
+ * @throws {@link NotFoundException} (client fault)
42
+ * <p> An entity was not found during an operation. </p>
43
+ *
44
+ * @throws {@link UnauthorizedException} (client fault)
45
+ * <p> An operation failed due to a lack of access. </p>
46
+ *
47
+ *
32
48
  */
33
49
  export declare class UpdateBranchCommand extends $Command<UpdateBranchCommandInput, UpdateBranchCommandOutput, AmplifyClientResolvedConfig> {
34
50
  readonly input: UpdateBranchCommandInput;
@@ -29,6 +29,22 @@ export interface UpdateDomainAssociationCommandOutput extends UpdateDomainAssoci
29
29
  * @see {@link UpdateDomainAssociationCommandOutput} for command's `response` shape.
30
30
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p> A request contains unexpected data. </p>
34
+ *
35
+ * @throws {@link DependentServiceFailureException} (server fault)
36
+ * <p> An operation failed because a dependent service threw an exception. </p>
37
+ *
38
+ * @throws {@link InternalFailureException} (server fault)
39
+ * <p> The service failed to perform an operation due to an internal issue. </p>
40
+ *
41
+ * @throws {@link NotFoundException} (client fault)
42
+ * <p> An entity was not found during an operation. </p>
43
+ *
44
+ * @throws {@link UnauthorizedException} (client fault)
45
+ * <p> An operation failed due to a lack of access. </p>
46
+ *
47
+ *
32
48
  */
33
49
  export declare class UpdateDomainAssociationCommand extends $Command<UpdateDomainAssociationCommandInput, UpdateDomainAssociationCommandOutput, AmplifyClientResolvedConfig> {
34
50
  readonly input: UpdateDomainAssociationCommandInput;
@@ -29,6 +29,22 @@ export interface UpdateWebhookCommandOutput extends UpdateWebhookResult, __Metad
29
29
  * @see {@link UpdateWebhookCommandOutput} for command's `response` shape.
30
30
  * @see {@link AmplifyClientResolvedConfig | config} for AmplifyClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p> A request contains unexpected data. </p>
34
+ *
35
+ * @throws {@link DependentServiceFailureException} (server fault)
36
+ * <p> An operation failed because a dependent service threw an exception. </p>
37
+ *
38
+ * @throws {@link InternalFailureException} (server fault)
39
+ * <p> The service failed to perform an operation due to an internal issue. </p>
40
+ *
41
+ * @throws {@link NotFoundException} (client fault)
42
+ * <p> An entity was not found during an operation. </p>
43
+ *
44
+ * @throws {@link UnauthorizedException} (client fault)
45
+ * <p> An operation failed due to a lack of access. </p>
46
+ *
47
+ *
32
48
  */
33
49
  export declare class UpdateWebhookCommand extends $Command<UpdateWebhookCommandInput, UpdateWebhookCommandOutput, AmplifyClientResolvedConfig> {
34
50
  readonly input: UpdateWebhookCommandInput;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-amplify",
3
3
  "description": "AWS SDK for JavaScript Amplify Client for Node.js, Browser and React Native",
4
- "version": "3.289.0",
4
+ "version": "3.292.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -20,55 +20,50 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.289.0",
24
- "@aws-sdk/config-resolver": "3.289.0",
25
- "@aws-sdk/credential-provider-node": "3.289.0",
26
- "@aws-sdk/fetch-http-handler": "3.289.0",
27
- "@aws-sdk/hash-node": "3.289.0",
28
- "@aws-sdk/invalid-dependency": "3.289.0",
29
- "@aws-sdk/middleware-content-length": "3.289.0",
30
- "@aws-sdk/middleware-endpoint": "3.289.0",
31
- "@aws-sdk/middleware-host-header": "3.289.0",
32
- "@aws-sdk/middleware-logger": "3.289.0",
33
- "@aws-sdk/middleware-recursion-detection": "3.289.0",
34
- "@aws-sdk/middleware-retry": "3.289.0",
35
- "@aws-sdk/middleware-serde": "3.289.0",
36
- "@aws-sdk/middleware-signing": "3.289.0",
37
- "@aws-sdk/middleware-stack": "3.289.0",
38
- "@aws-sdk/middleware-user-agent": "3.289.0",
39
- "@aws-sdk/node-config-provider": "3.289.0",
40
- "@aws-sdk/node-http-handler": "3.289.0",
41
- "@aws-sdk/protocol-http": "3.289.0",
42
- "@aws-sdk/smithy-client": "3.289.0",
43
- "@aws-sdk/types": "3.289.0",
44
- "@aws-sdk/url-parser": "3.289.0",
45
- "@aws-sdk/util-base64": "3.208.0",
46
- "@aws-sdk/util-body-length-browser": "3.188.0",
47
- "@aws-sdk/util-body-length-node": "3.208.0",
48
- "@aws-sdk/util-defaults-mode-browser": "3.289.0",
49
- "@aws-sdk/util-defaults-mode-node": "3.289.0",
50
- "@aws-sdk/util-endpoints": "3.289.0",
51
- "@aws-sdk/util-retry": "3.289.0",
52
- "@aws-sdk/util-user-agent-browser": "3.289.0",
53
- "@aws-sdk/util-user-agent-node": "3.289.0",
54
- "@aws-sdk/util-utf8": "3.254.0",
23
+ "@aws-sdk/client-sts": "3.292.0",
24
+ "@aws-sdk/config-resolver": "3.292.0",
25
+ "@aws-sdk/credential-provider-node": "3.292.0",
26
+ "@aws-sdk/fetch-http-handler": "3.292.0",
27
+ "@aws-sdk/hash-node": "3.292.0",
28
+ "@aws-sdk/invalid-dependency": "3.292.0",
29
+ "@aws-sdk/middleware-content-length": "3.292.0",
30
+ "@aws-sdk/middleware-endpoint": "3.292.0",
31
+ "@aws-sdk/middleware-host-header": "3.292.0",
32
+ "@aws-sdk/middleware-logger": "3.292.0",
33
+ "@aws-sdk/middleware-recursion-detection": "3.292.0",
34
+ "@aws-sdk/middleware-retry": "3.292.0",
35
+ "@aws-sdk/middleware-serde": "3.292.0",
36
+ "@aws-sdk/middleware-signing": "3.292.0",
37
+ "@aws-sdk/middleware-stack": "3.292.0",
38
+ "@aws-sdk/middleware-user-agent": "3.292.0",
39
+ "@aws-sdk/node-config-provider": "3.292.0",
40
+ "@aws-sdk/node-http-handler": "3.292.0",
41
+ "@aws-sdk/protocol-http": "3.292.0",
42
+ "@aws-sdk/smithy-client": "3.292.0",
43
+ "@aws-sdk/types": "3.292.0",
44
+ "@aws-sdk/url-parser": "3.292.0",
45
+ "@aws-sdk/util-base64": "3.292.0",
46
+ "@aws-sdk/util-body-length-browser": "3.292.0",
47
+ "@aws-sdk/util-body-length-node": "3.292.0",
48
+ "@aws-sdk/util-defaults-mode-browser": "3.292.0",
49
+ "@aws-sdk/util-defaults-mode-node": "3.292.0",
50
+ "@aws-sdk/util-endpoints": "3.292.0",
51
+ "@aws-sdk/util-retry": "3.292.0",
52
+ "@aws-sdk/util-user-agent-browser": "3.292.0",
53
+ "@aws-sdk/util-user-agent-node": "3.292.0",
54
+ "@aws-sdk/util-utf8": "3.292.0",
55
55
  "tslib": "^2.3.1"
56
56
  },
57
57
  "devDependencies": {
58
- "@aws-sdk/service-client-documentation-generator": "3.208.0",
58
+ "@aws-sdk/service-client-documentation-generator": "3.292.0",
59
59
  "@tsconfig/node14": "1.0.3",
60
60
  "@types/node": "^14.14.31",
61
61
  "concurrently": "7.0.0",
62
62
  "downlevel-dts": "0.10.1",
63
63
  "rimraf": "3.0.2",
64
- "typedoc": "0.19.2",
64
+ "typedoc": "0.23.23",
65
65
  "typescript": "~4.6.2"
66
66
  },
67
- "overrides": {
68
- "typedoc": {
69
- "typescript": "~4.6.2"
70
- }
71
- },
72
67
  "engines": {
73
68
  "node": ">=14.0.0"
74
69
  },