cdk-comprehend-s3olap 2.0.59 → 2.0.62
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 +4 -4
- 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 +6 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/glue-2017-03-31.min.json +306 -295
- package/node_modules/aws-sdk/apis/iotwireless-2020-11-22.min.json +128 -87
- package/node_modules/aws-sdk/apis/pinpoint-2016-12-01.min.json +274 -191
- package/node_modules/aws-sdk/clients/glue.d.ts +31 -2
- package/node_modules/aws-sdk/clients/iotwireless.d.ts +45 -0
- package/node_modules/aws-sdk/clients/pinpoint.d.ts +96 -0
- package/node_modules/aws-sdk/clients/quicksight.d.ts +10 -10
- package/node_modules/aws-sdk/clients/sso.d.ts +19 -19
- package/node_modules/aws-sdk/clients/ssoadmin.d.ts +82 -82
- package/node_modules/aws-sdk/clients/ssooidc.d.ts +11 -11
- 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 +4 -4
- package/node_modules/aws-sdk/dist/aws-sdk.js +3 -3
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +2 -2
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/node_modules/esbuild/install.js +4 -4
- package/node_modules/esbuild/lib/main.js +7 -7
- package/node_modules/esbuild/package.json +22 -22
- package/node_modules/esbuild-linux-64/bin/esbuild +0 -0
- package/node_modules/esbuild-linux-64/package.json +1 -1
- package/node_modules/object.assign/.eslintrc +3 -1
- package/node_modules/object.assign/.nycrc +0 -5
- package/node_modules/object.assign/CHANGELOG.md +20 -0
- package/node_modules/object.assign/README.md +7 -6
- package/node_modules/object.assign/implementation.js +25 -21
- package/node_modules/object.assign/package.json +25 -13
- package/node_modules/object.assign/test/implementation.js +19 -0
- package/node_modules/object.assign/test/tests.js +2 -7
- package/node_modules/object.assign/test.html +18458 -0
- package/package.json +7 -7
- package/node_modules/object.assign/.eslintignore +0 -1
- package/node_modules/object.assign/.github/workflows/rebase.yml +0 -15
- package/node_modules/object.assign/.github/workflows/require-allow-edits.yml +0 -14
- package/node_modules/object.assign/dist/browser.js +0 -865
@@ -2887,7 +2887,7 @@ declare namespace Glue {
|
|
2887
2887
|
}
|
2888
2888
|
export type CrawlId = string;
|
2889
2889
|
export type CrawlList = Crawl[];
|
2890
|
-
export type CrawlState = "RUNNING"|"CANCELLING"|"CANCELLED"|"SUCCEEDED"|"FAILED"|string;
|
2890
|
+
export type CrawlState = "RUNNING"|"CANCELLING"|"CANCELLED"|"SUCCEEDED"|"FAILED"|"ERROR"|string;
|
2891
2891
|
export interface Crawler {
|
2892
2892
|
/**
|
2893
2893
|
* The name of the crawler.
|
@@ -3531,6 +3531,10 @@ declare namespace Glue {
|
|
3531
3531
|
* The representation of a directed acyclic graph on which both the Glue Studio visual component and Glue Studio code generation is based.
|
3532
3532
|
*/
|
3533
3533
|
CodeGenConfigurationNodes?: CodeGenConfigurationNodes;
|
3534
|
+
/**
|
3535
|
+
* Indicates whether the job is run with a standard or flexible execution class. The standard execution-class is ideal for time-sensitive workloads that require fast job startup and dedicated resources. The flexible execution class is appropriate for time-insensitive jobs whose start and completion times may vary. Only jobs with Glue version 3.0 and above and command type glueetl will be allowed to set ExecutionClass to FLEX. The flexible execution class is available for Spark jobs.
|
3536
|
+
*/
|
3537
|
+
ExecutionClass?: ExecutionClass;
|
3534
3538
|
}
|
3535
3539
|
export interface CreateJobResponse {
|
3536
3540
|
/**
|
@@ -4973,6 +4977,7 @@ declare namespace Glue {
|
|
4973
4977
|
BatchWindow?: BatchWindow;
|
4974
4978
|
}
|
4975
4979
|
export type EventQueueArn = string;
|
4980
|
+
export type ExecutionClass = "FLEX"|"STANDARD"|string;
|
4976
4981
|
export interface ExecutionProperty {
|
4977
4982
|
/**
|
4978
4983
|
* The maximum number of concurrent runs allowed for the job. The default is 1. An error is returned when this threshold is reached. The maximum value you can specify is controlled by a service limit.
|
@@ -6994,6 +6999,10 @@ declare namespace Glue {
|
|
6994
6999
|
* The representation of a directed acyclic graph on which both the Glue Studio visual component and Glue Studio code generation is based.
|
6995
7000
|
*/
|
6996
7001
|
CodeGenConfigurationNodes?: CodeGenConfigurationNodes;
|
7002
|
+
/**
|
7003
|
+
* Indicates whether the job is run with a standard or flexible execution class. The standard execution class is ideal for time-sensitive workloads that require fast job startup and dedicated resources. The flexible execution class is appropriate for time-insensitive jobs whose start and completion times may vary. Only jobs with Glue version 3.0 and above and command type glueetl will be allowed to set ExecutionClass to FLEX. The flexible execution class is available for Spark jobs.
|
7004
|
+
*/
|
7005
|
+
ExecutionClass?: ExecutionClass;
|
6997
7006
|
}
|
6998
7007
|
export interface JobBookmarkEntry {
|
6999
7008
|
/**
|
@@ -7152,9 +7161,13 @@ declare namespace Glue {
|
|
7152
7161
|
* This field populates only for Auto Scaling job runs, and represents the total time each executor ran during the lifecycle of a job run in seconds, multiplied by a DPU factor (1 for G.1X, 2 for G.2X, or 0.25 for G.025X workers). This value may be different than the executionEngineRuntime * MaxCapacity as in the case of Auto Scaling jobs, as the number of executors running at a given time may be less than the MaxCapacity. Therefore, it is possible that the value of DPUSeconds is less than executionEngineRuntime * MaxCapacity.
|
7153
7162
|
*/
|
7154
7163
|
DPUSeconds?: NullableDouble;
|
7164
|
+
/**
|
7165
|
+
* Indicates whether the job is run with a standard or flexible execution class. The standard execution-class is ideal for time-sensitive workloads that require fast job startup and dedicated resources. The flexible execution class is appropriate for time-insensitive jobs whose start and completion times may vary. Only jobs with Glue version 3.0 and above and command type glueetl will be allowed to set ExecutionClass to FLEX. The flexible execution class is available for Spark jobs.
|
7166
|
+
*/
|
7167
|
+
ExecutionClass?: ExecutionClass;
|
7155
7168
|
}
|
7156
7169
|
export type JobRunList = JobRun[];
|
7157
|
-
export type JobRunState = "STARTING"|"RUNNING"|"STOPPING"|"STOPPED"|"SUCCEEDED"|"FAILED"|"TIMEOUT"|string;
|
7170
|
+
export type JobRunState = "STARTING"|"RUNNING"|"STOPPING"|"STOPPED"|"SUCCEEDED"|"FAILED"|"TIMEOUT"|"ERROR"|"WAITING"|string;
|
7158
7171
|
export interface JobUpdate {
|
7159
7172
|
/**
|
7160
7173
|
* Description of the job being defined.
|
@@ -7228,6 +7241,10 @@ declare namespace Glue {
|
|
7228
7241
|
* The representation of a directed acyclic graph on which both the Glue Studio visual component and Glue Studio code generation is based.
|
7229
7242
|
*/
|
7230
7243
|
CodeGenConfigurationNodes?: CodeGenConfigurationNodes;
|
7244
|
+
/**
|
7245
|
+
* Indicates whether the job is run with a standard or flexible execution class. The standard execution-class is ideal for time-sensitive workloads that require fast job startup and dedicated resources. The flexible execution class is appropriate for time-insensitive jobs whose start and completion times may vary. Only jobs with Glue version 3.0 and above and command type glueetl will be allowed to set ExecutionClass to FLEX. The flexible execution class is available for Spark jobs.
|
7246
|
+
*/
|
7247
|
+
ExecutionClass?: ExecutionClass;
|
7231
7248
|
}
|
7232
7249
|
export interface Join {
|
7233
7250
|
/**
|
@@ -9943,6 +9960,10 @@ declare namespace Glue {
|
|
9943
9960
|
* The number of workers of a defined workerType that are allocated when a job runs.
|
9944
9961
|
*/
|
9945
9962
|
NumberOfWorkers?: NullableInteger;
|
9963
|
+
/**
|
9964
|
+
* Indicates whether the job is run with a standard or flexible execution class. The standard execution-class is ideal for time-sensitive workloads that require fast job startup and dedicated resources. The flexible execution class is appropriate for time-insensitive jobs whose start and completion times may vary. Only jobs with Glue version 3.0 and above and command type glueetl will be allowed to set ExecutionClass to FLEX. The flexible execution class is available for Spark jobs.
|
9965
|
+
*/
|
9966
|
+
ExecutionClass?: ExecutionClass;
|
9946
9967
|
}
|
9947
9968
|
export interface StartJobRunResponse {
|
9948
9969
|
/**
|
@@ -11463,6 +11484,14 @@ declare namespace Glue {
|
|
11463
11484
|
* Total number Actions in running state.
|
11464
11485
|
*/
|
11465
11486
|
RunningActions?: IntegerValue;
|
11487
|
+
/**
|
11488
|
+
* Indicates the count of job runs in the ERROR state in the workflow run.
|
11489
|
+
*/
|
11490
|
+
ErroredActions?: IntegerValue;
|
11491
|
+
/**
|
11492
|
+
* Indicates the count of job runs in WAITING state in the workflow run.
|
11493
|
+
*/
|
11494
|
+
WaitingActions?: IntegerValue;
|
11466
11495
|
}
|
11467
11496
|
export type WorkflowRunStatus = "RUNNING"|"COMPLETED"|"STOPPING"|"STOPPED"|"ERROR"|string;
|
11468
11497
|
export type WorkflowRuns = WorkflowRun[];
|
@@ -836,6 +836,7 @@ declare namespace IoTWireless {
|
|
836
836
|
*/
|
837
837
|
VerticalAccuracy?: VerticalAccuracy;
|
838
838
|
}
|
839
|
+
export type AckModeRetryDurationSecs = number;
|
839
840
|
export type AddGwMetadata = boolean;
|
840
841
|
export type AmazonId = string;
|
841
842
|
export type AmazonResourceName = string;
|
@@ -1473,7 +1474,9 @@ declare namespace IoTWireless {
|
|
1473
1474
|
}
|
1474
1475
|
export type DownlinkQueueMessagesList = DownlinkQueueMessage[];
|
1475
1476
|
export type DrMax = number;
|
1477
|
+
export type DrMaxBox = number;
|
1476
1478
|
export type DrMin = number;
|
1479
|
+
export type DrMinBox = number;
|
1477
1480
|
export type EndPoint = string;
|
1478
1481
|
export type Event = "discovered"|"lost"|"ack"|"nack"|"passthrough"|string;
|
1479
1482
|
export interface EventConfigurationItem {
|
@@ -1509,6 +1512,10 @@ declare namespace IoTWireless {
|
|
1509
1512
|
* Connection status event configuration for an event configuration item.
|
1510
1513
|
*/
|
1511
1514
|
ConnectionStatus?: ConnectionStatusEventConfiguration;
|
1515
|
+
/**
|
1516
|
+
* Message delivery status event configuration for an event configuration item.
|
1517
|
+
*/
|
1518
|
+
MessageDeliveryStatus?: MessageDeliveryStatusEventConfiguration;
|
1512
1519
|
}
|
1513
1520
|
export type EventNotificationPartnerType = "Sidewalk"|string;
|
1514
1521
|
export type EventNotificationResourceType = "SidewalkAccount"|"WirelessDevice"|"WirelessGateway"|string;
|
@@ -1619,6 +1626,10 @@ declare namespace IoTWireless {
|
|
1619
1626
|
* Resource type event configuration for the connection status event.
|
1620
1627
|
*/
|
1621
1628
|
ConnectionStatus?: ConnectionStatusResourceTypeEventConfiguration;
|
1629
|
+
/**
|
1630
|
+
* Resource type event configuration object for the message delivery status event.
|
1631
|
+
*/
|
1632
|
+
MessageDeliveryStatus?: MessageDeliveryStatusResourceTypeEventConfiguration;
|
1622
1633
|
}
|
1623
1634
|
export interface GetFuotaTaskRequest {
|
1624
1635
|
Id: FuotaTaskId;
|
@@ -1786,6 +1797,10 @@ declare namespace IoTWireless {
|
|
1786
1797
|
* Event configuration for the connection status event.
|
1787
1798
|
*/
|
1788
1799
|
ConnectionStatus?: ConnectionStatusEventConfiguration;
|
1800
|
+
/**
|
1801
|
+
* Event configuration for the message delivery status event.
|
1802
|
+
*/
|
1803
|
+
MessageDeliveryStatus?: MessageDeliveryStatusEventConfiguration;
|
1789
1804
|
}
|
1790
1805
|
export interface GetResourceLogLevelRequest {
|
1791
1806
|
ResourceIdentifier: ResourceIdentifier;
|
@@ -2712,6 +2727,14 @@ declare namespace IoTWireless {
|
|
2712
2727
|
* The AddGWMetaData value.
|
2713
2728
|
*/
|
2714
2729
|
AddGwMetadata?: AddGwMetadata;
|
2730
|
+
/**
|
2731
|
+
* The DrMin value.
|
2732
|
+
*/
|
2733
|
+
DrMin?: DrMinBox;
|
2734
|
+
/**
|
2735
|
+
* The DrMax value.
|
2736
|
+
*/
|
2737
|
+
DrMax?: DrMaxBox;
|
2715
2738
|
}
|
2716
2739
|
export interface LoRaWANStartFuotaTask {
|
2717
2740
|
StartTime?: StartTime;
|
@@ -2772,6 +2795,16 @@ declare namespace IoTWireless {
|
|
2772
2795
|
export type MaxEirp = number;
|
2773
2796
|
export type MaxResults = number;
|
2774
2797
|
export type McGroupId = number;
|
2798
|
+
export interface MessageDeliveryStatusEventConfiguration {
|
2799
|
+
Sidewalk?: SidewalkEventNotificationConfigurations;
|
2800
|
+
/**
|
2801
|
+
* Enum to denote whether the wireless device id device registration state event topic is enabled or disabled.
|
2802
|
+
*/
|
2803
|
+
WirelessDeviceIdEventTopic?: EventNotificationTopicStatus;
|
2804
|
+
}
|
2805
|
+
export interface MessageDeliveryStatusResourceTypeEventConfiguration {
|
2806
|
+
Sidewalk?: SidewalkResourceTypeEventConfiguration;
|
2807
|
+
}
|
2775
2808
|
export type MessageId = string;
|
2776
2809
|
export type MessageType = "CUSTOM_COMMAND_ID_NOTIFY"|"CUSTOM_COMMAND_ID_GET"|"CUSTOM_COMMAND_ID_SET"|"CUSTOM_COMMAND_ID_RESP"|string;
|
2777
2810
|
export type MinGwDiversity = number;
|
@@ -3173,6 +3206,10 @@ declare namespace IoTWireless {
|
|
3173
3206
|
*/
|
3174
3207
|
Seq?: Seq;
|
3175
3208
|
MessageType?: MessageType;
|
3209
|
+
/**
|
3210
|
+
* The duration of time in seconds for which you want to retry sending the ACK.
|
3211
|
+
*/
|
3212
|
+
AckModeRetryDurationSecs?: AckModeRetryDurationSecs;
|
3176
3213
|
}
|
3177
3214
|
export interface SidewalkUpdateAccount {
|
3178
3215
|
/**
|
@@ -3331,6 +3368,10 @@ declare namespace IoTWireless {
|
|
3331
3368
|
* Connection status resource type event configuration object for enabling and disabling wireless gateway topic.
|
3332
3369
|
*/
|
3333
3370
|
ConnectionStatus?: ConnectionStatusResourceTypeEventConfiguration;
|
3371
|
+
/**
|
3372
|
+
* Message delivery status resource type event configuration object for enabling and disabling wireless device topic.
|
3373
|
+
*/
|
3374
|
+
MessageDeliveryStatus?: MessageDeliveryStatusResourceTypeEventConfiguration;
|
3334
3375
|
}
|
3335
3376
|
export interface UpdateEventConfigurationByResourceTypesResponse {
|
3336
3377
|
}
|
@@ -3449,6 +3490,10 @@ declare namespace IoTWireless {
|
|
3449
3490
|
* Event configuration for the connection status event.
|
3450
3491
|
*/
|
3451
3492
|
ConnectionStatus?: ConnectionStatusEventConfiguration;
|
3493
|
+
/**
|
3494
|
+
* Event configuration for the message delivery status event.
|
3495
|
+
*/
|
3496
|
+
MessageDeliveryStatus?: MessageDeliveryStatusEventConfiguration;
|
3452
3497
|
}
|
3453
3498
|
export interface UpdateResourceEventConfigurationResponse {
|
3454
3499
|
}
|
@@ -4997,6 +4997,18 @@ declare namespace Pinpoint {
|
|
4997
4997
|
* The channel-specific configurations for the journey.
|
4998
4998
|
*/
|
4999
4999
|
JourneyChannelSettings?: JourneyChannelSettings;
|
5000
|
+
/**
|
5001
|
+
* Indicates if journey have Advance Quiet Time (OpenHours and ClosedDays). This flag should be set to true in order to allow (OpenHours and ClosedDays)
|
5002
|
+
*/
|
5003
|
+
SendingSchedule?: __boolean;
|
5004
|
+
/**
|
5005
|
+
* The time when journey allow to send messages. QuietTime should be configured first and SendingSchedule should be set to true.
|
5006
|
+
*/
|
5007
|
+
OpenHours?: OpenHours;
|
5008
|
+
/**
|
5009
|
+
* The time when journey will stop sending messages. QuietTime should be configured first and SendingSchedule should be set to true.
|
5010
|
+
*/
|
5011
|
+
ClosedDays?: ClosedDays;
|
5000
5012
|
}
|
5001
5013
|
export interface JourneySMSMessage {
|
5002
5014
|
/**
|
@@ -7268,6 +7280,18 @@ declare namespace Pinpoint {
|
|
7268
7280
|
* The channel-specific configurations for the journey.
|
7269
7281
|
*/
|
7270
7282
|
JourneyChannelSettings?: JourneyChannelSettings;
|
7283
|
+
/**
|
7284
|
+
* Indicates if journey have Advance Quiet Time (OpenHours and ClosedDays). This flag should be set to true in order to allow (OpenHours and ClosedDays)
|
7285
|
+
*/
|
7286
|
+
SendingSchedule?: __boolean;
|
7287
|
+
/**
|
7288
|
+
* The time when journey allow to send messages. QuietTime should be configured first and SendingSchedule should be set to true.
|
7289
|
+
*/
|
7290
|
+
OpenHours?: OpenHours;
|
7291
|
+
/**
|
7292
|
+
* The time when journey will stop sending messages. QuietTime should be configured first and SendingSchedule should be set to true.
|
7293
|
+
*/
|
7294
|
+
ClosedDays?: ClosedDays;
|
7271
7295
|
}
|
7272
7296
|
export interface WriteSegmentRequest {
|
7273
7297
|
/**
|
@@ -7366,6 +7390,78 @@ declare namespace Pinpoint {
|
|
7366
7390
|
export type MapOf__string = {[key: string]: __string};
|
7367
7391
|
export type __string = string;
|
7368
7392
|
export type __timestampIso8601 = Date;
|
7393
|
+
export type DayOfWeek = "MONDAY"|"TUESDAY"|"WEDNESDAY"|"THURSDAY"|"FRIDAY"|"SATURDAY"|"SUNDAY"|string;
|
7394
|
+
export interface OpenHoursRule {
|
7395
|
+
/**
|
7396
|
+
* Local start time in ISO 8601 format.
|
7397
|
+
*/
|
7398
|
+
StartTime?: __string;
|
7399
|
+
/**
|
7400
|
+
* Local start time in ISO 8601 format.
|
7401
|
+
*/
|
7402
|
+
EndTime?: __string;
|
7403
|
+
}
|
7404
|
+
export type ListOfOpenHoursRules = OpenHoursRule[];
|
7405
|
+
export type MapOfListOfOpenHoursRules = {[key: string]: ListOfOpenHoursRules};
|
7406
|
+
export interface OpenHours {
|
7407
|
+
/**
|
7408
|
+
* Rules for Email Channel.
|
7409
|
+
*/
|
7410
|
+
EMAIL?: MapOfListOfOpenHoursRules;
|
7411
|
+
/**
|
7412
|
+
* Rules for SMS Channel.
|
7413
|
+
*/
|
7414
|
+
SMS?: MapOfListOfOpenHoursRules;
|
7415
|
+
/**
|
7416
|
+
* Rules for Push Channel.
|
7417
|
+
*/
|
7418
|
+
PUSH?: MapOfListOfOpenHoursRules;
|
7419
|
+
/**
|
7420
|
+
* Rules for Voice Channel.
|
7421
|
+
*/
|
7422
|
+
VOICE?: MapOfListOfOpenHoursRules;
|
7423
|
+
/**
|
7424
|
+
* Rules for Custom Channel.
|
7425
|
+
*/
|
7426
|
+
CUSTOM?: MapOfListOfOpenHoursRules;
|
7427
|
+
}
|
7428
|
+
export interface ClosedDaysRule {
|
7429
|
+
/**
|
7430
|
+
* Name of the rule.
|
7431
|
+
*/
|
7432
|
+
Name?: __string;
|
7433
|
+
/**
|
7434
|
+
* Start Datetime in ISO 8601 format.
|
7435
|
+
*/
|
7436
|
+
StartDateTime?: __string;
|
7437
|
+
/**
|
7438
|
+
* End Datetime in ISO 8601 format.
|
7439
|
+
*/
|
7440
|
+
EndDateTime?: __string;
|
7441
|
+
}
|
7442
|
+
export type ListOfClosedDaysRules = ClosedDaysRule[];
|
7443
|
+
export interface ClosedDays {
|
7444
|
+
/**
|
7445
|
+
* Rules for Email Channel.
|
7446
|
+
*/
|
7447
|
+
EMAIL?: ListOfClosedDaysRules;
|
7448
|
+
/**
|
7449
|
+
* Rules for SMS Channel.
|
7450
|
+
*/
|
7451
|
+
SMS?: ListOfClosedDaysRules;
|
7452
|
+
/**
|
7453
|
+
* Rules for Push Channel.
|
7454
|
+
*/
|
7455
|
+
PUSH?: ListOfClosedDaysRules;
|
7456
|
+
/**
|
7457
|
+
* Rules for Voice Channel.
|
7458
|
+
*/
|
7459
|
+
VOICE?: ListOfClosedDaysRules;
|
7460
|
+
/**
|
7461
|
+
* Rules for Custom Channel.
|
7462
|
+
*/
|
7463
|
+
CUSTOM?: ListOfClosedDaysRules;
|
7464
|
+
}
|
7369
7465
|
/**
|
7370
7466
|
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
|
7371
7467
|
*/
|
@@ -84,11 +84,11 @@ declare class QuickSight extends Service {
|
|
84
84
|
*/
|
85
85
|
createFolderMembership(callback?: (err: AWSError, data: QuickSight.Types.CreateFolderMembershipResponse) => void): Request<QuickSight.Types.CreateFolderMembershipResponse, AWSError>;
|
86
86
|
/**
|
87
|
-
*
|
87
|
+
* Use the CreateGroup operation to create a group in Amazon QuickSight. You can create up to 10,000 groups in a namespace. If you want to create more than 10,000 groups in a namespace, contact AWS Support. The permissions resource is arn:aws:quicksight:<your-region>:<relevant-aws-account-id>:group/default/<group-name> . The response is a group object.
|
88
88
|
*/
|
89
89
|
createGroup(params: QuickSight.Types.CreateGroupRequest, callback?: (err: AWSError, data: QuickSight.Types.CreateGroupResponse) => void): Request<QuickSight.Types.CreateGroupResponse, AWSError>;
|
90
90
|
/**
|
91
|
-
*
|
91
|
+
* Use the CreateGroup operation to create a group in Amazon QuickSight. You can create up to 10,000 groups in a namespace. If you want to create more than 10,000 groups in a namespace, contact AWS Support. The permissions resource is arn:aws:quicksight:<your-region>:<relevant-aws-account-id>:group/default/<group-name> . The response is a group object.
|
92
92
|
*/
|
93
93
|
createGroup(callback?: (err: AWSError, data: QuickSight.Types.CreateGroupResponse) => void): Request<QuickSight.Types.CreateGroupResponse, AWSError>;
|
94
94
|
/**
|
@@ -524,11 +524,11 @@ declare class QuickSight extends Service {
|
|
524
524
|
*/
|
525
525
|
generateEmbedUrlForRegisteredUser(callback?: (err: AWSError, data: QuickSight.Types.GenerateEmbedUrlForRegisteredUserResponse) => void): Request<QuickSight.Types.GenerateEmbedUrlForRegisteredUserResponse, AWSError>;
|
526
526
|
/**
|
527
|
-
* Generates a temporary session URL and authorization code that you can use to embed an Amazon QuickSight read-only dashboard in your website or application. Before you use this command, make sure that you have configured the dashboards and permissions. Currently, you can use GetDashboardEmbedURL only from the server, not from the user's browser. The following rules apply to the generated URL: They must be used together. They can be used one time only. They are valid for 5 minutes after you run this command. The resulting user session is valid for 15 minutes (default) up to 10 hours (maximum). You can use the optional SessionLifetimeInMinutes parameter to
|
527
|
+
* Generates a temporary session URL and authorization code(bearer token) that you can use to embed an Amazon QuickSight read-only dashboard in your website or application. Before you use this command, make sure that you have configured the dashboards and permissions. Currently, you can use GetDashboardEmbedURL only from the server, not from the user's browser. The following rules apply to the generated URL: They must be used together. They can be used one time only. They are valid for 5 minutes after you run this command. You are charged only when the URL is used or there is interaction with Amazon QuickSight. The resulting user session is valid for 15 minutes (default) up to 10 hours (maximum). You can use the optional SessionLifetimeInMinutes parameter to customize session duration. For more information, see Embedding Analytics Using GetDashboardEmbedUrl 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.
|
528
528
|
*/
|
529
529
|
getDashboardEmbedUrl(params: QuickSight.Types.GetDashboardEmbedUrlRequest, callback?: (err: AWSError, data: QuickSight.Types.GetDashboardEmbedUrlResponse) => void): Request<QuickSight.Types.GetDashboardEmbedUrlResponse, AWSError>;
|
530
530
|
/**
|
531
|
-
* Generates a temporary session URL and authorization code that you can use to embed an Amazon QuickSight read-only dashboard in your website or application. Before you use this command, make sure that you have configured the dashboards and permissions. Currently, you can use GetDashboardEmbedURL only from the server, not from the user's browser. The following rules apply to the generated URL: They must be used together. They can be used one time only. They are valid for 5 minutes after you run this command. The resulting user session is valid for 15 minutes (default) up to 10 hours (maximum). You can use the optional SessionLifetimeInMinutes parameter to
|
531
|
+
* Generates a temporary session URL and authorization code(bearer token) that you can use to embed an Amazon QuickSight read-only dashboard in your website or application. Before you use this command, make sure that you have configured the dashboards and permissions. Currently, you can use GetDashboardEmbedURL only from the server, not from the user's browser. The following rules apply to the generated URL: They must be used together. They can be used one time only. They are valid for 5 minutes after you run this command. You are charged only when the URL is used or there is interaction with Amazon QuickSight. The resulting user session is valid for 15 minutes (default) up to 10 hours (maximum). You can use the optional SessionLifetimeInMinutes parameter to customize session duration. For more information, see Embedding Analytics Using GetDashboardEmbedUrl 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.
|
532
532
|
*/
|
533
533
|
getDashboardEmbedUrl(callback?: (err: AWSError, data: QuickSight.Types.GetDashboardEmbedUrlResponse) => void): Request<QuickSight.Types.GetDashboardEmbedUrlResponse, AWSError>;
|
534
534
|
/**
|
@@ -636,11 +636,11 @@ declare class QuickSight extends Service {
|
|
636
636
|
*/
|
637
637
|
listIngestions(callback?: (err: AWSError, data: QuickSight.Types.ListIngestionsResponse) => void): Request<QuickSight.Types.ListIngestionsResponse, AWSError>;
|
638
638
|
/**
|
639
|
-
* Lists the namespaces for the specified Amazon Web Services account.
|
639
|
+
* Lists the namespaces for the specified Amazon Web Services account. This operation doesn't list deleted namespaces.
|
640
640
|
*/
|
641
641
|
listNamespaces(params: QuickSight.Types.ListNamespacesRequest, callback?: (err: AWSError, data: QuickSight.Types.ListNamespacesResponse) => void): Request<QuickSight.Types.ListNamespacesResponse, AWSError>;
|
642
642
|
/**
|
643
|
-
* Lists the namespaces for the specified Amazon Web Services account.
|
643
|
+
* Lists the namespaces for the specified Amazon Web Services account. This operation doesn't list deleted namespaces.
|
644
644
|
*/
|
645
645
|
listNamespaces(callback?: (err: AWSError, data: QuickSight.Types.ListNamespacesResponse) => void): Request<QuickSight.Types.ListNamespacesResponse, AWSError>;
|
646
646
|
/**
|
@@ -4258,7 +4258,7 @@ declare namespace QuickSight {
|
|
4258
4258
|
*/
|
4259
4259
|
ExperienceConfiguration: AnonymousUserEmbeddingExperienceConfiguration;
|
4260
4260
|
/**
|
4261
|
-
* The domains that you want to add to the allow list for access to the generated URL that is then embedded. This optional parameter overrides the static domains that are configured in the Manage QuickSight menu in the Amazon QuickSight console
|
4261
|
+
* The domains that you want to add to the allow list for access to the generated URL that is then embedded. This optional parameter overrides the static domains that are configured in the Manage QuickSight menu in the Amazon QuickSight console. Instead, it allows only the domains that you include in this parameter. You can list up to three domains or subdomains in each API call. To include all subdomains under a specific domain to the allow list, use *. For example, https://*.sapp.amazon.com includes all subdomains under https://sapp.amazon.com.
|
4262
4262
|
*/
|
4263
4263
|
AllowedDomains?: StringList;
|
4264
4264
|
}
|
@@ -4294,7 +4294,7 @@ declare namespace QuickSight {
|
|
4294
4294
|
*/
|
4295
4295
|
ExperienceConfiguration: RegisteredUserEmbeddingExperienceConfiguration;
|
4296
4296
|
/**
|
4297
|
-
* The domains that you want to add to the allow list for access to the generated URL that is then embedded. This optional parameter overrides the static domains that are configured in the Manage QuickSight menu in the Amazon QuickSight console
|
4297
|
+
* The domains that you want to add to the allow list for access to the generated URL that is then embedded. This optional parameter overrides the static domains that are configured in the Manage QuickSight menu in the Amazon QuickSight console. Instead, it allows only the domains that you include in this parameter. You can list up to three domains or subdomains in each API call. To include all subdomains under a specific domain to the allow list, use *. For example, https://*.sapp.amazon.com includes all subdomains under https://sapp.amazon.com.
|
4298
4298
|
*/
|
4299
4299
|
AllowedDomains?: StringList;
|
4300
4300
|
}
|
@@ -5067,7 +5067,7 @@ declare namespace QuickSight {
|
|
5067
5067
|
*/
|
5068
5068
|
AwsAccountId: AwsAccountId;
|
5069
5069
|
/**
|
5070
|
-
* A pagination token that can be used in a subsequent request.
|
5070
|
+
* A unique pagination token that can be used in a subsequent request. You will receive a pagination token in the response body of a previous ListNameSpaces API call if there is more data that can be returned. To receive the data, make another ListNamespaces API call with the returned token to retrieve the next page of data. Each token is valid for 24 hours. If you try to make a ListNamespaces API call with an expired token, you will receive a HTTP 400 InvalidNextTokenException error.
|
5071
5071
|
*/
|
5072
5072
|
NextToken?: String;
|
5073
5073
|
/**
|
@@ -5081,7 +5081,7 @@ declare namespace QuickSight {
|
|
5081
5081
|
*/
|
5082
5082
|
Namespaces?: Namespaces;
|
5083
5083
|
/**
|
5084
|
-
* A pagination token that can be used in a subsequent request.
|
5084
|
+
* A unique pagination token that can be used in a subsequent request. Receiving NextToken in your response inticates that there is more data that can be returned. To receive the data, make another ListNamespaces API call with the returned token to retrieve the next page of data. Each token is valid for 24 hours. If you try to make a ListNamespaces API call with an expired token, you will receive a HTTP 400 InvalidNextTokenException error.
|
5085
5085
|
*/
|
5086
5086
|
NextToken?: String;
|
5087
5087
|
/**
|
@@ -20,27 +20,27 @@ declare class SSO extends Service {
|
|
20
20
|
*/
|
21
21
|
getRoleCredentials(callback?: (err: AWSError, data: SSO.Types.GetRoleCredentialsResponse) => void): Request<SSO.Types.GetRoleCredentialsResponse, AWSError>;
|
22
22
|
/**
|
23
|
-
* Lists all roles that are assigned to the user for a given
|
23
|
+
* Lists all roles that are assigned to the user for a given Amazon Web Services account.
|
24
24
|
*/
|
25
25
|
listAccountRoles(params: SSO.Types.ListAccountRolesRequest, callback?: (err: AWSError, data: SSO.Types.ListAccountRolesResponse) => void): Request<SSO.Types.ListAccountRolesResponse, AWSError>;
|
26
26
|
/**
|
27
|
-
* Lists all roles that are assigned to the user for a given
|
27
|
+
* Lists all roles that are assigned to the user for a given Amazon Web Services account.
|
28
28
|
*/
|
29
29
|
listAccountRoles(callback?: (err: AWSError, data: SSO.Types.ListAccountRolesResponse) => void): Request<SSO.Types.ListAccountRolesResponse, AWSError>;
|
30
30
|
/**
|
31
|
-
* Lists all
|
31
|
+
* Lists all Amazon Web Services accounts assigned to the user. These Amazon Web Services accounts are assigned by the administrator of the account. For more information, see Assign User Access in the Amazon Web Services SSO User Guide. This operation returns a paginated response.
|
32
32
|
*/
|
33
33
|
listAccounts(params: SSO.Types.ListAccountsRequest, callback?: (err: AWSError, data: SSO.Types.ListAccountsResponse) => void): Request<SSO.Types.ListAccountsResponse, AWSError>;
|
34
34
|
/**
|
35
|
-
* Lists all
|
35
|
+
* Lists all Amazon Web Services accounts assigned to the user. These Amazon Web Services accounts are assigned by the administrator of the account. For more information, see Assign User Access in the Amazon Web Services SSO User Guide. This operation returns a paginated response.
|
36
36
|
*/
|
37
37
|
listAccounts(callback?: (err: AWSError, data: SSO.Types.ListAccountsResponse) => void): Request<SSO.Types.ListAccountsResponse, AWSError>;
|
38
38
|
/**
|
39
|
-
* Removes the client- and server-side session
|
39
|
+
* Removes the locally stored SSO tokens from the client-side cache and sends an API call to the Amazon Web Services SSO service to invalidate the corresponding server-side Amazon Web Services SSO sign in session. If a user uses Amazon Web Services SSO to access the AWS CLI, the user’s Amazon Web Services SSO sign in session is used to obtain an IAM session, as specified in the corresponding Amazon Web Services SSO permission set. More specifically, Amazon Web Services SSO assumes an IAM role in the target account on behalf of the user, and the corresponding temporary Amazon Web Services credentials are returned to the client. After user logout, any existing IAM role sessions that were created by using Amazon Web Services SSO permission sets continue based on the duration configured in the permission set. For more information, see User authentications in the Amazon Web Services SSO User Guide.
|
40
40
|
*/
|
41
41
|
logout(params: SSO.Types.LogoutRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
42
42
|
/**
|
43
|
-
* Removes the client- and server-side session
|
43
|
+
* Removes the locally stored SSO tokens from the client-side cache and sends an API call to the Amazon Web Services SSO service to invalidate the corresponding server-side Amazon Web Services SSO sign in session. If a user uses Amazon Web Services SSO to access the AWS CLI, the user’s Amazon Web Services SSO sign in session is used to obtain an IAM session, as specified in the corresponding Amazon Web Services SSO permission set. More specifically, Amazon Web Services SSO assumes an IAM role in the target account on behalf of the user, and the corresponding temporary Amazon Web Services credentials are returned to the client. After user logout, any existing IAM role sessions that were created by using Amazon Web Services SSO permission sets continue based on the duration configured in the permission set. For more information, see User authentications in the Amazon Web Services SSO User Guide.
|
44
44
|
*/
|
45
45
|
logout(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
46
46
|
}
|
@@ -50,15 +50,15 @@ declare namespace SSO {
|
|
50
50
|
export type AccountIdType = string;
|
51
51
|
export interface AccountInfo {
|
52
52
|
/**
|
53
|
-
* The identifier of the
|
53
|
+
* The identifier of the Amazon Web Services account that is assigned to the user.
|
54
54
|
*/
|
55
55
|
accountId?: AccountIdType;
|
56
56
|
/**
|
57
|
-
* The display name of the
|
57
|
+
* The display name of the Amazon Web Services account that is assigned to the user.
|
58
58
|
*/
|
59
59
|
accountName?: AccountNameType;
|
60
60
|
/**
|
61
|
-
* The email address of the
|
61
|
+
* The email address of the Amazon Web Services account that is assigned to the user.
|
62
62
|
*/
|
63
63
|
emailAddress?: EmailAddressType;
|
64
64
|
}
|
@@ -72,11 +72,11 @@ declare namespace SSO {
|
|
72
72
|
*/
|
73
73
|
roleName: RoleNameType;
|
74
74
|
/**
|
75
|
-
* The identifier for the
|
75
|
+
* The identifier for the Amazon Web Services account that is assigned to the user.
|
76
76
|
*/
|
77
77
|
accountId: AccountIdType;
|
78
78
|
/**
|
79
|
-
* The token issued by the CreateToken API call. For more information, see CreateToken in the
|
79
|
+
* The token issued by the CreateToken API call. For more information, see CreateToken in the Amazon Web Services SSO OIDC API Reference Guide.
|
80
80
|
*/
|
81
81
|
accessToken: AccessTokenType;
|
82
82
|
}
|
@@ -96,11 +96,11 @@ declare namespace SSO {
|
|
96
96
|
*/
|
97
97
|
maxResults?: MaxResultType;
|
98
98
|
/**
|
99
|
-
* The token issued by the CreateToken API call. For more information, see CreateToken in the
|
99
|
+
* The token issued by the CreateToken API call. For more information, see CreateToken in the Amazon Web Services SSO OIDC API Reference Guide.
|
100
100
|
*/
|
101
101
|
accessToken: AccessTokenType;
|
102
102
|
/**
|
103
|
-
* The identifier for the
|
103
|
+
* The identifier for the Amazon Web Services account that is assigned to the user.
|
104
104
|
*/
|
105
105
|
accountId: AccountIdType;
|
106
106
|
}
|
@@ -124,7 +124,7 @@ declare namespace SSO {
|
|
124
124
|
*/
|
125
125
|
maxResults?: MaxResultType;
|
126
126
|
/**
|
127
|
-
* The token issued by the CreateToken API call. For more information, see CreateToken in the
|
127
|
+
* The token issued by the CreateToken API call. For more information, see CreateToken in the Amazon Web Services SSO OIDC API Reference Guide.
|
128
128
|
*/
|
129
129
|
accessToken: AccessTokenType;
|
130
130
|
}
|
@@ -140,7 +140,7 @@ declare namespace SSO {
|
|
140
140
|
}
|
141
141
|
export interface LogoutRequest {
|
142
142
|
/**
|
143
|
-
* The token issued by the CreateToken API call. For more information, see CreateToken in the
|
143
|
+
* The token issued by the CreateToken API call. For more information, see CreateToken in the Amazon Web Services SSO OIDC API Reference Guide.
|
144
144
|
*/
|
145
145
|
accessToken: AccessTokenType;
|
146
146
|
}
|
@@ -148,15 +148,15 @@ declare namespace SSO {
|
|
148
148
|
export type NextTokenType = string;
|
149
149
|
export interface RoleCredentials {
|
150
150
|
/**
|
151
|
-
* The identifier used for the temporary security credentials. For more information, see Using Temporary Security Credentials to Request Access to
|
151
|
+
* The identifier used for the temporary security credentials. For more information, see Using Temporary Security Credentials to Request Access to Amazon Web Services Resources in the Amazon Web Services IAM User Guide.
|
152
152
|
*/
|
153
153
|
accessKeyId?: AccessKeyType;
|
154
154
|
/**
|
155
|
-
* The key that is used to sign the request. For more information, see Using Temporary Security Credentials to Request Access to
|
155
|
+
* The key that is used to sign the request. For more information, see Using Temporary Security Credentials to Request Access to Amazon Web Services Resources in the Amazon Web Services IAM User Guide.
|
156
156
|
*/
|
157
157
|
secretAccessKey?: SecretAccessKeyType;
|
158
158
|
/**
|
159
|
-
* The token used for temporary credentials. For more information, see Using Temporary Security Credentials to Request Access to
|
159
|
+
* The token used for temporary credentials. For more information, see Using Temporary Security Credentials to Request Access to Amazon Web Services Resources in the Amazon Web Services IAM User Guide.
|
160
160
|
*/
|
161
161
|
sessionToken?: SessionTokenType;
|
162
162
|
/**
|
@@ -170,7 +170,7 @@ declare namespace SSO {
|
|
170
170
|
*/
|
171
171
|
roleName?: RoleNameType;
|
172
172
|
/**
|
173
|
-
* The identifier of the
|
173
|
+
* The identifier of the Amazon Web Services account assigned to the user.
|
174
174
|
*/
|
175
175
|
accountId?: AccountIdType;
|
176
176
|
}
|