@aws-sdk/client-opensearchserverless 3.220.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/LICENSE +201 -0
- package/README.md +214 -0
- package/dist-cjs/OpenSearchServerless.js +472 -0
- package/dist-cjs/OpenSearchServerlessClient.js +40 -0
- package/dist-cjs/commands/BatchGetCollectionCommand.js +46 -0
- package/dist-cjs/commands/BatchGetVpcEndpointCommand.js +46 -0
- package/dist-cjs/commands/CreateAccessPolicyCommand.js +46 -0
- package/dist-cjs/commands/CreateCollectionCommand.js +46 -0
- package/dist-cjs/commands/CreateSecurityConfigCommand.js +46 -0
- package/dist-cjs/commands/CreateSecurityPolicyCommand.js +46 -0
- package/dist-cjs/commands/CreateVpcEndpointCommand.js +46 -0
- package/dist-cjs/commands/DeleteAccessPolicyCommand.js +46 -0
- package/dist-cjs/commands/DeleteCollectionCommand.js +46 -0
- package/dist-cjs/commands/DeleteSecurityConfigCommand.js +46 -0
- package/dist-cjs/commands/DeleteSecurityPolicyCommand.js +46 -0
- package/dist-cjs/commands/DeleteVpcEndpointCommand.js +46 -0
- package/dist-cjs/commands/GetAccessPolicyCommand.js +46 -0
- package/dist-cjs/commands/GetAccountSettingsCommand.js +46 -0
- package/dist-cjs/commands/GetPoliciesStatsCommand.js +46 -0
- package/dist-cjs/commands/GetSecurityConfigCommand.js +46 -0
- package/dist-cjs/commands/GetSecurityPolicyCommand.js +46 -0
- package/dist-cjs/commands/ListAccessPoliciesCommand.js +46 -0
- package/dist-cjs/commands/ListCollectionsCommand.js +46 -0
- package/dist-cjs/commands/ListSecurityConfigsCommand.js +46 -0
- package/dist-cjs/commands/ListSecurityPoliciesCommand.js +46 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +46 -0
- package/dist-cjs/commands/ListVpcEndpointsCommand.js +46 -0
- package/dist-cjs/commands/TagResourceCommand.js +46 -0
- package/dist-cjs/commands/UntagResourceCommand.js +46 -0
- package/dist-cjs/commands/UpdateAccessPolicyCommand.js +46 -0
- package/dist-cjs/commands/UpdateAccountSettingsCommand.js +46 -0
- package/dist-cjs/commands/UpdateCollectionCommand.js +46 -0
- package/dist-cjs/commands/UpdateSecurityConfigCommand.js +46 -0
- package/dist-cjs/commands/UpdateSecurityPolicyCommand.js +46 -0
- package/dist-cjs/commands/UpdateVpcEndpointCommand.js +46 -0
- package/dist-cjs/commands/index.js +34 -0
- package/dist-cjs/endpoint/EndpointParameters.js +12 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +312 -0
- package/dist-cjs/index.js +11 -0
- package/dist-cjs/models/OpenSearchServerlessServiceException.js +11 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +445 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListAccessPoliciesPaginator.js +35 -0
- package/dist-cjs/pagination/ListCollectionsPaginator.js +35 -0
- package/dist-cjs/pagination/ListSecurityConfigsPaginator.js +35 -0
- package/dist-cjs/pagination/ListSecurityPoliciesPaginator.js +35 -0
- package/dist-cjs/pagination/ListVpcEndpointsPaginator.js +35 -0
- package/dist-cjs/pagination/index.js +9 -0
- package/dist-cjs/protocols/Aws_json1_0.js +2572 -0
- package/dist-cjs/runtimeConfig.browser.js +42 -0
- package/dist-cjs/runtimeConfig.js +50 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +18 -0
- package/dist-es/OpenSearchServerless.js +468 -0
- package/dist-es/OpenSearchServerlessClient.js +36 -0
- package/dist-es/commands/BatchGetCollectionCommand.js +42 -0
- package/dist-es/commands/BatchGetVpcEndpointCommand.js +42 -0
- package/dist-es/commands/CreateAccessPolicyCommand.js +42 -0
- package/dist-es/commands/CreateCollectionCommand.js +42 -0
- package/dist-es/commands/CreateSecurityConfigCommand.js +42 -0
- package/dist-es/commands/CreateSecurityPolicyCommand.js +42 -0
- package/dist-es/commands/CreateVpcEndpointCommand.js +42 -0
- package/dist-es/commands/DeleteAccessPolicyCommand.js +42 -0
- package/dist-es/commands/DeleteCollectionCommand.js +42 -0
- package/dist-es/commands/DeleteSecurityConfigCommand.js +42 -0
- package/dist-es/commands/DeleteSecurityPolicyCommand.js +42 -0
- package/dist-es/commands/DeleteVpcEndpointCommand.js +42 -0
- package/dist-es/commands/GetAccessPolicyCommand.js +42 -0
- package/dist-es/commands/GetAccountSettingsCommand.js +42 -0
- package/dist-es/commands/GetPoliciesStatsCommand.js +42 -0
- package/dist-es/commands/GetSecurityConfigCommand.js +42 -0
- package/dist-es/commands/GetSecurityPolicyCommand.js +42 -0
- package/dist-es/commands/ListAccessPoliciesCommand.js +42 -0
- package/dist-es/commands/ListCollectionsCommand.js +42 -0
- package/dist-es/commands/ListSecurityConfigsCommand.js +42 -0
- package/dist-es/commands/ListSecurityPoliciesCommand.js +42 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +42 -0
- package/dist-es/commands/ListVpcEndpointsCommand.js +42 -0
- package/dist-es/commands/TagResourceCommand.js +42 -0
- package/dist-es/commands/UntagResourceCommand.js +42 -0
- package/dist-es/commands/UpdateAccessPolicyCommand.js +42 -0
- package/dist-es/commands/UpdateAccountSettingsCommand.js +42 -0
- package/dist-es/commands/UpdateCollectionCommand.js +42 -0
- package/dist-es/commands/UpdateSecurityConfigCommand.js +42 -0
- package/dist-es/commands/UpdateSecurityPolicyCommand.js +42 -0
- package/dist-es/commands/UpdateVpcEndpointCommand.js +42 -0
- package/dist-es/commands/index.js +31 -0
- package/dist-es/endpoint/EndpointParameters.js +8 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +309 -0
- package/dist-es/index.js +6 -0
- package/dist-es/models/OpenSearchServerlessServiceException.js +7 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +348 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListAccessPoliciesPaginator.js +31 -0
- package/dist-es/pagination/ListCollectionsPaginator.js +31 -0
- package/dist-es/pagination/ListSecurityConfigsPaginator.js +31 -0
- package/dist-es/pagination/ListSecurityPoliciesPaginator.js +31 -0
- package/dist-es/pagination/ListVpcEndpointsPaginator.js +31 -0
- package/dist-es/pagination/index.js +6 -0
- package/dist-es/protocols/Aws_json1_0.js +2506 -0
- package/dist-es/runtimeConfig.browser.js +37 -0
- package/dist-es/runtimeConfig.js +45 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +14 -0
- package/dist-types/OpenSearchServerless.d.ts +276 -0
- package/dist-types/OpenSearchServerlessClient.d.ts +181 -0
- package/dist-types/commands/BatchGetCollectionCommand.d.ts +39 -0
- package/dist-types/commands/BatchGetVpcEndpointCommand.d.ts +39 -0
- package/dist-types/commands/CreateAccessPolicyCommand.d.ts +40 -0
- package/dist-types/commands/CreateCollectionCommand.d.ts +38 -0
- package/dist-types/commands/CreateSecurityConfigCommand.d.ts +39 -0
- package/dist-types/commands/CreateSecurityPolicyCommand.d.ts +42 -0
- package/dist-types/commands/CreateVpcEndpointCommand.d.ts +38 -0
- package/dist-types/commands/DeleteAccessPolicyCommand.d.ts +38 -0
- package/dist-types/commands/DeleteCollectionCommand.d.ts +38 -0
- package/dist-types/commands/DeleteSecurityConfigCommand.d.ts +39 -0
- package/dist-types/commands/DeleteSecurityPolicyCommand.d.ts +37 -0
- package/dist-types/commands/DeleteVpcEndpointCommand.d.ts +38 -0
- package/dist-types/commands/GetAccessPolicyCommand.d.ts +38 -0
- package/dist-types/commands/GetAccountSettingsCommand.d.ts +37 -0
- package/dist-types/commands/GetPoliciesStatsCommand.d.ts +38 -0
- package/dist-types/commands/GetSecurityConfigCommand.d.ts +39 -0
- package/dist-types/commands/GetSecurityPolicyCommand.d.ts +39 -0
- package/dist-types/commands/ListAccessPoliciesCommand.d.ts +37 -0
- package/dist-types/commands/ListCollectionsCommand.d.ts +42 -0
- package/dist-types/commands/ListSecurityConfigsCommand.d.ts +39 -0
- package/dist-types/commands/ListSecurityPoliciesCommand.d.ts +37 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +37 -0
- package/dist-types/commands/ListVpcEndpointsCommand.d.ts +39 -0
- package/dist-types/commands/TagResourceCommand.d.ts +37 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +37 -0
- package/dist-types/commands/UpdateAccessPolicyCommand.d.ts +38 -0
- package/dist-types/commands/UpdateAccountSettingsCommand.d.ts +38 -0
- package/dist-types/commands/UpdateCollectionCommand.d.ts +37 -0
- package/dist-types/commands/UpdateSecurityConfigCommand.d.ts +39 -0
- package/dist-types/commands/UpdateSecurityPolicyCommand.d.ts +39 -0
- package/dist-types/commands/UpdateVpcEndpointCommand.d.ts +38 -0
- package/dist-types/commands/index.d.ts +31 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/index.d.ts +6 -0
- package/dist-types/models/OpenSearchServerlessServiceException.d.ts +10 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +1802 -0
- package/dist-types/pagination/Interfaces.d.ts +6 -0
- package/dist-types/pagination/ListAccessPoliciesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListCollectionsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListSecurityConfigsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListSecurityPoliciesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListVpcEndpointsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +6 -0
- package/dist-types/protocols/Aws_json1_0.d.ts +95 -0
- package/dist-types/runtimeConfig.browser.d.ts +42 -0
- package/dist-types/runtimeConfig.d.ts +42 -0
- package/dist-types/runtimeConfig.native.d.ts +41 -0
- package/dist-types/runtimeConfig.shared.d.ts +16 -0
- package/dist-types/ts3.4/OpenSearchServerless.d.ts +531 -0
- package/dist-types/ts3.4/OpenSearchServerlessClient.d.ts +298 -0
- package/dist-types/ts3.4/commands/BatchGetCollectionCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/BatchGetVpcEndpointCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateAccessPolicyCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateCollectionCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/CreateSecurityConfigCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/CreateSecurityPolicyCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/CreateVpcEndpointCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteAccessPolicyCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteCollectionCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/DeleteSecurityConfigCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/DeleteSecurityPolicyCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/DeleteVpcEndpointCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetAccessPolicyCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/GetAccountSettingsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetPoliciesStatsCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/GetSecurityConfigCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetSecurityPolicyCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListAccessPoliciesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListCollectionsCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/ListSecurityConfigsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListSecurityPoliciesCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListVpcEndpointsCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/UpdateAccessPolicyCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateAccountSettingsCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/UpdateCollectionCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/UpdateSecurityConfigCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/UpdateSecurityPolicyCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/UpdateVpcEndpointCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +31 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +34 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +6 -0
- package/dist-types/ts3.4/models/OpenSearchServerlessServiceException.d.ts +7 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +740 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -0
- package/dist-types/ts3.4/pagination/ListAccessPoliciesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListCollectionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSecurityConfigsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSecurityPoliciesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListVpcEndpointsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +6 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +377 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +90 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +90 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +79 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +18 -0
- package/package.json +103 -0
|
@@ -0,0 +1,740 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { DocumentType as __DocumentType } from "@aws-sdk/types";
|
|
3
|
+
import { OpenSearchServerlessServiceException as __BaseException } from "./OpenSearchServerlessServiceException";
|
|
4
|
+
export declare enum AccessPolicyType {
|
|
5
|
+
data = "data",
|
|
6
|
+
}
|
|
7
|
+
export declare class ConflictException extends __BaseException {
|
|
8
|
+
readonly name: "ConflictException";
|
|
9
|
+
readonly $fault: "client";
|
|
10
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
11
|
+
}
|
|
12
|
+
export interface CreateAccessPolicyRequest {
|
|
13
|
+
type: AccessPolicyType | string | undefined;
|
|
14
|
+
name: string | undefined;
|
|
15
|
+
description?: string;
|
|
16
|
+
policy: string | undefined;
|
|
17
|
+
clientToken?: string;
|
|
18
|
+
}
|
|
19
|
+
export interface AccessPolicyDetail {
|
|
20
|
+
type?: AccessPolicyType | string;
|
|
21
|
+
name?: string;
|
|
22
|
+
policyVersion?: string;
|
|
23
|
+
description?: string;
|
|
24
|
+
policy?: __DocumentType;
|
|
25
|
+
createdDate?: number;
|
|
26
|
+
lastModifiedDate?: number;
|
|
27
|
+
}
|
|
28
|
+
export interface CreateAccessPolicyResponse {
|
|
29
|
+
accessPolicyDetail?: AccessPolicyDetail;
|
|
30
|
+
}
|
|
31
|
+
export declare class InternalServerException extends __BaseException {
|
|
32
|
+
readonly name: "InternalServerException";
|
|
33
|
+
readonly $fault: "server";
|
|
34
|
+
constructor(
|
|
35
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
36
|
+
);
|
|
37
|
+
}
|
|
38
|
+
export declare class ValidationException extends __BaseException {
|
|
39
|
+
readonly name: "ValidationException";
|
|
40
|
+
readonly $fault: "client";
|
|
41
|
+
constructor(
|
|
42
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
43
|
+
);
|
|
44
|
+
}
|
|
45
|
+
export interface DeleteAccessPolicyRequest {
|
|
46
|
+
type: AccessPolicyType | string | undefined;
|
|
47
|
+
name: string | undefined;
|
|
48
|
+
clientToken?: string;
|
|
49
|
+
}
|
|
50
|
+
export interface DeleteAccessPolicyResponse {}
|
|
51
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
52
|
+
readonly name: "ResourceNotFoundException";
|
|
53
|
+
readonly $fault: "client";
|
|
54
|
+
constructor(
|
|
55
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
56
|
+
);
|
|
57
|
+
}
|
|
58
|
+
export interface GetAccessPolicyRequest {
|
|
59
|
+
type: AccessPolicyType | string | undefined;
|
|
60
|
+
name: string | undefined;
|
|
61
|
+
}
|
|
62
|
+
export interface GetAccessPolicyResponse {
|
|
63
|
+
accessPolicyDetail?: AccessPolicyDetail;
|
|
64
|
+
}
|
|
65
|
+
export interface ListAccessPoliciesRequest {
|
|
66
|
+
type: AccessPolicyType | string | undefined;
|
|
67
|
+
resource?: string[];
|
|
68
|
+
nextToken?: string;
|
|
69
|
+
maxResults?: number;
|
|
70
|
+
}
|
|
71
|
+
export interface AccessPolicySummary {
|
|
72
|
+
type?: AccessPolicyType | string;
|
|
73
|
+
name?: string;
|
|
74
|
+
policyVersion?: string;
|
|
75
|
+
description?: string;
|
|
76
|
+
createdDate?: number;
|
|
77
|
+
lastModifiedDate?: number;
|
|
78
|
+
}
|
|
79
|
+
export interface ListAccessPoliciesResponse {
|
|
80
|
+
accessPolicySummaries?: AccessPolicySummary[];
|
|
81
|
+
nextToken?: string;
|
|
82
|
+
}
|
|
83
|
+
export interface UpdateAccessPolicyRequest {
|
|
84
|
+
type: AccessPolicyType | string | undefined;
|
|
85
|
+
name: string | undefined;
|
|
86
|
+
policyVersion: string | undefined;
|
|
87
|
+
description?: string;
|
|
88
|
+
policy?: string;
|
|
89
|
+
clientToken?: string;
|
|
90
|
+
}
|
|
91
|
+
export interface UpdateAccessPolicyResponse {
|
|
92
|
+
accessPolicyDetail?: AccessPolicyDetail;
|
|
93
|
+
}
|
|
94
|
+
export interface AccessPolicyStats {
|
|
95
|
+
DataPolicyCount?: number;
|
|
96
|
+
}
|
|
97
|
+
export interface CapacityLimits {
|
|
98
|
+
maxIndexingCapacityInOCU?: number;
|
|
99
|
+
maxSearchCapacityInOCU?: number;
|
|
100
|
+
}
|
|
101
|
+
export interface AccountSettingsDetail {
|
|
102
|
+
capacityLimits?: CapacityLimits;
|
|
103
|
+
}
|
|
104
|
+
export interface BatchGetCollectionRequest {
|
|
105
|
+
ids?: string[];
|
|
106
|
+
names?: string[];
|
|
107
|
+
}
|
|
108
|
+
export declare enum CollectionStatus {
|
|
109
|
+
ACTIVE = "ACTIVE",
|
|
110
|
+
CREATING = "CREATING",
|
|
111
|
+
DELETING = "DELETING",
|
|
112
|
+
FAILED = "FAILED",
|
|
113
|
+
}
|
|
114
|
+
export declare enum CollectionType {
|
|
115
|
+
SEARCH = "SEARCH",
|
|
116
|
+
TIMESERIES = "TIMESERIES",
|
|
117
|
+
}
|
|
118
|
+
export interface CollectionDetail {
|
|
119
|
+
id?: string;
|
|
120
|
+
name?: string;
|
|
121
|
+
status?: CollectionStatus | string;
|
|
122
|
+
type?: CollectionType | string;
|
|
123
|
+
description?: string;
|
|
124
|
+
arn?: string;
|
|
125
|
+
kmsKeyArn?: string;
|
|
126
|
+
createdDate?: number;
|
|
127
|
+
lastModifiedDate?: number;
|
|
128
|
+
collectionEndpoint?: string;
|
|
129
|
+
dashboardEndpoint?: string;
|
|
130
|
+
}
|
|
131
|
+
export interface CollectionErrorDetail {
|
|
132
|
+
id?: string;
|
|
133
|
+
name?: string;
|
|
134
|
+
errorMessage?: string;
|
|
135
|
+
errorCode?: string;
|
|
136
|
+
}
|
|
137
|
+
export interface BatchGetCollectionResponse {
|
|
138
|
+
collectionDetails?: CollectionDetail[];
|
|
139
|
+
collectionErrorDetails?: CollectionErrorDetail[];
|
|
140
|
+
}
|
|
141
|
+
export interface BatchGetVpcEndpointRequest {
|
|
142
|
+
ids: string[] | undefined;
|
|
143
|
+
}
|
|
144
|
+
export declare enum VpcEndpointStatus {
|
|
145
|
+
ACTIVE = "ACTIVE",
|
|
146
|
+
DELETING = "DELETING",
|
|
147
|
+
FAILED = "FAILED",
|
|
148
|
+
PENDING = "PENDING",
|
|
149
|
+
}
|
|
150
|
+
export interface VpcEndpointDetail {
|
|
151
|
+
id?: string;
|
|
152
|
+
name?: string;
|
|
153
|
+
vpcId?: string;
|
|
154
|
+
subnetIds?: string[];
|
|
155
|
+
securityGroupIds?: string[];
|
|
156
|
+
status?: VpcEndpointStatus | string;
|
|
157
|
+
createdDate?: number;
|
|
158
|
+
}
|
|
159
|
+
export interface VpcEndpointErrorDetail {
|
|
160
|
+
id?: string;
|
|
161
|
+
errorMessage?: string;
|
|
162
|
+
errorCode?: string;
|
|
163
|
+
}
|
|
164
|
+
export interface BatchGetVpcEndpointResponse {
|
|
165
|
+
vpcEndpointDetails?: VpcEndpointDetail[];
|
|
166
|
+
vpcEndpointErrorDetails?: VpcEndpointErrorDetail[];
|
|
167
|
+
}
|
|
168
|
+
export interface Tag {
|
|
169
|
+
key: string | undefined;
|
|
170
|
+
value: string | undefined;
|
|
171
|
+
}
|
|
172
|
+
export interface CreateCollectionRequest {
|
|
173
|
+
name: string | undefined;
|
|
174
|
+
type?: CollectionType | string;
|
|
175
|
+
description?: string;
|
|
176
|
+
tags?: Tag[];
|
|
177
|
+
clientToken?: string;
|
|
178
|
+
}
|
|
179
|
+
export interface CreateCollectionDetail {
|
|
180
|
+
id?: string;
|
|
181
|
+
name?: string;
|
|
182
|
+
status?: CollectionStatus | string;
|
|
183
|
+
type?: CollectionType | string;
|
|
184
|
+
description?: string;
|
|
185
|
+
arn?: string;
|
|
186
|
+
kmsKeyArn?: string;
|
|
187
|
+
createdDate?: number;
|
|
188
|
+
lastModifiedDate?: number;
|
|
189
|
+
}
|
|
190
|
+
export interface CreateCollectionResponse {
|
|
191
|
+
createCollectionDetail?: CreateCollectionDetail;
|
|
192
|
+
}
|
|
193
|
+
export interface DeleteCollectionRequest {
|
|
194
|
+
id: string | undefined;
|
|
195
|
+
clientToken?: string;
|
|
196
|
+
}
|
|
197
|
+
export interface DeleteCollectionDetail {
|
|
198
|
+
id?: string;
|
|
199
|
+
name?: string;
|
|
200
|
+
status?: CollectionStatus | string;
|
|
201
|
+
}
|
|
202
|
+
export interface DeleteCollectionResponse {
|
|
203
|
+
deleteCollectionDetail?: DeleteCollectionDetail;
|
|
204
|
+
}
|
|
205
|
+
export interface CollectionFilters {
|
|
206
|
+
name?: string;
|
|
207
|
+
status?: CollectionStatus | string;
|
|
208
|
+
}
|
|
209
|
+
export interface ListCollectionsRequest {
|
|
210
|
+
collectionFilters?: CollectionFilters;
|
|
211
|
+
nextToken?: string;
|
|
212
|
+
maxResults?: number;
|
|
213
|
+
}
|
|
214
|
+
export interface CollectionSummary {
|
|
215
|
+
id?: string;
|
|
216
|
+
name?: string;
|
|
217
|
+
status?: CollectionStatus | string;
|
|
218
|
+
arn?: string;
|
|
219
|
+
}
|
|
220
|
+
export interface ListCollectionsResponse {
|
|
221
|
+
collectionSummaries?: CollectionSummary[];
|
|
222
|
+
nextToken?: string;
|
|
223
|
+
}
|
|
224
|
+
export interface UpdateCollectionRequest {
|
|
225
|
+
id: string | undefined;
|
|
226
|
+
description?: string;
|
|
227
|
+
clientToken?: string;
|
|
228
|
+
}
|
|
229
|
+
export interface UpdateCollectionDetail {
|
|
230
|
+
id?: string;
|
|
231
|
+
name?: string;
|
|
232
|
+
status?: CollectionStatus | string;
|
|
233
|
+
type?: CollectionType | string;
|
|
234
|
+
description?: string;
|
|
235
|
+
arn?: string;
|
|
236
|
+
createdDate?: number;
|
|
237
|
+
lastModifiedDate?: number;
|
|
238
|
+
}
|
|
239
|
+
export interface UpdateCollectionResponse {
|
|
240
|
+
updateCollectionDetail?: UpdateCollectionDetail;
|
|
241
|
+
}
|
|
242
|
+
export interface SamlConfigOptions {
|
|
243
|
+
metadata: string | undefined;
|
|
244
|
+
userAttribute?: string;
|
|
245
|
+
groupAttribute?: string;
|
|
246
|
+
sessionTimeout?: number;
|
|
247
|
+
}
|
|
248
|
+
export declare enum SecurityConfigType {
|
|
249
|
+
saml = "saml",
|
|
250
|
+
}
|
|
251
|
+
export interface CreateSecurityConfigRequest {
|
|
252
|
+
type: SecurityConfigType | string | undefined;
|
|
253
|
+
name: string | undefined;
|
|
254
|
+
description?: string;
|
|
255
|
+
samlOptions?: SamlConfigOptions;
|
|
256
|
+
clientToken?: string;
|
|
257
|
+
}
|
|
258
|
+
export interface SecurityConfigDetail {
|
|
259
|
+
id?: string;
|
|
260
|
+
type?: SecurityConfigType | string;
|
|
261
|
+
configVersion?: string;
|
|
262
|
+
description?: string;
|
|
263
|
+
samlOptions?: SamlConfigOptions;
|
|
264
|
+
createdDate?: number;
|
|
265
|
+
lastModifiedDate?: number;
|
|
266
|
+
}
|
|
267
|
+
export interface CreateSecurityConfigResponse {
|
|
268
|
+
securityConfigDetail?: SecurityConfigDetail;
|
|
269
|
+
}
|
|
270
|
+
export declare enum SecurityPolicyType {
|
|
271
|
+
encryption = "encryption",
|
|
272
|
+
network = "network",
|
|
273
|
+
}
|
|
274
|
+
export interface CreateSecurityPolicyRequest {
|
|
275
|
+
type: SecurityPolicyType | string | undefined;
|
|
276
|
+
name: string | undefined;
|
|
277
|
+
description?: string;
|
|
278
|
+
policy: string | undefined;
|
|
279
|
+
clientToken?: string;
|
|
280
|
+
}
|
|
281
|
+
export interface SecurityPolicyDetail {
|
|
282
|
+
type?: SecurityPolicyType | string;
|
|
283
|
+
name?: string;
|
|
284
|
+
policyVersion?: string;
|
|
285
|
+
description?: string;
|
|
286
|
+
policy?: __DocumentType;
|
|
287
|
+
createdDate?: number;
|
|
288
|
+
lastModifiedDate?: number;
|
|
289
|
+
}
|
|
290
|
+
export interface CreateSecurityPolicyResponse {
|
|
291
|
+
securityPolicyDetail?: SecurityPolicyDetail;
|
|
292
|
+
}
|
|
293
|
+
export interface CreateVpcEndpointRequest {
|
|
294
|
+
name: string | undefined;
|
|
295
|
+
vpcId: string | undefined;
|
|
296
|
+
subnetIds: string[] | undefined;
|
|
297
|
+
securityGroupIds?: string[];
|
|
298
|
+
clientToken?: string;
|
|
299
|
+
}
|
|
300
|
+
export interface CreateVpcEndpointDetail {
|
|
301
|
+
id?: string;
|
|
302
|
+
name?: string;
|
|
303
|
+
status?: VpcEndpointStatus | string;
|
|
304
|
+
}
|
|
305
|
+
export interface CreateVpcEndpointResponse {
|
|
306
|
+
createVpcEndpointDetail?: CreateVpcEndpointDetail;
|
|
307
|
+
}
|
|
308
|
+
export interface DeleteSecurityConfigRequest {
|
|
309
|
+
id: string | undefined;
|
|
310
|
+
clientToken?: string;
|
|
311
|
+
}
|
|
312
|
+
export interface DeleteSecurityConfigResponse {}
|
|
313
|
+
export interface DeleteSecurityPolicyRequest {
|
|
314
|
+
type: SecurityPolicyType | string | undefined;
|
|
315
|
+
name: string | undefined;
|
|
316
|
+
clientToken?: string;
|
|
317
|
+
}
|
|
318
|
+
export interface DeleteSecurityPolicyResponse {}
|
|
319
|
+
export interface DeleteVpcEndpointRequest {
|
|
320
|
+
id: string | undefined;
|
|
321
|
+
clientToken?: string;
|
|
322
|
+
}
|
|
323
|
+
export interface DeleteVpcEndpointDetail {
|
|
324
|
+
id?: string;
|
|
325
|
+
name?: string;
|
|
326
|
+
status?: VpcEndpointStatus | string;
|
|
327
|
+
}
|
|
328
|
+
export interface DeleteVpcEndpointResponse {
|
|
329
|
+
deleteVpcEndpointDetail?: DeleteVpcEndpointDetail;
|
|
330
|
+
}
|
|
331
|
+
export interface GetAccountSettingsRequest {}
|
|
332
|
+
export interface GetAccountSettingsResponse {
|
|
333
|
+
accountSettingsDetail?: AccountSettingsDetail;
|
|
334
|
+
}
|
|
335
|
+
export interface GetPoliciesStatsRequest {}
|
|
336
|
+
export interface SecurityConfigStats {
|
|
337
|
+
SamlConfigCount?: number;
|
|
338
|
+
}
|
|
339
|
+
export interface SecurityPolicyStats {
|
|
340
|
+
EncryptionPolicyCount?: number;
|
|
341
|
+
NetworkPolicyCount?: number;
|
|
342
|
+
}
|
|
343
|
+
export interface GetPoliciesStatsResponse {
|
|
344
|
+
AccessPolicyStats?: AccessPolicyStats;
|
|
345
|
+
SecurityPolicyStats?: SecurityPolicyStats;
|
|
346
|
+
SecurityConfigStats?: SecurityConfigStats;
|
|
347
|
+
TotalPolicyCount?: number;
|
|
348
|
+
}
|
|
349
|
+
export interface GetSecurityConfigRequest {
|
|
350
|
+
id: string | undefined;
|
|
351
|
+
}
|
|
352
|
+
export interface GetSecurityConfigResponse {
|
|
353
|
+
securityConfigDetail?: SecurityConfigDetail;
|
|
354
|
+
}
|
|
355
|
+
export interface GetSecurityPolicyRequest {
|
|
356
|
+
type: SecurityPolicyType | string | undefined;
|
|
357
|
+
name: string | undefined;
|
|
358
|
+
}
|
|
359
|
+
export interface GetSecurityPolicyResponse {
|
|
360
|
+
securityPolicyDetail?: SecurityPolicyDetail;
|
|
361
|
+
}
|
|
362
|
+
export interface ListSecurityConfigsRequest {
|
|
363
|
+
type: SecurityConfigType | string | undefined;
|
|
364
|
+
nextToken?: string;
|
|
365
|
+
maxResults?: number;
|
|
366
|
+
}
|
|
367
|
+
export interface SecurityConfigSummary {
|
|
368
|
+
id?: string;
|
|
369
|
+
type?: SecurityConfigType | string;
|
|
370
|
+
configVersion?: string;
|
|
371
|
+
description?: string;
|
|
372
|
+
createdDate?: number;
|
|
373
|
+
lastModifiedDate?: number;
|
|
374
|
+
}
|
|
375
|
+
export interface ListSecurityConfigsResponse {
|
|
376
|
+
securityConfigSummaries?: SecurityConfigSummary[];
|
|
377
|
+
nextToken?: string;
|
|
378
|
+
}
|
|
379
|
+
export interface ListSecurityPoliciesRequest {
|
|
380
|
+
type: SecurityPolicyType | string | undefined;
|
|
381
|
+
resource?: string[];
|
|
382
|
+
nextToken?: string;
|
|
383
|
+
maxResults?: number;
|
|
384
|
+
}
|
|
385
|
+
export interface SecurityPolicySummary {
|
|
386
|
+
type?: SecurityPolicyType | string;
|
|
387
|
+
name?: string;
|
|
388
|
+
policyVersion?: string;
|
|
389
|
+
description?: string;
|
|
390
|
+
createdDate?: number;
|
|
391
|
+
lastModifiedDate?: number;
|
|
392
|
+
}
|
|
393
|
+
export interface ListSecurityPoliciesResponse {
|
|
394
|
+
securityPolicySummaries?: SecurityPolicySummary[];
|
|
395
|
+
nextToken?: string;
|
|
396
|
+
}
|
|
397
|
+
export interface ListTagsForResourceRequest {
|
|
398
|
+
resourceArn: string | undefined;
|
|
399
|
+
}
|
|
400
|
+
export interface ListTagsForResourceResponse {
|
|
401
|
+
tags?: Tag[];
|
|
402
|
+
}
|
|
403
|
+
export interface VpcEndpointFilters {
|
|
404
|
+
status?: VpcEndpointStatus | string;
|
|
405
|
+
}
|
|
406
|
+
export interface ListVpcEndpointsRequest {
|
|
407
|
+
vpcEndpointFilters?: VpcEndpointFilters;
|
|
408
|
+
nextToken?: string;
|
|
409
|
+
maxResults?: number;
|
|
410
|
+
}
|
|
411
|
+
export interface VpcEndpointSummary {
|
|
412
|
+
id?: string;
|
|
413
|
+
name?: string;
|
|
414
|
+
status?: VpcEndpointStatus | string;
|
|
415
|
+
}
|
|
416
|
+
export interface ListVpcEndpointsResponse {
|
|
417
|
+
vpcEndpointSummaries?: VpcEndpointSummary[];
|
|
418
|
+
nextToken?: string;
|
|
419
|
+
}
|
|
420
|
+
export interface UpdateSecurityConfigRequest {
|
|
421
|
+
id: string | undefined;
|
|
422
|
+
configVersion: string | undefined;
|
|
423
|
+
description?: string;
|
|
424
|
+
samlOptions?: SamlConfigOptions;
|
|
425
|
+
clientToken?: string;
|
|
426
|
+
}
|
|
427
|
+
export interface UpdateSecurityConfigResponse {
|
|
428
|
+
securityConfigDetail?: SecurityConfigDetail;
|
|
429
|
+
}
|
|
430
|
+
export interface UpdateSecurityPolicyRequest {
|
|
431
|
+
type: SecurityPolicyType | string | undefined;
|
|
432
|
+
name: string | undefined;
|
|
433
|
+
policyVersion: string | undefined;
|
|
434
|
+
description?: string;
|
|
435
|
+
policy?: string;
|
|
436
|
+
clientToken?: string;
|
|
437
|
+
}
|
|
438
|
+
export interface UpdateSecurityPolicyResponse {
|
|
439
|
+
securityPolicyDetail?: SecurityPolicyDetail;
|
|
440
|
+
}
|
|
441
|
+
export interface TagResourceRequest {
|
|
442
|
+
resourceArn: string | undefined;
|
|
443
|
+
tags: Tag[] | undefined;
|
|
444
|
+
}
|
|
445
|
+
export interface TagResourceResponse {}
|
|
446
|
+
export interface UntagResourceRequest {
|
|
447
|
+
resourceArn: string | undefined;
|
|
448
|
+
tagKeys: string[] | undefined;
|
|
449
|
+
}
|
|
450
|
+
export interface UntagResourceResponse {}
|
|
451
|
+
export interface UpdateAccountSettingsRequest {
|
|
452
|
+
capacityLimits?: CapacityLimits;
|
|
453
|
+
}
|
|
454
|
+
export interface UpdateAccountSettingsResponse {
|
|
455
|
+
accountSettingsDetail?: AccountSettingsDetail;
|
|
456
|
+
}
|
|
457
|
+
export interface UpdateVpcEndpointRequest {
|
|
458
|
+
id: string | undefined;
|
|
459
|
+
addSubnetIds?: string[];
|
|
460
|
+
removeSubnetIds?: string[];
|
|
461
|
+
addSecurityGroupIds?: string[];
|
|
462
|
+
removeSecurityGroupIds?: string[];
|
|
463
|
+
clientToken?: string;
|
|
464
|
+
}
|
|
465
|
+
export interface UpdateVpcEndpointDetail {
|
|
466
|
+
id?: string;
|
|
467
|
+
name?: string;
|
|
468
|
+
status?: VpcEndpointStatus | string;
|
|
469
|
+
subnetIds?: string[];
|
|
470
|
+
securityGroupIds?: string[];
|
|
471
|
+
lastModifiedDate?: number;
|
|
472
|
+
}
|
|
473
|
+
export interface UpdateVpcEndpointResponse {
|
|
474
|
+
UpdateVpcEndpointDetail?: UpdateVpcEndpointDetail;
|
|
475
|
+
}
|
|
476
|
+
export declare const CreateAccessPolicyRequestFilterSensitiveLog: (
|
|
477
|
+
obj: CreateAccessPolicyRequest
|
|
478
|
+
) => any;
|
|
479
|
+
export declare const AccessPolicyDetailFilterSensitiveLog: (
|
|
480
|
+
obj: AccessPolicyDetail
|
|
481
|
+
) => any;
|
|
482
|
+
export declare const CreateAccessPolicyResponseFilterSensitiveLog: (
|
|
483
|
+
obj: CreateAccessPolicyResponse
|
|
484
|
+
) => any;
|
|
485
|
+
export declare const DeleteAccessPolicyRequestFilterSensitiveLog: (
|
|
486
|
+
obj: DeleteAccessPolicyRequest
|
|
487
|
+
) => any;
|
|
488
|
+
export declare const DeleteAccessPolicyResponseFilterSensitiveLog: (
|
|
489
|
+
obj: DeleteAccessPolicyResponse
|
|
490
|
+
) => any;
|
|
491
|
+
export declare const GetAccessPolicyRequestFilterSensitiveLog: (
|
|
492
|
+
obj: GetAccessPolicyRequest
|
|
493
|
+
) => any;
|
|
494
|
+
export declare const GetAccessPolicyResponseFilterSensitiveLog: (
|
|
495
|
+
obj: GetAccessPolicyResponse
|
|
496
|
+
) => any;
|
|
497
|
+
export declare const ListAccessPoliciesRequestFilterSensitiveLog: (
|
|
498
|
+
obj: ListAccessPoliciesRequest
|
|
499
|
+
) => any;
|
|
500
|
+
export declare const AccessPolicySummaryFilterSensitiveLog: (
|
|
501
|
+
obj: AccessPolicySummary
|
|
502
|
+
) => any;
|
|
503
|
+
export declare const ListAccessPoliciesResponseFilterSensitiveLog: (
|
|
504
|
+
obj: ListAccessPoliciesResponse
|
|
505
|
+
) => any;
|
|
506
|
+
export declare const UpdateAccessPolicyRequestFilterSensitiveLog: (
|
|
507
|
+
obj: UpdateAccessPolicyRequest
|
|
508
|
+
) => any;
|
|
509
|
+
export declare const UpdateAccessPolicyResponseFilterSensitiveLog: (
|
|
510
|
+
obj: UpdateAccessPolicyResponse
|
|
511
|
+
) => any;
|
|
512
|
+
export declare const AccessPolicyStatsFilterSensitiveLog: (
|
|
513
|
+
obj: AccessPolicyStats
|
|
514
|
+
) => any;
|
|
515
|
+
export declare const CapacityLimitsFilterSensitiveLog: (
|
|
516
|
+
obj: CapacityLimits
|
|
517
|
+
) => any;
|
|
518
|
+
export declare const AccountSettingsDetailFilterSensitiveLog: (
|
|
519
|
+
obj: AccountSettingsDetail
|
|
520
|
+
) => any;
|
|
521
|
+
export declare const BatchGetCollectionRequestFilterSensitiveLog: (
|
|
522
|
+
obj: BatchGetCollectionRequest
|
|
523
|
+
) => any;
|
|
524
|
+
export declare const CollectionDetailFilterSensitiveLog: (
|
|
525
|
+
obj: CollectionDetail
|
|
526
|
+
) => any;
|
|
527
|
+
export declare const CollectionErrorDetailFilterSensitiveLog: (
|
|
528
|
+
obj: CollectionErrorDetail
|
|
529
|
+
) => any;
|
|
530
|
+
export declare const BatchGetCollectionResponseFilterSensitiveLog: (
|
|
531
|
+
obj: BatchGetCollectionResponse
|
|
532
|
+
) => any;
|
|
533
|
+
export declare const BatchGetVpcEndpointRequestFilterSensitiveLog: (
|
|
534
|
+
obj: BatchGetVpcEndpointRequest
|
|
535
|
+
) => any;
|
|
536
|
+
export declare const VpcEndpointDetailFilterSensitiveLog: (
|
|
537
|
+
obj: VpcEndpointDetail
|
|
538
|
+
) => any;
|
|
539
|
+
export declare const VpcEndpointErrorDetailFilterSensitiveLog: (
|
|
540
|
+
obj: VpcEndpointErrorDetail
|
|
541
|
+
) => any;
|
|
542
|
+
export declare const BatchGetVpcEndpointResponseFilterSensitiveLog: (
|
|
543
|
+
obj: BatchGetVpcEndpointResponse
|
|
544
|
+
) => any;
|
|
545
|
+
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
546
|
+
export declare const CreateCollectionRequestFilterSensitiveLog: (
|
|
547
|
+
obj: CreateCollectionRequest
|
|
548
|
+
) => any;
|
|
549
|
+
export declare const CreateCollectionDetailFilterSensitiveLog: (
|
|
550
|
+
obj: CreateCollectionDetail
|
|
551
|
+
) => any;
|
|
552
|
+
export declare const CreateCollectionResponseFilterSensitiveLog: (
|
|
553
|
+
obj: CreateCollectionResponse
|
|
554
|
+
) => any;
|
|
555
|
+
export declare const DeleteCollectionRequestFilterSensitiveLog: (
|
|
556
|
+
obj: DeleteCollectionRequest
|
|
557
|
+
) => any;
|
|
558
|
+
export declare const DeleteCollectionDetailFilterSensitiveLog: (
|
|
559
|
+
obj: DeleteCollectionDetail
|
|
560
|
+
) => any;
|
|
561
|
+
export declare const DeleteCollectionResponseFilterSensitiveLog: (
|
|
562
|
+
obj: DeleteCollectionResponse
|
|
563
|
+
) => any;
|
|
564
|
+
export declare const CollectionFiltersFilterSensitiveLog: (
|
|
565
|
+
obj: CollectionFilters
|
|
566
|
+
) => any;
|
|
567
|
+
export declare const ListCollectionsRequestFilterSensitiveLog: (
|
|
568
|
+
obj: ListCollectionsRequest
|
|
569
|
+
) => any;
|
|
570
|
+
export declare const CollectionSummaryFilterSensitiveLog: (
|
|
571
|
+
obj: CollectionSummary
|
|
572
|
+
) => any;
|
|
573
|
+
export declare const ListCollectionsResponseFilterSensitiveLog: (
|
|
574
|
+
obj: ListCollectionsResponse
|
|
575
|
+
) => any;
|
|
576
|
+
export declare const UpdateCollectionRequestFilterSensitiveLog: (
|
|
577
|
+
obj: UpdateCollectionRequest
|
|
578
|
+
) => any;
|
|
579
|
+
export declare const UpdateCollectionDetailFilterSensitiveLog: (
|
|
580
|
+
obj: UpdateCollectionDetail
|
|
581
|
+
) => any;
|
|
582
|
+
export declare const UpdateCollectionResponseFilterSensitiveLog: (
|
|
583
|
+
obj: UpdateCollectionResponse
|
|
584
|
+
) => any;
|
|
585
|
+
export declare const SamlConfigOptionsFilterSensitiveLog: (
|
|
586
|
+
obj: SamlConfigOptions
|
|
587
|
+
) => any;
|
|
588
|
+
export declare const CreateSecurityConfigRequestFilterSensitiveLog: (
|
|
589
|
+
obj: CreateSecurityConfigRequest
|
|
590
|
+
) => any;
|
|
591
|
+
export declare const SecurityConfigDetailFilterSensitiveLog: (
|
|
592
|
+
obj: SecurityConfigDetail
|
|
593
|
+
) => any;
|
|
594
|
+
export declare const CreateSecurityConfigResponseFilterSensitiveLog: (
|
|
595
|
+
obj: CreateSecurityConfigResponse
|
|
596
|
+
) => any;
|
|
597
|
+
export declare const CreateSecurityPolicyRequestFilterSensitiveLog: (
|
|
598
|
+
obj: CreateSecurityPolicyRequest
|
|
599
|
+
) => any;
|
|
600
|
+
export declare const SecurityPolicyDetailFilterSensitiveLog: (
|
|
601
|
+
obj: SecurityPolicyDetail
|
|
602
|
+
) => any;
|
|
603
|
+
export declare const CreateSecurityPolicyResponseFilterSensitiveLog: (
|
|
604
|
+
obj: CreateSecurityPolicyResponse
|
|
605
|
+
) => any;
|
|
606
|
+
export declare const CreateVpcEndpointRequestFilterSensitiveLog: (
|
|
607
|
+
obj: CreateVpcEndpointRequest
|
|
608
|
+
) => any;
|
|
609
|
+
export declare const CreateVpcEndpointDetailFilterSensitiveLog: (
|
|
610
|
+
obj: CreateVpcEndpointDetail
|
|
611
|
+
) => any;
|
|
612
|
+
export declare const CreateVpcEndpointResponseFilterSensitiveLog: (
|
|
613
|
+
obj: CreateVpcEndpointResponse
|
|
614
|
+
) => any;
|
|
615
|
+
export declare const DeleteSecurityConfigRequestFilterSensitiveLog: (
|
|
616
|
+
obj: DeleteSecurityConfigRequest
|
|
617
|
+
) => any;
|
|
618
|
+
export declare const DeleteSecurityConfigResponseFilterSensitiveLog: (
|
|
619
|
+
obj: DeleteSecurityConfigResponse
|
|
620
|
+
) => any;
|
|
621
|
+
export declare const DeleteSecurityPolicyRequestFilterSensitiveLog: (
|
|
622
|
+
obj: DeleteSecurityPolicyRequest
|
|
623
|
+
) => any;
|
|
624
|
+
export declare const DeleteSecurityPolicyResponseFilterSensitiveLog: (
|
|
625
|
+
obj: DeleteSecurityPolicyResponse
|
|
626
|
+
) => any;
|
|
627
|
+
export declare const DeleteVpcEndpointRequestFilterSensitiveLog: (
|
|
628
|
+
obj: DeleteVpcEndpointRequest
|
|
629
|
+
) => any;
|
|
630
|
+
export declare const DeleteVpcEndpointDetailFilterSensitiveLog: (
|
|
631
|
+
obj: DeleteVpcEndpointDetail
|
|
632
|
+
) => any;
|
|
633
|
+
export declare const DeleteVpcEndpointResponseFilterSensitiveLog: (
|
|
634
|
+
obj: DeleteVpcEndpointResponse
|
|
635
|
+
) => any;
|
|
636
|
+
export declare const GetAccountSettingsRequestFilterSensitiveLog: (
|
|
637
|
+
obj: GetAccountSettingsRequest
|
|
638
|
+
) => any;
|
|
639
|
+
export declare const GetAccountSettingsResponseFilterSensitiveLog: (
|
|
640
|
+
obj: GetAccountSettingsResponse
|
|
641
|
+
) => any;
|
|
642
|
+
export declare const GetPoliciesStatsRequestFilterSensitiveLog: (
|
|
643
|
+
obj: GetPoliciesStatsRequest
|
|
644
|
+
) => any;
|
|
645
|
+
export declare const SecurityConfigStatsFilterSensitiveLog: (
|
|
646
|
+
obj: SecurityConfigStats
|
|
647
|
+
) => any;
|
|
648
|
+
export declare const SecurityPolicyStatsFilterSensitiveLog: (
|
|
649
|
+
obj: SecurityPolicyStats
|
|
650
|
+
) => any;
|
|
651
|
+
export declare const GetPoliciesStatsResponseFilterSensitiveLog: (
|
|
652
|
+
obj: GetPoliciesStatsResponse
|
|
653
|
+
) => any;
|
|
654
|
+
export declare const GetSecurityConfigRequestFilterSensitiveLog: (
|
|
655
|
+
obj: GetSecurityConfigRequest
|
|
656
|
+
) => any;
|
|
657
|
+
export declare const GetSecurityConfigResponseFilterSensitiveLog: (
|
|
658
|
+
obj: GetSecurityConfigResponse
|
|
659
|
+
) => any;
|
|
660
|
+
export declare const GetSecurityPolicyRequestFilterSensitiveLog: (
|
|
661
|
+
obj: GetSecurityPolicyRequest
|
|
662
|
+
) => any;
|
|
663
|
+
export declare const GetSecurityPolicyResponseFilterSensitiveLog: (
|
|
664
|
+
obj: GetSecurityPolicyResponse
|
|
665
|
+
) => any;
|
|
666
|
+
export declare const ListSecurityConfigsRequestFilterSensitiveLog: (
|
|
667
|
+
obj: ListSecurityConfigsRequest
|
|
668
|
+
) => any;
|
|
669
|
+
export declare const SecurityConfigSummaryFilterSensitiveLog: (
|
|
670
|
+
obj: SecurityConfigSummary
|
|
671
|
+
) => any;
|
|
672
|
+
export declare const ListSecurityConfigsResponseFilterSensitiveLog: (
|
|
673
|
+
obj: ListSecurityConfigsResponse
|
|
674
|
+
) => any;
|
|
675
|
+
export declare const ListSecurityPoliciesRequestFilterSensitiveLog: (
|
|
676
|
+
obj: ListSecurityPoliciesRequest
|
|
677
|
+
) => any;
|
|
678
|
+
export declare const SecurityPolicySummaryFilterSensitiveLog: (
|
|
679
|
+
obj: SecurityPolicySummary
|
|
680
|
+
) => any;
|
|
681
|
+
export declare const ListSecurityPoliciesResponseFilterSensitiveLog: (
|
|
682
|
+
obj: ListSecurityPoliciesResponse
|
|
683
|
+
) => any;
|
|
684
|
+
export declare const ListTagsForResourceRequestFilterSensitiveLog: (
|
|
685
|
+
obj: ListTagsForResourceRequest
|
|
686
|
+
) => any;
|
|
687
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
688
|
+
obj: ListTagsForResourceResponse
|
|
689
|
+
) => any;
|
|
690
|
+
export declare const VpcEndpointFiltersFilterSensitiveLog: (
|
|
691
|
+
obj: VpcEndpointFilters
|
|
692
|
+
) => any;
|
|
693
|
+
export declare const ListVpcEndpointsRequestFilterSensitiveLog: (
|
|
694
|
+
obj: ListVpcEndpointsRequest
|
|
695
|
+
) => any;
|
|
696
|
+
export declare const VpcEndpointSummaryFilterSensitiveLog: (
|
|
697
|
+
obj: VpcEndpointSummary
|
|
698
|
+
) => any;
|
|
699
|
+
export declare const ListVpcEndpointsResponseFilterSensitiveLog: (
|
|
700
|
+
obj: ListVpcEndpointsResponse
|
|
701
|
+
) => any;
|
|
702
|
+
export declare const UpdateSecurityConfigRequestFilterSensitiveLog: (
|
|
703
|
+
obj: UpdateSecurityConfigRequest
|
|
704
|
+
) => any;
|
|
705
|
+
export declare const UpdateSecurityConfigResponseFilterSensitiveLog: (
|
|
706
|
+
obj: UpdateSecurityConfigResponse
|
|
707
|
+
) => any;
|
|
708
|
+
export declare const UpdateSecurityPolicyRequestFilterSensitiveLog: (
|
|
709
|
+
obj: UpdateSecurityPolicyRequest
|
|
710
|
+
) => any;
|
|
711
|
+
export declare const UpdateSecurityPolicyResponseFilterSensitiveLog: (
|
|
712
|
+
obj: UpdateSecurityPolicyResponse
|
|
713
|
+
) => any;
|
|
714
|
+
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
715
|
+
obj: TagResourceRequest
|
|
716
|
+
) => any;
|
|
717
|
+
export declare const TagResourceResponseFilterSensitiveLog: (
|
|
718
|
+
obj: TagResourceResponse
|
|
719
|
+
) => any;
|
|
720
|
+
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
721
|
+
obj: UntagResourceRequest
|
|
722
|
+
) => any;
|
|
723
|
+
export declare const UntagResourceResponseFilterSensitiveLog: (
|
|
724
|
+
obj: UntagResourceResponse
|
|
725
|
+
) => any;
|
|
726
|
+
export declare const UpdateAccountSettingsRequestFilterSensitiveLog: (
|
|
727
|
+
obj: UpdateAccountSettingsRequest
|
|
728
|
+
) => any;
|
|
729
|
+
export declare const UpdateAccountSettingsResponseFilterSensitiveLog: (
|
|
730
|
+
obj: UpdateAccountSettingsResponse
|
|
731
|
+
) => any;
|
|
732
|
+
export declare const UpdateVpcEndpointRequestFilterSensitiveLog: (
|
|
733
|
+
obj: UpdateVpcEndpointRequest
|
|
734
|
+
) => any;
|
|
735
|
+
export declare const UpdateVpcEndpointDetailFilterSensitiveLog: (
|
|
736
|
+
obj: UpdateVpcEndpointDetail
|
|
737
|
+
) => any;
|
|
738
|
+
export declare const UpdateVpcEndpointResponseFilterSensitiveLog: (
|
|
739
|
+
obj: UpdateVpcEndpointResponse
|
|
740
|
+
) => any;
|