cdk-lambda-subminute 2.0.407 → 2.0.408
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +3 -3
- package/lib/cdk-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/cloudformation-2010-05-15.min.json +35 -0
- package/node_modules/aws-sdk/apis/kms-2014-11-01.min.json +3 -4
- package/node_modules/aws-sdk/apis/mediatailor-2018-04-23.min.json +291 -215
- package/node_modules/aws-sdk/apis/rds-2014-10-31.min.json +155 -133
- package/node_modules/aws-sdk/apis/s3-2006-03-01.examples.json +119 -119
- package/node_modules/aws-sdk/apis/s3-2006-03-01.min.json +4 -2
- package/node_modules/aws-sdk/clients/cloudformation.d.ts +49 -2
- package/node_modules/aws-sdk/clients/kms.d.ts +10 -6
- package/node_modules/aws-sdk/clients/mediatailor.d.ts +98 -2
- package/node_modules/aws-sdk/clients/rds.d.ts +44 -0
- package/node_modules/aws-sdk/clients/timestreamquery.d.ts +3 -3
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +6 -6
- package/node_modules/aws-sdk/dist/aws-sdk.js +200 -142
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +101 -101
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +3 -3
@@ -236,11 +236,11 @@ declare class KMS extends Service {
|
|
236
236
|
*/
|
237
237
|
getPublicKey(callback?: (err: AWSError, data: KMS.Types.GetPublicKeyResponse) => void): Request<KMS.Types.GetPublicKeyResponse, AWSError>;
|
238
238
|
/**
|
239
|
-
* Imports or reimports key material into an existing KMS key that was created without key material. ImportKeyMaterial also sets the expiration model and expiration date of the imported key material. By default, KMS keys are created with key material that KMS generates. This operation supports Importing key material, an advanced feature that lets you generate and import the cryptographic key material for a KMS key. For more information about importing key material into KMS, see Importing key material in the Key Management Service Developer Guide. After you successfully import key material into a KMS key, you can reimport the same key material into that KMS key, but you cannot import different key material. You might reimport key material to replace key material that expired or key material that you deleted. You might also reimport key material to change the expiration model or expiration date of the key material.
|
239
|
+
* Imports or reimports key material into an existing KMS key that was created without key material. ImportKeyMaterial also sets the expiration model and expiration date of the imported key material. By default, KMS keys are created with key material that KMS generates. This operation supports Importing key material, an advanced feature that lets you generate and import the cryptographic key material for a KMS key. For more information about importing key material into KMS, see Importing key material in the Key Management Service Developer Guide. After you successfully import key material into a KMS key, you can reimport the same key material into that KMS key, but you cannot import different key material. You might reimport key material to replace key material that expired or key material that you deleted. You might also reimport key material to change the expiration model or expiration date of the key material. Each time you import key material into KMS, you can determine whether (ExpirationModel) and when (ValidTo) the key material expires. To change the expiration of your key material, you must import it again, either by calling ImportKeyMaterial or using the import features of the KMS console. Before calling ImportKeyMaterial: Create or identify a KMS key with no key material. The KMS key must have an Origin value of EXTERNAL, which indicates that the KMS key is designed for imported key material. To create an new KMS key for imported key material, call the CreateKey operation with an Origin value of EXTERNAL. You can create a symmetric encryption KMS key, HMAC KMS key, asymmetric encryption KMS key, or asymmetric signing KMS key. You can also import key material into a multi-Region key of any supported type. However, you can't import key material into a KMS key in a custom key store. Use the DescribeKey operation to verify that the KeyState of the KMS key is PendingImport, which indicates that the KMS key has no key material. If you are reimporting the same key material into an existing KMS key, you might need to call the DeleteImportedKeyMaterial to delete its existing key material. Call the GetParametersForImport operation to get a public key and import token set for importing key material. Use the public key in the GetParametersForImport response to encrypt your key material. Then, in an ImportKeyMaterial request, you submit your encrypted key material and import token. When calling this operation, you must specify the following values: The key ID or key ARN of the KMS key to associate with the imported key material. Its Origin must be EXTERNAL and its KeyState must be PendingImport. You cannot perform this operation on a KMS key in a custom key store, or on a KMS key in a different Amazon Web Services account. To get the Origin and KeyState of a KMS key, call DescribeKey. The encrypted key material. The import token that GetParametersForImport returned. You must use a public key and token from the same GetParametersForImport response. Whether the key material expires (ExpirationModel) and, if so, when (ValidTo). For help with this choice, see Setting an expiration time in the Key Management Service Developer Guide. If you set an expiration date, KMS deletes the key material from the KMS key on the specified date, making the KMS key unusable. To use the KMS key in cryptographic operations again, you must reimport the same key material. However, you can delete and reimport the key material at any time, including before the key material expires. Each time you reimport, you can eliminate or reset the expiration time. When this operation is successful, the key state of the KMS key changes from PendingImport to Enabled, and you can use the KMS key in cryptographic operations. If this operation fails, use the exception to help determine the problem. If the error is related to the key material, the import token, or wrapping key, use GetParametersForImport to get a new public key and import token for the KMS key and repeat the import procedure. For help, see How To Import Key Material in the Key Management Service Developer Guide. The KMS key that you use for this operation must be in a compatible key state. For details, see Key states of KMS keys in the Key Management Service Developer Guide. Cross-account use: No. You cannot perform this operation on a KMS key in a different Amazon Web Services account. Required permissions: kms:ImportKeyMaterial (key policy) Related operations: DeleteImportedKeyMaterial GetParametersForImport Eventual consistency: The KMS API follows an eventual consistency model. For more information, see KMS eventual consistency.
|
240
240
|
*/
|
241
241
|
importKeyMaterial(params: KMS.Types.ImportKeyMaterialRequest, callback?: (err: AWSError, data: KMS.Types.ImportKeyMaterialResponse) => void): Request<KMS.Types.ImportKeyMaterialResponse, AWSError>;
|
242
242
|
/**
|
243
|
-
* Imports or reimports key material into an existing KMS key that was created without key material. ImportKeyMaterial also sets the expiration model and expiration date of the imported key material. By default, KMS keys are created with key material that KMS generates. This operation supports Importing key material, an advanced feature that lets you generate and import the cryptographic key material for a KMS key. For more information about importing key material into KMS, see Importing key material in the Key Management Service Developer Guide. After you successfully import key material into a KMS key, you can reimport the same key material into that KMS key, but you cannot import different key material. You might reimport key material to replace key material that expired or key material that you deleted. You might also reimport key material to change the expiration model or expiration date of the key material.
|
243
|
+
* Imports or reimports key material into an existing KMS key that was created without key material. ImportKeyMaterial also sets the expiration model and expiration date of the imported key material. By default, KMS keys are created with key material that KMS generates. This operation supports Importing key material, an advanced feature that lets you generate and import the cryptographic key material for a KMS key. For more information about importing key material into KMS, see Importing key material in the Key Management Service Developer Guide. After you successfully import key material into a KMS key, you can reimport the same key material into that KMS key, but you cannot import different key material. You might reimport key material to replace key material that expired or key material that you deleted. You might also reimport key material to change the expiration model or expiration date of the key material. Each time you import key material into KMS, you can determine whether (ExpirationModel) and when (ValidTo) the key material expires. To change the expiration of your key material, you must import it again, either by calling ImportKeyMaterial or using the import features of the KMS console. Before calling ImportKeyMaterial: Create or identify a KMS key with no key material. The KMS key must have an Origin value of EXTERNAL, which indicates that the KMS key is designed for imported key material. To create an new KMS key for imported key material, call the CreateKey operation with an Origin value of EXTERNAL. You can create a symmetric encryption KMS key, HMAC KMS key, asymmetric encryption KMS key, or asymmetric signing KMS key. You can also import key material into a multi-Region key of any supported type. However, you can't import key material into a KMS key in a custom key store. Use the DescribeKey operation to verify that the KeyState of the KMS key is PendingImport, which indicates that the KMS key has no key material. If you are reimporting the same key material into an existing KMS key, you might need to call the DeleteImportedKeyMaterial to delete its existing key material. Call the GetParametersForImport operation to get a public key and import token set for importing key material. Use the public key in the GetParametersForImport response to encrypt your key material. Then, in an ImportKeyMaterial request, you submit your encrypted key material and import token. When calling this operation, you must specify the following values: The key ID or key ARN of the KMS key to associate with the imported key material. Its Origin must be EXTERNAL and its KeyState must be PendingImport. You cannot perform this operation on a KMS key in a custom key store, or on a KMS key in a different Amazon Web Services account. To get the Origin and KeyState of a KMS key, call DescribeKey. The encrypted key material. The import token that GetParametersForImport returned. You must use a public key and token from the same GetParametersForImport response. Whether the key material expires (ExpirationModel) and, if so, when (ValidTo). For help with this choice, see Setting an expiration time in the Key Management Service Developer Guide. If you set an expiration date, KMS deletes the key material from the KMS key on the specified date, making the KMS key unusable. To use the KMS key in cryptographic operations again, you must reimport the same key material. However, you can delete and reimport the key material at any time, including before the key material expires. Each time you reimport, you can eliminate or reset the expiration time. When this operation is successful, the key state of the KMS key changes from PendingImport to Enabled, and you can use the KMS key in cryptographic operations. If this operation fails, use the exception to help determine the problem. If the error is related to the key material, the import token, or wrapping key, use GetParametersForImport to get a new public key and import token for the KMS key and repeat the import procedure. For help, see How To Import Key Material in the Key Management Service Developer Guide. The KMS key that you use for this operation must be in a compatible key state. For details, see Key states of KMS keys in the Key Management Service Developer Guide. Cross-account use: No. You cannot perform this operation on a KMS key in a different Amazon Web Services account. Required permissions: kms:ImportKeyMaterial (key policy) Related operations: DeleteImportedKeyMaterial GetParametersForImport Eventual consistency: The KMS API follows an eventual consistency model. For more information, see KMS eventual consistency.
|
244
244
|
*/
|
245
245
|
importKeyMaterial(callback?: (err: AWSError, data: KMS.Types.ImportKeyMaterialResponse) => void): Request<KMS.Types.ImportKeyMaterialResponse, AWSError>;
|
246
246
|
/**
|
@@ -1103,15 +1103,19 @@ declare namespace KMS {
|
|
1103
1103
|
*/
|
1104
1104
|
KeyId: KeyIdType;
|
1105
1105
|
/**
|
1106
|
-
* Specifies the name of the key policy. The only valid name is default. To get the names of key policies, use ListKeyPolicies.
|
1106
|
+
* Specifies the name of the key policy. If no policy name is specified, the default value is default. The only valid name is default. To get the names of key policies, use ListKeyPolicies.
|
1107
1107
|
*/
|
1108
|
-
PolicyName
|
1108
|
+
PolicyName?: PolicyNameType;
|
1109
1109
|
}
|
1110
1110
|
export interface GetKeyPolicyResponse {
|
1111
1111
|
/**
|
1112
1112
|
* A key policy document in JSON format.
|
1113
1113
|
*/
|
1114
1114
|
Policy?: PolicyType;
|
1115
|
+
/**
|
1116
|
+
* The name of the key policy. The only valid value is default.
|
1117
|
+
*/
|
1118
|
+
PolicyName?: PolicyNameType;
|
1115
1119
|
}
|
1116
1120
|
export interface GetKeyRotationStatusRequest {
|
1117
1121
|
/**
|
@@ -1597,9 +1601,9 @@ declare namespace KMS {
|
|
1597
1601
|
*/
|
1598
1602
|
KeyId: KeyIdType;
|
1599
1603
|
/**
|
1600
|
-
* The name of the key policy. The only valid value is default.
|
1604
|
+
* The name of the key policy. If no policy name is specified, the default value is default. The only valid value is default.
|
1601
1605
|
*/
|
1602
|
-
PolicyName
|
1606
|
+
PolicyName?: PolicyNameType;
|
1603
1607
|
/**
|
1604
1608
|
* The key policy to attach to the KMS key. The key policy must meet the following criteria: The key policy must allow the calling principal to make a subsequent PutKeyPolicy request on the KMS key. This reduces the risk that the KMS key becomes unmanageable. For more information, see Default key policy in the Key Management Service Developer Guide. (To omit this condition, set BypassPolicyLockoutSafetyCheck to true.) Each statement in the key policy must contain one or more principals. The principals in the key policy must exist and be visible to KMS. When you create a new Amazon Web Services principal, you might need to enforce a delay before including the new principal in a key policy because the new principal might not be immediately visible to KMS. For more information, see Changes that I make are not always immediately visible in the Amazon Web Services Identity and Access Management User Guide. A key policy document can include only the following characters: Printable ASCII characters from the space character (\u0020) through the end of the ASCII character range. Printable characters in the Basic Latin and Latin-1 Supplement character set (through \u00FF). The tab (\u0009), line feed (\u000A), and carriage return (\u000D) special characters For information about key policies, see Key policies in KMS in the Key Management Service Developer Guide.For help writing and formatting a JSON policy document, see the IAM JSON Policy Reference in the Identity and Access Management User Guide .
|
1605
1609
|
*/
|
@@ -444,6 +444,44 @@ declare namespace MediaTailor {
|
|
444
444
|
ResourceArn: __string;
|
445
445
|
}
|
446
446
|
export type AlertCategory = "SCHEDULING_ERROR"|"PLAYBACK_WARNING"|"INFO"|string;
|
447
|
+
export interface AlternateMedia {
|
448
|
+
/**
|
449
|
+
* Ad break configuration parameters defined in AlternateMedia.
|
450
|
+
*/
|
451
|
+
AdBreaks?: __listOfAdBreak;
|
452
|
+
ClipRange?: ClipRange;
|
453
|
+
/**
|
454
|
+
* The duration of the alternateMedia in milliseconds.
|
455
|
+
*/
|
456
|
+
DurationMillis?: __long;
|
457
|
+
/**
|
458
|
+
* The name of the live source for alternateMedia.
|
459
|
+
*/
|
460
|
+
LiveSourceName?: __string;
|
461
|
+
/**
|
462
|
+
* The date and time that the alternateMedia is scheduled to start, in epoch milliseconds.
|
463
|
+
*/
|
464
|
+
ScheduledStartTimeMillis?: __long;
|
465
|
+
/**
|
466
|
+
* The name of the source location for alternateMedia.
|
467
|
+
*/
|
468
|
+
SourceLocationName?: __string;
|
469
|
+
/**
|
470
|
+
* The name of the VOD source for alternateMedia.
|
471
|
+
*/
|
472
|
+
VodSourceName?: __string;
|
473
|
+
}
|
474
|
+
export interface AudienceMedia {
|
475
|
+
/**
|
476
|
+
* The list of AlternateMedia defined in AudienceMedia.
|
477
|
+
*/
|
478
|
+
AlternateMedia?: __listOfAlternateMedia;
|
479
|
+
/**
|
480
|
+
* The Audience defined in AudienceMedia.
|
481
|
+
*/
|
482
|
+
Audience?: __string;
|
483
|
+
}
|
484
|
+
export type Audiences = String[];
|
447
485
|
export interface AvailMatchingCriteria {
|
448
486
|
/**
|
449
487
|
* The dynamic variable(s) that MediaTailor should use as avail matching criteria. MediaTailor only places the prefetched ads into the avail if the avail matches the criteria defined by the dynamic variable. For information about dynamic variables, see Using dynamic ad variables in the MediaTailor User Guide. You can include up to 100 dynamic variables.
|
@@ -493,6 +531,10 @@ declare namespace MediaTailor {
|
|
493
531
|
* The ARN of the channel.
|
494
532
|
*/
|
495
533
|
Arn: __string;
|
534
|
+
/**
|
535
|
+
* The list of audiences defined in channel.
|
536
|
+
*/
|
537
|
+
Audiences?: Audiences;
|
496
538
|
/**
|
497
539
|
* The name of the channel.
|
498
540
|
*/
|
@@ -539,7 +581,11 @@ declare namespace MediaTailor {
|
|
539
581
|
/**
|
540
582
|
* The end offset of the clip range, in milliseconds, starting from the beginning of the VOD source associated with the program.
|
541
583
|
*/
|
542
|
-
EndOffsetMillis
|
584
|
+
EndOffsetMillis?: __long;
|
585
|
+
/**
|
586
|
+
* The start offset of the clip range, in milliseconds. This offset truncates the start at the number of milliseconds into the duration of the VOD source.
|
587
|
+
*/
|
588
|
+
StartOffsetMillis?: __long;
|
543
589
|
}
|
544
590
|
export type ConfigurationAliasesRequest = {[key: string]: __mapOf__string};
|
545
591
|
export type ConfigurationAliasesResponse = {[key: string]: __mapOf__string};
|
@@ -584,6 +630,10 @@ declare namespace MediaTailor {
|
|
584
630
|
PlaybackConfigurationName?: __string;
|
585
631
|
}
|
586
632
|
export interface CreateChannelRequest {
|
633
|
+
/**
|
634
|
+
* The list of audiences defined in channel.
|
635
|
+
*/
|
636
|
+
Audiences?: Audiences;
|
587
637
|
/**
|
588
638
|
* The name of the channel.
|
589
639
|
*/
|
@@ -618,6 +668,10 @@ declare namespace MediaTailor {
|
|
618
668
|
* The Amazon Resource Name (ARN) to assign to the channel.
|
619
669
|
*/
|
620
670
|
Arn?: __string;
|
671
|
+
/**
|
672
|
+
* The list of audiences defined in channel.
|
673
|
+
*/
|
674
|
+
Audiences?: Audiences;
|
621
675
|
/**
|
622
676
|
* The name to assign to the channel.
|
623
677
|
*/
|
@@ -760,6 +814,10 @@ declare namespace MediaTailor {
|
|
760
814
|
* The ad break configuration settings.
|
761
815
|
*/
|
762
816
|
AdBreaks?: __listOfAdBreak;
|
817
|
+
/**
|
818
|
+
* The list of AudienceMedia defined in program.
|
819
|
+
*/
|
820
|
+
AudienceMedia?: __listOfAudienceMedia;
|
763
821
|
/**
|
764
822
|
* The name of the channel for this Program.
|
765
823
|
*/
|
@@ -794,6 +852,10 @@ declare namespace MediaTailor {
|
|
794
852
|
* The ARN to assign to the program.
|
795
853
|
*/
|
796
854
|
Arn?: __string;
|
855
|
+
/**
|
856
|
+
* The list of AudienceMedia defined in program.
|
857
|
+
*/
|
858
|
+
AudienceMedia?: __listOfAudienceMedia;
|
797
859
|
/**
|
798
860
|
* The name to assign to the channel for this program.
|
799
861
|
*/
|
@@ -1082,6 +1144,10 @@ declare namespace MediaTailor {
|
|
1082
1144
|
* The ARN of the channel.
|
1083
1145
|
*/
|
1084
1146
|
Arn?: __string;
|
1147
|
+
/**
|
1148
|
+
* The list of audiences defined in channel.
|
1149
|
+
*/
|
1150
|
+
Audiences?: Audiences;
|
1085
1151
|
/**
|
1086
1152
|
* The name of the channel.
|
1087
1153
|
*/
|
@@ -1186,6 +1252,10 @@ declare namespace MediaTailor {
|
|
1186
1252
|
* The ARN of the program.
|
1187
1253
|
*/
|
1188
1254
|
Arn?: __string;
|
1255
|
+
/**
|
1256
|
+
* The list of AudienceMedia defined in program.
|
1257
|
+
*/
|
1258
|
+
AudienceMedia?: __listOfAudienceMedia;
|
1189
1259
|
/**
|
1190
1260
|
* The name of the channel that the program belongs to.
|
1191
1261
|
*/
|
@@ -1325,6 +1395,10 @@ declare namespace MediaTailor {
|
|
1325
1395
|
Policy?: __string;
|
1326
1396
|
}
|
1327
1397
|
export interface GetChannelScheduleRequest {
|
1398
|
+
/**
|
1399
|
+
* The single audience for GetChannelScheduleRequest.
|
1400
|
+
*/
|
1401
|
+
Audience?: __string;
|
1328
1402
|
/**
|
1329
1403
|
* The name of the channel associated with this Channel Schedule.
|
1330
1404
|
*/
|
@@ -2123,6 +2197,10 @@ declare namespace MediaTailor {
|
|
2123
2197
|
* The ARN of the program.
|
2124
2198
|
*/
|
2125
2199
|
Arn: __string;
|
2200
|
+
/**
|
2201
|
+
* The list of audiences defined in ScheduleEntry.
|
2202
|
+
*/
|
2203
|
+
Audiences?: Audiences;
|
2126
2204
|
/**
|
2127
2205
|
* The name of the channel that uses this schedule.
|
2128
2206
|
*/
|
@@ -2152,7 +2230,7 @@ declare namespace MediaTailor {
|
|
2152
2230
|
*/
|
2153
2231
|
VodSourceName?: __string;
|
2154
2232
|
}
|
2155
|
-
export type ScheduleEntryType = "PROGRAM"|"FILLER_SLATE"|string;
|
2233
|
+
export type ScheduleEntryType = "PROGRAM"|"FILLER_SLATE"|"ALTERNATE_MEDIA"|string;
|
2156
2234
|
export interface SecretsManagerAccessTokenConfiguration {
|
2157
2235
|
/**
|
2158
2236
|
* The name of the HTTP header used to supply the access token in requests to the source location.
|
@@ -2352,6 +2430,10 @@ declare namespace MediaTailor {
|
|
2352
2430
|
TagKeys: __listOf__string;
|
2353
2431
|
}
|
2354
2432
|
export interface UpdateChannelRequest {
|
2433
|
+
/**
|
2434
|
+
* The list of audiences defined in channel.
|
2435
|
+
*/
|
2436
|
+
Audiences?: Audiences;
|
2355
2437
|
/**
|
2356
2438
|
* The name of the channel.
|
2357
2439
|
*/
|
@@ -2374,6 +2456,10 @@ declare namespace MediaTailor {
|
|
2374
2456
|
* The Amazon Resource Name (ARN) associated with the channel.
|
2375
2457
|
*/
|
2376
2458
|
Arn?: __string;
|
2459
|
+
/**
|
2460
|
+
* The list of audiences defined in channel.
|
2461
|
+
*/
|
2462
|
+
Audiences?: Audiences;
|
2377
2463
|
/**
|
2378
2464
|
* The name of the channel.
|
2379
2465
|
*/
|
@@ -2464,6 +2550,10 @@ declare namespace MediaTailor {
|
|
2464
2550
|
* The ad break configuration settings.
|
2465
2551
|
*/
|
2466
2552
|
AdBreaks?: __listOfAdBreak;
|
2553
|
+
/**
|
2554
|
+
* The list of AudienceMedia defined in program.
|
2555
|
+
*/
|
2556
|
+
AudienceMedia?: __listOfAudienceMedia;
|
2467
2557
|
/**
|
2468
2558
|
* The name of the channel for this Program.
|
2469
2559
|
*/
|
@@ -2486,6 +2576,10 @@ declare namespace MediaTailor {
|
|
2486
2576
|
* The ARN to assign to the program.
|
2487
2577
|
*/
|
2488
2578
|
Arn?: __string;
|
2579
|
+
/**
|
2580
|
+
* The list of AudienceMedia defined in program.
|
2581
|
+
*/
|
2582
|
+
AudienceMedia?: __listOfAudienceMedia;
|
2489
2583
|
/**
|
2490
2584
|
* The name to assign to the channel for this program.
|
2491
2585
|
*/
|
@@ -2683,6 +2777,8 @@ declare namespace MediaTailor {
|
|
2683
2777
|
export type __integerMin1Max100 = number;
|
2684
2778
|
export type __listOfAdBreak = AdBreak[];
|
2685
2779
|
export type __listOfAlert = Alert[];
|
2780
|
+
export type __listOfAlternateMedia = AlternateMedia[];
|
2781
|
+
export type __listOfAudienceMedia = AudienceMedia[];
|
2686
2782
|
export type __listOfAvailMatchingCriteria = AvailMatchingCriteria[];
|
2687
2783
|
export type __listOfChannel = Channel[];
|
2688
2784
|
export type __listOfLiveSource = LiveSource[];
|
@@ -1021,6 +1021,14 @@ declare class RDS extends Service {
|
|
1021
1021
|
* Modifies a setting for an Amazon Aurora global database cluster. You can change one or more database configuration parameters by specifying these parameters and the new values in the request. For more information on Amazon Aurora, see What is Amazon Aurora? in the Amazon Aurora User Guide. This operation only applies to Aurora global database clusters.
|
1022
1022
|
*/
|
1023
1023
|
modifyGlobalCluster(callback?: (err: AWSError, data: RDS.Types.ModifyGlobalClusterResult) => void): Request<RDS.Types.ModifyGlobalClusterResult, AWSError>;
|
1024
|
+
/**
|
1025
|
+
* Modifies a zero-ETL integration with Amazon Redshift. Currently, you can only modify integrations that have Aurora MySQL source DB clusters. Integrations with Aurora PostgreSQL and RDS sources currently don't support modifying the integration.
|
1026
|
+
*/
|
1027
|
+
modifyIntegration(params: RDS.Types.ModifyIntegrationMessage, callback?: (err: AWSError, data: RDS.Types.Integration) => void): Request<RDS.Types.Integration, AWSError>;
|
1028
|
+
/**
|
1029
|
+
* Modifies a zero-ETL integration with Amazon Redshift. Currently, you can only modify integrations that have Aurora MySQL source DB clusters. Integrations with Aurora PostgreSQL and RDS sources currently don't support modifying the integration.
|
1030
|
+
*/
|
1031
|
+
modifyIntegration(callback?: (err: AWSError, data: RDS.Types.Integration) => void): Request<RDS.Types.Integration, AWSError>;
|
1024
1032
|
/**
|
1025
1033
|
* Modifies an existing option group.
|
1026
1034
|
*/
|
@@ -2978,6 +2986,14 @@ declare namespace RDS {
|
|
2978
2986
|
*/
|
2979
2987
|
AdditionalEncryptionContext?: EncryptionContextMap;
|
2980
2988
|
Tags?: TagList;
|
2989
|
+
/**
|
2990
|
+
* Data filtering options for the integration. For more information, see Data filtering for Aurora zero-ETL integrations with Amazon Redshift. Valid for: Integrations with Aurora MySQL source DB clusters only
|
2991
|
+
*/
|
2992
|
+
DataFilter?: DataFilter;
|
2993
|
+
/**
|
2994
|
+
* A description of the integration.
|
2995
|
+
*/
|
2996
|
+
Description?: IntegrationDescription;
|
2981
2997
|
}
|
2982
2998
|
export interface CreateOptionGroupMessage {
|
2983
2999
|
/**
|
@@ -5204,6 +5220,7 @@ declare namespace RDS {
|
|
5204
5220
|
DBSubnetGroups?: DBSubnetGroups;
|
5205
5221
|
}
|
5206
5222
|
export type DBSubnetGroups = DBSubnetGroup[];
|
5223
|
+
export type DataFilter = string;
|
5207
5224
|
export type DatabaseArn = string;
|
5208
5225
|
export interface DeleteBlueGreenDeploymentRequest {
|
5209
5226
|
/**
|
@@ -7109,8 +7126,17 @@ declare namespace RDS {
|
|
7109
7126
|
* Any errors associated with the integration.
|
7110
7127
|
*/
|
7111
7128
|
Errors?: IntegrationErrorList;
|
7129
|
+
/**
|
7130
|
+
* Data filters for the integration. These filters determine which tables from the source database are sent to the target Amazon Redshift data warehouse.
|
7131
|
+
*/
|
7132
|
+
DataFilter?: DataFilter;
|
7133
|
+
/**
|
7134
|
+
* A description of the integration.
|
7135
|
+
*/
|
7136
|
+
Description?: IntegrationDescription;
|
7112
7137
|
}
|
7113
7138
|
export type IntegrationArn = string;
|
7139
|
+
export type IntegrationDescription = string;
|
7114
7140
|
export interface IntegrationError {
|
7115
7141
|
/**
|
7116
7142
|
* The error code associated with the integration.
|
@@ -8010,6 +8036,24 @@ declare namespace RDS {
|
|
8010
8036
|
export interface ModifyGlobalClusterResult {
|
8011
8037
|
GlobalCluster?: GlobalCluster;
|
8012
8038
|
}
|
8039
|
+
export interface ModifyIntegrationMessage {
|
8040
|
+
/**
|
8041
|
+
* The unique identifier of the integration to modify.
|
8042
|
+
*/
|
8043
|
+
IntegrationIdentifier: IntegrationIdentifier;
|
8044
|
+
/**
|
8045
|
+
* A new name for the integration.
|
8046
|
+
*/
|
8047
|
+
IntegrationName?: IntegrationName;
|
8048
|
+
/**
|
8049
|
+
* A new data filter for the integration. For more information, see Data filtering for Aurora zero-ETL integrations with Amazon Redshift.
|
8050
|
+
*/
|
8051
|
+
DataFilter?: DataFilter;
|
8052
|
+
/**
|
8053
|
+
* A new description for the integration.
|
8054
|
+
*/
|
8055
|
+
Description?: IntegrationDescription;
|
8056
|
+
}
|
8013
8057
|
export interface ModifyOptionGroupMessage {
|
8014
8058
|
/**
|
8015
8059
|
* The name of the option group to be modified. Permanent options, such as the TDE option for Oracle Advanced Security TDE, can't be removed from an option group, and that option group can't be removed from a DB instance once it is associated with a DB instance
|
@@ -76,11 +76,11 @@ declare class TimestreamQuery extends Service {
|
|
76
76
|
*/
|
77
77
|
listTagsForResource(callback?: (err: AWSError, data: TimestreamQuery.Types.ListTagsForResourceResponse) => void): Request<TimestreamQuery.Types.ListTagsForResourceResponse, AWSError>;
|
78
78
|
/**
|
79
|
-
* A synchronous operation that allows you to submit a query with parameters to be stored by Timestream for later running. Timestream only supports using this operation with
|
79
|
+
* A synchronous operation that allows you to submit a query with parameters to be stored by Timestream for later running. Timestream only supports using this operation with ValidateOnly set to true.
|
80
80
|
*/
|
81
81
|
prepareQuery(params: TimestreamQuery.Types.PrepareQueryRequest, callback?: (err: AWSError, data: TimestreamQuery.Types.PrepareQueryResponse) => void): Request<TimestreamQuery.Types.PrepareQueryResponse, AWSError>;
|
82
82
|
/**
|
83
|
-
* A synchronous operation that allows you to submit a query with parameters to be stored by Timestream for later running. Timestream only supports using this operation with
|
83
|
+
* A synchronous operation that allows you to submit a query with parameters to be stored by Timestream for later running. Timestream only supports using this operation with ValidateOnly set to true.
|
84
84
|
*/
|
85
85
|
prepareQuery(callback?: (err: AWSError, data: TimestreamQuery.Types.PrepareQueryResponse) => void): Request<TimestreamQuery.Types.PrepareQueryResponse, AWSError>;
|
86
86
|
/**
|
@@ -807,7 +807,7 @@ declare namespace TimestreamQuery {
|
|
807
807
|
}
|
808
808
|
export interface Type {
|
809
809
|
/**
|
810
|
-
* Indicates if the column is of type string, integer, Boolean, double, timestamp, date, time.
|
810
|
+
* Indicates if the column is of type string, integer, Boolean, double, timestamp, date, time. For more information, see Supported data types.
|
811
811
|
*/
|
812
812
|
ScalarType?: ScalarType;
|
813
813
|
/**
|