@aws-sdk/client-verifiedpermissions 3.395.0 → 3.397.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/commands/CreateIdentitySourceCommand.js +2 -1
- package/dist-cjs/commands/CreatePolicyCommand.js +3 -2
- package/dist-cjs/commands/CreatePolicyTemplateCommand.js +2 -1
- package/dist-cjs/commands/GetIdentitySourceCommand.js +2 -1
- package/dist-cjs/commands/GetPolicyCommand.js +2 -1
- package/dist-cjs/commands/GetPolicyTemplateCommand.js +2 -1
- package/dist-cjs/commands/GetSchemaCommand.js +2 -1
- package/dist-cjs/commands/IsAuthorizedCommand.js +3 -2
- package/dist-cjs/commands/IsAuthorizedWithTokenCommand.js +3 -2
- package/dist-cjs/commands/ListIdentitySourcesCommand.js +3 -2
- package/dist-cjs/commands/ListPoliciesCommand.js +3 -2
- package/dist-cjs/commands/ListPolicyTemplatesCommand.js +2 -1
- package/dist-cjs/commands/PutSchemaCommand.js +3 -2
- package/dist-cjs/commands/UpdateIdentitySourceCommand.js +2 -1
- package/dist-cjs/commands/UpdatePolicyCommand.js +3 -2
- package/dist-cjs/commands/UpdatePolicyTemplateCommand.js +2 -1
- package/dist-cjs/models/models_0.js +361 -1
- package/dist-es/commands/CreateIdentitySourceCommand.js +2 -1
- package/dist-es/commands/CreatePolicyCommand.js +3 -2
- package/dist-es/commands/CreatePolicyTemplateCommand.js +2 -1
- package/dist-es/commands/GetIdentitySourceCommand.js +2 -1
- package/dist-es/commands/GetPolicyCommand.js +2 -1
- package/dist-es/commands/GetPolicyTemplateCommand.js +2 -1
- package/dist-es/commands/GetSchemaCommand.js +2 -1
- package/dist-es/commands/IsAuthorizedCommand.js +3 -2
- package/dist-es/commands/IsAuthorizedWithTokenCommand.js +3 -2
- package/dist-es/commands/ListIdentitySourcesCommand.js +3 -2
- package/dist-es/commands/ListPoliciesCommand.js +3 -2
- package/dist-es/commands/ListPolicyTemplatesCommand.js +2 -1
- package/dist-es/commands/PutSchemaCommand.js +3 -2
- package/dist-es/commands/UpdateIdentitySourceCommand.js +2 -1
- package/dist-es/commands/UpdatePolicyCommand.js +3 -2
- package/dist-es/commands/UpdatePolicyTemplateCommand.js +2 -1
- package/dist-es/models/models_0.js +305 -0
- package/dist-types/commands/IsAuthorizedWithTokenCommand.d.ts +19 -5
- package/dist-types/commands/UpdatePolicyCommand.d.ts +40 -3
- package/dist-types/models/models_0.d.ts +276 -42
- package/dist-types/ts3.4/models/models_0.d.ts +156 -0
- package/package.json +1 -1
|
@@ -1382,15 +1382,16 @@ export interface ListIdentitySourcesInput {
|
|
|
1382
1382
|
nextToken?: string;
|
|
1383
1383
|
/**
|
|
1384
1384
|
* @public
|
|
1385
|
-
* <p>Specifies the total number of results that you want included
|
|
1386
|
-
*
|
|
1387
|
-
*
|
|
1388
|
-
* <code>NextToken</code>
|
|
1389
|
-
*
|
|
1390
|
-
*
|
|
1391
|
-
*
|
|
1392
|
-
*
|
|
1393
|
-
*
|
|
1385
|
+
* <p>Specifies the total number of results that you want included in each
|
|
1386
|
+
* response. If additional items exist beyond the number you specify, the
|
|
1387
|
+
* <code>NextToken</code> response element is returned with a value (not null). Include the
|
|
1388
|
+
* specified value as the <code>NextToken</code> request parameter in the next call to the
|
|
1389
|
+
* operation to get the next set of results. Note that the service might return fewer
|
|
1390
|
+
* results than the maximum even when there are more results available. You should check
|
|
1391
|
+
* <code>NextToken</code> after every operation to ensure that you receive all of the
|
|
1392
|
+
* results.</p>
|
|
1393
|
+
* <p>If you do not specify this parameter, the operation defaults to 10 identity sources per response.
|
|
1394
|
+
* You can specify a maximum of 200 identity sources per response.</p>
|
|
1394
1395
|
*/
|
|
1395
1396
|
maxResults?: number;
|
|
1396
1397
|
/**
|
|
@@ -1709,15 +1710,16 @@ export interface ListPoliciesInput {
|
|
|
1709
1710
|
nextToken?: string;
|
|
1710
1711
|
/**
|
|
1711
1712
|
* @public
|
|
1712
|
-
* <p>Specifies the total number of results that you want included
|
|
1713
|
-
*
|
|
1714
|
-
*
|
|
1715
|
-
* <code>NextToken</code>
|
|
1716
|
-
*
|
|
1717
|
-
*
|
|
1718
|
-
*
|
|
1719
|
-
*
|
|
1720
|
-
*
|
|
1713
|
+
* <p>Specifies the total number of results that you want included in each
|
|
1714
|
+
* response. If additional items exist beyond the number you specify, the
|
|
1715
|
+
* <code>NextToken</code> response element is returned with a value (not null). Include the
|
|
1716
|
+
* specified value as the <code>NextToken</code> request parameter in the next call to the
|
|
1717
|
+
* operation to get the next set of results. Note that the service might return fewer
|
|
1718
|
+
* results than the maximum even when there are more results available. You should check
|
|
1719
|
+
* <code>NextToken</code> after every operation to ensure that you receive all of the
|
|
1720
|
+
* results.</p>
|
|
1721
|
+
* <p>If you do not specify this parameter, the operation defaults to 10 policies per
|
|
1722
|
+
* response. You can specify a maximum of 50 policies per response.</p>
|
|
1721
1723
|
*/
|
|
1722
1724
|
maxResults?: number;
|
|
1723
1725
|
/**
|
|
@@ -1908,15 +1910,16 @@ export interface ListPolicyStoresInput {
|
|
|
1908
1910
|
nextToken?: string;
|
|
1909
1911
|
/**
|
|
1910
1912
|
* @public
|
|
1911
|
-
* <p>Specifies the total number of results that you want included
|
|
1912
|
-
*
|
|
1913
|
-
*
|
|
1914
|
-
* <code>NextToken</code>
|
|
1915
|
-
*
|
|
1916
|
-
*
|
|
1917
|
-
*
|
|
1918
|
-
*
|
|
1919
|
-
*
|
|
1913
|
+
* <p>Specifies the total number of results that you want included in each
|
|
1914
|
+
* response. If additional items exist beyond the number you specify, the
|
|
1915
|
+
* <code>NextToken</code> response element is returned with a value (not null). Include the
|
|
1916
|
+
* specified value as the <code>NextToken</code> request parameter in the next call to the
|
|
1917
|
+
* operation to get the next set of results. Note that the service might return fewer
|
|
1918
|
+
* results than the maximum even when there are more results available. You should check
|
|
1919
|
+
* <code>NextToken</code> after every operation to ensure that you receive all of the
|
|
1920
|
+
* results.</p>
|
|
1921
|
+
* <p>If you do not specify this parameter, the operation defaults to 10 policy stores per
|
|
1922
|
+
* response. You can specify a maximum of 50 policy stores per response.</p>
|
|
1920
1923
|
*/
|
|
1921
1924
|
maxResults?: number;
|
|
1922
1925
|
}
|
|
@@ -1982,15 +1985,16 @@ export interface ListPolicyTemplatesInput {
|
|
|
1982
1985
|
nextToken?: string;
|
|
1983
1986
|
/**
|
|
1984
1987
|
* @public
|
|
1985
|
-
* <p>Specifies the total number of results that you want included
|
|
1986
|
-
*
|
|
1987
|
-
*
|
|
1988
|
-
* <code>NextToken</code>
|
|
1989
|
-
*
|
|
1990
|
-
*
|
|
1991
|
-
*
|
|
1992
|
-
*
|
|
1993
|
-
*
|
|
1988
|
+
* <p>Specifies the total number of results that you want included in each
|
|
1989
|
+
* response. If additional items exist beyond the number you specify, the
|
|
1990
|
+
* <code>NextToken</code> response element is returned with a value (not null). Include the
|
|
1991
|
+
* specified value as the <code>NextToken</code> request parameter in the next call to the
|
|
1992
|
+
* operation to get the next set of results. Note that the service might return fewer
|
|
1993
|
+
* results than the maximum even when there are more results available. You should check
|
|
1994
|
+
* <code>NextToken</code> after every operation to ensure that you receive all of the
|
|
1995
|
+
* results.</p>
|
|
1996
|
+
* <p>If you do not specify this parameter, the operation defaults to 10 policy templates per
|
|
1997
|
+
* response. You can specify a maximum of 50 policy templates per response.</p>
|
|
1994
1998
|
*/
|
|
1995
1999
|
maxResults?: number;
|
|
1996
2000
|
}
|
|
@@ -2692,7 +2696,7 @@ export interface IsAuthorizedWithTokenInput {
|
|
|
2692
2696
|
* @public
|
|
2693
2697
|
* <p>Specifies an identity token for the principal to be authorized. This token is provided
|
|
2694
2698
|
* to you by the identity provider (IdP) associated with the specified identity source. You must
|
|
2695
|
-
* specify either an <code>AccessToken</code> or an <code>IdentityToken</code>,
|
|
2699
|
+
* specify either an <code>AccessToken</code> or an <code>IdentityToken</code>, or
|
|
2696
2700
|
* both.</p>
|
|
2697
2701
|
*/
|
|
2698
2702
|
identityToken?: string;
|
|
@@ -2700,7 +2704,7 @@ export interface IsAuthorizedWithTokenInput {
|
|
|
2700
2704
|
* @public
|
|
2701
2705
|
* <p>Specifies an access token for the principal to be authorized. This token is provided
|
|
2702
2706
|
* to you by the identity provider (IdP) associated with the specified identity source. You must
|
|
2703
|
-
* specify either an <code>AccessToken</code
|
|
2707
|
+
* specify either an <code>AccessToken</code>, or an <code>IdentityToken</code>, or
|
|
2704
2708
|
* both.</p>
|
|
2705
2709
|
*/
|
|
2706
2710
|
accessToken?: string;
|
|
@@ -2724,12 +2728,242 @@ export interface IsAuthorizedWithTokenInput {
|
|
|
2724
2728
|
context?: ContextDefinition;
|
|
2725
2729
|
/**
|
|
2726
2730
|
* @public
|
|
2727
|
-
* <p>Specifies the list of resources and
|
|
2728
|
-
*
|
|
2731
|
+
* <p>Specifies the list of resources and their associated attributes that Verified Permissions can examine
|
|
2732
|
+
* when evaluating the policies. </p>
|
|
2729
2733
|
* <note>
|
|
2730
|
-
* <p>You can include only
|
|
2731
|
-
* include
|
|
2734
|
+
* <p>You can include only resource and action entities in this parameter; you can't
|
|
2735
|
+
* include principals.</p>
|
|
2736
|
+
* <ul>
|
|
2737
|
+
* <li>
|
|
2738
|
+
* <p>The <code>IsAuthorizedWithToken</code> operation takes principal
|
|
2739
|
+
* attributes from <b>
|
|
2740
|
+
* <i>only</i>
|
|
2741
|
+
* </b>
|
|
2742
|
+
* the <code>identityToken</code> or <code>accessToken</code> passed to the
|
|
2743
|
+
* operation.</p>
|
|
2744
|
+
* </li>
|
|
2745
|
+
* <li>
|
|
2746
|
+
* <p>For action entities, you can include only their <code>Identifier</code>
|
|
2747
|
+
* and <code>EntityType</code>. </p>
|
|
2748
|
+
* </li>
|
|
2749
|
+
* </ul>
|
|
2732
2750
|
* </note>
|
|
2733
2751
|
*/
|
|
2734
2752
|
entities?: EntitiesDefinition;
|
|
2735
2753
|
}
|
|
2754
|
+
/**
|
|
2755
|
+
* @internal
|
|
2756
|
+
*/
|
|
2757
|
+
export declare const ActionIdentifierFilterSensitiveLog: (obj: ActionIdentifier) => any;
|
|
2758
|
+
/**
|
|
2759
|
+
* @internal
|
|
2760
|
+
*/
|
|
2761
|
+
export declare const EntityIdentifierFilterSensitiveLog: (obj: EntityIdentifier) => any;
|
|
2762
|
+
/**
|
|
2763
|
+
* @internal
|
|
2764
|
+
*/
|
|
2765
|
+
export declare const CognitoUserPoolConfigurationFilterSensitiveLog: (obj: CognitoUserPoolConfiguration) => any;
|
|
2766
|
+
/**
|
|
2767
|
+
* @internal
|
|
2768
|
+
*/
|
|
2769
|
+
export declare const ConfigurationFilterSensitiveLog: (obj: Configuration) => any;
|
|
2770
|
+
/**
|
|
2771
|
+
* @internal
|
|
2772
|
+
*/
|
|
2773
|
+
export declare const CreateIdentitySourceInputFilterSensitiveLog: (obj: CreateIdentitySourceInput) => any;
|
|
2774
|
+
/**
|
|
2775
|
+
* @internal
|
|
2776
|
+
*/
|
|
2777
|
+
export declare const StaticPolicyDefinitionFilterSensitiveLog: (obj: StaticPolicyDefinition) => any;
|
|
2778
|
+
/**
|
|
2779
|
+
* @internal
|
|
2780
|
+
*/
|
|
2781
|
+
export declare const TemplateLinkedPolicyDefinitionFilterSensitiveLog: (obj: TemplateLinkedPolicyDefinition) => any;
|
|
2782
|
+
/**
|
|
2783
|
+
* @internal
|
|
2784
|
+
*/
|
|
2785
|
+
export declare const PolicyDefinitionFilterSensitiveLog: (obj: PolicyDefinition) => any;
|
|
2786
|
+
/**
|
|
2787
|
+
* @internal
|
|
2788
|
+
*/
|
|
2789
|
+
export declare const CreatePolicyInputFilterSensitiveLog: (obj: CreatePolicyInput) => any;
|
|
2790
|
+
/**
|
|
2791
|
+
* @internal
|
|
2792
|
+
*/
|
|
2793
|
+
export declare const CreatePolicyOutputFilterSensitiveLog: (obj: CreatePolicyOutput) => any;
|
|
2794
|
+
/**
|
|
2795
|
+
* @internal
|
|
2796
|
+
*/
|
|
2797
|
+
export declare const CreatePolicyTemplateInputFilterSensitiveLog: (obj: CreatePolicyTemplateInput) => any;
|
|
2798
|
+
/**
|
|
2799
|
+
* @internal
|
|
2800
|
+
*/
|
|
2801
|
+
export declare const EntityReferenceFilterSensitiveLog: (obj: EntityReference) => any;
|
|
2802
|
+
/**
|
|
2803
|
+
* @internal
|
|
2804
|
+
*/
|
|
2805
|
+
export declare const EvaluationErrorItemFilterSensitiveLog: (obj: EvaluationErrorItem) => any;
|
|
2806
|
+
/**
|
|
2807
|
+
* @internal
|
|
2808
|
+
*/
|
|
2809
|
+
export declare const IdentitySourceDetailsFilterSensitiveLog: (obj: IdentitySourceDetails) => any;
|
|
2810
|
+
/**
|
|
2811
|
+
* @internal
|
|
2812
|
+
*/
|
|
2813
|
+
export declare const GetIdentitySourceOutputFilterSensitiveLog: (obj: GetIdentitySourceOutput) => any;
|
|
2814
|
+
/**
|
|
2815
|
+
* @internal
|
|
2816
|
+
*/
|
|
2817
|
+
export declare const StaticPolicyDefinitionDetailFilterSensitiveLog: (obj: StaticPolicyDefinitionDetail) => any;
|
|
2818
|
+
/**
|
|
2819
|
+
* @internal
|
|
2820
|
+
*/
|
|
2821
|
+
export declare const TemplateLinkedPolicyDefinitionDetailFilterSensitiveLog: (obj: TemplateLinkedPolicyDefinitionDetail) => any;
|
|
2822
|
+
/**
|
|
2823
|
+
* @internal
|
|
2824
|
+
*/
|
|
2825
|
+
export declare const PolicyDefinitionDetailFilterSensitiveLog: (obj: PolicyDefinitionDetail) => any;
|
|
2826
|
+
/**
|
|
2827
|
+
* @internal
|
|
2828
|
+
*/
|
|
2829
|
+
export declare const GetPolicyOutputFilterSensitiveLog: (obj: GetPolicyOutput) => any;
|
|
2830
|
+
/**
|
|
2831
|
+
* @internal
|
|
2832
|
+
*/
|
|
2833
|
+
export declare const GetPolicyTemplateOutputFilterSensitiveLog: (obj: GetPolicyTemplateOutput) => any;
|
|
2834
|
+
/**
|
|
2835
|
+
* @internal
|
|
2836
|
+
*/
|
|
2837
|
+
export declare const GetSchemaOutputFilterSensitiveLog: (obj: GetSchemaOutput) => any;
|
|
2838
|
+
/**
|
|
2839
|
+
* @internal
|
|
2840
|
+
*/
|
|
2841
|
+
export declare const IdentitySourceFilterFilterSensitiveLog: (obj: IdentitySourceFilter) => any;
|
|
2842
|
+
/**
|
|
2843
|
+
* @internal
|
|
2844
|
+
*/
|
|
2845
|
+
export declare const ListIdentitySourcesInputFilterSensitiveLog: (obj: ListIdentitySourcesInput) => any;
|
|
2846
|
+
/**
|
|
2847
|
+
* @internal
|
|
2848
|
+
*/
|
|
2849
|
+
export declare const IdentitySourceItemDetailsFilterSensitiveLog: (obj: IdentitySourceItemDetails) => any;
|
|
2850
|
+
/**
|
|
2851
|
+
* @internal
|
|
2852
|
+
*/
|
|
2853
|
+
export declare const IdentitySourceItemFilterSensitiveLog: (obj: IdentitySourceItem) => any;
|
|
2854
|
+
/**
|
|
2855
|
+
* @internal
|
|
2856
|
+
*/
|
|
2857
|
+
export declare const ListIdentitySourcesOutputFilterSensitiveLog: (obj: ListIdentitySourcesOutput) => any;
|
|
2858
|
+
/**
|
|
2859
|
+
* @internal
|
|
2860
|
+
*/
|
|
2861
|
+
export declare const UpdateCognitoUserPoolConfigurationFilterSensitiveLog: (obj: UpdateCognitoUserPoolConfiguration) => any;
|
|
2862
|
+
/**
|
|
2863
|
+
* @internal
|
|
2864
|
+
*/
|
|
2865
|
+
export declare const UpdateConfigurationFilterSensitiveLog: (obj: UpdateConfiguration) => any;
|
|
2866
|
+
/**
|
|
2867
|
+
* @internal
|
|
2868
|
+
*/
|
|
2869
|
+
export declare const UpdateIdentitySourceInputFilterSensitiveLog: (obj: UpdateIdentitySourceInput) => any;
|
|
2870
|
+
/**
|
|
2871
|
+
* @internal
|
|
2872
|
+
*/
|
|
2873
|
+
export declare const IsAuthorizedOutputFilterSensitiveLog: (obj: IsAuthorizedOutput) => any;
|
|
2874
|
+
/**
|
|
2875
|
+
* @internal
|
|
2876
|
+
*/
|
|
2877
|
+
export declare const IsAuthorizedWithTokenOutputFilterSensitiveLog: (obj: IsAuthorizedWithTokenOutput) => any;
|
|
2878
|
+
/**
|
|
2879
|
+
* @internal
|
|
2880
|
+
*/
|
|
2881
|
+
export declare const PolicyFilterFilterSensitiveLog: (obj: PolicyFilter) => any;
|
|
2882
|
+
/**
|
|
2883
|
+
* @internal
|
|
2884
|
+
*/
|
|
2885
|
+
export declare const ListPoliciesInputFilterSensitiveLog: (obj: ListPoliciesInput) => any;
|
|
2886
|
+
/**
|
|
2887
|
+
* @internal
|
|
2888
|
+
*/
|
|
2889
|
+
export declare const StaticPolicyDefinitionItemFilterSensitiveLog: (obj: StaticPolicyDefinitionItem) => any;
|
|
2890
|
+
/**
|
|
2891
|
+
* @internal
|
|
2892
|
+
*/
|
|
2893
|
+
export declare const TemplateLinkedPolicyDefinitionItemFilterSensitiveLog: (obj: TemplateLinkedPolicyDefinitionItem) => any;
|
|
2894
|
+
/**
|
|
2895
|
+
* @internal
|
|
2896
|
+
*/
|
|
2897
|
+
export declare const PolicyDefinitionItemFilterSensitiveLog: (obj: PolicyDefinitionItem) => any;
|
|
2898
|
+
/**
|
|
2899
|
+
* @internal
|
|
2900
|
+
*/
|
|
2901
|
+
export declare const PolicyItemFilterSensitiveLog: (obj: PolicyItem) => any;
|
|
2902
|
+
/**
|
|
2903
|
+
* @internal
|
|
2904
|
+
*/
|
|
2905
|
+
export declare const ListPoliciesOutputFilterSensitiveLog: (obj: ListPoliciesOutput) => any;
|
|
2906
|
+
/**
|
|
2907
|
+
* @internal
|
|
2908
|
+
*/
|
|
2909
|
+
export declare const PolicyTemplateItemFilterSensitiveLog: (obj: PolicyTemplateItem) => any;
|
|
2910
|
+
/**
|
|
2911
|
+
* @internal
|
|
2912
|
+
*/
|
|
2913
|
+
export declare const ListPolicyTemplatesOutputFilterSensitiveLog: (obj: ListPolicyTemplatesOutput) => any;
|
|
2914
|
+
/**
|
|
2915
|
+
* @internal
|
|
2916
|
+
*/
|
|
2917
|
+
export declare const UpdateStaticPolicyDefinitionFilterSensitiveLog: (obj: UpdateStaticPolicyDefinition) => any;
|
|
2918
|
+
/**
|
|
2919
|
+
* @internal
|
|
2920
|
+
*/
|
|
2921
|
+
export declare const UpdatePolicyDefinitionFilterSensitiveLog: (obj: UpdatePolicyDefinition) => any;
|
|
2922
|
+
/**
|
|
2923
|
+
* @internal
|
|
2924
|
+
*/
|
|
2925
|
+
export declare const UpdatePolicyInputFilterSensitiveLog: (obj: UpdatePolicyInput) => any;
|
|
2926
|
+
/**
|
|
2927
|
+
* @internal
|
|
2928
|
+
*/
|
|
2929
|
+
export declare const UpdatePolicyOutputFilterSensitiveLog: (obj: UpdatePolicyOutput) => any;
|
|
2930
|
+
/**
|
|
2931
|
+
* @internal
|
|
2932
|
+
*/
|
|
2933
|
+
export declare const UpdatePolicyTemplateInputFilterSensitiveLog: (obj: UpdatePolicyTemplateInput) => any;
|
|
2934
|
+
/**
|
|
2935
|
+
* @internal
|
|
2936
|
+
*/
|
|
2937
|
+
export declare const SchemaDefinitionFilterSensitiveLog: (obj: SchemaDefinition) => any;
|
|
2938
|
+
/**
|
|
2939
|
+
* @internal
|
|
2940
|
+
*/
|
|
2941
|
+
export declare const PutSchemaInputFilterSensitiveLog: (obj: PutSchemaInput) => any;
|
|
2942
|
+
/**
|
|
2943
|
+
* @internal
|
|
2944
|
+
*/
|
|
2945
|
+
export declare const PutSchemaOutputFilterSensitiveLog: (obj: PutSchemaOutput) => any;
|
|
2946
|
+
/**
|
|
2947
|
+
* @internal
|
|
2948
|
+
*/
|
|
2949
|
+
export declare const AttributeValueFilterSensitiveLog: (obj: AttributeValue) => any;
|
|
2950
|
+
/**
|
|
2951
|
+
* @internal
|
|
2952
|
+
*/
|
|
2953
|
+
export declare const ContextDefinitionFilterSensitiveLog: (obj: ContextDefinition) => any;
|
|
2954
|
+
/**
|
|
2955
|
+
* @internal
|
|
2956
|
+
*/
|
|
2957
|
+
export declare const EntityItemFilterSensitiveLog: (obj: EntityItem) => any;
|
|
2958
|
+
/**
|
|
2959
|
+
* @internal
|
|
2960
|
+
*/
|
|
2961
|
+
export declare const EntitiesDefinitionFilterSensitiveLog: (obj: EntitiesDefinition) => any;
|
|
2962
|
+
/**
|
|
2963
|
+
* @internal
|
|
2964
|
+
*/
|
|
2965
|
+
export declare const IsAuthorizedInputFilterSensitiveLog: (obj: IsAuthorizedInput) => any;
|
|
2966
|
+
/**
|
|
2967
|
+
* @internal
|
|
2968
|
+
*/
|
|
2969
|
+
export declare const IsAuthorizedWithTokenInputFilterSensitiveLog: (obj: IsAuthorizedWithTokenInput) => any;
|
|
@@ -755,3 +755,159 @@ export interface IsAuthorizedWithTokenInput {
|
|
|
755
755
|
context?: ContextDefinition;
|
|
756
756
|
entities?: EntitiesDefinition;
|
|
757
757
|
}
|
|
758
|
+
export declare const ActionIdentifierFilterSensitiveLog: (
|
|
759
|
+
obj: ActionIdentifier
|
|
760
|
+
) => any;
|
|
761
|
+
export declare const EntityIdentifierFilterSensitiveLog: (
|
|
762
|
+
obj: EntityIdentifier
|
|
763
|
+
) => any;
|
|
764
|
+
export declare const CognitoUserPoolConfigurationFilterSensitiveLog: (
|
|
765
|
+
obj: CognitoUserPoolConfiguration
|
|
766
|
+
) => any;
|
|
767
|
+
export declare const ConfigurationFilterSensitiveLog: (
|
|
768
|
+
obj: Configuration
|
|
769
|
+
) => any;
|
|
770
|
+
export declare const CreateIdentitySourceInputFilterSensitiveLog: (
|
|
771
|
+
obj: CreateIdentitySourceInput
|
|
772
|
+
) => any;
|
|
773
|
+
export declare const StaticPolicyDefinitionFilterSensitiveLog: (
|
|
774
|
+
obj: StaticPolicyDefinition
|
|
775
|
+
) => any;
|
|
776
|
+
export declare const TemplateLinkedPolicyDefinitionFilterSensitiveLog: (
|
|
777
|
+
obj: TemplateLinkedPolicyDefinition
|
|
778
|
+
) => any;
|
|
779
|
+
export declare const PolicyDefinitionFilterSensitiveLog: (
|
|
780
|
+
obj: PolicyDefinition
|
|
781
|
+
) => any;
|
|
782
|
+
export declare const CreatePolicyInputFilterSensitiveLog: (
|
|
783
|
+
obj: CreatePolicyInput
|
|
784
|
+
) => any;
|
|
785
|
+
export declare const CreatePolicyOutputFilterSensitiveLog: (
|
|
786
|
+
obj: CreatePolicyOutput
|
|
787
|
+
) => any;
|
|
788
|
+
export declare const CreatePolicyTemplateInputFilterSensitiveLog: (
|
|
789
|
+
obj: CreatePolicyTemplateInput
|
|
790
|
+
) => any;
|
|
791
|
+
export declare const EntityReferenceFilterSensitiveLog: (
|
|
792
|
+
obj: EntityReference
|
|
793
|
+
) => any;
|
|
794
|
+
export declare const EvaluationErrorItemFilterSensitiveLog: (
|
|
795
|
+
obj: EvaluationErrorItem
|
|
796
|
+
) => any;
|
|
797
|
+
export declare const IdentitySourceDetailsFilterSensitiveLog: (
|
|
798
|
+
obj: IdentitySourceDetails
|
|
799
|
+
) => any;
|
|
800
|
+
export declare const GetIdentitySourceOutputFilterSensitiveLog: (
|
|
801
|
+
obj: GetIdentitySourceOutput
|
|
802
|
+
) => any;
|
|
803
|
+
export declare const StaticPolicyDefinitionDetailFilterSensitiveLog: (
|
|
804
|
+
obj: StaticPolicyDefinitionDetail
|
|
805
|
+
) => any;
|
|
806
|
+
export declare const TemplateLinkedPolicyDefinitionDetailFilterSensitiveLog: (
|
|
807
|
+
obj: TemplateLinkedPolicyDefinitionDetail
|
|
808
|
+
) => any;
|
|
809
|
+
export declare const PolicyDefinitionDetailFilterSensitiveLog: (
|
|
810
|
+
obj: PolicyDefinitionDetail
|
|
811
|
+
) => any;
|
|
812
|
+
export declare const GetPolicyOutputFilterSensitiveLog: (
|
|
813
|
+
obj: GetPolicyOutput
|
|
814
|
+
) => any;
|
|
815
|
+
export declare const GetPolicyTemplateOutputFilterSensitiveLog: (
|
|
816
|
+
obj: GetPolicyTemplateOutput
|
|
817
|
+
) => any;
|
|
818
|
+
export declare const GetSchemaOutputFilterSensitiveLog: (
|
|
819
|
+
obj: GetSchemaOutput
|
|
820
|
+
) => any;
|
|
821
|
+
export declare const IdentitySourceFilterFilterSensitiveLog: (
|
|
822
|
+
obj: IdentitySourceFilter
|
|
823
|
+
) => any;
|
|
824
|
+
export declare const ListIdentitySourcesInputFilterSensitiveLog: (
|
|
825
|
+
obj: ListIdentitySourcesInput
|
|
826
|
+
) => any;
|
|
827
|
+
export declare const IdentitySourceItemDetailsFilterSensitiveLog: (
|
|
828
|
+
obj: IdentitySourceItemDetails
|
|
829
|
+
) => any;
|
|
830
|
+
export declare const IdentitySourceItemFilterSensitiveLog: (
|
|
831
|
+
obj: IdentitySourceItem
|
|
832
|
+
) => any;
|
|
833
|
+
export declare const ListIdentitySourcesOutputFilterSensitiveLog: (
|
|
834
|
+
obj: ListIdentitySourcesOutput
|
|
835
|
+
) => any;
|
|
836
|
+
export declare const UpdateCognitoUserPoolConfigurationFilterSensitiveLog: (
|
|
837
|
+
obj: UpdateCognitoUserPoolConfiguration
|
|
838
|
+
) => any;
|
|
839
|
+
export declare const UpdateConfigurationFilterSensitiveLog: (
|
|
840
|
+
obj: UpdateConfiguration
|
|
841
|
+
) => any;
|
|
842
|
+
export declare const UpdateIdentitySourceInputFilterSensitiveLog: (
|
|
843
|
+
obj: UpdateIdentitySourceInput
|
|
844
|
+
) => any;
|
|
845
|
+
export declare const IsAuthorizedOutputFilterSensitiveLog: (
|
|
846
|
+
obj: IsAuthorizedOutput
|
|
847
|
+
) => any;
|
|
848
|
+
export declare const IsAuthorizedWithTokenOutputFilterSensitiveLog: (
|
|
849
|
+
obj: IsAuthorizedWithTokenOutput
|
|
850
|
+
) => any;
|
|
851
|
+
export declare const PolicyFilterFilterSensitiveLog: (obj: PolicyFilter) => any;
|
|
852
|
+
export declare const ListPoliciesInputFilterSensitiveLog: (
|
|
853
|
+
obj: ListPoliciesInput
|
|
854
|
+
) => any;
|
|
855
|
+
export declare const StaticPolicyDefinitionItemFilterSensitiveLog: (
|
|
856
|
+
obj: StaticPolicyDefinitionItem
|
|
857
|
+
) => any;
|
|
858
|
+
export declare const TemplateLinkedPolicyDefinitionItemFilterSensitiveLog: (
|
|
859
|
+
obj: TemplateLinkedPolicyDefinitionItem
|
|
860
|
+
) => any;
|
|
861
|
+
export declare const PolicyDefinitionItemFilterSensitiveLog: (
|
|
862
|
+
obj: PolicyDefinitionItem
|
|
863
|
+
) => any;
|
|
864
|
+
export declare const PolicyItemFilterSensitiveLog: (obj: PolicyItem) => any;
|
|
865
|
+
export declare const ListPoliciesOutputFilterSensitiveLog: (
|
|
866
|
+
obj: ListPoliciesOutput
|
|
867
|
+
) => any;
|
|
868
|
+
export declare const PolicyTemplateItemFilterSensitiveLog: (
|
|
869
|
+
obj: PolicyTemplateItem
|
|
870
|
+
) => any;
|
|
871
|
+
export declare const ListPolicyTemplatesOutputFilterSensitiveLog: (
|
|
872
|
+
obj: ListPolicyTemplatesOutput
|
|
873
|
+
) => any;
|
|
874
|
+
export declare const UpdateStaticPolicyDefinitionFilterSensitiveLog: (
|
|
875
|
+
obj: UpdateStaticPolicyDefinition
|
|
876
|
+
) => any;
|
|
877
|
+
export declare const UpdatePolicyDefinitionFilterSensitiveLog: (
|
|
878
|
+
obj: UpdatePolicyDefinition
|
|
879
|
+
) => any;
|
|
880
|
+
export declare const UpdatePolicyInputFilterSensitiveLog: (
|
|
881
|
+
obj: UpdatePolicyInput
|
|
882
|
+
) => any;
|
|
883
|
+
export declare const UpdatePolicyOutputFilterSensitiveLog: (
|
|
884
|
+
obj: UpdatePolicyOutput
|
|
885
|
+
) => any;
|
|
886
|
+
export declare const UpdatePolicyTemplateInputFilterSensitiveLog: (
|
|
887
|
+
obj: UpdatePolicyTemplateInput
|
|
888
|
+
) => any;
|
|
889
|
+
export declare const SchemaDefinitionFilterSensitiveLog: (
|
|
890
|
+
obj: SchemaDefinition
|
|
891
|
+
) => any;
|
|
892
|
+
export declare const PutSchemaInputFilterSensitiveLog: (
|
|
893
|
+
obj: PutSchemaInput
|
|
894
|
+
) => any;
|
|
895
|
+
export declare const PutSchemaOutputFilterSensitiveLog: (
|
|
896
|
+
obj: PutSchemaOutput
|
|
897
|
+
) => any;
|
|
898
|
+
export declare const AttributeValueFilterSensitiveLog: (
|
|
899
|
+
obj: AttributeValue
|
|
900
|
+
) => any;
|
|
901
|
+
export declare const ContextDefinitionFilterSensitiveLog: (
|
|
902
|
+
obj: ContextDefinition
|
|
903
|
+
) => any;
|
|
904
|
+
export declare const EntityItemFilterSensitiveLog: (obj: EntityItem) => any;
|
|
905
|
+
export declare const EntitiesDefinitionFilterSensitiveLog: (
|
|
906
|
+
obj: EntitiesDefinition
|
|
907
|
+
) => any;
|
|
908
|
+
export declare const IsAuthorizedInputFilterSensitiveLog: (
|
|
909
|
+
obj: IsAuthorizedInput
|
|
910
|
+
) => any;
|
|
911
|
+
export declare const IsAuthorizedWithTokenInputFilterSensitiveLog: (
|
|
912
|
+
obj: IsAuthorizedWithTokenInput
|
|
913
|
+
) => any;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-verifiedpermissions",
|
|
3
3
|
"description": "AWS SDK for JavaScript Verifiedpermissions Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.397.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|