cdk-comprehend-s3olap 2.0.77 → 2.0.80
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-comprehend-s3olap.js +2 -2
- package/lib/comprehend-lambdas.js +2 -2
- package/lib/iam-roles.js +4 -4
- package/node_modules/aws-sdk/CHANGELOG.md +18 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/cloudfront-2020-05-31.min.json +350 -82
- package/node_modules/aws-sdk/apis/config-2014-11-12.min.json +107 -91
- package/node_modules/aws-sdk/apis/iotwireless-2020-11-22.min.json +123 -79
- package/node_modules/aws-sdk/apis/mediapackage-2017-10-12.min.json +7 -0
- package/node_modules/aws-sdk/apis/panorama-2019-07-24.min.json +47 -10
- package/node_modules/aws-sdk/apis/quicksight-2018-04-01.min.json +64 -29
- package/node_modules/aws-sdk/apis/sso-oidc-2019-06-10.min.json +1 -2
- package/node_modules/aws-sdk/clients/cloudfront.d.ts +246 -4
- package/node_modules/aws-sdk/clients/configservice.d.ts +27 -7
- package/node_modules/aws-sdk/clients/elbv2.d.ts +1 -1
- package/node_modules/aws-sdk/clients/gamelift.d.ts +1 -1
- package/node_modules/aws-sdk/clients/iam.d.ts +6 -6
- package/node_modules/aws-sdk/clients/iotwireless.d.ts +60 -11
- package/node_modules/aws-sdk/clients/ivs.d.ts +3 -3
- package/node_modules/aws-sdk/clients/mediapackage.d.ts +2 -0
- package/node_modules/aws-sdk/clients/panorama.d.ts +62 -0
- package/node_modules/aws-sdk/clients/quicksight.d.ts +38 -4
- package/node_modules/aws-sdk/clients/rds.d.ts +5 -5
- package/node_modules/aws-sdk/clients/ssooidc.d.ts +12 -12
- package/node_modules/aws-sdk/clients/transfer.d.ts +20 -20
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +151 -31
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +160 -40
- package/node_modules/aws-sdk/dist/aws-sdk.js +687 -287
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +85 -85
- package/node_modules/aws-sdk/lib/config-base.d.ts +14 -0
- package/node_modules/aws-sdk/lib/config.js +78 -1
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/event_listeners.js +49 -30
- package/node_modules/aws-sdk/lib/node_loader.js +17 -1
- package/node_modules/aws-sdk/lib/service.js +2 -0
- package/node_modules/aws-sdk/lib/shared-ini/ini-loader.d.ts +1 -12
- package/node_modules/aws-sdk/lib/shared-ini/ini-loader.js +68 -30
- package/node_modules/aws-sdk/lib/signers/bearer.js +14 -0
- package/node_modules/aws-sdk/lib/signers/request_signer.js +2 -0
- package/node_modules/aws-sdk/lib/token/sso_token_provider.d.ts +12 -0
- package/node_modules/aws-sdk/lib/token/sso_token_provider.js +245 -0
- package/node_modules/aws-sdk/lib/token/static_token_provider.d.ts +8 -0
- package/node_modules/aws-sdk/lib/token/static_token_provider.js +27 -0
- package/node_modules/aws-sdk/lib/token/token_provider_chain.d.ts +24 -0
- package/node_modules/aws-sdk/lib/token/token_provider_chain.js +165 -0
- package/node_modules/aws-sdk/lib/token.d.ts +101 -0
- package/node_modules/aws-sdk/lib/token.js +219 -0
- package/node_modules/aws-sdk/package.json +1 -1
- package/node_modules/aws-sdk/scripts/region-checker/allowlist.js +4 -1
- package/package.json +6 -6
@@ -928,6 +928,19 @@ declare namespace IoTWireless {
|
|
928
928
|
}
|
929
929
|
export type AutoCreateTasks = boolean;
|
930
930
|
export type BatteryLevel = "normal"|"low"|"critical"|string;
|
931
|
+
export interface Beaconing {
|
932
|
+
/**
|
933
|
+
* The data rate for gateways that are sending the beacons.
|
934
|
+
*/
|
935
|
+
DataRate?: BeaconingDataRate;
|
936
|
+
/**
|
937
|
+
* The frequency list for the gateways to send the beacons.
|
938
|
+
*/
|
939
|
+
Frequencies?: BeaconingFrequencies;
|
940
|
+
}
|
941
|
+
export type BeaconingDataRate = number;
|
942
|
+
export type BeaconingFrequencies = BeaconingFrequency[];
|
943
|
+
export type BeaconingFrequency = number;
|
931
944
|
export interface CancelMulticastGroupSessionRequest {
|
932
945
|
Id: MulticastGroupId;
|
933
946
|
}
|
@@ -956,7 +969,7 @@ declare namespace IoTWireless {
|
|
956
969
|
*/
|
957
970
|
LoRaWAN?: LoRaWANConnectionStatusEventNotificationConfigurations;
|
958
971
|
/**
|
959
|
-
*
|
972
|
+
* Denotes whether the wireless gateway ID connection status event topic is enabled or disabled.
|
960
973
|
*/
|
961
974
|
WirelessGatewayIdEventTopic?: EventNotificationTopicStatus;
|
962
975
|
}
|
@@ -1385,7 +1398,7 @@ declare namespace IoTWireless {
|
|
1385
1398
|
*/
|
1386
1399
|
Sidewalk?: SidewalkEventNotificationConfigurations;
|
1387
1400
|
/**
|
1388
|
-
*
|
1401
|
+
* Denotes whether the wireless device ID device registration state event topic is enabled or disabled.
|
1389
1402
|
*/
|
1390
1403
|
WirelessDeviceIdEventTopic?: EventNotificationTopicStatus;
|
1391
1404
|
}
|
@@ -1457,6 +1470,8 @@ declare namespace IoTWireless {
|
|
1457
1470
|
export type DlRate = number;
|
1458
1471
|
export type DlRatePolicy = string;
|
1459
1472
|
export type Double = number;
|
1473
|
+
export type DownlinkFrequency = number;
|
1474
|
+
export type DownlinkMode = "SEQUENTIAL"|"CONCURRENT"|"USING_UPLINK_GATEWAY"|string;
|
1460
1475
|
export interface DownlinkQueueMessage {
|
1461
1476
|
/**
|
1462
1477
|
* The message ID assigned by IoT Wireless to each downlink message, which helps identify the message.
|
@@ -1550,6 +1565,17 @@ declare namespace IoTWireless {
|
|
1550
1565
|
export type FuotaTaskName = string;
|
1551
1566
|
export type FuotaTaskStatus = "Pending"|"FuotaSession_Waiting"|"In_FuotaSession"|"FuotaDone"|"Delete_Waiting"|string;
|
1552
1567
|
export type GatewayEui = string;
|
1568
|
+
export type GatewayList = GatewayListItem[];
|
1569
|
+
export interface GatewayListItem {
|
1570
|
+
/**
|
1571
|
+
* The ID of the wireless gateways that you want to add to the list of gateways when sending downlink messages.
|
1572
|
+
*/
|
1573
|
+
GatewayId: WirelessGatewayId;
|
1574
|
+
/**
|
1575
|
+
* The frequency to use for the gateways when sending a downlink message to the wireless device.
|
1576
|
+
*/
|
1577
|
+
DownlinkFrequency: DownlinkFrequency;
|
1578
|
+
}
|
1553
1579
|
export type GenAppKey = string;
|
1554
1580
|
export interface GetDestinationRequest {
|
1555
1581
|
/**
|
@@ -2088,7 +2114,7 @@ declare namespace IoTWireless {
|
|
2088
2114
|
*/
|
2089
2115
|
LoRaWAN?: LoRaWANJoinEventNotificationConfigurations;
|
2090
2116
|
/**
|
2091
|
-
*
|
2117
|
+
* Denotes whether the wireless device ID join event topic is enabled or disabled.
|
2092
2118
|
*/
|
2093
2119
|
WirelessDeviceIdEventTopic?: EventNotificationTopicStatus;
|
2094
2120
|
}
|
@@ -2404,13 +2430,13 @@ declare namespace IoTWireless {
|
|
2404
2430
|
}
|
2405
2431
|
export interface LoRaWANConnectionStatusEventNotificationConfigurations {
|
2406
2432
|
/**
|
2407
|
-
*
|
2433
|
+
* Denotes whether the gateway EUI connection status event topic is enabled or disabled.
|
2408
2434
|
*/
|
2409
2435
|
GatewayEuiEventTopic?: EventNotificationTopicStatus;
|
2410
2436
|
}
|
2411
2437
|
export interface LoRaWANConnectionStatusResourceTypeEventConfiguration {
|
2412
2438
|
/**
|
2413
|
-
*
|
2439
|
+
* Denotes whether the wireless gateway connection status event topic is enabled or disabled.
|
2414
2440
|
*/
|
2415
2441
|
WirelessGatewayEventTopic?: EventNotificationTopicStatus;
|
2416
2442
|
}
|
@@ -2568,6 +2594,10 @@ declare namespace IoTWireless {
|
|
2568
2594
|
JoinEuiFilters?: JoinEuiFilters;
|
2569
2595
|
NetIdFilters?: NetIdFilters;
|
2570
2596
|
SubBands?: SubBands;
|
2597
|
+
/**
|
2598
|
+
* Beaconing object information, which consists of the data rate and frequency parameters.
|
2599
|
+
*/
|
2600
|
+
Beaconing?: Beaconing;
|
2571
2601
|
}
|
2572
2602
|
export interface LoRaWANGatewayCurrentVersion {
|
2573
2603
|
/**
|
@@ -2684,13 +2714,13 @@ declare namespace IoTWireless {
|
|
2684
2714
|
}
|
2685
2715
|
export interface LoRaWANJoinEventNotificationConfigurations {
|
2686
2716
|
/**
|
2687
|
-
*
|
2717
|
+
* Denotes whether the Dev EUI join event topic is enabled or disabled.
|
2688
2718
|
*/
|
2689
2719
|
DevEuiEventTopic?: EventNotificationTopicStatus;
|
2690
2720
|
}
|
2691
2721
|
export interface LoRaWANJoinResourceTypeEventConfiguration {
|
2692
2722
|
/**
|
2693
|
-
*
|
2723
|
+
* Denotes whether the wireless device join event topic is enabled or disabled.
|
2694
2724
|
*/
|
2695
2725
|
WirelessDeviceEventTopic?: EventNotificationTopicStatus;
|
2696
2726
|
}
|
@@ -2721,6 +2751,10 @@ declare namespace IoTWireless {
|
|
2721
2751
|
}
|
2722
2752
|
export interface LoRaWANSendDataToDevice {
|
2723
2753
|
FPort?: FPort;
|
2754
|
+
/**
|
2755
|
+
* Choose the gateways that you want to use for the downlink data traffic when the wireless device is running in class B or class C mode.
|
2756
|
+
*/
|
2757
|
+
ParticipatingGateways?: ParticipatingGateways;
|
2724
2758
|
}
|
2725
2759
|
export interface LoRaWANServiceProfile {
|
2726
2760
|
/**
|
@@ -2798,7 +2832,7 @@ declare namespace IoTWireless {
|
|
2798
2832
|
export interface MessageDeliveryStatusEventConfiguration {
|
2799
2833
|
Sidewalk?: SidewalkEventNotificationConfigurations;
|
2800
2834
|
/**
|
2801
|
-
*
|
2835
|
+
* Denotes whether the wireless device ID device registration state event topic is enabled or disabled.
|
2802
2836
|
*/
|
2803
2837
|
WirelessDeviceIdEventTopic?: EventNotificationTopicStatus;
|
2804
2838
|
}
|
@@ -2876,6 +2910,20 @@ declare namespace IoTWireless {
|
|
2876
2910
|
JoinEui?: JoinEui;
|
2877
2911
|
}
|
2878
2912
|
export type PackageVersion = string;
|
2913
|
+
export interface ParticipatingGateways {
|
2914
|
+
/**
|
2915
|
+
* Indicates whether to send the downlink message in sequential mode or concurrent mode, or to use only the chosen gateways from the previous uplink message transmission.
|
2916
|
+
*/
|
2917
|
+
DownlinkMode: DownlinkMode;
|
2918
|
+
/**
|
2919
|
+
* The list of gateways that you want to use for sending the downlink data traffic.
|
2920
|
+
*/
|
2921
|
+
GatewayList: GatewayList;
|
2922
|
+
/**
|
2923
|
+
* The duration of time for which AWS IoT Core for LoRaWAN will wait before transmitting the payload to the next gateway.
|
2924
|
+
*/
|
2925
|
+
TransmissionInterval: TransmissionInterval;
|
2926
|
+
}
|
2879
2927
|
export type PartnerAccountArn = string;
|
2880
2928
|
export type PartnerAccountId = string;
|
2881
2929
|
export type PartnerType = "Sidewalk"|string;
|
@@ -2936,7 +2984,7 @@ declare namespace IoTWireless {
|
|
2936
2984
|
*/
|
2937
2985
|
Sidewalk?: SidewalkEventNotificationConfigurations;
|
2938
2986
|
/**
|
2939
|
-
*
|
2987
|
+
* Denotes whether the wireless device ID proximity event topic is enabled or disabled.
|
2940
2988
|
*/
|
2941
2989
|
WirelessDeviceIdEventTopic?: EventNotificationTopicStatus;
|
2942
2990
|
}
|
@@ -3170,7 +3218,7 @@ declare namespace IoTWireless {
|
|
3170
3218
|
}
|
3171
3219
|
export interface SidewalkEventNotificationConfigurations {
|
3172
3220
|
/**
|
3173
|
-
*
|
3221
|
+
* Denotes whether the Amazon ID event topic is enabled or disabled.
|
3174
3222
|
*/
|
3175
3223
|
AmazonIdEventTopic?: EventNotificationTopicStatus;
|
3176
3224
|
}
|
@@ -3196,7 +3244,7 @@ declare namespace IoTWireless {
|
|
3196
3244
|
export type SidewalkManufacturingSn = string;
|
3197
3245
|
export interface SidewalkResourceTypeEventConfiguration {
|
3198
3246
|
/**
|
3199
|
-
*
|
3247
|
+
* Denotes whether the wireless device join event topic is enabled or disabled.
|
3200
3248
|
*/
|
3201
3249
|
WirelessDeviceEventTopic?: EventNotificationTopicStatus;
|
3202
3250
|
}
|
@@ -3298,6 +3346,7 @@ declare namespace IoTWireless {
|
|
3298
3346
|
WirelessDeviceFrameInfo?: WirelessDeviceFrameInfo;
|
3299
3347
|
LogLevel?: LogLevel;
|
3300
3348
|
}
|
3349
|
+
export type TransmissionInterval = number;
|
3301
3350
|
export type TransmitMode = number;
|
3302
3351
|
export type UlBucketSize = number;
|
3303
3352
|
export type UlRate = number;
|
@@ -337,7 +337,7 @@ declare namespace IVS {
|
|
337
337
|
*/
|
338
338
|
tags?: Tags;
|
339
339
|
/**
|
340
|
-
* Channel type, which determines the allowable resolution and bitrate. If you exceed the allowable resolution or bitrate, the stream probably will disconnect immediately. Default: STANDARD. Valid values: STANDARD:
|
340
|
+
* Channel type, which determines the allowable resolution and bitrate. If you exceed the allowable resolution or bitrate, the stream probably will disconnect immediately. Default: STANDARD. Valid values: STANDARD: Video is transcoded: multiple qualities are generated from the original input, to automatically give viewers the best experience for their devices and network conditions. Transcoding allows higher playback quality across a range of download speeds. Resolution can be up to 1080p and bitrate can be up to 8.5 Mbps. Audio is transcoded only for renditions 360p and below; above that, audio is passed through. This is the default. BASIC: Video is transmuxed: Amazon IVS delivers the original input to viewers. The viewer’s video-quality choice is limited to the original input. Resolution can be up to 1080p and bitrate can be up to 1.5 Mbps for 480p and up to 3.5 Mbps for resolutions between 480p and 1080p.
|
341
341
|
*/
|
342
342
|
type?: ChannelType;
|
343
343
|
}
|
@@ -397,7 +397,7 @@ declare namespace IVS {
|
|
397
397
|
*/
|
398
398
|
tags?: Tags;
|
399
399
|
/**
|
400
|
-
* Channel type, which determines the allowable resolution and bitrate. If you exceed the allowable resolution or bitrate, the stream probably will disconnect immediately. Default: STANDARD. Valid values: STANDARD:
|
400
|
+
* Channel type, which determines the allowable resolution and bitrate. If you exceed the allowable resolution or bitrate, the stream probably will disconnect immediately. Default: STANDARD. Valid values: STANDARD: Video is transcoded: multiple qualities are generated from the original input, to automatically give viewers the best experience for their devices and network conditions. Transcoding allows higher playback quality across a range of download speeds. Resolution can be up to 1080p and bitrate can be up to 8.5 Mbps. Audio is transcoded only for renditions 360p and below; above that, audio is passed through. This is the default. BASIC: Video is transmuxed: Amazon IVS delivers the original input to viewers. The viewer’s video-quality choice is limited to the original input. Resolution can be up to 1080p and bitrate can be up to 1.5 Mbps for 480p and up to 3.5 Mbps for resolutions between 480p and 1080p.
|
401
401
|
*/
|
402
402
|
type?: ChannelType;
|
403
403
|
}
|
@@ -1100,7 +1100,7 @@ declare namespace IVS {
|
|
1100
1100
|
*/
|
1101
1101
|
recordingConfigurationArn?: ChannelRecordingConfigurationArn;
|
1102
1102
|
/**
|
1103
|
-
* Channel type, which determines the allowable resolution and bitrate. If you exceed the allowable resolution or bitrate, the stream probably will disconnect immediately. Valid values: STANDARD:
|
1103
|
+
* Channel type, which determines the allowable resolution and bitrate. If you exceed the allowable resolution or bitrate, the stream probably will disconnect immediately. Valid values: STANDARD: Video is transcoded: multiple qualities are generated from the original input, to automatically give viewers the best experience for their devices and network conditions. Transcoding allows higher playback quality across a range of download speeds. Resolution can be up to 1080p and bitrate can be up to 8.5 Mbps. Audio is transcoded only for renditions 360p and below; above that, audio is passed through. This is the default. BASIC: Video is transmuxed: Amazon IVS delivers the original input to viewers. The viewer’s video-quality choice is limited to the original input. Resolution can be up to 1080p and bitrate can be up to 1.5 Mbps for 480p and up to 3.5 Mbps for resolutions between 480p and 1080p.
|
1104
1104
|
*/
|
1105
1105
|
type?: ChannelType;
|
1106
1106
|
}
|
@@ -846,6 +846,8 @@ it will be passed through to HLS output.
|
|
846
846
|
* The URL of the packaged OriginEndpoint for consumption.
|
847
847
|
*/
|
848
848
|
Url?: __string;
|
849
|
+
AdTriggers?: AdTriggers;
|
850
|
+
AdsOnDeliveryRestrictions?: AdsOnDeliveryRestrictions;
|
849
851
|
}
|
850
852
|
export interface HlsManifestCreateOrUpdateParameters {
|
851
853
|
/**
|
@@ -722,6 +722,10 @@ declare namespace Panorama {
|
|
722
722
|
* The device's description.
|
723
723
|
*/
|
724
724
|
Description?: Description;
|
725
|
+
/**
|
726
|
+
* A device's aggregated status. Including the device's connection status, provisioning status, and lease status.
|
727
|
+
*/
|
728
|
+
DeviceAggregatedStatus?: DeviceAggregatedStatus;
|
725
729
|
/**
|
726
730
|
* The device's connection status.
|
727
731
|
*/
|
@@ -734,6 +738,10 @@ declare namespace Panorama {
|
|
734
738
|
* The most recent beta software release.
|
735
739
|
*/
|
736
740
|
LatestAlternateSoftware?: LatestAlternateSoftware;
|
741
|
+
/**
|
742
|
+
* A device's latest job. Includes the target image version, and the job status.
|
743
|
+
*/
|
744
|
+
LatestDeviceJob?: LatestDeviceJob;
|
737
745
|
/**
|
738
746
|
* The latest software version available for the device.
|
739
747
|
*/
|
@@ -1053,6 +1061,18 @@ declare namespace Panorama {
|
|
1053
1061
|
* When the device was created.
|
1054
1062
|
*/
|
1055
1063
|
CreatedTime?: CreatedTime;
|
1064
|
+
/**
|
1065
|
+
* A device's current software.
|
1066
|
+
*/
|
1067
|
+
CurrentSoftware?: CurrentSoftware;
|
1068
|
+
/**
|
1069
|
+
* A description for the device.
|
1070
|
+
*/
|
1071
|
+
Description?: Description;
|
1072
|
+
/**
|
1073
|
+
* A device's aggregated status. Including the device's connection status, provisioning status, and lease status.
|
1074
|
+
*/
|
1075
|
+
DeviceAggregatedStatus?: DeviceAggregatedStatus;
|
1056
1076
|
/**
|
1057
1077
|
* The device's ID.
|
1058
1078
|
*/
|
@@ -1061,6 +1081,10 @@ declare namespace Panorama {
|
|
1061
1081
|
* When the device was updated.
|
1062
1082
|
*/
|
1063
1083
|
LastUpdatedTime?: LastUpdatedTime;
|
1084
|
+
/**
|
1085
|
+
* A device's latest job. Includes the target image version, and the update job status.
|
1086
|
+
*/
|
1087
|
+
LatestDeviceJob?: LatestDeviceJob;
|
1064
1088
|
/**
|
1065
1089
|
* The device's lease expiration time.
|
1066
1090
|
*/
|
@@ -1073,7 +1097,16 @@ declare namespace Panorama {
|
|
1073
1097
|
* The device's provisioning status.
|
1074
1098
|
*/
|
1075
1099
|
ProvisioningStatus?: DeviceStatus;
|
1100
|
+
/**
|
1101
|
+
* The device's tags.
|
1102
|
+
*/
|
1103
|
+
Tags?: TagMap;
|
1104
|
+
/**
|
1105
|
+
* The device's type.
|
1106
|
+
*/
|
1107
|
+
Type?: DeviceType;
|
1076
1108
|
}
|
1109
|
+
export type DeviceAggregatedStatus = "ERROR"|"AWAITING_PROVISIONING"|"PENDING"|"FAILED"|"DELETING"|"ONLINE"|"OFFLINE"|"LEASE_EXPIRED"|"UPDATE_NEEDED"|string;
|
1077
1110
|
export type DeviceArn = string;
|
1078
1111
|
export type DeviceBrand = "AWS_PANORAMA"|"LENOVO"|string;
|
1079
1112
|
export type DeviceConnectionStatus = "ONLINE"|"OFFLINE"|"AWAITING_CREDENTIALS"|"NOT_AVAILABLE"|"ERROR"|string;
|
@@ -1168,6 +1201,16 @@ declare namespace Panorama {
|
|
1168
1201
|
export type JobType = "OTA"|string;
|
1169
1202
|
export type LastUpdatedTime = Date;
|
1170
1203
|
export type LatestAlternateSoftware = string;
|
1204
|
+
export interface LatestDeviceJob {
|
1205
|
+
/**
|
1206
|
+
* The target version of the device software.
|
1207
|
+
*/
|
1208
|
+
ImageVersion?: ImageVersion;
|
1209
|
+
/**
|
1210
|
+
* Status of the latest device job.
|
1211
|
+
*/
|
1212
|
+
Status?: UpdateProgress;
|
1213
|
+
}
|
1171
1214
|
export type LatestSoftware = string;
|
1172
1215
|
export type LeaseExpirationTime = Date;
|
1173
1216
|
export interface ListApplicationInstanceDependenciesRequest {
|
@@ -1271,14 +1314,30 @@ declare namespace Panorama {
|
|
1271
1314
|
NextToken?: NextToken;
|
1272
1315
|
}
|
1273
1316
|
export interface ListDevicesRequest {
|
1317
|
+
/**
|
1318
|
+
* Filter based on a device's status.
|
1319
|
+
*/
|
1320
|
+
DeviceAggregatedStatusFilter?: DeviceAggregatedStatus;
|
1274
1321
|
/**
|
1275
1322
|
* The maximum number of devices to return in one page of results.
|
1276
1323
|
*/
|
1277
1324
|
MaxResults?: MaxSize25;
|
1325
|
+
/**
|
1326
|
+
* Filter based on device's name. Prefixes supported.
|
1327
|
+
*/
|
1328
|
+
NameFilter?: NameFilter;
|
1278
1329
|
/**
|
1279
1330
|
* Specify the pagination token from a previous request to retrieve the next page of results.
|
1280
1331
|
*/
|
1281
1332
|
NextToken?: NextToken;
|
1333
|
+
/**
|
1334
|
+
* The target column to be sorted on. Default column sort is CREATED_TIME.
|
1335
|
+
*/
|
1336
|
+
SortBy?: ListDevicesSortBy;
|
1337
|
+
/**
|
1338
|
+
* The sorting order for the returned list. SortOrder is DESCENDING by default based on CREATED_TIME. Otherwise, SortOrder is ASCENDING.
|
1339
|
+
*/
|
1340
|
+
SortOrder?: SortOrder;
|
1282
1341
|
}
|
1283
1342
|
export interface ListDevicesResponse {
|
1284
1343
|
/**
|
@@ -1290,6 +1349,7 @@ declare namespace Panorama {
|
|
1290
1349
|
*/
|
1291
1350
|
NextToken?: NextToken;
|
1292
1351
|
}
|
1352
|
+
export type ListDevicesSortBy = "DEVICE_ID"|"CREATED_TIME"|"NAME"|"DEVICE_AGGREGATED_STATUS"|string;
|
1293
1353
|
export interface ListNodeFromTemplateJobsRequest {
|
1294
1354
|
/**
|
1295
1355
|
* The maximum number of node from template jobs to return in one page of results.
|
@@ -1420,6 +1480,7 @@ declare namespace Panorama {
|
|
1420
1480
|
export type Mask = string;
|
1421
1481
|
export type MaxConnections = number;
|
1422
1482
|
export type MaxSize25 = number;
|
1483
|
+
export type NameFilter = string;
|
1423
1484
|
export type NetworkConnectionStatus = "CONNECTED"|"NOT_CONNECTED"|"CONNECTING"|string;
|
1424
1485
|
export interface NetworkPayload {
|
1425
1486
|
/**
|
@@ -1874,6 +1935,7 @@ declare namespace Panorama {
|
|
1874
1935
|
*/
|
1875
1936
|
Region?: Region;
|
1876
1937
|
}
|
1938
|
+
export type SortOrder = "ASCENDING"|"DESCENDING"|string;
|
1877
1939
|
export interface StaticIpConnectionInfo {
|
1878
1940
|
/**
|
1879
1941
|
* The connection's default gateway.
|
@@ -508,11 +508,11 @@ declare class QuickSight extends Service {
|
|
508
508
|
*/
|
509
509
|
describeUser(callback?: (err: AWSError, data: QuickSight.Types.DescribeUserResponse) => void): Request<QuickSight.Types.DescribeUserResponse, AWSError>;
|
510
510
|
/**
|
511
|
-
* Generates an embed URL that you can use to embed an Amazon QuickSight dashboard in your website, without having to register any reader users. Before you use this action, make sure that you have configured the dashboards and permissions. The following rules apply to the generated URL: It contains a temporary bearer token. It is valid for 5 minutes after it is generated. Once redeemed within this period, it cannot be re-used again. The URL validity period should not be confused with the actual session lifetime that can be customized using the SessionLifetimeInMinutes parameter. The resulting user session is valid for 15 minutes (minimum) to 10 hours (maximum). The default session duration is 10 hours. You are charged only when the URL is used or there is interaction with Amazon QuickSight. For more information, see Embedded Analytics in the Amazon QuickSight User Guide. For more information about the high-level steps for embedding and for an interactive demo of the ways you can customize embedding, visit the Amazon QuickSight Developer Portal.
|
511
|
+
* Generates an embed URL that you can use to embed an Amazon QuickSight dashboard or visual in your website, without having to register any reader users. Before you use this action, make sure that you have configured the dashboards and permissions. The following rules apply to the generated URL: It contains a temporary bearer token. It is valid for 5 minutes after it is generated. Once redeemed within this period, it cannot be re-used again. The URL validity period should not be confused with the actual session lifetime that can be customized using the SessionLifetimeInMinutes parameter. The resulting user session is valid for 15 minutes (minimum) to 10 hours (maximum). The default session duration is 10 hours. You are charged only when the URL is used or there is interaction with Amazon QuickSight. For more information, see Embedded Analytics in the Amazon QuickSight User Guide. For more information about the high-level steps for embedding and for an interactive demo of the ways you can customize embedding, visit the Amazon QuickSight Developer Portal.
|
512
512
|
*/
|
513
513
|
generateEmbedUrlForAnonymousUser(params: QuickSight.Types.GenerateEmbedUrlForAnonymousUserRequest, callback?: (err: AWSError, data: QuickSight.Types.GenerateEmbedUrlForAnonymousUserResponse) => void): Request<QuickSight.Types.GenerateEmbedUrlForAnonymousUserResponse, AWSError>;
|
514
514
|
/**
|
515
|
-
* Generates an embed URL that you can use to embed an Amazon QuickSight dashboard in your website, without having to register any reader users. Before you use this action, make sure that you have configured the dashboards and permissions. The following rules apply to the generated URL: It contains a temporary bearer token. It is valid for 5 minutes after it is generated. Once redeemed within this period, it cannot be re-used again. The URL validity period should not be confused with the actual session lifetime that can be customized using the SessionLifetimeInMinutes parameter. The resulting user session is valid for 15 minutes (minimum) to 10 hours (maximum). The default session duration is 10 hours. You are charged only when the URL is used or there is interaction with Amazon QuickSight. For more information, see Embedded Analytics in the Amazon QuickSight User Guide. For more information about the high-level steps for embedding and for an interactive demo of the ways you can customize embedding, visit the Amazon QuickSight Developer Portal.
|
515
|
+
* Generates an embed URL that you can use to embed an Amazon QuickSight dashboard or visual in your website, without having to register any reader users. Before you use this action, make sure that you have configured the dashboards and permissions. The following rules apply to the generated URL: It contains a temporary bearer token. It is valid for 5 minutes after it is generated. Once redeemed within this period, it cannot be re-used again. The URL validity period should not be confused with the actual session lifetime that can be customized using the SessionLifetimeInMinutes parameter. The resulting user session is valid for 15 minutes (minimum) to 10 hours (maximum). The default session duration is 10 hours. You are charged only when the URL is used or there is interaction with Amazon QuickSight. For more information, see Embedded Analytics in the Amazon QuickSight User Guide. For more information about the high-level steps for embedding and for an interactive demo of the ways you can customize embedding, visit the Amazon QuickSight Developer Portal.
|
516
516
|
*/
|
517
517
|
generateEmbedUrlForAnonymousUser(callback?: (err: AWSError, data: QuickSight.Types.GenerateEmbedUrlForAnonymousUserResponse) => void): Request<QuickSight.Types.GenerateEmbedUrlForAnonymousUserResponse, AWSError>;
|
518
518
|
/**
|
@@ -1179,11 +1179,21 @@ declare namespace QuickSight {
|
|
1179
1179
|
*/
|
1180
1180
|
InitialDashboardId: RestrictiveResourceId;
|
1181
1181
|
}
|
1182
|
+
export interface AnonymousUserDashboardVisualEmbeddingConfiguration {
|
1183
|
+
/**
|
1184
|
+
* The visual ID for the visual that you want the user to see. This ID is included in the output URL. When the URL in response is accessed, Amazon QuickSight renders this visual. The Amazon Resource Name (ARN) of the dashboard that the visual belongs to must be included in the AuthorizedResourceArns parameter. Otherwise, the request will fail with InvalidParameterValueException.
|
1185
|
+
*/
|
1186
|
+
InitialDashboardVisualId: DashboardVisualId;
|
1187
|
+
}
|
1182
1188
|
export interface AnonymousUserEmbeddingExperienceConfiguration {
|
1183
1189
|
/**
|
1184
1190
|
* The type of embedding experience. In this case, Amazon QuickSight dashboards.
|
1185
1191
|
*/
|
1186
1192
|
Dashboard?: AnonymousUserDashboardEmbeddingConfiguration;
|
1193
|
+
/**
|
1194
|
+
* The type of embedding experience. In this case, Amazon QuickSight visuals.
|
1195
|
+
*/
|
1196
|
+
DashboardVisual?: AnonymousUserDashboardVisualEmbeddingConfiguration;
|
1187
1197
|
}
|
1188
1198
|
export type Arn = string;
|
1189
1199
|
export type ArnList = Arn[];
|
@@ -2468,6 +2478,20 @@ declare namespace QuickSight {
|
|
2468
2478
|
Description?: VersionDescription;
|
2469
2479
|
}
|
2470
2480
|
export type DashboardVersionSummaryList = DashboardVersionSummary[];
|
2481
|
+
export interface DashboardVisualId {
|
2482
|
+
/**
|
2483
|
+
* The ID of the dashboard that has the visual that you want to embed. The DashboardId can be found in the IDs for developers section of the Embed visual pane of the visual's on-visual menu of the Amazon QuickSight console. You can also get the DashboardId with a ListDashboards API operation.
|
2484
|
+
*/
|
2485
|
+
DashboardId: RestrictiveResourceId;
|
2486
|
+
/**
|
2487
|
+
* The ID of the sheet that the has visual that you want to embed. The SheetId can be found in the IDs for developers section of the Embed visual pane of the visual's on-visual menu of the Amazon QuickSight console.
|
2488
|
+
*/
|
2489
|
+
SheetId: RestrictiveResourceId;
|
2490
|
+
/**
|
2491
|
+
* The ID of the visual that you want to embed. The VisualID can be found in the IDs for developers section of the Embed visual pane of the visual's on-visual menu of the Amazon QuickSight console.
|
2492
|
+
*/
|
2493
|
+
VisualId: RestrictiveResourceId;
|
2494
|
+
}
|
2471
2495
|
export interface DataColorPalette {
|
2472
2496
|
/**
|
2473
2497
|
* The hexadecimal codes for the colors.
|
@@ -4290,7 +4314,7 @@ declare namespace QuickSight {
|
|
4290
4314
|
*/
|
4291
4315
|
UserArn: Arn;
|
4292
4316
|
/**
|
4293
|
-
* The experience you are embedding. For registered users, you can embed Amazon QuickSight dashboards or the entire Amazon QuickSight console.
|
4317
|
+
* The experience you are embedding. For registered users, you can embed Amazon QuickSight dashboards, Amazon QuickSight visuals, the Amazon QuickSight Q search bar, or the entire Amazon QuickSight console.
|
4294
4318
|
*/
|
4295
4319
|
ExperienceConfiguration: RegisteredUserEmbeddingExperienceConfiguration;
|
4296
4320
|
/**
|
@@ -4300,7 +4324,7 @@ declare namespace QuickSight {
|
|
4300
4324
|
}
|
4301
4325
|
export interface GenerateEmbedUrlForRegisteredUserResponse {
|
4302
4326
|
/**
|
4303
|
-
* The embed URL for the Amazon QuickSight dashboard or console.
|
4327
|
+
* The embed URL for the Amazon QuickSight dashboard, visual, Q search bar, or console.
|
4304
4328
|
*/
|
4305
4329
|
EmbedUrl: EmbeddingUrl;
|
4306
4330
|
/**
|
@@ -5752,6 +5776,12 @@ declare namespace QuickSight {
|
|
5752
5776
|
*/
|
5753
5777
|
InitialDashboardId: RestrictiveResourceId;
|
5754
5778
|
}
|
5779
|
+
export interface RegisteredUserDashboardVisualEmbeddingConfiguration {
|
5780
|
+
/**
|
5781
|
+
* The visual ID for the visual that you want the user to embed. This ID is included in the output URL. When the URL in response is accessed, Amazon QuickSight renders this visual. The Amazon Resource Name (ARN) of the dashboard that the visual belongs to must be included in the AuthorizedResourceArns parameter. Otherwise, the request will fail with InvalidParameterValueException.
|
5782
|
+
*/
|
5783
|
+
InitialDashboardVisualId: DashboardVisualId;
|
5784
|
+
}
|
5755
5785
|
export interface RegisteredUserEmbeddingExperienceConfiguration {
|
5756
5786
|
/**
|
5757
5787
|
* The configuration details for providing a dashboard embedding experience.
|
@@ -5765,6 +5795,10 @@ declare namespace QuickSight {
|
|
5765
5795
|
* The configuration details for embedding the Q search bar. For more information about embedding the Q search bar, see Embedding Overview in the Amazon QuickSight User Guide.
|
5766
5796
|
*/
|
5767
5797
|
QSearchBar?: RegisteredUserQSearchBarEmbeddingConfiguration;
|
5798
|
+
/**
|
5799
|
+
* The type of embedding experience. In this case, Amazon QuickSight visuals.
|
5800
|
+
*/
|
5801
|
+
DashboardVisual?: RegisteredUserDashboardVisualEmbeddingConfiguration;
|
5768
5802
|
}
|
5769
5803
|
export interface RegisteredUserQSearchBarEmbeddingConfiguration {
|
5770
5804
|
/**
|
@@ -1102,11 +1102,11 @@ declare class RDS extends Service {
|
|
1102
1102
|
*/
|
1103
1103
|
stopDBInstanceAutomatedBackupsReplication(callback?: (err: AWSError, data: RDS.Types.StopDBInstanceAutomatedBackupsReplicationResult) => void): Request<RDS.Types.StopDBInstanceAutomatedBackupsReplicationResult, AWSError>;
|
1104
1104
|
/**
|
1105
|
-
* Switches over an Oracle standby database in an Oracle Data Guard environment, making it the new primary database. Issue this command in the
|
1105
|
+
* Switches over an Oracle standby database in an Oracle Data Guard environment, making it the new primary database. Issue this command in the Region that hosts the current standby database.
|
1106
1106
|
*/
|
1107
1107
|
switchoverReadReplica(params: RDS.Types.SwitchoverReadReplicaMessage, callback?: (err: AWSError, data: RDS.Types.SwitchoverReadReplicaResult) => void): Request<RDS.Types.SwitchoverReadReplicaResult, AWSError>;
|
1108
1108
|
/**
|
1109
|
-
* Switches over an Oracle standby database in an Oracle Data Guard environment, making it the new primary database. Issue this command in the
|
1109
|
+
* Switches over an Oracle standby database in an Oracle Data Guard environment, making it the new primary database. Issue this command in the Region that hosts the current standby database.
|
1110
1110
|
*/
|
1111
1111
|
switchoverReadReplica(callback?: (err: AWSError, data: RDS.Types.SwitchoverReadReplicaResult) => void): Request<RDS.Types.SwitchoverReadReplicaResult, AWSError>;
|
1112
1112
|
/**
|
@@ -1620,7 +1620,7 @@ declare namespace RDS {
|
|
1620
1620
|
*/
|
1621
1621
|
DatabaseInstallationFilesS3Prefix?: String255;
|
1622
1622
|
/**
|
1623
|
-
* The Amazon Web Services KMS key identifier for an encrypted CEV. A symmetric KMS key is required for RDS Custom, but optional for Amazon RDS. If you have an existing symmetric KMS key in your account, you can use it with RDS Custom. No further action is necessary. If you don't already have a symmetric KMS key in your account, follow the instructions in Creating symmetric KMS
|
1623
|
+
* The Amazon Web Services KMS key identifier for an encrypted CEV. A symmetric encryption KMS key is required for RDS Custom, but optional for Amazon RDS. If you have an existing symmetric encryption KMS key in your account, you can use it with RDS Custom. No further action is necessary. If you don't already have a symmetric encryption KMS key in your account, follow the instructions in Creating a symmetric encryption KMS key in the Amazon Web Services Key Management Service Developer Guide. You can choose the same symmetric encryption key when you create a CEV and a DB instance, or choose different keys.
|
1624
1624
|
*/
|
1625
1625
|
KMSKeyId: KmsKeyIdOrArn;
|
1626
1626
|
/**
|
@@ -4083,7 +4083,7 @@ declare namespace RDS {
|
|
4083
4083
|
*/
|
4084
4084
|
OriginalSnapshotCreateTime?: TStamp;
|
4085
4085
|
/**
|
4086
|
-
* The timestamp of the most recent transaction applied to the database that you're backing up. Thus, if you restore a snapshot, SnapshotDatabaseTime is the most recent transaction in the restored DB instance. In contrast, originalSnapshotCreateTime specifies the system time that the snapshot completed. If you back up a read replica, you can determine the replica lag by comparing SnapshotDatabaseTime with originalSnapshotCreateTime. For example, if originalSnapshotCreateTime is two hours later than SnapshotDatabaseTime, then the replica lag is two hours.
|
4086
|
+
* The timestamp of the most recent transaction applied to the database that you're backing up. Thus, if you restore a snapshot, SnapshotDatabaseTime is the most recent transaction in the restored DB instance. In contrast, originalSnapshotCreateTime specifies the system time that the snapshot completed. If you back up a read replica, you can determine the replica lag by comparing SnapshotDatabaseTime with originalSnapshotCreateTime. For example, if originalSnapshotCreateTime is two hours later than SnapshotDatabaseTime, then the replica lag is two hours.
|
4087
4087
|
*/
|
4088
4088
|
SnapshotDatabaseTime?: TStamp;
|
4089
4089
|
/**
|
@@ -6018,7 +6018,7 @@ declare namespace RDS {
|
|
6018
6018
|
*/
|
6019
6019
|
AllocatedStorage?: IntegerOptional;
|
6020
6020
|
/**
|
6021
|
-
* The new compute and memory capacity of the DB instance, for example db.m4.large. Not all DB instance classes are available in all Amazon Web Services Regions, or for all database engines. For the full list of DB instance classes, and availability for your engine, see DB
|
6021
|
+
* The new compute and memory capacity of the DB instance, for example db.m4.large. Not all DB instance classes are available in all Amazon Web Services Regions, or for all database engines. For the full list of DB instance classes, and availability for your engine, see DB instance classes in the Amazon RDS User Guide or Aurora DB instance classes in the Amazon Aurora User Guide. If you modify the DB instance class, an outage occurs during the change. The change is applied during the next maintenance window, unless ApplyImmediately is enabled for this request. This setting doesn't apply to RDS Custom for Oracle. Default: Uses existing setting
|
6022
6022
|
*/
|
6023
6023
|
DBInstanceClass?: String;
|
6024
6024
|
/**
|
@@ -12,19 +12,19 @@ declare class SSOOIDC extends Service {
|
|
12
12
|
constructor(options?: SSOOIDC.Types.ClientConfiguration)
|
13
13
|
config: Config & SSOOIDC.Types.ClientConfiguration;
|
14
14
|
/**
|
15
|
-
* Creates and returns an access token for the authorized client. The access token issued will be used to fetch short-term credentials for the assigned roles in the
|
15
|
+
* Creates and returns an access token for the authorized client. The access token issued will be used to fetch short-term credentials for the assigned roles in the AWS account.
|
16
16
|
*/
|
17
17
|
createToken(params: SSOOIDC.Types.CreateTokenRequest, callback?: (err: AWSError, data: SSOOIDC.Types.CreateTokenResponse) => void): Request<SSOOIDC.Types.CreateTokenResponse, AWSError>;
|
18
18
|
/**
|
19
|
-
* Creates and returns an access token for the authorized client. The access token issued will be used to fetch short-term credentials for the assigned roles in the
|
19
|
+
* Creates and returns an access token for the authorized client. The access token issued will be used to fetch short-term credentials for the assigned roles in the AWS account.
|
20
20
|
*/
|
21
21
|
createToken(callback?: (err: AWSError, data: SSOOIDC.Types.CreateTokenResponse) => void): Request<SSOOIDC.Types.CreateTokenResponse, AWSError>;
|
22
22
|
/**
|
23
|
-
* Registers a client with
|
23
|
+
* Registers a client with AWS SSO. This allows clients to initiate device authorization. The output should be persisted for reuse through many authentication requests.
|
24
24
|
*/
|
25
25
|
registerClient(params: SSOOIDC.Types.RegisterClientRequest, callback?: (err: AWSError, data: SSOOIDC.Types.RegisterClientResponse) => void): Request<SSOOIDC.Types.RegisterClientResponse, AWSError>;
|
26
26
|
/**
|
27
|
-
* Registers a client with
|
27
|
+
* Registers a client with AWS SSO. This allows clients to initiate device authorization. The output should be persisted for reuse through many authentication requests.
|
28
28
|
*/
|
29
29
|
registerClient(callback?: (err: AWSError, data: SSOOIDC.Types.RegisterClientResponse) => void): Request<SSOOIDC.Types.RegisterClientResponse, AWSError>;
|
30
30
|
/**
|
@@ -53,19 +53,19 @@ declare namespace SSOOIDC {
|
|
53
53
|
*/
|
54
54
|
clientSecret: ClientSecret;
|
55
55
|
/**
|
56
|
-
* Supports grant types for
|
56
|
+
* Supports grant types for authorization code, refresh token, and device code request.
|
57
57
|
*/
|
58
58
|
grantType: GrantType;
|
59
59
|
/**
|
60
60
|
* Used only when calling this API for the device code grant type. This short-term code is used to identify this authentication attempt. This should come from an in-memory reference to the result of the StartDeviceAuthorization API.
|
61
61
|
*/
|
62
|
-
deviceCode
|
62
|
+
deviceCode?: DeviceCode;
|
63
63
|
/**
|
64
64
|
* The authorization code received from the authorization service. This parameter is required to perform an authorization grant request to get access to a token.
|
65
65
|
*/
|
66
66
|
code?: AuthCode;
|
67
67
|
/**
|
68
|
-
*
|
68
|
+
* The token used to obtain an access token in the event that the access token is invalid or expired. This token is not issued by the service.
|
69
69
|
*/
|
70
70
|
refreshToken?: RefreshToken;
|
71
71
|
/**
|
@@ -79,7 +79,7 @@ declare namespace SSOOIDC {
|
|
79
79
|
}
|
80
80
|
export interface CreateTokenResponse {
|
81
81
|
/**
|
82
|
-
* An opaque token to access
|
82
|
+
* An opaque token to access AWS SSO resources assigned to a user.
|
83
83
|
*/
|
84
84
|
accessToken?: AccessToken;
|
85
85
|
/**
|
@@ -91,11 +91,11 @@ declare namespace SSOOIDC {
|
|
91
91
|
*/
|
92
92
|
expiresIn?: ExpirationInSeconds;
|
93
93
|
/**
|
94
|
-
*
|
94
|
+
* A token that, if present, can be used to refresh a previously issued access token that might have expired.
|
95
95
|
*/
|
96
96
|
refreshToken?: RefreshToken;
|
97
97
|
/**
|
98
|
-
*
|
98
|
+
* The identifier of the user that associated with the access token, if present.
|
99
99
|
*/
|
100
100
|
idToken?: IdToken;
|
101
101
|
}
|
@@ -150,7 +150,7 @@ declare namespace SSOOIDC {
|
|
150
150
|
export type Scopes = Scope[];
|
151
151
|
export interface StartDeviceAuthorizationRequest {
|
152
152
|
/**
|
153
|
-
* The unique identifier string for the client that is registered with
|
153
|
+
* The unique identifier string for the client that is registered with AWS SSO. This value should come from the persisted result of the RegisterClient API operation.
|
154
154
|
*/
|
155
155
|
clientId: ClientId;
|
156
156
|
/**
|
@@ -158,7 +158,7 @@ declare namespace SSOOIDC {
|
|
158
158
|
*/
|
159
159
|
clientSecret: ClientSecret;
|
160
160
|
/**
|
161
|
-
* The URL for the AWS
|
161
|
+
* The URL for the AWS SSO user portal. For more information, see Using the User Portal in the AWS Single Sign-On User Guide.
|
162
162
|
*/
|
163
163
|
startUrl: URI;
|
164
164
|
}
|