@aws-sdk/client-verifiedpermissions 3.926.0 → 3.928.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/dist-cjs/index.js +1739 -2225
- package/dist-cjs/runtimeConfig.shared.js +7 -0
- package/dist-es/VerifiedPermissionsClient.js +2 -0
- package/dist-es/commands/BatchGetPolicyCommand.js +3 -10
- package/dist-es/commands/BatchIsAuthorizedCommand.js +3 -10
- package/dist-es/commands/BatchIsAuthorizedWithTokenCommand.js +3 -10
- package/dist-es/commands/CreateIdentitySourceCommand.js +3 -10
- package/dist-es/commands/CreatePolicyCommand.js +3 -10
- package/dist-es/commands/CreatePolicyStoreCommand.js +3 -10
- package/dist-es/commands/CreatePolicyTemplateCommand.js +3 -10
- package/dist-es/commands/DeleteIdentitySourceCommand.js +3 -9
- package/dist-es/commands/DeletePolicyCommand.js +3 -9
- package/dist-es/commands/DeletePolicyStoreCommand.js +3 -9
- package/dist-es/commands/DeletePolicyTemplateCommand.js +3 -9
- package/dist-es/commands/GetIdentitySourceCommand.js +3 -10
- package/dist-es/commands/GetPolicyCommand.js +3 -10
- package/dist-es/commands/GetPolicyStoreCommand.js +3 -10
- package/dist-es/commands/GetPolicyTemplateCommand.js +3 -10
- package/dist-es/commands/GetSchemaCommand.js +3 -10
- package/dist-es/commands/IsAuthorizedCommand.js +3 -10
- package/dist-es/commands/IsAuthorizedWithTokenCommand.js +3 -10
- package/dist-es/commands/ListIdentitySourcesCommand.js +3 -10
- package/dist-es/commands/ListPoliciesCommand.js +3 -10
- package/dist-es/commands/ListPolicyStoresCommand.js +3 -10
- package/dist-es/commands/ListPolicyTemplatesCommand.js +3 -10
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/PutSchemaCommand.js +3 -10
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateIdentitySourceCommand.js +3 -10
- package/dist-es/commands/UpdatePolicyCommand.js +3 -10
- package/dist-es/commands/UpdatePolicyStoreCommand.js +3 -10
- package/dist-es/commands/UpdatePolicyTemplateCommand.js +3 -10
- package/dist-es/models/models_0.js +26 -593
- package/dist-es/runtimeConfig.shared.js +7 -0
- package/dist-es/schemas/schemas_0.js +1628 -0
- package/dist-types/VerifiedPermissionsClient.d.ts +10 -1
- package/dist-types/commands/BatchIsAuthorizedCommand.d.ts +33 -0
- package/dist-types/commands/BatchIsAuthorizedWithTokenCommand.d.ts +33 -0
- package/dist-types/commands/IsAuthorizedCommand.d.ts +33 -0
- package/dist-types/commands/IsAuthorizedWithTokenCommand.d.ts +33 -0
- package/dist-types/models/models_0.d.ts +268 -441
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +229 -0
- package/dist-types/ts3.4/VerifiedPermissionsClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +184 -297
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +236 -0
- package/package.json +5 -6
- package/dist-es/protocols/Aws_json1_0.js +0 -1303
- package/dist-types/protocols/Aws_json1_0.d.ts +0 -272
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +0 -365
|
@@ -1187,6 +1187,177 @@ export declare namespace AttributeValue {
|
|
|
1187
1187
|
}
|
|
1188
1188
|
const visit: <T>(value: AttributeValue, visitor: Visitor<T>) => T;
|
|
1189
1189
|
}
|
|
1190
|
+
export type CedarTagValue =
|
|
1191
|
+
| CedarTagValue.BooleanMember
|
|
1192
|
+
| CedarTagValue.DatetimeMember
|
|
1193
|
+
| CedarTagValue.DecimalMember
|
|
1194
|
+
| CedarTagValue.DurationMember
|
|
1195
|
+
| CedarTagValue.EntityIdentifierMember
|
|
1196
|
+
| CedarTagValue.IpaddrMember
|
|
1197
|
+
| CedarTagValue.LongMember
|
|
1198
|
+
| CedarTagValue.RecordMember
|
|
1199
|
+
| CedarTagValue.SetMember
|
|
1200
|
+
| CedarTagValue.StringMember
|
|
1201
|
+
| CedarTagValue.$UnknownMember;
|
|
1202
|
+
export declare namespace CedarTagValue {
|
|
1203
|
+
interface BooleanMember {
|
|
1204
|
+
boolean: boolean;
|
|
1205
|
+
entityIdentifier?: never;
|
|
1206
|
+
long?: never;
|
|
1207
|
+
string?: never;
|
|
1208
|
+
set?: never;
|
|
1209
|
+
record?: never;
|
|
1210
|
+
ipaddr?: never;
|
|
1211
|
+
decimal?: never;
|
|
1212
|
+
datetime?: never;
|
|
1213
|
+
duration?: never;
|
|
1214
|
+
$unknown?: never;
|
|
1215
|
+
}
|
|
1216
|
+
interface EntityIdentifierMember {
|
|
1217
|
+
boolean?: never;
|
|
1218
|
+
entityIdentifier: EntityIdentifier;
|
|
1219
|
+
long?: never;
|
|
1220
|
+
string?: never;
|
|
1221
|
+
set?: never;
|
|
1222
|
+
record?: never;
|
|
1223
|
+
ipaddr?: never;
|
|
1224
|
+
decimal?: never;
|
|
1225
|
+
datetime?: never;
|
|
1226
|
+
duration?: never;
|
|
1227
|
+
$unknown?: never;
|
|
1228
|
+
}
|
|
1229
|
+
interface LongMember {
|
|
1230
|
+
boolean?: never;
|
|
1231
|
+
entityIdentifier?: never;
|
|
1232
|
+
long: number;
|
|
1233
|
+
string?: never;
|
|
1234
|
+
set?: never;
|
|
1235
|
+
record?: never;
|
|
1236
|
+
ipaddr?: never;
|
|
1237
|
+
decimal?: never;
|
|
1238
|
+
datetime?: never;
|
|
1239
|
+
duration?: never;
|
|
1240
|
+
$unknown?: never;
|
|
1241
|
+
}
|
|
1242
|
+
interface StringMember {
|
|
1243
|
+
boolean?: never;
|
|
1244
|
+
entityIdentifier?: never;
|
|
1245
|
+
long?: never;
|
|
1246
|
+
string: string;
|
|
1247
|
+
set?: never;
|
|
1248
|
+
record?: never;
|
|
1249
|
+
ipaddr?: never;
|
|
1250
|
+
decimal?: never;
|
|
1251
|
+
datetime?: never;
|
|
1252
|
+
duration?: never;
|
|
1253
|
+
$unknown?: never;
|
|
1254
|
+
}
|
|
1255
|
+
interface SetMember {
|
|
1256
|
+
boolean?: never;
|
|
1257
|
+
entityIdentifier?: never;
|
|
1258
|
+
long?: never;
|
|
1259
|
+
string?: never;
|
|
1260
|
+
set: CedarTagValue[];
|
|
1261
|
+
record?: never;
|
|
1262
|
+
ipaddr?: never;
|
|
1263
|
+
decimal?: never;
|
|
1264
|
+
datetime?: never;
|
|
1265
|
+
duration?: never;
|
|
1266
|
+
$unknown?: never;
|
|
1267
|
+
}
|
|
1268
|
+
interface RecordMember {
|
|
1269
|
+
boolean?: never;
|
|
1270
|
+
entityIdentifier?: never;
|
|
1271
|
+
long?: never;
|
|
1272
|
+
string?: never;
|
|
1273
|
+
set?: never;
|
|
1274
|
+
record: Record<string, CedarTagValue>;
|
|
1275
|
+
ipaddr?: never;
|
|
1276
|
+
decimal?: never;
|
|
1277
|
+
datetime?: never;
|
|
1278
|
+
duration?: never;
|
|
1279
|
+
$unknown?: never;
|
|
1280
|
+
}
|
|
1281
|
+
interface IpaddrMember {
|
|
1282
|
+
boolean?: never;
|
|
1283
|
+
entityIdentifier?: never;
|
|
1284
|
+
long?: never;
|
|
1285
|
+
string?: never;
|
|
1286
|
+
set?: never;
|
|
1287
|
+
record?: never;
|
|
1288
|
+
ipaddr: string;
|
|
1289
|
+
decimal?: never;
|
|
1290
|
+
datetime?: never;
|
|
1291
|
+
duration?: never;
|
|
1292
|
+
$unknown?: never;
|
|
1293
|
+
}
|
|
1294
|
+
interface DecimalMember {
|
|
1295
|
+
boolean?: never;
|
|
1296
|
+
entityIdentifier?: never;
|
|
1297
|
+
long?: never;
|
|
1298
|
+
string?: never;
|
|
1299
|
+
set?: never;
|
|
1300
|
+
record?: never;
|
|
1301
|
+
ipaddr?: never;
|
|
1302
|
+
decimal: string;
|
|
1303
|
+
datetime?: never;
|
|
1304
|
+
duration?: never;
|
|
1305
|
+
$unknown?: never;
|
|
1306
|
+
}
|
|
1307
|
+
interface DatetimeMember {
|
|
1308
|
+
boolean?: never;
|
|
1309
|
+
entityIdentifier?: never;
|
|
1310
|
+
long?: never;
|
|
1311
|
+
string?: never;
|
|
1312
|
+
set?: never;
|
|
1313
|
+
record?: never;
|
|
1314
|
+
ipaddr?: never;
|
|
1315
|
+
decimal?: never;
|
|
1316
|
+
datetime: string;
|
|
1317
|
+
duration?: never;
|
|
1318
|
+
$unknown?: never;
|
|
1319
|
+
}
|
|
1320
|
+
interface DurationMember {
|
|
1321
|
+
boolean?: never;
|
|
1322
|
+
entityIdentifier?: never;
|
|
1323
|
+
long?: never;
|
|
1324
|
+
string?: never;
|
|
1325
|
+
set?: never;
|
|
1326
|
+
record?: never;
|
|
1327
|
+
ipaddr?: never;
|
|
1328
|
+
decimal?: never;
|
|
1329
|
+
datetime?: never;
|
|
1330
|
+
duration: string;
|
|
1331
|
+
$unknown?: never;
|
|
1332
|
+
}
|
|
1333
|
+
interface $UnknownMember {
|
|
1334
|
+
boolean?: never;
|
|
1335
|
+
entityIdentifier?: never;
|
|
1336
|
+
long?: never;
|
|
1337
|
+
string?: never;
|
|
1338
|
+
set?: never;
|
|
1339
|
+
record?: never;
|
|
1340
|
+
ipaddr?: never;
|
|
1341
|
+
decimal?: never;
|
|
1342
|
+
datetime?: never;
|
|
1343
|
+
duration?: never;
|
|
1344
|
+
$unknown: [string, any];
|
|
1345
|
+
}
|
|
1346
|
+
interface Visitor<T> {
|
|
1347
|
+
boolean: (value: boolean) => T;
|
|
1348
|
+
entityIdentifier: (value: EntityIdentifier) => T;
|
|
1349
|
+
long: (value: number) => T;
|
|
1350
|
+
string: (value: string) => T;
|
|
1351
|
+
set: (value: CedarTagValue[]) => T;
|
|
1352
|
+
record: (value: Record<string, CedarTagValue>) => T;
|
|
1353
|
+
ipaddr: (value: string) => T;
|
|
1354
|
+
decimal: (value: string) => T;
|
|
1355
|
+
datetime: (value: string) => T;
|
|
1356
|
+
duration: (value: string) => T;
|
|
1357
|
+
_: (name: string, value: any) => T;
|
|
1358
|
+
}
|
|
1359
|
+
const visit: <T>(value: CedarTagValue, visitor: Visitor<T>) => T;
|
|
1360
|
+
}
|
|
1190
1361
|
export type ContextDefinition =
|
|
1191
1362
|
| ContextDefinition.CedarJsonMember
|
|
1192
1363
|
| ContextDefinition.ContextMapMember
|
|
@@ -1214,11 +1385,6 @@ export declare namespace ContextDefinition {
|
|
|
1214
1385
|
}
|
|
1215
1386
|
const visit: <T>(value: ContextDefinition, visitor: Visitor<T>) => T;
|
|
1216
1387
|
}
|
|
1217
|
-
export interface EntityItem {
|
|
1218
|
-
identifier: EntityIdentifier | undefined;
|
|
1219
|
-
attributes?: Record<string, AttributeValue> | undefined;
|
|
1220
|
-
parents?: EntityIdentifier[] | undefined;
|
|
1221
|
-
}
|
|
1222
1388
|
export interface BatchIsAuthorizedInputItem {
|
|
1223
1389
|
principal?: EntityIdentifier | undefined;
|
|
1224
1390
|
action?: ActionIdentifier | undefined;
|
|
@@ -1242,6 +1408,19 @@ export interface BatchIsAuthorizedWithTokenOutputItem {
|
|
|
1242
1408
|
determiningPolicies: DeterminingPolicyItem[] | undefined;
|
|
1243
1409
|
errors: EvaluationErrorItem[] | undefined;
|
|
1244
1410
|
}
|
|
1411
|
+
export interface BatchIsAuthorizedOutput {
|
|
1412
|
+
results: BatchIsAuthorizedOutputItem[] | undefined;
|
|
1413
|
+
}
|
|
1414
|
+
export interface BatchIsAuthorizedWithTokenOutput {
|
|
1415
|
+
principal?: EntityIdentifier | undefined;
|
|
1416
|
+
results: BatchIsAuthorizedWithTokenOutputItem[] | undefined;
|
|
1417
|
+
}
|
|
1418
|
+
export interface EntityItem {
|
|
1419
|
+
identifier: EntityIdentifier | undefined;
|
|
1420
|
+
attributes?: Record<string, AttributeValue> | undefined;
|
|
1421
|
+
parents?: EntityIdentifier[] | undefined;
|
|
1422
|
+
tags?: Record<string, CedarTagValue> | undefined;
|
|
1423
|
+
}
|
|
1245
1424
|
export type EntitiesDefinition =
|
|
1246
1425
|
| EntitiesDefinition.CedarJsonMember
|
|
1247
1426
|
| EntitiesDefinition.EntityListMember
|
|
@@ -1269,13 +1448,6 @@ export declare namespace EntitiesDefinition {
|
|
|
1269
1448
|
}
|
|
1270
1449
|
const visit: <T>(value: EntitiesDefinition, visitor: Visitor<T>) => T;
|
|
1271
1450
|
}
|
|
1272
|
-
export interface BatchIsAuthorizedOutput {
|
|
1273
|
-
results: BatchIsAuthorizedOutputItem[] | undefined;
|
|
1274
|
-
}
|
|
1275
|
-
export interface BatchIsAuthorizedWithTokenOutput {
|
|
1276
|
-
principal?: EntityIdentifier | undefined;
|
|
1277
|
-
results: BatchIsAuthorizedWithTokenOutputItem[] | undefined;
|
|
1278
|
-
}
|
|
1279
1451
|
export interface IsAuthorizedInput {
|
|
1280
1452
|
policyStoreId: string | undefined;
|
|
1281
1453
|
principal?: EntityIdentifier | undefined;
|
|
@@ -1305,288 +1477,3 @@ export interface BatchIsAuthorizedWithTokenInput {
|
|
|
1305
1477
|
entities?: EntitiesDefinition | undefined;
|
|
1306
1478
|
requests: BatchIsAuthorizedWithTokenInputItem[] | undefined;
|
|
1307
1479
|
}
|
|
1308
|
-
export declare const ActionIdentifierFilterSensitiveLog: (
|
|
1309
|
-
obj: ActionIdentifier
|
|
1310
|
-
) => any;
|
|
1311
|
-
export declare const EntityIdentifierFilterSensitiveLog: (
|
|
1312
|
-
obj: EntityIdentifier
|
|
1313
|
-
) => any;
|
|
1314
|
-
export declare const StaticPolicyDefinitionDetailFilterSensitiveLog: (
|
|
1315
|
-
obj: StaticPolicyDefinitionDetail
|
|
1316
|
-
) => any;
|
|
1317
|
-
export declare const TemplateLinkedPolicyDefinitionDetailFilterSensitiveLog: (
|
|
1318
|
-
obj: TemplateLinkedPolicyDefinitionDetail
|
|
1319
|
-
) => any;
|
|
1320
|
-
export declare const PolicyDefinitionDetailFilterSensitiveLog: (
|
|
1321
|
-
obj: PolicyDefinitionDetail
|
|
1322
|
-
) => any;
|
|
1323
|
-
export declare const BatchGetPolicyOutputItemFilterSensitiveLog: (
|
|
1324
|
-
obj: BatchGetPolicyOutputItem
|
|
1325
|
-
) => any;
|
|
1326
|
-
export declare const BatchGetPolicyOutputFilterSensitiveLog: (
|
|
1327
|
-
obj: BatchGetPolicyOutput
|
|
1328
|
-
) => any;
|
|
1329
|
-
export declare const EvaluationErrorItemFilterSensitiveLog: (
|
|
1330
|
-
obj: EvaluationErrorItem
|
|
1331
|
-
) => any;
|
|
1332
|
-
export declare const CognitoGroupConfigurationFilterSensitiveLog: (
|
|
1333
|
-
obj: CognitoGroupConfiguration
|
|
1334
|
-
) => any;
|
|
1335
|
-
export declare const CognitoGroupConfigurationDetailFilterSensitiveLog: (
|
|
1336
|
-
obj: CognitoGroupConfigurationDetail
|
|
1337
|
-
) => any;
|
|
1338
|
-
export declare const CognitoGroupConfigurationItemFilterSensitiveLog: (
|
|
1339
|
-
obj: CognitoGroupConfigurationItem
|
|
1340
|
-
) => any;
|
|
1341
|
-
export declare const CognitoUserPoolConfigurationFilterSensitiveLog: (
|
|
1342
|
-
obj: CognitoUserPoolConfiguration
|
|
1343
|
-
) => any;
|
|
1344
|
-
export declare const CognitoUserPoolConfigurationDetailFilterSensitiveLog: (
|
|
1345
|
-
obj: CognitoUserPoolConfigurationDetail
|
|
1346
|
-
) => any;
|
|
1347
|
-
export declare const CognitoUserPoolConfigurationItemFilterSensitiveLog: (
|
|
1348
|
-
obj: CognitoUserPoolConfigurationItem
|
|
1349
|
-
) => any;
|
|
1350
|
-
export declare const OpenIdConnectGroupConfigurationFilterSensitiveLog: (
|
|
1351
|
-
obj: OpenIdConnectGroupConfiguration
|
|
1352
|
-
) => any;
|
|
1353
|
-
export declare const OpenIdConnectAccessTokenConfigurationFilterSensitiveLog: (
|
|
1354
|
-
obj: OpenIdConnectAccessTokenConfiguration
|
|
1355
|
-
) => any;
|
|
1356
|
-
export declare const OpenIdConnectIdentityTokenConfigurationFilterSensitiveLog: (
|
|
1357
|
-
obj: OpenIdConnectIdentityTokenConfiguration
|
|
1358
|
-
) => any;
|
|
1359
|
-
export declare const OpenIdConnectTokenSelectionFilterSensitiveLog: (
|
|
1360
|
-
obj: OpenIdConnectTokenSelection
|
|
1361
|
-
) => any;
|
|
1362
|
-
export declare const OpenIdConnectConfigurationFilterSensitiveLog: (
|
|
1363
|
-
obj: OpenIdConnectConfiguration
|
|
1364
|
-
) => any;
|
|
1365
|
-
export declare const ConfigurationFilterSensitiveLog: (
|
|
1366
|
-
obj: Configuration
|
|
1367
|
-
) => any;
|
|
1368
|
-
export declare const OpenIdConnectGroupConfigurationDetailFilterSensitiveLog: (
|
|
1369
|
-
obj: OpenIdConnectGroupConfigurationDetail
|
|
1370
|
-
) => any;
|
|
1371
|
-
export declare const OpenIdConnectAccessTokenConfigurationDetailFilterSensitiveLog: (
|
|
1372
|
-
obj: OpenIdConnectAccessTokenConfigurationDetail
|
|
1373
|
-
) => any;
|
|
1374
|
-
export declare const OpenIdConnectIdentityTokenConfigurationDetailFilterSensitiveLog: (
|
|
1375
|
-
obj: OpenIdConnectIdentityTokenConfigurationDetail
|
|
1376
|
-
) => any;
|
|
1377
|
-
export declare const OpenIdConnectTokenSelectionDetailFilterSensitiveLog: (
|
|
1378
|
-
obj: OpenIdConnectTokenSelectionDetail
|
|
1379
|
-
) => any;
|
|
1380
|
-
export declare const OpenIdConnectConfigurationDetailFilterSensitiveLog: (
|
|
1381
|
-
obj: OpenIdConnectConfigurationDetail
|
|
1382
|
-
) => any;
|
|
1383
|
-
export declare const ConfigurationDetailFilterSensitiveLog: (
|
|
1384
|
-
obj: ConfigurationDetail
|
|
1385
|
-
) => any;
|
|
1386
|
-
export declare const OpenIdConnectGroupConfigurationItemFilterSensitiveLog: (
|
|
1387
|
-
obj: OpenIdConnectGroupConfigurationItem
|
|
1388
|
-
) => any;
|
|
1389
|
-
export declare const OpenIdConnectAccessTokenConfigurationItemFilterSensitiveLog: (
|
|
1390
|
-
obj: OpenIdConnectAccessTokenConfigurationItem
|
|
1391
|
-
) => any;
|
|
1392
|
-
export declare const OpenIdConnectIdentityTokenConfigurationItemFilterSensitiveLog: (
|
|
1393
|
-
obj: OpenIdConnectIdentityTokenConfigurationItem
|
|
1394
|
-
) => any;
|
|
1395
|
-
export declare const OpenIdConnectTokenSelectionItemFilterSensitiveLog: (
|
|
1396
|
-
obj: OpenIdConnectTokenSelectionItem
|
|
1397
|
-
) => any;
|
|
1398
|
-
export declare const OpenIdConnectConfigurationItemFilterSensitiveLog: (
|
|
1399
|
-
obj: OpenIdConnectConfigurationItem
|
|
1400
|
-
) => any;
|
|
1401
|
-
export declare const ConfigurationItemFilterSensitiveLog: (
|
|
1402
|
-
obj: ConfigurationItem
|
|
1403
|
-
) => any;
|
|
1404
|
-
export declare const CreateIdentitySourceInputFilterSensitiveLog: (
|
|
1405
|
-
obj: CreateIdentitySourceInput
|
|
1406
|
-
) => any;
|
|
1407
|
-
export declare const StaticPolicyDefinitionFilterSensitiveLog: (
|
|
1408
|
-
obj: StaticPolicyDefinition
|
|
1409
|
-
) => any;
|
|
1410
|
-
export declare const TemplateLinkedPolicyDefinitionFilterSensitiveLog: (
|
|
1411
|
-
obj: TemplateLinkedPolicyDefinition
|
|
1412
|
-
) => any;
|
|
1413
|
-
export declare const PolicyDefinitionFilterSensitiveLog: (
|
|
1414
|
-
obj: PolicyDefinition
|
|
1415
|
-
) => any;
|
|
1416
|
-
export declare const CreatePolicyInputFilterSensitiveLog: (
|
|
1417
|
-
obj: CreatePolicyInput
|
|
1418
|
-
) => any;
|
|
1419
|
-
export declare const CreatePolicyOutputFilterSensitiveLog: (
|
|
1420
|
-
obj: CreatePolicyOutput
|
|
1421
|
-
) => any;
|
|
1422
|
-
export declare const CreatePolicyStoreInputFilterSensitiveLog: (
|
|
1423
|
-
obj: CreatePolicyStoreInput
|
|
1424
|
-
) => any;
|
|
1425
|
-
export declare const CreatePolicyTemplateInputFilterSensitiveLog: (
|
|
1426
|
-
obj: CreatePolicyTemplateInput
|
|
1427
|
-
) => any;
|
|
1428
|
-
export declare const EntityReferenceFilterSensitiveLog: (
|
|
1429
|
-
obj: EntityReference
|
|
1430
|
-
) => any;
|
|
1431
|
-
export declare const IdentitySourceDetailsFilterSensitiveLog: (
|
|
1432
|
-
obj: IdentitySourceDetails
|
|
1433
|
-
) => any;
|
|
1434
|
-
export declare const GetIdentitySourceOutputFilterSensitiveLog: (
|
|
1435
|
-
obj: GetIdentitySourceOutput
|
|
1436
|
-
) => any;
|
|
1437
|
-
export declare const GetPolicyOutputFilterSensitiveLog: (
|
|
1438
|
-
obj: GetPolicyOutput
|
|
1439
|
-
) => any;
|
|
1440
|
-
export declare const GetPolicyStoreOutputFilterSensitiveLog: (
|
|
1441
|
-
obj: GetPolicyStoreOutput
|
|
1442
|
-
) => any;
|
|
1443
|
-
export declare const GetPolicyTemplateOutputFilterSensitiveLog: (
|
|
1444
|
-
obj: GetPolicyTemplateOutput
|
|
1445
|
-
) => any;
|
|
1446
|
-
export declare const GetSchemaOutputFilterSensitiveLog: (
|
|
1447
|
-
obj: GetSchemaOutput
|
|
1448
|
-
) => any;
|
|
1449
|
-
export declare const IdentitySourceFilterFilterSensitiveLog: (
|
|
1450
|
-
obj: IdentitySourceFilter
|
|
1451
|
-
) => any;
|
|
1452
|
-
export declare const ListIdentitySourcesInputFilterSensitiveLog: (
|
|
1453
|
-
obj: ListIdentitySourcesInput
|
|
1454
|
-
) => any;
|
|
1455
|
-
export declare const IdentitySourceItemDetailsFilterSensitiveLog: (
|
|
1456
|
-
obj: IdentitySourceItemDetails
|
|
1457
|
-
) => any;
|
|
1458
|
-
export declare const IdentitySourceItemFilterSensitiveLog: (
|
|
1459
|
-
obj: IdentitySourceItem
|
|
1460
|
-
) => any;
|
|
1461
|
-
export declare const ListIdentitySourcesOutputFilterSensitiveLog: (
|
|
1462
|
-
obj: ListIdentitySourcesOutput
|
|
1463
|
-
) => any;
|
|
1464
|
-
export declare const UpdateCognitoGroupConfigurationFilterSensitiveLog: (
|
|
1465
|
-
obj: UpdateCognitoGroupConfiguration
|
|
1466
|
-
) => any;
|
|
1467
|
-
export declare const UpdateCognitoUserPoolConfigurationFilterSensitiveLog: (
|
|
1468
|
-
obj: UpdateCognitoUserPoolConfiguration
|
|
1469
|
-
) => any;
|
|
1470
|
-
export declare const UpdateOpenIdConnectGroupConfigurationFilterSensitiveLog: (
|
|
1471
|
-
obj: UpdateOpenIdConnectGroupConfiguration
|
|
1472
|
-
) => any;
|
|
1473
|
-
export declare const UpdateOpenIdConnectAccessTokenConfigurationFilterSensitiveLog: (
|
|
1474
|
-
obj: UpdateOpenIdConnectAccessTokenConfiguration
|
|
1475
|
-
) => any;
|
|
1476
|
-
export declare const UpdateOpenIdConnectIdentityTokenConfigurationFilterSensitiveLog: (
|
|
1477
|
-
obj: UpdateOpenIdConnectIdentityTokenConfiguration
|
|
1478
|
-
) => any;
|
|
1479
|
-
export declare const UpdateOpenIdConnectTokenSelectionFilterSensitiveLog: (
|
|
1480
|
-
obj: UpdateOpenIdConnectTokenSelection
|
|
1481
|
-
) => any;
|
|
1482
|
-
export declare const UpdateOpenIdConnectConfigurationFilterSensitiveLog: (
|
|
1483
|
-
obj: UpdateOpenIdConnectConfiguration
|
|
1484
|
-
) => any;
|
|
1485
|
-
export declare const UpdateConfigurationFilterSensitiveLog: (
|
|
1486
|
-
obj: UpdateConfiguration
|
|
1487
|
-
) => any;
|
|
1488
|
-
export declare const UpdateIdentitySourceInputFilterSensitiveLog: (
|
|
1489
|
-
obj: UpdateIdentitySourceInput
|
|
1490
|
-
) => any;
|
|
1491
|
-
export declare const IsAuthorizedOutputFilterSensitiveLog: (
|
|
1492
|
-
obj: IsAuthorizedOutput
|
|
1493
|
-
) => any;
|
|
1494
|
-
export declare const IsAuthorizedWithTokenOutputFilterSensitiveLog: (
|
|
1495
|
-
obj: IsAuthorizedWithTokenOutput
|
|
1496
|
-
) => any;
|
|
1497
|
-
export declare const PolicyFilterFilterSensitiveLog: (obj: PolicyFilter) => any;
|
|
1498
|
-
export declare const ListPoliciesInputFilterSensitiveLog: (
|
|
1499
|
-
obj: ListPoliciesInput
|
|
1500
|
-
) => any;
|
|
1501
|
-
export declare const StaticPolicyDefinitionItemFilterSensitiveLog: (
|
|
1502
|
-
obj: StaticPolicyDefinitionItem
|
|
1503
|
-
) => any;
|
|
1504
|
-
export declare const TemplateLinkedPolicyDefinitionItemFilterSensitiveLog: (
|
|
1505
|
-
obj: TemplateLinkedPolicyDefinitionItem
|
|
1506
|
-
) => any;
|
|
1507
|
-
export declare const PolicyDefinitionItemFilterSensitiveLog: (
|
|
1508
|
-
obj: PolicyDefinitionItem
|
|
1509
|
-
) => any;
|
|
1510
|
-
export declare const PolicyItemFilterSensitiveLog: (obj: PolicyItem) => any;
|
|
1511
|
-
export declare const ListPoliciesOutputFilterSensitiveLog: (
|
|
1512
|
-
obj: ListPoliciesOutput
|
|
1513
|
-
) => any;
|
|
1514
|
-
export declare const PolicyStoreItemFilterSensitiveLog: (
|
|
1515
|
-
obj: PolicyStoreItem
|
|
1516
|
-
) => any;
|
|
1517
|
-
export declare const ListPolicyStoresOutputFilterSensitiveLog: (
|
|
1518
|
-
obj: ListPolicyStoresOutput
|
|
1519
|
-
) => any;
|
|
1520
|
-
export declare const PolicyTemplateItemFilterSensitiveLog: (
|
|
1521
|
-
obj: PolicyTemplateItem
|
|
1522
|
-
) => any;
|
|
1523
|
-
export declare const ListPolicyTemplatesOutputFilterSensitiveLog: (
|
|
1524
|
-
obj: ListPolicyTemplatesOutput
|
|
1525
|
-
) => any;
|
|
1526
|
-
export declare const UpdateStaticPolicyDefinitionFilterSensitiveLog: (
|
|
1527
|
-
obj: UpdateStaticPolicyDefinition
|
|
1528
|
-
) => any;
|
|
1529
|
-
export declare const UpdatePolicyDefinitionFilterSensitiveLog: (
|
|
1530
|
-
obj: UpdatePolicyDefinition
|
|
1531
|
-
) => any;
|
|
1532
|
-
export declare const UpdatePolicyInputFilterSensitiveLog: (
|
|
1533
|
-
obj: UpdatePolicyInput
|
|
1534
|
-
) => any;
|
|
1535
|
-
export declare const UpdatePolicyOutputFilterSensitiveLog: (
|
|
1536
|
-
obj: UpdatePolicyOutput
|
|
1537
|
-
) => any;
|
|
1538
|
-
export declare const UpdatePolicyTemplateInputFilterSensitiveLog: (
|
|
1539
|
-
obj: UpdatePolicyTemplateInput
|
|
1540
|
-
) => any;
|
|
1541
|
-
export declare const SchemaDefinitionFilterSensitiveLog: (
|
|
1542
|
-
obj: SchemaDefinition
|
|
1543
|
-
) => any;
|
|
1544
|
-
export declare const PutSchemaInputFilterSensitiveLog: (
|
|
1545
|
-
obj: PutSchemaInput
|
|
1546
|
-
) => any;
|
|
1547
|
-
export declare const PutSchemaOutputFilterSensitiveLog: (
|
|
1548
|
-
obj: PutSchemaOutput
|
|
1549
|
-
) => any;
|
|
1550
|
-
export declare const UpdatePolicyStoreInputFilterSensitiveLog: (
|
|
1551
|
-
obj: UpdatePolicyStoreInput
|
|
1552
|
-
) => any;
|
|
1553
|
-
export declare const AttributeValueFilterSensitiveLog: (
|
|
1554
|
-
obj: AttributeValue
|
|
1555
|
-
) => any;
|
|
1556
|
-
export declare const ContextDefinitionFilterSensitiveLog: (
|
|
1557
|
-
obj: ContextDefinition
|
|
1558
|
-
) => any;
|
|
1559
|
-
export declare const EntityItemFilterSensitiveLog: (obj: EntityItem) => any;
|
|
1560
|
-
export declare const BatchIsAuthorizedInputItemFilterSensitiveLog: (
|
|
1561
|
-
obj: BatchIsAuthorizedInputItem
|
|
1562
|
-
) => any;
|
|
1563
|
-
export declare const BatchIsAuthorizedWithTokenInputItemFilterSensitiveLog: (
|
|
1564
|
-
obj: BatchIsAuthorizedWithTokenInputItem
|
|
1565
|
-
) => any;
|
|
1566
|
-
export declare const BatchIsAuthorizedOutputItemFilterSensitiveLog: (
|
|
1567
|
-
obj: BatchIsAuthorizedOutputItem
|
|
1568
|
-
) => any;
|
|
1569
|
-
export declare const BatchIsAuthorizedWithTokenOutputItemFilterSensitiveLog: (
|
|
1570
|
-
obj: BatchIsAuthorizedWithTokenOutputItem
|
|
1571
|
-
) => any;
|
|
1572
|
-
export declare const EntitiesDefinitionFilterSensitiveLog: (
|
|
1573
|
-
obj: EntitiesDefinition
|
|
1574
|
-
) => any;
|
|
1575
|
-
export declare const BatchIsAuthorizedOutputFilterSensitiveLog: (
|
|
1576
|
-
obj: BatchIsAuthorizedOutput
|
|
1577
|
-
) => any;
|
|
1578
|
-
export declare const BatchIsAuthorizedWithTokenOutputFilterSensitiveLog: (
|
|
1579
|
-
obj: BatchIsAuthorizedWithTokenOutput
|
|
1580
|
-
) => any;
|
|
1581
|
-
export declare const IsAuthorizedInputFilterSensitiveLog: (
|
|
1582
|
-
obj: IsAuthorizedInput
|
|
1583
|
-
) => any;
|
|
1584
|
-
export declare const IsAuthorizedWithTokenInputFilterSensitiveLog: (
|
|
1585
|
-
obj: IsAuthorizedWithTokenInput
|
|
1586
|
-
) => any;
|
|
1587
|
-
export declare const BatchIsAuthorizedInputFilterSensitiveLog: (
|
|
1588
|
-
obj: BatchIsAuthorizedInput
|
|
1589
|
-
) => any;
|
|
1590
|
-
export declare const BatchIsAuthorizedWithTokenInputFilterSensitiveLog: (
|
|
1591
|
-
obj: BatchIsAuthorizedWithTokenInput
|
|
1592
|
-
) => any;
|
|
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (
|
|
|
40
40
|
profile?: string;
|
|
41
41
|
logger: import("@smithy/types").Logger;
|
|
42
42
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
43
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
44
|
+
import("@smithy/types").HttpRequest,
|
|
45
|
+
import("@smithy/types").HttpResponse
|
|
46
|
+
>;
|
|
43
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
44
48
|
userAgentAppId?:
|
|
45
49
|
| string
|
|
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (
|
|
|
40
40
|
profile?: string;
|
|
41
41
|
logger: import("@smithy/types").Logger;
|
|
42
42
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
43
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
44
|
+
import("@smithy/types").HttpRequest,
|
|
45
|
+
import("@smithy/types").HttpResponse
|
|
46
|
+
>;
|
|
43
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
44
48
|
retryStrategy?:
|
|
45
49
|
| import("@smithy/types").RetryStrategy
|
|
@@ -39,6 +39,10 @@ export declare const getRuntimeConfig: (
|
|
|
39
39
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
40
40
|
logger: import("@smithy/types").Logger;
|
|
41
41
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
42
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
43
|
+
import("@smithy/types").HttpRequest,
|
|
44
|
+
import("@smithy/types").HttpResponse
|
|
45
|
+
>;
|
|
42
46
|
defaultsMode:
|
|
43
47
|
| import("@smithy/smithy-client").DefaultsMode
|
|
44
48
|
| import("@smithy/types").Provider<
|
|
@@ -16,6 +16,10 @@ export declare const getRuntimeConfig: (
|
|
|
16
16
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").VerifiedPermissionsHttpAuthSchemeProvider;
|
|
17
17
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
18
18
|
logger: import("@smithy/types").Logger;
|
|
19
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
20
|
+
import("@smithy/types").HttpRequest,
|
|
21
|
+
import("@smithy/types").HttpResponse
|
|
22
|
+
>;
|
|
19
23
|
serviceId: string;
|
|
20
24
|
urlParser: import("@smithy/types").UrlParser;
|
|
21
25
|
utf8Decoder: import("@smithy/types").Decoder;
|