cdk-comprehend-s3olap 2.0.23 → 2.0.24
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 +13 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/athena-2017-05-18.min.json +110 -59
- package/node_modules/aws-sdk/apis/customer-profiles-2020-08-15.min.json +75 -69
- package/node_modules/aws-sdk/apis/elasticmapreduce-2009-03-31.min.json +4 -2
- package/node_modules/aws-sdk/apis/glue-2017-03-31.min.json +3 -0
- package/node_modules/aws-sdk/apis/kendra-2019-02-03.min.json +106 -61
- package/node_modules/aws-sdk/apis/mwaa-2020-07-01.min.json +24 -21
- package/node_modules/aws-sdk/apis/wellarchitected-2020-03-31.min.json +27 -5
- package/node_modules/aws-sdk/apis/workmail-2017-10-01.min.json +228 -61
- package/node_modules/aws-sdk/apis/workmail-2017-10-01.paginators.json +6 -0
- package/node_modules/aws-sdk/clients/athena.d.ts +57 -2
- package/node_modules/aws-sdk/clients/customerprofiles.d.ts +12 -3
- package/node_modules/aws-sdk/clients/emr.d.ts +8 -0
- package/node_modules/aws-sdk/clients/glue.d.ts +16 -3
- package/node_modules/aws-sdk/clients/kendra.d.ts +109 -41
- package/node_modules/aws-sdk/clients/mwaa.d.ts +9 -12
- package/node_modules/aws-sdk/clients/pricing.d.ts +3 -3
- package/node_modules/aws-sdk/clients/wellarchitected.d.ts +27 -1
- package/node_modules/aws-sdk/clients/workmail.d.ts +203 -0
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +12 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +21 -10
- package/node_modules/aws-sdk/dist/aws-sdk.js +128 -64
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +92 -92
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/event_listeners.js +10 -0
- package/node_modules/aws-sdk/lib/model/api.js +1 -0
- package/node_modules/aws-sdk/package.json +1 -1
- package/node_modules/esbuild/install.js +4 -4
- package/node_modules/esbuild/lib/main.js +12 -12
- package/node_modules/esbuild/package.json +21 -21
- package/node_modules/esbuild-linux-64/bin/esbuild +0 -0
- package/node_modules/esbuild-linux-64/package.json +1 -1
- package/package.json +4 -4
@@ -116,7 +116,7 @@ declare namespace MWAA {
|
|
116
116
|
/**
|
117
117
|
* An Airflow CLI login token.
|
118
118
|
*/
|
119
|
-
CliToken?:
|
119
|
+
CliToken?: Token;
|
120
120
|
/**
|
121
121
|
* The Airflow web server hostname for the environment.
|
122
122
|
*/
|
@@ -126,9 +126,9 @@ declare namespace MWAA {
|
|
126
126
|
/**
|
127
127
|
* A list of key-value pairs containing the Apache Airflow configuration options you want to attach to your environment. To learn more, see Apache Airflow configuration options.
|
128
128
|
*/
|
129
|
-
AirflowConfigurationOptions?:
|
129
|
+
AirflowConfigurationOptions?: AirflowConfigurationOptions;
|
130
130
|
/**
|
131
|
-
* The Apache Airflow version for your environment. If no value is specified, defaults to the latest version. Valid values: 1.10.12, 2.0.2. To learn more, see Apache Airflow versions on Amazon Managed Workflows for Apache Airflow (MWAA).
|
131
|
+
* The Apache Airflow version for your environment. If no value is specified, it defaults to the latest version. Valid values: 1.10.12, 2.0.2, and 2.2.2. To learn more, see Apache Airflow versions on Amazon Managed Workflows for Apache Airflow (MWAA).
|
132
132
|
*/
|
133
133
|
AirflowVersion?: AirflowVersion;
|
134
134
|
/**
|
@@ -184,7 +184,7 @@ declare namespace MWAA {
|
|
184
184
|
*/
|
185
185
|
RequirementsS3Path?: RelativePath;
|
186
186
|
/**
|
187
|
-
* The number of Apache Airflow schedulers to run in your environment. Valid values: v2
|
187
|
+
* The number of Apache Airflow schedulers to run in your environment. Valid values: v2 - Accepts between 2 to 5. Defaults to 2. v1 - Accepts 1.
|
188
188
|
*/
|
189
189
|
Schedulers?: Schedulers;
|
190
190
|
/**
|
@@ -224,7 +224,7 @@ declare namespace MWAA {
|
|
224
224
|
/**
|
225
225
|
* An Airflow web server login token.
|
226
226
|
*/
|
227
|
-
WebToken?:
|
227
|
+
WebToken?: Token;
|
228
228
|
}
|
229
229
|
export type CreatedAt = Date;
|
230
230
|
export interface DeleteEnvironmentInput {
|
@@ -253,7 +253,7 @@ declare namespace MWAA {
|
|
253
253
|
*/
|
254
254
|
AirflowConfigurationOptions?: AirflowConfigurationOptions;
|
255
255
|
/**
|
256
|
-
* The Apache Airflow version on your environment. Valid values: 1.10.12, 2.0.2.
|
256
|
+
* The Apache Airflow version on your environment. Valid values: 1.10.12, 2.0.2, and 2.2.2.
|
257
257
|
*/
|
258
258
|
AirflowVersion?: AirflowVersion;
|
259
259
|
/**
|
@@ -576,10 +576,6 @@ declare namespace MWAA {
|
|
576
576
|
export type String = string;
|
577
577
|
export type SubnetId = string;
|
578
578
|
export type SubnetList = SubnetId[];
|
579
|
-
export type SyntheticCreateCliTokenResponseToken = string;
|
580
|
-
export type SyntheticCreateEnvironmentInputAirflowConfigurationOptions = {[key: string]: ConfigValue};
|
581
|
-
export type SyntheticCreateWebLoginTokenResponseToken = string;
|
582
|
-
export type SyntheticUpdateEnvironmentInputAirflowConfigurationOptions = {[key: string]: ConfigValue};
|
583
579
|
export type TagKey = string;
|
584
580
|
export type TagKeyList = TagKey[];
|
585
581
|
export type TagMap = {[key: string]: TagValue};
|
@@ -597,6 +593,7 @@ declare namespace MWAA {
|
|
597
593
|
}
|
598
594
|
export type TagValue = string;
|
599
595
|
export type Timestamp = Date;
|
596
|
+
export type Token = string;
|
600
597
|
export type Unit = "Seconds"|"Microseconds"|"Milliseconds"|"Bytes"|"Kilobytes"|"Megabytes"|"Gigabytes"|"Terabytes"|"Bits"|"Kilobits"|"Megabits"|"Gigabits"|"Terabits"|"Percent"|"Count"|"Bytes/Second"|"Kilobytes/Second"|"Megabytes/Second"|"Gigabytes/Second"|"Terabytes/Second"|"Bits/Second"|"Kilobits/Second"|"Megabits/Second"|"Gigabits/Second"|"Terabits/Second"|"Count/Second"|"None"|string;
|
601
598
|
export interface UntagResourceInput {
|
602
599
|
/**
|
@@ -615,9 +612,9 @@ declare namespace MWAA {
|
|
615
612
|
/**
|
616
613
|
* A list of key-value pairs containing the Apache Airflow configuration options you want to attach to your environment. To learn more, see Apache Airflow configuration options.
|
617
614
|
*/
|
618
|
-
AirflowConfigurationOptions?:
|
615
|
+
AirflowConfigurationOptions?: AirflowConfigurationOptions;
|
619
616
|
/**
|
620
|
-
* The Apache Airflow version for your environment. If no value is specified, defaults to the latest version. Valid values: 1.10.12, 2.0.2.
|
617
|
+
* The Apache Airflow version for your environment. If no value is specified, defaults to the latest version. Valid values: 1.10.12, 2.0.2, and 2.2.2.
|
621
618
|
*/
|
622
619
|
AirflowVersion?: AirflowVersion;
|
623
620
|
/**
|
@@ -152,14 +152,14 @@ declare namespace Pricing {
|
|
152
152
|
/**
|
153
153
|
* The list of products that match your filters. The list contains both the product metadata and the price information.
|
154
154
|
*/
|
155
|
-
PriceList?:
|
155
|
+
PriceList?: PriceListJsonItems;
|
156
156
|
/**
|
157
157
|
* The pagination token that indicates the next set of results to retrieve.
|
158
158
|
*/
|
159
159
|
NextToken?: String;
|
160
160
|
}
|
161
|
-
export type
|
162
|
-
export type
|
161
|
+
export type PriceListJsonItem = string;
|
162
|
+
export type PriceListJsonItems = PriceListJsonItem[];
|
163
163
|
export interface Service {
|
164
164
|
/**
|
165
165
|
* The code for the Amazon Web Services service.
|
@@ -283,6 +283,14 @@ declare class WellArchitected extends Service {
|
|
283
283
|
* Update the answer to a specific question in a workload review.
|
284
284
|
*/
|
285
285
|
updateAnswer(callback?: (err: AWSError, data: WellArchitected.Types.UpdateAnswerOutput) => void): Request<WellArchitected.Types.UpdateAnswerOutput, AWSError>;
|
286
|
+
/**
|
287
|
+
* Updates whether the Amazon Web Services account is opted into organization sharing features.
|
288
|
+
*/
|
289
|
+
updateGlobalSettings(params: WellArchitected.Types.UpdateGlobalSettingsInput, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
290
|
+
/**
|
291
|
+
* Updates whether the Amazon Web Services account is opted into organization sharing features.
|
292
|
+
*/
|
293
|
+
updateGlobalSettings(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
286
294
|
/**
|
287
295
|
* Update lens review.
|
288
296
|
*/
|
@@ -811,6 +819,10 @@ declare namespace WellArchitected {
|
|
811
819
|
ShareId?: ShareId;
|
812
820
|
SharedWith?: SharedWith;
|
813
821
|
Status?: ShareStatus;
|
822
|
+
/**
|
823
|
+
* Optional message to compliment the Status field.
|
824
|
+
*/
|
825
|
+
StatusMessage?: StatusMessage;
|
814
826
|
}
|
815
827
|
export type LensStatus = "CURRENT"|"NOT_CURRENT"|"DEPRECATED"|"DELETED"|"UNSHARED"|string;
|
816
828
|
export type LensStatusType = "ALL"|"DRAFT"|"PUBLISHED"|string;
|
@@ -927,6 +939,7 @@ declare namespace WellArchitected {
|
|
927
939
|
* The maximum number of results to return for this request.
|
928
940
|
*/
|
929
941
|
MaxResults?: ListWorkloadSharesMaxResults;
|
942
|
+
Status?: ShareStatus;
|
930
943
|
}
|
931
944
|
export interface ListLensSharesOutput {
|
932
945
|
/**
|
@@ -1022,6 +1035,7 @@ declare namespace WellArchitected {
|
|
1022
1035
|
* The maximum number of results to return for this request.
|
1023
1036
|
*/
|
1024
1037
|
MaxResults?: ListWorkloadSharesMaxResults;
|
1038
|
+
Status?: ShareStatus;
|
1025
1039
|
}
|
1026
1040
|
export type ListWorkloadSharesMaxResults = number;
|
1027
1041
|
export interface ListWorkloadSharesOutput {
|
@@ -1072,6 +1086,7 @@ declare namespace WellArchitected {
|
|
1072
1086
|
LensUpgradeSummary?: LensUpgradeSummary;
|
1073
1087
|
}
|
1074
1088
|
export type NotificationType = "LENS_VERSION_UPGRADED"|"LENS_VERSION_DEPRECATED"|string;
|
1089
|
+
export type OrganizationSharingStatus = "ENABLED"|"DISABLED"|string;
|
1075
1090
|
export type PermissionType = "READONLY"|"CONTRIBUTOR"|string;
|
1076
1091
|
export interface PillarDifference {
|
1077
1092
|
PillarId?: PillarId;
|
@@ -1152,9 +1167,10 @@ declare namespace WellArchitected {
|
|
1152
1167
|
LensArn?: LensArn;
|
1153
1168
|
}
|
1154
1169
|
export type ShareResourceType = "WORKLOAD"|"LENS"|string;
|
1155
|
-
export type ShareStatus = "ACCEPTED"|"REJECTED"|"PENDING"|"REVOKED"|"EXPIRED"|string;
|
1170
|
+
export type ShareStatus = "ACCEPTED"|"REJECTED"|"PENDING"|"REVOKED"|"EXPIRED"|"ASSOCIATING"|"ASSOCIATED"|"FAILED"|string;
|
1156
1171
|
export type SharedWith = string;
|
1157
1172
|
export type SharedWithPrefix = string;
|
1173
|
+
export type StatusMessage = string;
|
1158
1174
|
export type TagKey = string;
|
1159
1175
|
export type TagKeyList = TagKey[];
|
1160
1176
|
export type TagMap = {[key: string]: TagValue};
|
@@ -1203,6 +1219,12 @@ declare namespace WellArchitected {
|
|
1203
1219
|
LensArn?: LensArn;
|
1204
1220
|
Answer?: Answer;
|
1205
1221
|
}
|
1222
|
+
export interface UpdateGlobalSettingsInput {
|
1223
|
+
/**
|
1224
|
+
* The status of organization sharing settings.
|
1225
|
+
*/
|
1226
|
+
OrganizationSharingStatus?: OrganizationSharingStatus;
|
1227
|
+
}
|
1206
1228
|
export interface UpdateLensReviewInput {
|
1207
1229
|
WorkloadId: WorkloadId;
|
1208
1230
|
LensAlias: LensAlias;
|
@@ -1337,6 +1359,10 @@ declare namespace WellArchitected {
|
|
1337
1359
|
SharedWith?: SharedWith;
|
1338
1360
|
PermissionType?: PermissionType;
|
1339
1361
|
Status?: ShareStatus;
|
1362
|
+
/**
|
1363
|
+
* Optional message to compliment the Status field.
|
1364
|
+
*/
|
1365
|
+
StatusMessage?: StatusMessage;
|
1340
1366
|
}
|
1341
1367
|
export type WorkloadSummaries = WorkloadSummary[];
|
1342
1368
|
export interface WorkloadSummary {
|
@@ -43,6 +43,14 @@ declare class WorkMail extends Service {
|
|
43
43
|
* Adds an alias to the set of a given member (user or group) of Amazon WorkMail.
|
44
44
|
*/
|
45
45
|
createAlias(callback?: (err: AWSError, data: WorkMail.Types.CreateAliasResponse) => void): Request<WorkMail.Types.CreateAliasResponse, AWSError>;
|
46
|
+
/**
|
47
|
+
* Creates an AvailabilityConfiguration for the given WorkMail organization and domain.
|
48
|
+
*/
|
49
|
+
createAvailabilityConfiguration(params: WorkMail.Types.CreateAvailabilityConfigurationRequest, callback?: (err: AWSError, data: WorkMail.Types.CreateAvailabilityConfigurationResponse) => void): Request<WorkMail.Types.CreateAvailabilityConfigurationResponse, AWSError>;
|
50
|
+
/**
|
51
|
+
* Creates an AvailabilityConfiguration for the given WorkMail organization and domain.
|
52
|
+
*/
|
53
|
+
createAvailabilityConfiguration(callback?: (err: AWSError, data: WorkMail.Types.CreateAvailabilityConfigurationResponse) => void): Request<WorkMail.Types.CreateAvailabilityConfigurationResponse, AWSError>;
|
46
54
|
/**
|
47
55
|
* Creates a group that can be used in Amazon WorkMail by calling the RegisterToWorkMail operation.
|
48
56
|
*/
|
@@ -99,6 +107,14 @@ declare class WorkMail extends Service {
|
|
99
107
|
* Remove one or more specified aliases from a set of aliases for a given user.
|
100
108
|
*/
|
101
109
|
deleteAlias(callback?: (err: AWSError, data: WorkMail.Types.DeleteAliasResponse) => void): Request<WorkMail.Types.DeleteAliasResponse, AWSError>;
|
110
|
+
/**
|
111
|
+
* Deletes the AvailabilityConfiguration for the given WorkMail organization and domain.
|
112
|
+
*/
|
113
|
+
deleteAvailabilityConfiguration(params: WorkMail.Types.DeleteAvailabilityConfigurationRequest, callback?: (err: AWSError, data: WorkMail.Types.DeleteAvailabilityConfigurationResponse) => void): Request<WorkMail.Types.DeleteAvailabilityConfigurationResponse, AWSError>;
|
114
|
+
/**
|
115
|
+
* Deletes the AvailabilityConfiguration for the given WorkMail organization and domain.
|
116
|
+
*/
|
117
|
+
deleteAvailabilityConfiguration(callback?: (err: AWSError, data: WorkMail.Types.DeleteAvailabilityConfigurationResponse) => void): Request<WorkMail.Types.DeleteAvailabilityConfigurationResponse, AWSError>;
|
102
118
|
/**
|
103
119
|
* Deletes the email monitoring configuration for a specified organization.
|
104
120
|
*/
|
@@ -323,6 +339,14 @@ declare class WorkMail extends Service {
|
|
323
339
|
* Creates a paginated call to list the aliases associated with a given entity.
|
324
340
|
*/
|
325
341
|
listAliases(callback?: (err: AWSError, data: WorkMail.Types.ListAliasesResponse) => void): Request<WorkMail.Types.ListAliasesResponse, AWSError>;
|
342
|
+
/**
|
343
|
+
* List all the AvailabilityConfiguration's for the given WorkMail organization.
|
344
|
+
*/
|
345
|
+
listAvailabilityConfigurations(params: WorkMail.Types.ListAvailabilityConfigurationsRequest, callback?: (err: AWSError, data: WorkMail.Types.ListAvailabilityConfigurationsResponse) => void): Request<WorkMail.Types.ListAvailabilityConfigurationsResponse, AWSError>;
|
346
|
+
/**
|
347
|
+
* List all the AvailabilityConfiguration's for the given WorkMail organization.
|
348
|
+
*/
|
349
|
+
listAvailabilityConfigurations(callback?: (err: AWSError, data: WorkMail.Types.ListAvailabilityConfigurationsResponse) => void): Request<WorkMail.Types.ListAvailabilityConfigurationsResponse, AWSError>;
|
326
350
|
/**
|
327
351
|
* Returns an overview of the members of a group. Users and groups can be members of a group.
|
328
352
|
*/
|
@@ -507,6 +531,14 @@ declare class WorkMail extends Service {
|
|
507
531
|
* Applies the specified tags to the specified Amazon WorkMail organization resource.
|
508
532
|
*/
|
509
533
|
tagResource(callback?: (err: AWSError, data: WorkMail.Types.TagResourceResponse) => void): Request<WorkMail.Types.TagResourceResponse, AWSError>;
|
534
|
+
/**
|
535
|
+
* Performs a test on an availability provider to ensure that access is allowed. For EWS, it verifies the provided credentials can be used to successfully log in. For Lambda, it verifies that the Lambda function can be invoked and that the resource access policy was configured to deny anonymous access. An anonymous invocation is one done without providing either a SourceArn or SourceAccount header. The request must contain either one provider definition (EwsProvider or LambdaProvider) or the DomainName parameter. If the DomainName parameter is provided, the configuration stored under the DomainName will be tested.
|
536
|
+
*/
|
537
|
+
testAvailabilityConfiguration(params: WorkMail.Types.TestAvailabilityConfigurationRequest, callback?: (err: AWSError, data: WorkMail.Types.TestAvailabilityConfigurationResponse) => void): Request<WorkMail.Types.TestAvailabilityConfigurationResponse, AWSError>;
|
538
|
+
/**
|
539
|
+
* Performs a test on an availability provider to ensure that access is allowed. For EWS, it verifies the provided credentials can be used to successfully log in. For Lambda, it verifies that the Lambda function can be invoked and that the resource access policy was configured to deny anonymous access. An anonymous invocation is one done without providing either a SourceArn or SourceAccount header. The request must contain either one provider definition (EwsProvider or LambdaProvider) or the DomainName parameter. If the DomainName parameter is provided, the configuration stored under the DomainName will be tested.
|
540
|
+
*/
|
541
|
+
testAvailabilityConfiguration(callback?: (err: AWSError, data: WorkMail.Types.TestAvailabilityConfigurationResponse) => void): Request<WorkMail.Types.TestAvailabilityConfigurationResponse, AWSError>;
|
510
542
|
/**
|
511
543
|
* Untags the specified tags from the specified Amazon WorkMail organization resource.
|
512
544
|
*/
|
@@ -515,6 +547,14 @@ declare class WorkMail extends Service {
|
|
515
547
|
* Untags the specified tags from the specified Amazon WorkMail organization resource.
|
516
548
|
*/
|
517
549
|
untagResource(callback?: (err: AWSError, data: WorkMail.Types.UntagResourceResponse) => void): Request<WorkMail.Types.UntagResourceResponse, AWSError>;
|
550
|
+
/**
|
551
|
+
* Updates an existing AvailabilityConfiguration for the given WorkMail organization and domain.
|
552
|
+
*/
|
553
|
+
updateAvailabilityConfiguration(params: WorkMail.Types.UpdateAvailabilityConfigurationRequest, callback?: (err: AWSError, data: WorkMail.Types.UpdateAvailabilityConfigurationResponse) => void): Request<WorkMail.Types.UpdateAvailabilityConfigurationResponse, AWSError>;
|
554
|
+
/**
|
555
|
+
* Updates an existing AvailabilityConfiguration for the given WorkMail organization and domain.
|
556
|
+
*/
|
557
|
+
updateAvailabilityConfiguration(callback?: (err: AWSError, data: WorkMail.Types.UpdateAvailabilityConfigurationResponse) => void): Request<WorkMail.Types.UpdateAvailabilityConfigurationResponse, AWSError>;
|
518
558
|
/**
|
519
559
|
* Updates the default mail domain for an organization. The default mail domain is used by the WorkMail AWS Console to suggest an email address when enabling a mail user. You can only have one default domain.
|
520
560
|
*/
|
@@ -644,6 +684,34 @@ declare namespace WorkMail {
|
|
644
684
|
}
|
645
685
|
export interface AssociateMemberToGroupResponse {
|
646
686
|
}
|
687
|
+
export interface AvailabilityConfiguration {
|
688
|
+
/**
|
689
|
+
* Displays the domain to which the provider applies.
|
690
|
+
*/
|
691
|
+
DomainName?: DomainName;
|
692
|
+
/**
|
693
|
+
* Displays the provider type that applies to this domain.
|
694
|
+
*/
|
695
|
+
ProviderType?: AvailabilityProviderType;
|
696
|
+
/**
|
697
|
+
* If ProviderType is EWS, then this field contains RedactedEwsAvailabilityProvider. Otherwise, it is not requried.
|
698
|
+
*/
|
699
|
+
EwsProvider?: RedactedEwsAvailabilityProvider;
|
700
|
+
/**
|
701
|
+
* If ProviderType is LAMBDA then this field contains LambdaAvailabilityProvider. Otherwise, it is not required.
|
702
|
+
*/
|
703
|
+
LambdaProvider?: LambdaAvailabilityProvider;
|
704
|
+
/**
|
705
|
+
* The date and time at which the availability configuration was created.
|
706
|
+
*/
|
707
|
+
DateCreated?: Timestamp;
|
708
|
+
/**
|
709
|
+
* The date and time at which the availability configuration was last modified.
|
710
|
+
*/
|
711
|
+
DateModified?: Timestamp;
|
712
|
+
}
|
713
|
+
export type AvailabilityConfigurationList = AvailabilityConfiguration[];
|
714
|
+
export type AvailabilityProviderType = "EWS"|"LAMBDA"|string;
|
647
715
|
export interface BookingOptions {
|
648
716
|
/**
|
649
717
|
* The resource's ability to automatically reply to requests. If disabled, delegates must be associated to the resource.
|
@@ -692,6 +760,30 @@ declare namespace WorkMail {
|
|
692
760
|
}
|
693
761
|
export interface CreateAliasResponse {
|
694
762
|
}
|
763
|
+
export interface CreateAvailabilityConfigurationRequest {
|
764
|
+
/**
|
765
|
+
* An idempotent token that ensures that an API request is executed only once.
|
766
|
+
*/
|
767
|
+
ClientToken?: IdempotencyClientToken;
|
768
|
+
/**
|
769
|
+
* The Amazon WorkMail organization for which the AvailabilityConfiguration will be created.
|
770
|
+
*/
|
771
|
+
OrganizationId: OrganizationId;
|
772
|
+
/**
|
773
|
+
* The domain to which the provider applies.
|
774
|
+
*/
|
775
|
+
DomainName: DomainName;
|
776
|
+
/**
|
777
|
+
* Exchange Web Services (EWS) availability provider definition. The request must contain exactly one provider definition, either EwsProvider or LambdaProvider.
|
778
|
+
*/
|
779
|
+
EwsProvider?: EwsAvailabilityProvider;
|
780
|
+
/**
|
781
|
+
* Lambda availability provider definition. The request must contain exactly one provider definition, either EwsProvider or LambdaProvider.
|
782
|
+
*/
|
783
|
+
LambdaProvider?: LambdaAvailabilityProvider;
|
784
|
+
}
|
785
|
+
export interface CreateAvailabilityConfigurationResponse {
|
786
|
+
}
|
695
787
|
export interface CreateGroupRequest {
|
696
788
|
/**
|
697
789
|
* The organization under which the group is to be created.
|
@@ -882,6 +974,18 @@ declare namespace WorkMail {
|
|
882
974
|
}
|
883
975
|
export interface DeleteAliasResponse {
|
884
976
|
}
|
977
|
+
export interface DeleteAvailabilityConfigurationRequest {
|
978
|
+
/**
|
979
|
+
* The Amazon WorkMail organization for which the AvailabilityConfiguration will be deleted.
|
980
|
+
*/
|
981
|
+
OrganizationId: OrganizationId;
|
982
|
+
/**
|
983
|
+
* The domain for which the AvailabilityConfiguration will be deleted.
|
984
|
+
*/
|
985
|
+
DomainName: DomainName;
|
986
|
+
}
|
987
|
+
export interface DeleteAvailabilityConfigurationResponse {
|
988
|
+
}
|
885
989
|
export interface DeleteEmailMonitoringConfigurationRequest {
|
886
990
|
/**
|
887
991
|
* The ID of the organization from which the email monitoring configuration is deleted.
|
@@ -1360,6 +1464,21 @@ declare namespace WorkMail {
|
|
1360
1464
|
export type EmailAddress = string;
|
1361
1465
|
export type EntityIdentifier = string;
|
1362
1466
|
export type EntityState = "ENABLED"|"DISABLED"|"DELETED"|string;
|
1467
|
+
export interface EwsAvailabilityProvider {
|
1468
|
+
/**
|
1469
|
+
* The endpoint of the remote EWS server.
|
1470
|
+
*/
|
1471
|
+
EwsEndpoint: Url;
|
1472
|
+
/**
|
1473
|
+
* The username used to authenticate the remote EWS server.
|
1474
|
+
*/
|
1475
|
+
EwsUsername: ExternalUserName;
|
1476
|
+
/**
|
1477
|
+
* The password used to authenticate the remote EWS server.
|
1478
|
+
*/
|
1479
|
+
EwsPassword: Password;
|
1480
|
+
}
|
1481
|
+
export type ExternalUserName = string;
|
1363
1482
|
export interface FolderConfiguration {
|
1364
1483
|
/**
|
1365
1484
|
* The folder name.
|
@@ -1587,6 +1706,13 @@ declare namespace WorkMail {
|
|
1587
1706
|
export type IpRangeList = IpRange[];
|
1588
1707
|
export type Jobs = MailboxExportJob[];
|
1589
1708
|
export type KmsKeyArn = string;
|
1709
|
+
export type LambdaArn = string;
|
1710
|
+
export interface LambdaAvailabilityProvider {
|
1711
|
+
/**
|
1712
|
+
* The Amazon Resource Name (ARN) of the Lambda that acts as the availability provider.
|
1713
|
+
*/
|
1714
|
+
LambdaArn: LambdaArn;
|
1715
|
+
}
|
1590
1716
|
export interface ListAccessControlRulesRequest {
|
1591
1717
|
/**
|
1592
1718
|
* The identifier for the organization.
|
@@ -1627,6 +1753,30 @@ declare namespace WorkMail {
|
|
1627
1753
|
*/
|
1628
1754
|
NextToken?: NextToken;
|
1629
1755
|
}
|
1756
|
+
export interface ListAvailabilityConfigurationsRequest {
|
1757
|
+
/**
|
1758
|
+
* The Amazon WorkMail organization for which the AvailabilityConfiguration's will be listed.
|
1759
|
+
*/
|
1760
|
+
OrganizationId: OrganizationId;
|
1761
|
+
/**
|
1762
|
+
* The maximum number of results to return in a single call.
|
1763
|
+
*/
|
1764
|
+
MaxResults?: MaxResults;
|
1765
|
+
/**
|
1766
|
+
* The token to use to retrieve the next page of results. The first call does not require a token.
|
1767
|
+
*/
|
1768
|
+
NextToken?: NextToken;
|
1769
|
+
}
|
1770
|
+
export interface ListAvailabilityConfigurationsResponse {
|
1771
|
+
/**
|
1772
|
+
* The list of AvailabilityConfiguration's that exist for the specified Amazon WorkMail organization.
|
1773
|
+
*/
|
1774
|
+
AvailabilityConfigurations?: AvailabilityConfigurationList;
|
1775
|
+
/**
|
1776
|
+
* The token to use to retrieve the next page of results. The value is null when there are no further results to return.
|
1777
|
+
*/
|
1778
|
+
NextToken?: NextToken;
|
1779
|
+
}
|
1630
1780
|
export interface ListGroupMembersRequest {
|
1631
1781
|
/**
|
1632
1782
|
* The identifier for the organization under which the group exists.
|
@@ -2278,6 +2428,16 @@ declare namespace WorkMail {
|
|
2278
2428
|
}
|
2279
2429
|
export interface PutRetentionPolicyResponse {
|
2280
2430
|
}
|
2431
|
+
export interface RedactedEwsAvailabilityProvider {
|
2432
|
+
/**
|
2433
|
+
* The endpoint of the remote EWS server.
|
2434
|
+
*/
|
2435
|
+
EwsEndpoint?: Url;
|
2436
|
+
/**
|
2437
|
+
* The username used to authenticate the remote EWS server.
|
2438
|
+
*/
|
2439
|
+
EwsUsername?: ExternalUserName;
|
2440
|
+
}
|
2281
2441
|
export interface RegisterMailDomainRequest {
|
2282
2442
|
/**
|
2283
2443
|
* Idempotency token used when retrying requests.
|
@@ -2434,6 +2594,28 @@ declare namespace WorkMail {
|
|
2434
2594
|
export interface TagResourceResponse {
|
2435
2595
|
}
|
2436
2596
|
export type TagValue = string;
|
2597
|
+
export interface TestAvailabilityConfigurationRequest {
|
2598
|
+
/**
|
2599
|
+
* The Amazon WorkMail organization where the availability provider will be tested.
|
2600
|
+
*/
|
2601
|
+
OrganizationId: OrganizationId;
|
2602
|
+
/**
|
2603
|
+
* The domain to which the provider applies. If this field is provided, a stored availability provider associated to this domain name will be tested.
|
2604
|
+
*/
|
2605
|
+
DomainName?: DomainName;
|
2606
|
+
EwsProvider?: EwsAvailabilityProvider;
|
2607
|
+
LambdaProvider?: LambdaAvailabilityProvider;
|
2608
|
+
}
|
2609
|
+
export interface TestAvailabilityConfigurationResponse {
|
2610
|
+
/**
|
2611
|
+
* Boolean indicating whether the test passed or failed.
|
2612
|
+
*/
|
2613
|
+
TestPassed?: Boolean;
|
2614
|
+
/**
|
2615
|
+
* String containing the reason for a failed test if TestPassed is false.
|
2616
|
+
*/
|
2617
|
+
FailureReason?: String;
|
2618
|
+
}
|
2437
2619
|
export type Timestamp = Date;
|
2438
2620
|
export interface UntagResourceRequest {
|
2439
2621
|
/**
|
@@ -2447,6 +2629,26 @@ declare namespace WorkMail {
|
|
2447
2629
|
}
|
2448
2630
|
export interface UntagResourceResponse {
|
2449
2631
|
}
|
2632
|
+
export interface UpdateAvailabilityConfigurationRequest {
|
2633
|
+
/**
|
2634
|
+
* The Amazon WorkMail organization for which the AvailabilityConfiguration will be updated.
|
2635
|
+
*/
|
2636
|
+
OrganizationId: OrganizationId;
|
2637
|
+
/**
|
2638
|
+
* The domain to which the provider applies the availability configuration.
|
2639
|
+
*/
|
2640
|
+
DomainName: DomainName;
|
2641
|
+
/**
|
2642
|
+
* The EWS availability provider definition. The request must contain exactly one provider definition, either EwsProvider or LambdaProvider. The previously stored provider will be overridden by the one provided.
|
2643
|
+
*/
|
2644
|
+
EwsProvider?: EwsAvailabilityProvider;
|
2645
|
+
/**
|
2646
|
+
* The Lambda availability provider definition. The request must contain exactly one provider definition, either EwsProvider or LambdaProvider. The previously stored provider will be overridden by the one provided.
|
2647
|
+
*/
|
2648
|
+
LambdaProvider?: LambdaAvailabilityProvider;
|
2649
|
+
}
|
2650
|
+
export interface UpdateAvailabilityConfigurationResponse {
|
2651
|
+
}
|
2450
2652
|
export interface UpdateDefaultMailDomainRequest {
|
2451
2653
|
/**
|
2452
2654
|
* The Amazon WorkMail organization for which to list domains.
|
@@ -2567,6 +2769,7 @@ declare namespace WorkMail {
|
|
2567
2769
|
}
|
2568
2770
|
export interface UpdateResourceResponse {
|
2569
2771
|
}
|
2772
|
+
export type Url = string;
|
2570
2773
|
export interface User {
|
2571
2774
|
/**
|
2572
2775
|
* The identifier of the user.
|
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
83
83
|
/**
|
84
84
|
* @constant
|
85
85
|
*/
|
86
|
-
VERSION: '2.
|
86
|
+
VERSION: '2.1166.0',
|
87
87
|
|
88
88
|
/**
|
89
89
|
* @api private
|
@@ -4064,6 +4064,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
4064
4064
|
property(this, 'documentation', api.documentation);
|
4065
4065
|
property(this, 'documentationUrl', api.documentationUrl);
|
4066
4066
|
}
|
4067
|
+
property(this, 'errorCodeMapping', api.awsQueryCompatible);
|
4067
4068
|
}
|
4068
4069
|
|
4069
4070
|
/**
|
@@ -7331,6 +7332,16 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
7331
7332
|
}
|
7332
7333
|
});
|
7333
7334
|
|
7335
|
+
add('ERROR', 'error', function ERROR(err, resp) {
|
7336
|
+
var errorCodeMapping = resp.request.service.api.errorCodeMapping;
|
7337
|
+
if (errorCodeMapping && err && err.code) {
|
7338
|
+
var mapping = errorCodeMapping[err.code];
|
7339
|
+
if (mapping) {
|
7340
|
+
resp.error.code = mapping.code;
|
7341
|
+
}
|
7342
|
+
}
|
7343
|
+
}, true);
|
7344
|
+
|
7334
7345
|
addAsync('SEND', 'send', function SEND(resp, done) {
|
7335
7346
|
resp.httpResponse._abortCallback = done;
|
7336
7347
|
resp.error = null;
|