@aws-sdk/client-apprunner 3.934.0 → 3.935.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.
@@ -1,5 +1,4 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { AppRunnerServiceException as __BaseException } from "./AppRunnerServiceException";
1
+ import { AutoScalingConfigurationStatus, CertificateValidationRecordStatus, ConfigurationSource, ConnectionStatus, CustomDomainAssociationStatus, EgressType, HealthCheckProtocol, ImageRepositoryType, IpAddressType, ObservabilityConfigurationStatus, OperationStatus, OperationType, ProviderType, Runtime, ServiceStatus, SourceCodeVersionType, TracingVendor, VpcConnectorStatus, VpcIngressConnectionStatus } from "./enums";
3
2
  /**
4
3
  * @public
5
4
  */
@@ -25,19 +24,6 @@ export interface AssociateCustomDomainRequest {
25
24
  */
26
25
  EnableWWWSubdomain?: boolean | undefined;
27
26
  }
28
- /**
29
- * @public
30
- * @enum
31
- */
32
- export declare const CertificateValidationRecordStatus: {
33
- readonly FAILED: "FAILED";
34
- readonly PENDING_VALIDATION: "PENDING_VALIDATION";
35
- readonly SUCCESS: "SUCCESS";
36
- };
37
- /**
38
- * @public
39
- */
40
- export type CertificateValidationRecordStatus = (typeof CertificateValidationRecordStatus)[keyof typeof CertificateValidationRecordStatus];
41
27
  /**
42
28
  * <p>Describes a certificate CNAME record to add to your DNS. For more information, see <a href="https://docs.aws.amazon.com/apprunner/latest/api/API_AssociateCustomDomain.html">AssociateCustomDomain</a>.</p>
43
29
  * @public
@@ -65,23 +51,6 @@ export interface CertificateValidationRecord {
65
51
  */
66
52
  Status?: CertificateValidationRecordStatus | undefined;
67
53
  }
68
- /**
69
- * @public
70
- * @enum
71
- */
72
- export declare const CustomDomainAssociationStatus: {
73
- readonly ACTIVE: "ACTIVE";
74
- readonly BINDING_CERTIFICATE: "BINDING_CERTIFICATE";
75
- readonly CREATE_FAILED: "CREATE_FAILED";
76
- readonly CREATING: "CREATING";
77
- readonly DELETE_FAILED: "DELETE_FAILED";
78
- readonly DELETING: "DELETING";
79
- readonly PENDING_CERTIFICATE_DNS_VALIDATION: "PENDING_CERTIFICATE_DNS_VALIDATION";
80
- };
81
- /**
82
- * @public
83
- */
84
- export type CustomDomainAssociationStatus = (typeof CustomDomainAssociationStatus)[keyof typeof CustomDomainAssociationStatus];
85
54
  /**
86
55
  * <p>Describes a custom domain that's associated with an App Runner service.</p>
87
56
  * @public
@@ -158,45 +127,6 @@ export interface AssociateCustomDomainResponse {
158
127
  */
159
128
  VpcDNSTargets: VpcDNSTarget[] | undefined;
160
129
  }
161
- /**
162
- * <p>An unexpected service exception occurred.</p>
163
- * @public
164
- */
165
- export declare class InternalServiceErrorException extends __BaseException {
166
- readonly name: "InternalServiceErrorException";
167
- readonly $fault: "server";
168
- Message?: string | undefined;
169
- /**
170
- * @internal
171
- */
172
- constructor(opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>);
173
- }
174
- /**
175
- * <p>One or more input parameters aren't valid. Refer to the API action's document page, correct the input parameters, and try the action again.</p>
176
- * @public
177
- */
178
- export declare class InvalidRequestException extends __BaseException {
179
- readonly name: "InvalidRequestException";
180
- readonly $fault: "client";
181
- Message?: string | undefined;
182
- /**
183
- * @internal
184
- */
185
- constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
186
- }
187
- /**
188
- * <p>You can't perform this action when the resource is in its current state.</p>
189
- * @public
190
- */
191
- export declare class InvalidStateException extends __BaseException {
192
- readonly name: "InvalidStateException";
193
- readonly $fault: "client";
194
- Message?: string | undefined;
195
- /**
196
- * @internal
197
- */
198
- constructor(opts: __ExceptionOptionType<InvalidStateException, __BaseException>);
199
- }
200
130
  /**
201
131
  * <p>Describes a tag that is applied to an App Runner resource. A tag is a metadata item consisting of a key-value pair.</p>
202
132
  * @public
@@ -276,18 +206,6 @@ export interface CreateAutoScalingConfigurationRequest {
276
206
  */
277
207
  Tags?: Tag[] | undefined;
278
208
  }
279
- /**
280
- * @public
281
- * @enum
282
- */
283
- export declare const AutoScalingConfigurationStatus: {
284
- readonly ACTIVE: "ACTIVE";
285
- readonly INACTIVE: "INACTIVE";
286
- };
287
- /**
288
- * @public
289
- */
290
- export type AutoScalingConfigurationStatus = (typeof AutoScalingConfigurationStatus)[keyof typeof AutoScalingConfigurationStatus];
291
209
  /**
292
210
  * <p>Describes an App Runner automatic scaling configuration resource.</p>
293
211
  * <p>A higher <code>MinSize</code> increases the spread of your App Runner service over more Availability Zones in the Amazon Web Services Region. The tradeoff is a higher
@@ -380,33 +298,6 @@ export interface CreateAutoScalingConfigurationResponse {
380
298
  */
381
299
  AutoScalingConfiguration: AutoScalingConfiguration | undefined;
382
300
  }
383
- /**
384
- * <p>App Runner can't create this resource. You've reached your account quota for this resource type.</p>
385
- * <p>For App Runner per-resource quotas, see <a href="https://docs.aws.amazon.com/general/latest/gr/apprunner.html">App Runner endpoints and quotas</a> in the
386
- * <i>Amazon Web Services General Reference</i>.</p>
387
- * @public
388
- */
389
- export declare class ServiceQuotaExceededException extends __BaseException {
390
- readonly name: "ServiceQuotaExceededException";
391
- readonly $fault: "client";
392
- Message?: string | undefined;
393
- /**
394
- * @internal
395
- */
396
- constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
397
- }
398
- /**
399
- * @public
400
- * @enum
401
- */
402
- export declare const ProviderType: {
403
- readonly BITBUCKET: "BITBUCKET";
404
- readonly GITHUB: "GITHUB";
405
- };
406
- /**
407
- * @public
408
- */
409
- export type ProviderType = (typeof ProviderType)[keyof typeof ProviderType];
410
301
  /**
411
302
  * @public
412
303
  */
@@ -427,20 +318,6 @@ export interface CreateConnectionRequest {
427
318
  */
428
319
  Tags?: Tag[] | undefined;
429
320
  }
430
- /**
431
- * @public
432
- * @enum
433
- */
434
- export declare const ConnectionStatus: {
435
- readonly AVAILABLE: "AVAILABLE";
436
- readonly DELETED: "DELETED";
437
- readonly ERROR: "ERROR";
438
- readonly PENDING_HANDSHAKE: "PENDING_HANDSHAKE";
439
- };
440
- /**
441
- * @public
442
- */
443
- export type ConnectionStatus = (typeof ConnectionStatus)[keyof typeof ConnectionStatus];
444
321
  /**
445
322
  * <p>Describes an App Runner connection resource.</p>
446
323
  * @public
@@ -482,17 +359,6 @@ export interface CreateConnectionResponse {
482
359
  */
483
360
  Connection: Connection | undefined;
484
361
  }
485
- /**
486
- * @public
487
- * @enum
488
- */
489
- export declare const TracingVendor: {
490
- readonly AWSXRAY: "AWSXRAY";
491
- };
492
- /**
493
- * @public
494
- */
495
- export type TracingVendor = (typeof TracingVendor)[keyof typeof TracingVendor];
496
362
  /**
497
363
  * <p>Describes the configuration of the tracing feature within an App Runner observability configuration.</p>
498
364
  * @public
@@ -531,18 +397,6 @@ export interface CreateObservabilityConfigurationRequest {
531
397
  */
532
398
  Tags?: Tag[] | undefined;
533
399
  }
534
- /**
535
- * @public
536
- * @enum
537
- */
538
- export declare const ObservabilityConfigurationStatus: {
539
- readonly ACTIVE: "ACTIVE";
540
- readonly INACTIVE: "INACTIVE";
541
- };
542
- /**
543
- * @public
544
- */
545
- export type ObservabilityConfigurationStatus = (typeof ObservabilityConfigurationStatus)[keyof typeof ObservabilityConfigurationStatus];
546
400
  /**
547
401
  * <p>Describes an App Runner observability configuration resource. Multiple revisions of a configuration have the same
548
402
  * <code>ObservabilityConfigurationName</code> and different <code>ObservabilityConfigurationRevision</code> values.</p>
@@ -617,18 +471,6 @@ export interface EncryptionConfiguration {
617
471
  */
618
472
  KmsKey: string | undefined;
619
473
  }
620
- /**
621
- * @public
622
- * @enum
623
- */
624
- export declare const HealthCheckProtocol: {
625
- readonly HTTP: "HTTP";
626
- readonly TCP: "TCP";
627
- };
628
- /**
629
- * @public
630
- */
631
- export type HealthCheckProtocol = (typeof HealthCheckProtocol)[keyof typeof HealthCheckProtocol];
632
474
  /**
633
475
  * <p>Describes the settings for the health check that App Runner performs to monitor the health of a service.</p>
634
476
  * @public
@@ -706,18 +548,6 @@ export interface InstanceConfiguration {
706
548
  */
707
549
  InstanceRoleArn?: string | undefined;
708
550
  }
709
- /**
710
- * @public
711
- * @enum
712
- */
713
- export declare const EgressType: {
714
- readonly DEFAULT: "DEFAULT";
715
- readonly VPC: "VPC";
716
- };
717
- /**
718
- * @public
719
- */
720
- export type EgressType = (typeof EgressType)[keyof typeof EgressType];
721
551
  /**
722
552
  * <p>Describes configuration settings related to outbound network traffic of an App Runner service.</p>
723
553
  * @public
@@ -749,18 +579,6 @@ export interface IngressConfiguration {
749
579
  */
750
580
  IsPubliclyAccessible?: boolean | undefined;
751
581
  }
752
- /**
753
- * @public
754
- * @enum
755
- */
756
- export declare const IpAddressType: {
757
- readonly DUAL_STACK: "DUAL_STACK";
758
- readonly IPV4: "IPV4";
759
- };
760
- /**
761
- * @public
762
- */
763
- export type IpAddressType = (typeof IpAddressType)[keyof typeof IpAddressType];
764
582
  /**
765
583
  * <p>Describes configuration settings related to network traffic of an App Runner service. Consists of embedded objects for each configurable network
766
584
  * feature.</p>
@@ -827,29 +645,6 @@ export interface AuthenticationConfiguration {
827
645
  */
828
646
  AccessRoleArn?: string | undefined;
829
647
  }
830
- /**
831
- * @public
832
- * @enum
833
- */
834
- export declare const Runtime: {
835
- readonly CORRETTO_11: "CORRETTO_11";
836
- readonly CORRETTO_8: "CORRETTO_8";
837
- readonly DOTNET_6: "DOTNET_6";
838
- readonly GO_1: "GO_1";
839
- readonly NODEJS_12: "NODEJS_12";
840
- readonly NODEJS_14: "NODEJS_14";
841
- readonly NODEJS_16: "NODEJS_16";
842
- readonly NODEJS_18: "NODEJS_18";
843
- readonly NODEJS_22: "NODEJS_22";
844
- readonly PHP_81: "PHP_81";
845
- readonly PYTHON_3: "PYTHON_3";
846
- readonly PYTHON_311: "PYTHON_311";
847
- readonly RUBY_31: "RUBY_31";
848
- };
849
- /**
850
- * @public
851
- */
852
- export type Runtime = (typeof Runtime)[keyof typeof Runtime];
853
648
  /**
854
649
  * <p>Describes the basic configuration needed for building and running an App Runner service. This type doesn't support the full set of possible
855
650
  * configuration options. Fur full configuration capabilities, use a <code>apprunner.yaml</code> file in the source code repository.</p>
@@ -906,18 +701,6 @@ export interface CodeConfigurationValues {
906
701
  */
907
702
  RuntimeEnvironmentSecrets?: Record<string, string> | undefined;
908
703
  }
909
- /**
910
- * @public
911
- * @enum
912
- */
913
- export declare const ConfigurationSource: {
914
- readonly API: "API";
915
- readonly REPOSITORY: "REPOSITORY";
916
- };
917
- /**
918
- * @public
919
- */
920
- export type ConfigurationSource = (typeof ConfigurationSource)[keyof typeof ConfigurationSource];
921
704
  /**
922
705
  * <p>Describes the configuration that App Runner uses to build and run an App Runner service from a source code repository.</p>
923
706
  * @public
@@ -947,17 +730,6 @@ export interface CodeConfiguration {
947
730
  */
948
731
  CodeConfigurationValues?: CodeConfigurationValues | undefined;
949
732
  }
950
- /**
951
- * @public
952
- * @enum
953
- */
954
- export declare const SourceCodeVersionType: {
955
- readonly BRANCH: "BRANCH";
956
- };
957
- /**
958
- * @public
959
- */
960
- export type SourceCodeVersionType = (typeof SourceCodeVersionType)[keyof typeof SourceCodeVersionType];
961
733
  /**
962
734
  * <p>Identifies a version of code that App Runner refers to within a source code repository.</p>
963
735
  * @public
@@ -1049,18 +821,6 @@ export interface ImageConfiguration {
1049
821
  */
1050
822
  RuntimeEnvironmentSecrets?: Record<string, string> | undefined;
1051
823
  }
1052
- /**
1053
- * @public
1054
- * @enum
1055
- */
1056
- export declare const ImageRepositoryType: {
1057
- readonly ECR: "ECR";
1058
- readonly ECR_PUBLIC: "ECR_PUBLIC";
1059
- };
1060
- /**
1061
- * @public
1062
- */
1063
- export type ImageRepositoryType = (typeof ImageRepositoryType)[keyof typeof ImageRepositoryType];
1064
824
  /**
1065
825
  * <p>Describes a source image repository.</p>
1066
826
  * @public
@@ -1224,22 +984,6 @@ export interface AutoScalingConfigurationSummary {
1224
984
  */
1225
985
  IsDefault?: boolean | undefined;
1226
986
  }
1227
- /**
1228
- * @public
1229
- * @enum
1230
- */
1231
- export declare const ServiceStatus: {
1232
- readonly CREATE_FAILED: "CREATE_FAILED";
1233
- readonly DELETED: "DELETED";
1234
- readonly DELETE_FAILED: "DELETE_FAILED";
1235
- readonly OPERATION_IN_PROGRESS: "OPERATION_IN_PROGRESS";
1236
- readonly PAUSED: "PAUSED";
1237
- readonly RUNNING: "RUNNING";
1238
- };
1239
- /**
1240
- * @public
1241
- */
1242
- export type ServiceStatus = (typeof ServiceStatus)[keyof typeof ServiceStatus];
1243
987
  /**
1244
988
  * <p>Describes an App Runner service. It can describe a service in any state, including deleted services.</p>
1245
989
  * <p>This type contains the full information about a service, including configuration details. It's returned by the <a href="https://docs.aws.amazon.com/apprunner/latest/api/API_CreateService.html">CreateService</a>, <a href="https://docs.aws.amazon.com/apprunner/latest/api/API_DescribeService.html">DescribeService</a>, and <a href="https://docs.aws.amazon.com/apprunner/latest/api/API_DeleteService.html">DeleteService</a> actions. A subset of this
@@ -1383,18 +1127,6 @@ export interface CreateVpcConnectorRequest {
1383
1127
  */
1384
1128
  Tags?: Tag[] | undefined;
1385
1129
  }
1386
- /**
1387
- * @public
1388
- * @enum
1389
- */
1390
- export declare const VpcConnectorStatus: {
1391
- readonly ACTIVE: "ACTIVE";
1392
- readonly INACTIVE: "INACTIVE";
1393
- };
1394
- /**
1395
- * @public
1396
- */
1397
- export type VpcConnectorStatus = (typeof VpcConnectorStatus)[keyof typeof VpcConnectorStatus];
1398
1130
  /**
1399
1131
  * <p>Describes an App Runner VPC connector resource. A VPC connector describes the Amazon Virtual Private Cloud (Amazon VPC) that an App Runner service is
1400
1132
  * associated with, and the subnets and security group that are used.</p>
@@ -1507,24 +1239,6 @@ export interface CreateVpcIngressConnectionRequest {
1507
1239
  */
1508
1240
  Tags?: Tag[] | undefined;
1509
1241
  }
1510
- /**
1511
- * @public
1512
- * @enum
1513
- */
1514
- export declare const VpcIngressConnectionStatus: {
1515
- readonly AVAILABLE: "AVAILABLE";
1516
- readonly DELETED: "DELETED";
1517
- readonly FAILED_CREATION: "FAILED_CREATION";
1518
- readonly FAILED_DELETION: "FAILED_DELETION";
1519
- readonly FAILED_UPDATE: "FAILED_UPDATE";
1520
- readonly PENDING_CREATION: "PENDING_CREATION";
1521
- readonly PENDING_DELETION: "PENDING_DELETION";
1522
- readonly PENDING_UPDATE: "PENDING_UPDATE";
1523
- };
1524
- /**
1525
- * @public
1526
- */
1527
- export type VpcIngressConnectionStatus = (typeof VpcIngressConnectionStatus)[keyof typeof VpcIngressConnectionStatus];
1528
1242
  /**
1529
1243
  * <p>The App Runner resource that specifies an App Runner endpoint for incoming traffic. It establishes a connection between a VPC interface endpoint and a App Runner
1530
1244
  * service, to make your App Runner service accessible from only within an Amazon VPC.</p>
@@ -1646,19 +1360,6 @@ export interface DeleteAutoScalingConfigurationResponse {
1646
1360
  */
1647
1361
  AutoScalingConfiguration: AutoScalingConfiguration | undefined;
1648
1362
  }
1649
- /**
1650
- * <p>A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon Web Services account.</p>
1651
- * @public
1652
- */
1653
- export declare class ResourceNotFoundException extends __BaseException {
1654
- readonly name: "ResourceNotFoundException";
1655
- readonly $fault: "client";
1656
- Message?: string | undefined;
1657
- /**
1658
- * @internal
1659
- */
1660
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
1661
- }
1662
1363
  /**
1663
1364
  * @public
1664
1365
  */
@@ -2191,39 +1892,6 @@ export interface ListOperationsRequest {
2191
1892
  */
2192
1893
  MaxResults?: number | undefined;
2193
1894
  }
2194
- /**
2195
- * @public
2196
- * @enum
2197
- */
2198
- export declare const OperationStatus: {
2199
- readonly FAILED: "FAILED";
2200
- readonly IN_PROGRESS: "IN_PROGRESS";
2201
- readonly PENDING: "PENDING";
2202
- readonly ROLLBACK_FAILED: "ROLLBACK_FAILED";
2203
- readonly ROLLBACK_IN_PROGRESS: "ROLLBACK_IN_PROGRESS";
2204
- readonly ROLLBACK_SUCCEEDED: "ROLLBACK_SUCCEEDED";
2205
- readonly SUCCEEDED: "SUCCEEDED";
2206
- };
2207
- /**
2208
- * @public
2209
- */
2210
- export type OperationStatus = (typeof OperationStatus)[keyof typeof OperationStatus];
2211
- /**
2212
- * @public
2213
- * @enum
2214
- */
2215
- export declare const OperationType: {
2216
- readonly CREATE_SERVICE: "CREATE_SERVICE";
2217
- readonly DELETE_SERVICE: "DELETE_SERVICE";
2218
- readonly PAUSE_SERVICE: "PAUSE_SERVICE";
2219
- readonly RESUME_SERVICE: "RESUME_SERVICE";
2220
- readonly START_DEPLOYMENT: "START_DEPLOYMENT";
2221
- readonly UPDATE_SERVICE: "UPDATE_SERVICE";
2222
- };
2223
- /**
2224
- * @public
2225
- */
2226
- export type OperationType = (typeof OperationType)[keyof typeof OperationType];
2227
1895
  /**
2228
1896
  * <p>Provides summary information for an operation that occurred on an App Runner service.</p>
2229
1897
  * @public
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { AppRunnerExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
7
  export * from "./pagination";
8
- export * from "./models";
8
+ export * from "./models/enums";
9
+ export * from "./models/errors";
10
+ export * from "./models/models_0";
9
11
  export { AppRunnerServiceException } from "./models/AppRunnerServiceException";
@@ -0,0 +1,143 @@
1
+ export declare const CertificateValidationRecordStatus: {
2
+ readonly FAILED: "FAILED";
3
+ readonly PENDING_VALIDATION: "PENDING_VALIDATION";
4
+ readonly SUCCESS: "SUCCESS";
5
+ };
6
+ export type CertificateValidationRecordStatus =
7
+ (typeof CertificateValidationRecordStatus)[keyof typeof CertificateValidationRecordStatus];
8
+ export declare const CustomDomainAssociationStatus: {
9
+ readonly ACTIVE: "ACTIVE";
10
+ readonly BINDING_CERTIFICATE: "BINDING_CERTIFICATE";
11
+ readonly CREATE_FAILED: "CREATE_FAILED";
12
+ readonly CREATING: "CREATING";
13
+ readonly DELETE_FAILED: "DELETE_FAILED";
14
+ readonly DELETING: "DELETING";
15
+ readonly PENDING_CERTIFICATE_DNS_VALIDATION: "PENDING_CERTIFICATE_DNS_VALIDATION";
16
+ };
17
+ export type CustomDomainAssociationStatus =
18
+ (typeof CustomDomainAssociationStatus)[keyof typeof CustomDomainAssociationStatus];
19
+ export declare const AutoScalingConfigurationStatus: {
20
+ readonly ACTIVE: "ACTIVE";
21
+ readonly INACTIVE: "INACTIVE";
22
+ };
23
+ export type AutoScalingConfigurationStatus =
24
+ (typeof AutoScalingConfigurationStatus)[keyof typeof AutoScalingConfigurationStatus];
25
+ export declare const ProviderType: {
26
+ readonly BITBUCKET: "BITBUCKET";
27
+ readonly GITHUB: "GITHUB";
28
+ };
29
+ export type ProviderType = (typeof ProviderType)[keyof typeof ProviderType];
30
+ export declare const ConnectionStatus: {
31
+ readonly AVAILABLE: "AVAILABLE";
32
+ readonly DELETED: "DELETED";
33
+ readonly ERROR: "ERROR";
34
+ readonly PENDING_HANDSHAKE: "PENDING_HANDSHAKE";
35
+ };
36
+ export type ConnectionStatus =
37
+ (typeof ConnectionStatus)[keyof typeof ConnectionStatus];
38
+ export declare const TracingVendor: {
39
+ readonly AWSXRAY: "AWSXRAY";
40
+ };
41
+ export type TracingVendor = (typeof TracingVendor)[keyof typeof TracingVendor];
42
+ export declare const ObservabilityConfigurationStatus: {
43
+ readonly ACTIVE: "ACTIVE";
44
+ readonly INACTIVE: "INACTIVE";
45
+ };
46
+ export type ObservabilityConfigurationStatus =
47
+ (typeof ObservabilityConfigurationStatus)[keyof typeof ObservabilityConfigurationStatus];
48
+ export declare const HealthCheckProtocol: {
49
+ readonly HTTP: "HTTP";
50
+ readonly TCP: "TCP";
51
+ };
52
+ export type HealthCheckProtocol =
53
+ (typeof HealthCheckProtocol)[keyof typeof HealthCheckProtocol];
54
+ export declare const EgressType: {
55
+ readonly DEFAULT: "DEFAULT";
56
+ readonly VPC: "VPC";
57
+ };
58
+ export type EgressType = (typeof EgressType)[keyof typeof EgressType];
59
+ export declare const IpAddressType: {
60
+ readonly DUAL_STACK: "DUAL_STACK";
61
+ readonly IPV4: "IPV4";
62
+ };
63
+ export type IpAddressType = (typeof IpAddressType)[keyof typeof IpAddressType];
64
+ export declare const Runtime: {
65
+ readonly CORRETTO_11: "CORRETTO_11";
66
+ readonly CORRETTO_8: "CORRETTO_8";
67
+ readonly DOTNET_6: "DOTNET_6";
68
+ readonly GO_1: "GO_1";
69
+ readonly NODEJS_12: "NODEJS_12";
70
+ readonly NODEJS_14: "NODEJS_14";
71
+ readonly NODEJS_16: "NODEJS_16";
72
+ readonly NODEJS_18: "NODEJS_18";
73
+ readonly NODEJS_22: "NODEJS_22";
74
+ readonly PHP_81: "PHP_81";
75
+ readonly PYTHON_3: "PYTHON_3";
76
+ readonly PYTHON_311: "PYTHON_311";
77
+ readonly RUBY_31: "RUBY_31";
78
+ };
79
+ export type Runtime = (typeof Runtime)[keyof typeof Runtime];
80
+ export declare const ConfigurationSource: {
81
+ readonly API: "API";
82
+ readonly REPOSITORY: "REPOSITORY";
83
+ };
84
+ export type ConfigurationSource =
85
+ (typeof ConfigurationSource)[keyof typeof ConfigurationSource];
86
+ export declare const SourceCodeVersionType: {
87
+ readonly BRANCH: "BRANCH";
88
+ };
89
+ export type SourceCodeVersionType =
90
+ (typeof SourceCodeVersionType)[keyof typeof SourceCodeVersionType];
91
+ export declare const ImageRepositoryType: {
92
+ readonly ECR: "ECR";
93
+ readonly ECR_PUBLIC: "ECR_PUBLIC";
94
+ };
95
+ export type ImageRepositoryType =
96
+ (typeof ImageRepositoryType)[keyof typeof ImageRepositoryType];
97
+ export declare const ServiceStatus: {
98
+ readonly CREATE_FAILED: "CREATE_FAILED";
99
+ readonly DELETED: "DELETED";
100
+ readonly DELETE_FAILED: "DELETE_FAILED";
101
+ readonly OPERATION_IN_PROGRESS: "OPERATION_IN_PROGRESS";
102
+ readonly PAUSED: "PAUSED";
103
+ readonly RUNNING: "RUNNING";
104
+ };
105
+ export type ServiceStatus = (typeof ServiceStatus)[keyof typeof ServiceStatus];
106
+ export declare const VpcConnectorStatus: {
107
+ readonly ACTIVE: "ACTIVE";
108
+ readonly INACTIVE: "INACTIVE";
109
+ };
110
+ export type VpcConnectorStatus =
111
+ (typeof VpcConnectorStatus)[keyof typeof VpcConnectorStatus];
112
+ export declare const VpcIngressConnectionStatus: {
113
+ readonly AVAILABLE: "AVAILABLE";
114
+ readonly DELETED: "DELETED";
115
+ readonly FAILED_CREATION: "FAILED_CREATION";
116
+ readonly FAILED_DELETION: "FAILED_DELETION";
117
+ readonly FAILED_UPDATE: "FAILED_UPDATE";
118
+ readonly PENDING_CREATION: "PENDING_CREATION";
119
+ readonly PENDING_DELETION: "PENDING_DELETION";
120
+ readonly PENDING_UPDATE: "PENDING_UPDATE";
121
+ };
122
+ export type VpcIngressConnectionStatus =
123
+ (typeof VpcIngressConnectionStatus)[keyof typeof VpcIngressConnectionStatus];
124
+ export declare const OperationStatus: {
125
+ readonly FAILED: "FAILED";
126
+ readonly IN_PROGRESS: "IN_PROGRESS";
127
+ readonly PENDING: "PENDING";
128
+ readonly ROLLBACK_FAILED: "ROLLBACK_FAILED";
129
+ readonly ROLLBACK_IN_PROGRESS: "ROLLBACK_IN_PROGRESS";
130
+ readonly ROLLBACK_SUCCEEDED: "ROLLBACK_SUCCEEDED";
131
+ readonly SUCCEEDED: "SUCCEEDED";
132
+ };
133
+ export type OperationStatus =
134
+ (typeof OperationStatus)[keyof typeof OperationStatus];
135
+ export declare const OperationType: {
136
+ readonly CREATE_SERVICE: "CREATE_SERVICE";
137
+ readonly DELETE_SERVICE: "DELETE_SERVICE";
138
+ readonly PAUSE_SERVICE: "PAUSE_SERVICE";
139
+ readonly RESUME_SERVICE: "RESUME_SERVICE";
140
+ readonly START_DEPLOYMENT: "START_DEPLOYMENT";
141
+ readonly UPDATE_SERVICE: "UPDATE_SERVICE";
142
+ };
143
+ export type OperationType = (typeof OperationType)[keyof typeof OperationType];
@@ -0,0 +1,42 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { AppRunnerServiceException as __BaseException } from "./AppRunnerServiceException";
3
+ export declare class InternalServiceErrorException extends __BaseException {
4
+ readonly name: "InternalServiceErrorException";
5
+ readonly $fault: "server";
6
+ Message?: string | undefined;
7
+ constructor(
8
+ opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>
9
+ );
10
+ }
11
+ export declare class InvalidRequestException extends __BaseException {
12
+ readonly name: "InvalidRequestException";
13
+ readonly $fault: "client";
14
+ Message?: string | undefined;
15
+ constructor(
16
+ opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
17
+ );
18
+ }
19
+ export declare class InvalidStateException extends __BaseException {
20
+ readonly name: "InvalidStateException";
21
+ readonly $fault: "client";
22
+ Message?: string | undefined;
23
+ constructor(
24
+ opts: __ExceptionOptionType<InvalidStateException, __BaseException>
25
+ );
26
+ }
27
+ export declare class ServiceQuotaExceededException extends __BaseException {
28
+ readonly name: "ServiceQuotaExceededException";
29
+ readonly $fault: "client";
30
+ Message?: string | undefined;
31
+ constructor(
32
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
33
+ );
34
+ }
35
+ export declare class ResourceNotFoundException extends __BaseException {
36
+ readonly name: "ResourceNotFoundException";
37
+ readonly $fault: "client";
38
+ Message?: string | undefined;
39
+ constructor(
40
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
41
+ );
42
+ }