@aws-sdk/client-apprunner 3.686.0 → 3.691.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.
- package/dist-types/models/models_0.d.ts +195 -195
- package/dist-types/ts3.4/models/models_0.d.ts +195 -195
- package/package.json +7 -7
|
@@ -3,7 +3,7 @@ import { AppRunnerServiceException as __BaseException } from "./AppRunnerService
|
|
|
3
3
|
export interface AssociateCustomDomainRequest {
|
|
4
4
|
ServiceArn: string | undefined;
|
|
5
5
|
DomainName: string | undefined;
|
|
6
|
-
EnableWWWSubdomain?: boolean;
|
|
6
|
+
EnableWWWSubdomain?: boolean | undefined;
|
|
7
7
|
}
|
|
8
8
|
export declare const CertificateValidationRecordStatus: {
|
|
9
9
|
readonly FAILED: "FAILED";
|
|
@@ -13,10 +13,10 @@ export declare const CertificateValidationRecordStatus: {
|
|
|
13
13
|
export type CertificateValidationRecordStatus =
|
|
14
14
|
(typeof CertificateValidationRecordStatus)[keyof typeof CertificateValidationRecordStatus];
|
|
15
15
|
export interface CertificateValidationRecord {
|
|
16
|
-
Name?: string;
|
|
17
|
-
Type?: string;
|
|
18
|
-
Value?: string;
|
|
19
|
-
Status?: CertificateValidationRecordStatus;
|
|
16
|
+
Name?: string | undefined;
|
|
17
|
+
Type?: string | undefined;
|
|
18
|
+
Value?: string | undefined;
|
|
19
|
+
Status?: CertificateValidationRecordStatus | undefined;
|
|
20
20
|
}
|
|
21
21
|
export declare const CustomDomainAssociationStatus: {
|
|
22
22
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -32,13 +32,13 @@ export type CustomDomainAssociationStatus =
|
|
|
32
32
|
export interface CustomDomain {
|
|
33
33
|
DomainName: string | undefined;
|
|
34
34
|
EnableWWWSubdomain: boolean | undefined;
|
|
35
|
-
CertificateValidationRecords?: CertificateValidationRecord[];
|
|
35
|
+
CertificateValidationRecords?: CertificateValidationRecord[] | undefined;
|
|
36
36
|
Status: CustomDomainAssociationStatus | undefined;
|
|
37
37
|
}
|
|
38
38
|
export interface VpcDNSTarget {
|
|
39
|
-
VpcIngressConnectionArn?: string;
|
|
40
|
-
VpcId?: string;
|
|
41
|
-
DomainName?: string;
|
|
39
|
+
VpcIngressConnectionArn?: string | undefined;
|
|
40
|
+
VpcId?: string | undefined;
|
|
41
|
+
DomainName?: string | undefined;
|
|
42
42
|
}
|
|
43
43
|
export interface AssociateCustomDomainResponse {
|
|
44
44
|
DNSTarget: string | undefined;
|
|
@@ -49,7 +49,7 @@ export interface AssociateCustomDomainResponse {
|
|
|
49
49
|
export declare class InternalServiceErrorException extends __BaseException {
|
|
50
50
|
readonly name: "InternalServiceErrorException";
|
|
51
51
|
readonly $fault: "server";
|
|
52
|
-
Message?: string;
|
|
52
|
+
Message?: string | undefined;
|
|
53
53
|
constructor(
|
|
54
54
|
opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>
|
|
55
55
|
);
|
|
@@ -57,7 +57,7 @@ export declare class InternalServiceErrorException extends __BaseException {
|
|
|
57
57
|
export declare class InvalidRequestException extends __BaseException {
|
|
58
58
|
readonly name: "InvalidRequestException";
|
|
59
59
|
readonly $fault: "client";
|
|
60
|
-
Message?: string;
|
|
60
|
+
Message?: string | undefined;
|
|
61
61
|
constructor(
|
|
62
62
|
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
|
|
63
63
|
);
|
|
@@ -65,21 +65,21 @@ export declare class InvalidRequestException extends __BaseException {
|
|
|
65
65
|
export declare class InvalidStateException extends __BaseException {
|
|
66
66
|
readonly name: "InvalidStateException";
|
|
67
67
|
readonly $fault: "client";
|
|
68
|
-
Message?: string;
|
|
68
|
+
Message?: string | undefined;
|
|
69
69
|
constructor(
|
|
70
70
|
opts: __ExceptionOptionType<InvalidStateException, __BaseException>
|
|
71
71
|
);
|
|
72
72
|
}
|
|
73
73
|
export interface Tag {
|
|
74
|
-
Key?: string;
|
|
75
|
-
Value?: string;
|
|
74
|
+
Key?: string | undefined;
|
|
75
|
+
Value?: string | undefined;
|
|
76
76
|
}
|
|
77
77
|
export interface CreateAutoScalingConfigurationRequest {
|
|
78
78
|
AutoScalingConfigurationName: string | undefined;
|
|
79
|
-
MaxConcurrency?: number;
|
|
80
|
-
MinSize?: number;
|
|
81
|
-
MaxSize?: number;
|
|
82
|
-
Tags?: Tag[];
|
|
79
|
+
MaxConcurrency?: number | undefined;
|
|
80
|
+
MinSize?: number | undefined;
|
|
81
|
+
MaxSize?: number | undefined;
|
|
82
|
+
Tags?: Tag[] | undefined;
|
|
83
83
|
}
|
|
84
84
|
export declare const AutoScalingConfigurationStatus: {
|
|
85
85
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -88,18 +88,18 @@ export declare const AutoScalingConfigurationStatus: {
|
|
|
88
88
|
export type AutoScalingConfigurationStatus =
|
|
89
89
|
(typeof AutoScalingConfigurationStatus)[keyof typeof AutoScalingConfigurationStatus];
|
|
90
90
|
export interface AutoScalingConfiguration {
|
|
91
|
-
AutoScalingConfigurationArn?: string;
|
|
92
|
-
AutoScalingConfigurationName?: string;
|
|
93
|
-
AutoScalingConfigurationRevision?: number;
|
|
94
|
-
Latest?: boolean;
|
|
95
|
-
Status?: AutoScalingConfigurationStatus;
|
|
96
|
-
MaxConcurrency?: number;
|
|
97
|
-
MinSize?: number;
|
|
98
|
-
MaxSize?: number;
|
|
99
|
-
CreatedAt?: Date;
|
|
100
|
-
DeletedAt?: Date;
|
|
101
|
-
HasAssociatedService?: boolean;
|
|
102
|
-
IsDefault?: boolean;
|
|
91
|
+
AutoScalingConfigurationArn?: string | undefined;
|
|
92
|
+
AutoScalingConfigurationName?: string | undefined;
|
|
93
|
+
AutoScalingConfigurationRevision?: number | undefined;
|
|
94
|
+
Latest?: boolean | undefined;
|
|
95
|
+
Status?: AutoScalingConfigurationStatus | undefined;
|
|
96
|
+
MaxConcurrency?: number | undefined;
|
|
97
|
+
MinSize?: number | undefined;
|
|
98
|
+
MaxSize?: number | undefined;
|
|
99
|
+
CreatedAt?: Date | undefined;
|
|
100
|
+
DeletedAt?: Date | undefined;
|
|
101
|
+
HasAssociatedService?: boolean | undefined;
|
|
102
|
+
IsDefault?: boolean | undefined;
|
|
103
103
|
}
|
|
104
104
|
export interface CreateAutoScalingConfigurationResponse {
|
|
105
105
|
AutoScalingConfiguration: AutoScalingConfiguration | undefined;
|
|
@@ -107,7 +107,7 @@ export interface CreateAutoScalingConfigurationResponse {
|
|
|
107
107
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
108
108
|
readonly name: "ServiceQuotaExceededException";
|
|
109
109
|
readonly $fault: "client";
|
|
110
|
-
Message?: string;
|
|
110
|
+
Message?: string | undefined;
|
|
111
111
|
constructor(
|
|
112
112
|
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
113
113
|
);
|
|
@@ -120,7 +120,7 @@ export type ProviderType = (typeof ProviderType)[keyof typeof ProviderType];
|
|
|
120
120
|
export interface CreateConnectionRequest {
|
|
121
121
|
ConnectionName: string | undefined;
|
|
122
122
|
ProviderType: ProviderType | undefined;
|
|
123
|
-
Tags?: Tag[];
|
|
123
|
+
Tags?: Tag[] | undefined;
|
|
124
124
|
}
|
|
125
125
|
export declare const ConnectionStatus: {
|
|
126
126
|
readonly AVAILABLE: "AVAILABLE";
|
|
@@ -131,11 +131,11 @@ export declare const ConnectionStatus: {
|
|
|
131
131
|
export type ConnectionStatus =
|
|
132
132
|
(typeof ConnectionStatus)[keyof typeof ConnectionStatus];
|
|
133
133
|
export interface Connection {
|
|
134
|
-
ConnectionName?: string;
|
|
135
|
-
ConnectionArn?: string;
|
|
136
|
-
ProviderType?: ProviderType;
|
|
137
|
-
Status?: ConnectionStatus;
|
|
138
|
-
CreatedAt?: Date;
|
|
134
|
+
ConnectionName?: string | undefined;
|
|
135
|
+
ConnectionArn?: string | undefined;
|
|
136
|
+
ProviderType?: ProviderType | undefined;
|
|
137
|
+
Status?: ConnectionStatus | undefined;
|
|
138
|
+
CreatedAt?: Date | undefined;
|
|
139
139
|
}
|
|
140
140
|
export interface CreateConnectionResponse {
|
|
141
141
|
Connection: Connection | undefined;
|
|
@@ -149,8 +149,8 @@ export interface TraceConfiguration {
|
|
|
149
149
|
}
|
|
150
150
|
export interface CreateObservabilityConfigurationRequest {
|
|
151
151
|
ObservabilityConfigurationName: string | undefined;
|
|
152
|
-
TraceConfiguration?: TraceConfiguration;
|
|
153
|
-
Tags?: Tag[];
|
|
152
|
+
TraceConfiguration?: TraceConfiguration | undefined;
|
|
153
|
+
Tags?: Tag[] | undefined;
|
|
154
154
|
}
|
|
155
155
|
export declare const ObservabilityConfigurationStatus: {
|
|
156
156
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -159,14 +159,14 @@ export declare const ObservabilityConfigurationStatus: {
|
|
|
159
159
|
export type ObservabilityConfigurationStatus =
|
|
160
160
|
(typeof ObservabilityConfigurationStatus)[keyof typeof ObservabilityConfigurationStatus];
|
|
161
161
|
export interface ObservabilityConfiguration {
|
|
162
|
-
ObservabilityConfigurationArn?: string;
|
|
163
|
-
ObservabilityConfigurationName?: string;
|
|
164
|
-
TraceConfiguration?: TraceConfiguration;
|
|
165
|
-
ObservabilityConfigurationRevision?: number;
|
|
166
|
-
Latest?: boolean;
|
|
167
|
-
Status?: ObservabilityConfigurationStatus;
|
|
168
|
-
CreatedAt?: Date;
|
|
169
|
-
DeletedAt?: Date;
|
|
162
|
+
ObservabilityConfigurationArn?: string | undefined;
|
|
163
|
+
ObservabilityConfigurationName?: string | undefined;
|
|
164
|
+
TraceConfiguration?: TraceConfiguration | undefined;
|
|
165
|
+
ObservabilityConfigurationRevision?: number | undefined;
|
|
166
|
+
Latest?: boolean | undefined;
|
|
167
|
+
Status?: ObservabilityConfigurationStatus | undefined;
|
|
168
|
+
CreatedAt?: Date | undefined;
|
|
169
|
+
DeletedAt?: Date | undefined;
|
|
170
170
|
}
|
|
171
171
|
export interface CreateObservabilityConfigurationResponse {
|
|
172
172
|
ObservabilityConfiguration: ObservabilityConfiguration | undefined;
|
|
@@ -181,17 +181,17 @@ export declare const HealthCheckProtocol: {
|
|
|
181
181
|
export type HealthCheckProtocol =
|
|
182
182
|
(typeof HealthCheckProtocol)[keyof typeof HealthCheckProtocol];
|
|
183
183
|
export interface HealthCheckConfiguration {
|
|
184
|
-
Protocol?: HealthCheckProtocol;
|
|
185
|
-
Path?: string;
|
|
186
|
-
Interval?: number;
|
|
187
|
-
Timeout?: number;
|
|
188
|
-
HealthyThreshold?: number;
|
|
189
|
-
UnhealthyThreshold?: number;
|
|
184
|
+
Protocol?: HealthCheckProtocol | undefined;
|
|
185
|
+
Path?: string | undefined;
|
|
186
|
+
Interval?: number | undefined;
|
|
187
|
+
Timeout?: number | undefined;
|
|
188
|
+
HealthyThreshold?: number | undefined;
|
|
189
|
+
UnhealthyThreshold?: number | undefined;
|
|
190
190
|
}
|
|
191
191
|
export interface InstanceConfiguration {
|
|
192
|
-
Cpu?: string;
|
|
193
|
-
Memory?: string;
|
|
194
|
-
InstanceRoleArn?: string;
|
|
192
|
+
Cpu?: string | undefined;
|
|
193
|
+
Memory?: string | undefined;
|
|
194
|
+
InstanceRoleArn?: string | undefined;
|
|
195
195
|
}
|
|
196
196
|
export declare const EgressType: {
|
|
197
197
|
readonly DEFAULT: "DEFAULT";
|
|
@@ -199,11 +199,11 @@ export declare const EgressType: {
|
|
|
199
199
|
};
|
|
200
200
|
export type EgressType = (typeof EgressType)[keyof typeof EgressType];
|
|
201
201
|
export interface EgressConfiguration {
|
|
202
|
-
EgressType?: EgressType;
|
|
203
|
-
VpcConnectorArn?: string;
|
|
202
|
+
EgressType?: EgressType | undefined;
|
|
203
|
+
VpcConnectorArn?: string | undefined;
|
|
204
204
|
}
|
|
205
205
|
export interface IngressConfiguration {
|
|
206
|
-
IsPubliclyAccessible?: boolean;
|
|
206
|
+
IsPubliclyAccessible?: boolean | undefined;
|
|
207
207
|
}
|
|
208
208
|
export declare const IpAddressType: {
|
|
209
209
|
readonly DUAL_STACK: "DUAL_STACK";
|
|
@@ -211,17 +211,17 @@ export declare const IpAddressType: {
|
|
|
211
211
|
};
|
|
212
212
|
export type IpAddressType = (typeof IpAddressType)[keyof typeof IpAddressType];
|
|
213
213
|
export interface NetworkConfiguration {
|
|
214
|
-
EgressConfiguration?: EgressConfiguration;
|
|
215
|
-
IngressConfiguration?: IngressConfiguration;
|
|
216
|
-
IpAddressType?: IpAddressType;
|
|
214
|
+
EgressConfiguration?: EgressConfiguration | undefined;
|
|
215
|
+
IngressConfiguration?: IngressConfiguration | undefined;
|
|
216
|
+
IpAddressType?: IpAddressType | undefined;
|
|
217
217
|
}
|
|
218
218
|
export interface ServiceObservabilityConfiguration {
|
|
219
219
|
ObservabilityEnabled: boolean | undefined;
|
|
220
|
-
ObservabilityConfigurationArn?: string;
|
|
220
|
+
ObservabilityConfigurationArn?: string | undefined;
|
|
221
221
|
}
|
|
222
222
|
export interface AuthenticationConfiguration {
|
|
223
|
-
ConnectionArn?: string;
|
|
224
|
-
AccessRoleArn?: string;
|
|
223
|
+
ConnectionArn?: string | undefined;
|
|
224
|
+
AccessRoleArn?: string | undefined;
|
|
225
225
|
}
|
|
226
226
|
export declare const Runtime: {
|
|
227
227
|
readonly CORRETTO_11: "CORRETTO_11";
|
|
@@ -240,11 +240,11 @@ export declare const Runtime: {
|
|
|
240
240
|
export type Runtime = (typeof Runtime)[keyof typeof Runtime];
|
|
241
241
|
export interface CodeConfigurationValues {
|
|
242
242
|
Runtime: Runtime | undefined;
|
|
243
|
-
BuildCommand?: string;
|
|
244
|
-
StartCommand?: string;
|
|
245
|
-
Port?: string;
|
|
246
|
-
RuntimeEnvironmentVariables?: Record<string, string
|
|
247
|
-
RuntimeEnvironmentSecrets?: Record<string, string
|
|
243
|
+
BuildCommand?: string | undefined;
|
|
244
|
+
StartCommand?: string | undefined;
|
|
245
|
+
Port?: string | undefined;
|
|
246
|
+
RuntimeEnvironmentVariables?: Record<string, string> | undefined;
|
|
247
|
+
RuntimeEnvironmentSecrets?: Record<string, string> | undefined;
|
|
248
248
|
}
|
|
249
249
|
export declare const ConfigurationSource: {
|
|
250
250
|
readonly API: "API";
|
|
@@ -254,7 +254,7 @@ export type ConfigurationSource =
|
|
|
254
254
|
(typeof ConfigurationSource)[keyof typeof ConfigurationSource];
|
|
255
255
|
export interface CodeConfiguration {
|
|
256
256
|
ConfigurationSource: ConfigurationSource | undefined;
|
|
257
|
-
CodeConfigurationValues?: CodeConfigurationValues;
|
|
257
|
+
CodeConfigurationValues?: CodeConfigurationValues | undefined;
|
|
258
258
|
}
|
|
259
259
|
export declare const SourceCodeVersionType: {
|
|
260
260
|
readonly BRANCH: "BRANCH";
|
|
@@ -268,14 +268,14 @@ export interface SourceCodeVersion {
|
|
|
268
268
|
export interface CodeRepository {
|
|
269
269
|
RepositoryUrl: string | undefined;
|
|
270
270
|
SourceCodeVersion: SourceCodeVersion | undefined;
|
|
271
|
-
CodeConfiguration?: CodeConfiguration;
|
|
272
|
-
SourceDirectory?: string;
|
|
271
|
+
CodeConfiguration?: CodeConfiguration | undefined;
|
|
272
|
+
SourceDirectory?: string | undefined;
|
|
273
273
|
}
|
|
274
274
|
export interface ImageConfiguration {
|
|
275
|
-
RuntimeEnvironmentVariables?: Record<string, string
|
|
276
|
-
StartCommand?: string;
|
|
277
|
-
Port?: string;
|
|
278
|
-
RuntimeEnvironmentSecrets?: Record<string, string
|
|
275
|
+
RuntimeEnvironmentVariables?: Record<string, string> | undefined;
|
|
276
|
+
StartCommand?: string | undefined;
|
|
277
|
+
Port?: string | undefined;
|
|
278
|
+
RuntimeEnvironmentSecrets?: Record<string, string> | undefined;
|
|
279
279
|
}
|
|
280
280
|
export declare const ImageRepositoryType: {
|
|
281
281
|
readonly ECR: "ECR";
|
|
@@ -285,34 +285,34 @@ export type ImageRepositoryType =
|
|
|
285
285
|
(typeof ImageRepositoryType)[keyof typeof ImageRepositoryType];
|
|
286
286
|
export interface ImageRepository {
|
|
287
287
|
ImageIdentifier: string | undefined;
|
|
288
|
-
ImageConfiguration?: ImageConfiguration;
|
|
288
|
+
ImageConfiguration?: ImageConfiguration | undefined;
|
|
289
289
|
ImageRepositoryType: ImageRepositoryType | undefined;
|
|
290
290
|
}
|
|
291
291
|
export interface SourceConfiguration {
|
|
292
|
-
CodeRepository?: CodeRepository;
|
|
293
|
-
ImageRepository?: ImageRepository;
|
|
294
|
-
AutoDeploymentsEnabled?: boolean;
|
|
295
|
-
AuthenticationConfiguration?: AuthenticationConfiguration;
|
|
292
|
+
CodeRepository?: CodeRepository | undefined;
|
|
293
|
+
ImageRepository?: ImageRepository | undefined;
|
|
294
|
+
AutoDeploymentsEnabled?: boolean | undefined;
|
|
295
|
+
AuthenticationConfiguration?: AuthenticationConfiguration | undefined;
|
|
296
296
|
}
|
|
297
297
|
export interface CreateServiceRequest {
|
|
298
298
|
ServiceName: string | undefined;
|
|
299
299
|
SourceConfiguration: SourceConfiguration | undefined;
|
|
300
|
-
InstanceConfiguration?: InstanceConfiguration;
|
|
301
|
-
Tags?: Tag[];
|
|
302
|
-
EncryptionConfiguration?: EncryptionConfiguration;
|
|
303
|
-
HealthCheckConfiguration?: HealthCheckConfiguration;
|
|
304
|
-
AutoScalingConfigurationArn?: string;
|
|
305
|
-
NetworkConfiguration?: NetworkConfiguration;
|
|
306
|
-
ObservabilityConfiguration?: ServiceObservabilityConfiguration;
|
|
300
|
+
InstanceConfiguration?: InstanceConfiguration | undefined;
|
|
301
|
+
Tags?: Tag[] | undefined;
|
|
302
|
+
EncryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
303
|
+
HealthCheckConfiguration?: HealthCheckConfiguration | undefined;
|
|
304
|
+
AutoScalingConfigurationArn?: string | undefined;
|
|
305
|
+
NetworkConfiguration?: NetworkConfiguration | undefined;
|
|
306
|
+
ObservabilityConfiguration?: ServiceObservabilityConfiguration | undefined;
|
|
307
307
|
}
|
|
308
308
|
export interface AutoScalingConfigurationSummary {
|
|
309
|
-
AutoScalingConfigurationArn?: string;
|
|
310
|
-
AutoScalingConfigurationName?: string;
|
|
311
|
-
AutoScalingConfigurationRevision?: number;
|
|
312
|
-
Status?: AutoScalingConfigurationStatus;
|
|
313
|
-
CreatedAt?: Date;
|
|
314
|
-
HasAssociatedService?: boolean;
|
|
315
|
-
IsDefault?: boolean;
|
|
309
|
+
AutoScalingConfigurationArn?: string | undefined;
|
|
310
|
+
AutoScalingConfigurationName?: string | undefined;
|
|
311
|
+
AutoScalingConfigurationRevision?: number | undefined;
|
|
312
|
+
Status?: AutoScalingConfigurationStatus | undefined;
|
|
313
|
+
CreatedAt?: Date | undefined;
|
|
314
|
+
HasAssociatedService?: boolean | undefined;
|
|
315
|
+
IsDefault?: boolean | undefined;
|
|
316
316
|
}
|
|
317
317
|
export declare const ServiceStatus: {
|
|
318
318
|
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
@@ -327,18 +327,18 @@ export interface Service {
|
|
|
327
327
|
ServiceName: string | undefined;
|
|
328
328
|
ServiceId: string | undefined;
|
|
329
329
|
ServiceArn: string | undefined;
|
|
330
|
-
ServiceUrl?: string;
|
|
330
|
+
ServiceUrl?: string | undefined;
|
|
331
331
|
CreatedAt: Date | undefined;
|
|
332
332
|
UpdatedAt: Date | undefined;
|
|
333
|
-
DeletedAt?: Date;
|
|
333
|
+
DeletedAt?: Date | undefined;
|
|
334
334
|
Status: ServiceStatus | undefined;
|
|
335
335
|
SourceConfiguration: SourceConfiguration | undefined;
|
|
336
336
|
InstanceConfiguration: InstanceConfiguration | undefined;
|
|
337
|
-
EncryptionConfiguration?: EncryptionConfiguration;
|
|
338
|
-
HealthCheckConfiguration?: HealthCheckConfiguration;
|
|
337
|
+
EncryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
338
|
+
HealthCheckConfiguration?: HealthCheckConfiguration | undefined;
|
|
339
339
|
AutoScalingConfigurationSummary: AutoScalingConfigurationSummary | undefined;
|
|
340
340
|
NetworkConfiguration: NetworkConfiguration | undefined;
|
|
341
|
-
ObservabilityConfiguration?: ServiceObservabilityConfiguration;
|
|
341
|
+
ObservabilityConfiguration?: ServiceObservabilityConfiguration | undefined;
|
|
342
342
|
}
|
|
343
343
|
export interface CreateServiceResponse {
|
|
344
344
|
Service: Service | undefined;
|
|
@@ -347,8 +347,8 @@ export interface CreateServiceResponse {
|
|
|
347
347
|
export interface CreateVpcConnectorRequest {
|
|
348
348
|
VpcConnectorName: string | undefined;
|
|
349
349
|
Subnets: string[] | undefined;
|
|
350
|
-
SecurityGroups?: string[];
|
|
351
|
-
Tags?: Tag[];
|
|
350
|
+
SecurityGroups?: string[] | undefined;
|
|
351
|
+
Tags?: Tag[] | undefined;
|
|
352
352
|
}
|
|
353
353
|
export declare const VpcConnectorStatus: {
|
|
354
354
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -357,27 +357,27 @@ export declare const VpcConnectorStatus: {
|
|
|
357
357
|
export type VpcConnectorStatus =
|
|
358
358
|
(typeof VpcConnectorStatus)[keyof typeof VpcConnectorStatus];
|
|
359
359
|
export interface VpcConnector {
|
|
360
|
-
VpcConnectorName?: string;
|
|
361
|
-
VpcConnectorArn?: string;
|
|
362
|
-
VpcConnectorRevision?: number;
|
|
363
|
-
Subnets?: string[];
|
|
364
|
-
SecurityGroups?: string[];
|
|
365
|
-
Status?: VpcConnectorStatus;
|
|
366
|
-
CreatedAt?: Date;
|
|
367
|
-
DeletedAt?: Date;
|
|
360
|
+
VpcConnectorName?: string | undefined;
|
|
361
|
+
VpcConnectorArn?: string | undefined;
|
|
362
|
+
VpcConnectorRevision?: number | undefined;
|
|
363
|
+
Subnets?: string[] | undefined;
|
|
364
|
+
SecurityGroups?: string[] | undefined;
|
|
365
|
+
Status?: VpcConnectorStatus | undefined;
|
|
366
|
+
CreatedAt?: Date | undefined;
|
|
367
|
+
DeletedAt?: Date | undefined;
|
|
368
368
|
}
|
|
369
369
|
export interface CreateVpcConnectorResponse {
|
|
370
370
|
VpcConnector: VpcConnector | undefined;
|
|
371
371
|
}
|
|
372
372
|
export interface IngressVpcConfiguration {
|
|
373
|
-
VpcId?: string;
|
|
374
|
-
VpcEndpointId?: string;
|
|
373
|
+
VpcId?: string | undefined;
|
|
374
|
+
VpcEndpointId?: string | undefined;
|
|
375
375
|
}
|
|
376
376
|
export interface CreateVpcIngressConnectionRequest {
|
|
377
377
|
ServiceArn: string | undefined;
|
|
378
378
|
VpcIngressConnectionName: string | undefined;
|
|
379
379
|
IngressVpcConfiguration: IngressVpcConfiguration | undefined;
|
|
380
|
-
Tags?: Tag[];
|
|
380
|
+
Tags?: Tag[] | undefined;
|
|
381
381
|
}
|
|
382
382
|
export declare const VpcIngressConnectionStatus: {
|
|
383
383
|
readonly AVAILABLE: "AVAILABLE";
|
|
@@ -392,22 +392,22 @@ export declare const VpcIngressConnectionStatus: {
|
|
|
392
392
|
export type VpcIngressConnectionStatus =
|
|
393
393
|
(typeof VpcIngressConnectionStatus)[keyof typeof VpcIngressConnectionStatus];
|
|
394
394
|
export interface VpcIngressConnection {
|
|
395
|
-
VpcIngressConnectionArn?: string;
|
|
396
|
-
VpcIngressConnectionName?: string;
|
|
397
|
-
ServiceArn?: string;
|
|
398
|
-
Status?: VpcIngressConnectionStatus;
|
|
399
|
-
AccountId?: string;
|
|
400
|
-
DomainName?: string;
|
|
401
|
-
IngressVpcConfiguration?: IngressVpcConfiguration;
|
|
402
|
-
CreatedAt?: Date;
|
|
403
|
-
DeletedAt?: Date;
|
|
395
|
+
VpcIngressConnectionArn?: string | undefined;
|
|
396
|
+
VpcIngressConnectionName?: string | undefined;
|
|
397
|
+
ServiceArn?: string | undefined;
|
|
398
|
+
Status?: VpcIngressConnectionStatus | undefined;
|
|
399
|
+
AccountId?: string | undefined;
|
|
400
|
+
DomainName?: string | undefined;
|
|
401
|
+
IngressVpcConfiguration?: IngressVpcConfiguration | undefined;
|
|
402
|
+
CreatedAt?: Date | undefined;
|
|
403
|
+
DeletedAt?: Date | undefined;
|
|
404
404
|
}
|
|
405
405
|
export interface CreateVpcIngressConnectionResponse {
|
|
406
406
|
VpcIngressConnection: VpcIngressConnection | undefined;
|
|
407
407
|
}
|
|
408
408
|
export interface DeleteAutoScalingConfigurationRequest {
|
|
409
409
|
AutoScalingConfigurationArn: string | undefined;
|
|
410
|
-
DeleteAllRevisions?: boolean;
|
|
410
|
+
DeleteAllRevisions?: boolean | undefined;
|
|
411
411
|
}
|
|
412
412
|
export interface DeleteAutoScalingConfigurationResponse {
|
|
413
413
|
AutoScalingConfiguration: AutoScalingConfiguration | undefined;
|
|
@@ -415,7 +415,7 @@ export interface DeleteAutoScalingConfigurationResponse {
|
|
|
415
415
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
416
416
|
readonly name: "ResourceNotFoundException";
|
|
417
417
|
readonly $fault: "client";
|
|
418
|
-
Message?: string;
|
|
418
|
+
Message?: string | undefined;
|
|
419
419
|
constructor(
|
|
420
420
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
421
421
|
);
|
|
@@ -424,7 +424,7 @@ export interface DeleteConnectionRequest {
|
|
|
424
424
|
ConnectionArn: string | undefined;
|
|
425
425
|
}
|
|
426
426
|
export interface DeleteConnectionResponse {
|
|
427
|
-
Connection?: Connection;
|
|
427
|
+
Connection?: Connection | undefined;
|
|
428
428
|
}
|
|
429
429
|
export interface DeleteObservabilityConfigurationRequest {
|
|
430
430
|
ObservabilityConfigurationArn: string | undefined;
|
|
@@ -459,15 +459,15 @@ export interface DescribeAutoScalingConfigurationResponse {
|
|
|
459
459
|
}
|
|
460
460
|
export interface DescribeCustomDomainsRequest {
|
|
461
461
|
ServiceArn: string | undefined;
|
|
462
|
-
NextToken?: string;
|
|
463
|
-
MaxResults?: number;
|
|
462
|
+
NextToken?: string | undefined;
|
|
463
|
+
MaxResults?: number | undefined;
|
|
464
464
|
}
|
|
465
465
|
export interface DescribeCustomDomainsResponse {
|
|
466
466
|
DNSTarget: string | undefined;
|
|
467
467
|
ServiceArn: string | undefined;
|
|
468
468
|
CustomDomains: CustomDomain[] | undefined;
|
|
469
469
|
VpcDNSTargets: VpcDNSTarget[] | undefined;
|
|
470
|
-
NextToken?: string;
|
|
470
|
+
NextToken?: string | undefined;
|
|
471
471
|
}
|
|
472
472
|
export interface DescribeObservabilityConfigurationRequest {
|
|
473
473
|
ObservabilityConfigurationArn: string | undefined;
|
|
@@ -504,54 +504,54 @@ export interface DisassociateCustomDomainResponse {
|
|
|
504
504
|
VpcDNSTargets: VpcDNSTarget[] | undefined;
|
|
505
505
|
}
|
|
506
506
|
export interface ListAutoScalingConfigurationsRequest {
|
|
507
|
-
AutoScalingConfigurationName?: string;
|
|
508
|
-
LatestOnly?: boolean;
|
|
509
|
-
MaxResults?: number;
|
|
510
|
-
NextToken?: string;
|
|
507
|
+
AutoScalingConfigurationName?: string | undefined;
|
|
508
|
+
LatestOnly?: boolean | undefined;
|
|
509
|
+
MaxResults?: number | undefined;
|
|
510
|
+
NextToken?: string | undefined;
|
|
511
511
|
}
|
|
512
512
|
export interface ListAutoScalingConfigurationsResponse {
|
|
513
513
|
AutoScalingConfigurationSummaryList:
|
|
514
514
|
| AutoScalingConfigurationSummary[]
|
|
515
515
|
| undefined;
|
|
516
|
-
NextToken?: string;
|
|
516
|
+
NextToken?: string | undefined;
|
|
517
517
|
}
|
|
518
518
|
export interface ListConnectionsRequest {
|
|
519
|
-
ConnectionName?: string;
|
|
520
|
-
MaxResults?: number;
|
|
521
|
-
NextToken?: string;
|
|
519
|
+
ConnectionName?: string | undefined;
|
|
520
|
+
MaxResults?: number | undefined;
|
|
521
|
+
NextToken?: string | undefined;
|
|
522
522
|
}
|
|
523
523
|
export interface ConnectionSummary {
|
|
524
|
-
ConnectionName?: string;
|
|
525
|
-
ConnectionArn?: string;
|
|
526
|
-
ProviderType?: ProviderType;
|
|
527
|
-
Status?: ConnectionStatus;
|
|
528
|
-
CreatedAt?: Date;
|
|
524
|
+
ConnectionName?: string | undefined;
|
|
525
|
+
ConnectionArn?: string | undefined;
|
|
526
|
+
ProviderType?: ProviderType | undefined;
|
|
527
|
+
Status?: ConnectionStatus | undefined;
|
|
528
|
+
CreatedAt?: Date | undefined;
|
|
529
529
|
}
|
|
530
530
|
export interface ListConnectionsResponse {
|
|
531
531
|
ConnectionSummaryList: ConnectionSummary[] | undefined;
|
|
532
|
-
NextToken?: string;
|
|
532
|
+
NextToken?: string | undefined;
|
|
533
533
|
}
|
|
534
534
|
export interface ListObservabilityConfigurationsRequest {
|
|
535
|
-
ObservabilityConfigurationName?: string;
|
|
536
|
-
LatestOnly?: boolean;
|
|
537
|
-
MaxResults?: number;
|
|
538
|
-
NextToken?: string;
|
|
535
|
+
ObservabilityConfigurationName?: string | undefined;
|
|
536
|
+
LatestOnly?: boolean | undefined;
|
|
537
|
+
MaxResults?: number | undefined;
|
|
538
|
+
NextToken?: string | undefined;
|
|
539
539
|
}
|
|
540
540
|
export interface ObservabilityConfigurationSummary {
|
|
541
|
-
ObservabilityConfigurationArn?: string;
|
|
542
|
-
ObservabilityConfigurationName?: string;
|
|
543
|
-
ObservabilityConfigurationRevision?: number;
|
|
541
|
+
ObservabilityConfigurationArn?: string | undefined;
|
|
542
|
+
ObservabilityConfigurationName?: string | undefined;
|
|
543
|
+
ObservabilityConfigurationRevision?: number | undefined;
|
|
544
544
|
}
|
|
545
545
|
export interface ListObservabilityConfigurationsResponse {
|
|
546
546
|
ObservabilityConfigurationSummaryList:
|
|
547
547
|
| ObservabilityConfigurationSummary[]
|
|
548
548
|
| undefined;
|
|
549
|
-
NextToken?: string;
|
|
549
|
+
NextToken?: string | undefined;
|
|
550
550
|
}
|
|
551
551
|
export interface ListOperationsRequest {
|
|
552
552
|
ServiceArn: string | undefined;
|
|
553
|
-
NextToken?: string;
|
|
554
|
-
MaxResults?: number;
|
|
553
|
+
NextToken?: string | undefined;
|
|
554
|
+
MaxResults?: number | undefined;
|
|
555
555
|
}
|
|
556
556
|
export declare const OperationStatus: {
|
|
557
557
|
readonly FAILED: "FAILED";
|
|
@@ -574,88 +574,88 @@ export declare const OperationType: {
|
|
|
574
574
|
};
|
|
575
575
|
export type OperationType = (typeof OperationType)[keyof typeof OperationType];
|
|
576
576
|
export interface OperationSummary {
|
|
577
|
-
Id?: string;
|
|
578
|
-
Type?: OperationType;
|
|
579
|
-
Status?: OperationStatus;
|
|
580
|
-
TargetArn?: string;
|
|
581
|
-
StartedAt?: Date;
|
|
582
|
-
EndedAt?: Date;
|
|
583
|
-
UpdatedAt?: Date;
|
|
577
|
+
Id?: string | undefined;
|
|
578
|
+
Type?: OperationType | undefined;
|
|
579
|
+
Status?: OperationStatus | undefined;
|
|
580
|
+
TargetArn?: string | undefined;
|
|
581
|
+
StartedAt?: Date | undefined;
|
|
582
|
+
EndedAt?: Date | undefined;
|
|
583
|
+
UpdatedAt?: Date | undefined;
|
|
584
584
|
}
|
|
585
585
|
export interface ListOperationsResponse {
|
|
586
|
-
OperationSummaryList?: OperationSummary[];
|
|
587
|
-
NextToken?: string;
|
|
586
|
+
OperationSummaryList?: OperationSummary[] | undefined;
|
|
587
|
+
NextToken?: string | undefined;
|
|
588
588
|
}
|
|
589
589
|
export interface ListServicesRequest {
|
|
590
|
-
NextToken?: string;
|
|
591
|
-
MaxResults?: number;
|
|
590
|
+
NextToken?: string | undefined;
|
|
591
|
+
MaxResults?: number | undefined;
|
|
592
592
|
}
|
|
593
593
|
export interface ServiceSummary {
|
|
594
|
-
ServiceName?: string;
|
|
595
|
-
ServiceId?: string;
|
|
596
|
-
ServiceArn?: string;
|
|
597
|
-
ServiceUrl?: string;
|
|
598
|
-
CreatedAt?: Date;
|
|
599
|
-
UpdatedAt?: Date;
|
|
600
|
-
Status?: ServiceStatus;
|
|
594
|
+
ServiceName?: string | undefined;
|
|
595
|
+
ServiceId?: string | undefined;
|
|
596
|
+
ServiceArn?: string | undefined;
|
|
597
|
+
ServiceUrl?: string | undefined;
|
|
598
|
+
CreatedAt?: Date | undefined;
|
|
599
|
+
UpdatedAt?: Date | undefined;
|
|
600
|
+
Status?: ServiceStatus | undefined;
|
|
601
601
|
}
|
|
602
602
|
export interface ListServicesResponse {
|
|
603
603
|
ServiceSummaryList: ServiceSummary[] | undefined;
|
|
604
|
-
NextToken?: string;
|
|
604
|
+
NextToken?: string | undefined;
|
|
605
605
|
}
|
|
606
606
|
export interface ListServicesForAutoScalingConfigurationRequest {
|
|
607
607
|
AutoScalingConfigurationArn: string | undefined;
|
|
608
|
-
MaxResults?: number;
|
|
609
|
-
NextToken?: string;
|
|
608
|
+
MaxResults?: number | undefined;
|
|
609
|
+
NextToken?: string | undefined;
|
|
610
610
|
}
|
|
611
611
|
export interface ListServicesForAutoScalingConfigurationResponse {
|
|
612
612
|
ServiceArnList: string[] | undefined;
|
|
613
|
-
NextToken?: string;
|
|
613
|
+
NextToken?: string | undefined;
|
|
614
614
|
}
|
|
615
615
|
export interface ListTagsForResourceRequest {
|
|
616
616
|
ResourceArn: string | undefined;
|
|
617
617
|
}
|
|
618
618
|
export interface ListTagsForResourceResponse {
|
|
619
|
-
Tags?: Tag[];
|
|
619
|
+
Tags?: Tag[] | undefined;
|
|
620
620
|
}
|
|
621
621
|
export interface ListVpcConnectorsRequest {
|
|
622
|
-
MaxResults?: number;
|
|
623
|
-
NextToken?: string;
|
|
622
|
+
MaxResults?: number | undefined;
|
|
623
|
+
NextToken?: string | undefined;
|
|
624
624
|
}
|
|
625
625
|
export interface ListVpcConnectorsResponse {
|
|
626
626
|
VpcConnectors: VpcConnector[] | undefined;
|
|
627
|
-
NextToken?: string;
|
|
627
|
+
NextToken?: string | undefined;
|
|
628
628
|
}
|
|
629
629
|
export interface ListVpcIngressConnectionsFilter {
|
|
630
|
-
ServiceArn?: string;
|
|
631
|
-
VpcEndpointId?: string;
|
|
630
|
+
ServiceArn?: string | undefined;
|
|
631
|
+
VpcEndpointId?: string | undefined;
|
|
632
632
|
}
|
|
633
633
|
export interface ListVpcIngressConnectionsRequest {
|
|
634
|
-
Filter?: ListVpcIngressConnectionsFilter;
|
|
635
|
-
MaxResults?: number;
|
|
636
|
-
NextToken?: string;
|
|
634
|
+
Filter?: ListVpcIngressConnectionsFilter | undefined;
|
|
635
|
+
MaxResults?: number | undefined;
|
|
636
|
+
NextToken?: string | undefined;
|
|
637
637
|
}
|
|
638
638
|
export interface VpcIngressConnectionSummary {
|
|
639
|
-
VpcIngressConnectionArn?: string;
|
|
640
|
-
ServiceArn?: string;
|
|
639
|
+
VpcIngressConnectionArn?: string | undefined;
|
|
640
|
+
ServiceArn?: string | undefined;
|
|
641
641
|
}
|
|
642
642
|
export interface ListVpcIngressConnectionsResponse {
|
|
643
643
|
VpcIngressConnectionSummaryList: VpcIngressConnectionSummary[] | undefined;
|
|
644
|
-
NextToken?: string;
|
|
644
|
+
NextToken?: string | undefined;
|
|
645
645
|
}
|
|
646
646
|
export interface PauseServiceRequest {
|
|
647
647
|
ServiceArn: string | undefined;
|
|
648
648
|
}
|
|
649
649
|
export interface PauseServiceResponse {
|
|
650
650
|
Service: Service | undefined;
|
|
651
|
-
OperationId?: string;
|
|
651
|
+
OperationId?: string | undefined;
|
|
652
652
|
}
|
|
653
653
|
export interface ResumeServiceRequest {
|
|
654
654
|
ServiceArn: string | undefined;
|
|
655
655
|
}
|
|
656
656
|
export interface ResumeServiceResponse {
|
|
657
657
|
Service: Service | undefined;
|
|
658
|
-
OperationId?: string;
|
|
658
|
+
OperationId?: string | undefined;
|
|
659
659
|
}
|
|
660
660
|
export interface StartDeploymentRequest {
|
|
661
661
|
ServiceArn: string | undefined;
|
|
@@ -681,12 +681,12 @@ export interface UpdateDefaultAutoScalingConfigurationResponse {
|
|
|
681
681
|
}
|
|
682
682
|
export interface UpdateServiceRequest {
|
|
683
683
|
ServiceArn: string | undefined;
|
|
684
|
-
SourceConfiguration?: SourceConfiguration;
|
|
685
|
-
InstanceConfiguration?: InstanceConfiguration;
|
|
686
|
-
AutoScalingConfigurationArn?: string;
|
|
687
|
-
HealthCheckConfiguration?: HealthCheckConfiguration;
|
|
688
|
-
NetworkConfiguration?: NetworkConfiguration;
|
|
689
|
-
ObservabilityConfiguration?: ServiceObservabilityConfiguration;
|
|
684
|
+
SourceConfiguration?: SourceConfiguration | undefined;
|
|
685
|
+
InstanceConfiguration?: InstanceConfiguration | undefined;
|
|
686
|
+
AutoScalingConfigurationArn?: string | undefined;
|
|
687
|
+
HealthCheckConfiguration?: HealthCheckConfiguration | undefined;
|
|
688
|
+
NetworkConfiguration?: NetworkConfiguration | undefined;
|
|
689
|
+
ObservabilityConfiguration?: ServiceObservabilityConfiguration | undefined;
|
|
690
690
|
}
|
|
691
691
|
export interface UpdateServiceResponse {
|
|
692
692
|
Service: Service | undefined;
|