@aws-sdk/client-verifiedpermissions 3.687.0 → 3.692.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.
@@ -137,7 +137,7 @@ export interface StaticPolicyDefinitionDetail {
137
137
  * <p>A description of the static policy.</p>
138
138
  * @public
139
139
  */
140
- description?: string;
140
+ description?: string | undefined;
141
141
  /**
142
142
  * <p>The content of the static policy written in the Cedar policy language.</p>
143
143
  * @public
@@ -160,14 +160,14 @@ export interface TemplateLinkedPolicyDefinitionDetail {
160
160
  * request.</p>
161
161
  * @public
162
162
  */
163
- principal?: EntityIdentifier;
163
+ principal?: EntityIdentifier | undefined;
164
164
  /**
165
165
  * <p>The resource associated with this template-linked policy. Verified Permissions substitutes this resource for the
166
166
  * <code>?resource</code> placeholder in the policy template when it evaluates an authorization
167
167
  * request.</p>
168
168
  * @public
169
169
  */
170
- resource?: EntityIdentifier;
170
+ resource?: EntityIdentifier | undefined;
171
171
  }
172
172
  /**
173
173
  * <p>A structure that describes a policy definition. It must always have either an
@@ -315,12 +315,12 @@ export declare class ThrottlingException extends __BaseException {
315
315
  * <p>The code for the Amazon Web Services service that owns the quota.</p>
316
316
  * @public
317
317
  */
318
- serviceCode?: string;
318
+ serviceCode?: string | undefined;
319
319
  /**
320
320
  * <p>The quota code recognized by the Amazon Web Services Service Quotas service.</p>
321
321
  * @public
322
322
  */
323
- quotaCode?: string;
323
+ quotaCode?: string | undefined;
324
324
  /**
325
325
  * @internal
326
326
  */
@@ -434,7 +434,7 @@ export declare class ValidationException extends __BaseException {
434
434
  * <p>The list of fields that aren't valid.</p>
435
435
  * @public
436
436
  */
437
- fieldList?: ValidationExceptionField[];
437
+ fieldList?: ValidationExceptionField[] | undefined;
438
438
  /**
439
439
  * @internal
440
440
  */
@@ -546,7 +546,7 @@ export interface CognitoGroupConfigurationDetail {
546
546
  * to <code>AWS::CognitoGroup</code>.</p>
547
547
  * @public
548
548
  */
549
- groupEntityType?: string;
549
+ groupEntityType?: string | undefined;
550
550
  }
551
551
  /**
552
552
  * <p>The type of entity that a policy store maps to groups from an Amazon Cognito user
@@ -561,7 +561,7 @@ export interface CognitoGroupConfigurationItem {
561
561
  * to <code>AWS::CognitoGroup</code>.</p>
562
562
  * @public
563
563
  */
564
- groupEntityType?: string;
564
+ groupEntityType?: string | undefined;
565
565
  }
566
566
  /**
567
567
  * <p>The configuration for an identity source that represents a connection to an Amazon Cognito user pool used
@@ -590,13 +590,13 @@ export interface CognitoUserPoolConfiguration {
590
590
  * </p>
591
591
  * @public
592
592
  */
593
- clientIds?: string[];
593
+ clientIds?: string[] | undefined;
594
594
  /**
595
595
  * <p>The type of entity that a policy store maps to groups from an Amazon Cognito user
596
596
  * pool identity source.</p>
597
597
  * @public
598
598
  */
599
- groupConfiguration?: CognitoGroupConfiguration;
599
+ groupConfiguration?: CognitoGroupConfiguration | undefined;
600
600
  }
601
601
  /**
602
602
  * <p>The configuration for an identity source that represents a connection to an Amazon Cognito user pool used
@@ -640,7 +640,7 @@ export interface CognitoUserPoolConfigurationDetail {
640
640
  * pool identity source.</p>
641
641
  * @public
642
642
  */
643
- groupConfiguration?: CognitoGroupConfigurationDetail;
643
+ groupConfiguration?: CognitoGroupConfigurationDetail | undefined;
644
644
  }
645
645
  /**
646
646
  * <p>The configuration for an identity source that represents a connection to an Amazon Cognito user pool used
@@ -684,7 +684,7 @@ export interface CognitoUserPoolConfigurationItem {
684
684
  * pool identity source.</p>
685
685
  * @public
686
686
  */
687
- groupConfiguration?: CognitoGroupConfigurationItem;
687
+ groupConfiguration?: CognitoGroupConfigurationItem | undefined;
688
688
  }
689
689
  /**
690
690
  * <p>The claim in OIDC identity provider tokens that indicates a user's group membership, and
@@ -722,13 +722,13 @@ export interface OpenIdConnectAccessTokenConfiguration {
722
722
  * <code>sub</code>.</p>
723
723
  * @public
724
724
  */
725
- principalIdClaim?: string;
725
+ principalIdClaim?: string | undefined;
726
726
  /**
727
727
  * <p>The access token <code>aud</code> claim values that you want to accept in your policy
728
728
  * store. For example, <code>https://myapp.example.com, https://myapp2.example.com</code>.</p>
729
729
  * @public
730
730
  */
731
- audiences?: string[];
731
+ audiences?: string[] | undefined;
732
732
  }
733
733
  /**
734
734
  * <p>The configuration of an OpenID Connect (OIDC) identity source for handling identity (ID)
@@ -744,14 +744,14 @@ export interface OpenIdConnectIdentityTokenConfiguration {
744
744
  * <code>sub</code>.</p>
745
745
  * @public
746
746
  */
747
- principalIdClaim?: string;
747
+ principalIdClaim?: string | undefined;
748
748
  /**
749
749
  * <p>The ID token audience, or client ID, claim values that you want to accept in your policy
750
750
  * store from an OIDC identity provider. For example, <code>1example23456789,
751
751
  * 2example10111213</code>.</p>
752
752
  * @public
753
753
  */
754
- clientIds?: string[];
754
+ clientIds?: string[] | undefined;
755
755
  }
756
756
  /**
757
757
  * <p>The token type that you want to process from your OIDC identity provider. Your policy
@@ -825,14 +825,14 @@ export interface OpenIdConnectConfiguration {
825
825
  * <code>MyCorp::User::MyOIDCProvider|Carlos</code>.</p>
826
826
  * @public
827
827
  */
828
- entityIdPrefix?: string;
828
+ entityIdPrefix?: string | undefined;
829
829
  /**
830
830
  * <p>The claim in OIDC identity provider tokens that indicates a user's group membership, and
831
831
  * the entity type that you want to map it to. For example, this object can map the contents
832
832
  * of a <code>groups</code> claim to <code>MyCorp::UserGroup</code>.</p>
833
833
  * @public
834
834
  */
835
- groupConfiguration?: OpenIdConnectGroupConfiguration;
835
+ groupConfiguration?: OpenIdConnectGroupConfiguration | undefined;
836
836
  /**
837
837
  * <p>The token type that you want to process from your OIDC identity provider. Your policy
838
838
  * store can process either identity (ID) or access tokens from a given OIDC identity
@@ -932,13 +932,13 @@ export interface OpenIdConnectAccessTokenConfigurationDetail {
932
932
  * <code>sub</code>.</p>
933
933
  * @public
934
934
  */
935
- principalIdClaim?: string;
935
+ principalIdClaim?: string | undefined;
936
936
  /**
937
937
  * <p>The access token <code>aud</code> claim values that you want to accept in your policy
938
938
  * store. For example, <code>https://myapp.example.com, https://myapp2.example.com</code>.</p>
939
939
  * @public
940
940
  */
941
- audiences?: string[];
941
+ audiences?: string[] | undefined;
942
942
  }
943
943
  /**
944
944
  * <p>The configuration of an OpenID Connect (OIDC) identity source for handling identity (ID)
@@ -954,14 +954,14 @@ export interface OpenIdConnectIdentityTokenConfigurationDetail {
954
954
  * <code>sub</code>.</p>
955
955
  * @public
956
956
  */
957
- principalIdClaim?: string;
957
+ principalIdClaim?: string | undefined;
958
958
  /**
959
959
  * <p>The ID token audience, or client ID, claim values that you want to accept in your policy
960
960
  * store from an OIDC identity provider. For example, <code>1example23456789,
961
961
  * 2example10111213</code>.</p>
962
962
  * @public
963
963
  */
964
- clientIds?: string[];
964
+ clientIds?: string[] | undefined;
965
965
  }
966
966
  /**
967
967
  * <p>The token type that you want to process from your OIDC identity provider. Your policy
@@ -1035,14 +1035,14 @@ export interface OpenIdConnectConfigurationDetail {
1035
1035
  * <code>MyCorp::User::MyOIDCProvider|Carlos</code>.</p>
1036
1036
  * @public
1037
1037
  */
1038
- entityIdPrefix?: string;
1038
+ entityIdPrefix?: string | undefined;
1039
1039
  /**
1040
1040
  * <p>The claim in OIDC identity provider tokens that indicates a user's group membership, and
1041
1041
  * the entity type that you want to map it to. For example, this object can map the contents
1042
1042
  * of a <code>groups</code> claim to <code>MyCorp::UserGroup</code>.</p>
1043
1043
  * @public
1044
1044
  */
1045
- groupConfiguration?: OpenIdConnectGroupConfigurationDetail;
1045
+ groupConfiguration?: OpenIdConnectGroupConfigurationDetail | undefined;
1046
1046
  /**
1047
1047
  * <p>The token type that you want to process from your OIDC identity provider. Your policy
1048
1048
  * store can process either identity (ID) or access tokens from a given OIDC identity
@@ -1143,13 +1143,13 @@ export interface OpenIdConnectAccessTokenConfigurationItem {
1143
1143
  * <code>sub</code>.</p>
1144
1144
  * @public
1145
1145
  */
1146
- principalIdClaim?: string;
1146
+ principalIdClaim?: string | undefined;
1147
1147
  /**
1148
1148
  * <p>The access token <code>aud</code> claim values that you want to accept in your policy
1149
1149
  * store. For example, <code>https://myapp.example.com, https://myapp2.example.com</code>.</p>
1150
1150
  * @public
1151
1151
  */
1152
- audiences?: string[];
1152
+ audiences?: string[] | undefined;
1153
1153
  }
1154
1154
  /**
1155
1155
  * <p>The configuration of an OpenID Connect (OIDC) identity source for handling identity (ID)
@@ -1165,14 +1165,14 @@ export interface OpenIdConnectIdentityTokenConfigurationItem {
1165
1165
  * <code>sub</code>.</p>
1166
1166
  * @public
1167
1167
  */
1168
- principalIdClaim?: string;
1168
+ principalIdClaim?: string | undefined;
1169
1169
  /**
1170
1170
  * <p>The ID token audience, or client ID, claim values that you want to accept in your policy
1171
1171
  * store from an OIDC identity provider. For example, <code>1example23456789,
1172
1172
  * 2example10111213</code>.</p>
1173
1173
  * @public
1174
1174
  */
1175
- clientIds?: string[];
1175
+ clientIds?: string[] | undefined;
1176
1176
  }
1177
1177
  /**
1178
1178
  * <p>The token type that you want to process from your OIDC identity provider. Your policy
@@ -1246,14 +1246,14 @@ export interface OpenIdConnectConfigurationItem {
1246
1246
  * <code>MyCorp::User::MyOIDCProvider|Carlos</code>.</p>
1247
1247
  * @public
1248
1248
  */
1249
- entityIdPrefix?: string;
1249
+ entityIdPrefix?: string | undefined;
1250
1250
  /**
1251
1251
  * <p>The claim in OIDC identity provider tokens that indicates a user's group membership, and
1252
1252
  * the entity type that you want to map it to. For example, this object can map the contents
1253
1253
  * of a <code>groups</code> claim to <code>MyCorp::UserGroup</code>.</p>
1254
1254
  * @public
1255
1255
  */
1256
- groupConfiguration?: OpenIdConnectGroupConfigurationItem;
1256
+ groupConfiguration?: OpenIdConnectGroupConfigurationItem | undefined;
1257
1257
  /**
1258
1258
  * <p>The token type that you want to process from your OIDC identity provider. Your policy
1259
1259
  * store can process either identity (ID) or access tokens from a given OIDC identity
@@ -1373,7 +1373,7 @@ export interface CreateIdentitySourceInput {
1373
1373
  * the value of <code>ClientToken</code>.</p>
1374
1374
  * @public
1375
1375
  */
1376
- clientToken?: string;
1376
+ clientToken?: string | undefined;
1377
1377
  /**
1378
1378
  * <p>Specifies the ID of the policy store in which you want to store this identity source. Only policies and
1379
1379
  * requests made using this policy store can reference identities from the identity provider
@@ -1392,7 +1392,7 @@ export interface CreateIdentitySourceInput {
1392
1392
  * authenticated by the new identity source.</p>
1393
1393
  * @public
1394
1394
  */
1395
- principalEntityType?: string;
1395
+ principalEntityType?: string | undefined;
1396
1396
  }
1397
1397
  /**
1398
1398
  * @public
@@ -1430,7 +1430,7 @@ export declare class ServiceQuotaExceededException extends __BaseException {
1430
1430
  * <p>The unique ID of the resource referenced in the failed request.</p>
1431
1431
  * @public
1432
1432
  */
1433
- resourceId?: string;
1433
+ resourceId?: string | undefined;
1434
1434
  /**
1435
1435
  * <p>The resource type of the resource referenced in the failed request.</p>
1436
1436
  * @public
@@ -1440,12 +1440,12 @@ export declare class ServiceQuotaExceededException extends __BaseException {
1440
1440
  * <p>The code for the Amazon Web Services service that owns the quota.</p>
1441
1441
  * @public
1442
1442
  */
1443
- serviceCode?: string;
1443
+ serviceCode?: string | undefined;
1444
1444
  /**
1445
1445
  * <p>The quota code recognized by the Amazon Web Services Service Quotas service.</p>
1446
1446
  * @public
1447
1447
  */
1448
- quotaCode?: string;
1448
+ quotaCode?: string | undefined;
1449
1449
  /**
1450
1450
  * @internal
1451
1451
  */
@@ -1462,7 +1462,7 @@ export interface StaticPolicyDefinition {
1462
1462
  * <p>The description of the static policy.</p>
1463
1463
  * @public
1464
1464
  */
1465
- description?: string;
1465
+ description?: string | undefined;
1466
1466
  /**
1467
1467
  * <p>The policy content of the static policy, written in the Cedar policy language.</p>
1468
1468
  * @public
@@ -1485,14 +1485,14 @@ export interface TemplateLinkedPolicyDefinition {
1485
1485
  * request.</p>
1486
1486
  * @public
1487
1487
  */
1488
- principal?: EntityIdentifier;
1488
+ principal?: EntityIdentifier | undefined;
1489
1489
  /**
1490
1490
  * <p>The resource associated with this template-linked policy. Verified Permissions substitutes this resource for the
1491
1491
  * <code>?resource</code> placeholder in the policy template when it evaluates an authorization
1492
1492
  * request.</p>
1493
1493
  * @public
1494
1494
  */
1495
- resource?: EntityIdentifier;
1495
+ resource?: EntityIdentifier | undefined;
1496
1496
  }
1497
1497
  /**
1498
1498
  * <p>A structure that contains the details for a Cedar policy definition. It includes the
@@ -1566,7 +1566,7 @@ export interface CreatePolicyInput {
1566
1566
  * the value of <code>ClientToken</code>.</p>
1567
1567
  * @public
1568
1568
  */
1569
- clientToken?: string;
1569
+ clientToken?: string | undefined;
1570
1570
  /**
1571
1571
  * <p>Specifies the <code>PolicyStoreId</code> of the policy store you want to store the policy
1572
1572
  * in.</p>
@@ -1617,20 +1617,20 @@ export interface CreatePolicyOutput {
1617
1617
  * when <code>principal</code> isn't specified in the policy content.</p>
1618
1618
  * @public
1619
1619
  */
1620
- principal?: EntityIdentifier;
1620
+ principal?: EntityIdentifier | undefined;
1621
1621
  /**
1622
1622
  * <p>The resource specified in the new policy's scope. This response element isn't present
1623
1623
  * when the <code>resource</code> isn't specified in the policy content.</p>
1624
1624
  * @public
1625
1625
  */
1626
- resource?: EntityIdentifier;
1626
+ resource?: EntityIdentifier | undefined;
1627
1627
  /**
1628
1628
  * <p>The action that a policy permits or forbids. For example,
1629
1629
  * <code>\{"actions": [\{"actionId": "ViewPhoto", "actionType": "PhotoFlash::Action"\}, \{"entityID": "SharePhoto",
1630
1630
  * "entityType": "PhotoFlash::Action"\}]\}</code>.</p>
1631
1631
  * @public
1632
1632
  */
1633
- actions?: ActionIdentifier[];
1633
+ actions?: ActionIdentifier[] | undefined;
1634
1634
  /**
1635
1635
  * <p>The date and time the policy was originally created.</p>
1636
1636
  * @public
@@ -1646,7 +1646,7 @@ export interface CreatePolicyOutput {
1646
1646
  * request. For example, <code>"effect": "Permit"</code>.</p>
1647
1647
  * @public
1648
1648
  */
1649
- effect?: PolicyEffect;
1649
+ effect?: PolicyEffect | undefined;
1650
1650
  }
1651
1651
  /**
1652
1652
  * @public
@@ -1715,7 +1715,7 @@ export interface CreatePolicyStoreInput {
1715
1715
  * the value of <code>ClientToken</code>.</p>
1716
1716
  * @public
1717
1717
  */
1718
- clientToken?: string;
1718
+ clientToken?: string | undefined;
1719
1719
  /**
1720
1720
  * <p>Specifies the validation setting for this policy store.</p>
1721
1721
  * <p>Currently, the only valid and required value is <code>Mode</code>.</p>
@@ -1733,7 +1733,7 @@ export interface CreatePolicyStoreInput {
1733
1733
  * of the current policy store.</p>
1734
1734
  * @public
1735
1735
  */
1736
- description?: string;
1736
+ description?: string | undefined;
1737
1737
  }
1738
1738
  /**
1739
1739
  * @public
@@ -1781,7 +1781,7 @@ export interface CreatePolicyTemplateInput {
1781
1781
  * the value of <code>ClientToken</code>.</p>
1782
1782
  * @public
1783
1783
  */
1784
- clientToken?: string;
1784
+ clientToken?: string | undefined;
1785
1785
  /**
1786
1786
  * <p>The ID of the policy store in which to create the policy template.</p>
1787
1787
  * @public
@@ -1791,7 +1791,7 @@ export interface CreatePolicyTemplateInput {
1791
1791
  * <p>Specifies a description for the policy template.</p>
1792
1792
  * @public
1793
1793
  */
1794
- description?: string;
1794
+ description?: string | undefined;
1795
1795
  /**
1796
1796
  * <p>Specifies the content that you want to use for the new policy template, written in the Cedar
1797
1797
  * policy language.</p>
@@ -1989,7 +1989,7 @@ export interface IdentitySourceDetails {
1989
1989
  * enabled for this identity source.</p>
1990
1990
  * @public
1991
1991
  */
1992
- clientIds?: string[];
1992
+ clientIds?: string[] | undefined;
1993
1993
  /**
1994
1994
  * @deprecated
1995
1995
  *
@@ -1997,7 +1997,7 @@ export interface IdentitySourceDetails {
1997
1997
  * policy store.</p>
1998
1998
  * @public
1999
1999
  */
2000
- userPoolArn?: string;
2000
+ userPoolArn?: string | undefined;
2001
2001
  /**
2002
2002
  * @deprecated
2003
2003
  *
@@ -2010,7 +2010,7 @@ export interface IdentitySourceDetails {
2010
2010
  * </p>
2011
2011
  * @public
2012
2012
  */
2013
- discoveryUrl?: string;
2013
+ discoveryUrl?: string | undefined;
2014
2014
  /**
2015
2015
  * @deprecated
2016
2016
  *
@@ -2018,7 +2018,7 @@ export interface IdentitySourceDetails {
2018
2018
  * <p>At this time, the only valid value is <code>cognito</code>.</p>
2019
2019
  * @public
2020
2020
  */
2021
- openIdIssuer?: OpenIdIssuer;
2021
+ openIdIssuer?: OpenIdIssuer | undefined;
2022
2022
  }
2023
2023
  /**
2024
2024
  * @public
@@ -2035,7 +2035,7 @@ export interface GetIdentitySourceOutput {
2035
2035
  * <p>A structure that describes the configuration of the identity source.</p>
2036
2036
  * @public
2037
2037
  */
2038
- details?: IdentitySourceDetails;
2038
+ details?: IdentitySourceDetails | undefined;
2039
2039
  /**
2040
2040
  * <p>The ID of the identity source.</p>
2041
2041
  * @public
@@ -2061,7 +2061,7 @@ export interface GetIdentitySourceOutput {
2061
2061
  * <p>Contains configuration information about an identity source.</p>
2062
2062
  * @public
2063
2063
  */
2064
- configuration?: ConfigurationDetail;
2064
+ configuration?: ConfigurationDetail | undefined;
2065
2065
  }
2066
2066
  /**
2067
2067
  * @public
@@ -2103,20 +2103,20 @@ export interface GetPolicyOutput {
2103
2103
  * response when <code>Principal</code> isn't present in the policy content.</p>
2104
2104
  * @public
2105
2105
  */
2106
- principal?: EntityIdentifier;
2106
+ principal?: EntityIdentifier | undefined;
2107
2107
  /**
2108
2108
  * <p>The resource specified in the policy's scope. This element isn't included in the
2109
2109
  * response when <code>Resource</code> isn't present in the policy content.</p>
2110
2110
  * @public
2111
2111
  */
2112
- resource?: EntityIdentifier;
2112
+ resource?: EntityIdentifier | undefined;
2113
2113
  /**
2114
2114
  * <p>The action that a policy permits or forbids. For example,
2115
2115
  * <code>\{"actions": [\{"actionId": "ViewPhoto", "actionType": "PhotoFlash::Action"\}, \{"entityID": "SharePhoto",
2116
2116
  * "entityType": "PhotoFlash::Action"\}]\}</code>.</p>
2117
2117
  * @public
2118
2118
  */
2119
- actions?: ActionIdentifier[];
2119
+ actions?: ActionIdentifier[] | undefined;
2120
2120
  /**
2121
2121
  * <p>The definition of the requested policy.</p>
2122
2122
  * @public
@@ -2137,7 +2137,7 @@ export interface GetPolicyOutput {
2137
2137
  * request. For example, <code>"effect": "Permit"</code>.</p>
2138
2138
  * @public
2139
2139
  */
2140
- effect?: PolicyEffect;
2140
+ effect?: PolicyEffect | undefined;
2141
2141
  }
2142
2142
  /**
2143
2143
  * @public
@@ -2183,7 +2183,7 @@ export interface GetPolicyStoreOutput {
2183
2183
  * of the current policy store.</p>
2184
2184
  * @public
2185
2185
  */
2186
- description?: string;
2186
+ description?: string | undefined;
2187
2187
  }
2188
2188
  /**
2189
2189
  * @public
@@ -2219,7 +2219,7 @@ export interface GetPolicyTemplateOutput {
2219
2219
  * <p>The description of the policy template.</p>
2220
2220
  * @public
2221
2221
  */
2222
- description?: string;
2222
+ description?: string | undefined;
2223
2223
  /**
2224
2224
  * <p>The content of the body of the policy template written in the Cedar policy language.</p>
2225
2225
  * @public
@@ -2274,7 +2274,7 @@ export interface GetSchemaOutput {
2274
2274
  * <p>The namespaces of the entities referenced by this schema.</p>
2275
2275
  * @public
2276
2276
  */
2277
- namespaces?: string[];
2277
+ namespaces?: string[] | undefined;
2278
2278
  }
2279
2279
  /**
2280
2280
  * <p>A structure that defines characteristics of an identity source that you can use to
@@ -2289,7 +2289,7 @@ export interface IdentitySourceFilter {
2289
2289
  * associated with this identity source.</p>
2290
2290
  * @public
2291
2291
  */
2292
- principalEntityType?: string;
2292
+ principalEntityType?: string | undefined;
2293
2293
  }
2294
2294
  /**
2295
2295
  * @public
@@ -2308,7 +2308,7 @@ export interface ListIdentitySourcesInput {
2308
2308
  * next page of results.</p>
2309
2309
  * @public
2310
2310
  */
2311
- nextToken?: string;
2311
+ nextToken?: string | undefined;
2312
2312
  /**
2313
2313
  * <p>Specifies the total number of results that you want included in each
2314
2314
  * response. If additional items exist beyond the number you specify, the
@@ -2322,13 +2322,13 @@ export interface ListIdentitySourcesInput {
2322
2322
  * You can specify a maximum of 50 identity sources per response.</p>
2323
2323
  * @public
2324
2324
  */
2325
- maxResults?: number;
2325
+ maxResults?: number | undefined;
2326
2326
  /**
2327
2327
  * <p>Specifies characteristics of an identity source that you can use to limit the output to matching
2328
2328
  * identity sources.</p>
2329
2329
  * @public
2330
2330
  */
2331
- filters?: IdentitySourceFilter[];
2331
+ filters?: IdentitySourceFilter[] | undefined;
2332
2332
  }
2333
2333
  /**
2334
2334
  * <p>A structure that contains configuration of the identity source.</p>
@@ -2346,14 +2346,14 @@ export interface IdentitySourceItemDetails {
2346
2346
  * enabled for this identity source.</p>
2347
2347
  * @public
2348
2348
  */
2349
- clientIds?: string[];
2349
+ clientIds?: string[] | undefined;
2350
2350
  /**
2351
2351
  * @deprecated
2352
2352
  *
2353
2353
  * <p>The Amazon Cognito user pool whose identities are accessible to this Verified Permissions policy store.</p>
2354
2354
  * @public
2355
2355
  */
2356
- userPoolArn?: string;
2356
+ userPoolArn?: string | undefined;
2357
2357
  /**
2358
2358
  * @deprecated
2359
2359
  *
@@ -2366,7 +2366,7 @@ export interface IdentitySourceItemDetails {
2366
2366
  * </p>
2367
2367
  * @public
2368
2368
  */
2369
- discoveryUrl?: string;
2369
+ discoveryUrl?: string | undefined;
2370
2370
  /**
2371
2371
  * @deprecated
2372
2372
  *
@@ -2374,7 +2374,7 @@ export interface IdentitySourceItemDetails {
2374
2374
  * <p>At this time, the only valid value is <code>cognito</code>.</p>
2375
2375
  * @public
2376
2376
  */
2377
- openIdIssuer?: OpenIdIssuer;
2377
+ openIdIssuer?: OpenIdIssuer | undefined;
2378
2378
  }
2379
2379
  /**
2380
2380
  * <p>A structure that defines an identity source.</p>
@@ -2395,7 +2395,7 @@ export interface IdentitySourceItem {
2395
2395
  * (IdP).</p>
2396
2396
  * @public
2397
2397
  */
2398
- details?: IdentitySourceItemDetails;
2398
+ details?: IdentitySourceItemDetails | undefined;
2399
2399
  /**
2400
2400
  * <p>The unique identifier of the identity source.</p>
2401
2401
  * @public
@@ -2421,7 +2421,7 @@ export interface IdentitySourceItem {
2421
2421
  * <p>Contains configuration information about an identity source.</p>
2422
2422
  * @public
2423
2423
  */
2424
- configuration?: ConfigurationItem;
2424
+ configuration?: ConfigurationItem | undefined;
2425
2425
  }
2426
2426
  /**
2427
2427
  * @public
@@ -2435,7 +2435,7 @@ export interface ListIdentitySourcesOutput {
2435
2435
  * back as <code>null</code>. This indicates that this is the last page of results.</p>
2436
2436
  * @public
2437
2437
  */
2438
- nextToken?: string;
2438
+ nextToken?: string | undefined;
2439
2439
  /**
2440
2440
  * <p>The list of identity sources stored in the specified policy store.</p>
2441
2441
  * @public
@@ -2470,13 +2470,13 @@ export interface UpdateCognitoUserPoolConfiguration {
2470
2470
  * pool.</p>
2471
2471
  * @public
2472
2472
  */
2473
- clientIds?: string[];
2473
+ clientIds?: string[] | undefined;
2474
2474
  /**
2475
2475
  * <p>The configuration of the user groups from an Amazon Cognito user pool identity
2476
2476
  * source.</p>
2477
2477
  * @public
2478
2478
  */
2479
- groupConfiguration?: UpdateCognitoGroupConfiguration;
2479
+ groupConfiguration?: UpdateCognitoGroupConfiguration | undefined;
2480
2480
  }
2481
2481
  /**
2482
2482
  * <p>The claim in OIDC identity provider tokens that indicates a user's group membership, and
@@ -2514,13 +2514,13 @@ export interface UpdateOpenIdConnectAccessTokenConfiguration {
2514
2514
  * <code>sub</code>.</p>
2515
2515
  * @public
2516
2516
  */
2517
- principalIdClaim?: string;
2517
+ principalIdClaim?: string | undefined;
2518
2518
  /**
2519
2519
  * <p>The access token <code>aud</code> claim values that you want to accept in your policy
2520
2520
  * store. For example, <code>https://myapp.example.com, https://myapp2.example.com</code>.</p>
2521
2521
  * @public
2522
2522
  */
2523
- audiences?: string[];
2523
+ audiences?: string[] | undefined;
2524
2524
  }
2525
2525
  /**
2526
2526
  * <p>The configuration of an OpenID Connect (OIDC) identity source for handling identity (ID)
@@ -2536,14 +2536,14 @@ export interface UpdateOpenIdConnectIdentityTokenConfiguration {
2536
2536
  * <code>sub</code>.</p>
2537
2537
  * @public
2538
2538
  */
2539
- principalIdClaim?: string;
2539
+ principalIdClaim?: string | undefined;
2540
2540
  /**
2541
2541
  * <p>The ID token audience, or client ID, claim values that you want to accept in your policy
2542
2542
  * store from an OIDC identity provider. For example, <code>1example23456789,
2543
2543
  * 2example10111213</code>.</p>
2544
2544
  * @public
2545
2545
  */
2546
- clientIds?: string[];
2546
+ clientIds?: string[] | undefined;
2547
2547
  }
2548
2548
  /**
2549
2549
  * <p>The token type that you want to process from your OIDC identity provider. Your policy
@@ -2617,14 +2617,14 @@ export interface UpdateOpenIdConnectConfiguration {
2617
2617
  * <code>MyCorp::User::MyOIDCProvider|Carlos</code>.</p>
2618
2618
  * @public
2619
2619
  */
2620
- entityIdPrefix?: string;
2620
+ entityIdPrefix?: string | undefined;
2621
2621
  /**
2622
2622
  * <p>The claim in OIDC identity provider tokens that indicates a user's group membership, and
2623
2623
  * the entity type that you want to map it to. For example, this object can map the contents
2624
2624
  * of a <code>groups</code> claim to <code>MyCorp::UserGroup</code>.</p>
2625
2625
  * @public
2626
2626
  */
2627
- groupConfiguration?: UpdateOpenIdConnectGroupConfiguration;
2627
+ groupConfiguration?: UpdateOpenIdConnectGroupConfiguration | undefined;
2628
2628
  /**
2629
2629
  * <p>The token type that you want to process from your OIDC identity provider. Your policy
2630
2630
  * store can process either identity (ID) or access tokens from a given OIDC identity
@@ -2704,7 +2704,7 @@ export interface UpdateIdentitySourceInput {
2704
2704
  * identity source.</p>
2705
2705
  * @public
2706
2706
  */
2707
- principalEntityType?: string;
2707
+ principalEntityType?: string | undefined;
2708
2708
  }
2709
2709
  /**
2710
2710
  * @public
@@ -2788,7 +2788,7 @@ export interface IsAuthorizedWithTokenOutput {
2788
2788
  * <p>The identifier of the principal in the ID or access token.</p>
2789
2789
  * @public
2790
2790
  */
2791
- principal?: EntityIdentifier;
2791
+ principal?: EntityIdentifier | undefined;
2792
2792
  }
2793
2793
  /**
2794
2794
  * <p>Contains information about a filter to refine policies returned in a query.</p>
@@ -2800,23 +2800,23 @@ export interface PolicyFilter {
2800
2800
  * <p>Filters the output to only policies that reference the specified principal.</p>
2801
2801
  * @public
2802
2802
  */
2803
- principal?: EntityReference;
2803
+ principal?: EntityReference | undefined;
2804
2804
  /**
2805
2805
  * <p>Filters the output to only policies that reference the specified resource.</p>
2806
2806
  * @public
2807
2807
  */
2808
- resource?: EntityReference;
2808
+ resource?: EntityReference | undefined;
2809
2809
  /**
2810
2810
  * <p>Filters the output to only policies of the specified type.</p>
2811
2811
  * @public
2812
2812
  */
2813
- policyType?: PolicyType;
2813
+ policyType?: PolicyType | undefined;
2814
2814
  /**
2815
2815
  * <p>Filters the output to only template-linked policies that were instantiated from the specified
2816
2816
  * policy template.</p>
2817
2817
  * @public
2818
2818
  */
2819
- policyTemplateId?: string;
2819
+ policyTemplateId?: string | undefined;
2820
2820
  }
2821
2821
  /**
2822
2822
  * @public
@@ -2835,7 +2835,7 @@ export interface ListPoliciesInput {
2835
2835
  * next page of results.</p>
2836
2836
  * @public
2837
2837
  */
2838
- nextToken?: string;
2838
+ nextToken?: string | undefined;
2839
2839
  /**
2840
2840
  * <p>Specifies the total number of results that you want included in each
2841
2841
  * response. If additional items exist beyond the number you specify, the
@@ -2849,14 +2849,14 @@ export interface ListPoliciesInput {
2849
2849
  * response. You can specify a maximum of 50 policies per response.</p>
2850
2850
  * @public
2851
2851
  */
2852
- maxResults?: number;
2852
+ maxResults?: number | undefined;
2853
2853
  /**
2854
2854
  * <p>Specifies a filter that limits the response to only policies that match the specified
2855
2855
  * criteria. For example, you list only the policies that reference a specified
2856
2856
  * principal.</p>
2857
2857
  * @public
2858
2858
  */
2859
- filter?: PolicyFilter;
2859
+ filter?: PolicyFilter | undefined;
2860
2860
  }
2861
2861
  /**
2862
2862
  * <p>A structure that contains details about a static policy. It includes the description and
@@ -2870,7 +2870,7 @@ export interface StaticPolicyDefinitionItem {
2870
2870
  * <p>A description of the static policy.</p>
2871
2871
  * @public
2872
2872
  */
2873
- description?: string;
2873
+ description?: string | undefined;
2874
2874
  }
2875
2875
  /**
2876
2876
  * <p>Contains information about a policy created by instantiating a policy template. </p>
@@ -2889,14 +2889,14 @@ export interface TemplateLinkedPolicyDefinitionItem {
2889
2889
  * request.</p>
2890
2890
  * @public
2891
2891
  */
2892
- principal?: EntityIdentifier;
2892
+ principal?: EntityIdentifier | undefined;
2893
2893
  /**
2894
2894
  * <p>The resource associated with this template-linked policy. Verified Permissions substitutes this resource for the
2895
2895
  * <code>?resource</code> placeholder in the policy template when it evaluates an authorization
2896
2896
  * request.</p>
2897
2897
  * @public
2898
2898
  */
2899
- resource?: EntityIdentifier;
2899
+ resource?: EntityIdentifier | undefined;
2900
2900
  }
2901
2901
  /**
2902
2902
  * <p>A structure that describes a <a href="https://docs.aws.amazon.com/verifiedpermissions/latest/apireference/API_PolicyDefinintion.html">PolicyDefinintion</a>. It will
@@ -2982,19 +2982,19 @@ export interface PolicyItem {
2982
2982
  * <p>The principal associated with the policy.</p>
2983
2983
  * @public
2984
2984
  */
2985
- principal?: EntityIdentifier;
2985
+ principal?: EntityIdentifier | undefined;
2986
2986
  /**
2987
2987
  * <p>The resource associated with the policy.</p>
2988
2988
  * @public
2989
2989
  */
2990
- resource?: EntityIdentifier;
2990
+ resource?: EntityIdentifier | undefined;
2991
2991
  /**
2992
2992
  * <p>The action that a policy permits or forbids. For example,
2993
2993
  * <code>\{"actions": [\{"actionId": "ViewPhoto", "actionType": "PhotoFlash::Action"\}, \{"entityID": "SharePhoto",
2994
2994
  * "entityType": "PhotoFlash::Action"\}]\}</code>.</p>
2995
2995
  * @public
2996
2996
  */
2997
- actions?: ActionIdentifier[];
2997
+ actions?: ActionIdentifier[] | undefined;
2998
2998
  /**
2999
2999
  * <p>The policy definition of an item in the list of policies returned.</p>
3000
3000
  * @public
@@ -3015,7 +3015,7 @@ export interface PolicyItem {
3015
3015
  * request. For example, <code>"effect": "Permit"</code>.</p>
3016
3016
  * @public
3017
3017
  */
3018
- effect?: PolicyEffect;
3018
+ effect?: PolicyEffect | undefined;
3019
3019
  }
3020
3020
  /**
3021
3021
  * @public
@@ -3029,7 +3029,7 @@ export interface ListPoliciesOutput {
3029
3029
  * back as <code>null</code>. This indicates that this is the last page of results.</p>
3030
3030
  * @public
3031
3031
  */
3032
- nextToken?: string;
3032
+ nextToken?: string | undefined;
3033
3033
  /**
3034
3034
  * <p>Lists all policies that are available in the specified policy store.</p>
3035
3035
  * @public
@@ -3048,7 +3048,7 @@ export interface ListPolicyStoresInput {
3048
3048
  * next page of results.</p>
3049
3049
  * @public
3050
3050
  */
3051
- nextToken?: string;
3051
+ nextToken?: string | undefined;
3052
3052
  /**
3053
3053
  * <p>Specifies the total number of results that you want included in each
3054
3054
  * response. If additional items exist beyond the number you specify, the
@@ -3062,7 +3062,7 @@ export interface ListPolicyStoresInput {
3062
3062
  * You can specify a maximum of 50 policy stores per response.</p>
3063
3063
  * @public
3064
3064
  */
3065
- maxResults?: number;
3065
+ maxResults?: number | undefined;
3066
3066
  }
3067
3067
  /**
3068
3068
  * <p>Contains information about a policy store.</p>
@@ -3090,13 +3090,13 @@ export interface PolicyStoreItem {
3090
3090
  * <p>The date and time the policy store was most recently updated.</p>
3091
3091
  * @public
3092
3092
  */
3093
- lastUpdatedDate?: Date;
3093
+ lastUpdatedDate?: Date | undefined;
3094
3094
  /**
3095
3095
  * <p>Descriptive text that you can provide to help with identification
3096
3096
  * of the current policy store.</p>
3097
3097
  * @public
3098
3098
  */
3099
- description?: string;
3099
+ description?: string | undefined;
3100
3100
  }
3101
3101
  /**
3102
3102
  * @public
@@ -3110,7 +3110,7 @@ export interface ListPolicyStoresOutput {
3110
3110
  * back as <code>null</code>. This indicates that this is the last page of results.</p>
3111
3111
  * @public
3112
3112
  */
3113
- nextToken?: string;
3113
+ nextToken?: string | undefined;
3114
3114
  /**
3115
3115
  * <p>The list of policy stores in the account.</p>
3116
3116
  * @public
@@ -3134,7 +3134,7 @@ export interface ListPolicyTemplatesInput {
3134
3134
  * next page of results.</p>
3135
3135
  * @public
3136
3136
  */
3137
- nextToken?: string;
3137
+ nextToken?: string | undefined;
3138
3138
  /**
3139
3139
  * <p>Specifies the total number of results that you want included in each
3140
3140
  * response. If additional items exist beyond the number you specify, the
@@ -3148,7 +3148,7 @@ export interface ListPolicyTemplatesInput {
3148
3148
  * You can specify a maximum of 50 policy templates per response.</p>
3149
3149
  * @public
3150
3150
  */
3151
- maxResults?: number;
3151
+ maxResults?: number | undefined;
3152
3152
  }
3153
3153
  /**
3154
3154
  * <p>Contains details about a policy template</p>
@@ -3171,7 +3171,7 @@ export interface PolicyTemplateItem {
3171
3171
  * <p>The description attached to the policy template.</p>
3172
3172
  * @public
3173
3173
  */
3174
- description?: string;
3174
+ description?: string | undefined;
3175
3175
  /**
3176
3176
  * <p>The date and time that the policy template was created.</p>
3177
3177
  * @public
@@ -3195,7 +3195,7 @@ export interface ListPolicyTemplatesOutput {
3195
3195
  * back as <code>null</code>. This indicates that this is the last page of results.</p>
3196
3196
  * @public
3197
3197
  */
3198
- nextToken?: string;
3198
+ nextToken?: string | undefined;
3199
3199
  /**
3200
3200
  * <p>The list of the policy templates in the specified policy store.</p>
3201
3201
  * @public
@@ -3211,7 +3211,7 @@ export interface UpdateStaticPolicyDefinition {
3211
3211
  * <p>Specifies the description to be added to or replaced on the static policy.</p>
3212
3212
  * @public
3213
3213
  */
3214
- description?: string;
3214
+ description?: string | undefined;
3215
3215
  /**
3216
3216
  * <p>Specifies the Cedar policy language text to be added to or replaced on the static policy.</p>
3217
3217
  * <important>
@@ -3350,20 +3350,20 @@ export interface UpdatePolicyOutput {
3350
3350
  * response when <code>Principal</code> isn't present in the policy content.</p>
3351
3351
  * @public
3352
3352
  */
3353
- principal?: EntityIdentifier;
3353
+ principal?: EntityIdentifier | undefined;
3354
3354
  /**
3355
3355
  * <p>The resource specified in the policy's scope. This element isn't included in the
3356
3356
  * response when <code>Resource</code> isn't present in the policy content.</p>
3357
3357
  * @public
3358
3358
  */
3359
- resource?: EntityIdentifier;
3359
+ resource?: EntityIdentifier | undefined;
3360
3360
  /**
3361
3361
  * <p>The action that a policy permits or forbids. For example,
3362
3362
  * <code>\{"actions": [\{"actionId": "ViewPhoto", "actionType": "PhotoFlash::Action"\}, \{"entityID": "SharePhoto",
3363
3363
  * "entityType": "PhotoFlash::Action"\}]\}</code>.</p>
3364
3364
  * @public
3365
3365
  */
3366
- actions?: ActionIdentifier[];
3366
+ actions?: ActionIdentifier[] | undefined;
3367
3367
  /**
3368
3368
  * <p>The date and time that the policy was originally created.</p>
3369
3369
  * @public
@@ -3379,7 +3379,7 @@ export interface UpdatePolicyOutput {
3379
3379
  * request. For example, <code>"effect": "Permit"</code>.</p>
3380
3380
  * @public
3381
3381
  */
3382
- effect?: PolicyEffect;
3382
+ effect?: PolicyEffect | undefined;
3383
3383
  }
3384
3384
  /**
3385
3385
  * @public
@@ -3399,7 +3399,7 @@ export interface UpdatePolicyTemplateInput {
3399
3399
  * <p>Specifies a new description to apply to the policy template.</p>
3400
3400
  * @public
3401
3401
  */
3402
- description?: string;
3402
+ description?: string | undefined;
3403
3403
  /**
3404
3404
  * <p>Specifies new statement content written in Cedar policy language to replace the
3405
3405
  * current body of the policy template.</p>
@@ -3551,7 +3551,7 @@ export interface UpdatePolicyStoreInput {
3551
3551
  * of the current policy store.</p>
3552
3552
  * @public
3553
3553
  */
3554
- description?: string;
3554
+ description?: string | undefined;
3555
3555
  }
3556
3556
  /**
3557
3557
  * @public
@@ -3823,7 +3823,7 @@ export interface EntityItem {
3823
3823
  * <p>A list of attributes for the entity.</p>
3824
3824
  * @public
3825
3825
  */
3826
- attributes?: Record<string, AttributeValue>;
3826
+ attributes?: Record<string, AttributeValue> | undefined;
3827
3827
  /**
3828
3828
  * <p>The parent entities in the hierarchy that contains the entity. A principal or resource
3829
3829
  * entity can be defined with at most 99 <i>transitive parents</i> per
@@ -3834,7 +3834,7 @@ export interface EntityItem {
3834
3834
  * parents, and eight parents of parents. </p>
3835
3835
  * @public
3836
3836
  */
3837
- parents?: EntityIdentifier[];
3837
+ parents?: EntityIdentifier[] | undefined;
3838
3838
  }
3839
3839
  /**
3840
3840
  * <p>An authorization request that you include in a <code>BatchIsAuthorized</code> API
@@ -3846,25 +3846,25 @@ export interface BatchIsAuthorizedInputItem {
3846
3846
  * <p>Specifies the principal for which the authorization decision is to be made.</p>
3847
3847
  * @public
3848
3848
  */
3849
- principal?: EntityIdentifier;
3849
+ principal?: EntityIdentifier | undefined;
3850
3850
  /**
3851
3851
  * <p>Specifies the requested action to be authorized. For example,
3852
3852
  * <code>PhotoFlash::ReadPhoto</code>.</p>
3853
3853
  * @public
3854
3854
  */
3855
- action?: ActionIdentifier;
3855
+ action?: ActionIdentifier | undefined;
3856
3856
  /**
3857
3857
  * <p>Specifies the resource that you want an authorization decision for. For example,
3858
3858
  * <code>PhotoFlash::Photo</code>.</p>
3859
3859
  * @public
3860
3860
  */
3861
- resource?: EntityIdentifier;
3861
+ resource?: EntityIdentifier | undefined;
3862
3862
  /**
3863
3863
  * <p>Specifies additional context that can be used to make more granular authorization
3864
3864
  * decisions.</p>
3865
3865
  * @public
3866
3866
  */
3867
- context?: ContextDefinition;
3867
+ context?: ContextDefinition | undefined;
3868
3868
  }
3869
3869
  /**
3870
3870
  * <p>An authorization request that you include in a <code>BatchIsAuthorizedWithToken</code>
@@ -3877,19 +3877,19 @@ export interface BatchIsAuthorizedWithTokenInputItem {
3877
3877
  * <code>PhotoFlash::ReadPhoto</code>.</p>
3878
3878
  * @public
3879
3879
  */
3880
- action?: ActionIdentifier;
3880
+ action?: ActionIdentifier | undefined;
3881
3881
  /**
3882
3882
  * <p>Specifies the resource that you want an authorization decision for. For example,
3883
3883
  * <code>PhotoFlash::Photo</code>.</p>
3884
3884
  * @public
3885
3885
  */
3886
- resource?: EntityIdentifier;
3886
+ resource?: EntityIdentifier | undefined;
3887
3887
  /**
3888
3888
  * <p>Specifies additional context that can be used to make more granular authorization
3889
3889
  * decisions.</p>
3890
3890
  * @public
3891
3891
  */
3892
- context?: ContextDefinition;
3892
+ context?: ContextDefinition | undefined;
3893
3893
  }
3894
3894
  /**
3895
3895
  * <p>The decision, based on policy evaluation, from an individual authorization request in
@@ -4013,7 +4013,7 @@ export interface BatchIsAuthorizedWithTokenOutput {
4013
4013
  * <p>The identifier of the principal in the ID or access token.</p>
4014
4014
  * @public
4015
4015
  */
4016
- principal?: EntityIdentifier;
4016
+ principal?: EntityIdentifier | undefined;
4017
4017
  /**
4018
4018
  * <p>A series of <code>Allow</code> or <code>Deny</code> decisions for each request, and
4019
4019
  * the policies that produced them. These results are returned in the order they were requested.</p>
@@ -4035,24 +4035,24 @@ export interface IsAuthorizedInput {
4035
4035
  * <p>Specifies the principal for which the authorization decision is to be made.</p>
4036
4036
  * @public
4037
4037
  */
4038
- principal?: EntityIdentifier;
4038
+ principal?: EntityIdentifier | undefined;
4039
4039
  /**
4040
4040
  * <p>Specifies the requested action to be authorized. For example, is the principal
4041
4041
  * authorized to perform this action on the resource?</p>
4042
4042
  * @public
4043
4043
  */
4044
- action?: ActionIdentifier;
4044
+ action?: ActionIdentifier | undefined;
4045
4045
  /**
4046
4046
  * <p>Specifies the resource for which the authorization decision is to be made.</p>
4047
4047
  * @public
4048
4048
  */
4049
- resource?: EntityIdentifier;
4049
+ resource?: EntityIdentifier | undefined;
4050
4050
  /**
4051
4051
  * <p>Specifies additional context that can be used to make more granular authorization
4052
4052
  * decisions.</p>
4053
4053
  * @public
4054
4054
  */
4055
- context?: ContextDefinition;
4055
+ context?: ContextDefinition | undefined;
4056
4056
  /**
4057
4057
  * <p>Specifies the list of resources and principals and their associated attributes that
4058
4058
  * Verified Permissions can examine when evaluating the policies. </p>
@@ -4062,7 +4062,7 @@ export interface IsAuthorizedInput {
4062
4062
  * </note>
4063
4063
  * @public
4064
4064
  */
4065
- entities?: EntitiesDefinition;
4065
+ entities?: EntitiesDefinition | undefined;
4066
4066
  }
4067
4067
  /**
4068
4068
  * @public
@@ -4083,7 +4083,7 @@ export interface IsAuthorizedWithTokenInput {
4083
4083
  * submitted token isn't <code>id</code>.</p>
4084
4084
  * @public
4085
4085
  */
4086
- identityToken?: string;
4086
+ identityToken?: string | undefined;
4087
4087
  /**
4088
4088
  * <p>Specifies an access token for the principal to be authorized. This token is provided
4089
4089
  * to you by the identity provider (IdP) associated with the specified identity source. You must
@@ -4093,25 +4093,25 @@ export interface IsAuthorizedWithTokenInput {
4093
4093
  * the submitted token isn't <code>access</code>.</p>
4094
4094
  * @public
4095
4095
  */
4096
- accessToken?: string;
4096
+ accessToken?: string | undefined;
4097
4097
  /**
4098
4098
  * <p>Specifies the requested action to be authorized. Is the specified principal authorized
4099
4099
  * to perform this action on the specified resource.</p>
4100
4100
  * @public
4101
4101
  */
4102
- action?: ActionIdentifier;
4102
+ action?: ActionIdentifier | undefined;
4103
4103
  /**
4104
4104
  * <p>Specifies the resource for which the authorization decision is made. For example, is
4105
4105
  * the principal allowed to perform the action on the resource?</p>
4106
4106
  * @public
4107
4107
  */
4108
- resource?: EntityIdentifier;
4108
+ resource?: EntityIdentifier | undefined;
4109
4109
  /**
4110
4110
  * <p>Specifies additional context that can be used to make more granular authorization
4111
4111
  * decisions.</p>
4112
4112
  * @public
4113
4113
  */
4114
- context?: ContextDefinition;
4114
+ context?: ContextDefinition | undefined;
4115
4115
  /**
4116
4116
  * <p>Specifies the list of resources and their associated attributes that Verified Permissions can examine
4117
4117
  * when evaluating the policies. </p>
@@ -4136,7 +4136,7 @@ export interface IsAuthorizedWithTokenInput {
4136
4136
  * </important>
4137
4137
  * @public
4138
4138
  */
4139
- entities?: EntitiesDefinition;
4139
+ entities?: EntitiesDefinition | undefined;
4140
4140
  }
4141
4141
  /**
4142
4142
  * @public
@@ -4157,7 +4157,7 @@ export interface BatchIsAuthorizedInput {
4157
4157
  * </note>
4158
4158
  * @public
4159
4159
  */
4160
- entities?: EntitiesDefinition;
4160
+ entities?: EntitiesDefinition | undefined;
4161
4161
  /**
4162
4162
  * <p>An array of up to 30 requests that you want Verified Permissions to evaluate.</p>
4163
4163
  * @public
@@ -4183,7 +4183,7 @@ export interface BatchIsAuthorizedWithTokenInput {
4183
4183
  * submitted token isn't <code>id</code>.</p>
4184
4184
  * @public
4185
4185
  */
4186
- identityToken?: string;
4186
+ identityToken?: string | undefined;
4187
4187
  /**
4188
4188
  * <p>Specifies an access token for the principal that you want to authorize in each
4189
4189
  * request. This token is provided to you by the identity provider (IdP) associated with
@@ -4193,7 +4193,7 @@ export interface BatchIsAuthorizedWithTokenInput {
4193
4193
  * the submitted token isn't <code>access</code>.</p>
4194
4194
  * @public
4195
4195
  */
4196
- accessToken?: string;
4196
+ accessToken?: string | undefined;
4197
4197
  /**
4198
4198
  * <p>Specifies the list of resources and their associated attributes that Verified Permissions can examine
4199
4199
  * when evaluating the policies. </p>
@@ -4218,7 +4218,7 @@ export interface BatchIsAuthorizedWithTokenInput {
4218
4218
  * </important>
4219
4219
  * @public
4220
4220
  */
4221
- entities?: EntitiesDefinition;
4221
+ entities?: EntitiesDefinition | undefined;
4222
4222
  /**
4223
4223
  * <p>An array of up to 30 requests that you want Verified Permissions to evaluate.</p>
4224
4224
  * @public