@aws-sdk/client-workmail 3.43.0 → 3.45.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/dist-cjs/WorkMail.js +45 -0
- package/dist-cjs/commands/DeleteEmailMonitoringConfigurationCommand.js +36 -0
- package/dist-cjs/commands/DescribeEmailMonitoringConfigurationCommand.js +36 -0
- package/dist-cjs/commands/PutEmailMonitoringConfigurationCommand.js +36 -0
- package/dist-cjs/commands/index.js +3 -0
- package/dist-cjs/endpoints.js +1 -0
- package/dist-cjs/models/models_0.js +46 -10
- package/dist-cjs/protocols/Aws_json1_1.js +270 -3
- package/dist-es/WorkMail.js +45 -0
- package/dist-es/commands/DeleteEmailMonitoringConfigurationCommand.js +39 -0
- package/dist-es/commands/DescribeEmailMonitoringConfigurationCommand.js +39 -0
- package/dist-es/commands/PutEmailMonitoringConfigurationCommand.js +39 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/endpoints.js +1 -0
- package/dist-es/models/models_0.js +28 -4
- package/dist-es/protocols/Aws_json1_1.js +289 -0
- package/dist-types/WorkMail.d.ts +21 -0
- package/dist-types/WorkMailClient.d.ts +5 -2
- package/dist-types/commands/DeleteEmailMonitoringConfigurationCommand.d.ts +35 -0
- package/dist-types/commands/DescribeEmailMonitoringConfigurationCommand.d.ts +35 -0
- package/dist-types/commands/PutEmailMonitoringConfigurationCommand.d.ts +35 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +90 -14
- package/dist-types/protocols/Aws_json1_1.d.ts +9 -0
- package/dist-types/ts3.4/WorkMail.d.ts +15 -0
- package/dist-types/ts3.4/WorkMailClient.d.ts +5 -2
- package/dist-types/ts3.4/commands/DeleteEmailMonitoringConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeEmailMonitoringConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutEmailMonitoringConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +60 -10
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +9 -0
- package/package.json +5 -5
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { PutEmailMonitoringConfigurationRequest, PutEmailMonitoringConfigurationResponse } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient";
|
|
5
|
+
export interface PutEmailMonitoringConfigurationCommandInput extends PutEmailMonitoringConfigurationRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface PutEmailMonitoringConfigurationCommandOutput extends PutEmailMonitoringConfigurationResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>Creates or updates the email monitoring configuration for a specified organization.</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { WorkMailClient, PutEmailMonitoringConfigurationCommand } from "@aws-sdk/client-workmail"; // ES Modules import
|
|
15
|
+
* // const { WorkMailClient, PutEmailMonitoringConfigurationCommand } = require("@aws-sdk/client-workmail"); // CommonJS import
|
|
16
|
+
* const client = new WorkMailClient(config);
|
|
17
|
+
* const command = new PutEmailMonitoringConfigurationCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link PutEmailMonitoringConfigurationCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link PutEmailMonitoringConfigurationCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link WorkMailClientResolvedConfig | config} for WorkMailClient's `config` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare class PutEmailMonitoringConfigurationCommand extends $Command<PutEmailMonitoringConfigurationCommandInput, PutEmailMonitoringConfigurationCommandOutput, WorkMailClientResolvedConfig> {
|
|
27
|
+
readonly input: PutEmailMonitoringConfigurationCommandInput;
|
|
28
|
+
constructor(input: PutEmailMonitoringConfigurationCommandInput);
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WorkMailClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutEmailMonitoringConfigurationCommandInput, PutEmailMonitoringConfigurationCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -9,6 +9,7 @@ export * from "./CreateResourceCommand";
|
|
|
9
9
|
export * from "./CreateUserCommand";
|
|
10
10
|
export * from "./DeleteAccessControlRuleCommand";
|
|
11
11
|
export * from "./DeleteAliasCommand";
|
|
12
|
+
export * from "./DeleteEmailMonitoringConfigurationCommand";
|
|
12
13
|
export * from "./DeleteGroupCommand";
|
|
13
14
|
export * from "./DeleteMailboxPermissionsCommand";
|
|
14
15
|
export * from "./DeleteMobileDeviceAccessOverrideCommand";
|
|
@@ -19,6 +20,7 @@ export * from "./DeleteRetentionPolicyCommand";
|
|
|
19
20
|
export * from "./DeleteUserCommand";
|
|
20
21
|
export * from "./DeregisterFromWorkMailCommand";
|
|
21
22
|
export * from "./DeregisterMailDomainCommand";
|
|
23
|
+
export * from "./DescribeEmailMonitoringConfigurationCommand";
|
|
22
24
|
export * from "./DescribeGroupCommand";
|
|
23
25
|
export * from "./DescribeInboundDmarcSettingsCommand";
|
|
24
26
|
export * from "./DescribeMailboxExportJobCommand";
|
|
@@ -48,6 +50,7 @@ export * from "./ListResourcesCommand";
|
|
|
48
50
|
export * from "./ListTagsForResourceCommand";
|
|
49
51
|
export * from "./ListUsersCommand";
|
|
50
52
|
export * from "./PutAccessControlRuleCommand";
|
|
53
|
+
export * from "./PutEmailMonitoringConfigurationCommand";
|
|
51
54
|
export * from "./PutInboundDmarcSettingsCommand";
|
|
52
55
|
export * from "./PutMailboxPermissionsCommand";
|
|
53
56
|
export * from "./PutMobileDeviceAccessOverrideCommand";
|
|
@@ -751,6 +751,26 @@ export declare namespace DeleteAliasResponse {
|
|
|
751
751
|
*/
|
|
752
752
|
const filterSensitiveLog: (obj: DeleteAliasResponse) => any;
|
|
753
753
|
}
|
|
754
|
+
export interface DeleteEmailMonitoringConfigurationRequest {
|
|
755
|
+
/**
|
|
756
|
+
* <p>The ID of the organization from which the email monitoring configuration is deleted.</p>
|
|
757
|
+
*/
|
|
758
|
+
OrganizationId: string | undefined;
|
|
759
|
+
}
|
|
760
|
+
export declare namespace DeleteEmailMonitoringConfigurationRequest {
|
|
761
|
+
/**
|
|
762
|
+
* @internal
|
|
763
|
+
*/
|
|
764
|
+
const filterSensitiveLog: (obj: DeleteEmailMonitoringConfigurationRequest) => any;
|
|
765
|
+
}
|
|
766
|
+
export interface DeleteEmailMonitoringConfigurationResponse {
|
|
767
|
+
}
|
|
768
|
+
export declare namespace DeleteEmailMonitoringConfigurationResponse {
|
|
769
|
+
/**
|
|
770
|
+
* @internal
|
|
771
|
+
*/
|
|
772
|
+
const filterSensitiveLog: (obj: DeleteEmailMonitoringConfigurationResponse) => any;
|
|
773
|
+
}
|
|
754
774
|
export interface DeleteGroupRequest {
|
|
755
775
|
/**
|
|
756
776
|
* <p>The organization that contains the group.</p>
|
|
@@ -1057,6 +1077,48 @@ export declare namespace MailDomainInUseException {
|
|
|
1057
1077
|
*/
|
|
1058
1078
|
const filterSensitiveLog: (obj: MailDomainInUseException) => any;
|
|
1059
1079
|
}
|
|
1080
|
+
export interface DescribeEmailMonitoringConfigurationRequest {
|
|
1081
|
+
/**
|
|
1082
|
+
* <p>The ID of the organization for which the email monitoring configuration is described.</p>
|
|
1083
|
+
*/
|
|
1084
|
+
OrganizationId: string | undefined;
|
|
1085
|
+
}
|
|
1086
|
+
export declare namespace DescribeEmailMonitoringConfigurationRequest {
|
|
1087
|
+
/**
|
|
1088
|
+
* @internal
|
|
1089
|
+
*/
|
|
1090
|
+
const filterSensitiveLog: (obj: DescribeEmailMonitoringConfigurationRequest) => any;
|
|
1091
|
+
}
|
|
1092
|
+
export interface DescribeEmailMonitoringConfigurationResponse {
|
|
1093
|
+
/**
|
|
1094
|
+
* <p>The Amazon Resource Name (ARN) of the IAM Role associated with the email monitoring configuration.</p>
|
|
1095
|
+
*/
|
|
1096
|
+
RoleArn?: string;
|
|
1097
|
+
/**
|
|
1098
|
+
* <p>The Amazon Resource Name (ARN) of the CloudWatch Log group associated with the email monitoring configuration.</p>
|
|
1099
|
+
*/
|
|
1100
|
+
LogGroupArn?: string;
|
|
1101
|
+
}
|
|
1102
|
+
export declare namespace DescribeEmailMonitoringConfigurationResponse {
|
|
1103
|
+
/**
|
|
1104
|
+
* @internal
|
|
1105
|
+
*/
|
|
1106
|
+
const filterSensitiveLog: (obj: DescribeEmailMonitoringConfigurationResponse) => any;
|
|
1107
|
+
}
|
|
1108
|
+
/**
|
|
1109
|
+
* <p>The resource cannot be found.</p>
|
|
1110
|
+
*/
|
|
1111
|
+
export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
|
|
1112
|
+
name: "ResourceNotFoundException";
|
|
1113
|
+
$fault: "client";
|
|
1114
|
+
Message?: string;
|
|
1115
|
+
}
|
|
1116
|
+
export declare namespace ResourceNotFoundException {
|
|
1117
|
+
/**
|
|
1118
|
+
* @internal
|
|
1119
|
+
*/
|
|
1120
|
+
const filterSensitiveLog: (obj: ResourceNotFoundException) => any;
|
|
1121
|
+
}
|
|
1060
1122
|
export interface DescribeGroupRequest {
|
|
1061
1123
|
/**
|
|
1062
1124
|
* <p>The identifier for the organization under which the group exists.</p>
|
|
@@ -1828,20 +1890,6 @@ export declare namespace GetMobileDeviceAccessOverrideResponse {
|
|
|
1828
1890
|
*/
|
|
1829
1891
|
const filterSensitiveLog: (obj: GetMobileDeviceAccessOverrideResponse) => any;
|
|
1830
1892
|
}
|
|
1831
|
-
/**
|
|
1832
|
-
* <p>The resource cannot be found.</p>
|
|
1833
|
-
*/
|
|
1834
|
-
export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
|
|
1835
|
-
name: "ResourceNotFoundException";
|
|
1836
|
-
$fault: "client";
|
|
1837
|
-
Message?: string;
|
|
1838
|
-
}
|
|
1839
|
-
export declare namespace ResourceNotFoundException {
|
|
1840
|
-
/**
|
|
1841
|
-
* @internal
|
|
1842
|
-
*/
|
|
1843
|
-
const filterSensitiveLog: (obj: ResourceNotFoundException) => any;
|
|
1844
|
-
}
|
|
1845
1893
|
/**
|
|
1846
1894
|
* <p>The representation of an Amazon WorkMail group.</p>
|
|
1847
1895
|
*/
|
|
@@ -2851,6 +2899,34 @@ export declare namespace PutAccessControlRuleResponse {
|
|
|
2851
2899
|
*/
|
|
2852
2900
|
const filterSensitiveLog: (obj: PutAccessControlRuleResponse) => any;
|
|
2853
2901
|
}
|
|
2902
|
+
export interface PutEmailMonitoringConfigurationRequest {
|
|
2903
|
+
/**
|
|
2904
|
+
* <p>The ID of the organization for which the email monitoring configuration is set.</p>
|
|
2905
|
+
*/
|
|
2906
|
+
OrganizationId: string | undefined;
|
|
2907
|
+
/**
|
|
2908
|
+
* <p>The Amazon Resource Name (ARN) of the IAM Role associated with the email monitoring configuration.</p>
|
|
2909
|
+
*/
|
|
2910
|
+
RoleArn: string | undefined;
|
|
2911
|
+
/**
|
|
2912
|
+
* <p>The Amazon Resource Name (ARN) of the CloudWatch Log group associated with the email monitoring configuration.</p>
|
|
2913
|
+
*/
|
|
2914
|
+
LogGroupArn: string | undefined;
|
|
2915
|
+
}
|
|
2916
|
+
export declare namespace PutEmailMonitoringConfigurationRequest {
|
|
2917
|
+
/**
|
|
2918
|
+
* @internal
|
|
2919
|
+
*/
|
|
2920
|
+
const filterSensitiveLog: (obj: PutEmailMonitoringConfigurationRequest) => any;
|
|
2921
|
+
}
|
|
2922
|
+
export interface PutEmailMonitoringConfigurationResponse {
|
|
2923
|
+
}
|
|
2924
|
+
export declare namespace PutEmailMonitoringConfigurationResponse {
|
|
2925
|
+
/**
|
|
2926
|
+
* @internal
|
|
2927
|
+
*/
|
|
2928
|
+
const filterSensitiveLog: (obj: PutEmailMonitoringConfigurationResponse) => any;
|
|
2929
|
+
}
|
|
2854
2930
|
export interface PutInboundDmarcSettingsRequest {
|
|
2855
2931
|
/**
|
|
2856
2932
|
* <p>The ID of the organization that you are applying the DMARC policy to. </p>
|
|
@@ -11,6 +11,7 @@ import { CreateResourceCommandInput, CreateResourceCommandOutput } from "../comm
|
|
|
11
11
|
import { CreateUserCommandInput, CreateUserCommandOutput } from "../commands/CreateUserCommand";
|
|
12
12
|
import { DeleteAccessControlRuleCommandInput, DeleteAccessControlRuleCommandOutput } from "../commands/DeleteAccessControlRuleCommand";
|
|
13
13
|
import { DeleteAliasCommandInput, DeleteAliasCommandOutput } from "../commands/DeleteAliasCommand";
|
|
14
|
+
import { DeleteEmailMonitoringConfigurationCommandInput, DeleteEmailMonitoringConfigurationCommandOutput } from "../commands/DeleteEmailMonitoringConfigurationCommand";
|
|
14
15
|
import { DeleteGroupCommandInput, DeleteGroupCommandOutput } from "../commands/DeleteGroupCommand";
|
|
15
16
|
import { DeleteMailboxPermissionsCommandInput, DeleteMailboxPermissionsCommandOutput } from "../commands/DeleteMailboxPermissionsCommand";
|
|
16
17
|
import { DeleteMobileDeviceAccessOverrideCommandInput, DeleteMobileDeviceAccessOverrideCommandOutput } from "../commands/DeleteMobileDeviceAccessOverrideCommand";
|
|
@@ -21,6 +22,7 @@ import { DeleteRetentionPolicyCommandInput, DeleteRetentionPolicyCommandOutput }
|
|
|
21
22
|
import { DeleteUserCommandInput, DeleteUserCommandOutput } from "../commands/DeleteUserCommand";
|
|
22
23
|
import { DeregisterFromWorkMailCommandInput, DeregisterFromWorkMailCommandOutput } from "../commands/DeregisterFromWorkMailCommand";
|
|
23
24
|
import { DeregisterMailDomainCommandInput, DeregisterMailDomainCommandOutput } from "../commands/DeregisterMailDomainCommand";
|
|
25
|
+
import { DescribeEmailMonitoringConfigurationCommandInput, DescribeEmailMonitoringConfigurationCommandOutput } from "../commands/DescribeEmailMonitoringConfigurationCommand";
|
|
24
26
|
import { DescribeGroupCommandInput, DescribeGroupCommandOutput } from "../commands/DescribeGroupCommand";
|
|
25
27
|
import { DescribeInboundDmarcSettingsCommandInput, DescribeInboundDmarcSettingsCommandOutput } from "../commands/DescribeInboundDmarcSettingsCommand";
|
|
26
28
|
import { DescribeMailboxExportJobCommandInput, DescribeMailboxExportJobCommandOutput } from "../commands/DescribeMailboxExportJobCommand";
|
|
@@ -50,6 +52,7 @@ import { ListResourcesCommandInput, ListResourcesCommandOutput } from "../comman
|
|
|
50
52
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
51
53
|
import { ListUsersCommandInput, ListUsersCommandOutput } from "../commands/ListUsersCommand";
|
|
52
54
|
import { PutAccessControlRuleCommandInput, PutAccessControlRuleCommandOutput } from "../commands/PutAccessControlRuleCommand";
|
|
55
|
+
import { PutEmailMonitoringConfigurationCommandInput, PutEmailMonitoringConfigurationCommandOutput } from "../commands/PutEmailMonitoringConfigurationCommand";
|
|
53
56
|
import { PutInboundDmarcSettingsCommandInput, PutInboundDmarcSettingsCommandOutput } from "../commands/PutInboundDmarcSettingsCommand";
|
|
54
57
|
import { PutMailboxPermissionsCommandInput, PutMailboxPermissionsCommandOutput } from "../commands/PutMailboxPermissionsCommand";
|
|
55
58
|
import { PutMobileDeviceAccessOverrideCommandInput, PutMobileDeviceAccessOverrideCommandOutput } from "../commands/PutMobileDeviceAccessOverrideCommand";
|
|
@@ -76,6 +79,7 @@ export declare const serializeAws_json1_1CreateResourceCommand: (input: CreateRe
|
|
|
76
79
|
export declare const serializeAws_json1_1CreateUserCommand: (input: CreateUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
77
80
|
export declare const serializeAws_json1_1DeleteAccessControlRuleCommand: (input: DeleteAccessControlRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
78
81
|
export declare const serializeAws_json1_1DeleteAliasCommand: (input: DeleteAliasCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
82
|
+
export declare const serializeAws_json1_1DeleteEmailMonitoringConfigurationCommand: (input: DeleteEmailMonitoringConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
79
83
|
export declare const serializeAws_json1_1DeleteGroupCommand: (input: DeleteGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
80
84
|
export declare const serializeAws_json1_1DeleteMailboxPermissionsCommand: (input: DeleteMailboxPermissionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
81
85
|
export declare const serializeAws_json1_1DeleteMobileDeviceAccessOverrideCommand: (input: DeleteMobileDeviceAccessOverrideCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -86,6 +90,7 @@ export declare const serializeAws_json1_1DeleteRetentionPolicyCommand: (input: D
|
|
|
86
90
|
export declare const serializeAws_json1_1DeleteUserCommand: (input: DeleteUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
87
91
|
export declare const serializeAws_json1_1DeregisterFromWorkMailCommand: (input: DeregisterFromWorkMailCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
88
92
|
export declare const serializeAws_json1_1DeregisterMailDomainCommand: (input: DeregisterMailDomainCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
93
|
+
export declare const serializeAws_json1_1DescribeEmailMonitoringConfigurationCommand: (input: DescribeEmailMonitoringConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
89
94
|
export declare const serializeAws_json1_1DescribeGroupCommand: (input: DescribeGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
90
95
|
export declare const serializeAws_json1_1DescribeInboundDmarcSettingsCommand: (input: DescribeInboundDmarcSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
91
96
|
export declare const serializeAws_json1_1DescribeMailboxExportJobCommand: (input: DescribeMailboxExportJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -115,6 +120,7 @@ export declare const serializeAws_json1_1ListResourcesCommand: (input: ListResou
|
|
|
115
120
|
export declare const serializeAws_json1_1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
116
121
|
export declare const serializeAws_json1_1ListUsersCommand: (input: ListUsersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
117
122
|
export declare const serializeAws_json1_1PutAccessControlRuleCommand: (input: PutAccessControlRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
123
|
+
export declare const serializeAws_json1_1PutEmailMonitoringConfigurationCommand: (input: PutEmailMonitoringConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
118
124
|
export declare const serializeAws_json1_1PutInboundDmarcSettingsCommand: (input: PutInboundDmarcSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
119
125
|
export declare const serializeAws_json1_1PutMailboxPermissionsCommand: (input: PutMailboxPermissionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
120
126
|
export declare const serializeAws_json1_1PutMobileDeviceAccessOverrideCommand: (input: PutMobileDeviceAccessOverrideCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -141,6 +147,7 @@ export declare const deserializeAws_json1_1CreateResourceCommand: (output: __Htt
|
|
|
141
147
|
export declare const deserializeAws_json1_1CreateUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateUserCommandOutput>;
|
|
142
148
|
export declare const deserializeAws_json1_1DeleteAccessControlRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAccessControlRuleCommandOutput>;
|
|
143
149
|
export declare const deserializeAws_json1_1DeleteAliasCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAliasCommandOutput>;
|
|
150
|
+
export declare const deserializeAws_json1_1DeleteEmailMonitoringConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteEmailMonitoringConfigurationCommandOutput>;
|
|
144
151
|
export declare const deserializeAws_json1_1DeleteGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteGroupCommandOutput>;
|
|
145
152
|
export declare const deserializeAws_json1_1DeleteMailboxPermissionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteMailboxPermissionsCommandOutput>;
|
|
146
153
|
export declare const deserializeAws_json1_1DeleteMobileDeviceAccessOverrideCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteMobileDeviceAccessOverrideCommandOutput>;
|
|
@@ -151,6 +158,7 @@ export declare const deserializeAws_json1_1DeleteRetentionPolicyCommand: (output
|
|
|
151
158
|
export declare const deserializeAws_json1_1DeleteUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteUserCommandOutput>;
|
|
152
159
|
export declare const deserializeAws_json1_1DeregisterFromWorkMailCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeregisterFromWorkMailCommandOutput>;
|
|
153
160
|
export declare const deserializeAws_json1_1DeregisterMailDomainCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeregisterMailDomainCommandOutput>;
|
|
161
|
+
export declare const deserializeAws_json1_1DescribeEmailMonitoringConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeEmailMonitoringConfigurationCommandOutput>;
|
|
154
162
|
export declare const deserializeAws_json1_1DescribeGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeGroupCommandOutput>;
|
|
155
163
|
export declare const deserializeAws_json1_1DescribeInboundDmarcSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeInboundDmarcSettingsCommandOutput>;
|
|
156
164
|
export declare const deserializeAws_json1_1DescribeMailboxExportJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeMailboxExportJobCommandOutput>;
|
|
@@ -180,6 +188,7 @@ export declare const deserializeAws_json1_1ListResourcesCommand: (output: __Http
|
|
|
180
188
|
export declare const deserializeAws_json1_1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
181
189
|
export declare const deserializeAws_json1_1ListUsersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListUsersCommandOutput>;
|
|
182
190
|
export declare const deserializeAws_json1_1PutAccessControlRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutAccessControlRuleCommandOutput>;
|
|
191
|
+
export declare const deserializeAws_json1_1PutEmailMonitoringConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutEmailMonitoringConfigurationCommandOutput>;
|
|
183
192
|
export declare const deserializeAws_json1_1PutInboundDmarcSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutInboundDmarcSettingsCommandOutput>;
|
|
184
193
|
export declare const deserializeAws_json1_1PutMailboxPermissionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutMailboxPermissionsCommandOutput>;
|
|
185
194
|
export declare const deserializeAws_json1_1PutMobileDeviceAccessOverrideCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutMobileDeviceAccessOverrideCommandOutput>;
|
|
@@ -10,6 +10,7 @@ import { CreateResourceCommandInput, CreateResourceCommandOutput } from "./comma
|
|
|
10
10
|
import { CreateUserCommandInput, CreateUserCommandOutput } from "./commands/CreateUserCommand";
|
|
11
11
|
import { DeleteAccessControlRuleCommandInput, DeleteAccessControlRuleCommandOutput } from "./commands/DeleteAccessControlRuleCommand";
|
|
12
12
|
import { DeleteAliasCommandInput, DeleteAliasCommandOutput } from "./commands/DeleteAliasCommand";
|
|
13
|
+
import { DeleteEmailMonitoringConfigurationCommandInput, DeleteEmailMonitoringConfigurationCommandOutput } from "./commands/DeleteEmailMonitoringConfigurationCommand";
|
|
13
14
|
import { DeleteGroupCommandInput, DeleteGroupCommandOutput } from "./commands/DeleteGroupCommand";
|
|
14
15
|
import { DeleteMailboxPermissionsCommandInput, DeleteMailboxPermissionsCommandOutput } from "./commands/DeleteMailboxPermissionsCommand";
|
|
15
16
|
import { DeleteMobileDeviceAccessOverrideCommandInput, DeleteMobileDeviceAccessOverrideCommandOutput } from "./commands/DeleteMobileDeviceAccessOverrideCommand";
|
|
@@ -20,6 +21,7 @@ import { DeleteRetentionPolicyCommandInput, DeleteRetentionPolicyCommandOutput }
|
|
|
20
21
|
import { DeleteUserCommandInput, DeleteUserCommandOutput } from "./commands/DeleteUserCommand";
|
|
21
22
|
import { DeregisterFromWorkMailCommandInput, DeregisterFromWorkMailCommandOutput } from "./commands/DeregisterFromWorkMailCommand";
|
|
22
23
|
import { DeregisterMailDomainCommandInput, DeregisterMailDomainCommandOutput } from "./commands/DeregisterMailDomainCommand";
|
|
24
|
+
import { DescribeEmailMonitoringConfigurationCommandInput, DescribeEmailMonitoringConfigurationCommandOutput } from "./commands/DescribeEmailMonitoringConfigurationCommand";
|
|
23
25
|
import { DescribeGroupCommandInput, DescribeGroupCommandOutput } from "./commands/DescribeGroupCommand";
|
|
24
26
|
import { DescribeInboundDmarcSettingsCommandInput, DescribeInboundDmarcSettingsCommandOutput } from "./commands/DescribeInboundDmarcSettingsCommand";
|
|
25
27
|
import { DescribeMailboxExportJobCommandInput, DescribeMailboxExportJobCommandOutput } from "./commands/DescribeMailboxExportJobCommand";
|
|
@@ -49,6 +51,7 @@ import { ListResourcesCommandInput, ListResourcesCommandOutput } from "./command
|
|
|
49
51
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
50
52
|
import { ListUsersCommandInput, ListUsersCommandOutput } from "./commands/ListUsersCommand";
|
|
51
53
|
import { PutAccessControlRuleCommandInput, PutAccessControlRuleCommandOutput } from "./commands/PutAccessControlRuleCommand";
|
|
54
|
+
import { PutEmailMonitoringConfigurationCommandInput, PutEmailMonitoringConfigurationCommandOutput } from "./commands/PutEmailMonitoringConfigurationCommand";
|
|
52
55
|
import { PutInboundDmarcSettingsCommandInput, PutInboundDmarcSettingsCommandOutput } from "./commands/PutInboundDmarcSettingsCommand";
|
|
53
56
|
import { PutMailboxPermissionsCommandInput, PutMailboxPermissionsCommandOutput } from "./commands/PutMailboxPermissionsCommand";
|
|
54
57
|
import { PutMobileDeviceAccessOverrideCommandInput, PutMobileDeviceAccessOverrideCommandOutput } from "./commands/PutMobileDeviceAccessOverrideCommand";
|
|
@@ -112,6 +115,10 @@ export declare class WorkMail extends WorkMailClient {
|
|
|
112
115
|
deleteAlias(args: DeleteAliasCommandInput, cb: (err: any, data?: DeleteAliasCommandOutput) => void): void;
|
|
113
116
|
deleteAlias(args: DeleteAliasCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAliasCommandOutput) => void): void;
|
|
114
117
|
|
|
118
|
+
deleteEmailMonitoringConfiguration(args: DeleteEmailMonitoringConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEmailMonitoringConfigurationCommandOutput>;
|
|
119
|
+
deleteEmailMonitoringConfiguration(args: DeleteEmailMonitoringConfigurationCommandInput, cb: (err: any, data?: DeleteEmailMonitoringConfigurationCommandOutput) => void): void;
|
|
120
|
+
deleteEmailMonitoringConfiguration(args: DeleteEmailMonitoringConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEmailMonitoringConfigurationCommandOutput) => void): void;
|
|
121
|
+
|
|
115
122
|
deleteGroup(args: DeleteGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteGroupCommandOutput>;
|
|
116
123
|
deleteGroup(args: DeleteGroupCommandInput, cb: (err: any, data?: DeleteGroupCommandOutput) => void): void;
|
|
117
124
|
deleteGroup(args: DeleteGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteGroupCommandOutput) => void): void;
|
|
@@ -152,6 +159,10 @@ export declare class WorkMail extends WorkMailClient {
|
|
|
152
159
|
deregisterMailDomain(args: DeregisterMailDomainCommandInput, cb: (err: any, data?: DeregisterMailDomainCommandOutput) => void): void;
|
|
153
160
|
deregisterMailDomain(args: DeregisterMailDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeregisterMailDomainCommandOutput) => void): void;
|
|
154
161
|
|
|
162
|
+
describeEmailMonitoringConfiguration(args: DescribeEmailMonitoringConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEmailMonitoringConfigurationCommandOutput>;
|
|
163
|
+
describeEmailMonitoringConfiguration(args: DescribeEmailMonitoringConfigurationCommandInput, cb: (err: any, data?: DescribeEmailMonitoringConfigurationCommandOutput) => void): void;
|
|
164
|
+
describeEmailMonitoringConfiguration(args: DescribeEmailMonitoringConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEmailMonitoringConfigurationCommandOutput) => void): void;
|
|
165
|
+
|
|
155
166
|
describeGroup(args: DescribeGroupCommandInput, options?: __HttpHandlerOptions): Promise<DescribeGroupCommandOutput>;
|
|
156
167
|
describeGroup(args: DescribeGroupCommandInput, cb: (err: any, data?: DescribeGroupCommandOutput) => void): void;
|
|
157
168
|
describeGroup(args: DescribeGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeGroupCommandOutput) => void): void;
|
|
@@ -268,6 +279,10 @@ export declare class WorkMail extends WorkMailClient {
|
|
|
268
279
|
putAccessControlRule(args: PutAccessControlRuleCommandInput, cb: (err: any, data?: PutAccessControlRuleCommandOutput) => void): void;
|
|
269
280
|
putAccessControlRule(args: PutAccessControlRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutAccessControlRuleCommandOutput) => void): void;
|
|
270
281
|
|
|
282
|
+
putEmailMonitoringConfiguration(args: PutEmailMonitoringConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<PutEmailMonitoringConfigurationCommandOutput>;
|
|
283
|
+
putEmailMonitoringConfiguration(args: PutEmailMonitoringConfigurationCommandInput, cb: (err: any, data?: PutEmailMonitoringConfigurationCommandOutput) => void): void;
|
|
284
|
+
putEmailMonitoringConfiguration(args: PutEmailMonitoringConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutEmailMonitoringConfigurationCommandOutput) => void): void;
|
|
285
|
+
|
|
271
286
|
putInboundDmarcSettings(args: PutInboundDmarcSettingsCommandInput, options?: __HttpHandlerOptions): Promise<PutInboundDmarcSettingsCommandOutput>;
|
|
272
287
|
putInboundDmarcSettings(args: PutInboundDmarcSettingsCommandInput, cb: (err: any, data?: PutInboundDmarcSettingsCommandOutput) => void): void;
|
|
273
288
|
putInboundDmarcSettings(args: PutInboundDmarcSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutInboundDmarcSettingsCommandOutput) => void): void;
|
|
@@ -17,6 +17,7 @@ import { CreateResourceCommandInput, CreateResourceCommandOutput } from "./comma
|
|
|
17
17
|
import { CreateUserCommandInput, CreateUserCommandOutput } from "./commands/CreateUserCommand";
|
|
18
18
|
import { DeleteAccessControlRuleCommandInput, DeleteAccessControlRuleCommandOutput } from "./commands/DeleteAccessControlRuleCommand";
|
|
19
19
|
import { DeleteAliasCommandInput, DeleteAliasCommandOutput } from "./commands/DeleteAliasCommand";
|
|
20
|
+
import { DeleteEmailMonitoringConfigurationCommandInput, DeleteEmailMonitoringConfigurationCommandOutput } from "./commands/DeleteEmailMonitoringConfigurationCommand";
|
|
20
21
|
import { DeleteGroupCommandInput, DeleteGroupCommandOutput } from "./commands/DeleteGroupCommand";
|
|
21
22
|
import { DeleteMailboxPermissionsCommandInput, DeleteMailboxPermissionsCommandOutput } from "./commands/DeleteMailboxPermissionsCommand";
|
|
22
23
|
import { DeleteMobileDeviceAccessOverrideCommandInput, DeleteMobileDeviceAccessOverrideCommandOutput } from "./commands/DeleteMobileDeviceAccessOverrideCommand";
|
|
@@ -27,6 +28,7 @@ import { DeleteRetentionPolicyCommandInput, DeleteRetentionPolicyCommandOutput }
|
|
|
27
28
|
import { DeleteUserCommandInput, DeleteUserCommandOutput } from "./commands/DeleteUserCommand";
|
|
28
29
|
import { DeregisterFromWorkMailCommandInput, DeregisterFromWorkMailCommandOutput } from "./commands/DeregisterFromWorkMailCommand";
|
|
29
30
|
import { DeregisterMailDomainCommandInput, DeregisterMailDomainCommandOutput } from "./commands/DeregisterMailDomainCommand";
|
|
31
|
+
import { DescribeEmailMonitoringConfigurationCommandInput, DescribeEmailMonitoringConfigurationCommandOutput } from "./commands/DescribeEmailMonitoringConfigurationCommand";
|
|
30
32
|
import { DescribeGroupCommandInput, DescribeGroupCommandOutput } from "./commands/DescribeGroupCommand";
|
|
31
33
|
import { DescribeInboundDmarcSettingsCommandInput, DescribeInboundDmarcSettingsCommandOutput } from "./commands/DescribeInboundDmarcSettingsCommand";
|
|
32
34
|
import { DescribeMailboxExportJobCommandInput, DescribeMailboxExportJobCommandOutput } from "./commands/DescribeMailboxExportJobCommand";
|
|
@@ -56,6 +58,7 @@ import { ListResourcesCommandInput, ListResourcesCommandOutput } from "./command
|
|
|
56
58
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
57
59
|
import { ListUsersCommandInput, ListUsersCommandOutput } from "./commands/ListUsersCommand";
|
|
58
60
|
import { PutAccessControlRuleCommandInput, PutAccessControlRuleCommandOutput } from "./commands/PutAccessControlRuleCommand";
|
|
61
|
+
import { PutEmailMonitoringConfigurationCommandInput, PutEmailMonitoringConfigurationCommandOutput } from "./commands/PutEmailMonitoringConfigurationCommand";
|
|
59
62
|
import { PutInboundDmarcSettingsCommandInput, PutInboundDmarcSettingsCommandOutput } from "./commands/PutInboundDmarcSettingsCommand";
|
|
60
63
|
import { PutMailboxPermissionsCommandInput, PutMailboxPermissionsCommandOutput } from "./commands/PutMailboxPermissionsCommand";
|
|
61
64
|
import { PutMobileDeviceAccessOverrideCommandInput, PutMobileDeviceAccessOverrideCommandOutput } from "./commands/PutMobileDeviceAccessOverrideCommand";
|
|
@@ -71,8 +74,8 @@ import { UpdateMailboxQuotaCommandInput, UpdateMailboxQuotaCommandOutput } from
|
|
|
71
74
|
import { UpdateMobileDeviceAccessRuleCommandInput, UpdateMobileDeviceAccessRuleCommandOutput } from "./commands/UpdateMobileDeviceAccessRuleCommand";
|
|
72
75
|
import { UpdatePrimaryEmailAddressCommandInput, UpdatePrimaryEmailAddressCommandOutput } from "./commands/UpdatePrimaryEmailAddressCommand";
|
|
73
76
|
import { UpdateResourceCommandInput, UpdateResourceCommandOutput } from "./commands/UpdateResourceCommand";
|
|
74
|
-
export declare type ServiceInputTypes = AssociateDelegateToResourceCommandInput | AssociateMemberToGroupCommandInput | CancelMailboxExportJobCommandInput | CreateAliasCommandInput | CreateGroupCommandInput | CreateMobileDeviceAccessRuleCommandInput | CreateOrganizationCommandInput | CreateResourceCommandInput | CreateUserCommandInput | DeleteAccessControlRuleCommandInput | DeleteAliasCommandInput | DeleteGroupCommandInput | DeleteMailboxPermissionsCommandInput | DeleteMobileDeviceAccessOverrideCommandInput | DeleteMobileDeviceAccessRuleCommandInput | DeleteOrganizationCommandInput | DeleteResourceCommandInput | DeleteRetentionPolicyCommandInput | DeleteUserCommandInput | DeregisterFromWorkMailCommandInput | DeregisterMailDomainCommandInput | DescribeGroupCommandInput | DescribeInboundDmarcSettingsCommandInput | DescribeMailboxExportJobCommandInput | DescribeOrganizationCommandInput | DescribeResourceCommandInput | DescribeUserCommandInput | DisassociateDelegateFromResourceCommandInput | DisassociateMemberFromGroupCommandInput | GetAccessControlEffectCommandInput | GetDefaultRetentionPolicyCommandInput | GetMailDomainCommandInput | GetMailboxDetailsCommandInput | GetMobileDeviceAccessEffectCommandInput | GetMobileDeviceAccessOverrideCommandInput | ListAccessControlRulesCommandInput | ListAliasesCommandInput | ListGroupMembersCommandInput | ListGroupsCommandInput | ListMailDomainsCommandInput | ListMailboxExportJobsCommandInput | ListMailboxPermissionsCommandInput | ListMobileDeviceAccessOverridesCommandInput | ListMobileDeviceAccessRulesCommandInput | ListOrganizationsCommandInput | ListResourceDelegatesCommandInput | ListResourcesCommandInput | ListTagsForResourceCommandInput | ListUsersCommandInput | PutAccessControlRuleCommandInput | PutInboundDmarcSettingsCommandInput | PutMailboxPermissionsCommandInput | PutMobileDeviceAccessOverrideCommandInput | PutRetentionPolicyCommandInput | RegisterMailDomainCommandInput | RegisterToWorkMailCommandInput | ResetPasswordCommandInput | StartMailboxExportJobCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateDefaultMailDomainCommandInput | UpdateMailboxQuotaCommandInput | UpdateMobileDeviceAccessRuleCommandInput | UpdatePrimaryEmailAddressCommandInput | UpdateResourceCommandInput;
|
|
75
|
-
export declare type ServiceOutputTypes = AssociateDelegateToResourceCommandOutput | AssociateMemberToGroupCommandOutput | CancelMailboxExportJobCommandOutput | CreateAliasCommandOutput | CreateGroupCommandOutput | CreateMobileDeviceAccessRuleCommandOutput | CreateOrganizationCommandOutput | CreateResourceCommandOutput | CreateUserCommandOutput | DeleteAccessControlRuleCommandOutput | DeleteAliasCommandOutput | DeleteGroupCommandOutput | DeleteMailboxPermissionsCommandOutput | DeleteMobileDeviceAccessOverrideCommandOutput | DeleteMobileDeviceAccessRuleCommandOutput | DeleteOrganizationCommandOutput | DeleteResourceCommandOutput | DeleteRetentionPolicyCommandOutput | DeleteUserCommandOutput | DeregisterFromWorkMailCommandOutput | DeregisterMailDomainCommandOutput | DescribeGroupCommandOutput | DescribeInboundDmarcSettingsCommandOutput | DescribeMailboxExportJobCommandOutput | DescribeOrganizationCommandOutput | DescribeResourceCommandOutput | DescribeUserCommandOutput | DisassociateDelegateFromResourceCommandOutput | DisassociateMemberFromGroupCommandOutput | GetAccessControlEffectCommandOutput | GetDefaultRetentionPolicyCommandOutput | GetMailDomainCommandOutput | GetMailboxDetailsCommandOutput | GetMobileDeviceAccessEffectCommandOutput | GetMobileDeviceAccessOverrideCommandOutput | ListAccessControlRulesCommandOutput | ListAliasesCommandOutput | ListGroupMembersCommandOutput | ListGroupsCommandOutput | ListMailDomainsCommandOutput | ListMailboxExportJobsCommandOutput | ListMailboxPermissionsCommandOutput | ListMobileDeviceAccessOverridesCommandOutput | ListMobileDeviceAccessRulesCommandOutput | ListOrganizationsCommandOutput | ListResourceDelegatesCommandOutput | ListResourcesCommandOutput | ListTagsForResourceCommandOutput | ListUsersCommandOutput | PutAccessControlRuleCommandOutput | PutInboundDmarcSettingsCommandOutput | PutMailboxPermissionsCommandOutput | PutMobileDeviceAccessOverrideCommandOutput | PutRetentionPolicyCommandOutput | RegisterMailDomainCommandOutput | RegisterToWorkMailCommandOutput | ResetPasswordCommandOutput | StartMailboxExportJobCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateDefaultMailDomainCommandOutput | UpdateMailboxQuotaCommandOutput | UpdateMobileDeviceAccessRuleCommandOutput | UpdatePrimaryEmailAddressCommandOutput | UpdateResourceCommandOutput;
|
|
77
|
+
export declare type ServiceInputTypes = AssociateDelegateToResourceCommandInput | AssociateMemberToGroupCommandInput | CancelMailboxExportJobCommandInput | CreateAliasCommandInput | CreateGroupCommandInput | CreateMobileDeviceAccessRuleCommandInput | CreateOrganizationCommandInput | CreateResourceCommandInput | CreateUserCommandInput | DeleteAccessControlRuleCommandInput | DeleteAliasCommandInput | DeleteEmailMonitoringConfigurationCommandInput | DeleteGroupCommandInput | DeleteMailboxPermissionsCommandInput | DeleteMobileDeviceAccessOverrideCommandInput | DeleteMobileDeviceAccessRuleCommandInput | DeleteOrganizationCommandInput | DeleteResourceCommandInput | DeleteRetentionPolicyCommandInput | DeleteUserCommandInput | DeregisterFromWorkMailCommandInput | DeregisterMailDomainCommandInput | DescribeEmailMonitoringConfigurationCommandInput | DescribeGroupCommandInput | DescribeInboundDmarcSettingsCommandInput | DescribeMailboxExportJobCommandInput | DescribeOrganizationCommandInput | DescribeResourceCommandInput | DescribeUserCommandInput | DisassociateDelegateFromResourceCommandInput | DisassociateMemberFromGroupCommandInput | GetAccessControlEffectCommandInput | GetDefaultRetentionPolicyCommandInput | GetMailDomainCommandInput | GetMailboxDetailsCommandInput | GetMobileDeviceAccessEffectCommandInput | GetMobileDeviceAccessOverrideCommandInput | ListAccessControlRulesCommandInput | ListAliasesCommandInput | ListGroupMembersCommandInput | ListGroupsCommandInput | ListMailDomainsCommandInput | ListMailboxExportJobsCommandInput | ListMailboxPermissionsCommandInput | ListMobileDeviceAccessOverridesCommandInput | ListMobileDeviceAccessRulesCommandInput | ListOrganizationsCommandInput | ListResourceDelegatesCommandInput | ListResourcesCommandInput | ListTagsForResourceCommandInput | ListUsersCommandInput | PutAccessControlRuleCommandInput | PutEmailMonitoringConfigurationCommandInput | PutInboundDmarcSettingsCommandInput | PutMailboxPermissionsCommandInput | PutMobileDeviceAccessOverrideCommandInput | PutRetentionPolicyCommandInput | RegisterMailDomainCommandInput | RegisterToWorkMailCommandInput | ResetPasswordCommandInput | StartMailboxExportJobCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateDefaultMailDomainCommandInput | UpdateMailboxQuotaCommandInput | UpdateMobileDeviceAccessRuleCommandInput | UpdatePrimaryEmailAddressCommandInput | UpdateResourceCommandInput;
|
|
78
|
+
export declare type ServiceOutputTypes = AssociateDelegateToResourceCommandOutput | AssociateMemberToGroupCommandOutput | CancelMailboxExportJobCommandOutput | CreateAliasCommandOutput | CreateGroupCommandOutput | CreateMobileDeviceAccessRuleCommandOutput | CreateOrganizationCommandOutput | CreateResourceCommandOutput | CreateUserCommandOutput | DeleteAccessControlRuleCommandOutput | DeleteAliasCommandOutput | DeleteEmailMonitoringConfigurationCommandOutput | DeleteGroupCommandOutput | DeleteMailboxPermissionsCommandOutput | DeleteMobileDeviceAccessOverrideCommandOutput | DeleteMobileDeviceAccessRuleCommandOutput | DeleteOrganizationCommandOutput | DeleteResourceCommandOutput | DeleteRetentionPolicyCommandOutput | DeleteUserCommandOutput | DeregisterFromWorkMailCommandOutput | DeregisterMailDomainCommandOutput | DescribeEmailMonitoringConfigurationCommandOutput | DescribeGroupCommandOutput | DescribeInboundDmarcSettingsCommandOutput | DescribeMailboxExportJobCommandOutput | DescribeOrganizationCommandOutput | DescribeResourceCommandOutput | DescribeUserCommandOutput | DisassociateDelegateFromResourceCommandOutput | DisassociateMemberFromGroupCommandOutput | GetAccessControlEffectCommandOutput | GetDefaultRetentionPolicyCommandOutput | GetMailDomainCommandOutput | GetMailboxDetailsCommandOutput | GetMobileDeviceAccessEffectCommandOutput | GetMobileDeviceAccessOverrideCommandOutput | ListAccessControlRulesCommandOutput | ListAliasesCommandOutput | ListGroupMembersCommandOutput | ListGroupsCommandOutput | ListMailDomainsCommandOutput | ListMailboxExportJobsCommandOutput | ListMailboxPermissionsCommandOutput | ListMobileDeviceAccessOverridesCommandOutput | ListMobileDeviceAccessRulesCommandOutput | ListOrganizationsCommandOutput | ListResourceDelegatesCommandOutput | ListResourcesCommandOutput | ListTagsForResourceCommandOutput | ListUsersCommandOutput | PutAccessControlRuleCommandOutput | PutEmailMonitoringConfigurationCommandOutput | PutInboundDmarcSettingsCommandOutput | PutMailboxPermissionsCommandOutput | PutMobileDeviceAccessOverrideCommandOutput | PutRetentionPolicyCommandOutput | RegisterMailDomainCommandOutput | RegisterToWorkMailCommandOutput | ResetPasswordCommandOutput | StartMailboxExportJobCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateDefaultMailDomainCommandOutput | UpdateMailboxQuotaCommandOutput | UpdateMobileDeviceAccessRuleCommandOutput | UpdatePrimaryEmailAddressCommandOutput | UpdateResourceCommandOutput;
|
|
76
79
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
77
80
|
|
|
78
81
|
requestHandler?: __HttpHandler;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DeleteEmailMonitoringConfigurationRequest, DeleteEmailMonitoringConfigurationResponse } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient";
|
|
5
|
+
export interface DeleteEmailMonitoringConfigurationCommandInput extends DeleteEmailMonitoringConfigurationRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteEmailMonitoringConfigurationCommandOutput extends DeleteEmailMonitoringConfigurationResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteEmailMonitoringConfigurationCommand extends $Command<DeleteEmailMonitoringConfigurationCommandInput, DeleteEmailMonitoringConfigurationCommandOutput, WorkMailClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteEmailMonitoringConfigurationCommandInput;
|
|
12
|
+
constructor(input: DeleteEmailMonitoringConfigurationCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WorkMailClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteEmailMonitoringConfigurationCommandInput, DeleteEmailMonitoringConfigurationCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DescribeEmailMonitoringConfigurationRequest, DescribeEmailMonitoringConfigurationResponse } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient";
|
|
5
|
+
export interface DescribeEmailMonitoringConfigurationCommandInput extends DescribeEmailMonitoringConfigurationRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeEmailMonitoringConfigurationCommandOutput extends DescribeEmailMonitoringConfigurationResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DescribeEmailMonitoringConfigurationCommand extends $Command<DescribeEmailMonitoringConfigurationCommandInput, DescribeEmailMonitoringConfigurationCommandOutput, WorkMailClientResolvedConfig> {
|
|
11
|
+
readonly input: DescribeEmailMonitoringConfigurationCommandInput;
|
|
12
|
+
constructor(input: DescribeEmailMonitoringConfigurationCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WorkMailClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeEmailMonitoringConfigurationCommandInput, DescribeEmailMonitoringConfigurationCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { PutEmailMonitoringConfigurationRequest, PutEmailMonitoringConfigurationResponse } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient";
|
|
5
|
+
export interface PutEmailMonitoringConfigurationCommandInput extends PutEmailMonitoringConfigurationRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface PutEmailMonitoringConfigurationCommandOutput extends PutEmailMonitoringConfigurationResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class PutEmailMonitoringConfigurationCommand extends $Command<PutEmailMonitoringConfigurationCommandInput, PutEmailMonitoringConfigurationCommandOutput, WorkMailClientResolvedConfig> {
|
|
11
|
+
readonly input: PutEmailMonitoringConfigurationCommandInput;
|
|
12
|
+
constructor(input: PutEmailMonitoringConfigurationCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WorkMailClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutEmailMonitoringConfigurationCommandInput, PutEmailMonitoringConfigurationCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -9,6 +9,7 @@ export * from "./CreateResourceCommand";
|
|
|
9
9
|
export * from "./CreateUserCommand";
|
|
10
10
|
export * from "./DeleteAccessControlRuleCommand";
|
|
11
11
|
export * from "./DeleteAliasCommand";
|
|
12
|
+
export * from "./DeleteEmailMonitoringConfigurationCommand";
|
|
12
13
|
export * from "./DeleteGroupCommand";
|
|
13
14
|
export * from "./DeleteMailboxPermissionsCommand";
|
|
14
15
|
export * from "./DeleteMobileDeviceAccessOverrideCommand";
|
|
@@ -19,6 +20,7 @@ export * from "./DeleteRetentionPolicyCommand";
|
|
|
19
20
|
export * from "./DeleteUserCommand";
|
|
20
21
|
export * from "./DeregisterFromWorkMailCommand";
|
|
21
22
|
export * from "./DeregisterMailDomainCommand";
|
|
23
|
+
export * from "./DescribeEmailMonitoringConfigurationCommand";
|
|
22
24
|
export * from "./DescribeGroupCommand";
|
|
23
25
|
export * from "./DescribeInboundDmarcSettingsCommand";
|
|
24
26
|
export * from "./DescribeMailboxExportJobCommand";
|
|
@@ -48,6 +50,7 @@ export * from "./ListResourcesCommand";
|
|
|
48
50
|
export * from "./ListTagsForResourceCommand";
|
|
49
51
|
export * from "./ListUsersCommand";
|
|
50
52
|
export * from "./PutAccessControlRuleCommand";
|
|
53
|
+
export * from "./PutEmailMonitoringConfigurationCommand";
|
|
51
54
|
export * from "./PutInboundDmarcSettingsCommand";
|
|
52
55
|
export * from "./PutMailboxPermissionsCommand";
|
|
53
56
|
export * from "./PutMobileDeviceAccessOverrideCommand";
|
|
@@ -471,6 +471,20 @@ export declare namespace DeleteAliasResponse {
|
|
|
471
471
|
|
|
472
472
|
const filterSensitiveLog: (obj: DeleteAliasResponse) => any;
|
|
473
473
|
}
|
|
474
|
+
export interface DeleteEmailMonitoringConfigurationRequest {
|
|
475
|
+
|
|
476
|
+
OrganizationId: string | undefined;
|
|
477
|
+
}
|
|
478
|
+
export declare namespace DeleteEmailMonitoringConfigurationRequest {
|
|
479
|
+
|
|
480
|
+
const filterSensitiveLog: (obj: DeleteEmailMonitoringConfigurationRequest) => any;
|
|
481
|
+
}
|
|
482
|
+
export interface DeleteEmailMonitoringConfigurationResponse {
|
|
483
|
+
}
|
|
484
|
+
export declare namespace DeleteEmailMonitoringConfigurationResponse {
|
|
485
|
+
|
|
486
|
+
const filterSensitiveLog: (obj: DeleteEmailMonitoringConfigurationResponse) => any;
|
|
487
|
+
}
|
|
474
488
|
export interface DeleteGroupRequest {
|
|
475
489
|
|
|
476
490
|
OrganizationId: string | undefined;
|
|
@@ -661,6 +675,34 @@ export declare namespace MailDomainInUseException {
|
|
|
661
675
|
|
|
662
676
|
const filterSensitiveLog: (obj: MailDomainInUseException) => any;
|
|
663
677
|
}
|
|
678
|
+
export interface DescribeEmailMonitoringConfigurationRequest {
|
|
679
|
+
|
|
680
|
+
OrganizationId: string | undefined;
|
|
681
|
+
}
|
|
682
|
+
export declare namespace DescribeEmailMonitoringConfigurationRequest {
|
|
683
|
+
|
|
684
|
+
const filterSensitiveLog: (obj: DescribeEmailMonitoringConfigurationRequest) => any;
|
|
685
|
+
}
|
|
686
|
+
export interface DescribeEmailMonitoringConfigurationResponse {
|
|
687
|
+
|
|
688
|
+
RoleArn?: string;
|
|
689
|
+
|
|
690
|
+
LogGroupArn?: string;
|
|
691
|
+
}
|
|
692
|
+
export declare namespace DescribeEmailMonitoringConfigurationResponse {
|
|
693
|
+
|
|
694
|
+
const filterSensitiveLog: (obj: DescribeEmailMonitoringConfigurationResponse) => any;
|
|
695
|
+
}
|
|
696
|
+
|
|
697
|
+
export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
|
|
698
|
+
name: "ResourceNotFoundException";
|
|
699
|
+
$fault: "client";
|
|
700
|
+
Message?: string;
|
|
701
|
+
}
|
|
702
|
+
export declare namespace ResourceNotFoundException {
|
|
703
|
+
|
|
704
|
+
const filterSensitiveLog: (obj: ResourceNotFoundException) => any;
|
|
705
|
+
}
|
|
664
706
|
export interface DescribeGroupRequest {
|
|
665
707
|
|
|
666
708
|
OrganizationId: string | undefined;
|
|
@@ -1106,16 +1148,6 @@ export declare namespace GetMobileDeviceAccessOverrideResponse {
|
|
|
1106
1148
|
const filterSensitiveLog: (obj: GetMobileDeviceAccessOverrideResponse) => any;
|
|
1107
1149
|
}
|
|
1108
1150
|
|
|
1109
|
-
export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
|
|
1110
|
-
name: "ResourceNotFoundException";
|
|
1111
|
-
$fault: "client";
|
|
1112
|
-
Message?: string;
|
|
1113
|
-
}
|
|
1114
|
-
export declare namespace ResourceNotFoundException {
|
|
1115
|
-
|
|
1116
|
-
const filterSensitiveLog: (obj: ResourceNotFoundException) => any;
|
|
1117
|
-
}
|
|
1118
|
-
|
|
1119
1151
|
export interface Group {
|
|
1120
1152
|
|
|
1121
1153
|
Id?: string;
|
|
@@ -1675,6 +1707,24 @@ export declare namespace PutAccessControlRuleResponse {
|
|
|
1675
1707
|
|
|
1676
1708
|
const filterSensitiveLog: (obj: PutAccessControlRuleResponse) => any;
|
|
1677
1709
|
}
|
|
1710
|
+
export interface PutEmailMonitoringConfigurationRequest {
|
|
1711
|
+
|
|
1712
|
+
OrganizationId: string | undefined;
|
|
1713
|
+
|
|
1714
|
+
RoleArn: string | undefined;
|
|
1715
|
+
|
|
1716
|
+
LogGroupArn: string | undefined;
|
|
1717
|
+
}
|
|
1718
|
+
export declare namespace PutEmailMonitoringConfigurationRequest {
|
|
1719
|
+
|
|
1720
|
+
const filterSensitiveLog: (obj: PutEmailMonitoringConfigurationRequest) => any;
|
|
1721
|
+
}
|
|
1722
|
+
export interface PutEmailMonitoringConfigurationResponse {
|
|
1723
|
+
}
|
|
1724
|
+
export declare namespace PutEmailMonitoringConfigurationResponse {
|
|
1725
|
+
|
|
1726
|
+
const filterSensitiveLog: (obj: PutEmailMonitoringConfigurationResponse) => any;
|
|
1727
|
+
}
|
|
1678
1728
|
export interface PutInboundDmarcSettingsRequest {
|
|
1679
1729
|
|
|
1680
1730
|
OrganizationId: string | undefined;
|