aws-sdk 2.1578.0 → 2.1580.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/README.md +1 -1
- package/apis/backup-2018-11-15.min.json +7 -1
- package/apis/cloudformation-2010-05-15.min.json +35 -0
- package/apis/codebuild-2016-10-06.min.json +70 -67
- package/apis/connect-2017-08-08.min.json +350 -300
- package/apis/ec2-2016-11-15.min.json +370 -279
- package/apis/kms-2014-11-01.min.json +3 -4
- package/apis/mediatailor-2018-04-23.min.json +291 -215
- package/apis/rds-2014-10-31.min.json +155 -133
- package/apis/s3-2006-03-01.examples.json +117 -117
- package/apis/s3-2006-03-01.min.json +4 -2
- package/apis/workspaces-thin-client-2023-08-22.min.json +1 -2
- package/clients/backup.d.ts +13 -5
- package/clients/cloudformation.d.ts +49 -2
- package/clients/codebuild.d.ts +13 -0
- package/clients/connect.d.ts +50 -0
- package/clients/ec2.d.ts +100 -1
- package/clients/kinesisanalyticsv2.d.ts +1 -1
- package/clients/kms.d.ts +10 -6
- package/clients/mediatailor.d.ts +98 -2
- package/clients/rds.d.ts +44 -0
- package/clients/s3.d.ts +47 -47
- package/clients/sagemaker.d.ts +5 -5
- package/clients/timestreamquery.d.ts +3 -3
- package/clients/workspacesthinclient.d.ts +0 -4
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +11 -11
- package/dist/aws-sdk.js +990 -788
- package/dist/aws-sdk.min.js +101 -101
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/mediatailor.d.ts
CHANGED
@@ -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[];
|
package/clients/rds.d.ts
CHANGED
@@ -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
|