cdk-lambda-subminute 2.0.248 → 2.0.250
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/.jsii +16 -3
- package/lib/cdk-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/CHANGELOG.md +19 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/amplifyuibuilder-2021-08-11.min.json +28 -9
- package/node_modules/aws-sdk/apis/appintegrations-2020-07-29.examples.json +83 -0
- package/node_modules/aws-sdk/apis/appintegrations-2020-07-29.min.json +241 -32
- package/node_modules/aws-sdk/apis/appintegrations-2020-07-29.paginators.json +31 -1
- package/node_modules/aws-sdk/apis/apprunner-2020-05-15.min.json +50 -49
- package/node_modules/aws-sdk/apis/chime-sdk-media-pipelines-2021-07-15.min.json +296 -9
- package/node_modules/aws-sdk/apis/chime-sdk-media-pipelines-2021-07-15.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +298 -238
- package/node_modules/aws-sdk/apis/connect-2017-08-08.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/dynamodb-2012-08-10.min.json +81 -60
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +7 -0
- package/node_modules/aws-sdk/apis/emr-serverless-2021-07-13.min.json +94 -73
- package/node_modules/aws-sdk/apis/finspace-data-2020-07-13.min.json +5 -3
- package/node_modules/aws-sdk/apis/lakeformation-2017-03-31.min.json +141 -36
- package/node_modules/aws-sdk/apis/lakeformation-2017-03-31.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/quicksight-2018-04-01.min.json +4 -1
- package/node_modules/aws-sdk/apis/s3-2006-03-01.examples.json +126 -126
- package/node_modules/aws-sdk/apis/wafv2-2019-07-29.min.json +177 -168
- package/node_modules/aws-sdk/clients/amplifyuibuilder.d.ts +32 -4
- package/node_modules/aws-sdk/clients/appintegrations.d.ts +255 -1
- package/node_modules/aws-sdk/clients/apprunner.d.ts +6 -1
- package/node_modules/aws-sdk/clients/chimesdkmediapipelines.d.ts +291 -2
- package/node_modules/aws-sdk/clients/codedeploy.d.ts +34 -34
- package/node_modules/aws-sdk/clients/connect.d.ts +64 -6
- package/node_modules/aws-sdk/clients/dynamodb.d.ts +40 -2
- package/node_modules/aws-sdk/clients/ec2.d.ts +11 -3
- package/node_modules/aws-sdk/clients/emrserverless.d.ts +21 -0
- package/node_modules/aws-sdk/clients/finspacedata.d.ts +36 -36
- package/node_modules/aws-sdk/clients/lakeformation.d.ts +95 -1
- package/node_modules/aws-sdk/clients/pinpoint.d.ts +2 -2
- package/node_modules/aws-sdk/clients/quicksight.d.ts +7 -3
- package/node_modules/aws-sdk/clients/s3.d.ts +1 -1
- package/node_modules/aws-sdk/clients/ssm.d.ts +7 -7
- package/node_modules/aws-sdk/clients/wafv2.d.ts +42 -32
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +17 -17
- package/node_modules/aws-sdk/dist/aws-sdk.js +395 -301
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +80 -80
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/dynamodb/document_client.d.ts +38 -0
- package/node_modules/aws-sdk/package.json +1 -1
- package/node_modules/xml2js/node_modules/sax/LICENSE +2 -2
- package/node_modules/xml2js/node_modules/sax/lib/sax.js +13 -4
- package/node_modules/xml2js/node_modules/sax/package.json +8 -4
- package/package.json +3 -3
@@ -60,11 +60,11 @@ declare class AmplifyUIBuilder extends Service {
|
|
60
60
|
*/
|
61
61
|
deleteTheme(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
62
62
|
/**
|
63
|
-
*
|
63
|
+
* This is for internal use. Amplify uses this action to exchange an access code for a token.
|
64
64
|
*/
|
65
65
|
exchangeCodeForToken(params: AmplifyUIBuilder.Types.ExchangeCodeForTokenRequest, callback?: (err: AWSError, data: AmplifyUIBuilder.Types.ExchangeCodeForTokenResponse) => void): Request<AmplifyUIBuilder.Types.ExchangeCodeForTokenResponse, AWSError>;
|
66
66
|
/**
|
67
|
-
*
|
67
|
+
* This is for internal use. Amplify uses this action to exchange an access code for a token.
|
68
68
|
*/
|
69
69
|
exchangeCodeForToken(callback?: (err: AWSError, data: AmplifyUIBuilder.Types.ExchangeCodeForTokenResponse) => void): Request<AmplifyUIBuilder.Types.ExchangeCodeForTokenResponse, AWSError>;
|
70
70
|
/**
|
@@ -172,11 +172,11 @@ declare class AmplifyUIBuilder extends Service {
|
|
172
172
|
*/
|
173
173
|
putMetadataFlag(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
174
174
|
/**
|
175
|
-
*
|
175
|
+
* This is for internal use. Amplify uses this action to refresh a previously issued access token that might have expired.
|
176
176
|
*/
|
177
177
|
refreshToken(params: AmplifyUIBuilder.Types.RefreshTokenRequest, callback?: (err: AWSError, data: AmplifyUIBuilder.Types.RefreshTokenResponse) => void): Request<AmplifyUIBuilder.Types.RefreshTokenResponse, AWSError>;
|
178
178
|
/**
|
179
|
-
*
|
179
|
+
* This is for internal use. Amplify uses this action to refresh a previously issued access token that might have expired.
|
180
180
|
*/
|
181
181
|
refreshToken(callback?: (err: AWSError, data: AmplifyUIBuilder.Types.RefreshTokenResponse) => void): Request<AmplifyUIBuilder.Types.RefreshTokenResponse, AWSError>;
|
182
182
|
/**
|
@@ -268,6 +268,25 @@ declare namespace AmplifyUIBuilder {
|
|
268
268
|
export type AppId = string;
|
269
269
|
export type AssociatedFieldsList = String[];
|
270
270
|
export type Boolean = boolean;
|
271
|
+
export type CodegenDependencies = CodegenDependency[];
|
272
|
+
export interface CodegenDependency {
|
273
|
+
/**
|
274
|
+
* Name of the dependency package.
|
275
|
+
*/
|
276
|
+
name?: String;
|
277
|
+
/**
|
278
|
+
* Indicates the version of the supported dependency package.
|
279
|
+
*/
|
280
|
+
supportedVersion?: String;
|
281
|
+
/**
|
282
|
+
* Determines if the dependency package is using Semantic versioning. If set to true, it indicates that the dependency package uses Semantic versioning.
|
283
|
+
*/
|
284
|
+
isSemVer?: Boolean;
|
285
|
+
/**
|
286
|
+
* Indicates the reason to include the dependency package in your project code.
|
287
|
+
*/
|
288
|
+
reason?: String;
|
289
|
+
}
|
271
290
|
export interface CodegenFeatureFlags {
|
272
291
|
/**
|
273
292
|
* Specifes whether a code generation job supports data relationships.
|
@@ -419,6 +438,10 @@ declare namespace AmplifyUIBuilder {
|
|
419
438
|
* The time that the code generation job was modified.
|
420
439
|
*/
|
421
440
|
modifiedAt?: SyntheticTimestamp_date_time;
|
441
|
+
/**
|
442
|
+
* Lists the dependency packages that may be required for the project code to run.
|
443
|
+
*/
|
444
|
+
dependencies?: CodegenDependencies;
|
422
445
|
}
|
423
446
|
export interface CodegenJobAsset {
|
424
447
|
/**
|
@@ -1801,6 +1824,7 @@ declare namespace AmplifyUIBuilder {
|
|
1801
1824
|
*/
|
1802
1825
|
body: PutMetadataFlagBody;
|
1803
1826
|
}
|
1827
|
+
export type ReactCodegenDependencies = {[key: string]: String};
|
1804
1828
|
export interface ReactStartCodegenJobData {
|
1805
1829
|
/**
|
1806
1830
|
* The JavaScript module type.
|
@@ -1826,6 +1850,10 @@ declare namespace AmplifyUIBuilder {
|
|
1826
1850
|
* The API configuration for the code generation job.
|
1827
1851
|
*/
|
1828
1852
|
apiConfiguration?: ApiConfiguration;
|
1853
|
+
/**
|
1854
|
+
* Lists the dependency packages that may be required for the project code to run.
|
1855
|
+
*/
|
1856
|
+
dependencies?: ReactCodegenDependencies;
|
1829
1857
|
}
|
1830
1858
|
export interface RefreshTokenRequest {
|
1831
1859
|
/**
|
@@ -11,6 +11,14 @@ declare class AppIntegrations extends Service {
|
|
11
11
|
*/
|
12
12
|
constructor(options?: AppIntegrations.Types.ClientConfiguration)
|
13
13
|
config: Config & AppIntegrations.Types.ClientConfiguration;
|
14
|
+
/**
|
15
|
+
* This API is in preview release and subject to change. Creates and persists an Application resource.
|
16
|
+
*/
|
17
|
+
createApplication(params: AppIntegrations.Types.CreateApplicationRequest, callback?: (err: AWSError, data: AppIntegrations.Types.CreateApplicationResponse) => void): Request<AppIntegrations.Types.CreateApplicationResponse, AWSError>;
|
18
|
+
/**
|
19
|
+
* This API is in preview release and subject to change. Creates and persists an Application resource.
|
20
|
+
*/
|
21
|
+
createApplication(callback?: (err: AWSError, data: AppIntegrations.Types.CreateApplicationResponse) => void): Request<AppIntegrations.Types.CreateApplicationResponse, AWSError>;
|
14
22
|
/**
|
15
23
|
* Creates and persists a DataIntegration resource. You cannot create a DataIntegration association for a DataIntegration that has been previously associated. Use a different DataIntegration, or recreate the DataIntegration using the CreateDataIntegration API.
|
16
24
|
*/
|
@@ -43,6 +51,14 @@ declare class AppIntegrations extends Service {
|
|
43
51
|
* Deletes the specified existing event integration. If the event integration is associated with clients, the request is rejected.
|
44
52
|
*/
|
45
53
|
deleteEventIntegration(callback?: (err: AWSError, data: AppIntegrations.Types.DeleteEventIntegrationResponse) => void): Request<AppIntegrations.Types.DeleteEventIntegrationResponse, AWSError>;
|
54
|
+
/**
|
55
|
+
* This API is in preview release and subject to change. Get an Application resource.
|
56
|
+
*/
|
57
|
+
getApplication(params: AppIntegrations.Types.GetApplicationRequest, callback?: (err: AWSError, data: AppIntegrations.Types.GetApplicationResponse) => void): Request<AppIntegrations.Types.GetApplicationResponse, AWSError>;
|
58
|
+
/**
|
59
|
+
* This API is in preview release and subject to change. Get an Application resource.
|
60
|
+
*/
|
61
|
+
getApplication(callback?: (err: AWSError, data: AppIntegrations.Types.GetApplicationResponse) => void): Request<AppIntegrations.Types.GetApplicationResponse, AWSError>;
|
46
62
|
/**
|
47
63
|
* Returns information about the DataIntegration. You cannot create a DataIntegration association for a DataIntegration that has been previously associated. Use a different DataIntegration, or recreate the DataIntegration using the CreateDataIntegration API.
|
48
64
|
*/
|
@@ -59,6 +75,14 @@ declare class AppIntegrations extends Service {
|
|
59
75
|
* Returns information about the event integration.
|
60
76
|
*/
|
61
77
|
getEventIntegration(callback?: (err: AWSError, data: AppIntegrations.Types.GetEventIntegrationResponse) => void): Request<AppIntegrations.Types.GetEventIntegrationResponse, AWSError>;
|
78
|
+
/**
|
79
|
+
* This API is in preview release and subject to change. Lists applications in the account.
|
80
|
+
*/
|
81
|
+
listApplications(params: AppIntegrations.Types.ListApplicationsRequest, callback?: (err: AWSError, data: AppIntegrations.Types.ListApplicationsResponse) => void): Request<AppIntegrations.Types.ListApplicationsResponse, AWSError>;
|
82
|
+
/**
|
83
|
+
* This API is in preview release and subject to change. Lists applications in the account.
|
84
|
+
*/
|
85
|
+
listApplications(callback?: (err: AWSError, data: AppIntegrations.Types.ListApplicationsResponse) => void): Request<AppIntegrations.Types.ListApplicationsResponse, AWSError>;
|
62
86
|
/**
|
63
87
|
* Returns a paginated list of DataIntegration associations in the account. You cannot create a DataIntegration association for a DataIntegration that has been previously associated. Use a different DataIntegration, or recreate the DataIntegration using the CreateDataIntegration API.
|
64
88
|
*/
|
@@ -115,6 +139,14 @@ declare class AppIntegrations extends Service {
|
|
115
139
|
* Removes the specified tags from the specified resource.
|
116
140
|
*/
|
117
141
|
untagResource(callback?: (err: AWSError, data: AppIntegrations.Types.UntagResourceResponse) => void): Request<AppIntegrations.Types.UntagResourceResponse, AWSError>;
|
142
|
+
/**
|
143
|
+
* This API is in preview release and subject to change. Updates and persists an Application resource.
|
144
|
+
*/
|
145
|
+
updateApplication(params: AppIntegrations.Types.UpdateApplicationRequest, callback?: (err: AWSError, data: AppIntegrations.Types.UpdateApplicationResponse) => void): Request<AppIntegrations.Types.UpdateApplicationResponse, AWSError>;
|
146
|
+
/**
|
147
|
+
* This API is in preview release and subject to change. Updates and persists an Application resource.
|
148
|
+
*/
|
149
|
+
updateApplication(callback?: (err: AWSError, data: AppIntegrations.Types.UpdateApplicationResponse) => void): Request<AppIntegrations.Types.UpdateApplicationResponse, AWSError>;
|
118
150
|
/**
|
119
151
|
* Updates the description of a DataIntegration. You cannot create a DataIntegration association for a DataIntegration that has been previously associated. Use a different DataIntegration, or recreate the DataIntegration using the CreateDataIntegration API.
|
120
152
|
*/
|
@@ -133,9 +165,91 @@ declare class AppIntegrations extends Service {
|
|
133
165
|
updateEventIntegration(callback?: (err: AWSError, data: AppIntegrations.Types.UpdateEventIntegrationResponse) => void): Request<AppIntegrations.Types.UpdateEventIntegrationResponse, AWSError>;
|
134
166
|
}
|
135
167
|
declare namespace AppIntegrations {
|
168
|
+
export type ApplicationApprovedOrigins = ApplicationTrustedSource[];
|
169
|
+
export type ApplicationName = string;
|
170
|
+
export type ApplicationNamespace = string;
|
171
|
+
export interface ApplicationSourceConfig {
|
172
|
+
/**
|
173
|
+
* The external URL source for the application.
|
174
|
+
*/
|
175
|
+
ExternalUrlConfig?: ExternalUrlConfig;
|
176
|
+
}
|
177
|
+
export interface ApplicationSummary {
|
178
|
+
/**
|
179
|
+
* The Amazon Resource Name (ARN) of the Application.
|
180
|
+
*/
|
181
|
+
Arn?: Arn;
|
182
|
+
/**
|
183
|
+
* A unique identifier for the Application.
|
184
|
+
*/
|
185
|
+
Id?: UUID;
|
186
|
+
/**
|
187
|
+
* The name of the application.
|
188
|
+
*/
|
189
|
+
Name?: ApplicationName;
|
190
|
+
/**
|
191
|
+
* The namespace of the application.
|
192
|
+
*/
|
193
|
+
Namespace?: ApplicationNamespace;
|
194
|
+
/**
|
195
|
+
* The time when the application was created.
|
196
|
+
*/
|
197
|
+
CreatedTime?: Timestamp;
|
198
|
+
/**
|
199
|
+
* The time when the application was last modified.
|
200
|
+
*/
|
201
|
+
LastModifiedTime?: Timestamp;
|
202
|
+
}
|
203
|
+
export type ApplicationTrustedSource = string;
|
204
|
+
export type ApplicationsList = ApplicationSummary[];
|
136
205
|
export type Arn = string;
|
206
|
+
export type ArnOrUUID = string;
|
137
207
|
export type ClientAssociationMetadata = {[key: string]: NonBlankString};
|
138
208
|
export type ClientId = string;
|
209
|
+
export interface CreateApplicationRequest {
|
210
|
+
/**
|
211
|
+
* The name of the application.
|
212
|
+
*/
|
213
|
+
Name: ApplicationName;
|
214
|
+
/**
|
215
|
+
* The namespace of the application.
|
216
|
+
*/
|
217
|
+
Namespace: ApplicationNamespace;
|
218
|
+
/**
|
219
|
+
* The description of the application.
|
220
|
+
*/
|
221
|
+
Description?: Description;
|
222
|
+
/**
|
223
|
+
* The configuration for where the application should be loaded from.
|
224
|
+
*/
|
225
|
+
ApplicationSourceConfig: ApplicationSourceConfig;
|
226
|
+
/**
|
227
|
+
* The events that the application subscribes.
|
228
|
+
*/
|
229
|
+
Subscriptions?: SubscriptionList;
|
230
|
+
/**
|
231
|
+
* The events that the application publishes.
|
232
|
+
*/
|
233
|
+
Publications?: PublicationList;
|
234
|
+
/**
|
235
|
+
* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with idempotent APIs.
|
236
|
+
*/
|
237
|
+
ClientToken?: IdempotencyToken;
|
238
|
+
/**
|
239
|
+
* The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.
|
240
|
+
*/
|
241
|
+
Tags?: TagMap;
|
242
|
+
}
|
243
|
+
export interface CreateApplicationResponse {
|
244
|
+
/**
|
245
|
+
* The Amazon Resource Name (ARN) of the Application.
|
246
|
+
*/
|
247
|
+
Arn?: Arn;
|
248
|
+
/**
|
249
|
+
* A unique identifier for the Application.
|
250
|
+
*/
|
251
|
+
Id?: UUID;
|
252
|
+
}
|
139
253
|
export interface CreateDataIntegrationRequest {
|
140
254
|
/**
|
141
255
|
* The name of the DataIntegration.
|
@@ -301,6 +415,7 @@ declare namespace AppIntegrations {
|
|
301
415
|
export type Description = string;
|
302
416
|
export type EventBridgeBus = string;
|
303
417
|
export type EventBridgeRuleName = string;
|
418
|
+
export type EventDefinitionSchema = string;
|
304
419
|
export interface EventFilter {
|
305
420
|
/**
|
306
421
|
* The source of the events.
|
@@ -361,6 +476,17 @@ declare namespace AppIntegrations {
|
|
361
476
|
}
|
362
477
|
export type EventIntegrationAssociationsList = EventIntegrationAssociation[];
|
363
478
|
export type EventIntegrationsList = EventIntegration[];
|
479
|
+
export type EventName = string;
|
480
|
+
export interface ExternalUrlConfig {
|
481
|
+
/**
|
482
|
+
* The URL to access the application.
|
483
|
+
*/
|
484
|
+
AccessUrl: URL;
|
485
|
+
/**
|
486
|
+
* Additional URLs to allow list if different than the access URL.
|
487
|
+
*/
|
488
|
+
ApprovedOrigins?: ApplicationApprovedOrigins;
|
489
|
+
}
|
364
490
|
export type Fields = string;
|
365
491
|
export type FieldsList = Fields[];
|
366
492
|
export type FieldsMap = {[key: string]: FieldsList};
|
@@ -375,6 +501,58 @@ declare namespace AppIntegrations {
|
|
375
501
|
Filters?: FieldsMap;
|
376
502
|
}
|
377
503
|
export type FolderList = NonBlankLongString[];
|
504
|
+
export interface GetApplicationRequest {
|
505
|
+
/**
|
506
|
+
* The Amazon Resource Name (ARN) of the Application.
|
507
|
+
*/
|
508
|
+
Arn: ArnOrUUID;
|
509
|
+
}
|
510
|
+
export interface GetApplicationResponse {
|
511
|
+
/**
|
512
|
+
* The Amazon Resource Name (ARN) of the Application.
|
513
|
+
*/
|
514
|
+
Arn?: Arn;
|
515
|
+
/**
|
516
|
+
* A unique identifier for the Application.
|
517
|
+
*/
|
518
|
+
Id?: UUID;
|
519
|
+
/**
|
520
|
+
* The name of the application.
|
521
|
+
*/
|
522
|
+
Name?: ApplicationName;
|
523
|
+
/**
|
524
|
+
* The namespace of the application.
|
525
|
+
*/
|
526
|
+
Namespace?: ApplicationNamespace;
|
527
|
+
/**
|
528
|
+
* The description of the application.
|
529
|
+
*/
|
530
|
+
Description?: Description;
|
531
|
+
/**
|
532
|
+
* The configuration for where the application should be loaded from.
|
533
|
+
*/
|
534
|
+
ApplicationSourceConfig?: ApplicationSourceConfig;
|
535
|
+
/**
|
536
|
+
* The events that the application subscribes.
|
537
|
+
*/
|
538
|
+
Subscriptions?: SubscriptionList;
|
539
|
+
/**
|
540
|
+
* The events that the application publishes.
|
541
|
+
*/
|
542
|
+
Publications?: PublicationList;
|
543
|
+
/**
|
544
|
+
* The created time of the Application.
|
545
|
+
*/
|
546
|
+
CreatedTime?: Timestamp;
|
547
|
+
/**
|
548
|
+
* The last modified time of the Application.
|
549
|
+
*/
|
550
|
+
LastModifiedTime?: Timestamp;
|
551
|
+
/**
|
552
|
+
* The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.
|
553
|
+
*/
|
554
|
+
Tags?: TagMap;
|
555
|
+
}
|
378
556
|
export interface GetDataIntegrationRequest {
|
379
557
|
/**
|
380
558
|
* A unique identifier.
|
@@ -457,6 +635,26 @@ declare namespace AppIntegrations {
|
|
457
635
|
}
|
458
636
|
export type IdempotencyToken = string;
|
459
637
|
export type Identifier = string;
|
638
|
+
export interface ListApplicationsRequest {
|
639
|
+
/**
|
640
|
+
* The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
|
641
|
+
*/
|
642
|
+
NextToken?: NextToken;
|
643
|
+
/**
|
644
|
+
* The maximum number of results to return per page.
|
645
|
+
*/
|
646
|
+
MaxResults?: MaxResults;
|
647
|
+
}
|
648
|
+
export interface ListApplicationsResponse {
|
649
|
+
/**
|
650
|
+
* The Applications associated with this account.
|
651
|
+
*/
|
652
|
+
Applications?: ApplicationsList;
|
653
|
+
/**
|
654
|
+
* If there are additional results, this is the token for the next set of results.
|
655
|
+
*/
|
656
|
+
NextToken?: NextToken;
|
657
|
+
}
|
460
658
|
export interface ListDataIntegrationAssociationsRequest {
|
461
659
|
/**
|
462
660
|
* A unique identifier for the DataIntegration.
|
@@ -564,6 +762,21 @@ declare namespace AppIntegrations {
|
|
564
762
|
export type NonBlankString = string;
|
565
763
|
export type Object = string;
|
566
764
|
export type ObjectConfiguration = {[key: string]: FieldsMap};
|
765
|
+
export interface Publication {
|
766
|
+
/**
|
767
|
+
* The name of the publication.
|
768
|
+
*/
|
769
|
+
Event: EventName;
|
770
|
+
/**
|
771
|
+
* The JSON schema of the publication event.
|
772
|
+
*/
|
773
|
+
Schema: EventDefinitionSchema;
|
774
|
+
/**
|
775
|
+
* The description of the publication.
|
776
|
+
*/
|
777
|
+
Description?: Description;
|
778
|
+
}
|
779
|
+
export type PublicationList = Publication[];
|
567
780
|
export interface ScheduleConfiguration {
|
568
781
|
/**
|
569
782
|
* The start date for objects to import in the first flow run as an Unix/epoch timestamp in milliseconds or in ISO-8601 format.
|
@@ -580,6 +793,17 @@ declare namespace AppIntegrations {
|
|
580
793
|
}
|
581
794
|
export type Source = string;
|
582
795
|
export type SourceURI = string;
|
796
|
+
export interface Subscription {
|
797
|
+
/**
|
798
|
+
* The name of the subscription.
|
799
|
+
*/
|
800
|
+
Event: EventName;
|
801
|
+
/**
|
802
|
+
* The description of the subscription.
|
803
|
+
*/
|
804
|
+
Description?: Description;
|
805
|
+
}
|
806
|
+
export type SubscriptionList = Subscription[];
|
583
807
|
export type TagKey = string;
|
584
808
|
export type TagKeyList = TagKey[];
|
585
809
|
export type TagMap = {[key: string]: TagValue};
|
@@ -596,6 +820,8 @@ declare namespace AppIntegrations {
|
|
596
820
|
export interface TagResourceResponse {
|
597
821
|
}
|
598
822
|
export type TagValue = string;
|
823
|
+
export type Timestamp = Date;
|
824
|
+
export type URL = string;
|
599
825
|
export type UUID = string;
|
600
826
|
export interface UntagResourceRequest {
|
601
827
|
/**
|
@@ -609,6 +835,34 @@ declare namespace AppIntegrations {
|
|
609
835
|
}
|
610
836
|
export interface UntagResourceResponse {
|
611
837
|
}
|
838
|
+
export interface UpdateApplicationRequest {
|
839
|
+
/**
|
840
|
+
* The Amazon Resource Name (ARN) of the Application.
|
841
|
+
*/
|
842
|
+
Arn: ArnOrUUID;
|
843
|
+
/**
|
844
|
+
* The name of the application.
|
845
|
+
*/
|
846
|
+
Name?: ApplicationName;
|
847
|
+
/**
|
848
|
+
* The description of the application.
|
849
|
+
*/
|
850
|
+
Description?: Description;
|
851
|
+
/**
|
852
|
+
* The configuration for where the application should be loaded from.
|
853
|
+
*/
|
854
|
+
ApplicationSourceConfig?: ApplicationSourceConfig;
|
855
|
+
/**
|
856
|
+
* The events that the application subscribes.
|
857
|
+
*/
|
858
|
+
Subscriptions?: SubscriptionList;
|
859
|
+
/**
|
860
|
+
* The events that the application publishes.
|
861
|
+
*/
|
862
|
+
Publications?: PublicationList;
|
863
|
+
}
|
864
|
+
export interface UpdateApplicationResponse {
|
865
|
+
}
|
612
866
|
export interface UpdateDataIntegrationRequest {
|
613
867
|
/**
|
614
868
|
* A unique identifier for the DataIntegration.
|
@@ -631,7 +885,7 @@ declare namespace AppIntegrations {
|
|
631
885
|
*/
|
632
886
|
Name: Name;
|
633
887
|
/**
|
634
|
-
* The description of the event
|
888
|
+
* The description of the event integration.
|
635
889
|
*/
|
636
890
|
Description?: Description;
|
637
891
|
}
|
@@ -510,6 +510,10 @@ declare namespace AppRunner {
|
|
510
510
|
* Configuration for building and running the service from a source code repository. CodeConfiguration is required only for CreateService request.
|
511
511
|
*/
|
512
512
|
CodeConfiguration?: CodeConfiguration;
|
513
|
+
/**
|
514
|
+
* The path of the directory that stores source code and configuration files. The build and start commands also execute from here. The path is absolute from root and, if not specified, defaults to the repository root.
|
515
|
+
*/
|
516
|
+
SourceDirectory?: SourceDirectory;
|
513
517
|
}
|
514
518
|
export type ConfigurationSource = "REPOSITORY"|"API"|string;
|
515
519
|
export interface Connection {
|
@@ -562,7 +566,7 @@ declare namespace AppRunner {
|
|
562
566
|
export type Cpu = string;
|
563
567
|
export interface CreateAutoScalingConfigurationRequest {
|
564
568
|
/**
|
565
|
-
* A name for the auto scaling configuration. When you use it for the first time in an Amazon Web Services Region, App Runner creates revision number 1 of this name. When you use the same name in subsequent calls, App Runner creates incremental revisions of the configuration. Prior to the release of
|
569
|
+
* A name for the auto scaling configuration. When you use it for the first time in an Amazon Web Services Region, App Runner creates revision number 1 of this name. When you use the same name in subsequent calls, App Runner creates incremental revisions of the configuration. Prior to the release of Auto scale configuration enhancements, the name DefaultConfiguration was reserved. This restriction is no longer in place. You can now manage DefaultConfiguration the same way you manage your custom auto scaling configurations. This means you can do the following with the DefaultConfiguration that App Runner provides: Create new revisions of the DefaultConfiguration. Delete the revisions of the DefaultConfiguration. Delete the auto scaling configuration for which the App Runner DefaultConfiguration was created. If you delete the auto scaling configuration you can create another custom auto scaling configuration with the same DefaultConfiguration name. The original DefaultConfiguration resource provided by App Runner remains in your account unless you make changes to it.
|
566
570
|
*/
|
567
571
|
AutoScalingConfigurationName: AutoScalingConfigurationName;
|
568
572
|
/**
|
@@ -1563,6 +1567,7 @@ declare namespace AppRunner {
|
|
1563
1567
|
*/
|
1564
1568
|
AuthenticationConfiguration?: AuthenticationConfiguration;
|
1565
1569
|
}
|
1570
|
+
export type SourceDirectory = string;
|
1566
1571
|
export type StartCommand = string;
|
1567
1572
|
export interface StartDeploymentRequest {
|
1568
1573
|
/**
|