@aws-sdk/client-workspaces-web 3.693.0 → 3.697.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +56 -0
- package/dist-cjs/index.js +443 -0
- package/dist-es/WorkSpacesWeb.js +14 -0
- package/dist-es/commands/AssociateDataProtectionSettingsCommand.js +22 -0
- package/dist-es/commands/CreateDataProtectionSettingsCommand.js +23 -0
- package/dist-es/commands/DeleteDataProtectionSettingsCommand.js +22 -0
- package/dist-es/commands/DisassociateDataProtectionSettingsCommand.js +22 -0
- package/dist-es/commands/GetDataProtectionSettingsCommand.js +23 -0
- package/dist-es/commands/ListDataProtectionSettingsCommand.js +23 -0
- package/dist-es/commands/UpdateDataProtectionSettingsCommand.js +23 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/models/models_0.js +80 -0
- package/dist-es/pagination/ListDataProtectionSettingsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +210 -0
- package/dist-types/WorkSpacesWeb.d.ts +51 -0
- package/dist-types/WorkSpacesWebClient.d.ts +9 -2
- package/dist-types/commands/AssociateDataProtectionSettingsCommand.d.ts +91 -0
- package/dist-types/commands/CreateDataProtectionSettingsCommand.d.ts +135 -0
- package/dist-types/commands/DeleteDataProtectionSettingsCommand.d.ts +84 -0
- package/dist-types/commands/DisassociateDataProtectionSettingsCommand.d.ts +87 -0
- package/dist-types/commands/GetDataProtectionSettingsCommand.d.ts +129 -0
- package/dist-types/commands/GetPortalCommand.d.ts +1 -0
- package/dist-types/commands/ListDataProtectionSettingsCommand.d.ts +92 -0
- package/dist-types/commands/ListPortalsCommand.d.ts +1 -0
- package/dist-types/commands/UpdateDataProtectionSettingsCommand.d.ts +163 -0
- package/dist-types/commands/UpdatePortalCommand.d.ts +1 -0
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/models/models_0.d.ts +468 -0
- package/dist-types/pagination/ListDataProtectionSettingsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +63 -0
- package/dist-types/ts3.4/WorkSpacesWeb.d.ts +127 -0
- package/dist-types/ts3.4/WorkSpacesWebClient.d.ts +42 -0
- package/dist-types/ts3.4/commands/AssociateDataProtectionSettingsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateDataProtectionSettingsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteDataProtectionSettingsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DisassociateDataProtectionSettingsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetDataProtectionSettingsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListDataProtectionSettingsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateDataProtectionSettingsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/models/models_0.d.ts +132 -0
- package/dist-types/ts3.4/pagination/ListDataProtectionSettingsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +84 -0
- package/package.json +35 -35
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CreateDataProtectionSettingsRequest,
|
|
5
|
+
CreateDataProtectionSettingsResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
WorkSpacesWebClientResolvedConfig,
|
|
11
|
+
} from "../WorkSpacesWebClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateDataProtectionSettingsCommandInput
|
|
15
|
+
extends CreateDataProtectionSettingsRequest {}
|
|
16
|
+
export interface CreateDataProtectionSettingsCommandOutput
|
|
17
|
+
extends CreateDataProtectionSettingsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateDataProtectionSettingsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateDataProtectionSettingsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateDataProtectionSettingsCommandInput,
|
|
24
|
+
CreateDataProtectionSettingsCommandOutput,
|
|
25
|
+
WorkSpacesWebClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [CreateDataProtectionSettingsCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateDataProtectionSettingsCommandInput,
|
|
33
|
+
CreateDataProtectionSettingsCommandOutput,
|
|
34
|
+
WorkSpacesWebClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateDataProtectionSettingsCommand extends CreateDataProtectionSettingsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateDataProtectionSettingsRequest;
|
|
44
|
+
output: CreateDataProtectionSettingsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateDataProtectionSettingsCommandInput;
|
|
48
|
+
output: CreateDataProtectionSettingsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DeleteDataProtectionSettingsRequest,
|
|
5
|
+
DeleteDataProtectionSettingsResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
WorkSpacesWebClientResolvedConfig,
|
|
11
|
+
} from "../WorkSpacesWebClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteDataProtectionSettingsCommandInput
|
|
15
|
+
extends DeleteDataProtectionSettingsRequest {}
|
|
16
|
+
export interface DeleteDataProtectionSettingsCommandOutput
|
|
17
|
+
extends DeleteDataProtectionSettingsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteDataProtectionSettingsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteDataProtectionSettingsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeleteDataProtectionSettingsCommandInput,
|
|
24
|
+
DeleteDataProtectionSettingsCommandOutput,
|
|
25
|
+
WorkSpacesWebClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: DeleteDataProtectionSettingsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeleteDataProtectionSettingsCommandInput,
|
|
33
|
+
DeleteDataProtectionSettingsCommandOutput,
|
|
34
|
+
WorkSpacesWebClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeleteDataProtectionSettingsCommand extends DeleteDataProtectionSettingsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeleteDataProtectionSettingsRequest;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeleteDataProtectionSettingsCommandInput;
|
|
48
|
+
output: DeleteDataProtectionSettingsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DisassociateDataProtectionSettingsRequest,
|
|
5
|
+
DisassociateDataProtectionSettingsResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
WorkSpacesWebClientResolvedConfig,
|
|
11
|
+
} from "../WorkSpacesWebClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DisassociateDataProtectionSettingsCommandInput
|
|
15
|
+
extends DisassociateDataProtectionSettingsRequest {}
|
|
16
|
+
export interface DisassociateDataProtectionSettingsCommandOutput
|
|
17
|
+
extends DisassociateDataProtectionSettingsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DisassociateDataProtectionSettingsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DisassociateDataProtectionSettingsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DisassociateDataProtectionSettingsCommandInput,
|
|
24
|
+
DisassociateDataProtectionSettingsCommandOutput,
|
|
25
|
+
WorkSpacesWebClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: DisassociateDataProtectionSettingsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DisassociateDataProtectionSettingsCommandInput,
|
|
33
|
+
DisassociateDataProtectionSettingsCommandOutput,
|
|
34
|
+
WorkSpacesWebClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DisassociateDataProtectionSettingsCommand extends DisassociateDataProtectionSettingsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DisassociateDataProtectionSettingsRequest;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DisassociateDataProtectionSettingsCommandInput;
|
|
48
|
+
output: DisassociateDataProtectionSettingsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GetDataProtectionSettingsRequest,
|
|
5
|
+
GetDataProtectionSettingsResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
WorkSpacesWebClientResolvedConfig,
|
|
11
|
+
} from "../WorkSpacesWebClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetDataProtectionSettingsCommandInput
|
|
15
|
+
extends GetDataProtectionSettingsRequest {}
|
|
16
|
+
export interface GetDataProtectionSettingsCommandOutput
|
|
17
|
+
extends GetDataProtectionSettingsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetDataProtectionSettingsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetDataProtectionSettingsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetDataProtectionSettingsCommandInput,
|
|
24
|
+
GetDataProtectionSettingsCommandOutput,
|
|
25
|
+
WorkSpacesWebClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: GetDataProtectionSettingsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetDataProtectionSettingsCommandInput,
|
|
33
|
+
GetDataProtectionSettingsCommandOutput,
|
|
34
|
+
WorkSpacesWebClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetDataProtectionSettingsCommand extends GetDataProtectionSettingsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetDataProtectionSettingsRequest;
|
|
44
|
+
output: GetDataProtectionSettingsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetDataProtectionSettingsCommandInput;
|
|
48
|
+
output: GetDataProtectionSettingsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ListDataProtectionSettingsRequest,
|
|
5
|
+
ListDataProtectionSettingsResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
WorkSpacesWebClientResolvedConfig,
|
|
11
|
+
} from "../WorkSpacesWebClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListDataProtectionSettingsCommandInput
|
|
15
|
+
extends ListDataProtectionSettingsRequest {}
|
|
16
|
+
export interface ListDataProtectionSettingsCommandOutput
|
|
17
|
+
extends ListDataProtectionSettingsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListDataProtectionSettingsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListDataProtectionSettingsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListDataProtectionSettingsCommandInput,
|
|
24
|
+
ListDataProtectionSettingsCommandOutput,
|
|
25
|
+
WorkSpacesWebClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [ListDataProtectionSettingsCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListDataProtectionSettingsCommandInput,
|
|
33
|
+
ListDataProtectionSettingsCommandOutput,
|
|
34
|
+
WorkSpacesWebClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListDataProtectionSettingsCommand extends ListDataProtectionSettingsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListDataProtectionSettingsRequest;
|
|
44
|
+
output: ListDataProtectionSettingsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListDataProtectionSettingsCommandInput;
|
|
48
|
+
output: ListDataProtectionSettingsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
UpdateDataProtectionSettingsRequest,
|
|
5
|
+
UpdateDataProtectionSettingsResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
WorkSpacesWebClientResolvedConfig,
|
|
11
|
+
} from "../WorkSpacesWebClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateDataProtectionSettingsCommandInput
|
|
15
|
+
extends UpdateDataProtectionSettingsRequest {}
|
|
16
|
+
export interface UpdateDataProtectionSettingsCommandOutput
|
|
17
|
+
extends UpdateDataProtectionSettingsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdateDataProtectionSettingsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdateDataProtectionSettingsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
UpdateDataProtectionSettingsCommandInput,
|
|
24
|
+
UpdateDataProtectionSettingsCommandOutput,
|
|
25
|
+
WorkSpacesWebClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: UpdateDataProtectionSettingsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
UpdateDataProtectionSettingsCommandInput,
|
|
33
|
+
UpdateDataProtectionSettingsCommandOutput,
|
|
34
|
+
WorkSpacesWebClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class UpdateDataProtectionSettingsCommand extends UpdateDataProtectionSettingsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdateDataProtectionSettingsRequest;
|
|
44
|
+
output: UpdateDataProtectionSettingsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdateDataProtectionSettingsCommandInput;
|
|
48
|
+
output: UpdateDataProtectionSettingsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
export * from "./AssociateBrowserSettingsCommand";
|
|
2
|
+
export * from "./AssociateDataProtectionSettingsCommand";
|
|
2
3
|
export * from "./AssociateIpAccessSettingsCommand";
|
|
3
4
|
export * from "./AssociateNetworkSettingsCommand";
|
|
4
5
|
export * from "./AssociateTrustStoreCommand";
|
|
5
6
|
export * from "./AssociateUserAccessLoggingSettingsCommand";
|
|
6
7
|
export * from "./AssociateUserSettingsCommand";
|
|
7
8
|
export * from "./CreateBrowserSettingsCommand";
|
|
9
|
+
export * from "./CreateDataProtectionSettingsCommand";
|
|
8
10
|
export * from "./CreateIdentityProviderCommand";
|
|
9
11
|
export * from "./CreateIpAccessSettingsCommand";
|
|
10
12
|
export * from "./CreateNetworkSettingsCommand";
|
|
@@ -13,6 +15,7 @@ export * from "./CreateTrustStoreCommand";
|
|
|
13
15
|
export * from "./CreateUserAccessLoggingSettingsCommand";
|
|
14
16
|
export * from "./CreateUserSettingsCommand";
|
|
15
17
|
export * from "./DeleteBrowserSettingsCommand";
|
|
18
|
+
export * from "./DeleteDataProtectionSettingsCommand";
|
|
16
19
|
export * from "./DeleteIdentityProviderCommand";
|
|
17
20
|
export * from "./DeleteIpAccessSettingsCommand";
|
|
18
21
|
export * from "./DeleteNetworkSettingsCommand";
|
|
@@ -21,6 +24,7 @@ export * from "./DeleteTrustStoreCommand";
|
|
|
21
24
|
export * from "./DeleteUserAccessLoggingSettingsCommand";
|
|
22
25
|
export * from "./DeleteUserSettingsCommand";
|
|
23
26
|
export * from "./DisassociateBrowserSettingsCommand";
|
|
27
|
+
export * from "./DisassociateDataProtectionSettingsCommand";
|
|
24
28
|
export * from "./DisassociateIpAccessSettingsCommand";
|
|
25
29
|
export * from "./DisassociateNetworkSettingsCommand";
|
|
26
30
|
export * from "./DisassociateTrustStoreCommand";
|
|
@@ -28,6 +32,7 @@ export * from "./DisassociateUserAccessLoggingSettingsCommand";
|
|
|
28
32
|
export * from "./DisassociateUserSettingsCommand";
|
|
29
33
|
export * from "./ExpireSessionCommand";
|
|
30
34
|
export * from "./GetBrowserSettingsCommand";
|
|
35
|
+
export * from "./GetDataProtectionSettingsCommand";
|
|
31
36
|
export * from "./GetIdentityProviderCommand";
|
|
32
37
|
export * from "./GetIpAccessSettingsCommand";
|
|
33
38
|
export * from "./GetNetworkSettingsCommand";
|
|
@@ -39,6 +44,7 @@ export * from "./GetTrustStoreCommand";
|
|
|
39
44
|
export * from "./GetUserAccessLoggingSettingsCommand";
|
|
40
45
|
export * from "./GetUserSettingsCommand";
|
|
41
46
|
export * from "./ListBrowserSettingsCommand";
|
|
47
|
+
export * from "./ListDataProtectionSettingsCommand";
|
|
42
48
|
export * from "./ListIdentityProvidersCommand";
|
|
43
49
|
export * from "./ListIpAccessSettingsCommand";
|
|
44
50
|
export * from "./ListNetworkSettingsCommand";
|
|
@@ -52,6 +58,7 @@ export * from "./ListUserSettingsCommand";
|
|
|
52
58
|
export * from "./TagResourceCommand";
|
|
53
59
|
export * from "./UntagResourceCommand";
|
|
54
60
|
export * from "./UpdateBrowserSettingsCommand";
|
|
61
|
+
export * from "./UpdateDataProtectionSettingsCommand";
|
|
55
62
|
export * from "./UpdateIdentityProviderCommand";
|
|
56
63
|
export * from "./UpdateIpAccessSettingsCommand";
|
|
57
64
|
export * from "./UpdateNetworkSettingsCommand";
|
|
@@ -70,6 +70,14 @@ export declare class ValidationException extends __BaseException {
|
|
|
70
70
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
71
71
|
);
|
|
72
72
|
}
|
|
73
|
+
export interface AssociateDataProtectionSettingsRequest {
|
|
74
|
+
portalArn: string | undefined;
|
|
75
|
+
dataProtectionSettingsArn: string | undefined;
|
|
76
|
+
}
|
|
77
|
+
export interface AssociateDataProtectionSettingsResponse {
|
|
78
|
+
portalArn: string | undefined;
|
|
79
|
+
dataProtectionSettingsArn: string | undefined;
|
|
80
|
+
}
|
|
73
81
|
export interface AssociateIpAccessSettingsRequest {
|
|
74
82
|
portalArn: string | undefined;
|
|
75
83
|
ipAccessSettingsArn: string | undefined;
|
|
@@ -177,6 +185,91 @@ export interface UpdateBrowserSettingsRequest {
|
|
|
177
185
|
export interface UpdateBrowserSettingsResponse {
|
|
178
186
|
browserSettings: BrowserSettings | undefined;
|
|
179
187
|
}
|
|
188
|
+
export interface CustomPattern {
|
|
189
|
+
patternName: string | undefined;
|
|
190
|
+
patternRegex: string | undefined;
|
|
191
|
+
patternDescription?: string | undefined;
|
|
192
|
+
keywordRegex?: string | undefined;
|
|
193
|
+
}
|
|
194
|
+
export declare const RedactionPlaceHolderType: {
|
|
195
|
+
readonly CUSTOM_TEXT: "CustomText";
|
|
196
|
+
};
|
|
197
|
+
export type RedactionPlaceHolderType =
|
|
198
|
+
(typeof RedactionPlaceHolderType)[keyof typeof RedactionPlaceHolderType];
|
|
199
|
+
export interface RedactionPlaceHolder {
|
|
200
|
+
redactionPlaceHolderType: RedactionPlaceHolderType | undefined;
|
|
201
|
+
redactionPlaceHolderText?: string | undefined;
|
|
202
|
+
}
|
|
203
|
+
export interface InlineRedactionPattern {
|
|
204
|
+
builtInPatternId?: string | undefined;
|
|
205
|
+
customPattern?: CustomPattern | undefined;
|
|
206
|
+
redactionPlaceHolder: RedactionPlaceHolder | undefined;
|
|
207
|
+
enforcedUrls?: string[] | undefined;
|
|
208
|
+
exemptUrls?: string[] | undefined;
|
|
209
|
+
confidenceLevel?: number | undefined;
|
|
210
|
+
}
|
|
211
|
+
export interface InlineRedactionConfiguration {
|
|
212
|
+
inlineRedactionPatterns: InlineRedactionPattern[] | undefined;
|
|
213
|
+
globalEnforcedUrls?: string[] | undefined;
|
|
214
|
+
globalExemptUrls?: string[] | undefined;
|
|
215
|
+
globalConfidenceLevel?: number | undefined;
|
|
216
|
+
}
|
|
217
|
+
export interface CreateDataProtectionSettingsRequest {
|
|
218
|
+
displayName?: string | undefined;
|
|
219
|
+
description?: string | undefined;
|
|
220
|
+
tags?: Tag[] | undefined;
|
|
221
|
+
customerManagedKey?: string | undefined;
|
|
222
|
+
additionalEncryptionContext?: Record<string, string> | undefined;
|
|
223
|
+
inlineRedactionConfiguration?: InlineRedactionConfiguration | undefined;
|
|
224
|
+
clientToken?: string | undefined;
|
|
225
|
+
}
|
|
226
|
+
export interface CreateDataProtectionSettingsResponse {
|
|
227
|
+
dataProtectionSettingsArn: string | undefined;
|
|
228
|
+
}
|
|
229
|
+
export interface DeleteDataProtectionSettingsRequest {
|
|
230
|
+
dataProtectionSettingsArn: string | undefined;
|
|
231
|
+
}
|
|
232
|
+
export interface DeleteDataProtectionSettingsResponse {}
|
|
233
|
+
export interface GetDataProtectionSettingsRequest {
|
|
234
|
+
dataProtectionSettingsArn: string | undefined;
|
|
235
|
+
}
|
|
236
|
+
export interface DataProtectionSettings {
|
|
237
|
+
dataProtectionSettingsArn: string | undefined;
|
|
238
|
+
inlineRedactionConfiguration?: InlineRedactionConfiguration | undefined;
|
|
239
|
+
associatedPortalArns?: string[] | undefined;
|
|
240
|
+
displayName?: string | undefined;
|
|
241
|
+
description?: string | undefined;
|
|
242
|
+
creationDate?: Date | undefined;
|
|
243
|
+
customerManagedKey?: string | undefined;
|
|
244
|
+
additionalEncryptionContext?: Record<string, string> | undefined;
|
|
245
|
+
}
|
|
246
|
+
export interface GetDataProtectionSettingsResponse {
|
|
247
|
+
dataProtectionSettings?: DataProtectionSettings | undefined;
|
|
248
|
+
}
|
|
249
|
+
export interface ListDataProtectionSettingsRequest {
|
|
250
|
+
nextToken?: string | undefined;
|
|
251
|
+
maxResults?: number | undefined;
|
|
252
|
+
}
|
|
253
|
+
export interface DataProtectionSettingsSummary {
|
|
254
|
+
dataProtectionSettingsArn: string | undefined;
|
|
255
|
+
displayName?: string | undefined;
|
|
256
|
+
description?: string | undefined;
|
|
257
|
+
creationDate?: Date | undefined;
|
|
258
|
+
}
|
|
259
|
+
export interface ListDataProtectionSettingsResponse {
|
|
260
|
+
dataProtectionSettings?: DataProtectionSettingsSummary[] | undefined;
|
|
261
|
+
nextToken?: string | undefined;
|
|
262
|
+
}
|
|
263
|
+
export interface UpdateDataProtectionSettingsRequest {
|
|
264
|
+
dataProtectionSettingsArn: string | undefined;
|
|
265
|
+
inlineRedactionConfiguration?: InlineRedactionConfiguration | undefined;
|
|
266
|
+
displayName?: string | undefined;
|
|
267
|
+
description?: string | undefined;
|
|
268
|
+
clientToken?: string | undefined;
|
|
269
|
+
}
|
|
270
|
+
export interface UpdateDataProtectionSettingsResponse {
|
|
271
|
+
dataProtectionSettings: DataProtectionSettings | undefined;
|
|
272
|
+
}
|
|
180
273
|
export interface ExpireSessionRequest {
|
|
181
274
|
portalId: string | undefined;
|
|
182
275
|
sessionId: string | undefined;
|
|
@@ -437,6 +530,10 @@ export interface DisassociateBrowserSettingsRequest {
|
|
|
437
530
|
portalArn: string | undefined;
|
|
438
531
|
}
|
|
439
532
|
export interface DisassociateBrowserSettingsResponse {}
|
|
533
|
+
export interface DisassociateDataProtectionSettingsRequest {
|
|
534
|
+
portalArn: string | undefined;
|
|
535
|
+
}
|
|
536
|
+
export interface DisassociateDataProtectionSettingsResponse {}
|
|
440
537
|
export interface DisassociateIpAccessSettingsRequest {
|
|
441
538
|
portalArn: string | undefined;
|
|
442
539
|
}
|
|
@@ -479,6 +576,7 @@ export interface Portal {
|
|
|
479
576
|
displayName?: string | undefined;
|
|
480
577
|
creationDate?: Date | undefined;
|
|
481
578
|
browserSettingsArn?: string | undefined;
|
|
579
|
+
dataProtectionSettingsArn?: string | undefined;
|
|
482
580
|
userSettingsArn?: string | undefined;
|
|
483
581
|
networkSettingsArn?: string | undefined;
|
|
484
582
|
trustStoreArn?: string | undefined;
|
|
@@ -514,6 +612,7 @@ export interface PortalSummary {
|
|
|
514
612
|
displayName?: string | undefined;
|
|
515
613
|
creationDate?: Date | undefined;
|
|
516
614
|
browserSettingsArn?: string | undefined;
|
|
615
|
+
dataProtectionSettingsArn?: string | undefined;
|
|
517
616
|
userSettingsArn?: string | undefined;
|
|
518
617
|
networkSettingsArn?: string | undefined;
|
|
519
618
|
trustStoreArn?: string | undefined;
|
|
@@ -791,6 +890,39 @@ export declare const UpdateBrowserSettingsRequestFilterSensitiveLog: (
|
|
|
791
890
|
export declare const UpdateBrowserSettingsResponseFilterSensitiveLog: (
|
|
792
891
|
obj: UpdateBrowserSettingsResponse
|
|
793
892
|
) => any;
|
|
893
|
+
export declare const CustomPatternFilterSensitiveLog: (
|
|
894
|
+
obj: CustomPattern
|
|
895
|
+
) => any;
|
|
896
|
+
export declare const RedactionPlaceHolderFilterSensitiveLog: (
|
|
897
|
+
obj: RedactionPlaceHolder
|
|
898
|
+
) => any;
|
|
899
|
+
export declare const InlineRedactionPatternFilterSensitiveLog: (
|
|
900
|
+
obj: InlineRedactionPattern
|
|
901
|
+
) => any;
|
|
902
|
+
export declare const InlineRedactionConfigurationFilterSensitiveLog: (
|
|
903
|
+
obj: InlineRedactionConfiguration
|
|
904
|
+
) => any;
|
|
905
|
+
export declare const CreateDataProtectionSettingsRequestFilterSensitiveLog: (
|
|
906
|
+
obj: CreateDataProtectionSettingsRequest
|
|
907
|
+
) => any;
|
|
908
|
+
export declare const DataProtectionSettingsFilterSensitiveLog: (
|
|
909
|
+
obj: DataProtectionSettings
|
|
910
|
+
) => any;
|
|
911
|
+
export declare const GetDataProtectionSettingsResponseFilterSensitiveLog: (
|
|
912
|
+
obj: GetDataProtectionSettingsResponse
|
|
913
|
+
) => any;
|
|
914
|
+
export declare const DataProtectionSettingsSummaryFilterSensitiveLog: (
|
|
915
|
+
obj: DataProtectionSettingsSummary
|
|
916
|
+
) => any;
|
|
917
|
+
export declare const ListDataProtectionSettingsResponseFilterSensitiveLog: (
|
|
918
|
+
obj: ListDataProtectionSettingsResponse
|
|
919
|
+
) => any;
|
|
920
|
+
export declare const UpdateDataProtectionSettingsRequestFilterSensitiveLog: (
|
|
921
|
+
obj: UpdateDataProtectionSettingsRequest
|
|
922
|
+
) => any;
|
|
923
|
+
export declare const UpdateDataProtectionSettingsResponseFilterSensitiveLog: (
|
|
924
|
+
obj: UpdateDataProtectionSettingsResponse
|
|
925
|
+
) => any;
|
|
794
926
|
export declare const SessionFilterSensitiveLog: (obj: Session) => any;
|
|
795
927
|
export declare const GetSessionResponseFilterSensitiveLog: (
|
|
796
928
|
obj: GetSessionResponse
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListDataProtectionSettingsCommandInput,
|
|
4
|
+
ListDataProtectionSettingsCommandOutput,
|
|
5
|
+
} from "../commands/ListDataProtectionSettingsCommand";
|
|
6
|
+
import { WorkSpacesWebPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListDataProtectionSettings: (
|
|
8
|
+
config: WorkSpacesWebPaginationConfiguration,
|
|
9
|
+
input: ListDataProtectionSettingsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListDataProtectionSettingsCommandOutput>;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
2
|
export * from "./ListBrowserSettingsPaginator";
|
|
3
|
+
export * from "./ListDataProtectionSettingsPaginator";
|
|
3
4
|
export * from "./ListIdentityProvidersPaginator";
|
|
4
5
|
export * from "./ListIpAccessSettingsPaginator";
|
|
5
6
|
export * from "./ListNetworkSettingsPaginator";
|