@aws-sdk/client-appsync 3.687.0 → 3.692.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 +423 -423
- package/dist-types/ts3.4/models/models_0.d.ts +429 -423
- package/package.json +36 -36
|
@@ -42,7 +42,7 @@ export interface LambdaAuthorizerConfig {
|
|
|
42
42
|
* a <code>ttlOverride</code> key in its response.</p>
|
|
43
43
|
* @public
|
|
44
44
|
*/
|
|
45
|
-
authorizerResultTtlInSeconds?: number;
|
|
45
|
+
authorizerResultTtlInSeconds?: number | undefined;
|
|
46
46
|
/**
|
|
47
47
|
* <p>The Amazon Resource Name (ARN) of the Lambda function to be called for
|
|
48
48
|
* authorization. This can be a standard Lambda ARN, a version ARN
|
|
@@ -65,7 +65,7 @@ export interface LambdaAuthorizerConfig {
|
|
|
65
65
|
* called.</p>
|
|
66
66
|
* @public
|
|
67
67
|
*/
|
|
68
|
-
identityValidationExpression?: string;
|
|
68
|
+
identityValidationExpression?: string | undefined;
|
|
69
69
|
}
|
|
70
70
|
/**
|
|
71
71
|
* <p>Describes an OpenID Connect (OIDC) configuration.</p>
|
|
@@ -85,17 +85,17 @@ export interface OpenIDConnectConfig {
|
|
|
85
85
|
* validate against multiple client identifiers at a time.</p>
|
|
86
86
|
* @public
|
|
87
87
|
*/
|
|
88
|
-
clientId?: string;
|
|
88
|
+
clientId?: string | undefined;
|
|
89
89
|
/**
|
|
90
90
|
* <p>The number of milliseconds that a token is valid after it's issued to a user.</p>
|
|
91
91
|
* @public
|
|
92
92
|
*/
|
|
93
|
-
iatTTL?: number;
|
|
93
|
+
iatTTL?: number | undefined;
|
|
94
94
|
/**
|
|
95
95
|
* <p>The number of milliseconds that a token is valid after being authenticated.</p>
|
|
96
96
|
* @public
|
|
97
97
|
*/
|
|
98
|
-
authTTL?: number;
|
|
98
|
+
authTTL?: number | undefined;
|
|
99
99
|
}
|
|
100
100
|
/**
|
|
101
101
|
* <p>Describes an Amazon Cognito user pool configuration.</p>
|
|
@@ -117,7 +117,7 @@ export interface CognitoUserPoolConfig {
|
|
|
117
117
|
* ID. If this value isn't set, no filtering is applied.</p>
|
|
118
118
|
* @public
|
|
119
119
|
*/
|
|
120
|
-
appIdClientRegex?: string;
|
|
120
|
+
appIdClientRegex?: string | undefined;
|
|
121
121
|
}
|
|
122
122
|
/**
|
|
123
123
|
* <p>Describes an additional authentication provider.</p>
|
|
@@ -129,22 +129,22 @@ export interface AdditionalAuthenticationProvider {
|
|
|
129
129
|
* Connect (OIDC), Amazon Cognito user pools, or Lambda.</p>
|
|
130
130
|
* @public
|
|
131
131
|
*/
|
|
132
|
-
authenticationType?: AuthenticationType;
|
|
132
|
+
authenticationType?: AuthenticationType | undefined;
|
|
133
133
|
/**
|
|
134
134
|
* <p>The OIDC configuration.</p>
|
|
135
135
|
* @public
|
|
136
136
|
*/
|
|
137
|
-
openIDConnectConfig?: OpenIDConnectConfig;
|
|
137
|
+
openIDConnectConfig?: OpenIDConnectConfig | undefined;
|
|
138
138
|
/**
|
|
139
139
|
* <p>The Amazon Cognito user pool configuration.</p>
|
|
140
140
|
* @public
|
|
141
141
|
*/
|
|
142
|
-
userPoolConfig?: CognitoUserPoolConfig;
|
|
142
|
+
userPoolConfig?: CognitoUserPoolConfig | undefined;
|
|
143
143
|
/**
|
|
144
144
|
* <p>Configuration for Lambda function authorization.</p>
|
|
145
145
|
* @public
|
|
146
146
|
*/
|
|
147
|
-
lambdaAuthorizerConfig?: LambdaAuthorizerConfig;
|
|
147
|
+
lambdaAuthorizerConfig?: LambdaAuthorizerConfig | undefined;
|
|
148
148
|
}
|
|
149
149
|
/**
|
|
150
150
|
* <p>Describes an Amazon Cognito configuration.</p>
|
|
@@ -166,7 +166,7 @@ export interface CognitoConfig {
|
|
|
166
166
|
* ID. If this value isn't set, no filtering is applied.</p>
|
|
167
167
|
* @public
|
|
168
168
|
*/
|
|
169
|
-
appIdClientRegex?: string;
|
|
169
|
+
appIdClientRegex?: string | undefined;
|
|
170
170
|
}
|
|
171
171
|
/**
|
|
172
172
|
* <p>Describes an authorization provider.</p>
|
|
@@ -182,19 +182,19 @@ export interface AuthProvider {
|
|
|
182
182
|
* <p>Describes an Amazon Cognito user pool configuration.</p>
|
|
183
183
|
* @public
|
|
184
184
|
*/
|
|
185
|
-
cognitoConfig?: CognitoConfig;
|
|
185
|
+
cognitoConfig?: CognitoConfig | undefined;
|
|
186
186
|
/**
|
|
187
187
|
* <p>Describes an OpenID Connect (OIDC) configuration.</p>
|
|
188
188
|
* @public
|
|
189
189
|
*/
|
|
190
|
-
openIDConnectConfig?: OpenIDConnectConfig;
|
|
190
|
+
openIDConnectConfig?: OpenIDConnectConfig | undefined;
|
|
191
191
|
/**
|
|
192
192
|
* <p>A <code>LambdaAuthorizerConfig</code> specifies how to authorize AppSync
|
|
193
193
|
* API access when using the <code>AWS_LAMBDA</code> authorizer mode. Be aware that an AppSync API can have only one Lambda authorizer configured at a
|
|
194
194
|
* time.</p>
|
|
195
195
|
* @public
|
|
196
196
|
*/
|
|
197
|
-
lambdaAuthorizerConfig?: LambdaAuthorizerConfig;
|
|
197
|
+
lambdaAuthorizerConfig?: LambdaAuthorizerConfig | undefined;
|
|
198
198
|
}
|
|
199
199
|
/**
|
|
200
200
|
* <p>Describes an authorization configuration. Use <code>AuthMode</code> to specify the
|
|
@@ -269,7 +269,7 @@ export interface EventConfig {
|
|
|
269
269
|
* <p>The CloudWatch Logs configuration for the Event API.</p>
|
|
270
270
|
* @public
|
|
271
271
|
*/
|
|
272
|
-
logConfig?: EventLogConfig;
|
|
272
|
+
logConfig?: EventLogConfig | undefined;
|
|
273
273
|
}
|
|
274
274
|
/**
|
|
275
275
|
* <p>Describes an AppSync API. You can use <code>Api</code> for an AppSync
|
|
@@ -282,57 +282,57 @@ export interface Api {
|
|
|
282
282
|
* <p>The <code>Api</code> ID.</p>
|
|
283
283
|
* @public
|
|
284
284
|
*/
|
|
285
|
-
apiId?: string;
|
|
285
|
+
apiId?: string | undefined;
|
|
286
286
|
/**
|
|
287
287
|
* <p>The name of the <code>Api</code>.</p>
|
|
288
288
|
* @public
|
|
289
289
|
*/
|
|
290
|
-
name?: string;
|
|
290
|
+
name?: string | undefined;
|
|
291
291
|
/**
|
|
292
292
|
* <p>The owner contact information for the <code>Api</code>
|
|
293
293
|
* </p>
|
|
294
294
|
* @public
|
|
295
295
|
*/
|
|
296
|
-
ownerContact?: string;
|
|
296
|
+
ownerContact?: string | undefined;
|
|
297
297
|
/**
|
|
298
298
|
* <p>A map with keys of <code>TagKey</code> objects and values of <code>TagValue</code>
|
|
299
299
|
* objects.</p>
|
|
300
300
|
* @public
|
|
301
301
|
*/
|
|
302
|
-
tags?: Record<string, string
|
|
302
|
+
tags?: Record<string, string> | undefined;
|
|
303
303
|
/**
|
|
304
304
|
* <p>The DNS records for the API. This will include an HTTP and a real-time endpoint.</p>
|
|
305
305
|
* @public
|
|
306
306
|
*/
|
|
307
|
-
dns?: Record<string, string
|
|
307
|
+
dns?: Record<string, string> | undefined;
|
|
308
308
|
/**
|
|
309
309
|
* <p>The Amazon Resource Name (ARN) for the <code>Api</code>.</p>
|
|
310
310
|
* @public
|
|
311
311
|
*/
|
|
312
|
-
apiArn?: string;
|
|
312
|
+
apiArn?: string | undefined;
|
|
313
313
|
/**
|
|
314
314
|
* <p>The date and time that the <code>Api</code> was created.</p>
|
|
315
315
|
* @public
|
|
316
316
|
*/
|
|
317
|
-
created?: Date;
|
|
317
|
+
created?: Date | undefined;
|
|
318
318
|
/**
|
|
319
319
|
* <p>A flag indicating whether to use X-Ray tracing for this
|
|
320
320
|
* <code>Api</code>.</p>
|
|
321
321
|
* @public
|
|
322
322
|
*/
|
|
323
|
-
xrayEnabled?: boolean;
|
|
323
|
+
xrayEnabled?: boolean | undefined;
|
|
324
324
|
/**
|
|
325
325
|
* <p>The Amazon Resource Name (ARN) of the WAF web access control list (web
|
|
326
326
|
* ACL) associated with this <code>Api</code>, if one exists.</p>
|
|
327
327
|
* @public
|
|
328
328
|
*/
|
|
329
|
-
wafWebAclArn?: string;
|
|
329
|
+
wafWebAclArn?: string | undefined;
|
|
330
330
|
/**
|
|
331
331
|
* <p>The Event API configuration. This includes the default authorization configuration for
|
|
332
332
|
* connecting, publishing, and subscribing to an Event API.</p>
|
|
333
333
|
* @public
|
|
334
334
|
*/
|
|
335
|
-
eventConfig?: EventConfig;
|
|
335
|
+
eventConfig?: EventConfig | undefined;
|
|
336
336
|
}
|
|
337
337
|
/**
|
|
338
338
|
* @public
|
|
@@ -356,12 +356,12 @@ export interface ApiAssociation {
|
|
|
356
356
|
* <p>The domain name.</p>
|
|
357
357
|
* @public
|
|
358
358
|
*/
|
|
359
|
-
domainName?: string;
|
|
359
|
+
domainName?: string | undefined;
|
|
360
360
|
/**
|
|
361
361
|
* <p>The API ID.</p>
|
|
362
362
|
* @public
|
|
363
363
|
*/
|
|
364
|
-
apiId?: string;
|
|
364
|
+
apiId?: string | undefined;
|
|
365
365
|
/**
|
|
366
366
|
* <p>Identifies the status of an association.</p>
|
|
367
367
|
* <ul>
|
|
@@ -383,12 +383,12 @@ export interface ApiAssociation {
|
|
|
383
383
|
* </ul>
|
|
384
384
|
* @public
|
|
385
385
|
*/
|
|
386
|
-
associationStatus?: AssociationStatus;
|
|
386
|
+
associationStatus?: AssociationStatus | undefined;
|
|
387
387
|
/**
|
|
388
388
|
* <p>Details about the last deployment status.</p>
|
|
389
389
|
* @public
|
|
390
390
|
*/
|
|
391
|
-
deploymentDetail?: string;
|
|
391
|
+
deploymentDetail?: string | undefined;
|
|
392
392
|
}
|
|
393
393
|
/**
|
|
394
394
|
* @public
|
|
@@ -464,7 +464,7 @@ export interface ApiCache {
|
|
|
464
464
|
* <p>Valid values are 1–3,600 seconds.</p>
|
|
465
465
|
* @public
|
|
466
466
|
*/
|
|
467
|
-
ttl?: number;
|
|
467
|
+
ttl?: number | undefined;
|
|
468
468
|
/**
|
|
469
469
|
* <p>Caching behavior.</p>
|
|
470
470
|
* <ul>
|
|
@@ -481,18 +481,18 @@ export interface ApiCache {
|
|
|
481
481
|
* </ul>
|
|
482
482
|
* @public
|
|
483
483
|
*/
|
|
484
|
-
apiCachingBehavior?: ApiCachingBehavior;
|
|
484
|
+
apiCachingBehavior?: ApiCachingBehavior | undefined;
|
|
485
485
|
/**
|
|
486
486
|
* <p>Transit encryption flag when connecting to cache. You cannot update this setting after
|
|
487
487
|
* creation.</p>
|
|
488
488
|
* @public
|
|
489
489
|
*/
|
|
490
|
-
transitEncryptionEnabled?: boolean;
|
|
490
|
+
transitEncryptionEnabled?: boolean | undefined;
|
|
491
491
|
/**
|
|
492
492
|
* <p>At-rest encryption flag for cache. You cannot update this setting after creation.</p>
|
|
493
493
|
* @public
|
|
494
494
|
*/
|
|
495
|
-
atRestEncryptionEnabled?: boolean;
|
|
495
|
+
atRestEncryptionEnabled?: boolean | undefined;
|
|
496
496
|
/**
|
|
497
497
|
* <p>The cache instance type. Valid values are </p>
|
|
498
498
|
* <ul>
|
|
@@ -570,7 +570,7 @@ export interface ApiCache {
|
|
|
570
570
|
* </ul>
|
|
571
571
|
* @public
|
|
572
572
|
*/
|
|
573
|
-
type?: ApiCacheType;
|
|
573
|
+
type?: ApiCacheType | undefined;
|
|
574
574
|
/**
|
|
575
575
|
* <p>The cache instance status.</p>
|
|
576
576
|
* <ul>
|
|
@@ -602,7 +602,7 @@ export interface ApiCache {
|
|
|
602
602
|
* </ul>
|
|
603
603
|
* @public
|
|
604
604
|
*/
|
|
605
|
-
status?: ApiCacheStatus;
|
|
605
|
+
status?: ApiCacheStatus | undefined;
|
|
606
606
|
/**
|
|
607
607
|
* <p>Controls how cache health metrics will be emitted to CloudWatch. Cache health metrics
|
|
608
608
|
* include:</p>
|
|
@@ -622,7 +622,7 @@ export interface ApiCache {
|
|
|
622
622
|
* <code>DISABLED</code>.</p>
|
|
623
623
|
* @public
|
|
624
624
|
*/
|
|
625
|
-
healthMetricsConfig?: CacheHealthMetricsConfig;
|
|
625
|
+
healthMetricsConfig?: CacheHealthMetricsConfig | undefined;
|
|
626
626
|
}
|
|
627
627
|
/**
|
|
628
628
|
* <p>Describes an API key.</p>
|
|
@@ -700,24 +700,24 @@ export interface ApiKey {
|
|
|
700
700
|
* <p>The API key ID.</p>
|
|
701
701
|
* @public
|
|
702
702
|
*/
|
|
703
|
-
id?: string;
|
|
703
|
+
id?: string | undefined;
|
|
704
704
|
/**
|
|
705
705
|
* <p>A description of the purpose of the API key.</p>
|
|
706
706
|
* @public
|
|
707
707
|
*/
|
|
708
|
-
description?: string;
|
|
708
|
+
description?: string | undefined;
|
|
709
709
|
/**
|
|
710
710
|
* <p>The time after which the API key expires. The date is represented as seconds since the
|
|
711
711
|
* epoch, rounded down to the nearest hour.</p>
|
|
712
712
|
* @public
|
|
713
713
|
*/
|
|
714
|
-
expires?: number;
|
|
714
|
+
expires?: number | undefined;
|
|
715
715
|
/**
|
|
716
716
|
* <p>The time after which the API key is deleted. The date is represented as seconds since
|
|
717
717
|
* the epoch, rounded down to the nearest hour.</p>
|
|
718
718
|
* @public
|
|
719
719
|
*/
|
|
720
|
-
deletes?: number;
|
|
720
|
+
deletes?: number | undefined;
|
|
721
721
|
}
|
|
722
722
|
/**
|
|
723
723
|
* <p>The API key exceeded a limit. Try your request again.</p>
|
|
@@ -809,7 +809,7 @@ export interface AssociateApiResponse {
|
|
|
809
809
|
* <p>The <code>ApiAssociation</code> object.</p>
|
|
810
810
|
* @public
|
|
811
811
|
*/
|
|
812
|
-
apiAssociation?: ApiAssociation;
|
|
812
|
+
apiAssociation?: ApiAssociation | undefined;
|
|
813
813
|
}
|
|
814
814
|
/**
|
|
815
815
|
* <p>Describes the location of the error in a code sample.</p>
|
|
@@ -820,17 +820,17 @@ export interface CodeErrorLocation {
|
|
|
820
820
|
* <p>The line number in the code. Defaults to <code>0</code> if unknown.</p>
|
|
821
821
|
* @public
|
|
822
822
|
*/
|
|
823
|
-
line?: number;
|
|
823
|
+
line?: number | undefined;
|
|
824
824
|
/**
|
|
825
825
|
* <p>The column number in the code. Defaults to <code>0</code> if unknown.</p>
|
|
826
826
|
* @public
|
|
827
827
|
*/
|
|
828
|
-
column?: number;
|
|
828
|
+
column?: number | undefined;
|
|
829
829
|
/**
|
|
830
830
|
* <p>The span/length of the error. Defaults to <code>-1</code> if unknown.</p>
|
|
831
831
|
* @public
|
|
832
832
|
*/
|
|
833
|
-
span?: number;
|
|
833
|
+
span?: number | undefined;
|
|
834
834
|
}
|
|
835
835
|
/**
|
|
836
836
|
* <p>Describes an AppSync error.</p>
|
|
@@ -843,19 +843,19 @@ export interface CodeError {
|
|
|
843
843
|
* <code>PARSER_ERROR</code>.</p>
|
|
844
844
|
* @public
|
|
845
845
|
*/
|
|
846
|
-
errorType?: string;
|
|
846
|
+
errorType?: string | undefined;
|
|
847
847
|
/**
|
|
848
848
|
* <p>A user presentable error.</p>
|
|
849
849
|
* <p>Examples include, but aren't limited to: <code>Parsing error: Unterminated string
|
|
850
850
|
* literal</code>.</p>
|
|
851
851
|
* @public
|
|
852
852
|
*/
|
|
853
|
-
value?: string;
|
|
853
|
+
value?: string | undefined;
|
|
854
854
|
/**
|
|
855
855
|
* <p>The line, column, and span location of the error in the code.</p>
|
|
856
856
|
* @public
|
|
857
857
|
*/
|
|
858
|
-
location?: CodeErrorLocation;
|
|
858
|
+
location?: CodeErrorLocation | undefined;
|
|
859
859
|
}
|
|
860
860
|
/**
|
|
861
861
|
* <p>Provides further details for the reason behind the bad request. For reason type
|
|
@@ -867,7 +867,7 @@ export interface BadRequestDetail {
|
|
|
867
867
|
* <p>Contains the list of errors in the request.</p>
|
|
868
868
|
* @public
|
|
869
869
|
*/
|
|
870
|
-
codeErrors?: CodeError[];
|
|
870
|
+
codeErrors?: CodeError[] | undefined;
|
|
871
871
|
}
|
|
872
872
|
/**
|
|
873
873
|
* @public
|
|
@@ -893,13 +893,13 @@ export declare class BadRequestException extends __BaseException {
|
|
|
893
893
|
* <code>CODE_ERROR</code>.</p>
|
|
894
894
|
* @public
|
|
895
895
|
*/
|
|
896
|
-
reason?: BadRequestReason;
|
|
896
|
+
reason?: BadRequestReason | undefined;
|
|
897
897
|
/**
|
|
898
898
|
* <p>Provides further details for the reason behind the bad request. For reason type
|
|
899
899
|
* <code>CODE_ERROR</code>, the detail will contain a list of code errors.</p>
|
|
900
900
|
* @public
|
|
901
901
|
*/
|
|
902
|
-
detail?: BadRequestDetail;
|
|
902
|
+
detail?: BadRequestDetail | undefined;
|
|
903
903
|
/**
|
|
904
904
|
* @internal
|
|
905
905
|
*/
|
|
@@ -958,7 +958,7 @@ export interface SourceApiAssociationConfig {
|
|
|
958
958
|
* operations.</p>
|
|
959
959
|
* @public
|
|
960
960
|
*/
|
|
961
|
-
mergeType?: MergeType;
|
|
961
|
+
mergeType?: MergeType | undefined;
|
|
962
962
|
}
|
|
963
963
|
/**
|
|
964
964
|
* @public
|
|
@@ -984,12 +984,12 @@ export interface AssociateMergedGraphqlApiRequest {
|
|
|
984
984
|
* <p>The description field.</p>
|
|
985
985
|
* @public
|
|
986
986
|
*/
|
|
987
|
-
description?: string;
|
|
987
|
+
description?: string | undefined;
|
|
988
988
|
/**
|
|
989
989
|
* <p>The <code>SourceApiAssociationConfig</code> object data.</p>
|
|
990
990
|
* @public
|
|
991
991
|
*/
|
|
992
|
-
sourceApiAssociationConfig?: SourceApiAssociationConfig;
|
|
992
|
+
sourceApiAssociationConfig?: SourceApiAssociationConfig | undefined;
|
|
993
993
|
}
|
|
994
994
|
/**
|
|
995
995
|
* @public
|
|
@@ -1023,58 +1023,58 @@ export interface SourceApiAssociation {
|
|
|
1023
1023
|
* <p>The ID generated by the AppSync service for the source API association.</p>
|
|
1024
1024
|
* @public
|
|
1025
1025
|
*/
|
|
1026
|
-
associationId?: string;
|
|
1026
|
+
associationId?: string | undefined;
|
|
1027
1027
|
/**
|
|
1028
1028
|
* <p>The Amazon Resource Name (ARN) of the source API association.</p>
|
|
1029
1029
|
* @public
|
|
1030
1030
|
*/
|
|
1031
|
-
associationArn?: string;
|
|
1031
|
+
associationArn?: string | undefined;
|
|
1032
1032
|
/**
|
|
1033
1033
|
* <p>The ID of the AppSync source API.</p>
|
|
1034
1034
|
* @public
|
|
1035
1035
|
*/
|
|
1036
|
-
sourceApiId?: string;
|
|
1036
|
+
sourceApiId?: string | undefined;
|
|
1037
1037
|
/**
|
|
1038
1038
|
* <p>The Amazon Resource Name (ARN) of the AppSync source API.</p>
|
|
1039
1039
|
* @public
|
|
1040
1040
|
*/
|
|
1041
|
-
sourceApiArn?: string;
|
|
1041
|
+
sourceApiArn?: string | undefined;
|
|
1042
1042
|
/**
|
|
1043
1043
|
* <p>The Amazon Resource Name (ARN) of the AppSync Merged API.</p>
|
|
1044
1044
|
* @public
|
|
1045
1045
|
*/
|
|
1046
|
-
mergedApiArn?: string;
|
|
1046
|
+
mergedApiArn?: string | undefined;
|
|
1047
1047
|
/**
|
|
1048
1048
|
* <p>The ID of the AppSync Merged API.</p>
|
|
1049
1049
|
* @public
|
|
1050
1050
|
*/
|
|
1051
|
-
mergedApiId?: string;
|
|
1051
|
+
mergedApiId?: string | undefined;
|
|
1052
1052
|
/**
|
|
1053
1053
|
* <p>The description field.</p>
|
|
1054
1054
|
* @public
|
|
1055
1055
|
*/
|
|
1056
|
-
description?: string;
|
|
1056
|
+
description?: string | undefined;
|
|
1057
1057
|
/**
|
|
1058
1058
|
* <p>The <code>SourceApiAssociationConfig</code> object data.</p>
|
|
1059
1059
|
* @public
|
|
1060
1060
|
*/
|
|
1061
|
-
sourceApiAssociationConfig?: SourceApiAssociationConfig;
|
|
1061
|
+
sourceApiAssociationConfig?: SourceApiAssociationConfig | undefined;
|
|
1062
1062
|
/**
|
|
1063
1063
|
* <p>The state of the source API association.</p>
|
|
1064
1064
|
* @public
|
|
1065
1065
|
*/
|
|
1066
|
-
sourceApiAssociationStatus?: SourceApiAssociationStatus;
|
|
1066
|
+
sourceApiAssociationStatus?: SourceApiAssociationStatus | undefined;
|
|
1067
1067
|
/**
|
|
1068
1068
|
* <p>The detailed message related to the current state of the source API association.</p>
|
|
1069
1069
|
* @public
|
|
1070
1070
|
*/
|
|
1071
|
-
sourceApiAssociationStatusDetail?: string;
|
|
1071
|
+
sourceApiAssociationStatusDetail?: string | undefined;
|
|
1072
1072
|
/**
|
|
1073
1073
|
* <p>The datetime value of the last successful merge of the source API association. The
|
|
1074
1074
|
* result will be in UTC format and your local time zone.</p>
|
|
1075
1075
|
* @public
|
|
1076
1076
|
*/
|
|
1077
|
-
lastSuccessfulMergeDate?: Date;
|
|
1077
|
+
lastSuccessfulMergeDate?: Date | undefined;
|
|
1078
1078
|
}
|
|
1079
1079
|
/**
|
|
1080
1080
|
* @public
|
|
@@ -1084,7 +1084,7 @@ export interface AssociateMergedGraphqlApiResponse {
|
|
|
1084
1084
|
* <p>The <code>SourceApiAssociation</code> object data.</p>
|
|
1085
1085
|
* @public
|
|
1086
1086
|
*/
|
|
1087
|
-
sourceApiAssociation?: SourceApiAssociation;
|
|
1087
|
+
sourceApiAssociation?: SourceApiAssociation | undefined;
|
|
1088
1088
|
}
|
|
1089
1089
|
/**
|
|
1090
1090
|
* <p>Another modification is in progress at this time and it must complete before you can
|
|
@@ -1147,12 +1147,12 @@ export interface AssociateSourceGraphqlApiRequest {
|
|
|
1147
1147
|
* <p>The description field.</p>
|
|
1148
1148
|
* @public
|
|
1149
1149
|
*/
|
|
1150
|
-
description?: string;
|
|
1150
|
+
description?: string | undefined;
|
|
1151
1151
|
/**
|
|
1152
1152
|
* <p>The <code>SourceApiAssociationConfig</code> object data.</p>
|
|
1153
1153
|
* @public
|
|
1154
1154
|
*/
|
|
1155
|
-
sourceApiAssociationConfig?: SourceApiAssociationConfig;
|
|
1155
|
+
sourceApiAssociationConfig?: SourceApiAssociationConfig | undefined;
|
|
1156
1156
|
}
|
|
1157
1157
|
/**
|
|
1158
1158
|
* @public
|
|
@@ -1162,7 +1162,7 @@ export interface AssociateSourceGraphqlApiResponse {
|
|
|
1162
1162
|
* <p>The <code>SourceApiAssociation</code> object data.</p>
|
|
1163
1163
|
* @public
|
|
1164
1164
|
*/
|
|
1165
|
-
sourceApiAssociation?: SourceApiAssociation;
|
|
1165
|
+
sourceApiAssociation?: SourceApiAssociation | undefined;
|
|
1166
1166
|
}
|
|
1167
1167
|
/**
|
|
1168
1168
|
* @public
|
|
@@ -1184,12 +1184,12 @@ export interface AwsIamConfig {
|
|
|
1184
1184
|
* <p>The signing Amazon Web Services Region for IAM authorization.</p>
|
|
1185
1185
|
* @public
|
|
1186
1186
|
*/
|
|
1187
|
-
signingRegion?: string;
|
|
1187
|
+
signingRegion?: string | undefined;
|
|
1188
1188
|
/**
|
|
1189
1189
|
* <p>The signing service name for IAM authorization.</p>
|
|
1190
1190
|
* @public
|
|
1191
1191
|
*/
|
|
1192
|
-
signingServiceName?: string;
|
|
1192
|
+
signingServiceName?: string | undefined;
|
|
1193
1193
|
}
|
|
1194
1194
|
/**
|
|
1195
1195
|
* <p>The authorization configuration in case the HTTP endpoint requires authorization.</p>
|
|
@@ -1212,7 +1212,7 @@ export interface AuthorizationConfig {
|
|
|
1212
1212
|
* <p>The Identity and Access Management (IAM) settings.</p>
|
|
1213
1213
|
* @public
|
|
1214
1214
|
*/
|
|
1215
|
-
awsIamConfig?: AwsIamConfig;
|
|
1215
|
+
awsIamConfig?: AwsIamConfig | undefined;
|
|
1216
1216
|
}
|
|
1217
1217
|
/**
|
|
1218
1218
|
* @public
|
|
@@ -1227,19 +1227,19 @@ export interface CreateApiRequest {
|
|
|
1227
1227
|
* <p>The owner contact information for the <code>Api</code>.</p>
|
|
1228
1228
|
* @public
|
|
1229
1229
|
*/
|
|
1230
|
-
ownerContact?: string;
|
|
1230
|
+
ownerContact?: string | undefined;
|
|
1231
1231
|
/**
|
|
1232
1232
|
* <p>A map with keys of <code>TagKey</code> objects and values of <code>TagValue</code>
|
|
1233
1233
|
* objects.</p>
|
|
1234
1234
|
* @public
|
|
1235
1235
|
*/
|
|
1236
|
-
tags?: Record<string, string
|
|
1236
|
+
tags?: Record<string, string> | undefined;
|
|
1237
1237
|
/**
|
|
1238
1238
|
* <p>The Event API configuration. This includes the default authorization configuration for
|
|
1239
1239
|
* connecting, publishing, and subscribing to an Event API.</p>
|
|
1240
1240
|
* @public
|
|
1241
1241
|
*/
|
|
1242
|
-
eventConfig?: EventConfig;
|
|
1242
|
+
eventConfig?: EventConfig | undefined;
|
|
1243
1243
|
}
|
|
1244
1244
|
/**
|
|
1245
1245
|
* @public
|
|
@@ -1249,7 +1249,7 @@ export interface CreateApiResponse {
|
|
|
1249
1249
|
* <p>The <code>Api</code> object.</p>
|
|
1250
1250
|
* @public
|
|
1251
1251
|
*/
|
|
1252
|
-
api?: Api;
|
|
1252
|
+
api?: Api | undefined;
|
|
1253
1253
|
}
|
|
1254
1254
|
/**
|
|
1255
1255
|
* <p>The operation exceeded the service quota for this resource.</p>
|
|
@@ -1284,12 +1284,12 @@ export interface CreateApiCacheRequest {
|
|
|
1284
1284
|
* creation.</p>
|
|
1285
1285
|
* @public
|
|
1286
1286
|
*/
|
|
1287
|
-
transitEncryptionEnabled?: boolean;
|
|
1287
|
+
transitEncryptionEnabled?: boolean | undefined;
|
|
1288
1288
|
/**
|
|
1289
1289
|
* <p>At-rest encryption flag for cache. You cannot update this setting after creation.</p>
|
|
1290
1290
|
* @public
|
|
1291
1291
|
*/
|
|
1292
|
-
atRestEncryptionEnabled?: boolean;
|
|
1292
|
+
atRestEncryptionEnabled?: boolean | undefined;
|
|
1293
1293
|
/**
|
|
1294
1294
|
* <p>Caching behavior.</p>
|
|
1295
1295
|
* <ul>
|
|
@@ -1404,7 +1404,7 @@ export interface CreateApiCacheRequest {
|
|
|
1404
1404
|
* <code>DISABLED</code>.</p>
|
|
1405
1405
|
* @public
|
|
1406
1406
|
*/
|
|
1407
|
-
healthMetricsConfig?: CacheHealthMetricsConfig;
|
|
1407
|
+
healthMetricsConfig?: CacheHealthMetricsConfig | undefined;
|
|
1408
1408
|
}
|
|
1409
1409
|
/**
|
|
1410
1410
|
* <p>Represents the output of a <code>CreateApiCache</code> operation.</p>
|
|
@@ -1415,7 +1415,7 @@ export interface CreateApiCacheResponse {
|
|
|
1415
1415
|
* <p>The <code>ApiCache</code> object.</p>
|
|
1416
1416
|
* @public
|
|
1417
1417
|
*/
|
|
1418
|
-
apiCache?: ApiCache;
|
|
1418
|
+
apiCache?: ApiCache | undefined;
|
|
1419
1419
|
}
|
|
1420
1420
|
/**
|
|
1421
1421
|
* @public
|
|
@@ -1430,14 +1430,14 @@ export interface CreateApiKeyRequest {
|
|
|
1430
1430
|
* <p>A description of the purpose of the API key.</p>
|
|
1431
1431
|
* @public
|
|
1432
1432
|
*/
|
|
1433
|
-
description?: string;
|
|
1433
|
+
description?: string | undefined;
|
|
1434
1434
|
/**
|
|
1435
1435
|
* <p>From the creation time, the time after which the API key expires. The date is
|
|
1436
1436
|
* represented as seconds since the epoch, rounded down to the nearest hour. The default value
|
|
1437
1437
|
* for this parameter is 7 days from creation time. For more information, see .</p>
|
|
1438
1438
|
* @public
|
|
1439
1439
|
*/
|
|
1440
|
-
expires?: number;
|
|
1440
|
+
expires?: number | undefined;
|
|
1441
1441
|
}
|
|
1442
1442
|
/**
|
|
1443
1443
|
* @public
|
|
@@ -1447,7 +1447,7 @@ export interface CreateApiKeyResponse {
|
|
|
1447
1447
|
* <p>The API key.</p>
|
|
1448
1448
|
* @public
|
|
1449
1449
|
*/
|
|
1450
|
-
apiKey?: ApiKey;
|
|
1450
|
+
apiKey?: ApiKey | undefined;
|
|
1451
1451
|
}
|
|
1452
1452
|
/**
|
|
1453
1453
|
* <p>A conflict with a previous successful update is detected. This typically
|
|
@@ -1485,25 +1485,25 @@ export interface CreateChannelNamespaceRequest {
|
|
|
1485
1485
|
* configuration overrides the default <code>Api</code> authorization configuration.</p>
|
|
1486
1486
|
* @public
|
|
1487
1487
|
*/
|
|
1488
|
-
subscribeAuthModes?: AuthMode[];
|
|
1488
|
+
subscribeAuthModes?: AuthMode[] | undefined;
|
|
1489
1489
|
/**
|
|
1490
1490
|
* <p>The authorization mode to use for publishing messages on the channel namespace. This
|
|
1491
1491
|
* configuration overrides the default <code>Api</code> authorization configuration.</p>
|
|
1492
1492
|
* @public
|
|
1493
1493
|
*/
|
|
1494
|
-
publishAuthModes?: AuthMode[];
|
|
1494
|
+
publishAuthModes?: AuthMode[] | undefined;
|
|
1495
1495
|
/**
|
|
1496
1496
|
* <p>The event handler functions that run custom business logic to process published events
|
|
1497
1497
|
* and subscribe requests.</p>
|
|
1498
1498
|
* @public
|
|
1499
1499
|
*/
|
|
1500
|
-
codeHandlers?: string;
|
|
1500
|
+
codeHandlers?: string | undefined;
|
|
1501
1501
|
/**
|
|
1502
1502
|
* <p>A map with keys of <code>TagKey</code> objects and values of <code>TagValue</code>
|
|
1503
1503
|
* objects.</p>
|
|
1504
1504
|
* @public
|
|
1505
1505
|
*/
|
|
1506
|
-
tags?: Record<string, string
|
|
1506
|
+
tags?: Record<string, string> | undefined;
|
|
1507
1507
|
}
|
|
1508
1508
|
/**
|
|
1509
1509
|
* <p>Describes a channel namespace associated with an <code>Api</code>. The <code>ChannelNamespace</code> contains the definitions for code handlers for the <code>Api</code>.</p>
|
|
@@ -1514,52 +1514,52 @@ export interface ChannelNamespace {
|
|
|
1514
1514
|
* <p>The <code>Api</code> ID.</p>
|
|
1515
1515
|
* @public
|
|
1516
1516
|
*/
|
|
1517
|
-
apiId?: string;
|
|
1517
|
+
apiId?: string | undefined;
|
|
1518
1518
|
/**
|
|
1519
1519
|
* <p>The name of the channel namespace. This name must be unique within the
|
|
1520
1520
|
* <code>Api</code>.</p>
|
|
1521
1521
|
* @public
|
|
1522
1522
|
*/
|
|
1523
|
-
name?: string;
|
|
1523
|
+
name?: string | undefined;
|
|
1524
1524
|
/**
|
|
1525
1525
|
* <p>The authorization mode to use for subscribing to messages on the channel namespace. This
|
|
1526
1526
|
* configuration overrides the default <code>Api</code>authorization configuration.</p>
|
|
1527
1527
|
* @public
|
|
1528
1528
|
*/
|
|
1529
|
-
subscribeAuthModes?: AuthMode[];
|
|
1529
|
+
subscribeAuthModes?: AuthMode[] | undefined;
|
|
1530
1530
|
/**
|
|
1531
1531
|
* <p>The authorization mode to use for publishing messages on the channel namespace. This
|
|
1532
1532
|
* configuration overrides the default <code>Api</code>authorization configuration.</p>
|
|
1533
1533
|
* @public
|
|
1534
1534
|
*/
|
|
1535
|
-
publishAuthModes?: AuthMode[];
|
|
1535
|
+
publishAuthModes?: AuthMode[] | undefined;
|
|
1536
1536
|
/**
|
|
1537
1537
|
* <p>The event handler functions that run custom business logic to process published events
|
|
1538
1538
|
* and subscribe requests.</p>
|
|
1539
1539
|
* @public
|
|
1540
1540
|
*/
|
|
1541
|
-
codeHandlers?: string;
|
|
1541
|
+
codeHandlers?: string | undefined;
|
|
1542
1542
|
/**
|
|
1543
1543
|
* <p>A map with keys of <code>TagKey</code> objects and values of <code>TagValue</code>
|
|
1544
1544
|
* objects.</p>
|
|
1545
1545
|
* @public
|
|
1546
1546
|
*/
|
|
1547
|
-
tags?: Record<string, string
|
|
1547
|
+
tags?: Record<string, string> | undefined;
|
|
1548
1548
|
/**
|
|
1549
1549
|
* <p>The Amazon Resource Name (ARN) for the <code>ChannelNamespace</code>.</p>
|
|
1550
1550
|
* @public
|
|
1551
1551
|
*/
|
|
1552
|
-
channelNamespaceArn?: string;
|
|
1552
|
+
channelNamespaceArn?: string | undefined;
|
|
1553
1553
|
/**
|
|
1554
1554
|
* <p>The date and time that the <code>ChannelNamespace</code> was created.</p>
|
|
1555
1555
|
* @public
|
|
1556
1556
|
*/
|
|
1557
|
-
created?: Date;
|
|
1557
|
+
created?: Date | undefined;
|
|
1558
1558
|
/**
|
|
1559
1559
|
* <p>The date and time that the <code>ChannelNamespace</code> was last changed.</p>
|
|
1560
1560
|
* @public
|
|
1561
1561
|
*/
|
|
1562
|
-
lastModified?: Date;
|
|
1562
|
+
lastModified?: Date | undefined;
|
|
1563
1563
|
}
|
|
1564
1564
|
/**
|
|
1565
1565
|
* @public
|
|
@@ -1569,7 +1569,7 @@ export interface CreateChannelNamespaceResponse {
|
|
|
1569
1569
|
* <p>The <code>ChannelNamespace</code> object.</p>
|
|
1570
1570
|
* @public
|
|
1571
1571
|
*/
|
|
1572
|
-
channelNamespace?: ChannelNamespace;
|
|
1572
|
+
channelNamespace?: ChannelNamespace | undefined;
|
|
1573
1573
|
}
|
|
1574
1574
|
/**
|
|
1575
1575
|
* <p>Describes a Delta Sync configuration.</p>
|
|
@@ -1580,18 +1580,18 @@ export interface DeltaSyncConfig {
|
|
|
1580
1580
|
* <p>The number of minutes that an Item is stored in the data source.</p>
|
|
1581
1581
|
* @public
|
|
1582
1582
|
*/
|
|
1583
|
-
baseTableTTL?: number;
|
|
1583
|
+
baseTableTTL?: number | undefined;
|
|
1584
1584
|
/**
|
|
1585
1585
|
* <p>The Delta Sync table name.</p>
|
|
1586
1586
|
* @public
|
|
1587
1587
|
*/
|
|
1588
|
-
deltaSyncTableName?: string;
|
|
1588
|
+
deltaSyncTableName?: string | undefined;
|
|
1589
1589
|
/**
|
|
1590
1590
|
* <p>The number of minutes that a Delta Sync log entry is stored in the Delta Sync
|
|
1591
1591
|
* table.</p>
|
|
1592
1592
|
* @public
|
|
1593
1593
|
*/
|
|
1594
|
-
deltaSyncTableTTL?: number;
|
|
1594
|
+
deltaSyncTableTTL?: number | undefined;
|
|
1595
1595
|
}
|
|
1596
1596
|
/**
|
|
1597
1597
|
* <p>Describes an Amazon DynamoDB data source configuration.</p>
|
|
@@ -1612,17 +1612,17 @@ export interface DynamodbDataSourceConfig {
|
|
|
1612
1612
|
* <p>Set to TRUE to use Amazon Cognito credentials with this data source.</p>
|
|
1613
1613
|
* @public
|
|
1614
1614
|
*/
|
|
1615
|
-
useCallerCredentials?: boolean;
|
|
1615
|
+
useCallerCredentials?: boolean | undefined;
|
|
1616
1616
|
/**
|
|
1617
1617
|
* <p>The <code>DeltaSyncConfig</code> for a versioned data source.</p>
|
|
1618
1618
|
* @public
|
|
1619
1619
|
*/
|
|
1620
|
-
deltaSyncConfig?: DeltaSyncConfig;
|
|
1620
|
+
deltaSyncConfig?: DeltaSyncConfig | undefined;
|
|
1621
1621
|
/**
|
|
1622
1622
|
* <p>Set to TRUE to use Conflict Detection and Resolution with this data source.</p>
|
|
1623
1623
|
* @public
|
|
1624
1624
|
*/
|
|
1625
|
-
versioned?: boolean;
|
|
1625
|
+
versioned?: boolean | undefined;
|
|
1626
1626
|
}
|
|
1627
1627
|
/**
|
|
1628
1628
|
* <p>Describes an OpenSearch data source configuration.</p>
|
|
@@ -1667,12 +1667,12 @@ export interface HttpDataSourceConfig {
|
|
|
1667
1667
|
* HTTPS endpoints.</p>
|
|
1668
1668
|
* @public
|
|
1669
1669
|
*/
|
|
1670
|
-
endpoint?: string;
|
|
1670
|
+
endpoint?: string | undefined;
|
|
1671
1671
|
/**
|
|
1672
1672
|
* <p>The authorization configuration in case the HTTP endpoint requires authorization.</p>
|
|
1673
1673
|
* @public
|
|
1674
1674
|
*/
|
|
1675
|
-
authorizationConfig?: AuthorizationConfig;
|
|
1675
|
+
authorizationConfig?: AuthorizationConfig | undefined;
|
|
1676
1676
|
}
|
|
1677
1677
|
/**
|
|
1678
1678
|
* <p>Describes an Lambda data source configuration.</p>
|
|
@@ -1722,28 +1722,28 @@ export interface RdsHttpEndpointConfig {
|
|
|
1722
1722
|
* <p>Amazon Web Services Region for Amazon RDS HTTP endpoint.</p>
|
|
1723
1723
|
* @public
|
|
1724
1724
|
*/
|
|
1725
|
-
awsRegion?: string;
|
|
1725
|
+
awsRegion?: string | undefined;
|
|
1726
1726
|
/**
|
|
1727
1727
|
* <p>Amazon RDS cluster Amazon Resource Name (ARN).</p>
|
|
1728
1728
|
* @public
|
|
1729
1729
|
*/
|
|
1730
|
-
dbClusterIdentifier?: string;
|
|
1730
|
+
dbClusterIdentifier?: string | undefined;
|
|
1731
1731
|
/**
|
|
1732
1732
|
* <p>Logical database name.</p>
|
|
1733
1733
|
* @public
|
|
1734
1734
|
*/
|
|
1735
|
-
databaseName?: string;
|
|
1735
|
+
databaseName?: string | undefined;
|
|
1736
1736
|
/**
|
|
1737
1737
|
* <p>Logical schema name.</p>
|
|
1738
1738
|
* @public
|
|
1739
1739
|
*/
|
|
1740
|
-
schema?: string;
|
|
1740
|
+
schema?: string | undefined;
|
|
1741
1741
|
/**
|
|
1742
1742
|
* <p>Amazon Web Services secret store Amazon Resource Name (ARN) for database
|
|
1743
1743
|
* credentials.</p>
|
|
1744
1744
|
* @public
|
|
1745
1745
|
*/
|
|
1746
|
-
awsSecretStoreArn?: string;
|
|
1746
|
+
awsSecretStoreArn?: string | undefined;
|
|
1747
1747
|
}
|
|
1748
1748
|
/**
|
|
1749
1749
|
* @public
|
|
@@ -1773,12 +1773,12 @@ export interface RelationalDatabaseDataSourceConfig {
|
|
|
1773
1773
|
* </ul>
|
|
1774
1774
|
* @public
|
|
1775
1775
|
*/
|
|
1776
|
-
relationalDatabaseSourceType?: RelationalDatabaseSourceType;
|
|
1776
|
+
relationalDatabaseSourceType?: RelationalDatabaseSourceType | undefined;
|
|
1777
1777
|
/**
|
|
1778
1778
|
* <p>Amazon RDS HTTP endpoint settings.</p>
|
|
1779
1779
|
* @public
|
|
1780
1780
|
*/
|
|
1781
|
-
rdsHttpEndpointConfig?: RdsHttpEndpointConfig;
|
|
1781
|
+
rdsHttpEndpointConfig?: RdsHttpEndpointConfig | undefined;
|
|
1782
1782
|
}
|
|
1783
1783
|
/**
|
|
1784
1784
|
* @public
|
|
@@ -1816,7 +1816,7 @@ export interface CreateDataSourceRequest {
|
|
|
1816
1816
|
* <p>A description of the <code>DataSource</code>.</p>
|
|
1817
1817
|
* @public
|
|
1818
1818
|
*/
|
|
1819
|
-
description?: string;
|
|
1819
|
+
description?: string | undefined;
|
|
1820
1820
|
/**
|
|
1821
1821
|
* <p>The type of the <code>DataSource</code>.</p>
|
|
1822
1822
|
* @public
|
|
@@ -1827,44 +1827,44 @@ export interface CreateDataSourceRequest {
|
|
|
1827
1827
|
* for the data source. The system assumes this role when accessing the data source.</p>
|
|
1828
1828
|
* @public
|
|
1829
1829
|
*/
|
|
1830
|
-
serviceRoleArn?: string;
|
|
1830
|
+
serviceRoleArn?: string | undefined;
|
|
1831
1831
|
/**
|
|
1832
1832
|
* <p>Amazon DynamoDB settings.</p>
|
|
1833
1833
|
* @public
|
|
1834
1834
|
*/
|
|
1835
|
-
dynamodbConfig?: DynamodbDataSourceConfig;
|
|
1835
|
+
dynamodbConfig?: DynamodbDataSourceConfig | undefined;
|
|
1836
1836
|
/**
|
|
1837
1837
|
* <p>Lambda settings.</p>
|
|
1838
1838
|
* @public
|
|
1839
1839
|
*/
|
|
1840
|
-
lambdaConfig?: LambdaDataSourceConfig;
|
|
1840
|
+
lambdaConfig?: LambdaDataSourceConfig | undefined;
|
|
1841
1841
|
/**
|
|
1842
1842
|
* <p>Amazon OpenSearch Service settings.</p>
|
|
1843
1843
|
* <p>As of September 2021, Amazon Elasticsearch service is Amazon OpenSearch Service. This
|
|
1844
1844
|
* configuration is deprecated. For new data sources, use <a>CreateDataSourceRequest$openSearchServiceConfig</a> to create an OpenSearch data source.</p>
|
|
1845
1845
|
* @public
|
|
1846
1846
|
*/
|
|
1847
|
-
elasticsearchConfig?: ElasticsearchDataSourceConfig;
|
|
1847
|
+
elasticsearchConfig?: ElasticsearchDataSourceConfig | undefined;
|
|
1848
1848
|
/**
|
|
1849
1849
|
* <p>Amazon OpenSearch Service settings.</p>
|
|
1850
1850
|
* @public
|
|
1851
1851
|
*/
|
|
1852
|
-
openSearchServiceConfig?: OpenSearchServiceDataSourceConfig;
|
|
1852
|
+
openSearchServiceConfig?: OpenSearchServiceDataSourceConfig | undefined;
|
|
1853
1853
|
/**
|
|
1854
1854
|
* <p>HTTP endpoint settings.</p>
|
|
1855
1855
|
* @public
|
|
1856
1856
|
*/
|
|
1857
|
-
httpConfig?: HttpDataSourceConfig;
|
|
1857
|
+
httpConfig?: HttpDataSourceConfig | undefined;
|
|
1858
1858
|
/**
|
|
1859
1859
|
* <p>Relational database settings.</p>
|
|
1860
1860
|
* @public
|
|
1861
1861
|
*/
|
|
1862
|
-
relationalDatabaseConfig?: RelationalDatabaseDataSourceConfig;
|
|
1862
|
+
relationalDatabaseConfig?: RelationalDatabaseDataSourceConfig | undefined;
|
|
1863
1863
|
/**
|
|
1864
1864
|
* <p>Amazon EventBridge settings.</p>
|
|
1865
1865
|
* @public
|
|
1866
1866
|
*/
|
|
1867
|
-
eventBridgeConfig?: EventBridgeDataSourceConfig;
|
|
1867
|
+
eventBridgeConfig?: EventBridgeDataSourceConfig | undefined;
|
|
1868
1868
|
/**
|
|
1869
1869
|
* <p>Enables or disables enhanced data source metrics for specified data sources. Note that
|
|
1870
1870
|
* <code>metricsConfig</code> won't be used unless the
|
|
@@ -1876,7 +1876,7 @@ export interface CreateDataSourceRequest {
|
|
|
1876
1876
|
* <code>metricsConfig</code> can be <code>ENABLED</code> or <code>DISABLED</code>.</p>
|
|
1877
1877
|
* @public
|
|
1878
1878
|
*/
|
|
1879
|
-
metricsConfig?: DataSourceLevelMetricsConfig;
|
|
1879
|
+
metricsConfig?: DataSourceLevelMetricsConfig | undefined;
|
|
1880
1880
|
}
|
|
1881
1881
|
/**
|
|
1882
1882
|
* <p>Describes a data source.</p>
|
|
@@ -1887,17 +1887,17 @@ export interface DataSource {
|
|
|
1887
1887
|
* <p>The data source Amazon Resource Name (ARN).</p>
|
|
1888
1888
|
* @public
|
|
1889
1889
|
*/
|
|
1890
|
-
dataSourceArn?: string;
|
|
1890
|
+
dataSourceArn?: string | undefined;
|
|
1891
1891
|
/**
|
|
1892
1892
|
* <p>The name of the data source.</p>
|
|
1893
1893
|
* @public
|
|
1894
1894
|
*/
|
|
1895
|
-
name?: string;
|
|
1895
|
+
name?: string | undefined;
|
|
1896
1896
|
/**
|
|
1897
1897
|
* <p>The description of the data source.</p>
|
|
1898
1898
|
* @public
|
|
1899
1899
|
*/
|
|
1900
|
-
description?: string;
|
|
1900
|
+
description?: string | undefined;
|
|
1901
1901
|
/**
|
|
1902
1902
|
* <p>The type of the data source.</p>
|
|
1903
1903
|
* <ul>
|
|
@@ -1944,48 +1944,48 @@ export interface DataSource {
|
|
|
1944
1944
|
* </ul>
|
|
1945
1945
|
* @public
|
|
1946
1946
|
*/
|
|
1947
|
-
type?: DataSourceType;
|
|
1947
|
+
type?: DataSourceType | undefined;
|
|
1948
1948
|
/**
|
|
1949
1949
|
* <p>The Identity and Access Management (IAM) service role Amazon Resource Name (ARN)
|
|
1950
1950
|
* for the data source. The system assumes this role when accessing the data source.</p>
|
|
1951
1951
|
* @public
|
|
1952
1952
|
*/
|
|
1953
|
-
serviceRoleArn?: string;
|
|
1953
|
+
serviceRoleArn?: string | undefined;
|
|
1954
1954
|
/**
|
|
1955
1955
|
* <p>DynamoDB settings.</p>
|
|
1956
1956
|
* @public
|
|
1957
1957
|
*/
|
|
1958
|
-
dynamodbConfig?: DynamodbDataSourceConfig;
|
|
1958
|
+
dynamodbConfig?: DynamodbDataSourceConfig | undefined;
|
|
1959
1959
|
/**
|
|
1960
1960
|
* <p>Lambda settings.</p>
|
|
1961
1961
|
* @public
|
|
1962
1962
|
*/
|
|
1963
|
-
lambdaConfig?: LambdaDataSourceConfig;
|
|
1963
|
+
lambdaConfig?: LambdaDataSourceConfig | undefined;
|
|
1964
1964
|
/**
|
|
1965
1965
|
* <p>Amazon OpenSearch Service settings.</p>
|
|
1966
1966
|
* @public
|
|
1967
1967
|
*/
|
|
1968
|
-
elasticsearchConfig?: ElasticsearchDataSourceConfig;
|
|
1968
|
+
elasticsearchConfig?: ElasticsearchDataSourceConfig | undefined;
|
|
1969
1969
|
/**
|
|
1970
1970
|
* <p>Amazon OpenSearch Service settings.</p>
|
|
1971
1971
|
* @public
|
|
1972
1972
|
*/
|
|
1973
|
-
openSearchServiceConfig?: OpenSearchServiceDataSourceConfig;
|
|
1973
|
+
openSearchServiceConfig?: OpenSearchServiceDataSourceConfig | undefined;
|
|
1974
1974
|
/**
|
|
1975
1975
|
* <p>HTTP endpoint settings.</p>
|
|
1976
1976
|
* @public
|
|
1977
1977
|
*/
|
|
1978
|
-
httpConfig?: HttpDataSourceConfig;
|
|
1978
|
+
httpConfig?: HttpDataSourceConfig | undefined;
|
|
1979
1979
|
/**
|
|
1980
1980
|
* <p>Relational database settings.</p>
|
|
1981
1981
|
* @public
|
|
1982
1982
|
*/
|
|
1983
|
-
relationalDatabaseConfig?: RelationalDatabaseDataSourceConfig;
|
|
1983
|
+
relationalDatabaseConfig?: RelationalDatabaseDataSourceConfig | undefined;
|
|
1984
1984
|
/**
|
|
1985
1985
|
* <p>Amazon EventBridge settings.</p>
|
|
1986
1986
|
* @public
|
|
1987
1987
|
*/
|
|
1988
|
-
eventBridgeConfig?: EventBridgeDataSourceConfig;
|
|
1988
|
+
eventBridgeConfig?: EventBridgeDataSourceConfig | undefined;
|
|
1989
1989
|
/**
|
|
1990
1990
|
* <p>Enables or disables enhanced data source metrics for specified data sources. Note that
|
|
1991
1991
|
* <code>metricsConfig</code> won't be used unless the
|
|
@@ -1997,7 +1997,7 @@ export interface DataSource {
|
|
|
1997
1997
|
* <code>metricsConfig</code> can be <code>ENABLED</code> or <code>DISABLED</code>.</p>
|
|
1998
1998
|
* @public
|
|
1999
1999
|
*/
|
|
2000
|
-
metricsConfig?: DataSourceLevelMetricsConfig;
|
|
2000
|
+
metricsConfig?: DataSourceLevelMetricsConfig | undefined;
|
|
2001
2001
|
}
|
|
2002
2002
|
/**
|
|
2003
2003
|
* @public
|
|
@@ -2007,7 +2007,7 @@ export interface CreateDataSourceResponse {
|
|
|
2007
2007
|
* <p>The <code>DataSource</code> object.</p>
|
|
2008
2008
|
* @public
|
|
2009
2009
|
*/
|
|
2010
|
-
dataSource?: DataSource;
|
|
2010
|
+
dataSource?: DataSource | undefined;
|
|
2011
2011
|
}
|
|
2012
2012
|
/**
|
|
2013
2013
|
* @public
|
|
@@ -2029,7 +2029,7 @@ export interface CreateDomainNameRequest {
|
|
|
2029
2029
|
* <p>A description of the <code>DomainName</code>.</p>
|
|
2030
2030
|
* @public
|
|
2031
2031
|
*/
|
|
2032
|
-
description?: string;
|
|
2032
|
+
description?: string | undefined;
|
|
2033
2033
|
}
|
|
2034
2034
|
/**
|
|
2035
2035
|
* <p>Describes a configuration for a custom domain.</p>
|
|
@@ -2040,29 +2040,29 @@ export interface DomainNameConfig {
|
|
|
2040
2040
|
* <p>The domain name.</p>
|
|
2041
2041
|
* @public
|
|
2042
2042
|
*/
|
|
2043
|
-
domainName?: string;
|
|
2043
|
+
domainName?: string | undefined;
|
|
2044
2044
|
/**
|
|
2045
2045
|
* <p>A description of the <code>DomainName</code> configuration.</p>
|
|
2046
2046
|
* @public
|
|
2047
2047
|
*/
|
|
2048
|
-
description?: string;
|
|
2048
|
+
description?: string | undefined;
|
|
2049
2049
|
/**
|
|
2050
2050
|
* <p>The Amazon Resource Name (ARN) of the certificate. This can be an Certificate Manager
|
|
2051
2051
|
* (ACM) certificate or an Identity and Access Management (IAM)
|
|
2052
2052
|
* server certificate.</p>
|
|
2053
2053
|
* @public
|
|
2054
2054
|
*/
|
|
2055
|
-
certificateArn?: string;
|
|
2055
|
+
certificateArn?: string | undefined;
|
|
2056
2056
|
/**
|
|
2057
2057
|
* <p>The domain name that AppSync provides.</p>
|
|
2058
2058
|
* @public
|
|
2059
2059
|
*/
|
|
2060
|
-
appsyncDomainName?: string;
|
|
2060
|
+
appsyncDomainName?: string | undefined;
|
|
2061
2061
|
/**
|
|
2062
2062
|
* <p>The ID of your Amazon Route 53 hosted zone.</p>
|
|
2063
2063
|
* @public
|
|
2064
2064
|
*/
|
|
2065
|
-
hostedZoneId?: string;
|
|
2065
|
+
hostedZoneId?: string | undefined;
|
|
2066
2066
|
}
|
|
2067
2067
|
/**
|
|
2068
2068
|
* @public
|
|
@@ -2072,7 +2072,7 @@ export interface CreateDomainNameResponse {
|
|
|
2072
2072
|
* <p>The configuration for the <code>DomainName</code>.</p>
|
|
2073
2073
|
* @public
|
|
2074
2074
|
*/
|
|
2075
|
-
domainNameConfig?: DomainNameConfig;
|
|
2075
|
+
domainNameConfig?: DomainNameConfig | undefined;
|
|
2076
2076
|
}
|
|
2077
2077
|
/**
|
|
2078
2078
|
* @public
|
|
@@ -2111,7 +2111,7 @@ export interface LambdaConflictHandlerConfig {
|
|
|
2111
2111
|
* Conflict Handler.</p>
|
|
2112
2112
|
* @public
|
|
2113
2113
|
*/
|
|
2114
|
-
lambdaConflictHandlerArn?: string;
|
|
2114
|
+
lambdaConflictHandlerArn?: string | undefined;
|
|
2115
2115
|
}
|
|
2116
2116
|
/**
|
|
2117
2117
|
* <p>Describes a Sync configuration for a resolver.</p>
|
|
@@ -2142,7 +2142,7 @@ export interface SyncConfig {
|
|
|
2142
2142
|
* </ul>
|
|
2143
2143
|
* @public
|
|
2144
2144
|
*/
|
|
2145
|
-
conflictHandler?: ConflictHandlerType;
|
|
2145
|
+
conflictHandler?: ConflictHandlerType | undefined;
|
|
2146
2146
|
/**
|
|
2147
2147
|
* <p>The Conflict Detection strategy to use.</p>
|
|
2148
2148
|
* <ul>
|
|
@@ -2159,13 +2159,13 @@ export interface SyncConfig {
|
|
|
2159
2159
|
* </ul>
|
|
2160
2160
|
* @public
|
|
2161
2161
|
*/
|
|
2162
|
-
conflictDetection?: ConflictDetectionType;
|
|
2162
|
+
conflictDetection?: ConflictDetectionType | undefined;
|
|
2163
2163
|
/**
|
|
2164
2164
|
* <p>The <code>LambdaConflictHandlerConfig</code> when configuring <code>LAMBDA</code> as the
|
|
2165
2165
|
* Conflict Handler.</p>
|
|
2166
2166
|
* @public
|
|
2167
2167
|
*/
|
|
2168
|
-
lambdaConflictHandlerConfig?: LambdaConflictHandlerConfig;
|
|
2168
|
+
lambdaConflictHandlerConfig?: LambdaConflictHandlerConfig | undefined;
|
|
2169
2169
|
}
|
|
2170
2170
|
/**
|
|
2171
2171
|
* @public
|
|
@@ -2185,7 +2185,7 @@ export interface CreateFunctionRequest {
|
|
|
2185
2185
|
* <p>The <code>Function</code> description.</p>
|
|
2186
2186
|
* @public
|
|
2187
2187
|
*/
|
|
2188
|
-
description?: string;
|
|
2188
|
+
description?: string | undefined;
|
|
2189
2189
|
/**
|
|
2190
2190
|
* <p>The <code>Function</code>
|
|
2191
2191
|
* <code>DataSource</code> name.</p>
|
|
@@ -2197,44 +2197,44 @@ export interface CreateFunctionRequest {
|
|
|
2197
2197
|
* 2018-05-29 version of the request mapping template.</p>
|
|
2198
2198
|
* @public
|
|
2199
2199
|
*/
|
|
2200
|
-
requestMappingTemplate?: string;
|
|
2200
|
+
requestMappingTemplate?: string | undefined;
|
|
2201
2201
|
/**
|
|
2202
2202
|
* <p>The <code>Function</code> response mapping template.</p>
|
|
2203
2203
|
* @public
|
|
2204
2204
|
*/
|
|
2205
|
-
responseMappingTemplate?: string;
|
|
2205
|
+
responseMappingTemplate?: string | undefined;
|
|
2206
2206
|
/**
|
|
2207
2207
|
* <p>The <code>version</code> of the request mapping template. Currently, the supported value
|
|
2208
2208
|
* is 2018-05-29. Note that when using VTL and mapping templates, the
|
|
2209
2209
|
* <code>functionVersion</code> is required.</p>
|
|
2210
2210
|
* @public
|
|
2211
2211
|
*/
|
|
2212
|
-
functionVersion?: string;
|
|
2212
|
+
functionVersion?: string | undefined;
|
|
2213
2213
|
/**
|
|
2214
2214
|
* <p>Describes a Sync configuration for a resolver.</p>
|
|
2215
2215
|
* <p>Specifies which Conflict Detection strategy and Resolution strategy to use when the
|
|
2216
2216
|
* resolver is invoked.</p>
|
|
2217
2217
|
* @public
|
|
2218
2218
|
*/
|
|
2219
|
-
syncConfig?: SyncConfig;
|
|
2219
|
+
syncConfig?: SyncConfig | undefined;
|
|
2220
2220
|
/**
|
|
2221
2221
|
* <p>The maximum batching size for a resolver.</p>
|
|
2222
2222
|
* @public
|
|
2223
2223
|
*/
|
|
2224
|
-
maxBatchSize?: number;
|
|
2224
|
+
maxBatchSize?: number | undefined;
|
|
2225
2225
|
/**
|
|
2226
2226
|
* <p>Describes a runtime used by an Amazon Web Services AppSync pipeline resolver or Amazon Web Services AppSync function. Specifies the name and version of the runtime to use. Note
|
|
2227
2227
|
* that if a runtime is specified, code must also be specified.</p>
|
|
2228
2228
|
* @public
|
|
2229
2229
|
*/
|
|
2230
|
-
runtime?: AppSyncRuntime;
|
|
2230
|
+
runtime?: AppSyncRuntime | undefined;
|
|
2231
2231
|
/**
|
|
2232
2232
|
* <p>The <code>function</code> code that contains the request and response functions. When
|
|
2233
2233
|
* code is used, the <code>runtime</code> is required. The <code>runtime</code> value must be
|
|
2234
2234
|
* <code>APPSYNC_JS</code>.</p>
|
|
2235
2235
|
* @public
|
|
2236
2236
|
*/
|
|
2237
|
-
code?: string;
|
|
2237
|
+
code?: string | undefined;
|
|
2238
2238
|
}
|
|
2239
2239
|
/**
|
|
2240
2240
|
* <p>A function is a reusable entity. You can use multiple functions to compose the resolver
|
|
@@ -2246,69 +2246,69 @@ export interface FunctionConfiguration {
|
|
|
2246
2246
|
* <p>A unique ID representing the <code>Function</code> object.</p>
|
|
2247
2247
|
* @public
|
|
2248
2248
|
*/
|
|
2249
|
-
functionId?: string;
|
|
2249
|
+
functionId?: string | undefined;
|
|
2250
2250
|
/**
|
|
2251
2251
|
* <p>The Amazon Resource Name (ARN) of the <code>Function</code> object.</p>
|
|
2252
2252
|
* @public
|
|
2253
2253
|
*/
|
|
2254
|
-
functionArn?: string;
|
|
2254
|
+
functionArn?: string | undefined;
|
|
2255
2255
|
/**
|
|
2256
2256
|
* <p>The name of the <code>Function</code> object.</p>
|
|
2257
2257
|
* @public
|
|
2258
2258
|
*/
|
|
2259
|
-
name?: string;
|
|
2259
|
+
name?: string | undefined;
|
|
2260
2260
|
/**
|
|
2261
2261
|
* <p>The <code>Function</code> description.</p>
|
|
2262
2262
|
* @public
|
|
2263
2263
|
*/
|
|
2264
|
-
description?: string;
|
|
2264
|
+
description?: string | undefined;
|
|
2265
2265
|
/**
|
|
2266
2266
|
* <p>The name of the <code>DataSource</code>.</p>
|
|
2267
2267
|
* @public
|
|
2268
2268
|
*/
|
|
2269
|
-
dataSourceName?: string;
|
|
2269
|
+
dataSourceName?: string | undefined;
|
|
2270
2270
|
/**
|
|
2271
2271
|
* <p>The <code>Function</code> request mapping template. Functions support only the
|
|
2272
2272
|
* 2018-05-29 version of the request mapping template.</p>
|
|
2273
2273
|
* @public
|
|
2274
2274
|
*/
|
|
2275
|
-
requestMappingTemplate?: string;
|
|
2275
|
+
requestMappingTemplate?: string | undefined;
|
|
2276
2276
|
/**
|
|
2277
2277
|
* <p>The <code>Function</code> response mapping template.</p>
|
|
2278
2278
|
* @public
|
|
2279
2279
|
*/
|
|
2280
|
-
responseMappingTemplate?: string;
|
|
2280
|
+
responseMappingTemplate?: string | undefined;
|
|
2281
2281
|
/**
|
|
2282
2282
|
* <p>The version of the request mapping template. Currently, only the 2018-05-29 version of
|
|
2283
2283
|
* the template is supported.</p>
|
|
2284
2284
|
* @public
|
|
2285
2285
|
*/
|
|
2286
|
-
functionVersion?: string;
|
|
2286
|
+
functionVersion?: string | undefined;
|
|
2287
2287
|
/**
|
|
2288
2288
|
* <p>Describes a Sync configuration for a resolver.</p>
|
|
2289
2289
|
* <p>Specifies which Conflict Detection strategy and Resolution strategy to use when the
|
|
2290
2290
|
* resolver is invoked.</p>
|
|
2291
2291
|
* @public
|
|
2292
2292
|
*/
|
|
2293
|
-
syncConfig?: SyncConfig;
|
|
2293
|
+
syncConfig?: SyncConfig | undefined;
|
|
2294
2294
|
/**
|
|
2295
2295
|
* <p>The maximum batching size for a resolver.</p>
|
|
2296
2296
|
* @public
|
|
2297
2297
|
*/
|
|
2298
|
-
maxBatchSize?: number;
|
|
2298
|
+
maxBatchSize?: number | undefined;
|
|
2299
2299
|
/**
|
|
2300
2300
|
* <p>Describes a runtime used by an Amazon Web Services AppSync pipeline resolver or Amazon Web Services AppSync function. Specifies the name and version of the runtime to use. Note
|
|
2301
2301
|
* that if a runtime is specified, code must also be specified.</p>
|
|
2302
2302
|
* @public
|
|
2303
2303
|
*/
|
|
2304
|
-
runtime?: AppSyncRuntime;
|
|
2304
|
+
runtime?: AppSyncRuntime | undefined;
|
|
2305
2305
|
/**
|
|
2306
2306
|
* <p>The <code>function</code> code that contains the request and response functions. When
|
|
2307
2307
|
* code is used, the <code>runtime</code> is required. The <code>runtime</code> value must be
|
|
2308
2308
|
* <code>APPSYNC_JS</code>.</p>
|
|
2309
2309
|
* @public
|
|
2310
2310
|
*/
|
|
2311
|
-
code?: string;
|
|
2311
|
+
code?: string | undefined;
|
|
2312
2312
|
}
|
|
2313
2313
|
/**
|
|
2314
2314
|
* @public
|
|
@@ -2318,7 +2318,7 @@ export interface CreateFunctionResponse {
|
|
|
2318
2318
|
* <p>The <code>Function</code> object.</p>
|
|
2319
2319
|
* @public
|
|
2320
2320
|
*/
|
|
2321
|
-
functionConfiguration?: FunctionConfiguration;
|
|
2321
|
+
functionConfiguration?: FunctionConfiguration | undefined;
|
|
2322
2322
|
}
|
|
2323
2323
|
/**
|
|
2324
2324
|
* @public
|
|
@@ -2651,7 +2651,7 @@ export interface LogConfig {
|
|
|
2651
2651
|
* evaluated mapping templates, regardless of logging level.</p>
|
|
2652
2652
|
* @public
|
|
2653
2653
|
*/
|
|
2654
|
-
excludeVerboseContent?: boolean;
|
|
2654
|
+
excludeVerboseContent?: boolean | undefined;
|
|
2655
2655
|
}
|
|
2656
2656
|
/**
|
|
2657
2657
|
* @public
|
|
@@ -2691,7 +2691,7 @@ export interface UserPoolConfig {
|
|
|
2691
2691
|
* ID. If this value isn't set, no filtering is applied.</p>
|
|
2692
2692
|
* @public
|
|
2693
2693
|
*/
|
|
2694
|
-
appIdClientRegex?: string;
|
|
2694
|
+
appIdClientRegex?: string | undefined;
|
|
2695
2695
|
}
|
|
2696
2696
|
/**
|
|
2697
2697
|
* @public
|
|
@@ -2718,7 +2718,7 @@ export interface CreateGraphqlApiRequest {
|
|
|
2718
2718
|
* <p>The Amazon CloudWatch Logs configuration.</p>
|
|
2719
2719
|
* @public
|
|
2720
2720
|
*/
|
|
2721
|
-
logConfig?: LogConfig;
|
|
2721
|
+
logConfig?: LogConfig | undefined;
|
|
2722
2722
|
/**
|
|
2723
2723
|
* <p>The authentication type: API key, Identity and Access Management (IAM), OpenID
|
|
2724
2724
|
* Connect (OIDC), Amazon Cognito user pools, or Lambda.</p>
|
|
@@ -2729,40 +2729,40 @@ export interface CreateGraphqlApiRequest {
|
|
|
2729
2729
|
* <p>The Amazon Cognito user pool configuration.</p>
|
|
2730
2730
|
* @public
|
|
2731
2731
|
*/
|
|
2732
|
-
userPoolConfig?: UserPoolConfig;
|
|
2732
|
+
userPoolConfig?: UserPoolConfig | undefined;
|
|
2733
2733
|
/**
|
|
2734
2734
|
* <p>The OIDC configuration.</p>
|
|
2735
2735
|
* @public
|
|
2736
2736
|
*/
|
|
2737
|
-
openIDConnectConfig?: OpenIDConnectConfig;
|
|
2737
|
+
openIDConnectConfig?: OpenIDConnectConfig | undefined;
|
|
2738
2738
|
/**
|
|
2739
2739
|
* <p>A <code>TagMap</code> object.</p>
|
|
2740
2740
|
* @public
|
|
2741
2741
|
*/
|
|
2742
|
-
tags?: Record<string, string
|
|
2742
|
+
tags?: Record<string, string> | undefined;
|
|
2743
2743
|
/**
|
|
2744
2744
|
* <p>A list of additional authentication providers for the <code>GraphqlApi</code>
|
|
2745
2745
|
* API.</p>
|
|
2746
2746
|
* @public
|
|
2747
2747
|
*/
|
|
2748
|
-
additionalAuthenticationProviders?: AdditionalAuthenticationProvider[];
|
|
2748
|
+
additionalAuthenticationProviders?: AdditionalAuthenticationProvider[] | undefined;
|
|
2749
2749
|
/**
|
|
2750
2750
|
* <p>A flag indicating whether to use X-Ray tracing for the
|
|
2751
2751
|
* <code>GraphqlApi</code>.</p>
|
|
2752
2752
|
* @public
|
|
2753
2753
|
*/
|
|
2754
|
-
xrayEnabled?: boolean;
|
|
2754
|
+
xrayEnabled?: boolean | undefined;
|
|
2755
2755
|
/**
|
|
2756
2756
|
* <p>Configuration for Lambda function authorization.</p>
|
|
2757
2757
|
* @public
|
|
2758
2758
|
*/
|
|
2759
|
-
lambdaAuthorizerConfig?: LambdaAuthorizerConfig;
|
|
2759
|
+
lambdaAuthorizerConfig?: LambdaAuthorizerConfig | undefined;
|
|
2760
2760
|
/**
|
|
2761
2761
|
* <p>The value that indicates whether the GraphQL API is a standard API
|
|
2762
2762
|
* (<code>GRAPHQL</code>) or merged API (<code>MERGED</code>).</p>
|
|
2763
2763
|
* @public
|
|
2764
2764
|
*/
|
|
2765
|
-
apiType?: GraphQLApiType;
|
|
2765
|
+
apiType?: GraphQLApiType | undefined;
|
|
2766
2766
|
/**
|
|
2767
2767
|
* <p>The Identity and Access Management service role ARN for a merged API. The AppSync
|
|
2768
2768
|
* service assumes this role on behalf of the Merged API to validate access to source APIs at
|
|
@@ -2770,7 +2770,7 @@ export interface CreateGraphqlApiRequest {
|
|
|
2770
2770
|
* the source API changes automatically.</p>
|
|
2771
2771
|
* @public
|
|
2772
2772
|
*/
|
|
2773
|
-
mergedApiExecutionRoleArn?: string;
|
|
2773
|
+
mergedApiExecutionRoleArn?: string | undefined;
|
|
2774
2774
|
/**
|
|
2775
2775
|
* <p>Sets the value of the GraphQL API to public (<code>GLOBAL</code>) or private
|
|
2776
2776
|
* (<code>PRIVATE</code>). If no value is provided, the visibility will be set to
|
|
@@ -2778,13 +2778,13 @@ export interface CreateGraphqlApiRequest {
|
|
|
2778
2778
|
* created.</p>
|
|
2779
2779
|
* @public
|
|
2780
2780
|
*/
|
|
2781
|
-
visibility?: GraphQLApiVisibility;
|
|
2781
|
+
visibility?: GraphQLApiVisibility | undefined;
|
|
2782
2782
|
/**
|
|
2783
2783
|
* <p>The owner contact information for an API resource.</p>
|
|
2784
2784
|
* <p>This field accepts any string input with a length of 0 - 256 characters.</p>
|
|
2785
2785
|
* @public
|
|
2786
2786
|
*/
|
|
2787
|
-
ownerContact?: string;
|
|
2787
|
+
ownerContact?: string | undefined;
|
|
2788
2788
|
/**
|
|
2789
2789
|
* <p>Sets the value of the GraphQL API to enable (<code>ENABLED</code>) or disable
|
|
2790
2790
|
* (<code>DISABLED</code>) introspection. If no value is provided, the introspection
|
|
@@ -2794,7 +2794,7 @@ export interface CreateGraphqlApiRequest {
|
|
|
2794
2794
|
* <p>For more information about introspection, see <a href="https://graphql.org/learn/introspection/">GraphQL introspection</a>.</p>
|
|
2795
2795
|
* @public
|
|
2796
2796
|
*/
|
|
2797
|
-
introspectionConfig?: GraphQLApiIntrospectionConfig;
|
|
2797
|
+
introspectionConfig?: GraphQLApiIntrospectionConfig | undefined;
|
|
2798
2798
|
/**
|
|
2799
2799
|
* <p>The maximum depth a query can have in a single request. Depth refers to the amount of
|
|
2800
2800
|
* nested levels allowed in the body of query. The default value is <code>0</code> (or
|
|
@@ -2806,7 +2806,7 @@ export interface CreateGraphqlApiRequest {
|
|
|
2806
2806
|
* available.</p>
|
|
2807
2807
|
* @public
|
|
2808
2808
|
*/
|
|
2809
|
-
queryDepthLimit?: number;
|
|
2809
|
+
queryDepthLimit?: number | undefined;
|
|
2810
2810
|
/**
|
|
2811
2811
|
* <p>The maximum number of resolvers that can be invoked in a single request. The default
|
|
2812
2812
|
* value is <code>0</code> (or unspecified), which will set the limit to <code>10000</code>.
|
|
@@ -2814,12 +2814,12 @@ export interface CreateGraphqlApiRequest {
|
|
|
2814
2814
|
* field will produce a limit error if the operation falls out of bounds.</p>
|
|
2815
2815
|
* @public
|
|
2816
2816
|
*/
|
|
2817
|
-
resolverCountLimit?: number;
|
|
2817
|
+
resolverCountLimit?: number | undefined;
|
|
2818
2818
|
/**
|
|
2819
2819
|
* <p>The <code>enhancedMetricsConfig</code> object.</p>
|
|
2820
2820
|
* @public
|
|
2821
2821
|
*/
|
|
2822
|
-
enhancedMetricsConfig?: EnhancedMetricsConfig;
|
|
2822
|
+
enhancedMetricsConfig?: EnhancedMetricsConfig | undefined;
|
|
2823
2823
|
}
|
|
2824
2824
|
/**
|
|
2825
2825
|
* <p>Describes a GraphQL API.</p>
|
|
@@ -2830,75 +2830,75 @@ export interface GraphqlApi {
|
|
|
2830
2830
|
* <p>The API name.</p>
|
|
2831
2831
|
* @public
|
|
2832
2832
|
*/
|
|
2833
|
-
name?: string;
|
|
2833
|
+
name?: string | undefined;
|
|
2834
2834
|
/**
|
|
2835
2835
|
* <p>The API ID.</p>
|
|
2836
2836
|
* @public
|
|
2837
2837
|
*/
|
|
2838
|
-
apiId?: string;
|
|
2838
|
+
apiId?: string | undefined;
|
|
2839
2839
|
/**
|
|
2840
2840
|
* <p>The authentication type.</p>
|
|
2841
2841
|
* @public
|
|
2842
2842
|
*/
|
|
2843
|
-
authenticationType?: AuthenticationType;
|
|
2843
|
+
authenticationType?: AuthenticationType | undefined;
|
|
2844
2844
|
/**
|
|
2845
2845
|
* <p>The Amazon CloudWatch Logs configuration.</p>
|
|
2846
2846
|
* @public
|
|
2847
2847
|
*/
|
|
2848
|
-
logConfig?: LogConfig;
|
|
2848
|
+
logConfig?: LogConfig | undefined;
|
|
2849
2849
|
/**
|
|
2850
2850
|
* <p>The Amazon Cognito user pool configuration.</p>
|
|
2851
2851
|
* @public
|
|
2852
2852
|
*/
|
|
2853
|
-
userPoolConfig?: UserPoolConfig;
|
|
2853
|
+
userPoolConfig?: UserPoolConfig | undefined;
|
|
2854
2854
|
/**
|
|
2855
2855
|
* <p>The OpenID Connect configuration.</p>
|
|
2856
2856
|
* @public
|
|
2857
2857
|
*/
|
|
2858
|
-
openIDConnectConfig?: OpenIDConnectConfig;
|
|
2858
|
+
openIDConnectConfig?: OpenIDConnectConfig | undefined;
|
|
2859
2859
|
/**
|
|
2860
2860
|
* <p>The Amazon Resource Name (ARN).</p>
|
|
2861
2861
|
* @public
|
|
2862
2862
|
*/
|
|
2863
|
-
arn?: string;
|
|
2863
|
+
arn?: string | undefined;
|
|
2864
2864
|
/**
|
|
2865
2865
|
* <p>The URIs.</p>
|
|
2866
2866
|
* @public
|
|
2867
2867
|
*/
|
|
2868
|
-
uris?: Record<string, string
|
|
2868
|
+
uris?: Record<string, string> | undefined;
|
|
2869
2869
|
/**
|
|
2870
2870
|
* <p>The tags.</p>
|
|
2871
2871
|
* @public
|
|
2872
2872
|
*/
|
|
2873
|
-
tags?: Record<string, string
|
|
2873
|
+
tags?: Record<string, string> | undefined;
|
|
2874
2874
|
/**
|
|
2875
2875
|
* <p>A list of additional authentication providers for the <code>GraphqlApi</code>
|
|
2876
2876
|
* API.</p>
|
|
2877
2877
|
* @public
|
|
2878
2878
|
*/
|
|
2879
|
-
additionalAuthenticationProviders?: AdditionalAuthenticationProvider[];
|
|
2879
|
+
additionalAuthenticationProviders?: AdditionalAuthenticationProvider[] | undefined;
|
|
2880
2880
|
/**
|
|
2881
2881
|
* <p>A flag indicating whether to use X-Ray tracing for this
|
|
2882
2882
|
* <code>GraphqlApi</code>.</p>
|
|
2883
2883
|
* @public
|
|
2884
2884
|
*/
|
|
2885
|
-
xrayEnabled?: boolean;
|
|
2885
|
+
xrayEnabled?: boolean | undefined;
|
|
2886
2886
|
/**
|
|
2887
2887
|
* <p>The ARN of the WAF access control list (ACL) associated with this
|
|
2888
2888
|
* <code>GraphqlApi</code>, if one exists.</p>
|
|
2889
2889
|
* @public
|
|
2890
2890
|
*/
|
|
2891
|
-
wafWebAclArn?: string;
|
|
2891
|
+
wafWebAclArn?: string | undefined;
|
|
2892
2892
|
/**
|
|
2893
2893
|
* <p>Configuration for Lambda function authorization.</p>
|
|
2894
2894
|
* @public
|
|
2895
2895
|
*/
|
|
2896
|
-
lambdaAuthorizerConfig?: LambdaAuthorizerConfig;
|
|
2896
|
+
lambdaAuthorizerConfig?: LambdaAuthorizerConfig | undefined;
|
|
2897
2897
|
/**
|
|
2898
2898
|
* <p>The DNS records for the API.</p>
|
|
2899
2899
|
* @public
|
|
2900
2900
|
*/
|
|
2901
|
-
dns?: Record<string, string
|
|
2901
|
+
dns?: Record<string, string> | undefined;
|
|
2902
2902
|
/**
|
|
2903
2903
|
* <p>Sets the value of the GraphQL API to public (<code>GLOBAL</code>) or private
|
|
2904
2904
|
* (<code>PRIVATE</code>). If no value is provided, the visibility will be set to
|
|
@@ -2906,13 +2906,13 @@ export interface GraphqlApi {
|
|
|
2906
2906
|
* created.</p>
|
|
2907
2907
|
* @public
|
|
2908
2908
|
*/
|
|
2909
|
-
visibility?: GraphQLApiVisibility;
|
|
2909
|
+
visibility?: GraphQLApiVisibility | undefined;
|
|
2910
2910
|
/**
|
|
2911
2911
|
* <p>The value that indicates whether the GraphQL API is a standard API
|
|
2912
2912
|
* (<code>GRAPHQL</code>) or merged API (<code>MERGED</code>).</p>
|
|
2913
2913
|
* @public
|
|
2914
2914
|
*/
|
|
2915
|
-
apiType?: GraphQLApiType;
|
|
2915
|
+
apiType?: GraphQLApiType | undefined;
|
|
2916
2916
|
/**
|
|
2917
2917
|
* <p>The Identity and Access Management service role ARN for a merged API. The AppSync
|
|
2918
2918
|
* service assumes this role on behalf of the Merged API to validate access to source APIs at
|
|
@@ -2920,18 +2920,18 @@ export interface GraphqlApi {
|
|
|
2920
2920
|
* the source API changes automatically.</p>
|
|
2921
2921
|
* @public
|
|
2922
2922
|
*/
|
|
2923
|
-
mergedApiExecutionRoleArn?: string;
|
|
2923
|
+
mergedApiExecutionRoleArn?: string | undefined;
|
|
2924
2924
|
/**
|
|
2925
2925
|
* <p>The account owner of the GraphQL API.</p>
|
|
2926
2926
|
* @public
|
|
2927
2927
|
*/
|
|
2928
|
-
owner?: string;
|
|
2928
|
+
owner?: string | undefined;
|
|
2929
2929
|
/**
|
|
2930
2930
|
* <p>The owner contact information for an API resource.</p>
|
|
2931
2931
|
* <p>This field accepts any string input with a length of 0 - 256 characters.</p>
|
|
2932
2932
|
* @public
|
|
2933
2933
|
*/
|
|
2934
|
-
ownerContact?: string;
|
|
2934
|
+
ownerContact?: string | undefined;
|
|
2935
2935
|
/**
|
|
2936
2936
|
* <p>Sets the value of the GraphQL API to enable (<code>ENABLED</code>) or disable
|
|
2937
2937
|
* (<code>DISABLED</code>) introspection. If no value is provided, the introspection
|
|
@@ -2941,7 +2941,7 @@ export interface GraphqlApi {
|
|
|
2941
2941
|
* <p>For more information about introspection, see <a href="https://graphql.org/learn/introspection/">GraphQL introspection</a>.</p>
|
|
2942
2942
|
* @public
|
|
2943
2943
|
*/
|
|
2944
|
-
introspectionConfig?: GraphQLApiIntrospectionConfig;
|
|
2944
|
+
introspectionConfig?: GraphQLApiIntrospectionConfig | undefined;
|
|
2945
2945
|
/**
|
|
2946
2946
|
* <p>The maximum depth a query can have in a single request. Depth refers to the amount of
|
|
2947
2947
|
* nested levels allowed in the body of query. The default value is <code>0</code> (or
|
|
@@ -2953,7 +2953,7 @@ export interface GraphqlApi {
|
|
|
2953
2953
|
* available.</p>
|
|
2954
2954
|
* @public
|
|
2955
2955
|
*/
|
|
2956
|
-
queryDepthLimit?: number;
|
|
2956
|
+
queryDepthLimit?: number | undefined;
|
|
2957
2957
|
/**
|
|
2958
2958
|
* <p>The maximum number of resolvers that can be invoked in a single request. The default
|
|
2959
2959
|
* value is <code>0</code> (or unspecified), which will set the limit to <code>10000</code>.
|
|
@@ -2961,12 +2961,12 @@ export interface GraphqlApi {
|
|
|
2961
2961
|
* field will produce a limit error if the operation falls out of bounds.</p>
|
|
2962
2962
|
* @public
|
|
2963
2963
|
*/
|
|
2964
|
-
resolverCountLimit?: number;
|
|
2964
|
+
resolverCountLimit?: number | undefined;
|
|
2965
2965
|
/**
|
|
2966
2966
|
* <p>The <code>enhancedMetricsConfig</code> object.</p>
|
|
2967
2967
|
* @public
|
|
2968
2968
|
*/
|
|
2969
|
-
enhancedMetricsConfig?: EnhancedMetricsConfig;
|
|
2969
|
+
enhancedMetricsConfig?: EnhancedMetricsConfig | undefined;
|
|
2970
2970
|
}
|
|
2971
2971
|
/**
|
|
2972
2972
|
* @public
|
|
@@ -2976,7 +2976,7 @@ export interface CreateGraphqlApiResponse {
|
|
|
2976
2976
|
* <p>The <code>GraphqlApi</code>.</p>
|
|
2977
2977
|
* @public
|
|
2978
2978
|
*/
|
|
2979
|
-
graphqlApi?: GraphqlApi;
|
|
2979
|
+
graphqlApi?: GraphqlApi | undefined;
|
|
2980
2980
|
}
|
|
2981
2981
|
/**
|
|
2982
2982
|
* <p>The caching configuration for a resolver that has caching activated.</p>
|
|
@@ -2995,7 +2995,7 @@ export interface CachingConfig {
|
|
|
2995
2995
|
* <code>$context.source</code>, and <code>$context.identity</code> maps.</p>
|
|
2996
2996
|
* @public
|
|
2997
2997
|
*/
|
|
2998
|
-
cachingKeys?: string[];
|
|
2998
|
+
cachingKeys?: string[] | undefined;
|
|
2999
2999
|
}
|
|
3000
3000
|
/**
|
|
3001
3001
|
* @public
|
|
@@ -3030,7 +3030,7 @@ export interface PipelineConfig {
|
|
|
3030
3030
|
* <p>A list of <code>Function</code> objects.</p>
|
|
3031
3031
|
* @public
|
|
3032
3032
|
*/
|
|
3033
|
-
functions?: string[];
|
|
3033
|
+
functions?: string[] | undefined;
|
|
3034
3034
|
}
|
|
3035
3035
|
/**
|
|
3036
3036
|
* @public
|
|
@@ -3055,7 +3055,7 @@ export interface CreateResolverRequest {
|
|
|
3055
3055
|
* <p>The name of the data source for which the resolver is being created.</p>
|
|
3056
3056
|
* @public
|
|
3057
3057
|
*/
|
|
3058
|
-
dataSourceName?: string;
|
|
3058
|
+
dataSourceName?: string | undefined;
|
|
3059
3059
|
/**
|
|
3060
3060
|
* <p>The mapping template to use for requests.</p>
|
|
3061
3061
|
* <p>A resolver uses a request mapping template to convert a GraphQL expression into a format
|
|
@@ -3066,12 +3066,12 @@ export interface CreateResolverRequest {
|
|
|
3066
3066
|
* required.</p>
|
|
3067
3067
|
* @public
|
|
3068
3068
|
*/
|
|
3069
|
-
requestMappingTemplate?: string;
|
|
3069
|
+
requestMappingTemplate?: string | undefined;
|
|
3070
3070
|
/**
|
|
3071
3071
|
* <p>The mapping template to use for responses from the data source.</p>
|
|
3072
3072
|
* @public
|
|
3073
3073
|
*/
|
|
3074
|
-
responseMappingTemplate?: string;
|
|
3074
|
+
responseMappingTemplate?: string | undefined;
|
|
3075
3075
|
/**
|
|
3076
3076
|
* <p>The resolver type.</p>
|
|
3077
3077
|
* <ul>
|
|
@@ -3091,40 +3091,40 @@ export interface CreateResolverRequest {
|
|
|
3091
3091
|
* </ul>
|
|
3092
3092
|
* @public
|
|
3093
3093
|
*/
|
|
3094
|
-
kind?: ResolverKind;
|
|
3094
|
+
kind?: ResolverKind | undefined;
|
|
3095
3095
|
/**
|
|
3096
3096
|
* <p>The <code>PipelineConfig</code>.</p>
|
|
3097
3097
|
* @public
|
|
3098
3098
|
*/
|
|
3099
|
-
pipelineConfig?: PipelineConfig;
|
|
3099
|
+
pipelineConfig?: PipelineConfig | undefined;
|
|
3100
3100
|
/**
|
|
3101
3101
|
* <p>The <code>SyncConfig</code> for a resolver attached to a versioned data source.</p>
|
|
3102
3102
|
* @public
|
|
3103
3103
|
*/
|
|
3104
|
-
syncConfig?: SyncConfig;
|
|
3104
|
+
syncConfig?: SyncConfig | undefined;
|
|
3105
3105
|
/**
|
|
3106
3106
|
* <p>The caching configuration for the resolver.</p>
|
|
3107
3107
|
* @public
|
|
3108
3108
|
*/
|
|
3109
|
-
cachingConfig?: CachingConfig;
|
|
3109
|
+
cachingConfig?: CachingConfig | undefined;
|
|
3110
3110
|
/**
|
|
3111
3111
|
* <p>The maximum batching size for a resolver.</p>
|
|
3112
3112
|
* @public
|
|
3113
3113
|
*/
|
|
3114
|
-
maxBatchSize?: number;
|
|
3114
|
+
maxBatchSize?: number | undefined;
|
|
3115
3115
|
/**
|
|
3116
3116
|
* <p>Describes a runtime used by an Amazon Web Services AppSync pipeline resolver or Amazon Web Services AppSync function. Specifies the name and version of the runtime to use. Note
|
|
3117
3117
|
* that if a runtime is specified, code must also be specified.</p>
|
|
3118
3118
|
* @public
|
|
3119
3119
|
*/
|
|
3120
|
-
runtime?: AppSyncRuntime;
|
|
3120
|
+
runtime?: AppSyncRuntime | undefined;
|
|
3121
3121
|
/**
|
|
3122
3122
|
* <p>The <code>resolver</code> code that contains the request and response functions. When
|
|
3123
3123
|
* code is used, the <code>runtime</code> is required. The <code>runtime</code> value must be
|
|
3124
3124
|
* <code>APPSYNC_JS</code>.</p>
|
|
3125
3125
|
* @public
|
|
3126
3126
|
*/
|
|
3127
|
-
code?: string;
|
|
3127
|
+
code?: string | undefined;
|
|
3128
3128
|
/**
|
|
3129
3129
|
* <p>Enables or disables enhanced resolver metrics for specified resolvers. Note that
|
|
3130
3130
|
* <code>metricsConfig</code> won't be used unless the
|
|
@@ -3136,7 +3136,7 @@ export interface CreateResolverRequest {
|
|
|
3136
3136
|
* <code>metricsConfig</code> can be <code>ENABLED</code> or <code>DISABLED</code>.</p>
|
|
3137
3137
|
* @public
|
|
3138
3138
|
*/
|
|
3139
|
-
metricsConfig?: ResolverLevelMetricsConfig;
|
|
3139
|
+
metricsConfig?: ResolverLevelMetricsConfig | undefined;
|
|
3140
3140
|
}
|
|
3141
3141
|
/**
|
|
3142
3142
|
* <p>Describes a resolver.</p>
|
|
@@ -3147,32 +3147,32 @@ export interface Resolver {
|
|
|
3147
3147
|
* <p>The resolver type name.</p>
|
|
3148
3148
|
* @public
|
|
3149
3149
|
*/
|
|
3150
|
-
typeName?: string;
|
|
3150
|
+
typeName?: string | undefined;
|
|
3151
3151
|
/**
|
|
3152
3152
|
* <p>The resolver field name.</p>
|
|
3153
3153
|
* @public
|
|
3154
3154
|
*/
|
|
3155
|
-
fieldName?: string;
|
|
3155
|
+
fieldName?: string | undefined;
|
|
3156
3156
|
/**
|
|
3157
3157
|
* <p>The resolver data source name.</p>
|
|
3158
3158
|
* @public
|
|
3159
3159
|
*/
|
|
3160
|
-
dataSourceName?: string;
|
|
3160
|
+
dataSourceName?: string | undefined;
|
|
3161
3161
|
/**
|
|
3162
3162
|
* <p>The resolver Amazon Resource Name (ARN).</p>
|
|
3163
3163
|
* @public
|
|
3164
3164
|
*/
|
|
3165
|
-
resolverArn?: string;
|
|
3165
|
+
resolverArn?: string | undefined;
|
|
3166
3166
|
/**
|
|
3167
3167
|
* <p>The request mapping template.</p>
|
|
3168
3168
|
* @public
|
|
3169
3169
|
*/
|
|
3170
|
-
requestMappingTemplate?: string;
|
|
3170
|
+
requestMappingTemplate?: string | undefined;
|
|
3171
3171
|
/**
|
|
3172
3172
|
* <p>The response mapping template.</p>
|
|
3173
3173
|
* @public
|
|
3174
3174
|
*/
|
|
3175
|
-
responseMappingTemplate?: string;
|
|
3175
|
+
responseMappingTemplate?: string | undefined;
|
|
3176
3176
|
/**
|
|
3177
3177
|
* <p>The resolver type.</p>
|
|
3178
3178
|
* <ul>
|
|
@@ -3192,40 +3192,40 @@ export interface Resolver {
|
|
|
3192
3192
|
* </ul>
|
|
3193
3193
|
* @public
|
|
3194
3194
|
*/
|
|
3195
|
-
kind?: ResolverKind;
|
|
3195
|
+
kind?: ResolverKind | undefined;
|
|
3196
3196
|
/**
|
|
3197
3197
|
* <p>The <code>PipelineConfig</code>.</p>
|
|
3198
3198
|
* @public
|
|
3199
3199
|
*/
|
|
3200
|
-
pipelineConfig?: PipelineConfig;
|
|
3200
|
+
pipelineConfig?: PipelineConfig | undefined;
|
|
3201
3201
|
/**
|
|
3202
3202
|
* <p>The <code>SyncConfig</code> for a resolver attached to a versioned data source.</p>
|
|
3203
3203
|
* @public
|
|
3204
3204
|
*/
|
|
3205
|
-
syncConfig?: SyncConfig;
|
|
3205
|
+
syncConfig?: SyncConfig | undefined;
|
|
3206
3206
|
/**
|
|
3207
3207
|
* <p>The caching configuration for the resolver.</p>
|
|
3208
3208
|
* @public
|
|
3209
3209
|
*/
|
|
3210
|
-
cachingConfig?: CachingConfig;
|
|
3210
|
+
cachingConfig?: CachingConfig | undefined;
|
|
3211
3211
|
/**
|
|
3212
3212
|
* <p>The maximum batching size for a resolver.</p>
|
|
3213
3213
|
* @public
|
|
3214
3214
|
*/
|
|
3215
|
-
maxBatchSize?: number;
|
|
3215
|
+
maxBatchSize?: number | undefined;
|
|
3216
3216
|
/**
|
|
3217
3217
|
* <p>Describes a runtime used by an Amazon Web Services AppSync pipeline resolver or Amazon Web Services AppSync function. Specifies the name and version of the runtime to use. Note
|
|
3218
3218
|
* that if a runtime is specified, code must also be specified.</p>
|
|
3219
3219
|
* @public
|
|
3220
3220
|
*/
|
|
3221
|
-
runtime?: AppSyncRuntime;
|
|
3221
|
+
runtime?: AppSyncRuntime | undefined;
|
|
3222
3222
|
/**
|
|
3223
3223
|
* <p>The <code>resolver</code> code that contains the request and response functions. When
|
|
3224
3224
|
* code is used, the <code>runtime</code> is required. The <code>runtime</code> value must be
|
|
3225
3225
|
* <code>APPSYNC_JS</code>.</p>
|
|
3226
3226
|
* @public
|
|
3227
3227
|
*/
|
|
3228
|
-
code?: string;
|
|
3228
|
+
code?: string | undefined;
|
|
3229
3229
|
/**
|
|
3230
3230
|
* <p>Enables or disables enhanced resolver metrics for specified resolvers. Note that
|
|
3231
3231
|
* <code>metricsConfig</code> won't be used unless the
|
|
@@ -3237,7 +3237,7 @@ export interface Resolver {
|
|
|
3237
3237
|
* <code>metricsConfig</code> can be <code>ENABLED</code> or <code>DISABLED</code>.</p>
|
|
3238
3238
|
* @public
|
|
3239
3239
|
*/
|
|
3240
|
-
metricsConfig?: ResolverLevelMetricsConfig;
|
|
3240
|
+
metricsConfig?: ResolverLevelMetricsConfig | undefined;
|
|
3241
3241
|
}
|
|
3242
3242
|
/**
|
|
3243
3243
|
* @public
|
|
@@ -3247,7 +3247,7 @@ export interface CreateResolverResponse {
|
|
|
3247
3247
|
* <p>The <code>Resolver</code> object.</p>
|
|
3248
3248
|
* @public
|
|
3249
3249
|
*/
|
|
3250
|
-
resolver?: Resolver;
|
|
3250
|
+
resolver?: Resolver | undefined;
|
|
3251
3251
|
}
|
|
3252
3252
|
/**
|
|
3253
3253
|
* @public
|
|
@@ -3292,27 +3292,27 @@ export interface Type {
|
|
|
3292
3292
|
* <p>The type name.</p>
|
|
3293
3293
|
* @public
|
|
3294
3294
|
*/
|
|
3295
|
-
name?: string;
|
|
3295
|
+
name?: string | undefined;
|
|
3296
3296
|
/**
|
|
3297
3297
|
* <p>The type description.</p>
|
|
3298
3298
|
* @public
|
|
3299
3299
|
*/
|
|
3300
|
-
description?: string;
|
|
3300
|
+
description?: string | undefined;
|
|
3301
3301
|
/**
|
|
3302
3302
|
* <p>The type Amazon Resource Name (ARN).</p>
|
|
3303
3303
|
* @public
|
|
3304
3304
|
*/
|
|
3305
|
-
arn?: string;
|
|
3305
|
+
arn?: string | undefined;
|
|
3306
3306
|
/**
|
|
3307
3307
|
* <p>The type definition.</p>
|
|
3308
3308
|
* @public
|
|
3309
3309
|
*/
|
|
3310
|
-
definition?: string;
|
|
3310
|
+
definition?: string | undefined;
|
|
3311
3311
|
/**
|
|
3312
3312
|
* <p>The type format: SDL or JSON.</p>
|
|
3313
3313
|
* @public
|
|
3314
3314
|
*/
|
|
3315
|
-
format?: TypeDefinitionFormat;
|
|
3315
|
+
format?: TypeDefinitionFormat | undefined;
|
|
3316
3316
|
}
|
|
3317
3317
|
/**
|
|
3318
3318
|
* @public
|
|
@@ -3322,7 +3322,7 @@ export interface CreateTypeResponse {
|
|
|
3322
3322
|
* <p>The <code>Type</code> object.</p>
|
|
3323
3323
|
* @public
|
|
3324
3324
|
*/
|
|
3325
|
-
type?: Type;
|
|
3325
|
+
type?: Type | undefined;
|
|
3326
3326
|
}
|
|
3327
3327
|
/**
|
|
3328
3328
|
* @public
|
|
@@ -3552,7 +3552,7 @@ export interface DisassociateMergedGraphqlApiResponse {
|
|
|
3552
3552
|
* <p>The state of the source API association.</p>
|
|
3553
3553
|
* @public
|
|
3554
3554
|
*/
|
|
3555
|
-
sourceApiAssociationStatus?: SourceApiAssociationStatus;
|
|
3555
|
+
sourceApiAssociationStatus?: SourceApiAssociationStatus | undefined;
|
|
3556
3556
|
}
|
|
3557
3557
|
/**
|
|
3558
3558
|
* @public
|
|
@@ -3580,7 +3580,7 @@ export interface DisassociateSourceGraphqlApiResponse {
|
|
|
3580
3580
|
* <p>The state of the source API association.</p>
|
|
3581
3581
|
* @public
|
|
3582
3582
|
*/
|
|
3583
|
-
sourceApiAssociationStatus?: SourceApiAssociationStatus;
|
|
3583
|
+
sourceApiAssociationStatus?: SourceApiAssociationStatus | undefined;
|
|
3584
3584
|
}
|
|
3585
3585
|
/**
|
|
3586
3586
|
* @public
|
|
@@ -3610,7 +3610,7 @@ export interface EvaluateCodeRequest {
|
|
|
3610
3610
|
* <code>request</code> and <code>response</code>.</p>
|
|
3611
3611
|
* @public
|
|
3612
3612
|
*/
|
|
3613
|
-
function?: string;
|
|
3613
|
+
function?: string | undefined;
|
|
3614
3614
|
}
|
|
3615
3615
|
/**
|
|
3616
3616
|
* <p>Contains the list of errors from a code evaluation response.</p>
|
|
@@ -3621,12 +3621,12 @@ export interface EvaluateCodeErrorDetail {
|
|
|
3621
3621
|
* <p>The error payload.</p>
|
|
3622
3622
|
* @public
|
|
3623
3623
|
*/
|
|
3624
|
-
message?: string;
|
|
3624
|
+
message?: string | undefined;
|
|
3625
3625
|
/**
|
|
3626
3626
|
* <p>Contains the list of <code>CodeError</code> objects.</p>
|
|
3627
3627
|
* @public
|
|
3628
3628
|
*/
|
|
3629
|
-
codeErrors?: CodeError[];
|
|
3629
|
+
codeErrors?: CodeError[] | undefined;
|
|
3630
3630
|
}
|
|
3631
3631
|
/**
|
|
3632
3632
|
* @public
|
|
@@ -3636,18 +3636,18 @@ export interface EvaluateCodeResponse {
|
|
|
3636
3636
|
* <p>The result of the evaluation operation.</p>
|
|
3637
3637
|
* @public
|
|
3638
3638
|
*/
|
|
3639
|
-
evaluationResult?: string;
|
|
3639
|
+
evaluationResult?: string | undefined;
|
|
3640
3640
|
/**
|
|
3641
3641
|
* <p>Contains the payload of the response error.</p>
|
|
3642
3642
|
* @public
|
|
3643
3643
|
*/
|
|
3644
|
-
error?: EvaluateCodeErrorDetail;
|
|
3644
|
+
error?: EvaluateCodeErrorDetail | undefined;
|
|
3645
3645
|
/**
|
|
3646
3646
|
* <p>A list of logs that were generated by calls to <code>util.log.info</code> and
|
|
3647
3647
|
* <code>util.log.error</code> in the evaluated code.</p>
|
|
3648
3648
|
* @public
|
|
3649
3649
|
*/
|
|
3650
|
-
logs?: string[];
|
|
3650
|
+
logs?: string[] | undefined;
|
|
3651
3651
|
}
|
|
3652
3652
|
/**
|
|
3653
3653
|
* @public
|
|
@@ -3676,7 +3676,7 @@ export interface ErrorDetail {
|
|
|
3676
3676
|
* <p>The error payload.</p>
|
|
3677
3677
|
* @public
|
|
3678
3678
|
*/
|
|
3679
|
-
message?: string;
|
|
3679
|
+
message?: string | undefined;
|
|
3680
3680
|
}
|
|
3681
3681
|
/**
|
|
3682
3682
|
* @public
|
|
@@ -3686,18 +3686,18 @@ export interface EvaluateMappingTemplateResponse {
|
|
|
3686
3686
|
* <p>The mapping template; this can be a request or response template.</p>
|
|
3687
3687
|
* @public
|
|
3688
3688
|
*/
|
|
3689
|
-
evaluationResult?: string;
|
|
3689
|
+
evaluationResult?: string | undefined;
|
|
3690
3690
|
/**
|
|
3691
3691
|
* <p>The <code>ErrorDetail</code> object.</p>
|
|
3692
3692
|
* @public
|
|
3693
3693
|
*/
|
|
3694
|
-
error?: ErrorDetail;
|
|
3694
|
+
error?: ErrorDetail | undefined;
|
|
3695
3695
|
/**
|
|
3696
3696
|
* <p>A list of logs that were generated by calls to <code>util.log.info</code> and
|
|
3697
3697
|
* <code>util.log.error</code> in the evaluated code.</p>
|
|
3698
3698
|
* @public
|
|
3699
3699
|
*/
|
|
3700
|
-
logs?: string[];
|
|
3700
|
+
logs?: string[] | undefined;
|
|
3701
3701
|
}
|
|
3702
3702
|
/**
|
|
3703
3703
|
* <p>Represents the input of a <code>FlushApiCache</code> operation.</p>
|
|
@@ -3734,7 +3734,7 @@ export interface GetApiResponse {
|
|
|
3734
3734
|
* <p>The <code>Api</code> object.</p>
|
|
3735
3735
|
* @public
|
|
3736
3736
|
*/
|
|
3737
|
-
api?: Api;
|
|
3737
|
+
api?: Api | undefined;
|
|
3738
3738
|
}
|
|
3739
3739
|
/**
|
|
3740
3740
|
* @public
|
|
@@ -3754,7 +3754,7 @@ export interface GetApiAssociationResponse {
|
|
|
3754
3754
|
* <p>The <code>ApiAssociation</code> object.</p>
|
|
3755
3755
|
* @public
|
|
3756
3756
|
*/
|
|
3757
|
-
apiAssociation?: ApiAssociation;
|
|
3757
|
+
apiAssociation?: ApiAssociation | undefined;
|
|
3758
3758
|
}
|
|
3759
3759
|
/**
|
|
3760
3760
|
* <p>Represents the input of a <code>GetApiCache</code> operation.</p>
|
|
@@ -3776,7 +3776,7 @@ export interface GetApiCacheResponse {
|
|
|
3776
3776
|
* <p>The <code>ApiCache</code> object.</p>
|
|
3777
3777
|
* @public
|
|
3778
3778
|
*/
|
|
3779
|
-
apiCache?: ApiCache;
|
|
3779
|
+
apiCache?: ApiCache | undefined;
|
|
3780
3780
|
}
|
|
3781
3781
|
/**
|
|
3782
3782
|
* @public
|
|
@@ -3801,7 +3801,7 @@ export interface GetChannelNamespaceResponse {
|
|
|
3801
3801
|
* <p>The <code>ChannelNamespace</code> object.</p>
|
|
3802
3802
|
* @public
|
|
3803
3803
|
*/
|
|
3804
|
-
channelNamespace?: ChannelNamespace;
|
|
3804
|
+
channelNamespace?: ChannelNamespace | undefined;
|
|
3805
3805
|
}
|
|
3806
3806
|
/**
|
|
3807
3807
|
* @public
|
|
@@ -3826,7 +3826,7 @@ export interface GetDataSourceResponse {
|
|
|
3826
3826
|
* <p>The <code>DataSource</code> object.</p>
|
|
3827
3827
|
* @public
|
|
3828
3828
|
*/
|
|
3829
|
-
dataSource?: DataSource;
|
|
3829
|
+
dataSource?: DataSource | undefined;
|
|
3830
3830
|
}
|
|
3831
3831
|
/**
|
|
3832
3832
|
* @public
|
|
@@ -3845,20 +3845,20 @@ export interface GetDataSourceIntrospectionRequest {
|
|
|
3845
3845
|
* metadata or directives. </p>
|
|
3846
3846
|
* @public
|
|
3847
3847
|
*/
|
|
3848
|
-
includeModelsSDL?: boolean;
|
|
3848
|
+
includeModelsSDL?: boolean | undefined;
|
|
3849
3849
|
/**
|
|
3850
3850
|
* <p>Determines the number of types to be returned in a single response before paginating.
|
|
3851
3851
|
* This value is typically taken from <code>nextToken</code> value from the previous
|
|
3852
3852
|
* response.</p>
|
|
3853
3853
|
* @public
|
|
3854
3854
|
*/
|
|
3855
|
-
nextToken?: string;
|
|
3855
|
+
nextToken?: string | undefined;
|
|
3856
3856
|
/**
|
|
3857
3857
|
* <p>The maximum number of introspected types that will be returned in a single
|
|
3858
3858
|
* response.</p>
|
|
3859
3859
|
* @public
|
|
3860
3860
|
*/
|
|
3861
|
-
maxResults?: number;
|
|
3861
|
+
maxResults?: number | undefined;
|
|
3862
3862
|
}
|
|
3863
3863
|
/**
|
|
3864
3864
|
* <p>The index that was retrieved from the introspected data.</p>
|
|
@@ -3869,12 +3869,12 @@ export interface DataSourceIntrospectionModelIndex {
|
|
|
3869
3869
|
* <p>The name of the index.</p>
|
|
3870
3870
|
* @public
|
|
3871
3871
|
*/
|
|
3872
|
-
name?: string;
|
|
3872
|
+
name?: string | undefined;
|
|
3873
3873
|
/**
|
|
3874
3874
|
* <p>The fields of the index.</p>
|
|
3875
3875
|
* @public
|
|
3876
3876
|
*/
|
|
3877
|
-
fields?: string[];
|
|
3877
|
+
fields?: string[] | undefined;
|
|
3878
3878
|
}
|
|
3879
3879
|
/**
|
|
3880
3880
|
* @public
|
|
@@ -3907,7 +3907,7 @@ export interface GetDomainNameResponse {
|
|
|
3907
3907
|
* <p>The configuration for the <code>DomainName</code>.</p>
|
|
3908
3908
|
* @public
|
|
3909
3909
|
*/
|
|
3910
|
-
domainNameConfig?: DomainNameConfig;
|
|
3910
|
+
domainNameConfig?: DomainNameConfig | undefined;
|
|
3911
3911
|
}
|
|
3912
3912
|
/**
|
|
3913
3913
|
* @public
|
|
@@ -3932,7 +3932,7 @@ export interface GetFunctionResponse {
|
|
|
3932
3932
|
* <p>The <code>Function</code> object.</p>
|
|
3933
3933
|
* @public
|
|
3934
3934
|
*/
|
|
3935
|
-
functionConfiguration?: FunctionConfiguration;
|
|
3935
|
+
functionConfiguration?: FunctionConfiguration | undefined;
|
|
3936
3936
|
}
|
|
3937
3937
|
/**
|
|
3938
3938
|
* @public
|
|
@@ -3952,7 +3952,7 @@ export interface GetGraphqlApiResponse {
|
|
|
3952
3952
|
* <p>The <code>GraphqlApi</code> object.</p>
|
|
3953
3953
|
* @public
|
|
3954
3954
|
*/
|
|
3955
|
-
graphqlApi?: GraphqlApi;
|
|
3955
|
+
graphqlApi?: GraphqlApi | undefined;
|
|
3956
3956
|
}
|
|
3957
3957
|
/**
|
|
3958
3958
|
* @public
|
|
@@ -3973,7 +3973,7 @@ export interface GetGraphqlApiEnvironmentVariablesResponse {
|
|
|
3973
3973
|
* format.</p>
|
|
3974
3974
|
* @public
|
|
3975
3975
|
*/
|
|
3976
|
-
environmentVariables?: Record<string, string
|
|
3976
|
+
environmentVariables?: Record<string, string> | undefined;
|
|
3977
3977
|
}
|
|
3978
3978
|
/**
|
|
3979
3979
|
* @public
|
|
@@ -4005,7 +4005,7 @@ export interface GetIntrospectionSchemaRequest {
|
|
|
4005
4005
|
* <p>A flag that specifies whether the schema introspection should contain directives.</p>
|
|
4006
4006
|
* @public
|
|
4007
4007
|
*/
|
|
4008
|
-
includeDirectives?: boolean;
|
|
4008
|
+
includeDirectives?: boolean | undefined;
|
|
4009
4009
|
}
|
|
4010
4010
|
/**
|
|
4011
4011
|
* @public
|
|
@@ -4017,7 +4017,7 @@ export interface GetIntrospectionSchemaResponse {
|
|
|
4017
4017
|
* documentation</a>.</p>
|
|
4018
4018
|
* @public
|
|
4019
4019
|
*/
|
|
4020
|
-
schema?: Uint8Array;
|
|
4020
|
+
schema?: Uint8Array | undefined;
|
|
4021
4021
|
}
|
|
4022
4022
|
/**
|
|
4023
4023
|
* <p>The GraphQL schema is not valid.</p>
|
|
@@ -4059,7 +4059,7 @@ export interface GetResolverResponse {
|
|
|
4059
4059
|
* <p>The <code>Resolver</code> object.</p>
|
|
4060
4060
|
* @public
|
|
4061
4061
|
*/
|
|
4062
|
-
resolver?: Resolver;
|
|
4062
|
+
resolver?: Resolver | undefined;
|
|
4063
4063
|
}
|
|
4064
4064
|
/**
|
|
4065
4065
|
* @public
|
|
@@ -4096,12 +4096,12 @@ export interface GetSchemaCreationStatusResponse {
|
|
|
4096
4096
|
* the schema is in the ACTIVE state, you can add data.</p>
|
|
4097
4097
|
* @public
|
|
4098
4098
|
*/
|
|
4099
|
-
status?: SchemaStatus;
|
|
4099
|
+
status?: SchemaStatus | undefined;
|
|
4100
4100
|
/**
|
|
4101
4101
|
* <p>Detailed information about the status of the schema creation operation.</p>
|
|
4102
4102
|
* @public
|
|
4103
4103
|
*/
|
|
4104
|
-
details?: string;
|
|
4104
|
+
details?: string | undefined;
|
|
4105
4105
|
}
|
|
4106
4106
|
/**
|
|
4107
4107
|
* @public
|
|
@@ -4129,7 +4129,7 @@ export interface GetSourceApiAssociationResponse {
|
|
|
4129
4129
|
* <p>The <code>SourceApiAssociation</code> object data.</p>
|
|
4130
4130
|
* @public
|
|
4131
4131
|
*/
|
|
4132
|
-
sourceApiAssociation?: SourceApiAssociation;
|
|
4132
|
+
sourceApiAssociation?: SourceApiAssociation | undefined;
|
|
4133
4133
|
}
|
|
4134
4134
|
/**
|
|
4135
4135
|
* @public
|
|
@@ -4159,7 +4159,7 @@ export interface GetTypeResponse {
|
|
|
4159
4159
|
* <p>The <code>Type</code> object.</p>
|
|
4160
4160
|
* @public
|
|
4161
4161
|
*/
|
|
4162
|
-
type?: Type;
|
|
4162
|
+
type?: Type | undefined;
|
|
4163
4163
|
}
|
|
4164
4164
|
/**
|
|
4165
4165
|
* @public
|
|
@@ -4175,12 +4175,12 @@ export interface ListApiKeysRequest {
|
|
|
4175
4175
|
* use to return the next set of items in the list.</p>
|
|
4176
4176
|
* @public
|
|
4177
4177
|
*/
|
|
4178
|
-
nextToken?: string;
|
|
4178
|
+
nextToken?: string | undefined;
|
|
4179
4179
|
/**
|
|
4180
4180
|
* <p>The maximum number of results that you want the request to return.</p>
|
|
4181
4181
|
* @public
|
|
4182
4182
|
*/
|
|
4183
|
-
maxResults?: number;
|
|
4183
|
+
maxResults?: number | undefined;
|
|
4184
4184
|
}
|
|
4185
4185
|
/**
|
|
4186
4186
|
* @public
|
|
@@ -4190,13 +4190,13 @@ export interface ListApiKeysResponse {
|
|
|
4190
4190
|
* <p>The <code>ApiKey</code> objects.</p>
|
|
4191
4191
|
* @public
|
|
4192
4192
|
*/
|
|
4193
|
-
apiKeys?: ApiKey[];
|
|
4193
|
+
apiKeys?: ApiKey[] | undefined;
|
|
4194
4194
|
/**
|
|
4195
4195
|
* <p>An identifier to pass in the next request to this operation to return the next set of
|
|
4196
4196
|
* items in the list.</p>
|
|
4197
4197
|
* @public
|
|
4198
4198
|
*/
|
|
4199
|
-
nextToken?: string;
|
|
4199
|
+
nextToken?: string | undefined;
|
|
4200
4200
|
}
|
|
4201
4201
|
/**
|
|
4202
4202
|
* @public
|
|
@@ -4207,12 +4207,12 @@ export interface ListApisRequest {
|
|
|
4207
4207
|
* use to return the next set of items in the list.</p>
|
|
4208
4208
|
* @public
|
|
4209
4209
|
*/
|
|
4210
|
-
nextToken?: string;
|
|
4210
|
+
nextToken?: string | undefined;
|
|
4211
4211
|
/**
|
|
4212
4212
|
* <p>The maximum number of results that you want the request to return.</p>
|
|
4213
4213
|
* @public
|
|
4214
4214
|
*/
|
|
4215
|
-
maxResults?: number;
|
|
4215
|
+
maxResults?: number | undefined;
|
|
4216
4216
|
}
|
|
4217
4217
|
/**
|
|
4218
4218
|
* @public
|
|
@@ -4222,13 +4222,13 @@ export interface ListApisResponse {
|
|
|
4222
4222
|
* <p>The <code>Api</code> objects.</p>
|
|
4223
4223
|
* @public
|
|
4224
4224
|
*/
|
|
4225
|
-
apis?: Api[];
|
|
4225
|
+
apis?: Api[] | undefined;
|
|
4226
4226
|
/**
|
|
4227
4227
|
* <p>An identifier that was returned from the previous call to this operation, which you can
|
|
4228
4228
|
* use to return the next set of items in the list.</p>
|
|
4229
4229
|
* @public
|
|
4230
4230
|
*/
|
|
4231
|
-
nextToken?: string;
|
|
4231
|
+
nextToken?: string | undefined;
|
|
4232
4232
|
}
|
|
4233
4233
|
/**
|
|
4234
4234
|
* @public
|
|
@@ -4244,12 +4244,12 @@ export interface ListChannelNamespacesRequest {
|
|
|
4244
4244
|
* use to return the next set of items in the list.</p>
|
|
4245
4245
|
* @public
|
|
4246
4246
|
*/
|
|
4247
|
-
nextToken?: string;
|
|
4247
|
+
nextToken?: string | undefined;
|
|
4248
4248
|
/**
|
|
4249
4249
|
* <p>The maximum number of results that you want the request to return.</p>
|
|
4250
4250
|
* @public
|
|
4251
4251
|
*/
|
|
4252
|
-
maxResults?: number;
|
|
4252
|
+
maxResults?: number | undefined;
|
|
4253
4253
|
}
|
|
4254
4254
|
/**
|
|
4255
4255
|
* @public
|
|
@@ -4259,13 +4259,13 @@ export interface ListChannelNamespacesResponse {
|
|
|
4259
4259
|
* <p>The <code>ChannelNamespace</code> objects.</p>
|
|
4260
4260
|
* @public
|
|
4261
4261
|
*/
|
|
4262
|
-
channelNamespaces?: ChannelNamespace[];
|
|
4262
|
+
channelNamespaces?: ChannelNamespace[] | undefined;
|
|
4263
4263
|
/**
|
|
4264
4264
|
* <p>An identifier that was returned from the previous call to this operation, which you can
|
|
4265
4265
|
* use to return the next set of items in the list.</p>
|
|
4266
4266
|
* @public
|
|
4267
4267
|
*/
|
|
4268
|
-
nextToken?: string;
|
|
4268
|
+
nextToken?: string | undefined;
|
|
4269
4269
|
}
|
|
4270
4270
|
/**
|
|
4271
4271
|
* @public
|
|
@@ -4281,12 +4281,12 @@ export interface ListDataSourcesRequest {
|
|
|
4281
4281
|
* use to return the next set of items in the list.</p>
|
|
4282
4282
|
* @public
|
|
4283
4283
|
*/
|
|
4284
|
-
nextToken?: string;
|
|
4284
|
+
nextToken?: string | undefined;
|
|
4285
4285
|
/**
|
|
4286
4286
|
* <p>The maximum number of results that you want the request to return.</p>
|
|
4287
4287
|
* @public
|
|
4288
4288
|
*/
|
|
4289
|
-
maxResults?: number;
|
|
4289
|
+
maxResults?: number | undefined;
|
|
4290
4290
|
}
|
|
4291
4291
|
/**
|
|
4292
4292
|
* @public
|
|
@@ -4296,13 +4296,13 @@ export interface ListDataSourcesResponse {
|
|
|
4296
4296
|
* <p>The <code>DataSource</code> objects.</p>
|
|
4297
4297
|
* @public
|
|
4298
4298
|
*/
|
|
4299
|
-
dataSources?: DataSource[];
|
|
4299
|
+
dataSources?: DataSource[] | undefined;
|
|
4300
4300
|
/**
|
|
4301
4301
|
* <p>An identifier to pass in the next request to this operation to return the next set of
|
|
4302
4302
|
* items in the list.</p>
|
|
4303
4303
|
* @public
|
|
4304
4304
|
*/
|
|
4305
|
-
nextToken?: string;
|
|
4305
|
+
nextToken?: string | undefined;
|
|
4306
4306
|
}
|
|
4307
4307
|
/**
|
|
4308
4308
|
* @public
|
|
@@ -4313,12 +4313,12 @@ export interface ListDomainNamesRequest {
|
|
|
4313
4313
|
* use to return the next set of items in the list.</p>
|
|
4314
4314
|
* @public
|
|
4315
4315
|
*/
|
|
4316
|
-
nextToken?: string;
|
|
4316
|
+
nextToken?: string | undefined;
|
|
4317
4317
|
/**
|
|
4318
4318
|
* <p>The maximum number of results that you want the request to return.</p>
|
|
4319
4319
|
* @public
|
|
4320
4320
|
*/
|
|
4321
|
-
maxResults?: number;
|
|
4321
|
+
maxResults?: number | undefined;
|
|
4322
4322
|
}
|
|
4323
4323
|
/**
|
|
4324
4324
|
* @public
|
|
@@ -4328,13 +4328,13 @@ export interface ListDomainNamesResponse {
|
|
|
4328
4328
|
* <p>Lists configurations for multiple domain names.</p>
|
|
4329
4329
|
* @public
|
|
4330
4330
|
*/
|
|
4331
|
-
domainNameConfigs?: DomainNameConfig[];
|
|
4331
|
+
domainNameConfigs?: DomainNameConfig[] | undefined;
|
|
4332
4332
|
/**
|
|
4333
4333
|
* <p>An identifier that was returned from the previous call to this operation, which you can
|
|
4334
4334
|
* use to return the next set of items in the list.</p>
|
|
4335
4335
|
* @public
|
|
4336
4336
|
*/
|
|
4337
|
-
nextToken?: string;
|
|
4337
|
+
nextToken?: string | undefined;
|
|
4338
4338
|
}
|
|
4339
4339
|
/**
|
|
4340
4340
|
* @public
|
|
@@ -4350,12 +4350,12 @@ export interface ListFunctionsRequest {
|
|
|
4350
4350
|
* use to return the next set of items in the list.</p>
|
|
4351
4351
|
* @public
|
|
4352
4352
|
*/
|
|
4353
|
-
nextToken?: string;
|
|
4353
|
+
nextToken?: string | undefined;
|
|
4354
4354
|
/**
|
|
4355
4355
|
* <p>The maximum number of results that you want the request to return.</p>
|
|
4356
4356
|
* @public
|
|
4357
4357
|
*/
|
|
4358
|
-
maxResults?: number;
|
|
4358
|
+
maxResults?: number | undefined;
|
|
4359
4359
|
}
|
|
4360
4360
|
/**
|
|
4361
4361
|
* @public
|
|
@@ -4365,13 +4365,13 @@ export interface ListFunctionsResponse {
|
|
|
4365
4365
|
* <p>A list of <code>Function</code> objects.</p>
|
|
4366
4366
|
* @public
|
|
4367
4367
|
*/
|
|
4368
|
-
functions?: FunctionConfiguration[];
|
|
4368
|
+
functions?: FunctionConfiguration[] | undefined;
|
|
4369
4369
|
/**
|
|
4370
4370
|
* <p>An identifier that was returned from the previous call to this operation, which you can
|
|
4371
4371
|
* use to return the next set of items in the list.</p>
|
|
4372
4372
|
* @public
|
|
4373
4373
|
*/
|
|
4374
|
-
nextToken?: string;
|
|
4374
|
+
nextToken?: string | undefined;
|
|
4375
4375
|
}
|
|
4376
4376
|
/**
|
|
4377
4377
|
* @public
|
|
@@ -4394,23 +4394,23 @@ export interface ListGraphqlApisRequest {
|
|
|
4394
4394
|
* use to return the next set of items in the list.</p>
|
|
4395
4395
|
* @public
|
|
4396
4396
|
*/
|
|
4397
|
-
nextToken?: string;
|
|
4397
|
+
nextToken?: string | undefined;
|
|
4398
4398
|
/**
|
|
4399
4399
|
* <p>The maximum number of results that you want the request to return.</p>
|
|
4400
4400
|
* @public
|
|
4401
4401
|
*/
|
|
4402
|
-
maxResults?: number;
|
|
4402
|
+
maxResults?: number | undefined;
|
|
4403
4403
|
/**
|
|
4404
4404
|
* <p>The value that indicates whether the GraphQL API is a standard API
|
|
4405
4405
|
* (<code>GRAPHQL</code>) or merged API (<code>MERGED</code>).</p>
|
|
4406
4406
|
* @public
|
|
4407
4407
|
*/
|
|
4408
|
-
apiType?: GraphQLApiType;
|
|
4408
|
+
apiType?: GraphQLApiType | undefined;
|
|
4409
4409
|
/**
|
|
4410
4410
|
* <p>The account owner of the GraphQL API.</p>
|
|
4411
4411
|
* @public
|
|
4412
4412
|
*/
|
|
4413
|
-
owner?: Ownership;
|
|
4413
|
+
owner?: Ownership | undefined;
|
|
4414
4414
|
}
|
|
4415
4415
|
/**
|
|
4416
4416
|
* @public
|
|
@@ -4420,13 +4420,13 @@ export interface ListGraphqlApisResponse {
|
|
|
4420
4420
|
* <p>The <code>GraphqlApi</code> objects.</p>
|
|
4421
4421
|
* @public
|
|
4422
4422
|
*/
|
|
4423
|
-
graphqlApis?: GraphqlApi[];
|
|
4423
|
+
graphqlApis?: GraphqlApi[] | undefined;
|
|
4424
4424
|
/**
|
|
4425
4425
|
* <p>An identifier to pass in the next request to this operation to return the next set of
|
|
4426
4426
|
* items in the list.</p>
|
|
4427
4427
|
* @public
|
|
4428
4428
|
*/
|
|
4429
|
-
nextToken?: string;
|
|
4429
|
+
nextToken?: string | undefined;
|
|
4430
4430
|
}
|
|
4431
4431
|
/**
|
|
4432
4432
|
* @public
|
|
@@ -4447,12 +4447,12 @@ export interface ListResolversRequest {
|
|
|
4447
4447
|
* use to return the next set of items in the list.</p>
|
|
4448
4448
|
* @public
|
|
4449
4449
|
*/
|
|
4450
|
-
nextToken?: string;
|
|
4450
|
+
nextToken?: string | undefined;
|
|
4451
4451
|
/**
|
|
4452
4452
|
* <p>The maximum number of results that you want the request to return.</p>
|
|
4453
4453
|
* @public
|
|
4454
4454
|
*/
|
|
4455
|
-
maxResults?: number;
|
|
4455
|
+
maxResults?: number | undefined;
|
|
4456
4456
|
}
|
|
4457
4457
|
/**
|
|
4458
4458
|
* @public
|
|
@@ -4462,13 +4462,13 @@ export interface ListResolversResponse {
|
|
|
4462
4462
|
* <p>The <code>Resolver</code> objects.</p>
|
|
4463
4463
|
* @public
|
|
4464
4464
|
*/
|
|
4465
|
-
resolvers?: Resolver[];
|
|
4465
|
+
resolvers?: Resolver[] | undefined;
|
|
4466
4466
|
/**
|
|
4467
4467
|
* <p>An identifier to pass in the next request to this operation to return the next set of
|
|
4468
4468
|
* items in the list.</p>
|
|
4469
4469
|
* @public
|
|
4470
4470
|
*/
|
|
4471
|
-
nextToken?: string;
|
|
4471
|
+
nextToken?: string | undefined;
|
|
4472
4472
|
}
|
|
4473
4473
|
/**
|
|
4474
4474
|
* @public
|
|
@@ -4489,12 +4489,12 @@ export interface ListResolversByFunctionRequest {
|
|
|
4489
4489
|
* use to return the next set of items in the list.</p>
|
|
4490
4490
|
* @public
|
|
4491
4491
|
*/
|
|
4492
|
-
nextToken?: string;
|
|
4492
|
+
nextToken?: string | undefined;
|
|
4493
4493
|
/**
|
|
4494
4494
|
* <p>The maximum number of results that you want the request to return.</p>
|
|
4495
4495
|
* @public
|
|
4496
4496
|
*/
|
|
4497
|
-
maxResults?: number;
|
|
4497
|
+
maxResults?: number | undefined;
|
|
4498
4498
|
}
|
|
4499
4499
|
/**
|
|
4500
4500
|
* @public
|
|
@@ -4504,12 +4504,12 @@ export interface ListResolversByFunctionResponse {
|
|
|
4504
4504
|
* <p>The list of resolvers.</p>
|
|
4505
4505
|
* @public
|
|
4506
4506
|
*/
|
|
4507
|
-
resolvers?: Resolver[];
|
|
4507
|
+
resolvers?: Resolver[] | undefined;
|
|
4508
4508
|
/**
|
|
4509
4509
|
* <p>An identifier that you can use to return the next set of items in the list.</p>
|
|
4510
4510
|
* @public
|
|
4511
4511
|
*/
|
|
4512
|
-
nextToken?: string;
|
|
4512
|
+
nextToken?: string | undefined;
|
|
4513
4513
|
}
|
|
4514
4514
|
/**
|
|
4515
4515
|
* @public
|
|
@@ -4525,12 +4525,12 @@ export interface ListSourceApiAssociationsRequest {
|
|
|
4525
4525
|
* use to return the next set of items in the list.</p>
|
|
4526
4526
|
* @public
|
|
4527
4527
|
*/
|
|
4528
|
-
nextToken?: string;
|
|
4528
|
+
nextToken?: string | undefined;
|
|
4529
4529
|
/**
|
|
4530
4530
|
* <p>The maximum number of results that you want the request to return.</p>
|
|
4531
4531
|
* @public
|
|
4532
4532
|
*/
|
|
4533
|
-
maxResults?: number;
|
|
4533
|
+
maxResults?: number | undefined;
|
|
4534
4534
|
}
|
|
4535
4535
|
/**
|
|
4536
4536
|
* <p>Describes the ARNs and IDs of associations, Merged APIs, and source APIs.</p>
|
|
@@ -4541,37 +4541,37 @@ export interface SourceApiAssociationSummary {
|
|
|
4541
4541
|
* <p>The ID generated by the AppSync service for the source API association.</p>
|
|
4542
4542
|
* @public
|
|
4543
4543
|
*/
|
|
4544
|
-
associationId?: string;
|
|
4544
|
+
associationId?: string | undefined;
|
|
4545
4545
|
/**
|
|
4546
4546
|
* <p>The Amazon Resource Name (ARN) of the source API association.</p>
|
|
4547
4547
|
* @public
|
|
4548
4548
|
*/
|
|
4549
|
-
associationArn?: string;
|
|
4549
|
+
associationArn?: string | undefined;
|
|
4550
4550
|
/**
|
|
4551
4551
|
* <p>The ID of the AppSync source API.</p>
|
|
4552
4552
|
* @public
|
|
4553
4553
|
*/
|
|
4554
|
-
sourceApiId?: string;
|
|
4554
|
+
sourceApiId?: string | undefined;
|
|
4555
4555
|
/**
|
|
4556
4556
|
* <p>The Amazon Resource Name (ARN) of the AppSync Source API.</p>
|
|
4557
4557
|
* @public
|
|
4558
4558
|
*/
|
|
4559
|
-
sourceApiArn?: string;
|
|
4559
|
+
sourceApiArn?: string | undefined;
|
|
4560
4560
|
/**
|
|
4561
4561
|
* <p>The ID of the AppSync Merged API.</p>
|
|
4562
4562
|
* @public
|
|
4563
4563
|
*/
|
|
4564
|
-
mergedApiId?: string;
|
|
4564
|
+
mergedApiId?: string | undefined;
|
|
4565
4565
|
/**
|
|
4566
4566
|
* <p>The Amazon Resource Name (ARN) of the AppSync Merged API.</p>
|
|
4567
4567
|
* @public
|
|
4568
4568
|
*/
|
|
4569
|
-
mergedApiArn?: string;
|
|
4569
|
+
mergedApiArn?: string | undefined;
|
|
4570
4570
|
/**
|
|
4571
4571
|
* <p>The description field.</p>
|
|
4572
4572
|
* @public
|
|
4573
4573
|
*/
|
|
4574
|
-
description?: string;
|
|
4574
|
+
description?: string | undefined;
|
|
4575
4575
|
}
|
|
4576
4576
|
/**
|
|
4577
4577
|
* @public
|
|
@@ -4581,13 +4581,13 @@ export interface ListSourceApiAssociationsResponse {
|
|
|
4581
4581
|
* <p>The <code>SourceApiAssociationSummary</code> object data.</p>
|
|
4582
4582
|
* @public
|
|
4583
4583
|
*/
|
|
4584
|
-
sourceApiAssociationSummaries?: SourceApiAssociationSummary[];
|
|
4584
|
+
sourceApiAssociationSummaries?: SourceApiAssociationSummary[] | undefined;
|
|
4585
4585
|
/**
|
|
4586
4586
|
* <p>An identifier that was returned from the previous call to this operation, which you can
|
|
4587
4587
|
* use to return the next set of items in the list.</p>
|
|
4588
4588
|
* @public
|
|
4589
4589
|
*/
|
|
4590
|
-
nextToken?: string;
|
|
4590
|
+
nextToken?: string | undefined;
|
|
4591
4591
|
}
|
|
4592
4592
|
/**
|
|
4593
4593
|
* @public
|
|
@@ -4607,7 +4607,7 @@ export interface ListTagsForResourceResponse {
|
|
|
4607
4607
|
* <p>A <code>TagMap</code> object.</p>
|
|
4608
4608
|
* @public
|
|
4609
4609
|
*/
|
|
4610
|
-
tags?: Record<string, string
|
|
4610
|
+
tags?: Record<string, string> | undefined;
|
|
4611
4611
|
}
|
|
4612
4612
|
/**
|
|
4613
4613
|
* @public
|
|
@@ -4628,12 +4628,12 @@ export interface ListTypesRequest {
|
|
|
4628
4628
|
* use to return the next set of items in the list.</p>
|
|
4629
4629
|
* @public
|
|
4630
4630
|
*/
|
|
4631
|
-
nextToken?: string;
|
|
4631
|
+
nextToken?: string | undefined;
|
|
4632
4632
|
/**
|
|
4633
4633
|
* <p>The maximum number of results that you want the request to return.</p>
|
|
4634
4634
|
* @public
|
|
4635
4635
|
*/
|
|
4636
|
-
maxResults?: number;
|
|
4636
|
+
maxResults?: number | undefined;
|
|
4637
4637
|
}
|
|
4638
4638
|
/**
|
|
4639
4639
|
* @public
|
|
@@ -4643,13 +4643,13 @@ export interface ListTypesResponse {
|
|
|
4643
4643
|
* <p>The <code>Type</code> objects.</p>
|
|
4644
4644
|
* @public
|
|
4645
4645
|
*/
|
|
4646
|
-
types?: Type[];
|
|
4646
|
+
types?: Type[] | undefined;
|
|
4647
4647
|
/**
|
|
4648
4648
|
* <p>An identifier to pass in the next request to this operation to return the next set of
|
|
4649
4649
|
* items in the list.</p>
|
|
4650
4650
|
* @public
|
|
4651
4651
|
*/
|
|
4652
|
-
nextToken?: string;
|
|
4652
|
+
nextToken?: string | undefined;
|
|
4653
4653
|
}
|
|
4654
4654
|
/**
|
|
4655
4655
|
* @public
|
|
@@ -4678,12 +4678,12 @@ export interface ListTypesByAssociationRequest {
|
|
|
4678
4678
|
* use to return the next set of items in the list.</p>
|
|
4679
4679
|
* @public
|
|
4680
4680
|
*/
|
|
4681
|
-
nextToken?: string;
|
|
4681
|
+
nextToken?: string | undefined;
|
|
4682
4682
|
/**
|
|
4683
4683
|
* <p>The maximum number of results that you want the request to return.</p>
|
|
4684
4684
|
* @public
|
|
4685
4685
|
*/
|
|
4686
|
-
maxResults?: number;
|
|
4686
|
+
maxResults?: number | undefined;
|
|
4687
4687
|
}
|
|
4688
4688
|
/**
|
|
4689
4689
|
* @public
|
|
@@ -4693,13 +4693,13 @@ export interface ListTypesByAssociationResponse {
|
|
|
4693
4693
|
* <p>The <code>Type</code> objects.</p>
|
|
4694
4694
|
* @public
|
|
4695
4695
|
*/
|
|
4696
|
-
types?: Type[];
|
|
4696
|
+
types?: Type[] | undefined;
|
|
4697
4697
|
/**
|
|
4698
4698
|
* <p>An identifier that was returned from the previous call to this operation, which you can
|
|
4699
4699
|
* use to return the next set of items in the list.</p>
|
|
4700
4700
|
* @public
|
|
4701
4701
|
*/
|
|
4702
|
-
nextToken?: string;
|
|
4702
|
+
nextToken?: string | undefined;
|
|
4703
4703
|
}
|
|
4704
4704
|
/**
|
|
4705
4705
|
* @public
|
|
@@ -4752,7 +4752,7 @@ export interface PutGraphqlApiEnvironmentVariablesResponse {
|
|
|
4752
4752
|
* format.</p>
|
|
4753
4753
|
* @public
|
|
4754
4754
|
*/
|
|
4755
|
-
environmentVariables?: Record<string, string
|
|
4755
|
+
environmentVariables?: Record<string, string> | undefined;
|
|
4756
4756
|
}
|
|
4757
4757
|
/**
|
|
4758
4758
|
* <p>Contains the metadata required to introspect the RDS cluster.</p>
|
|
@@ -4786,7 +4786,7 @@ export interface StartDataSourceIntrospectionRequest {
|
|
|
4786
4786
|
* <p>The <code>rdsDataApiConfig</code> object data.</p>
|
|
4787
4787
|
* @public
|
|
4788
4788
|
*/
|
|
4789
|
-
rdsDataApiConfig?: RdsDataApiConfig;
|
|
4789
|
+
rdsDataApiConfig?: RdsDataApiConfig | undefined;
|
|
4790
4790
|
}
|
|
4791
4791
|
/**
|
|
4792
4792
|
* @public
|
|
@@ -4797,7 +4797,7 @@ export interface StartDataSourceIntrospectionResponse {
|
|
|
4797
4797
|
* reference the instrospection record.</p>
|
|
4798
4798
|
* @public
|
|
4799
4799
|
*/
|
|
4800
|
-
introspectionId?: string;
|
|
4800
|
+
introspectionId?: string | undefined;
|
|
4801
4801
|
/**
|
|
4802
4802
|
* <p>The status of the introspection during creation. By default, when a new instrospection
|
|
4803
4803
|
* has been created, the status will be set to <code>PROCESSING</code>. Once the operation has
|
|
@@ -4806,14 +4806,14 @@ export interface StartDataSourceIntrospectionResponse {
|
|
|
4806
4806
|
* and its details as an <code>introspectionStatusDetail</code>.</p>
|
|
4807
4807
|
* @public
|
|
4808
4808
|
*/
|
|
4809
|
-
introspectionStatus?: DataSourceIntrospectionStatus;
|
|
4809
|
+
introspectionStatus?: DataSourceIntrospectionStatus | undefined;
|
|
4810
4810
|
/**
|
|
4811
4811
|
* <p>The error detail field. When a <code>FAILED</code>
|
|
4812
4812
|
* <code>introspectionStatus</code> is returned, the <code>introspectionStatusDetail</code>
|
|
4813
4813
|
* will also return the exact error that was generated during the operation.</p>
|
|
4814
4814
|
* @public
|
|
4815
4815
|
*/
|
|
4816
|
-
introspectionStatusDetail?: string;
|
|
4816
|
+
introspectionStatusDetail?: string | undefined;
|
|
4817
4817
|
}
|
|
4818
4818
|
/**
|
|
4819
4819
|
* @public
|
|
@@ -4839,7 +4839,7 @@ export interface StartSchemaCreationResponse {
|
|
|
4839
4839
|
* the schema is in the ACTIVE state, you can add data.</p>
|
|
4840
4840
|
* @public
|
|
4841
4841
|
*/
|
|
4842
|
-
status?: SchemaStatus;
|
|
4842
|
+
status?: SchemaStatus | undefined;
|
|
4843
4843
|
}
|
|
4844
4844
|
/**
|
|
4845
4845
|
* @public
|
|
@@ -4867,7 +4867,7 @@ export interface StartSchemaMergeResponse {
|
|
|
4867
4867
|
* <p>The state of the source API association.</p>
|
|
4868
4868
|
* @public
|
|
4869
4869
|
*/
|
|
4870
|
-
sourceApiAssociationStatus?: SourceApiAssociationStatus;
|
|
4870
|
+
sourceApiAssociationStatus?: SourceApiAssociationStatus | undefined;
|
|
4871
4871
|
}
|
|
4872
4872
|
/**
|
|
4873
4873
|
* @public
|
|
@@ -4927,13 +4927,13 @@ export interface UpdateApiRequest {
|
|
|
4927
4927
|
* <p>The owner contact information for the <code>Api</code>.</p>
|
|
4928
4928
|
* @public
|
|
4929
4929
|
*/
|
|
4930
|
-
ownerContact?: string;
|
|
4930
|
+
ownerContact?: string | undefined;
|
|
4931
4931
|
/**
|
|
4932
4932
|
* <p>The new event configuration. This includes the default authorization configuration for
|
|
4933
4933
|
* connecting, publishing, and subscribing to an Event API.</p>
|
|
4934
4934
|
* @public
|
|
4935
4935
|
*/
|
|
4936
|
-
eventConfig?: EventConfig;
|
|
4936
|
+
eventConfig?: EventConfig | undefined;
|
|
4937
4937
|
}
|
|
4938
4938
|
/**
|
|
4939
4939
|
* @public
|
|
@@ -4943,7 +4943,7 @@ export interface UpdateApiResponse {
|
|
|
4943
4943
|
* <p>The <code>Api</code> object.</p>
|
|
4944
4944
|
* @public
|
|
4945
4945
|
*/
|
|
4946
|
-
api?: Api;
|
|
4946
|
+
api?: Api | undefined;
|
|
4947
4947
|
}
|
|
4948
4948
|
/**
|
|
4949
4949
|
* <p>Represents the input of a <code>UpdateApiCache</code> operation.</p>
|
|
@@ -5075,7 +5075,7 @@ export interface UpdateApiCacheRequest {
|
|
|
5075
5075
|
* <code>DISABLED</code>.</p>
|
|
5076
5076
|
* @public
|
|
5077
5077
|
*/
|
|
5078
|
-
healthMetricsConfig?: CacheHealthMetricsConfig;
|
|
5078
|
+
healthMetricsConfig?: CacheHealthMetricsConfig | undefined;
|
|
5079
5079
|
}
|
|
5080
5080
|
/**
|
|
5081
5081
|
* <p>Represents the output of a <code>UpdateApiCache</code> operation.</p>
|
|
@@ -5086,7 +5086,7 @@ export interface UpdateApiCacheResponse {
|
|
|
5086
5086
|
* <p>The <code>ApiCache</code> object.</p>
|
|
5087
5087
|
* @public
|
|
5088
5088
|
*/
|
|
5089
|
-
apiCache?: ApiCache;
|
|
5089
|
+
apiCache?: ApiCache | undefined;
|
|
5090
5090
|
}
|
|
5091
5091
|
/**
|
|
5092
5092
|
* @public
|
|
@@ -5106,13 +5106,13 @@ export interface UpdateApiKeyRequest {
|
|
|
5106
5106
|
* <p>A description of the purpose of the API key.</p>
|
|
5107
5107
|
* @public
|
|
5108
5108
|
*/
|
|
5109
|
-
description?: string;
|
|
5109
|
+
description?: string | undefined;
|
|
5110
5110
|
/**
|
|
5111
5111
|
* <p>From the update time, the time after which the API key expires. The date is represented
|
|
5112
5112
|
* as seconds since the epoch. For more information, see .</p>
|
|
5113
5113
|
* @public
|
|
5114
5114
|
*/
|
|
5115
|
-
expires?: number;
|
|
5115
|
+
expires?: number | undefined;
|
|
5116
5116
|
}
|
|
5117
5117
|
/**
|
|
5118
5118
|
* @public
|
|
@@ -5122,7 +5122,7 @@ export interface UpdateApiKeyResponse {
|
|
|
5122
5122
|
* <p>The API key.</p>
|
|
5123
5123
|
* @public
|
|
5124
5124
|
*/
|
|
5125
|
-
apiKey?: ApiKey;
|
|
5125
|
+
apiKey?: ApiKey | undefined;
|
|
5126
5126
|
}
|
|
5127
5127
|
/**
|
|
5128
5128
|
* @public
|
|
@@ -5143,19 +5143,19 @@ export interface UpdateChannelNamespaceRequest {
|
|
|
5143
5143
|
* configuration overrides the default <code>Api</code> authorization configuration.</p>
|
|
5144
5144
|
* @public
|
|
5145
5145
|
*/
|
|
5146
|
-
subscribeAuthModes?: AuthMode[];
|
|
5146
|
+
subscribeAuthModes?: AuthMode[] | undefined;
|
|
5147
5147
|
/**
|
|
5148
5148
|
* <p>The authorization mode to use for publishing messages on the channel namespace. This
|
|
5149
5149
|
* configuration overrides the default <code>Api</code> authorization configuration.</p>
|
|
5150
5150
|
* @public
|
|
5151
5151
|
*/
|
|
5152
|
-
publishAuthModes?: AuthMode[];
|
|
5152
|
+
publishAuthModes?: AuthMode[] | undefined;
|
|
5153
5153
|
/**
|
|
5154
5154
|
* <p>The event handler functions that run custom business logic to process published events
|
|
5155
5155
|
* and subscribe requests.</p>
|
|
5156
5156
|
* @public
|
|
5157
5157
|
*/
|
|
5158
|
-
codeHandlers?: string;
|
|
5158
|
+
codeHandlers?: string | undefined;
|
|
5159
5159
|
}
|
|
5160
5160
|
/**
|
|
5161
5161
|
* @public
|
|
@@ -5165,7 +5165,7 @@ export interface UpdateChannelNamespaceResponse {
|
|
|
5165
5165
|
* <p>The <code>ChannelNamespace</code> object.</p>
|
|
5166
5166
|
* @public
|
|
5167
5167
|
*/
|
|
5168
|
-
channelNamespace?: ChannelNamespace;
|
|
5168
|
+
channelNamespace?: ChannelNamespace | undefined;
|
|
5169
5169
|
}
|
|
5170
5170
|
/**
|
|
5171
5171
|
* @public
|
|
@@ -5185,7 +5185,7 @@ export interface UpdateDataSourceRequest {
|
|
|
5185
5185
|
* <p>The new description for the data source.</p>
|
|
5186
5186
|
* @public
|
|
5187
5187
|
*/
|
|
5188
|
-
description?: string;
|
|
5188
|
+
description?: string | undefined;
|
|
5189
5189
|
/**
|
|
5190
5190
|
* <p>The new data source type.</p>
|
|
5191
5191
|
* @public
|
|
@@ -5195,44 +5195,44 @@ export interface UpdateDataSourceRequest {
|
|
|
5195
5195
|
* <p>The new service role Amazon Resource Name (ARN) for the data source.</p>
|
|
5196
5196
|
* @public
|
|
5197
5197
|
*/
|
|
5198
|
-
serviceRoleArn?: string;
|
|
5198
|
+
serviceRoleArn?: string | undefined;
|
|
5199
5199
|
/**
|
|
5200
5200
|
* <p>The new Amazon DynamoDB configuration.</p>
|
|
5201
5201
|
* @public
|
|
5202
5202
|
*/
|
|
5203
|
-
dynamodbConfig?: DynamodbDataSourceConfig;
|
|
5203
|
+
dynamodbConfig?: DynamodbDataSourceConfig | undefined;
|
|
5204
5204
|
/**
|
|
5205
5205
|
* <p>The new Lambda configuration.</p>
|
|
5206
5206
|
* @public
|
|
5207
5207
|
*/
|
|
5208
|
-
lambdaConfig?: LambdaDataSourceConfig;
|
|
5208
|
+
lambdaConfig?: LambdaDataSourceConfig | undefined;
|
|
5209
5209
|
/**
|
|
5210
5210
|
* <p>The new OpenSearch configuration.</p>
|
|
5211
5211
|
* <p>As of September 2021, Amazon Elasticsearch service is Amazon OpenSearch Service. This
|
|
5212
5212
|
* configuration is deprecated. Instead, use <a>UpdateDataSourceRequest$openSearchServiceConfig</a> to update an OpenSearch data source.</p>
|
|
5213
5213
|
* @public
|
|
5214
5214
|
*/
|
|
5215
|
-
elasticsearchConfig?: ElasticsearchDataSourceConfig;
|
|
5215
|
+
elasticsearchConfig?: ElasticsearchDataSourceConfig | undefined;
|
|
5216
5216
|
/**
|
|
5217
5217
|
* <p>The new OpenSearch configuration.</p>
|
|
5218
5218
|
* @public
|
|
5219
5219
|
*/
|
|
5220
|
-
openSearchServiceConfig?: OpenSearchServiceDataSourceConfig;
|
|
5220
|
+
openSearchServiceConfig?: OpenSearchServiceDataSourceConfig | undefined;
|
|
5221
5221
|
/**
|
|
5222
5222
|
* <p>The new HTTP endpoint configuration.</p>
|
|
5223
5223
|
* @public
|
|
5224
5224
|
*/
|
|
5225
|
-
httpConfig?: HttpDataSourceConfig;
|
|
5225
|
+
httpConfig?: HttpDataSourceConfig | undefined;
|
|
5226
5226
|
/**
|
|
5227
5227
|
* <p>The new relational database configuration.</p>
|
|
5228
5228
|
* @public
|
|
5229
5229
|
*/
|
|
5230
|
-
relationalDatabaseConfig?: RelationalDatabaseDataSourceConfig;
|
|
5230
|
+
relationalDatabaseConfig?: RelationalDatabaseDataSourceConfig | undefined;
|
|
5231
5231
|
/**
|
|
5232
5232
|
* <p>The new Amazon EventBridge settings.</p>
|
|
5233
5233
|
* @public
|
|
5234
5234
|
*/
|
|
5235
|
-
eventBridgeConfig?: EventBridgeDataSourceConfig;
|
|
5235
|
+
eventBridgeConfig?: EventBridgeDataSourceConfig | undefined;
|
|
5236
5236
|
/**
|
|
5237
5237
|
* <p>Enables or disables enhanced data source metrics for specified data sources. Note that
|
|
5238
5238
|
* <code>metricsConfig</code> won't be used unless the
|
|
@@ -5244,7 +5244,7 @@ export interface UpdateDataSourceRequest {
|
|
|
5244
5244
|
* <code>metricsConfig</code> can be <code>ENABLED</code> or <code>DISABLED</code>.</p>
|
|
5245
5245
|
* @public
|
|
5246
5246
|
*/
|
|
5247
|
-
metricsConfig?: DataSourceLevelMetricsConfig;
|
|
5247
|
+
metricsConfig?: DataSourceLevelMetricsConfig | undefined;
|
|
5248
5248
|
}
|
|
5249
5249
|
/**
|
|
5250
5250
|
* @public
|
|
@@ -5254,7 +5254,7 @@ export interface UpdateDataSourceResponse {
|
|
|
5254
5254
|
* <p>The updated <code>DataSource</code> object.</p>
|
|
5255
5255
|
* @public
|
|
5256
5256
|
*/
|
|
5257
|
-
dataSource?: DataSource;
|
|
5257
|
+
dataSource?: DataSource | undefined;
|
|
5258
5258
|
}
|
|
5259
5259
|
/**
|
|
5260
5260
|
* @public
|
|
@@ -5269,7 +5269,7 @@ export interface UpdateDomainNameRequest {
|
|
|
5269
5269
|
* <p>A description of the <code>DomainName</code>.</p>
|
|
5270
5270
|
* @public
|
|
5271
5271
|
*/
|
|
5272
|
-
description?: string;
|
|
5272
|
+
description?: string | undefined;
|
|
5273
5273
|
}
|
|
5274
5274
|
/**
|
|
5275
5275
|
* @public
|
|
@@ -5279,7 +5279,7 @@ export interface UpdateDomainNameResponse {
|
|
|
5279
5279
|
* <p>The configuration for the <code>DomainName</code>.</p>
|
|
5280
5280
|
* @public
|
|
5281
5281
|
*/
|
|
5282
|
-
domainNameConfig?: DomainNameConfig;
|
|
5282
|
+
domainNameConfig?: DomainNameConfig | undefined;
|
|
5283
5283
|
}
|
|
5284
5284
|
/**
|
|
5285
5285
|
* @public
|
|
@@ -5299,7 +5299,7 @@ export interface UpdateFunctionRequest {
|
|
|
5299
5299
|
* <p>The <code>Function</code> description.</p>
|
|
5300
5300
|
* @public
|
|
5301
5301
|
*/
|
|
5302
|
-
description?: string;
|
|
5302
|
+
description?: string | undefined;
|
|
5303
5303
|
/**
|
|
5304
5304
|
* <p>The function ID.</p>
|
|
5305
5305
|
* @public
|
|
@@ -5316,44 +5316,44 @@ export interface UpdateFunctionRequest {
|
|
|
5316
5316
|
* 2018-05-29 version of the request mapping template.</p>
|
|
5317
5317
|
* @public
|
|
5318
5318
|
*/
|
|
5319
|
-
requestMappingTemplate?: string;
|
|
5319
|
+
requestMappingTemplate?: string | undefined;
|
|
5320
5320
|
/**
|
|
5321
5321
|
* <p>The <code>Function</code> request mapping template.</p>
|
|
5322
5322
|
* @public
|
|
5323
5323
|
*/
|
|
5324
|
-
responseMappingTemplate?: string;
|
|
5324
|
+
responseMappingTemplate?: string | undefined;
|
|
5325
5325
|
/**
|
|
5326
5326
|
* <p>The <code>version</code> of the request mapping template. Currently, the supported value
|
|
5327
5327
|
* is 2018-05-29. Note that when using VTL and mapping templates, the
|
|
5328
5328
|
* <code>functionVersion</code> is required.</p>
|
|
5329
5329
|
* @public
|
|
5330
5330
|
*/
|
|
5331
|
-
functionVersion?: string;
|
|
5331
|
+
functionVersion?: string | undefined;
|
|
5332
5332
|
/**
|
|
5333
5333
|
* <p>Describes a Sync configuration for a resolver.</p>
|
|
5334
5334
|
* <p>Specifies which Conflict Detection strategy and Resolution strategy to use when the
|
|
5335
5335
|
* resolver is invoked.</p>
|
|
5336
5336
|
* @public
|
|
5337
5337
|
*/
|
|
5338
|
-
syncConfig?: SyncConfig;
|
|
5338
|
+
syncConfig?: SyncConfig | undefined;
|
|
5339
5339
|
/**
|
|
5340
5340
|
* <p>The maximum batching size for a resolver.</p>
|
|
5341
5341
|
* @public
|
|
5342
5342
|
*/
|
|
5343
|
-
maxBatchSize?: number;
|
|
5343
|
+
maxBatchSize?: number | undefined;
|
|
5344
5344
|
/**
|
|
5345
5345
|
* <p>Describes a runtime used by an Amazon Web Services AppSync pipeline resolver or Amazon Web Services AppSync function. Specifies the name and version of the runtime to use. Note
|
|
5346
5346
|
* that if a runtime is specified, code must also be specified.</p>
|
|
5347
5347
|
* @public
|
|
5348
5348
|
*/
|
|
5349
|
-
runtime?: AppSyncRuntime;
|
|
5349
|
+
runtime?: AppSyncRuntime | undefined;
|
|
5350
5350
|
/**
|
|
5351
5351
|
* <p>The <code>function</code> code that contains the request and response functions. When
|
|
5352
5352
|
* code is used, the <code>runtime</code> is required. The <code>runtime</code> value must be
|
|
5353
5353
|
* <code>APPSYNC_JS</code>.</p>
|
|
5354
5354
|
* @public
|
|
5355
5355
|
*/
|
|
5356
|
-
code?: string;
|
|
5356
|
+
code?: string | undefined;
|
|
5357
5357
|
}
|
|
5358
5358
|
/**
|
|
5359
5359
|
* @public
|
|
@@ -5363,7 +5363,7 @@ export interface UpdateFunctionResponse {
|
|
|
5363
5363
|
* <p>The <code>Function</code> object.</p>
|
|
5364
5364
|
* @public
|
|
5365
5365
|
*/
|
|
5366
|
-
functionConfiguration?: FunctionConfiguration;
|
|
5366
|
+
functionConfiguration?: FunctionConfiguration | undefined;
|
|
5367
5367
|
}
|
|
5368
5368
|
/**
|
|
5369
5369
|
* @public
|
|
@@ -5383,40 +5383,40 @@ export interface UpdateGraphqlApiRequest {
|
|
|
5383
5383
|
* <p>The Amazon CloudWatch Logs configuration for the <code>GraphqlApi</code> object.</p>
|
|
5384
5384
|
* @public
|
|
5385
5385
|
*/
|
|
5386
|
-
logConfig?: LogConfig;
|
|
5386
|
+
logConfig?: LogConfig | undefined;
|
|
5387
5387
|
/**
|
|
5388
5388
|
* <p>The new authentication type for the <code>GraphqlApi</code> object.</p>
|
|
5389
5389
|
* @public
|
|
5390
5390
|
*/
|
|
5391
|
-
authenticationType?: AuthenticationType;
|
|
5391
|
+
authenticationType?: AuthenticationType | undefined;
|
|
5392
5392
|
/**
|
|
5393
5393
|
* <p>The new Amazon Cognito user pool configuration for the <code>~GraphqlApi</code>
|
|
5394
5394
|
* object.</p>
|
|
5395
5395
|
* @public
|
|
5396
5396
|
*/
|
|
5397
|
-
userPoolConfig?: UserPoolConfig;
|
|
5397
|
+
userPoolConfig?: UserPoolConfig | undefined;
|
|
5398
5398
|
/**
|
|
5399
5399
|
* <p>The OpenID Connect configuration for the <code>GraphqlApi</code> object.</p>
|
|
5400
5400
|
* @public
|
|
5401
5401
|
*/
|
|
5402
|
-
openIDConnectConfig?: OpenIDConnectConfig;
|
|
5402
|
+
openIDConnectConfig?: OpenIDConnectConfig | undefined;
|
|
5403
5403
|
/**
|
|
5404
5404
|
* <p>A list of additional authentication providers for the <code>GraphqlApi</code>
|
|
5405
5405
|
* API.</p>
|
|
5406
5406
|
* @public
|
|
5407
5407
|
*/
|
|
5408
|
-
additionalAuthenticationProviders?: AdditionalAuthenticationProvider[];
|
|
5408
|
+
additionalAuthenticationProviders?: AdditionalAuthenticationProvider[] | undefined;
|
|
5409
5409
|
/**
|
|
5410
5410
|
* <p>A flag indicating whether to use X-Ray tracing for the
|
|
5411
5411
|
* <code>GraphqlApi</code>.</p>
|
|
5412
5412
|
* @public
|
|
5413
5413
|
*/
|
|
5414
|
-
xrayEnabled?: boolean;
|
|
5414
|
+
xrayEnabled?: boolean | undefined;
|
|
5415
5415
|
/**
|
|
5416
5416
|
* <p>Configuration for Lambda function authorization.</p>
|
|
5417
5417
|
* @public
|
|
5418
5418
|
*/
|
|
5419
|
-
lambdaAuthorizerConfig?: LambdaAuthorizerConfig;
|
|
5419
|
+
lambdaAuthorizerConfig?: LambdaAuthorizerConfig | undefined;
|
|
5420
5420
|
/**
|
|
5421
5421
|
* <p>The Identity and Access Management service role ARN for a merged API. The AppSync
|
|
5422
5422
|
* service assumes this role on behalf of the Merged API to validate access to source APIs at
|
|
@@ -5424,13 +5424,13 @@ export interface UpdateGraphqlApiRequest {
|
|
|
5424
5424
|
* the source API changes automatically.</p>
|
|
5425
5425
|
* @public
|
|
5426
5426
|
*/
|
|
5427
|
-
mergedApiExecutionRoleArn?: string;
|
|
5427
|
+
mergedApiExecutionRoleArn?: string | undefined;
|
|
5428
5428
|
/**
|
|
5429
5429
|
* <p>The owner contact information for an API resource.</p>
|
|
5430
5430
|
* <p>This field accepts any string input with a length of 0 - 256 characters.</p>
|
|
5431
5431
|
* @public
|
|
5432
5432
|
*/
|
|
5433
|
-
ownerContact?: string;
|
|
5433
|
+
ownerContact?: string | undefined;
|
|
5434
5434
|
/**
|
|
5435
5435
|
* <p>Sets the value of the GraphQL API to enable (<code>ENABLED</code>) or disable
|
|
5436
5436
|
* (<code>DISABLED</code>) introspection. If no value is provided, the introspection
|
|
@@ -5440,7 +5440,7 @@ export interface UpdateGraphqlApiRequest {
|
|
|
5440
5440
|
* <p>For more information about introspection, see <a href="https://graphql.org/learn/introspection/">GraphQL introspection</a>.</p>
|
|
5441
5441
|
* @public
|
|
5442
5442
|
*/
|
|
5443
|
-
introspectionConfig?: GraphQLApiIntrospectionConfig;
|
|
5443
|
+
introspectionConfig?: GraphQLApiIntrospectionConfig | undefined;
|
|
5444
5444
|
/**
|
|
5445
5445
|
* <p>The maximum depth a query can have in a single request. Depth refers to the amount of
|
|
5446
5446
|
* nested levels allowed in the body of query. The default value is <code>0</code> (or
|
|
@@ -5452,7 +5452,7 @@ export interface UpdateGraphqlApiRequest {
|
|
|
5452
5452
|
* available.</p>
|
|
5453
5453
|
* @public
|
|
5454
5454
|
*/
|
|
5455
|
-
queryDepthLimit?: number;
|
|
5455
|
+
queryDepthLimit?: number | undefined;
|
|
5456
5456
|
/**
|
|
5457
5457
|
* <p>The maximum number of resolvers that can be invoked in a single request. The default
|
|
5458
5458
|
* value is <code>0</code> (or unspecified), which will set the limit to <code>10000</code>.
|
|
@@ -5460,12 +5460,12 @@ export interface UpdateGraphqlApiRequest {
|
|
|
5460
5460
|
* field will produce a limit error if the operation falls out of bounds.</p>
|
|
5461
5461
|
* @public
|
|
5462
5462
|
*/
|
|
5463
|
-
resolverCountLimit?: number;
|
|
5463
|
+
resolverCountLimit?: number | undefined;
|
|
5464
5464
|
/**
|
|
5465
5465
|
* <p>The <code>enhancedMetricsConfig</code> object.</p>
|
|
5466
5466
|
* @public
|
|
5467
5467
|
*/
|
|
5468
|
-
enhancedMetricsConfig?: EnhancedMetricsConfig;
|
|
5468
|
+
enhancedMetricsConfig?: EnhancedMetricsConfig | undefined;
|
|
5469
5469
|
}
|
|
5470
5470
|
/**
|
|
5471
5471
|
* @public
|
|
@@ -5475,7 +5475,7 @@ export interface UpdateGraphqlApiResponse {
|
|
|
5475
5475
|
* <p>The updated <code>GraphqlApi</code> object.</p>
|
|
5476
5476
|
* @public
|
|
5477
5477
|
*/
|
|
5478
|
-
graphqlApi?: GraphqlApi;
|
|
5478
|
+
graphqlApi?: GraphqlApi | undefined;
|
|
5479
5479
|
}
|
|
5480
5480
|
/**
|
|
5481
5481
|
* @public
|
|
@@ -5500,7 +5500,7 @@ export interface UpdateResolverRequest {
|
|
|
5500
5500
|
* <p>The new data source name.</p>
|
|
5501
5501
|
* @public
|
|
5502
5502
|
*/
|
|
5503
|
-
dataSourceName?: string;
|
|
5503
|
+
dataSourceName?: string | undefined;
|
|
5504
5504
|
/**
|
|
5505
5505
|
* <p>The new request mapping template.</p>
|
|
5506
5506
|
* <p>A resolver uses a request mapping template to convert a GraphQL expression into a format
|
|
@@ -5511,12 +5511,12 @@ export interface UpdateResolverRequest {
|
|
|
5511
5511
|
* required.</p>
|
|
5512
5512
|
* @public
|
|
5513
5513
|
*/
|
|
5514
|
-
requestMappingTemplate?: string;
|
|
5514
|
+
requestMappingTemplate?: string | undefined;
|
|
5515
5515
|
/**
|
|
5516
5516
|
* <p>The new response mapping template.</p>
|
|
5517
5517
|
* @public
|
|
5518
5518
|
*/
|
|
5519
|
-
responseMappingTemplate?: string;
|
|
5519
|
+
responseMappingTemplate?: string | undefined;
|
|
5520
5520
|
/**
|
|
5521
5521
|
* <p>The resolver type.</p>
|
|
5522
5522
|
* <ul>
|
|
@@ -5536,40 +5536,40 @@ export interface UpdateResolverRequest {
|
|
|
5536
5536
|
* </ul>
|
|
5537
5537
|
* @public
|
|
5538
5538
|
*/
|
|
5539
|
-
kind?: ResolverKind;
|
|
5539
|
+
kind?: ResolverKind | undefined;
|
|
5540
5540
|
/**
|
|
5541
5541
|
* <p>The <code>PipelineConfig</code>.</p>
|
|
5542
5542
|
* @public
|
|
5543
5543
|
*/
|
|
5544
|
-
pipelineConfig?: PipelineConfig;
|
|
5544
|
+
pipelineConfig?: PipelineConfig | undefined;
|
|
5545
5545
|
/**
|
|
5546
5546
|
* <p>The <code>SyncConfig</code> for a resolver attached to a versioned data source.</p>
|
|
5547
5547
|
* @public
|
|
5548
5548
|
*/
|
|
5549
|
-
syncConfig?: SyncConfig;
|
|
5549
|
+
syncConfig?: SyncConfig | undefined;
|
|
5550
5550
|
/**
|
|
5551
5551
|
* <p>The caching configuration for the resolver.</p>
|
|
5552
5552
|
* @public
|
|
5553
5553
|
*/
|
|
5554
|
-
cachingConfig?: CachingConfig;
|
|
5554
|
+
cachingConfig?: CachingConfig | undefined;
|
|
5555
5555
|
/**
|
|
5556
5556
|
* <p>The maximum batching size for a resolver.</p>
|
|
5557
5557
|
* @public
|
|
5558
5558
|
*/
|
|
5559
|
-
maxBatchSize?: number;
|
|
5559
|
+
maxBatchSize?: number | undefined;
|
|
5560
5560
|
/**
|
|
5561
5561
|
* <p>Describes a runtime used by an Amazon Web Services AppSync pipeline resolver or Amazon Web Services AppSync function. Specifies the name and version of the runtime to use. Note
|
|
5562
5562
|
* that if a runtime is specified, code must also be specified.</p>
|
|
5563
5563
|
* @public
|
|
5564
5564
|
*/
|
|
5565
|
-
runtime?: AppSyncRuntime;
|
|
5565
|
+
runtime?: AppSyncRuntime | undefined;
|
|
5566
5566
|
/**
|
|
5567
5567
|
* <p>The <code>resolver</code> code that contains the request and response functions. When
|
|
5568
5568
|
* code is used, the <code>runtime</code> is required. The <code>runtime</code> value must be
|
|
5569
5569
|
* <code>APPSYNC_JS</code>.</p>
|
|
5570
5570
|
* @public
|
|
5571
5571
|
*/
|
|
5572
|
-
code?: string;
|
|
5572
|
+
code?: string | undefined;
|
|
5573
5573
|
/**
|
|
5574
5574
|
* <p>Enables or disables enhanced resolver metrics for specified resolvers. Note that
|
|
5575
5575
|
* <code>metricsConfig</code> won't be used unless the
|
|
@@ -5581,7 +5581,7 @@ export interface UpdateResolverRequest {
|
|
|
5581
5581
|
* <code>metricsConfig</code> can be <code>ENABLED</code> or <code>DISABLED</code>.</p>
|
|
5582
5582
|
* @public
|
|
5583
5583
|
*/
|
|
5584
|
-
metricsConfig?: ResolverLevelMetricsConfig;
|
|
5584
|
+
metricsConfig?: ResolverLevelMetricsConfig | undefined;
|
|
5585
5585
|
}
|
|
5586
5586
|
/**
|
|
5587
5587
|
* @public
|
|
@@ -5591,7 +5591,7 @@ export interface UpdateResolverResponse {
|
|
|
5591
5591
|
* <p>The updated <code>Resolver</code> object.</p>
|
|
5592
5592
|
* @public
|
|
5593
5593
|
*/
|
|
5594
|
-
resolver?: Resolver;
|
|
5594
|
+
resolver?: Resolver | undefined;
|
|
5595
5595
|
}
|
|
5596
5596
|
/**
|
|
5597
5597
|
* @public
|
|
@@ -5614,12 +5614,12 @@ export interface UpdateSourceApiAssociationRequest {
|
|
|
5614
5614
|
* <p>The description field.</p>
|
|
5615
5615
|
* @public
|
|
5616
5616
|
*/
|
|
5617
|
-
description?: string;
|
|
5617
|
+
description?: string | undefined;
|
|
5618
5618
|
/**
|
|
5619
5619
|
* <p>The <code>SourceApiAssociationConfig</code> object data.</p>
|
|
5620
5620
|
* @public
|
|
5621
5621
|
*/
|
|
5622
|
-
sourceApiAssociationConfig?: SourceApiAssociationConfig;
|
|
5622
|
+
sourceApiAssociationConfig?: SourceApiAssociationConfig | undefined;
|
|
5623
5623
|
}
|
|
5624
5624
|
/**
|
|
5625
5625
|
* @public
|
|
@@ -5629,7 +5629,7 @@ export interface UpdateSourceApiAssociationResponse {
|
|
|
5629
5629
|
* <p>The <code>SourceApiAssociation</code> object data.</p>
|
|
5630
5630
|
* @public
|
|
5631
5631
|
*/
|
|
5632
|
-
sourceApiAssociation?: SourceApiAssociation;
|
|
5632
|
+
sourceApiAssociation?: SourceApiAssociation | undefined;
|
|
5633
5633
|
}
|
|
5634
5634
|
/**
|
|
5635
5635
|
* @public
|
|
@@ -5649,7 +5649,7 @@ export interface UpdateTypeRequest {
|
|
|
5649
5649
|
* <p>The new definition.</p>
|
|
5650
5650
|
* @public
|
|
5651
5651
|
*/
|
|
5652
|
-
definition?: string;
|
|
5652
|
+
definition?: string | undefined;
|
|
5653
5653
|
/**
|
|
5654
5654
|
* <p>The new type format: SDL or JSON.</p>
|
|
5655
5655
|
* @public
|
|
@@ -5664,7 +5664,7 @@ export interface UpdateTypeResponse {
|
|
|
5664
5664
|
* <p>The updated <code>Type</code> object.</p>
|
|
5665
5665
|
* @public
|
|
5666
5666
|
*/
|
|
5667
|
-
type?: Type;
|
|
5667
|
+
type?: Type | undefined;
|
|
5668
5668
|
}
|
|
5669
5669
|
/**
|
|
5670
5670
|
* <p>Represents the type data for each field retrieved from the introspection.</p>
|
|
@@ -5694,13 +5694,13 @@ export interface DataSourceIntrospectionModelFieldType {
|
|
|
5694
5694
|
* </ul>
|
|
5695
5695
|
* @public
|
|
5696
5696
|
*/
|
|
5697
|
-
kind?: string;
|
|
5697
|
+
kind?: string | undefined;
|
|
5698
5698
|
/**
|
|
5699
5699
|
* <p>The name of the data type that represents the field. For example, <code>String</code> is
|
|
5700
5700
|
* a valid <code>name</code> value.</p>
|
|
5701
5701
|
* @public
|
|
5702
5702
|
*/
|
|
5703
|
-
name?: string;
|
|
5703
|
+
name?: string | undefined;
|
|
5704
5704
|
/**
|
|
5705
5705
|
* <p>The <code>DataSourceIntrospectionModelFieldType</code> object data. The
|
|
5706
5706
|
* <code>type</code> is only present if
|
|
@@ -5713,13 +5713,13 @@ export interface DataSourceIntrospectionModelFieldType {
|
|
|
5713
5713
|
* collectively stored in the <code>values</code> field.</p>
|
|
5714
5714
|
* @public
|
|
5715
5715
|
*/
|
|
5716
|
-
type?: DataSourceIntrospectionModelFieldType;
|
|
5716
|
+
type?: DataSourceIntrospectionModelFieldType | undefined;
|
|
5717
5717
|
/**
|
|
5718
5718
|
* <p>The values of the <code>type</code> field. This field represents the AppSync data type
|
|
5719
5719
|
* equivalent of the introspected field.</p>
|
|
5720
5720
|
* @public
|
|
5721
5721
|
*/
|
|
5722
|
-
values?: string[];
|
|
5722
|
+
values?: string[] | undefined;
|
|
5723
5723
|
}
|
|
5724
5724
|
/**
|
|
5725
5725
|
* <p>Represents the fields that were retrieved from the introspected data.</p>
|
|
@@ -5730,17 +5730,17 @@ export interface DataSourceIntrospectionModelField {
|
|
|
5730
5730
|
* <p>The name of the field that was retrieved from the introspected data.</p>
|
|
5731
5731
|
* @public
|
|
5732
5732
|
*/
|
|
5733
|
-
name?: string;
|
|
5733
|
+
name?: string | undefined;
|
|
5734
5734
|
/**
|
|
5735
5735
|
* <p>The <code>DataSourceIntrospectionModelFieldType</code> object data.</p>
|
|
5736
5736
|
* @public
|
|
5737
5737
|
*/
|
|
5738
|
-
type?: DataSourceIntrospectionModelFieldType;
|
|
5738
|
+
type?: DataSourceIntrospectionModelFieldType | undefined;
|
|
5739
5739
|
/**
|
|
5740
5740
|
* <p>The length value of the introspected field.</p>
|
|
5741
5741
|
* @public
|
|
5742
5742
|
*/
|
|
5743
|
-
length?: number;
|
|
5743
|
+
length?: number | undefined;
|
|
5744
5744
|
}
|
|
5745
5745
|
/**
|
|
5746
5746
|
* <p>Contains the introspected data that was retrieved from the data source.</p>
|
|
@@ -5752,30 +5752,30 @@ export interface DataSourceIntrospectionModel {
|
|
|
5752
5752
|
* database.</p>
|
|
5753
5753
|
* @public
|
|
5754
5754
|
*/
|
|
5755
|
-
name?: string;
|
|
5755
|
+
name?: string | undefined;
|
|
5756
5756
|
/**
|
|
5757
5757
|
* <p>The <code>DataSourceIntrospectionModelField</code> object data.</p>
|
|
5758
5758
|
* @public
|
|
5759
5759
|
*/
|
|
5760
|
-
fields?: DataSourceIntrospectionModelField[];
|
|
5760
|
+
fields?: DataSourceIntrospectionModelField[] | undefined;
|
|
5761
5761
|
/**
|
|
5762
5762
|
* <p>The primary key stored as a <code>DataSourceIntrospectionModelIndex</code>
|
|
5763
5763
|
* object.</p>
|
|
5764
5764
|
* @public
|
|
5765
5765
|
*/
|
|
5766
|
-
primaryKey?: DataSourceIntrospectionModelIndex;
|
|
5766
|
+
primaryKey?: DataSourceIntrospectionModelIndex | undefined;
|
|
5767
5767
|
/**
|
|
5768
5768
|
* <p>The array of <code>DataSourceIntrospectionModelIndex</code> objects.</p>
|
|
5769
5769
|
* @public
|
|
5770
5770
|
*/
|
|
5771
|
-
indexes?: DataSourceIntrospectionModelIndex[];
|
|
5771
|
+
indexes?: DataSourceIntrospectionModelIndex[] | undefined;
|
|
5772
5772
|
/**
|
|
5773
5773
|
* <p>Contains the output of the SDL that was generated from the introspected types. This is
|
|
5774
5774
|
* controlled by the <code>includeModelsSDL</code> parameter of the
|
|
5775
5775
|
* <code>GetDataSourceIntrospection</code> operation.</p>
|
|
5776
5776
|
* @public
|
|
5777
5777
|
*/
|
|
5778
|
-
sdl?: string;
|
|
5778
|
+
sdl?: string | undefined;
|
|
5779
5779
|
}
|
|
5780
5780
|
/**
|
|
5781
5781
|
* <p>Represents the output of a <code>DataSourceIntrospectionResult</code>. This is the
|
|
@@ -5787,14 +5787,14 @@ export interface DataSourceIntrospectionResult {
|
|
|
5787
5787
|
* <p>The array of <code>DataSourceIntrospectionModel</code> objects.</p>
|
|
5788
5788
|
* @public
|
|
5789
5789
|
*/
|
|
5790
|
-
models?: DataSourceIntrospectionModel[];
|
|
5790
|
+
models?: DataSourceIntrospectionModel[] | undefined;
|
|
5791
5791
|
/**
|
|
5792
5792
|
* <p>Determines the number of types to be returned in a single response before paginating.
|
|
5793
5793
|
* This value is typically taken from <code>nextToken</code> value from the previous
|
|
5794
5794
|
* response.</p>
|
|
5795
5795
|
* @public
|
|
5796
5796
|
*/
|
|
5797
|
-
nextToken?: string;
|
|
5797
|
+
nextToken?: string | undefined;
|
|
5798
5798
|
}
|
|
5799
5799
|
/**
|
|
5800
5800
|
* @public
|
|
@@ -5805,7 +5805,7 @@ export interface GetDataSourceIntrospectionResponse {
|
|
|
5805
5805
|
* reference the instrospection record.</p>
|
|
5806
5806
|
* @public
|
|
5807
5807
|
*/
|
|
5808
|
-
introspectionId?: string;
|
|
5808
|
+
introspectionId?: string | undefined;
|
|
5809
5809
|
/**
|
|
5810
5810
|
* <p>The status of the introspection during retrieval. By default, when a new instrospection
|
|
5811
5811
|
* is being retrieved, the status will be set to <code>PROCESSING</code>. Once the operation
|
|
@@ -5814,17 +5814,17 @@ export interface GetDataSourceIntrospectionResponse {
|
|
|
5814
5814
|
* and its details as an <code>introspectionStatusDetail</code>.</p>
|
|
5815
5815
|
* @public
|
|
5816
5816
|
*/
|
|
5817
|
-
introspectionStatus?: DataSourceIntrospectionStatus;
|
|
5817
|
+
introspectionStatus?: DataSourceIntrospectionStatus | undefined;
|
|
5818
5818
|
/**
|
|
5819
5819
|
* <p>The error detail field. When a <code>FAILED</code>
|
|
5820
5820
|
* <code>introspectionStatus</code> is returned, the <code>introspectionStatusDetail</code>
|
|
5821
5821
|
* will also return the exact error that was generated during the operation.</p>
|
|
5822
5822
|
* @public
|
|
5823
5823
|
*/
|
|
5824
|
-
introspectionStatusDetail?: string;
|
|
5824
|
+
introspectionStatusDetail?: string | undefined;
|
|
5825
5825
|
/**
|
|
5826
5826
|
* <p>The <code>DataSourceIntrospectionResult</code> object data.</p>
|
|
5827
5827
|
* @public
|
|
5828
5828
|
*/
|
|
5829
|
-
introspectionResult?: DataSourceIntrospectionResult;
|
|
5829
|
+
introspectionResult?: DataSourceIntrospectionResult | undefined;
|
|
5830
5830
|
}
|