@aws-sdk/client-iam 3.686.0 → 3.691.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.
|
@@ -42,7 +42,7 @@ export interface AccessDetail {
|
|
|
42
42
|
* service within the <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_access-advisor.html#service-last-accessed-reporting-period">tracking period</a>.</p>
|
|
43
43
|
* @public
|
|
44
44
|
*/
|
|
45
|
-
Region?: string;
|
|
45
|
+
Region?: string | undefined;
|
|
46
46
|
/**
|
|
47
47
|
* <p>The path of the Organizations entity (root, organizational unit, or account) from which an
|
|
48
48
|
* authenticated principal last attempted to access the service. Amazon Web Services does not report
|
|
@@ -51,7 +51,7 @@ export interface AccessDetail {
|
|
|
51
51
|
* reported Organizations entity attempted to access the service within the <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_access-advisor.html#service-last-accessed-reporting-period">tracking period</a>.</p>
|
|
52
52
|
* @public
|
|
53
53
|
*/
|
|
54
|
-
EntityPath?: string;
|
|
54
|
+
EntityPath?: string | undefined;
|
|
55
55
|
/**
|
|
56
56
|
* <p>The date and time, in <a href="http://www.iso.org/iso/iso8601">ISO 8601 date-time
|
|
57
57
|
* format</a>, when an authenticated principal most recently attempted to access the
|
|
@@ -60,13 +60,13 @@ export interface AccessDetail {
|
|
|
60
60
|
* service within the <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_access-advisor.html#service-last-accessed-reporting-period">tracking period</a>.</p>
|
|
61
61
|
* @public
|
|
62
62
|
*/
|
|
63
|
-
LastAuthenticatedTime?: Date;
|
|
63
|
+
LastAuthenticatedTime?: Date | undefined;
|
|
64
64
|
/**
|
|
65
65
|
* <p>The number of accounts with authenticated principals (root user, IAM users, and IAM
|
|
66
66
|
* roles) that attempted to access the service in the tracking period.</p>
|
|
67
67
|
* @public
|
|
68
68
|
*/
|
|
69
|
-
TotalAuthenticatedEntities?: number;
|
|
69
|
+
TotalAuthenticatedEntities?: number | undefined;
|
|
70
70
|
}
|
|
71
71
|
/**
|
|
72
72
|
* @public
|
|
@@ -117,7 +117,7 @@ export interface AccessKey {
|
|
|
117
117
|
* <p>The date when the access key was created.</p>
|
|
118
118
|
* @public
|
|
119
119
|
*/
|
|
120
|
-
CreateDate?: Date;
|
|
120
|
+
CreateDate?: Date | undefined;
|
|
121
121
|
}
|
|
122
122
|
/**
|
|
123
123
|
* <p>Contains information about the last time an Amazon Web Services access key was used since IAM began
|
|
@@ -144,7 +144,7 @@ export interface AccessKeyLastUsed {
|
|
|
144
144
|
* </ul>
|
|
145
145
|
* @public
|
|
146
146
|
*/
|
|
147
|
-
LastUsedDate?: Date;
|
|
147
|
+
LastUsedDate?: Date | undefined;
|
|
148
148
|
/**
|
|
149
149
|
* <p>The name of the Amazon Web Services service with which this access key was most recently used. The
|
|
150
150
|
* value of this field is "N/A" in the following situations:</p>
|
|
@@ -195,23 +195,23 @@ export interface AccessKeyMetadata {
|
|
|
195
195
|
* <p>The name of the IAM user that the key is associated with.</p>
|
|
196
196
|
* @public
|
|
197
197
|
*/
|
|
198
|
-
UserName?: string;
|
|
198
|
+
UserName?: string | undefined;
|
|
199
199
|
/**
|
|
200
200
|
* <p>The ID for this access key.</p>
|
|
201
201
|
* @public
|
|
202
202
|
*/
|
|
203
|
-
AccessKeyId?: string;
|
|
203
|
+
AccessKeyId?: string | undefined;
|
|
204
204
|
/**
|
|
205
205
|
* <p>The status of the access key. <code>Active</code> means that the key is valid for API
|
|
206
206
|
* calls; <code>Inactive</code> means it is not.</p>
|
|
207
207
|
* @public
|
|
208
208
|
*/
|
|
209
|
-
Status?: StatusType;
|
|
209
|
+
Status?: StatusType | undefined;
|
|
210
210
|
/**
|
|
211
211
|
* <p>The date when the access key was created.</p>
|
|
212
212
|
* @public
|
|
213
213
|
*/
|
|
214
|
-
CreateDate?: Date;
|
|
214
|
+
CreateDate?: Date | undefined;
|
|
215
215
|
}
|
|
216
216
|
/**
|
|
217
217
|
* @public
|
|
@@ -387,12 +387,12 @@ export interface AttachedPermissionsBoundary {
|
|
|
387
387
|
* <code>Policy</code>.</p>
|
|
388
388
|
* @public
|
|
389
389
|
*/
|
|
390
|
-
PermissionsBoundaryType?: PermissionsBoundaryAttachmentType;
|
|
390
|
+
PermissionsBoundaryType?: PermissionsBoundaryAttachmentType | undefined;
|
|
391
391
|
/**
|
|
392
392
|
* <p> The ARN of the policy used to set the permissions boundary for the user or role.</p>
|
|
393
393
|
* @public
|
|
394
394
|
*/
|
|
395
|
-
PermissionsBoundaryArn?: string;
|
|
395
|
+
PermissionsBoundaryArn?: string | undefined;
|
|
396
396
|
}
|
|
397
397
|
/**
|
|
398
398
|
* <p>Contains information about an attached policy.</p>
|
|
@@ -407,14 +407,14 @@ export interface AttachedPolicy {
|
|
|
407
407
|
* <p>The friendly name of the attached policy.</p>
|
|
408
408
|
* @public
|
|
409
409
|
*/
|
|
410
|
-
PolicyName?: string;
|
|
410
|
+
PolicyName?: string | undefined;
|
|
411
411
|
/**
|
|
412
412
|
* <p>The Amazon Resource Name (ARN). ARNs are unique identifiers for Amazon Web Services resources.</p>
|
|
413
413
|
* <p>For more information about ARNs, go to <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a> in
|
|
414
414
|
* the <i>Amazon Web Services General Reference</i>. </p>
|
|
415
415
|
* @public
|
|
416
416
|
*/
|
|
417
|
-
PolicyArn?: string;
|
|
417
|
+
PolicyArn?: string | undefined;
|
|
418
418
|
}
|
|
419
419
|
/**
|
|
420
420
|
* @public
|
|
@@ -557,7 +557,7 @@ export interface CreateAccessKeyRequest {
|
|
|
557
557
|
* characters with no spaces. You can also include any of the following characters: _+=,.@-</p>
|
|
558
558
|
* @public
|
|
559
559
|
*/
|
|
560
|
-
UserName?: string;
|
|
560
|
+
UserName?: string | undefined;
|
|
561
561
|
}
|
|
562
562
|
/**
|
|
563
563
|
* <p>Contains the response to a successful <a>CreateAccessKey</a> request.
|
|
@@ -611,7 +611,7 @@ export interface CreateGroupRequest {
|
|
|
611
611
|
* most punctuation characters, digits, and upper and lowercased letters.</p>
|
|
612
612
|
* @public
|
|
613
613
|
*/
|
|
614
|
-
Path?: string;
|
|
614
|
+
Path?: string | undefined;
|
|
615
615
|
/**
|
|
616
616
|
* <p>The name of the group to create. Do not include the path in this value.</p>
|
|
617
617
|
* <p>IAM user, group, role, and policy names must be unique within the account. Names are
|
|
@@ -737,7 +737,7 @@ export interface CreateInstanceProfileRequest {
|
|
|
737
737
|
* most punctuation characters, digits, and upper and lowercased letters.</p>
|
|
738
738
|
* @public
|
|
739
739
|
*/
|
|
740
|
-
Path?: string;
|
|
740
|
+
Path?: string | undefined;
|
|
741
741
|
/**
|
|
742
742
|
* <p>A list of tags that you want to attach to the newly created IAM instance profile.
|
|
743
743
|
* Each tag consists of a key name and an associated value. For more information about tagging, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html">Tagging IAM resources</a> in the
|
|
@@ -748,7 +748,7 @@ export interface CreateInstanceProfileRequest {
|
|
|
748
748
|
* </note>
|
|
749
749
|
* @public
|
|
750
750
|
*/
|
|
751
|
-
Tags?: Tag[];
|
|
751
|
+
Tags?: Tag[] | undefined;
|
|
752
752
|
}
|
|
753
753
|
/**
|
|
754
754
|
* <p>Contains information about the last time that an IAM role was used. This includes the
|
|
@@ -770,12 +770,12 @@ export interface RoleLastUsed {
|
|
|
770
770
|
* </p>
|
|
771
771
|
* @public
|
|
772
772
|
*/
|
|
773
|
-
LastUsedDate?: Date;
|
|
773
|
+
LastUsedDate?: Date | undefined;
|
|
774
774
|
/**
|
|
775
775
|
* <p>The name of the Amazon Web Services Region in which the role was last used.</p>
|
|
776
776
|
* @public
|
|
777
777
|
*/
|
|
778
|
-
Region?: string;
|
|
778
|
+
Region?: string | undefined;
|
|
779
779
|
}
|
|
780
780
|
/**
|
|
781
781
|
* <p>Contains information about an IAM role. This structure is returned as a response
|
|
@@ -818,12 +818,12 @@ export interface Role {
|
|
|
818
818
|
* <p>The policy that grants an entity permission to assume the role.</p>
|
|
819
819
|
* @public
|
|
820
820
|
*/
|
|
821
|
-
AssumeRolePolicyDocument?: string;
|
|
821
|
+
AssumeRolePolicyDocument?: string | undefined;
|
|
822
822
|
/**
|
|
823
823
|
* <p>A description of the role that you provide.</p>
|
|
824
824
|
* @public
|
|
825
825
|
*/
|
|
826
|
-
Description?: string;
|
|
826
|
+
Description?: string | undefined;
|
|
827
827
|
/**
|
|
828
828
|
* <p>The maximum session duration (in seconds) for the specified role. Anyone who uses the
|
|
829
829
|
* CLI, or API to assume the role can specify the duration using the optional
|
|
@@ -831,20 +831,20 @@ export interface Role {
|
|
|
831
831
|
* parameter.</p>
|
|
832
832
|
* @public
|
|
833
833
|
*/
|
|
834
|
-
MaxSessionDuration?: number;
|
|
834
|
+
MaxSessionDuration?: number | undefined;
|
|
835
835
|
/**
|
|
836
836
|
* <p>The ARN of the policy used to set the permissions boundary for the role.</p>
|
|
837
837
|
* <p>For more information about permissions boundaries, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_boundaries.html">Permissions boundaries for IAM
|
|
838
838
|
* identities </a> in the <i>IAM User Guide</i>.</p>
|
|
839
839
|
* @public
|
|
840
840
|
*/
|
|
841
|
-
PermissionsBoundary?: AttachedPermissionsBoundary;
|
|
841
|
+
PermissionsBoundary?: AttachedPermissionsBoundary | undefined;
|
|
842
842
|
/**
|
|
843
843
|
* <p>A list of tags that are attached to the role. For more information about tagging, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html">Tagging IAM resources</a> in the
|
|
844
844
|
* <i>IAM User Guide</i>.</p>
|
|
845
845
|
* @public
|
|
846
846
|
*/
|
|
847
|
-
Tags?: Tag[];
|
|
847
|
+
Tags?: Tag[] | undefined;
|
|
848
848
|
/**
|
|
849
849
|
* <p>Contains information about the last time that an IAM role was used. This includes the
|
|
850
850
|
* date and time and the Region in which the role was last used. Activity is only reported for
|
|
@@ -854,7 +854,7 @@ export interface Role {
|
|
|
854
854
|
* Guide</i>.</p>
|
|
855
855
|
* @public
|
|
856
856
|
*/
|
|
857
|
-
RoleLastUsed?: RoleLastUsed;
|
|
857
|
+
RoleLastUsed?: RoleLastUsed | undefined;
|
|
858
858
|
}
|
|
859
859
|
/**
|
|
860
860
|
* <p>Contains information about an instance profile.</p>
|
|
@@ -923,7 +923,7 @@ export interface InstanceProfile {
|
|
|
923
923
|
* <i>IAM User Guide</i>.</p>
|
|
924
924
|
* @public
|
|
925
925
|
*/
|
|
926
|
-
Tags?: Tag[];
|
|
926
|
+
Tags?: Tag[] | undefined;
|
|
927
927
|
}
|
|
928
928
|
/**
|
|
929
929
|
* <p>Contains the response to a successful <a>CreateInstanceProfile</a> request.
|
|
@@ -965,7 +965,7 @@ export interface CreateLoginProfileRequest {
|
|
|
965
965
|
* <p>Specifies whether the user is required to set a new password on next sign-in.</p>
|
|
966
966
|
* @public
|
|
967
967
|
*/
|
|
968
|
-
PasswordResetRequired?: boolean;
|
|
968
|
+
PasswordResetRequired?: boolean | undefined;
|
|
969
969
|
}
|
|
970
970
|
/**
|
|
971
971
|
* <p>Contains the user name and password create date for a user.</p>
|
|
@@ -987,7 +987,7 @@ export interface LoginProfile {
|
|
|
987
987
|
* <p>Specifies whether the user is required to set a new password on next sign-in.</p>
|
|
988
988
|
* @public
|
|
989
989
|
*/
|
|
990
|
-
PasswordResetRequired?: boolean;
|
|
990
|
+
PasswordResetRequired?: boolean | undefined;
|
|
991
991
|
}
|
|
992
992
|
/**
|
|
993
993
|
* <p>Contains the response to a successful <a>CreateLoginProfile</a> request.
|
|
@@ -1031,7 +1031,7 @@ export interface CreateOpenIDConnectProviderRequest {
|
|
|
1031
1031
|
* 255 characters long.</p>
|
|
1032
1032
|
* @public
|
|
1033
1033
|
*/
|
|
1034
|
-
ClientIDList?: string[];
|
|
1034
|
+
ClientIDList?: string[] | undefined;
|
|
1035
1035
|
/**
|
|
1036
1036
|
* <p>A list of server certificate thumbprints for the OpenID Connect (OIDC) identity
|
|
1037
1037
|
* provider's server certificates. Typically this list includes only one entry. However,
|
|
@@ -1053,7 +1053,7 @@ export interface CreateOpenIDConnectProviderRequest {
|
|
|
1053
1053
|
* Guide</i>.</p>
|
|
1054
1054
|
* @public
|
|
1055
1055
|
*/
|
|
1056
|
-
ThumbprintList?: string[];
|
|
1056
|
+
ThumbprintList?: string[] | undefined;
|
|
1057
1057
|
/**
|
|
1058
1058
|
* <p>A list of tags that you want to attach to the new IAM OpenID Connect (OIDC) provider.
|
|
1059
1059
|
* Each tag consists of a key name and an associated value. For more information about tagging, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html">Tagging IAM resources</a> in the
|
|
@@ -1064,7 +1064,7 @@ export interface CreateOpenIDConnectProviderRequest {
|
|
|
1064
1064
|
* </note>
|
|
1065
1065
|
* @public
|
|
1066
1066
|
*/
|
|
1067
|
-
Tags?: Tag[];
|
|
1067
|
+
Tags?: Tag[] | undefined;
|
|
1068
1068
|
}
|
|
1069
1069
|
/**
|
|
1070
1070
|
* <p>Contains the response to a successful <a>CreateOpenIDConnectProvider</a>
|
|
@@ -1078,14 +1078,14 @@ export interface CreateOpenIDConnectProviderResponse {
|
|
|
1078
1078
|
* </p>
|
|
1079
1079
|
* @public
|
|
1080
1080
|
*/
|
|
1081
|
-
OpenIDConnectProviderArn?: string;
|
|
1081
|
+
OpenIDConnectProviderArn?: string | undefined;
|
|
1082
1082
|
/**
|
|
1083
1083
|
* <p>A list of tags that are attached to the new IAM OIDC provider. The returned list of
|
|
1084
1084
|
* tags is sorted by tag key. For more information about tagging, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html">Tagging IAM resources</a> in the
|
|
1085
1085
|
* <i>IAM User Guide</i>.</p>
|
|
1086
1086
|
* @public
|
|
1087
1087
|
*/
|
|
1088
|
-
Tags?: Tag[];
|
|
1088
|
+
Tags?: Tag[] | undefined;
|
|
1089
1089
|
}
|
|
1090
1090
|
/**
|
|
1091
1091
|
* <p>The request failed because IAM cannot connect to the OpenID Connect identity provider
|
|
@@ -1126,7 +1126,7 @@ export interface CreatePolicyRequest {
|
|
|
1126
1126
|
* </note>
|
|
1127
1127
|
* @public
|
|
1128
1128
|
*/
|
|
1129
|
-
Path?: string;
|
|
1129
|
+
Path?: string | undefined;
|
|
1130
1130
|
/**
|
|
1131
1131
|
* <p>The JSON policy document that you want to use as the content for the new
|
|
1132
1132
|
* policy.</p>
|
|
@@ -1164,7 +1164,7 @@ export interface CreatePolicyRequest {
|
|
|
1164
1164
|
* changed.</p>
|
|
1165
1165
|
* @public
|
|
1166
1166
|
*/
|
|
1167
|
-
Description?: string;
|
|
1167
|
+
Description?: string | undefined;
|
|
1168
1168
|
/**
|
|
1169
1169
|
* <p>A list of tags that you want to attach to the new IAM customer managed policy.
|
|
1170
1170
|
* Each tag consists of a key name and an associated value. For more information about tagging, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html">Tagging IAM resources</a> in the
|
|
@@ -1175,7 +1175,7 @@ export interface CreatePolicyRequest {
|
|
|
1175
1175
|
* </note>
|
|
1176
1176
|
* @public
|
|
1177
1177
|
*/
|
|
1178
|
-
Tags?: Tag[];
|
|
1178
|
+
Tags?: Tag[] | undefined;
|
|
1179
1179
|
}
|
|
1180
1180
|
/**
|
|
1181
1181
|
* <p>Contains information about a managed policy.</p>
|
|
@@ -1190,38 +1190,38 @@ export interface Policy {
|
|
|
1190
1190
|
* <p>The friendly name (not ARN) identifying the policy.</p>
|
|
1191
1191
|
* @public
|
|
1192
1192
|
*/
|
|
1193
|
-
PolicyName?: string;
|
|
1193
|
+
PolicyName?: string | undefined;
|
|
1194
1194
|
/**
|
|
1195
1195
|
* <p>The stable and unique string identifying the policy.</p>
|
|
1196
1196
|
* <p>For more information about IDs, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html">IAM identifiers</a> in the
|
|
1197
1197
|
* <i>IAM User Guide</i>.</p>
|
|
1198
1198
|
* @public
|
|
1199
1199
|
*/
|
|
1200
|
-
PolicyId?: string;
|
|
1200
|
+
PolicyId?: string | undefined;
|
|
1201
1201
|
/**
|
|
1202
1202
|
* <p>The Amazon Resource Name (ARN). ARNs are unique identifiers for Amazon Web Services resources.</p>
|
|
1203
1203
|
* <p>For more information about ARNs, go to <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a> in
|
|
1204
1204
|
* the <i>Amazon Web Services General Reference</i>. </p>
|
|
1205
1205
|
* @public
|
|
1206
1206
|
*/
|
|
1207
|
-
Arn?: string;
|
|
1207
|
+
Arn?: string | undefined;
|
|
1208
1208
|
/**
|
|
1209
1209
|
* <p>The path to the policy.</p>
|
|
1210
1210
|
* <p>For more information about paths, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html">IAM identifiers</a> in the
|
|
1211
1211
|
* <i>IAM User Guide</i>.</p>
|
|
1212
1212
|
* @public
|
|
1213
1213
|
*/
|
|
1214
|
-
Path?: string;
|
|
1214
|
+
Path?: string | undefined;
|
|
1215
1215
|
/**
|
|
1216
1216
|
* <p>The identifier for the version of the policy that is set as the default version.</p>
|
|
1217
1217
|
* @public
|
|
1218
1218
|
*/
|
|
1219
|
-
DefaultVersionId?: string;
|
|
1219
|
+
DefaultVersionId?: string | undefined;
|
|
1220
1220
|
/**
|
|
1221
1221
|
* <p>The number of entities (users, groups, and roles) that the policy is attached to.</p>
|
|
1222
1222
|
* @public
|
|
1223
1223
|
*/
|
|
1224
|
-
AttachmentCount?: number;
|
|
1224
|
+
AttachmentCount?: number | undefined;
|
|
1225
1225
|
/**
|
|
1226
1226
|
* <p>The number of entities (users and roles) for which the policy is used to set the
|
|
1227
1227
|
* permissions boundary. </p>
|
|
@@ -1229,25 +1229,25 @@ export interface Policy {
|
|
|
1229
1229
|
* identities </a> in the <i>IAM User Guide</i>.</p>
|
|
1230
1230
|
* @public
|
|
1231
1231
|
*/
|
|
1232
|
-
PermissionsBoundaryUsageCount?: number;
|
|
1232
|
+
PermissionsBoundaryUsageCount?: number | undefined;
|
|
1233
1233
|
/**
|
|
1234
1234
|
* <p>Specifies whether the policy can be attached to an IAM user, group, or role.</p>
|
|
1235
1235
|
* @public
|
|
1236
1236
|
*/
|
|
1237
|
-
IsAttachable?: boolean;
|
|
1237
|
+
IsAttachable?: boolean | undefined;
|
|
1238
1238
|
/**
|
|
1239
1239
|
* <p>A friendly description of the policy.</p>
|
|
1240
1240
|
* <p>This element is included in the response to the <a>GetPolicy</a> operation.
|
|
1241
1241
|
* It is not included in the response to the <a>ListPolicies</a> operation. </p>
|
|
1242
1242
|
* @public
|
|
1243
1243
|
*/
|
|
1244
|
-
Description?: string;
|
|
1244
|
+
Description?: string | undefined;
|
|
1245
1245
|
/**
|
|
1246
1246
|
* <p>The date and time, in <a href="http://www.iso.org/iso/iso8601">ISO 8601 date-time
|
|
1247
1247
|
* format</a>, when the policy was created.</p>
|
|
1248
1248
|
* @public
|
|
1249
1249
|
*/
|
|
1250
|
-
CreateDate?: Date;
|
|
1250
|
+
CreateDate?: Date | undefined;
|
|
1251
1251
|
/**
|
|
1252
1252
|
* <p>The date and time, in <a href="http://www.iso.org/iso/iso8601">ISO 8601 date-time
|
|
1253
1253
|
* format</a>, when the policy was last updated.</p>
|
|
@@ -1256,13 +1256,13 @@ export interface Policy {
|
|
|
1256
1256
|
* and time when the most recent policy version was created.</p>
|
|
1257
1257
|
* @public
|
|
1258
1258
|
*/
|
|
1259
|
-
UpdateDate?: Date;
|
|
1259
|
+
UpdateDate?: Date | undefined;
|
|
1260
1260
|
/**
|
|
1261
1261
|
* <p>A list of tags that are attached to the instance profile. For more information about tagging, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html">Tagging IAM resources</a> in the
|
|
1262
1262
|
* <i>IAM User Guide</i>.</p>
|
|
1263
1263
|
* @public
|
|
1264
1264
|
*/
|
|
1265
|
-
Tags?: Tag[];
|
|
1265
|
+
Tags?: Tag[] | undefined;
|
|
1266
1266
|
}
|
|
1267
1267
|
/**
|
|
1268
1268
|
* <p>Contains the response to a successful <a>CreatePolicy</a> request.
|
|
@@ -1274,7 +1274,7 @@ export interface CreatePolicyResponse {
|
|
|
1274
1274
|
* <p>A structure containing details about the new policy.</p>
|
|
1275
1275
|
* @public
|
|
1276
1276
|
*/
|
|
1277
|
-
Policy?: Policy;
|
|
1277
|
+
Policy?: Policy | undefined;
|
|
1278
1278
|
}
|
|
1279
1279
|
/**
|
|
1280
1280
|
* <p>The request was rejected because the policy document was malformed. The error message
|
|
@@ -1336,7 +1336,7 @@ export interface CreatePolicyVersionRequest {
|
|
|
1336
1336
|
* policies</a> in the <i>IAM User Guide</i>.</p>
|
|
1337
1337
|
* @public
|
|
1338
1338
|
*/
|
|
1339
|
-
SetAsDefault?: boolean;
|
|
1339
|
+
SetAsDefault?: boolean | undefined;
|
|
1340
1340
|
}
|
|
1341
1341
|
/**
|
|
1342
1342
|
* <p>Contains information about a version of a managed policy.</p>
|
|
@@ -1356,25 +1356,25 @@ export interface PolicyVersion {
|
|
|
1356
1356
|
* the Java SDK. Other languages and SDKs provide similar functionality.</p>
|
|
1357
1357
|
* @public
|
|
1358
1358
|
*/
|
|
1359
|
-
Document?: string;
|
|
1359
|
+
Document?: string | undefined;
|
|
1360
1360
|
/**
|
|
1361
1361
|
* <p>The identifier for the policy version.</p>
|
|
1362
1362
|
* <p>Policy version identifiers always begin with <code>v</code> (always lowercase). When a
|
|
1363
1363
|
* policy is created, the first policy version is <code>v1</code>. </p>
|
|
1364
1364
|
* @public
|
|
1365
1365
|
*/
|
|
1366
|
-
VersionId?: string;
|
|
1366
|
+
VersionId?: string | undefined;
|
|
1367
1367
|
/**
|
|
1368
1368
|
* <p>Specifies whether the policy version is set as the policy's default version.</p>
|
|
1369
1369
|
* @public
|
|
1370
1370
|
*/
|
|
1371
|
-
IsDefaultVersion?: boolean;
|
|
1371
|
+
IsDefaultVersion?: boolean | undefined;
|
|
1372
1372
|
/**
|
|
1373
1373
|
* <p>The date and time, in <a href="http://www.iso.org/iso/iso8601">ISO 8601 date-time
|
|
1374
1374
|
* format</a>, when the policy version was created.</p>
|
|
1375
1375
|
* @public
|
|
1376
1376
|
*/
|
|
1377
|
-
CreateDate?: Date;
|
|
1377
|
+
CreateDate?: Date | undefined;
|
|
1378
1378
|
}
|
|
1379
1379
|
/**
|
|
1380
1380
|
* <p>Contains the response to a successful <a>CreatePolicyVersion</a> request.
|
|
@@ -1386,7 +1386,7 @@ export interface CreatePolicyVersionResponse {
|
|
|
1386
1386
|
* <p>A structure containing details about the new policy version.</p>
|
|
1387
1387
|
* @public
|
|
1388
1388
|
*/
|
|
1389
|
-
PolicyVersion?: PolicyVersion;
|
|
1389
|
+
PolicyVersion?: PolicyVersion | undefined;
|
|
1390
1390
|
}
|
|
1391
1391
|
/**
|
|
1392
1392
|
* @public
|
|
@@ -1402,7 +1402,7 @@ export interface CreateRoleRequest {
|
|
|
1402
1402
|
* most punctuation characters, digits, and upper and lowercased letters.</p>
|
|
1403
1403
|
* @public
|
|
1404
1404
|
*/
|
|
1405
|
-
Path?: string;
|
|
1405
|
+
Path?: string | undefined;
|
|
1406
1406
|
/**
|
|
1407
1407
|
* <p>The name of the role to create.</p>
|
|
1408
1408
|
* <p>IAM user, group, role, and policy names must be unique within the account. Names are
|
|
@@ -1444,7 +1444,7 @@ export interface CreateRoleRequest {
|
|
|
1444
1444
|
* <p>A description of the role.</p>
|
|
1445
1445
|
* @public
|
|
1446
1446
|
*/
|
|
1447
|
-
Description?: string;
|
|
1447
|
+
Description?: string | undefined;
|
|
1448
1448
|
/**
|
|
1449
1449
|
* <p>The maximum session duration (in seconds) that you want to set for the specified role.
|
|
1450
1450
|
* If you do not specify a value for this setting, the default value of one hour is
|
|
@@ -1461,7 +1461,7 @@ export interface CreateRoleRequest {
|
|
|
1461
1461
|
* roles</a> in the <i>IAM User Guide</i>.</p>
|
|
1462
1462
|
* @public
|
|
1463
1463
|
*/
|
|
1464
|
-
MaxSessionDuration?: number;
|
|
1464
|
+
MaxSessionDuration?: number | undefined;
|
|
1465
1465
|
/**
|
|
1466
1466
|
* <p>The ARN of the managed policy that is used to set the permissions boundary for the
|
|
1467
1467
|
* role.</p>
|
|
@@ -1474,7 +1474,7 @@ export interface CreateRoleRequest {
|
|
|
1474
1474
|
* </a> in the <i>IAM User Guide</i>.</p>
|
|
1475
1475
|
* @public
|
|
1476
1476
|
*/
|
|
1477
|
-
PermissionsBoundary?: string;
|
|
1477
|
+
PermissionsBoundary?: string | undefined;
|
|
1478
1478
|
/**
|
|
1479
1479
|
* <p>A list of tags that you want to attach to the new role. Each tag consists of a key name and an associated value.
|
|
1480
1480
|
* For more information about tagging, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html">Tagging IAM resources</a> in the
|
|
@@ -1485,7 +1485,7 @@ export interface CreateRoleRequest {
|
|
|
1485
1485
|
* </note>
|
|
1486
1486
|
* @public
|
|
1487
1487
|
*/
|
|
1488
|
-
Tags?: Tag[];
|
|
1488
|
+
Tags?: Tag[] | undefined;
|
|
1489
1489
|
}
|
|
1490
1490
|
/**
|
|
1491
1491
|
* <p>Contains the response to a successful <a>CreateRole</a> request. </p>
|
|
@@ -1531,7 +1531,7 @@ export interface CreateSAMLProviderRequest {
|
|
|
1531
1531
|
* </note>
|
|
1532
1532
|
* @public
|
|
1533
1533
|
*/
|
|
1534
|
-
Tags?: Tag[];
|
|
1534
|
+
Tags?: Tag[] | undefined;
|
|
1535
1535
|
}
|
|
1536
1536
|
/**
|
|
1537
1537
|
* <p>Contains the response to a successful <a>CreateSAMLProvider</a> request.
|
|
@@ -1543,14 +1543,14 @@ export interface CreateSAMLProviderResponse {
|
|
|
1543
1543
|
* <p>The Amazon Resource Name (ARN) of the new SAML provider resource in IAM.</p>
|
|
1544
1544
|
* @public
|
|
1545
1545
|
*/
|
|
1546
|
-
SAMLProviderArn?: string;
|
|
1546
|
+
SAMLProviderArn?: string | undefined;
|
|
1547
1547
|
/**
|
|
1548
1548
|
* <p>A list of tags that are attached to the new IAM SAML provider. The returned list of tags is sorted by tag key.
|
|
1549
1549
|
* For more information about tagging, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html">Tagging IAM resources</a> in the
|
|
1550
1550
|
* <i>IAM User Guide</i>.</p>
|
|
1551
1551
|
* @public
|
|
1552
1552
|
*/
|
|
1553
|
-
Tags?: Tag[];
|
|
1553
|
+
Tags?: Tag[] | undefined;
|
|
1554
1554
|
}
|
|
1555
1555
|
/**
|
|
1556
1556
|
* @public
|
|
@@ -1572,7 +1572,7 @@ export interface CreateServiceLinkedRoleRequest {
|
|
|
1572
1572
|
* <p>The description of the role.</p>
|
|
1573
1573
|
* @public
|
|
1574
1574
|
*/
|
|
1575
|
-
Description?: string;
|
|
1575
|
+
Description?: string | undefined;
|
|
1576
1576
|
/**
|
|
1577
1577
|
* <p></p>
|
|
1578
1578
|
* <p>A string that you provide, which is combined with the service-provided prefix to form
|
|
@@ -1585,7 +1585,7 @@ export interface CreateServiceLinkedRoleRequest {
|
|
|
1585
1585
|
* suffix.</p>
|
|
1586
1586
|
* @public
|
|
1587
1587
|
*/
|
|
1588
|
-
CustomSuffix?: string;
|
|
1588
|
+
CustomSuffix?: string | undefined;
|
|
1589
1589
|
}
|
|
1590
1590
|
/**
|
|
1591
1591
|
* @public
|
|
@@ -1596,7 +1596,7 @@ export interface CreateServiceLinkedRoleResponse {
|
|
|
1596
1596
|
* role.</p>
|
|
1597
1597
|
* @public
|
|
1598
1598
|
*/
|
|
1599
|
-
Role?: Role;
|
|
1599
|
+
Role?: Role | undefined;
|
|
1600
1600
|
}
|
|
1601
1601
|
/**
|
|
1602
1602
|
* @public
|
|
@@ -1678,7 +1678,7 @@ export interface CreateServiceSpecificCredentialResponse {
|
|
|
1678
1678
|
* </important>
|
|
1679
1679
|
* @public
|
|
1680
1680
|
*/
|
|
1681
|
-
ServiceSpecificCredential?: ServiceSpecificCredential;
|
|
1681
|
+
ServiceSpecificCredential?: ServiceSpecificCredential | undefined;
|
|
1682
1682
|
}
|
|
1683
1683
|
/**
|
|
1684
1684
|
* <p>The specified service does not support service-specific credentials.</p>
|
|
@@ -1706,7 +1706,7 @@ export interface CreateUserRequest {
|
|
|
1706
1706
|
* most punctuation characters, digits, and upper and lowercased letters.</p>
|
|
1707
1707
|
* @public
|
|
1708
1708
|
*/
|
|
1709
|
-
Path?: string;
|
|
1709
|
+
Path?: string | undefined;
|
|
1710
1710
|
/**
|
|
1711
1711
|
* <p>The name of the user to create.</p>
|
|
1712
1712
|
* <p>IAM user, group, role, and policy names must be unique within the account. Names are
|
|
@@ -1727,7 +1727,7 @@ export interface CreateUserRequest {
|
|
|
1727
1727
|
* </a> in the <i>IAM User Guide</i>.</p>
|
|
1728
1728
|
* @public
|
|
1729
1729
|
*/
|
|
1730
|
-
PermissionsBoundary?: string;
|
|
1730
|
+
PermissionsBoundary?: string | undefined;
|
|
1731
1731
|
/**
|
|
1732
1732
|
* <p>A list of tags that you want to attach to the new user. Each tag consists of a key name and an associated value.
|
|
1733
1733
|
* For more information about tagging, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html">Tagging IAM resources</a> in the
|
|
@@ -1738,7 +1738,7 @@ export interface CreateUserRequest {
|
|
|
1738
1738
|
* </note>
|
|
1739
1739
|
* @public
|
|
1740
1740
|
*/
|
|
1741
|
-
Tags?: Tag[];
|
|
1741
|
+
Tags?: Tag[] | undefined;
|
|
1742
1742
|
}
|
|
1743
1743
|
/**
|
|
1744
1744
|
* <p>Contains information about an IAM user entity.</p>
|
|
@@ -1818,19 +1818,19 @@ export interface User {
|
|
|
1818
1818
|
* <p>This value is returned only in the <a>GetUser</a> and <a>ListUsers</a> operations. </p>
|
|
1819
1819
|
* @public
|
|
1820
1820
|
*/
|
|
1821
|
-
PasswordLastUsed?: Date;
|
|
1821
|
+
PasswordLastUsed?: Date | undefined;
|
|
1822
1822
|
/**
|
|
1823
1823
|
* <p>For more information about permissions boundaries, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_boundaries.html">Permissions boundaries for IAM
|
|
1824
1824
|
* identities </a> in the <i>IAM User Guide</i>.</p>
|
|
1825
1825
|
* @public
|
|
1826
1826
|
*/
|
|
1827
|
-
PermissionsBoundary?: AttachedPermissionsBoundary;
|
|
1827
|
+
PermissionsBoundary?: AttachedPermissionsBoundary | undefined;
|
|
1828
1828
|
/**
|
|
1829
1829
|
* <p>A list of tags that are associated with the user. For more information about tagging, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html">Tagging IAM resources</a> in the
|
|
1830
1830
|
* <i>IAM User Guide</i>.</p>
|
|
1831
1831
|
* @public
|
|
1832
1832
|
*/
|
|
1833
|
-
Tags?: Tag[];
|
|
1833
|
+
Tags?: Tag[] | undefined;
|
|
1834
1834
|
}
|
|
1835
1835
|
/**
|
|
1836
1836
|
* <p>Contains the response to a successful <a>CreateUser</a> request. </p>
|
|
@@ -1841,7 +1841,7 @@ export interface CreateUserResponse {
|
|
|
1841
1841
|
* <p>A structure with details about the new IAM user.</p>
|
|
1842
1842
|
* @public
|
|
1843
1843
|
*/
|
|
1844
|
-
User?: User;
|
|
1844
|
+
User?: User | undefined;
|
|
1845
1845
|
}
|
|
1846
1846
|
/**
|
|
1847
1847
|
* @public
|
|
@@ -1857,7 +1857,7 @@ export interface CreateVirtualMFADeviceRequest {
|
|
|
1857
1857
|
* most punctuation characters, digits, and upper and lowercased letters.</p>
|
|
1858
1858
|
* @public
|
|
1859
1859
|
*/
|
|
1860
|
-
Path?: string;
|
|
1860
|
+
Path?: string | undefined;
|
|
1861
1861
|
/**
|
|
1862
1862
|
* <p>The name of the virtual MFA device, which must be unique. Use with path to uniquely
|
|
1863
1863
|
* identify a virtual MFA device.</p>
|
|
@@ -1876,7 +1876,7 @@ export interface CreateVirtualMFADeviceRequest {
|
|
|
1876
1876
|
* </note>
|
|
1877
1877
|
* @public
|
|
1878
1878
|
*/
|
|
1879
|
-
Tags?: Tag[];
|
|
1879
|
+
Tags?: Tag[] | undefined;
|
|
1880
1880
|
}
|
|
1881
1881
|
/**
|
|
1882
1882
|
* <p>Contains information about a virtual MFA device.</p>
|
|
@@ -1892,7 +1892,7 @@ export interface VirtualMFADevice {
|
|
|
1892
1892
|
* <p> The base32 seed defined as specified in <a href="https://tools.ietf.org/html/rfc3548.txt">RFC3548</a>. The <code>Base32StringSeed</code> is base32-encoded. </p>
|
|
1893
1893
|
* @public
|
|
1894
1894
|
*/
|
|
1895
|
-
Base32StringSeed?: Uint8Array;
|
|
1895
|
+
Base32StringSeed?: Uint8Array | undefined;
|
|
1896
1896
|
/**
|
|
1897
1897
|
* <p> A QR code PNG image that encodes
|
|
1898
1898
|
* <code>otpauth://totp/$virtualMFADeviceName@$AccountName?secret=$Base32String</code>
|
|
@@ -1902,23 +1902,23 @@ export interface VirtualMFADevice {
|
|
|
1902
1902
|
* value is base64-encoded. </p>
|
|
1903
1903
|
* @public
|
|
1904
1904
|
*/
|
|
1905
|
-
QRCodePNG?: Uint8Array;
|
|
1905
|
+
QRCodePNG?: Uint8Array | undefined;
|
|
1906
1906
|
/**
|
|
1907
1907
|
* <p>The IAM user associated with this virtual MFA device.</p>
|
|
1908
1908
|
* @public
|
|
1909
1909
|
*/
|
|
1910
|
-
User?: User;
|
|
1910
|
+
User?: User | undefined;
|
|
1911
1911
|
/**
|
|
1912
1912
|
* <p>The date and time on which the virtual MFA device was enabled.</p>
|
|
1913
1913
|
* @public
|
|
1914
1914
|
*/
|
|
1915
|
-
EnableDate?: Date;
|
|
1915
|
+
EnableDate?: Date | undefined;
|
|
1916
1916
|
/**
|
|
1917
1917
|
* <p>A list of tags that are attached to the virtual MFA device. For more information about tagging, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html">Tagging IAM resources</a> in the
|
|
1918
1918
|
* <i>IAM User Guide</i>.</p>
|
|
1919
1919
|
* @public
|
|
1920
1920
|
*/
|
|
1921
|
-
Tags?: Tag[];
|
|
1921
|
+
Tags?: Tag[] | undefined;
|
|
1922
1922
|
}
|
|
1923
1923
|
/**
|
|
1924
1924
|
* <p>Contains the response to a successful <a>CreateVirtualMFADevice</a> request.
|
|
@@ -1963,7 +1963,7 @@ export interface DeleteAccessKeyRequest {
|
|
|
1963
1963
|
* characters with no spaces. You can also include any of the following characters: _+=,.@-</p>
|
|
1964
1964
|
* @public
|
|
1965
1965
|
*/
|
|
1966
|
-
UserName?: string;
|
|
1966
|
+
UserName?: string | undefined;
|
|
1967
1967
|
/**
|
|
1968
1968
|
* <p>The access key ID for the access key ID and secret access key you want to
|
|
1969
1969
|
* delete.</p>
|
|
@@ -2198,7 +2198,7 @@ export interface DeleteServiceSpecificCredentialRequest {
|
|
|
2198
2198
|
* characters with no spaces. You can also include any of the following characters: _+=,.@-</p>
|
|
2199
2199
|
* @public
|
|
2200
2200
|
*/
|
|
2201
|
-
UserName?: string;
|
|
2201
|
+
UserName?: string | undefined;
|
|
2202
2202
|
/**
|
|
2203
2203
|
* <p>The unique identifier of the service-specific credential. You can get this value by
|
|
2204
2204
|
* calling <a>ListServiceSpecificCredentials</a>.</p>
|
|
@@ -2218,7 +2218,7 @@ export interface DeleteSigningCertificateRequest {
|
|
|
2218
2218
|
* characters with no spaces. You can also include any of the following characters: _+=,.@-</p>
|
|
2219
2219
|
* @public
|
|
2220
2220
|
*/
|
|
2221
|
-
UserName?: string;
|
|
2221
|
+
UserName?: string | undefined;
|
|
2222
2222
|
/**
|
|
2223
2223
|
* <p>The ID of the signing certificate to delete.</p>
|
|
2224
2224
|
* <p>The format of this parameter, as described by its <a href="http://wikipedia.org/wiki/regex">regex</a> pattern, is a string of
|
|
@@ -2442,12 +2442,12 @@ export interface GenerateCredentialReportResponse {
|
|
|
2442
2442
|
* <p>Information about the state of the credential report.</p>
|
|
2443
2443
|
* @public
|
|
2444
2444
|
*/
|
|
2445
|
-
State?: ReportStateType;
|
|
2445
|
+
State?: ReportStateType | undefined;
|
|
2446
2446
|
/**
|
|
2447
2447
|
* <p>Information about the credential report.</p>
|
|
2448
2448
|
* @public
|
|
2449
2449
|
*/
|
|
2450
|
-
Description?: string;
|
|
2450
|
+
Description?: string | undefined;
|
|
2451
2451
|
}
|
|
2452
2452
|
/**
|
|
2453
2453
|
* @public
|
|
@@ -2470,7 +2470,7 @@ export interface GenerateOrganizationsAccessReportRequest {
|
|
|
2470
2470
|
* limited by the SCP attempted to access an Amazon Web Services service.</p>
|
|
2471
2471
|
* @public
|
|
2472
2472
|
*/
|
|
2473
|
-
OrganizationsPolicyId?: string;
|
|
2473
|
+
OrganizationsPolicyId?: string | undefined;
|
|
2474
2474
|
}
|
|
2475
2475
|
/**
|
|
2476
2476
|
* @public
|
|
@@ -2480,7 +2480,7 @@ export interface GenerateOrganizationsAccessReportResponse {
|
|
|
2480
2480
|
* <p>The job identifier that you can use in the <a>GetOrganizationsAccessReport</a> operation.</p>
|
|
2481
2481
|
* @public
|
|
2482
2482
|
*/
|
|
2483
|
-
JobId?: string;
|
|
2483
|
+
JobId?: string | undefined;
|
|
2484
2484
|
}
|
|
2485
2485
|
/**
|
|
2486
2486
|
* <p>The request failed because the maximum number of concurrent requests for this account are
|
|
@@ -2514,7 +2514,7 @@ export interface GenerateServiceLastAccessedDetailsRequest {
|
|
|
2514
2514
|
* include this optional parameter, the operation generates service data.</p>
|
|
2515
2515
|
* @public
|
|
2516
2516
|
*/
|
|
2517
|
-
Granularity?: AccessAdvisorUsageGranularityType;
|
|
2517
|
+
Granularity?: AccessAdvisorUsageGranularityType | undefined;
|
|
2518
2518
|
}
|
|
2519
2519
|
/**
|
|
2520
2520
|
* @public
|
|
@@ -2527,7 +2527,7 @@ export interface GenerateServiceLastAccessedDetailsResponse {
|
|
|
2527
2527
|
* <code>GetServiceLastAccessedDetail</code>.</p>
|
|
2528
2528
|
* @public
|
|
2529
2529
|
*/
|
|
2530
|
-
JobId?: string;
|
|
2530
|
+
JobId?: string | undefined;
|
|
2531
2531
|
}
|
|
2532
2532
|
/**
|
|
2533
2533
|
* @public
|
|
@@ -2553,12 +2553,12 @@ export interface GetAccessKeyLastUsedResponse {
|
|
|
2553
2553
|
* <p></p>
|
|
2554
2554
|
* @public
|
|
2555
2555
|
*/
|
|
2556
|
-
UserName?: string;
|
|
2556
|
+
UserName?: string | undefined;
|
|
2557
2557
|
/**
|
|
2558
2558
|
* <p>Contains information about the last time the access key was used.</p>
|
|
2559
2559
|
* @public
|
|
2560
2560
|
*/
|
|
2561
|
-
AccessKeyLastUsed?: AccessKeyLastUsed;
|
|
2561
|
+
AccessKeyLastUsed?: AccessKeyLastUsed | undefined;
|
|
2562
2562
|
}
|
|
2563
2563
|
/**
|
|
2564
2564
|
* @public
|
|
@@ -2587,7 +2587,7 @@ export interface GetAccountAuthorizationDetailsRequest {
|
|
|
2587
2587
|
* Each string value in the list must be one of the valid values listed below.</p>
|
|
2588
2588
|
* @public
|
|
2589
2589
|
*/
|
|
2590
|
-
Filter?: EntityType[];
|
|
2590
|
+
Filter?: EntityType[] | undefined;
|
|
2591
2591
|
/**
|
|
2592
2592
|
* <p>Use this only when paginating results to indicate the
|
|
2593
2593
|
* maximum number of items you want in the response. If additional items exist beyond the maximum
|
|
@@ -2599,7 +2599,7 @@ export interface GetAccountAuthorizationDetailsRequest {
|
|
|
2599
2599
|
* from.</p>
|
|
2600
2600
|
* @public
|
|
2601
2601
|
*/
|
|
2602
|
-
MaxItems?: number;
|
|
2602
|
+
MaxItems?: number | undefined;
|
|
2603
2603
|
/**
|
|
2604
2604
|
* <p>Use this parameter only when paginating results and only after
|
|
2605
2605
|
* you receive a response indicating that the results are truncated. Set it to the value of the
|
|
@@ -2607,7 +2607,7 @@ export interface GetAccountAuthorizationDetailsRequest {
|
|
|
2607
2607
|
* should start.</p>
|
|
2608
2608
|
* @public
|
|
2609
2609
|
*/
|
|
2610
|
-
Marker?: string;
|
|
2610
|
+
Marker?: string | undefined;
|
|
2611
2611
|
}
|
|
2612
2612
|
/**
|
|
2613
2613
|
* <p>Contains information about an IAM policy, including the policy document.</p>
|
|
@@ -2619,12 +2619,12 @@ export interface PolicyDetail {
|
|
|
2619
2619
|
* <p>The name of the policy.</p>
|
|
2620
2620
|
* @public
|
|
2621
2621
|
*/
|
|
2622
|
-
PolicyName?: string;
|
|
2622
|
+
PolicyName?: string | undefined;
|
|
2623
2623
|
/**
|
|
2624
2624
|
* <p>The policy document.</p>
|
|
2625
2625
|
* @public
|
|
2626
2626
|
*/
|
|
2627
|
-
PolicyDocument?: string;
|
|
2627
|
+
PolicyDocument?: string | undefined;
|
|
2628
2628
|
}
|
|
2629
2629
|
/**
|
|
2630
2630
|
* <p>Contains information about an IAM group, including all of the group's policies.</p>
|
|
@@ -2637,42 +2637,42 @@ export interface GroupDetail {
|
|
|
2637
2637
|
* <i>IAM User Guide</i>.</p>
|
|
2638
2638
|
* @public
|
|
2639
2639
|
*/
|
|
2640
|
-
Path?: string;
|
|
2640
|
+
Path?: string | undefined;
|
|
2641
2641
|
/**
|
|
2642
2642
|
* <p>The friendly name that identifies the group.</p>
|
|
2643
2643
|
* @public
|
|
2644
2644
|
*/
|
|
2645
|
-
GroupName?: string;
|
|
2645
|
+
GroupName?: string | undefined;
|
|
2646
2646
|
/**
|
|
2647
2647
|
* <p>The stable and unique string identifying the group. For more information about IDs, see
|
|
2648
2648
|
* <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html">IAM
|
|
2649
2649
|
* identifiers</a> in the <i>IAM User Guide</i>.</p>
|
|
2650
2650
|
* @public
|
|
2651
2651
|
*/
|
|
2652
|
-
GroupId?: string;
|
|
2652
|
+
GroupId?: string | undefined;
|
|
2653
2653
|
/**
|
|
2654
2654
|
* <p>The Amazon Resource Name (ARN). ARNs are unique identifiers for Amazon Web Services resources.</p>
|
|
2655
2655
|
* <p>For more information about ARNs, go to <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a> in
|
|
2656
2656
|
* the <i>Amazon Web Services General Reference</i>. </p>
|
|
2657
2657
|
* @public
|
|
2658
2658
|
*/
|
|
2659
|
-
Arn?: string;
|
|
2659
|
+
Arn?: string | undefined;
|
|
2660
2660
|
/**
|
|
2661
2661
|
* <p>The date and time, in <a href="http://www.iso.org/iso/iso8601">ISO 8601 date-time
|
|
2662
2662
|
* format</a>, when the group was created.</p>
|
|
2663
2663
|
* @public
|
|
2664
2664
|
*/
|
|
2665
|
-
CreateDate?: Date;
|
|
2665
|
+
CreateDate?: Date | undefined;
|
|
2666
2666
|
/**
|
|
2667
2667
|
* <p>A list of the inline policies embedded in the group.</p>
|
|
2668
2668
|
* @public
|
|
2669
2669
|
*/
|
|
2670
|
-
GroupPolicyList?: PolicyDetail[];
|
|
2670
|
+
GroupPolicyList?: PolicyDetail[] | undefined;
|
|
2671
2671
|
/**
|
|
2672
2672
|
* <p>A list of the managed policies attached to the group.</p>
|
|
2673
2673
|
* @public
|
|
2674
2674
|
*/
|
|
2675
|
-
AttachedManagedPolicies?: AttachedPolicy[];
|
|
2675
|
+
AttachedManagedPolicies?: AttachedPolicy[] | undefined;
|
|
2676
2676
|
}
|
|
2677
2677
|
/**
|
|
2678
2678
|
* <p>Contains information about a managed policy, including the policy's ARN, versions, and
|
|
@@ -2688,28 +2688,28 @@ export interface ManagedPolicyDetail {
|
|
|
2688
2688
|
* <p>The friendly name (not ARN) identifying the policy.</p>
|
|
2689
2689
|
* @public
|
|
2690
2690
|
*/
|
|
2691
|
-
PolicyName?: string;
|
|
2691
|
+
PolicyName?: string | undefined;
|
|
2692
2692
|
/**
|
|
2693
2693
|
* <p>The stable and unique string identifying the policy.</p>
|
|
2694
2694
|
* <p>For more information about IDs, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html">IAM identifiers</a> in the
|
|
2695
2695
|
* <i>IAM User Guide</i>.</p>
|
|
2696
2696
|
* @public
|
|
2697
2697
|
*/
|
|
2698
|
-
PolicyId?: string;
|
|
2698
|
+
PolicyId?: string | undefined;
|
|
2699
2699
|
/**
|
|
2700
2700
|
* <p>The Amazon Resource Name (ARN). ARNs are unique identifiers for Amazon Web Services resources.</p>
|
|
2701
2701
|
* <p>For more information about ARNs, go to <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a> in
|
|
2702
2702
|
* the <i>Amazon Web Services General Reference</i>. </p>
|
|
2703
2703
|
* @public
|
|
2704
2704
|
*/
|
|
2705
|
-
Arn?: string;
|
|
2705
|
+
Arn?: string | undefined;
|
|
2706
2706
|
/**
|
|
2707
2707
|
* <p>The path to the policy.</p>
|
|
2708
2708
|
* <p>For more information about paths, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html">IAM identifiers</a> in the
|
|
2709
2709
|
* <i>IAM User Guide</i>.</p>
|
|
2710
2710
|
* @public
|
|
2711
2711
|
*/
|
|
2712
|
-
Path?: string;
|
|
2712
|
+
Path?: string | undefined;
|
|
2713
2713
|
/**
|
|
2714
2714
|
* <p>The identifier for the version of the policy that is set as the default (operative)
|
|
2715
2715
|
* version.</p>
|
|
@@ -2717,13 +2717,13 @@ export interface ManagedPolicyDetail {
|
|
|
2717
2717
|
* policies</a> in the <i>IAM User Guide</i>. </p>
|
|
2718
2718
|
* @public
|
|
2719
2719
|
*/
|
|
2720
|
-
DefaultVersionId?: string;
|
|
2720
|
+
DefaultVersionId?: string | undefined;
|
|
2721
2721
|
/**
|
|
2722
2722
|
* <p>The number of principal entities (users, groups, and roles) that the policy is attached
|
|
2723
2723
|
* to.</p>
|
|
2724
2724
|
* @public
|
|
2725
2725
|
*/
|
|
2726
|
-
AttachmentCount?: number;
|
|
2726
|
+
AttachmentCount?: number | undefined;
|
|
2727
2727
|
/**
|
|
2728
2728
|
* <p>The number of entities (users and roles) for which the policy is used as the permissions
|
|
2729
2729
|
* boundary. </p>
|
|
@@ -2731,23 +2731,23 @@ export interface ManagedPolicyDetail {
|
|
|
2731
2731
|
* identities </a> in the <i>IAM User Guide</i>.</p>
|
|
2732
2732
|
* @public
|
|
2733
2733
|
*/
|
|
2734
|
-
PermissionsBoundaryUsageCount?: number;
|
|
2734
|
+
PermissionsBoundaryUsageCount?: number | undefined;
|
|
2735
2735
|
/**
|
|
2736
2736
|
* <p>Specifies whether the policy can be attached to an IAM user, group, or role.</p>
|
|
2737
2737
|
* @public
|
|
2738
2738
|
*/
|
|
2739
|
-
IsAttachable?: boolean;
|
|
2739
|
+
IsAttachable?: boolean | undefined;
|
|
2740
2740
|
/**
|
|
2741
2741
|
* <p>A friendly description of the policy.</p>
|
|
2742
2742
|
* @public
|
|
2743
2743
|
*/
|
|
2744
|
-
Description?: string;
|
|
2744
|
+
Description?: string | undefined;
|
|
2745
2745
|
/**
|
|
2746
2746
|
* <p>The date and time, in <a href="http://www.iso.org/iso/iso8601">ISO 8601 date-time
|
|
2747
2747
|
* format</a>, when the policy was created.</p>
|
|
2748
2748
|
* @public
|
|
2749
2749
|
*/
|
|
2750
|
-
CreateDate?: Date;
|
|
2750
|
+
CreateDate?: Date | undefined;
|
|
2751
2751
|
/**
|
|
2752
2752
|
* <p>The date and time, in <a href="http://www.iso.org/iso/iso8601">ISO 8601 date-time
|
|
2753
2753
|
* format</a>, when the policy was last updated.</p>
|
|
@@ -2756,12 +2756,12 @@ export interface ManagedPolicyDetail {
|
|
|
2756
2756
|
* and time when the most recent policy version was created.</p>
|
|
2757
2757
|
* @public
|
|
2758
2758
|
*/
|
|
2759
|
-
UpdateDate?: Date;
|
|
2759
|
+
UpdateDate?: Date | undefined;
|
|
2760
2760
|
/**
|
|
2761
2761
|
* <p>A list containing information about the versions of the policy.</p>
|
|
2762
2762
|
* @public
|
|
2763
2763
|
*/
|
|
2764
|
-
PolicyVersionList?: PolicyVersion[];
|
|
2764
|
+
PolicyVersionList?: PolicyVersion[] | undefined;
|
|
2765
2765
|
}
|
|
2766
2766
|
/**
|
|
2767
2767
|
* <p>Contains information about an IAM role, including all of the role's policies.</p>
|
|
@@ -2774,67 +2774,67 @@ export interface RoleDetail {
|
|
|
2774
2774
|
* <i>IAM User Guide</i>.</p>
|
|
2775
2775
|
* @public
|
|
2776
2776
|
*/
|
|
2777
|
-
Path?: string;
|
|
2777
|
+
Path?: string | undefined;
|
|
2778
2778
|
/**
|
|
2779
2779
|
* <p>The friendly name that identifies the role.</p>
|
|
2780
2780
|
* @public
|
|
2781
2781
|
*/
|
|
2782
|
-
RoleName?: string;
|
|
2782
|
+
RoleName?: string | undefined;
|
|
2783
2783
|
/**
|
|
2784
2784
|
* <p>The stable and unique string identifying the role. For more information about IDs, see
|
|
2785
2785
|
* <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html">IAM
|
|
2786
2786
|
* identifiers</a> in the <i>IAM User Guide</i>.</p>
|
|
2787
2787
|
* @public
|
|
2788
2788
|
*/
|
|
2789
|
-
RoleId?: string;
|
|
2789
|
+
RoleId?: string | undefined;
|
|
2790
2790
|
/**
|
|
2791
2791
|
* <p>The Amazon Resource Name (ARN). ARNs are unique identifiers for Amazon Web Services resources.</p>
|
|
2792
2792
|
* <p>For more information about ARNs, go to <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a> in
|
|
2793
2793
|
* the <i>Amazon Web Services General Reference</i>. </p>
|
|
2794
2794
|
* @public
|
|
2795
2795
|
*/
|
|
2796
|
-
Arn?: string;
|
|
2796
|
+
Arn?: string | undefined;
|
|
2797
2797
|
/**
|
|
2798
2798
|
* <p>The date and time, in <a href="http://www.iso.org/iso/iso8601">ISO 8601 date-time
|
|
2799
2799
|
* format</a>, when the role was created.</p>
|
|
2800
2800
|
* @public
|
|
2801
2801
|
*/
|
|
2802
|
-
CreateDate?: Date;
|
|
2802
|
+
CreateDate?: Date | undefined;
|
|
2803
2803
|
/**
|
|
2804
2804
|
* <p>The trust policy that grants permission to assume the role.</p>
|
|
2805
2805
|
* @public
|
|
2806
2806
|
*/
|
|
2807
|
-
AssumeRolePolicyDocument?: string;
|
|
2807
|
+
AssumeRolePolicyDocument?: string | undefined;
|
|
2808
2808
|
/**
|
|
2809
2809
|
* <p>A list of instance profiles that contain this role.</p>
|
|
2810
2810
|
* @public
|
|
2811
2811
|
*/
|
|
2812
|
-
InstanceProfileList?: InstanceProfile[];
|
|
2812
|
+
InstanceProfileList?: InstanceProfile[] | undefined;
|
|
2813
2813
|
/**
|
|
2814
2814
|
* <p>A list of inline policies embedded in the role. These policies are the role's access
|
|
2815
2815
|
* (permissions) policies.</p>
|
|
2816
2816
|
* @public
|
|
2817
2817
|
*/
|
|
2818
|
-
RolePolicyList?: PolicyDetail[];
|
|
2818
|
+
RolePolicyList?: PolicyDetail[] | undefined;
|
|
2819
2819
|
/**
|
|
2820
2820
|
* <p>A list of managed policies attached to the role. These policies are the role's access
|
|
2821
2821
|
* (permissions) policies.</p>
|
|
2822
2822
|
* @public
|
|
2823
2823
|
*/
|
|
2824
|
-
AttachedManagedPolicies?: AttachedPolicy[];
|
|
2824
|
+
AttachedManagedPolicies?: AttachedPolicy[] | undefined;
|
|
2825
2825
|
/**
|
|
2826
2826
|
* <p>The ARN of the policy used to set the permissions boundary for the role.</p>
|
|
2827
2827
|
* <p>For more information about permissions boundaries, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_boundaries.html">Permissions boundaries for IAM
|
|
2828
2828
|
* identities </a> in the <i>IAM User Guide</i>.</p>
|
|
2829
2829
|
* @public
|
|
2830
2830
|
*/
|
|
2831
|
-
PermissionsBoundary?: AttachedPermissionsBoundary;
|
|
2831
|
+
PermissionsBoundary?: AttachedPermissionsBoundary | undefined;
|
|
2832
2832
|
/**
|
|
2833
2833
|
* <p>A list of tags that are attached to the role. For more information about tagging, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html">Tagging IAM resources</a> in the
|
|
2834
2834
|
* <i>IAM User Guide</i>.</p>
|
|
2835
2835
|
* @public
|
|
2836
2836
|
*/
|
|
2837
|
-
Tags?: Tag[];
|
|
2837
|
+
Tags?: Tag[] | undefined;
|
|
2838
2838
|
/**
|
|
2839
2839
|
* <p>Contains information about the last time that an IAM role was used. This includes the
|
|
2840
2840
|
* date and time and the Region in which the role was last used. Activity is only reported for
|
|
@@ -2843,7 +2843,7 @@ export interface RoleDetail {
|
|
|
2843
2843
|
* more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_access-advisor.html#access-advisor_tracking-period">Regions where data is tracked</a> in the <i>IAM User Guide</i>.</p>
|
|
2844
2844
|
* @public
|
|
2845
2845
|
*/
|
|
2846
|
-
RoleLastUsed?: RoleLastUsed;
|
|
2846
|
+
RoleLastUsed?: RoleLastUsed | undefined;
|
|
2847
2847
|
}
|
|
2848
2848
|
/**
|
|
2849
2849
|
* <p>Contains information about an IAM user, including all the user's policies and all the
|
|
@@ -2857,60 +2857,60 @@ export interface UserDetail {
|
|
|
2857
2857
|
* <i>IAM User Guide</i>.</p>
|
|
2858
2858
|
* @public
|
|
2859
2859
|
*/
|
|
2860
|
-
Path?: string;
|
|
2860
|
+
Path?: string | undefined;
|
|
2861
2861
|
/**
|
|
2862
2862
|
* <p>The friendly name identifying the user.</p>
|
|
2863
2863
|
* @public
|
|
2864
2864
|
*/
|
|
2865
|
-
UserName?: string;
|
|
2865
|
+
UserName?: string | undefined;
|
|
2866
2866
|
/**
|
|
2867
2867
|
* <p>The stable and unique string identifying the user. For more information about IDs, see
|
|
2868
2868
|
* <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html">IAM
|
|
2869
2869
|
* identifiers</a> in the <i>IAM User Guide</i>.</p>
|
|
2870
2870
|
* @public
|
|
2871
2871
|
*/
|
|
2872
|
-
UserId?: string;
|
|
2872
|
+
UserId?: string | undefined;
|
|
2873
2873
|
/**
|
|
2874
2874
|
* <p>The Amazon Resource Name (ARN). ARNs are unique identifiers for Amazon Web Services resources.</p>
|
|
2875
2875
|
* <p>For more information about ARNs, go to <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a> in
|
|
2876
2876
|
* the <i>Amazon Web Services General Reference</i>. </p>
|
|
2877
2877
|
* @public
|
|
2878
2878
|
*/
|
|
2879
|
-
Arn?: string;
|
|
2879
|
+
Arn?: string | undefined;
|
|
2880
2880
|
/**
|
|
2881
2881
|
* <p>The date and time, in <a href="http://www.iso.org/iso/iso8601">ISO 8601 date-time
|
|
2882
2882
|
* format</a>, when the user was created.</p>
|
|
2883
2883
|
* @public
|
|
2884
2884
|
*/
|
|
2885
|
-
CreateDate?: Date;
|
|
2885
|
+
CreateDate?: Date | undefined;
|
|
2886
2886
|
/**
|
|
2887
2887
|
* <p>A list of the inline policies embedded in the user.</p>
|
|
2888
2888
|
* @public
|
|
2889
2889
|
*/
|
|
2890
|
-
UserPolicyList?: PolicyDetail[];
|
|
2890
|
+
UserPolicyList?: PolicyDetail[] | undefined;
|
|
2891
2891
|
/**
|
|
2892
2892
|
* <p>A list of IAM groups that the user is in.</p>
|
|
2893
2893
|
* @public
|
|
2894
2894
|
*/
|
|
2895
|
-
GroupList?: string[];
|
|
2895
|
+
GroupList?: string[] | undefined;
|
|
2896
2896
|
/**
|
|
2897
2897
|
* <p>A list of the managed policies attached to the user.</p>
|
|
2898
2898
|
* @public
|
|
2899
2899
|
*/
|
|
2900
|
-
AttachedManagedPolicies?: AttachedPolicy[];
|
|
2900
|
+
AttachedManagedPolicies?: AttachedPolicy[] | undefined;
|
|
2901
2901
|
/**
|
|
2902
2902
|
* <p>The ARN of the policy used to set the permissions boundary for the user.</p>
|
|
2903
2903
|
* <p>For more information about permissions boundaries, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_boundaries.html">Permissions boundaries for IAM
|
|
2904
2904
|
* identities </a> in the <i>IAM User Guide</i>.</p>
|
|
2905
2905
|
* @public
|
|
2906
2906
|
*/
|
|
2907
|
-
PermissionsBoundary?: AttachedPermissionsBoundary;
|
|
2907
|
+
PermissionsBoundary?: AttachedPermissionsBoundary | undefined;
|
|
2908
2908
|
/**
|
|
2909
2909
|
* <p>A list of tags that are associated with the user. For more information about tagging, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html">Tagging IAM resources</a> in the
|
|
2910
2910
|
* <i>IAM User Guide</i>.</p>
|
|
2911
2911
|
* @public
|
|
2912
2912
|
*/
|
|
2913
|
-
Tags?: Tag[];
|
|
2913
|
+
Tags?: Tag[] | undefined;
|
|
2914
2914
|
}
|
|
2915
2915
|
/**
|
|
2916
2916
|
* <p>Contains the response to a successful <a>GetAccountAuthorizationDetails</a>
|
|
@@ -2922,22 +2922,22 @@ export interface GetAccountAuthorizationDetailsResponse {
|
|
|
2922
2922
|
* <p>A list containing information about IAM users.</p>
|
|
2923
2923
|
* @public
|
|
2924
2924
|
*/
|
|
2925
|
-
UserDetailList?: UserDetail[];
|
|
2925
|
+
UserDetailList?: UserDetail[] | undefined;
|
|
2926
2926
|
/**
|
|
2927
2927
|
* <p>A list containing information about IAM groups.</p>
|
|
2928
2928
|
* @public
|
|
2929
2929
|
*/
|
|
2930
|
-
GroupDetailList?: GroupDetail[];
|
|
2930
|
+
GroupDetailList?: GroupDetail[] | undefined;
|
|
2931
2931
|
/**
|
|
2932
2932
|
* <p>A list containing information about IAM roles.</p>
|
|
2933
2933
|
* @public
|
|
2934
2934
|
*/
|
|
2935
|
-
RoleDetailList?: RoleDetail[];
|
|
2935
|
+
RoleDetailList?: RoleDetail[] | undefined;
|
|
2936
2936
|
/**
|
|
2937
2937
|
* <p>A list containing information about managed policies.</p>
|
|
2938
2938
|
* @public
|
|
2939
2939
|
*/
|
|
2940
|
-
Policies?: ManagedPolicyDetail[];
|
|
2940
|
+
Policies?: ManagedPolicyDetail[] | undefined;
|
|
2941
2941
|
/**
|
|
2942
2942
|
* <p>A flag that indicates whether there are more items to return. If your
|
|
2943
2943
|
* results were truncated, you can make a subsequent pagination request using the <code>Marker</code>
|
|
@@ -2947,14 +2947,14 @@ export interface GetAccountAuthorizationDetailsResponse {
|
|
|
2947
2947
|
* results.</p>
|
|
2948
2948
|
* @public
|
|
2949
2949
|
*/
|
|
2950
|
-
IsTruncated?: boolean;
|
|
2950
|
+
IsTruncated?: boolean | undefined;
|
|
2951
2951
|
/**
|
|
2952
2952
|
* <p>When <code>IsTruncated</code> is <code>true</code>, this element
|
|
2953
2953
|
* is present and contains the value to use for the <code>Marker</code> parameter in a subsequent
|
|
2954
2954
|
* pagination request.</p>
|
|
2955
2955
|
* @public
|
|
2956
2956
|
*/
|
|
2957
|
-
Marker?: string;
|
|
2957
|
+
Marker?: string | undefined;
|
|
2958
2958
|
}
|
|
2959
2959
|
/**
|
|
2960
2960
|
* <p>Contains information about the account password policy.</p>
|
|
@@ -2966,32 +2966,32 @@ export interface PasswordPolicy {
|
|
|
2966
2966
|
* <p>Minimum length to require for IAM user passwords.</p>
|
|
2967
2967
|
* @public
|
|
2968
2968
|
*/
|
|
2969
|
-
MinimumPasswordLength?: number;
|
|
2969
|
+
MinimumPasswordLength?: number | undefined;
|
|
2970
2970
|
/**
|
|
2971
2971
|
* <p>Specifies whether IAM user passwords must contain at least one of the following
|
|
2972
2972
|
* symbols:</p>
|
|
2973
2973
|
* <p>! @ # $ % ^ & * ( ) _ + - = [ ] \{ \} | '</p>
|
|
2974
2974
|
* @public
|
|
2975
2975
|
*/
|
|
2976
|
-
RequireSymbols?: boolean;
|
|
2976
|
+
RequireSymbols?: boolean | undefined;
|
|
2977
2977
|
/**
|
|
2978
2978
|
* <p>Specifies whether IAM user passwords must contain at least one numeric character (0 to
|
|
2979
2979
|
* 9).</p>
|
|
2980
2980
|
* @public
|
|
2981
2981
|
*/
|
|
2982
|
-
RequireNumbers?: boolean;
|
|
2982
|
+
RequireNumbers?: boolean | undefined;
|
|
2983
2983
|
/**
|
|
2984
2984
|
* <p>Specifies whether IAM user passwords must contain at least one uppercase character (A
|
|
2985
2985
|
* to Z).</p>
|
|
2986
2986
|
* @public
|
|
2987
2987
|
*/
|
|
2988
|
-
RequireUppercaseCharacters?: boolean;
|
|
2988
|
+
RequireUppercaseCharacters?: boolean | undefined;
|
|
2989
2989
|
/**
|
|
2990
2990
|
* <p>Specifies whether IAM user passwords must contain at least one lowercase character (a
|
|
2991
2991
|
* to z).</p>
|
|
2992
2992
|
* @public
|
|
2993
2993
|
*/
|
|
2994
|
-
RequireLowercaseCharacters?: boolean;
|
|
2994
|
+
RequireLowercaseCharacters?: boolean | undefined;
|
|
2995
2995
|
/**
|
|
2996
2996
|
* <p>Specifies whether IAM users are allowed to change their own password. Gives IAM
|
|
2997
2997
|
* users permissions to <code>iam:ChangePassword</code> for only their user and to the
|
|
@@ -3000,25 +3000,25 @@ export interface PasswordPolicy {
|
|
|
3000
3000
|
* for all users by IAM.</p>
|
|
3001
3001
|
* @public
|
|
3002
3002
|
*/
|
|
3003
|
-
AllowUsersToChangePassword?: boolean;
|
|
3003
|
+
AllowUsersToChangePassword?: boolean | undefined;
|
|
3004
3004
|
/**
|
|
3005
3005
|
* <p>Indicates whether passwords in the account expire. Returns true if
|
|
3006
3006
|
* <code>MaxPasswordAge</code> contains a value greater than 0. Returns false if
|
|
3007
3007
|
* MaxPasswordAge is 0 or not present.</p>
|
|
3008
3008
|
* @public
|
|
3009
3009
|
*/
|
|
3010
|
-
ExpirePasswords?: boolean;
|
|
3010
|
+
ExpirePasswords?: boolean | undefined;
|
|
3011
3011
|
/**
|
|
3012
3012
|
* <p>The number of days that an IAM user password is valid.</p>
|
|
3013
3013
|
* @public
|
|
3014
3014
|
*/
|
|
3015
|
-
MaxPasswordAge?: number;
|
|
3015
|
+
MaxPasswordAge?: number | undefined;
|
|
3016
3016
|
/**
|
|
3017
3017
|
* <p>Specifies the number of previous passwords that IAM users are prevented from
|
|
3018
3018
|
* reusing.</p>
|
|
3019
3019
|
* @public
|
|
3020
3020
|
*/
|
|
3021
|
-
PasswordReusePrevention?: number;
|
|
3021
|
+
PasswordReusePrevention?: number | undefined;
|
|
3022
3022
|
/**
|
|
3023
3023
|
* <p>Specifies whether IAM users are prevented from setting a new password via the
|
|
3024
3024
|
* Amazon Web Services Management Console after their password has expired. The IAM user cannot access the console until
|
|
@@ -3027,7 +3027,7 @@ export interface PasswordPolicy {
|
|
|
3027
3027
|
* CLI or API.</p>
|
|
3028
3028
|
* @public
|
|
3029
3029
|
*/
|
|
3030
|
-
HardExpiry?: boolean;
|
|
3030
|
+
HardExpiry?: boolean | undefined;
|
|
3031
3031
|
}
|
|
3032
3032
|
/**
|
|
3033
3033
|
* <p>Contains the response to a successful <a>GetAccountPasswordPolicy</a>
|
|
@@ -3088,7 +3088,7 @@ export interface GetAccountSummaryResponse {
|
|
|
3088
3088
|
* IAM quotas.</p>
|
|
3089
3089
|
* @public
|
|
3090
3090
|
*/
|
|
3091
|
-
SummaryMap?: Partial<Record<SummaryKeyType, number
|
|
3091
|
+
SummaryMap?: Partial<Record<SummaryKeyType, number>> | undefined;
|
|
3092
3092
|
}
|
|
3093
3093
|
/**
|
|
3094
3094
|
* @public
|
|
@@ -3127,7 +3127,7 @@ export interface GetContextKeysForPolicyResponse {
|
|
|
3127
3127
|
* <p>The list of context keys that are referenced in the input policies.</p>
|
|
3128
3128
|
* @public
|
|
3129
3129
|
*/
|
|
3130
|
-
ContextKeyNames?: string[];
|
|
3130
|
+
ContextKeyNames?: string[] | undefined;
|
|
3131
3131
|
}
|
|
3132
3132
|
/**
|
|
3133
3133
|
* @public
|
|
@@ -3166,7 +3166,7 @@ export interface GetContextKeysForPrincipalPolicyRequest {
|
|
|
3166
3166
|
* </ul>
|
|
3167
3167
|
* @public
|
|
3168
3168
|
*/
|
|
3169
|
-
PolicyInputList?: string[];
|
|
3169
|
+
PolicyInputList?: string[] | undefined;
|
|
3170
3170
|
}
|
|
3171
3171
|
/**
|
|
3172
3172
|
* <p>The request was rejected because the most recent credential report has expired. To
|
|
@@ -3229,17 +3229,17 @@ export interface GetCredentialReportResponse {
|
|
|
3229
3229
|
* <p>Contains the credential report. The report is Base64-encoded.</p>
|
|
3230
3230
|
* @public
|
|
3231
3231
|
*/
|
|
3232
|
-
Content?: Uint8Array;
|
|
3232
|
+
Content?: Uint8Array | undefined;
|
|
3233
3233
|
/**
|
|
3234
3234
|
* <p>The format (MIME type) of the credential report.</p>
|
|
3235
3235
|
* @public
|
|
3236
3236
|
*/
|
|
3237
|
-
ReportFormat?: ReportFormatType;
|
|
3237
|
+
ReportFormat?: ReportFormatType | undefined;
|
|
3238
3238
|
/**
|
|
3239
3239
|
* <p> The date and time when the credential report was created, in <a href="http://www.iso.org/iso/iso8601">ISO 8601 date-time format</a>.</p>
|
|
3240
3240
|
* @public
|
|
3241
3241
|
*/
|
|
3242
|
-
GeneratedTime?: Date;
|
|
3242
|
+
GeneratedTime?: Date | undefined;
|
|
3243
3243
|
}
|
|
3244
3244
|
/**
|
|
3245
3245
|
* @public
|
|
@@ -3259,7 +3259,7 @@ export interface GetGroupRequest {
|
|
|
3259
3259
|
* should start.</p>
|
|
3260
3260
|
* @public
|
|
3261
3261
|
*/
|
|
3262
|
-
Marker?: string;
|
|
3262
|
+
Marker?: string | undefined;
|
|
3263
3263
|
/**
|
|
3264
3264
|
* <p>Use this only when paginating results to indicate the
|
|
3265
3265
|
* maximum number of items you want in the response. If additional items exist beyond the maximum
|
|
@@ -3271,7 +3271,7 @@ export interface GetGroupRequest {
|
|
|
3271
3271
|
* from.</p>
|
|
3272
3272
|
* @public
|
|
3273
3273
|
*/
|
|
3274
|
-
MaxItems?: number;
|
|
3274
|
+
MaxItems?: number | undefined;
|
|
3275
3275
|
}
|
|
3276
3276
|
/**
|
|
3277
3277
|
* <p>Contains the response to a successful <a>GetGroup</a> request. </p>
|
|
@@ -3297,14 +3297,14 @@ export interface GetGroupResponse {
|
|
|
3297
3297
|
* results.</p>
|
|
3298
3298
|
* @public
|
|
3299
3299
|
*/
|
|
3300
|
-
IsTruncated?: boolean;
|
|
3300
|
+
IsTruncated?: boolean | undefined;
|
|
3301
3301
|
/**
|
|
3302
3302
|
* <p>When <code>IsTruncated</code> is <code>true</code>, this element
|
|
3303
3303
|
* is present and contains the value to use for the <code>Marker</code> parameter in a subsequent
|
|
3304
3304
|
* pagination request.</p>
|
|
3305
3305
|
* @public
|
|
3306
3306
|
*/
|
|
3307
|
-
Marker?: string;
|
|
3307
|
+
Marker?: string | undefined;
|
|
3308
3308
|
}
|
|
3309
3309
|
/**
|
|
3310
3310
|
* @public
|
|
@@ -3413,7 +3413,7 @@ export interface GetMFADeviceRequest {
|
|
|
3413
3413
|
* <p>The friendly name identifying the user.</p>
|
|
3414
3414
|
* @public
|
|
3415
3415
|
*/
|
|
3416
|
-
UserName?: string;
|
|
3416
|
+
UserName?: string | undefined;
|
|
3417
3417
|
}
|
|
3418
3418
|
/**
|
|
3419
3419
|
* @public
|
|
@@ -3423,7 +3423,7 @@ export interface GetMFADeviceResponse {
|
|
|
3423
3423
|
* <p>The friendly name identifying the user.</p>
|
|
3424
3424
|
* @public
|
|
3425
3425
|
*/
|
|
3426
|
-
UserName?: string;
|
|
3426
|
+
UserName?: string | undefined;
|
|
3427
3427
|
/**
|
|
3428
3428
|
* <p>Serial number that uniquely identifies the MFA device. For this API, we only accept
|
|
3429
3429
|
* FIDO security key <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/reference-arns.html">ARNs</a>.</p>
|
|
@@ -3434,14 +3434,14 @@ export interface GetMFADeviceResponse {
|
|
|
3434
3434
|
* <p>The date that a specified user's MFA device was first enabled.</p>
|
|
3435
3435
|
* @public
|
|
3436
3436
|
*/
|
|
3437
|
-
EnableDate?: Date;
|
|
3437
|
+
EnableDate?: Date | undefined;
|
|
3438
3438
|
/**
|
|
3439
3439
|
* <p>The certifications of a specified user's MFA device. We currently provide FIPS-140-2,
|
|
3440
3440
|
* FIPS-140-3, and FIDO certification levels obtained from <a href="https://fidoalliance.org/metadata/"> FIDO Alliance Metadata Service
|
|
3441
3441
|
* (MDS)</a>.</p>
|
|
3442
3442
|
* @public
|
|
3443
3443
|
*/
|
|
3444
|
-
Certifications?: Record<string, string
|
|
3444
|
+
Certifications?: Record<string, string> | undefined;
|
|
3445
3445
|
}
|
|
3446
3446
|
/**
|
|
3447
3447
|
* @public
|
|
@@ -3466,32 +3466,32 @@ export interface GetOpenIDConnectProviderResponse {
|
|
|
3466
3466
|
* information, see <a>CreateOpenIDConnectProvider</a>.</p>
|
|
3467
3467
|
* @public
|
|
3468
3468
|
*/
|
|
3469
|
-
Url?: string;
|
|
3469
|
+
Url?: string | undefined;
|
|
3470
3470
|
/**
|
|
3471
3471
|
* <p>A list of client IDs (also known as audiences) that are associated with the specified
|
|
3472
3472
|
* IAM OIDC provider resource object. For more information, see <a>CreateOpenIDConnectProvider</a>.</p>
|
|
3473
3473
|
* @public
|
|
3474
3474
|
*/
|
|
3475
|
-
ClientIDList?: string[];
|
|
3475
|
+
ClientIDList?: string[] | undefined;
|
|
3476
3476
|
/**
|
|
3477
3477
|
* <p>A list of certificate thumbprints that are associated with the specified IAM OIDC
|
|
3478
3478
|
* provider resource object. For more information, see <a>CreateOpenIDConnectProvider</a>. </p>
|
|
3479
3479
|
* @public
|
|
3480
3480
|
*/
|
|
3481
|
-
ThumbprintList?: string[];
|
|
3481
|
+
ThumbprintList?: string[] | undefined;
|
|
3482
3482
|
/**
|
|
3483
3483
|
* <p>The date and time when the IAM OIDC provider resource object was created in the
|
|
3484
3484
|
* Amazon Web Services account.</p>
|
|
3485
3485
|
* @public
|
|
3486
3486
|
*/
|
|
3487
|
-
CreateDate?: Date;
|
|
3487
|
+
CreateDate?: Date | undefined;
|
|
3488
3488
|
/**
|
|
3489
3489
|
* <p>A list of tags that are attached to the specified IAM OIDC provider. The returned list of tags is sorted by tag key.
|
|
3490
3490
|
* For more information about tagging, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html">Tagging IAM resources</a> in the
|
|
3491
3491
|
* <i>IAM User Guide</i>.</p>
|
|
3492
3492
|
* @public
|
|
3493
3493
|
*/
|
|
3494
|
-
Tags?: Tag[];
|
|
3494
|
+
Tags?: Tag[] | undefined;
|
|
3495
3495
|
}
|
|
3496
3496
|
/**
|
|
3497
3497
|
* @public
|
|
@@ -3527,7 +3527,7 @@ export interface GetOrganizationsAccessReportRequest {
|
|
|
3527
3527
|
* from.</p>
|
|
3528
3528
|
* @public
|
|
3529
3529
|
*/
|
|
3530
|
-
MaxItems?: number;
|
|
3530
|
+
MaxItems?: number | undefined;
|
|
3531
3531
|
/**
|
|
3532
3532
|
* <p>Use this parameter only when paginating results and only after
|
|
3533
3533
|
* you receive a response indicating that the results are truncated. Set it to the value of the
|
|
@@ -3535,14 +3535,14 @@ export interface GetOrganizationsAccessReportRequest {
|
|
|
3535
3535
|
* should start.</p>
|
|
3536
3536
|
* @public
|
|
3537
3537
|
*/
|
|
3538
|
-
Marker?: string;
|
|
3538
|
+
Marker?: string | undefined;
|
|
3539
3539
|
/**
|
|
3540
3540
|
* <p>The key that is used to sort the results. If you choose the namespace key, the results
|
|
3541
3541
|
* are returned in alphabetical order. If you choose the time key, the results are sorted
|
|
3542
3542
|
* numerically by the date and time.</p>
|
|
3543
3543
|
* @public
|
|
3544
3544
|
*/
|
|
3545
|
-
SortKey?: SortKeyType;
|
|
3545
|
+
SortKey?: SortKeyType | undefined;
|
|
3546
3546
|
}
|
|
3547
3547
|
/**
|
|
3548
3548
|
* <p>Contains information about the reason that the operation failed.</p>
|
|
@@ -3596,25 +3596,25 @@ export interface GetOrganizationsAccessReportResponse {
|
|
|
3596
3596
|
* of <code>IN_PROGRESS</code>.</p>
|
|
3597
3597
|
* @public
|
|
3598
3598
|
*/
|
|
3599
|
-
JobCompletionDate?: Date;
|
|
3599
|
+
JobCompletionDate?: Date | undefined;
|
|
3600
3600
|
/**
|
|
3601
3601
|
* <p>The number of services that the applicable SCPs allow account principals to
|
|
3602
3602
|
* access.</p>
|
|
3603
3603
|
* @public
|
|
3604
3604
|
*/
|
|
3605
|
-
NumberOfServicesAccessible?: number;
|
|
3605
|
+
NumberOfServicesAccessible?: number | undefined;
|
|
3606
3606
|
/**
|
|
3607
3607
|
* <p>The number of services that account principals are allowed but did not attempt to
|
|
3608
3608
|
* access.</p>
|
|
3609
3609
|
* @public
|
|
3610
3610
|
*/
|
|
3611
|
-
NumberOfServicesNotAccessed?: number;
|
|
3611
|
+
NumberOfServicesNotAccessed?: number | undefined;
|
|
3612
3612
|
/**
|
|
3613
3613
|
* <p>An object that contains details about the most recent attempt to access the
|
|
3614
3614
|
* service.</p>
|
|
3615
3615
|
* @public
|
|
3616
3616
|
*/
|
|
3617
|
-
AccessDetails?: AccessDetail[];
|
|
3617
|
+
AccessDetails?: AccessDetail[] | undefined;
|
|
3618
3618
|
/**
|
|
3619
3619
|
* <p>A flag that indicates whether there are more items to return. If your
|
|
3620
3620
|
* results were truncated, you can make a subsequent pagination request using the <code>Marker</code>
|
|
@@ -3624,20 +3624,20 @@ export interface GetOrganizationsAccessReportResponse {
|
|
|
3624
3624
|
* results.</p>
|
|
3625
3625
|
* @public
|
|
3626
3626
|
*/
|
|
3627
|
-
IsTruncated?: boolean;
|
|
3627
|
+
IsTruncated?: boolean | undefined;
|
|
3628
3628
|
/**
|
|
3629
3629
|
* <p>When <code>IsTruncated</code> is <code>true</code>, this element
|
|
3630
3630
|
* is present and contains the value to use for the <code>Marker</code> parameter in a subsequent
|
|
3631
3631
|
* pagination request.</p>
|
|
3632
3632
|
* @public
|
|
3633
3633
|
*/
|
|
3634
|
-
Marker?: string;
|
|
3634
|
+
Marker?: string | undefined;
|
|
3635
3635
|
/**
|
|
3636
3636
|
* <p>Contains information about the reason that the operation failed.</p>
|
|
3637
3637
|
* <p>This data type is used as a response element in the <a>GetOrganizationsAccessReport</a>, <a>GetServiceLastAccessedDetails</a>, and <a>GetServiceLastAccessedDetailsWithEntities</a> operations.</p>
|
|
3638
3638
|
* @public
|
|
3639
3639
|
*/
|
|
3640
|
-
ErrorDetails?: ErrorDetails;
|
|
3640
|
+
ErrorDetails?: ErrorDetails | undefined;
|
|
3641
3641
|
}
|
|
3642
3642
|
/**
|
|
3643
3643
|
* @public
|
|
@@ -3660,7 +3660,7 @@ export interface GetPolicyResponse {
|
|
|
3660
3660
|
* <p>A structure containing details about the policy.</p>
|
|
3661
3661
|
* @public
|
|
3662
3662
|
*/
|
|
3663
|
-
Policy?: Policy;
|
|
3663
|
+
Policy?: Policy | undefined;
|
|
3664
3664
|
}
|
|
3665
3665
|
/**
|
|
3666
3666
|
* @public
|
|
@@ -3692,7 +3692,7 @@ export interface GetPolicyVersionResponse {
|
|
|
3692
3692
|
* <p>A structure containing details about the policy version.</p>
|
|
3693
3693
|
* @public
|
|
3694
3694
|
*/
|
|
3695
|
-
PolicyVersion?: PolicyVersion;
|
|
3695
|
+
PolicyVersion?: PolicyVersion | undefined;
|
|
3696
3696
|
}
|
|
3697
3697
|
/**
|
|
3698
3698
|
* @public
|
|
@@ -3783,24 +3783,24 @@ export interface GetSAMLProviderResponse {
|
|
|
3783
3783
|
* <p>The XML metadata document that includes information about an identity provider.</p>
|
|
3784
3784
|
* @public
|
|
3785
3785
|
*/
|
|
3786
|
-
SAMLMetadataDocument?: string;
|
|
3786
|
+
SAMLMetadataDocument?: string | undefined;
|
|
3787
3787
|
/**
|
|
3788
3788
|
* <p>The date and time when the SAML provider was created.</p>
|
|
3789
3789
|
* @public
|
|
3790
3790
|
*/
|
|
3791
|
-
CreateDate?: Date;
|
|
3791
|
+
CreateDate?: Date | undefined;
|
|
3792
3792
|
/**
|
|
3793
3793
|
* <p>The expiration date and time for the SAML provider.</p>
|
|
3794
3794
|
* @public
|
|
3795
3795
|
*/
|
|
3796
|
-
ValidUntil?: Date;
|
|
3796
|
+
ValidUntil?: Date | undefined;
|
|
3797
3797
|
/**
|
|
3798
3798
|
* <p>A list of tags that are attached to the specified IAM SAML provider. The returned list of tags is sorted by tag key.
|
|
3799
3799
|
* For more information about tagging, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html">Tagging IAM resources</a> in the
|
|
3800
3800
|
* <i>IAM User Guide</i>.</p>
|
|
3801
3801
|
* @public
|
|
3802
3802
|
*/
|
|
3803
|
-
Tags?: Tag[];
|
|
3803
|
+
Tags?: Tag[] | undefined;
|
|
3804
3804
|
}
|
|
3805
3805
|
/**
|
|
3806
3806
|
* @public
|
|
@@ -3850,12 +3850,12 @@ export interface ServerCertificateMetadata {
|
|
|
3850
3850
|
* <p>The date when the server certificate was uploaded.</p>
|
|
3851
3851
|
* @public
|
|
3852
3852
|
*/
|
|
3853
|
-
UploadDate?: Date;
|
|
3853
|
+
UploadDate?: Date | undefined;
|
|
3854
3854
|
/**
|
|
3855
3855
|
* <p>The date on which the certificate is set to expire.</p>
|
|
3856
3856
|
* @public
|
|
3857
3857
|
*/
|
|
3858
|
-
Expiration?: Date;
|
|
3858
|
+
Expiration?: Date | undefined;
|
|
3859
3859
|
}
|
|
3860
3860
|
/**
|
|
3861
3861
|
* <p>Contains information about a server certificate.</p>
|
|
@@ -3878,13 +3878,13 @@ export interface ServerCertificate {
|
|
|
3878
3878
|
* <p>The contents of the public key certificate chain.</p>
|
|
3879
3879
|
* @public
|
|
3880
3880
|
*/
|
|
3881
|
-
CertificateChain?: string;
|
|
3881
|
+
CertificateChain?: string | undefined;
|
|
3882
3882
|
/**
|
|
3883
3883
|
* <p>A list of tags that are attached to the server certificate. For more information about tagging, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html">Tagging IAM resources</a> in the
|
|
3884
3884
|
* <i>IAM User Guide</i>.</p>
|
|
3885
3885
|
* @public
|
|
3886
3886
|
*/
|
|
3887
|
-
Tags?: Tag[];
|
|
3887
|
+
Tags?: Tag[] | undefined;
|
|
3888
3888
|
}
|
|
3889
3889
|
/**
|
|
3890
3890
|
* <p>Contains the response to a successful <a>GetServerCertificate</a> request.
|
|
@@ -3921,7 +3921,7 @@ export interface GetServiceLastAccessedDetailsRequest {
|
|
|
3921
3921
|
* from.</p>
|
|
3922
3922
|
* @public
|
|
3923
3923
|
*/
|
|
3924
|
-
MaxItems?: number;
|
|
3924
|
+
MaxItems?: number | undefined;
|
|
3925
3925
|
/**
|
|
3926
3926
|
* <p>Use this parameter only when paginating results and only after
|
|
3927
3927
|
* you receive a response indicating that the results are truncated. Set it to the value of the
|
|
@@ -3929,7 +3929,7 @@ export interface GetServiceLastAccessedDetailsRequest {
|
|
|
3929
3929
|
* should start.</p>
|
|
3930
3930
|
* @public
|
|
3931
3931
|
*/
|
|
3932
|
-
Marker?: string;
|
|
3932
|
+
Marker?: string | undefined;
|
|
3933
3933
|
}
|
|
3934
3934
|
/**
|
|
3935
3935
|
* <p>Contains details about the most recent attempt to access an action within the
|
|
@@ -3943,14 +3943,14 @@ export interface TrackedActionLastAccessed {
|
|
|
3943
3943
|
* actions that report activity to IAM.</p>
|
|
3944
3944
|
* @public
|
|
3945
3945
|
*/
|
|
3946
|
-
ActionName?: string;
|
|
3946
|
+
ActionName?: string | undefined;
|
|
3947
3947
|
/**
|
|
3948
3948
|
* <p>The Amazon Resource Name (ARN). ARNs are unique identifiers for Amazon Web Services resources.</p>
|
|
3949
3949
|
* <p>For more information about ARNs, go to <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a> in
|
|
3950
3950
|
* the <i>Amazon Web Services General Reference</i>. </p>
|
|
3951
3951
|
* @public
|
|
3952
3952
|
*/
|
|
3953
|
-
LastAccessedEntity?: string;
|
|
3953
|
+
LastAccessedEntity?: string | undefined;
|
|
3954
3954
|
/**
|
|
3955
3955
|
* <p>The date and time, in <a href="http://www.iso.org/iso/iso8601">ISO 8601 date-time
|
|
3956
3956
|
* format</a>, when an authenticated entity most recently attempted to access the
|
|
@@ -3959,7 +3959,7 @@ export interface TrackedActionLastAccessed {
|
|
|
3959
3959
|
* <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_access-advisor.html#service-last-accessed-reporting-period">tracking period</a>.</p>
|
|
3960
3960
|
* @public
|
|
3961
3961
|
*/
|
|
3962
|
-
LastAccessedTime?: Date;
|
|
3962
|
+
LastAccessedTime?: Date | undefined;
|
|
3963
3963
|
/**
|
|
3964
3964
|
* <p>The Region from which the authenticated entity (user or role) last attempted to access
|
|
3965
3965
|
* the tracked action. Amazon Web Services does not report unauthenticated requests.</p>
|
|
@@ -3967,7 +3967,7 @@ export interface TrackedActionLastAccessed {
|
|
|
3967
3967
|
* <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_access-advisor.html#service-last-accessed-reporting-period">tracking period</a>.</p>
|
|
3968
3968
|
* @public
|
|
3969
3969
|
*/
|
|
3970
|
-
LastAccessedRegion?: string;
|
|
3970
|
+
LastAccessedRegion?: string | undefined;
|
|
3971
3971
|
}
|
|
3972
3972
|
/**
|
|
3973
3973
|
* <p>Contains details about the most recent attempt to access the service.</p>
|
|
@@ -3988,7 +3988,7 @@ export interface ServiceLastAccessed {
|
|
|
3988
3988
|
* <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_access-advisor.html#service-last-accessed-reporting-period">tracking period</a>.</p>
|
|
3989
3989
|
* @public
|
|
3990
3990
|
*/
|
|
3991
|
-
LastAuthenticated?: Date;
|
|
3991
|
+
LastAuthenticated?: Date | undefined;
|
|
3992
3992
|
/**
|
|
3993
3993
|
* <p>The namespace of the service in which access was attempted.</p>
|
|
3994
3994
|
* <p>To learn the service namespace of a service, see <a href="https://docs.aws.amazon.com/service-authorization/latest/reference/reference_policies_actions-resources-contextkeys.html">Actions, resources, and condition keys for Amazon Web Services services</a> in the
|
|
@@ -4007,7 +4007,7 @@ export interface ServiceLastAccessed {
|
|
|
4007
4007
|
* <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_access-advisor.html#service-last-accessed-reporting-period">tracking period</a>.</p>
|
|
4008
4008
|
* @public
|
|
4009
4009
|
*/
|
|
4010
|
-
LastAuthenticatedEntity?: string;
|
|
4010
|
+
LastAuthenticatedEntity?: string | undefined;
|
|
4011
4011
|
/**
|
|
4012
4012
|
* <p>The Region from which the authenticated entity (user or role) last attempted to access
|
|
4013
4013
|
* the service. Amazon Web Services does not report unauthenticated requests.</p>
|
|
@@ -4015,14 +4015,14 @@ export interface ServiceLastAccessed {
|
|
|
4015
4015
|
* <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_access-advisor.html#service-last-accessed-reporting-period">tracking period</a>.</p>
|
|
4016
4016
|
* @public
|
|
4017
4017
|
*/
|
|
4018
|
-
LastAuthenticatedRegion?: string;
|
|
4018
|
+
LastAuthenticatedRegion?: string | undefined;
|
|
4019
4019
|
/**
|
|
4020
4020
|
* <p>The total number of authenticated principals (root user, IAM users, or IAM roles)
|
|
4021
4021
|
* that have attempted to access the service.</p>
|
|
4022
4022
|
* <p>This field is null if no principals attempted to access the service within the <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_access-advisor.html#service-last-accessed-reporting-period">tracking period</a>.</p>
|
|
4023
4023
|
* @public
|
|
4024
4024
|
*/
|
|
4025
|
-
TotalAuthenticatedEntities?: number;
|
|
4025
|
+
TotalAuthenticatedEntities?: number | undefined;
|
|
4026
4026
|
/**
|
|
4027
4027
|
* <p>An object that contains details about the most recent attempt to access a tracked action
|
|
4028
4028
|
* within the service.</p>
|
|
@@ -4032,7 +4032,7 @@ export interface ServiceLastAccessed {
|
|
|
4032
4032
|
* <code>Granularity</code> field in <a>GenerateServiceLastAccessedDetails</a>.</p>
|
|
4033
4033
|
* @public
|
|
4034
4034
|
*/
|
|
4035
|
-
TrackedActionsLastAccessed?: TrackedActionLastAccessed[];
|
|
4035
|
+
TrackedActionsLastAccessed?: TrackedActionLastAccessed[] | undefined;
|
|
4036
4036
|
}
|
|
4037
4037
|
/**
|
|
4038
4038
|
* @public
|
|
@@ -4049,7 +4049,7 @@ export interface GetServiceLastAccessedDetailsResponse {
|
|
|
4049
4049
|
* service were last accessed.</p>
|
|
4050
4050
|
* @public
|
|
4051
4051
|
*/
|
|
4052
|
-
JobType?: AccessAdvisorUsageGranularityType;
|
|
4052
|
+
JobType?: AccessAdvisorUsageGranularityType | undefined;
|
|
4053
4053
|
/**
|
|
4054
4054
|
* <p>The date and time, in <a href="http://www.iso.org/iso/iso8601">ISO 8601 date-time
|
|
4055
4055
|
* format</a>, when the report job was created.</p>
|
|
@@ -4079,19 +4079,19 @@ export interface GetServiceLastAccessedDetailsResponse {
|
|
|
4079
4079
|
* results.</p>
|
|
4080
4080
|
* @public
|
|
4081
4081
|
*/
|
|
4082
|
-
IsTruncated?: boolean;
|
|
4082
|
+
IsTruncated?: boolean | undefined;
|
|
4083
4083
|
/**
|
|
4084
4084
|
* <p>When <code>IsTruncated</code> is <code>true</code>, this element
|
|
4085
4085
|
* is present and contains the value to use for the <code>Marker</code> parameter in a subsequent
|
|
4086
4086
|
* pagination request.</p>
|
|
4087
4087
|
* @public
|
|
4088
4088
|
*/
|
|
4089
|
-
Marker?: string;
|
|
4089
|
+
Marker?: string | undefined;
|
|
4090
4090
|
/**
|
|
4091
4091
|
* <p>An object that contains details about the reason the operation failed.</p>
|
|
4092
4092
|
* @public
|
|
4093
4093
|
*/
|
|
4094
|
-
Error?: ErrorDetails;
|
|
4094
|
+
Error?: ErrorDetails | undefined;
|
|
4095
4095
|
}
|
|
4096
4096
|
/**
|
|
4097
4097
|
* @public
|
|
@@ -4126,7 +4126,7 @@ export interface GetServiceLastAccessedDetailsWithEntitiesRequest {
|
|
|
4126
4126
|
* from.</p>
|
|
4127
4127
|
* @public
|
|
4128
4128
|
*/
|
|
4129
|
-
MaxItems?: number;
|
|
4129
|
+
MaxItems?: number | undefined;
|
|
4130
4130
|
/**
|
|
4131
4131
|
* <p>Use this parameter only when paginating results and only after
|
|
4132
4132
|
* you receive a response indicating that the results are truncated. Set it to the value of the
|
|
@@ -4134,7 +4134,7 @@ export interface GetServiceLastAccessedDetailsWithEntitiesRequest {
|
|
|
4134
4134
|
* should start.</p>
|
|
4135
4135
|
* @public
|
|
4136
4136
|
*/
|
|
4137
|
-
Marker?: string;
|
|
4137
|
+
Marker?: string | undefined;
|
|
4138
4138
|
}
|
|
4139
4139
|
/**
|
|
4140
4140
|
* @public
|
|
@@ -4182,7 +4182,7 @@ export interface EntityInfo {
|
|
|
4182
4182
|
* identifiers</a> in the <i>IAM User Guide</i>. </p>
|
|
4183
4183
|
* @public
|
|
4184
4184
|
*/
|
|
4185
|
-
Path?: string;
|
|
4185
|
+
Path?: string | undefined;
|
|
4186
4186
|
}
|
|
4187
4187
|
/**
|
|
4188
4188
|
* <p>An object that contains details about when the IAM entities (users or roles) were last
|
|
@@ -4205,7 +4205,7 @@ export interface EntityDetails {
|
|
|
4205
4205
|
* <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_access-advisor.html#service-last-accessed-reporting-period">tracking period</a>.</p>
|
|
4206
4206
|
* @public
|
|
4207
4207
|
*/
|
|
4208
|
-
LastAuthenticated?: Date;
|
|
4208
|
+
LastAuthenticated?: Date | undefined;
|
|
4209
4209
|
}
|
|
4210
4210
|
/**
|
|
4211
4211
|
* @public
|
|
@@ -4246,19 +4246,19 @@ export interface GetServiceLastAccessedDetailsWithEntitiesResponse {
|
|
|
4246
4246
|
* results.</p>
|
|
4247
4247
|
* @public
|
|
4248
4248
|
*/
|
|
4249
|
-
IsTruncated?: boolean;
|
|
4249
|
+
IsTruncated?: boolean | undefined;
|
|
4250
4250
|
/**
|
|
4251
4251
|
* <p>When <code>IsTruncated</code> is <code>true</code>, this element
|
|
4252
4252
|
* is present and contains the value to use for the <code>Marker</code> parameter in a subsequent
|
|
4253
4253
|
* pagination request.</p>
|
|
4254
4254
|
* @public
|
|
4255
4255
|
*/
|
|
4256
|
-
Marker?: string;
|
|
4256
|
+
Marker?: string | undefined;
|
|
4257
4257
|
/**
|
|
4258
4258
|
* <p>An object that contains details about the reason the operation failed.</p>
|
|
4259
4259
|
* @public
|
|
4260
4260
|
*/
|
|
4261
|
-
Error?: ErrorDetails;
|
|
4261
|
+
Error?: ErrorDetails | undefined;
|
|
4262
4262
|
}
|
|
4263
4263
|
/**
|
|
4264
4264
|
* @public
|
|
@@ -4282,12 +4282,12 @@ export interface RoleUsageType {
|
|
|
4282
4282
|
* <p>The name of the Region where the service-linked role is being used.</p>
|
|
4283
4283
|
* @public
|
|
4284
4284
|
*/
|
|
4285
|
-
Region?: string;
|
|
4285
|
+
Region?: string | undefined;
|
|
4286
4286
|
/**
|
|
4287
4287
|
* <p>The name of the resource that is using the service-linked role.</p>
|
|
4288
4288
|
* @public
|
|
4289
4289
|
*/
|
|
4290
|
-
Resources?: string[];
|
|
4290
|
+
Resources?: string[] | undefined;
|
|
4291
4291
|
}
|
|
4292
4292
|
/**
|
|
4293
4293
|
* <p>The reason that the service-linked role deletion failed.</p>
|
|
@@ -4299,7 +4299,7 @@ export interface DeletionTaskFailureReasonType {
|
|
|
4299
4299
|
* <p>A short description of the reason that the service-linked role deletion failed.</p>
|
|
4300
4300
|
* @public
|
|
4301
4301
|
*/
|
|
4302
|
-
Reason?: string;
|
|
4302
|
+
Reason?: string | undefined;
|
|
4303
4303
|
/**
|
|
4304
4304
|
* <p>A list of objects that contains details about the service-linked role deletion failure,
|
|
4305
4305
|
* if that information is returned by the service. If the service-linked role has active
|
|
@@ -4309,7 +4309,7 @@ export interface DeletionTaskFailureReasonType {
|
|
|
4309
4309
|
* used.</p>
|
|
4310
4310
|
* @public
|
|
4311
4311
|
*/
|
|
4312
|
-
RoleUsageList?: RoleUsageType[];
|
|
4312
|
+
RoleUsageList?: RoleUsageType[] | undefined;
|
|
4313
4313
|
}
|
|
4314
4314
|
/**
|
|
4315
4315
|
* @public
|
|
@@ -4338,7 +4338,7 @@ export interface GetServiceLinkedRoleDeletionStatusResponse {
|
|
|
4338
4338
|
* <p>An object that contains details about the reason the deletion failed.</p>
|
|
4339
4339
|
* @public
|
|
4340
4340
|
*/
|
|
4341
|
-
Reason?: DeletionTaskFailureReasonType;
|
|
4341
|
+
Reason?: DeletionTaskFailureReasonType | undefined;
|
|
4342
4342
|
}
|
|
4343
4343
|
/**
|
|
4344
4344
|
* @public
|
|
@@ -4417,7 +4417,7 @@ export interface SSHPublicKey {
|
|
|
4417
4417
|
* format</a>, when the SSH public key was uploaded.</p>
|
|
4418
4418
|
* @public
|
|
4419
4419
|
*/
|
|
4420
|
-
UploadDate?: Date;
|
|
4420
|
+
UploadDate?: Date | undefined;
|
|
4421
4421
|
}
|
|
4422
4422
|
/**
|
|
4423
4423
|
* <p>Contains the response to a successful <a>GetSSHPublicKey</a>
|
|
@@ -4429,7 +4429,7 @@ export interface GetSSHPublicKeyResponse {
|
|
|
4429
4429
|
* <p>A structure containing details about the SSH public key.</p>
|
|
4430
4430
|
* @public
|
|
4431
4431
|
*/
|
|
4432
|
-
SSHPublicKey?: SSHPublicKey;
|
|
4432
|
+
SSHPublicKey?: SSHPublicKey | undefined;
|
|
4433
4433
|
}
|
|
4434
4434
|
/**
|
|
4435
4435
|
* <p>The request was rejected because the public key encoding format is unsupported or
|
|
@@ -4455,7 +4455,7 @@ export interface GetUserRequest {
|
|
|
4455
4455
|
* characters with no spaces. You can also include any of the following characters: _+=,.@-</p>
|
|
4456
4456
|
* @public
|
|
4457
4457
|
*/
|
|
4458
|
-
UserName?: string;
|
|
4458
|
+
UserName?: string | undefined;
|
|
4459
4459
|
}
|
|
4460
4460
|
/**
|
|
4461
4461
|
* <p>Contains the response to a successful <a>GetUser</a> request. </p>
|
|
@@ -4537,7 +4537,7 @@ export interface ListAccessKeysRequest {
|
|
|
4537
4537
|
* characters with no spaces. You can also include any of the following characters: _+=,.@-</p>
|
|
4538
4538
|
* @public
|
|
4539
4539
|
*/
|
|
4540
|
-
UserName?: string;
|
|
4540
|
+
UserName?: string | undefined;
|
|
4541
4541
|
/**
|
|
4542
4542
|
* <p>Use this parameter only when paginating results and only after
|
|
4543
4543
|
* you receive a response indicating that the results are truncated. Set it to the value of the
|
|
@@ -4545,7 +4545,7 @@ export interface ListAccessKeysRequest {
|
|
|
4545
4545
|
* should start.</p>
|
|
4546
4546
|
* @public
|
|
4547
4547
|
*/
|
|
4548
|
-
Marker?: string;
|
|
4548
|
+
Marker?: string | undefined;
|
|
4549
4549
|
/**
|
|
4550
4550
|
* <p>Use this only when paginating results to indicate the
|
|
4551
4551
|
* maximum number of items you want in the response. If additional items exist beyond the maximum
|
|
@@ -4557,7 +4557,7 @@ export interface ListAccessKeysRequest {
|
|
|
4557
4557
|
* from.</p>
|
|
4558
4558
|
* @public
|
|
4559
4559
|
*/
|
|
4560
|
-
MaxItems?: number;
|
|
4560
|
+
MaxItems?: number | undefined;
|
|
4561
4561
|
}
|
|
4562
4562
|
/**
|
|
4563
4563
|
* <p>Contains the response to a successful <a>ListAccessKeys</a> request.
|
|
@@ -4579,14 +4579,14 @@ export interface ListAccessKeysResponse {
|
|
|
4579
4579
|
* results.</p>
|
|
4580
4580
|
* @public
|
|
4581
4581
|
*/
|
|
4582
|
-
IsTruncated?: boolean;
|
|
4582
|
+
IsTruncated?: boolean | undefined;
|
|
4583
4583
|
/**
|
|
4584
4584
|
* <p>When <code>IsTruncated</code> is <code>true</code>, this element
|
|
4585
4585
|
* is present and contains the value to use for the <code>Marker</code> parameter in a subsequent
|
|
4586
4586
|
* pagination request.</p>
|
|
4587
4587
|
* @public
|
|
4588
4588
|
*/
|
|
4589
|
-
Marker?: string;
|
|
4589
|
+
Marker?: string | undefined;
|
|
4590
4590
|
}
|
|
4591
4591
|
/**
|
|
4592
4592
|
* @public
|
|
@@ -4599,7 +4599,7 @@ export interface ListAccountAliasesRequest {
|
|
|
4599
4599
|
* should start.</p>
|
|
4600
4600
|
* @public
|
|
4601
4601
|
*/
|
|
4602
|
-
Marker?: string;
|
|
4602
|
+
Marker?: string | undefined;
|
|
4603
4603
|
/**
|
|
4604
4604
|
* <p>Use this only when paginating results to indicate the
|
|
4605
4605
|
* maximum number of items you want in the response. If additional items exist beyond the maximum
|
|
@@ -4611,7 +4611,7 @@ export interface ListAccountAliasesRequest {
|
|
|
4611
4611
|
* from.</p>
|
|
4612
4612
|
* @public
|
|
4613
4613
|
*/
|
|
4614
|
-
MaxItems?: number;
|
|
4614
|
+
MaxItems?: number | undefined;
|
|
4615
4615
|
}
|
|
4616
4616
|
/**
|
|
4617
4617
|
* <p>Contains the response to a successful <a>ListAccountAliases</a> request.
|
|
@@ -4634,14 +4634,14 @@ export interface ListAccountAliasesResponse {
|
|
|
4634
4634
|
* results.</p>
|
|
4635
4635
|
* @public
|
|
4636
4636
|
*/
|
|
4637
|
-
IsTruncated?: boolean;
|
|
4637
|
+
IsTruncated?: boolean | undefined;
|
|
4638
4638
|
/**
|
|
4639
4639
|
* <p>When <code>IsTruncated</code> is <code>true</code>, this element
|
|
4640
4640
|
* is present and contains the value to use for the <code>Marker</code> parameter in a subsequent
|
|
4641
4641
|
* pagination request.</p>
|
|
4642
4642
|
* @public
|
|
4643
4643
|
*/
|
|
4644
|
-
Marker?: string;
|
|
4644
|
+
Marker?: string | undefined;
|
|
4645
4645
|
}
|
|
4646
4646
|
/**
|
|
4647
4647
|
* @public
|
|
@@ -4663,7 +4663,7 @@ export interface ListAttachedGroupPoliciesRequest {
|
|
|
4663
4663
|
* most punctuation characters, digits, and upper and lowercased letters.</p>
|
|
4664
4664
|
* @public
|
|
4665
4665
|
*/
|
|
4666
|
-
PathPrefix?: string;
|
|
4666
|
+
PathPrefix?: string | undefined;
|
|
4667
4667
|
/**
|
|
4668
4668
|
* <p>Use this parameter only when paginating results and only after
|
|
4669
4669
|
* you receive a response indicating that the results are truncated. Set it to the value of the
|
|
@@ -4671,7 +4671,7 @@ export interface ListAttachedGroupPoliciesRequest {
|
|
|
4671
4671
|
* should start.</p>
|
|
4672
4672
|
* @public
|
|
4673
4673
|
*/
|
|
4674
|
-
Marker?: string;
|
|
4674
|
+
Marker?: string | undefined;
|
|
4675
4675
|
/**
|
|
4676
4676
|
* <p>Use this only when paginating results to indicate the
|
|
4677
4677
|
* maximum number of items you want in the response. If additional items exist beyond the maximum
|
|
@@ -4683,7 +4683,7 @@ export interface ListAttachedGroupPoliciesRequest {
|
|
|
4683
4683
|
* from.</p>
|
|
4684
4684
|
* @public
|
|
4685
4685
|
*/
|
|
4686
|
-
MaxItems?: number;
|
|
4686
|
+
MaxItems?: number | undefined;
|
|
4687
4687
|
}
|
|
4688
4688
|
/**
|
|
4689
4689
|
* <p>Contains the response to a successful <a>ListAttachedGroupPolicies</a>
|
|
@@ -4695,7 +4695,7 @@ export interface ListAttachedGroupPoliciesResponse {
|
|
|
4695
4695
|
* <p>A list of the attached policies.</p>
|
|
4696
4696
|
* @public
|
|
4697
4697
|
*/
|
|
4698
|
-
AttachedPolicies?: AttachedPolicy[];
|
|
4698
|
+
AttachedPolicies?: AttachedPolicy[] | undefined;
|
|
4699
4699
|
/**
|
|
4700
4700
|
* <p>A flag that indicates whether there are more items to return. If your
|
|
4701
4701
|
* results were truncated, you can make a subsequent pagination request using the <code>Marker</code>
|
|
@@ -4705,14 +4705,14 @@ export interface ListAttachedGroupPoliciesResponse {
|
|
|
4705
4705
|
* results.</p>
|
|
4706
4706
|
* @public
|
|
4707
4707
|
*/
|
|
4708
|
-
IsTruncated?: boolean;
|
|
4708
|
+
IsTruncated?: boolean | undefined;
|
|
4709
4709
|
/**
|
|
4710
4710
|
* <p>When <code>IsTruncated</code> is <code>true</code>, this element
|
|
4711
4711
|
* is present and contains the value to use for the <code>Marker</code> parameter in a subsequent
|
|
4712
4712
|
* pagination request.</p>
|
|
4713
4713
|
* @public
|
|
4714
4714
|
*/
|
|
4715
|
-
Marker?: string;
|
|
4715
|
+
Marker?: string | undefined;
|
|
4716
4716
|
}
|
|
4717
4717
|
/**
|
|
4718
4718
|
* @public
|
|
@@ -4734,7 +4734,7 @@ export interface ListAttachedRolePoliciesRequest {
|
|
|
4734
4734
|
* most punctuation characters, digits, and upper and lowercased letters.</p>
|
|
4735
4735
|
* @public
|
|
4736
4736
|
*/
|
|
4737
|
-
PathPrefix?: string;
|
|
4737
|
+
PathPrefix?: string | undefined;
|
|
4738
4738
|
/**
|
|
4739
4739
|
* <p>Use this parameter only when paginating results and only after
|
|
4740
4740
|
* you receive a response indicating that the results are truncated. Set it to the value of the
|
|
@@ -4742,7 +4742,7 @@ export interface ListAttachedRolePoliciesRequest {
|
|
|
4742
4742
|
* should start.</p>
|
|
4743
4743
|
* @public
|
|
4744
4744
|
*/
|
|
4745
|
-
Marker?: string;
|
|
4745
|
+
Marker?: string | undefined;
|
|
4746
4746
|
/**
|
|
4747
4747
|
* <p>Use this only when paginating results to indicate the
|
|
4748
4748
|
* maximum number of items you want in the response. If additional items exist beyond the maximum
|
|
@@ -4754,7 +4754,7 @@ export interface ListAttachedRolePoliciesRequest {
|
|
|
4754
4754
|
* from.</p>
|
|
4755
4755
|
* @public
|
|
4756
4756
|
*/
|
|
4757
|
-
MaxItems?: number;
|
|
4757
|
+
MaxItems?: number | undefined;
|
|
4758
4758
|
}
|
|
4759
4759
|
/**
|
|
4760
4760
|
* <p>Contains the response to a successful <a>ListAttachedRolePolicies</a>
|
|
@@ -4766,7 +4766,7 @@ export interface ListAttachedRolePoliciesResponse {
|
|
|
4766
4766
|
* <p>A list of the attached policies.</p>
|
|
4767
4767
|
* @public
|
|
4768
4768
|
*/
|
|
4769
|
-
AttachedPolicies?: AttachedPolicy[];
|
|
4769
|
+
AttachedPolicies?: AttachedPolicy[] | undefined;
|
|
4770
4770
|
/**
|
|
4771
4771
|
* <p>A flag that indicates whether there are more items to return. If your
|
|
4772
4772
|
* results were truncated, you can make a subsequent pagination request using the <code>Marker</code>
|
|
@@ -4776,14 +4776,14 @@ export interface ListAttachedRolePoliciesResponse {
|
|
|
4776
4776
|
* results.</p>
|
|
4777
4777
|
* @public
|
|
4778
4778
|
*/
|
|
4779
|
-
IsTruncated?: boolean;
|
|
4779
|
+
IsTruncated?: boolean | undefined;
|
|
4780
4780
|
/**
|
|
4781
4781
|
* <p>When <code>IsTruncated</code> is <code>true</code>, this element
|
|
4782
4782
|
* is present and contains the value to use for the <code>Marker</code> parameter in a subsequent
|
|
4783
4783
|
* pagination request.</p>
|
|
4784
4784
|
* @public
|
|
4785
4785
|
*/
|
|
4786
|
-
Marker?: string;
|
|
4786
|
+
Marker?: string | undefined;
|
|
4787
4787
|
}
|
|
4788
4788
|
/**
|
|
4789
4789
|
* @public
|
|
@@ -4805,7 +4805,7 @@ export interface ListAttachedUserPoliciesRequest {
|
|
|
4805
4805
|
* most punctuation characters, digits, and upper and lowercased letters.</p>
|
|
4806
4806
|
* @public
|
|
4807
4807
|
*/
|
|
4808
|
-
PathPrefix?: string;
|
|
4808
|
+
PathPrefix?: string | undefined;
|
|
4809
4809
|
/**
|
|
4810
4810
|
* <p>Use this parameter only when paginating results and only after
|
|
4811
4811
|
* you receive a response indicating that the results are truncated. Set it to the value of the
|
|
@@ -4813,7 +4813,7 @@ export interface ListAttachedUserPoliciesRequest {
|
|
|
4813
4813
|
* should start.</p>
|
|
4814
4814
|
* @public
|
|
4815
4815
|
*/
|
|
4816
|
-
Marker?: string;
|
|
4816
|
+
Marker?: string | undefined;
|
|
4817
4817
|
/**
|
|
4818
4818
|
* <p>Use this only when paginating results to indicate the
|
|
4819
4819
|
* maximum number of items you want in the response. If additional items exist beyond the maximum
|
|
@@ -4825,7 +4825,7 @@ export interface ListAttachedUserPoliciesRequest {
|
|
|
4825
4825
|
* from.</p>
|
|
4826
4826
|
* @public
|
|
4827
4827
|
*/
|
|
4828
|
-
MaxItems?: number;
|
|
4828
|
+
MaxItems?: number | undefined;
|
|
4829
4829
|
}
|
|
4830
4830
|
/**
|
|
4831
4831
|
* <p>Contains the response to a successful <a>ListAttachedUserPolicies</a>
|
|
@@ -4837,7 +4837,7 @@ export interface ListAttachedUserPoliciesResponse {
|
|
|
4837
4837
|
* <p>A list of the attached policies.</p>
|
|
4838
4838
|
* @public
|
|
4839
4839
|
*/
|
|
4840
|
-
AttachedPolicies?: AttachedPolicy[];
|
|
4840
|
+
AttachedPolicies?: AttachedPolicy[] | undefined;
|
|
4841
4841
|
/**
|
|
4842
4842
|
* <p>A flag that indicates whether there are more items to return. If your
|
|
4843
4843
|
* results were truncated, you can make a subsequent pagination request using the <code>Marker</code>
|
|
@@ -4847,14 +4847,14 @@ export interface ListAttachedUserPoliciesResponse {
|
|
|
4847
4847
|
* results.</p>
|
|
4848
4848
|
* @public
|
|
4849
4849
|
*/
|
|
4850
|
-
IsTruncated?: boolean;
|
|
4850
|
+
IsTruncated?: boolean | undefined;
|
|
4851
4851
|
/**
|
|
4852
4852
|
* <p>When <code>IsTruncated</code> is <code>true</code>, this element
|
|
4853
4853
|
* is present and contains the value to use for the <code>Marker</code> parameter in a subsequent
|
|
4854
4854
|
* pagination request.</p>
|
|
4855
4855
|
* @public
|
|
4856
4856
|
*/
|
|
4857
|
-
Marker?: string;
|
|
4857
|
+
Marker?: string | undefined;
|
|
4858
4858
|
}
|
|
4859
4859
|
/**
|
|
4860
4860
|
* @public
|
|
@@ -4887,7 +4887,7 @@ export interface ListEntitiesForPolicyRequest {
|
|
|
4887
4887
|
* argument for this parameter must be one of the valid values listed below.</p>
|
|
4888
4888
|
* @public
|
|
4889
4889
|
*/
|
|
4890
|
-
EntityFilter?: EntityType;
|
|
4890
|
+
EntityFilter?: EntityType | undefined;
|
|
4891
4891
|
/**
|
|
4892
4892
|
* <p>The path prefix for filtering the results. This parameter is optional. If it is not
|
|
4893
4893
|
* included, it defaults to a slash (/), listing all entities.</p>
|
|
@@ -4897,7 +4897,7 @@ export interface ListEntitiesForPolicyRequest {
|
|
|
4897
4897
|
* most punctuation characters, digits, and upper and lowercased letters.</p>
|
|
4898
4898
|
* @public
|
|
4899
4899
|
*/
|
|
4900
|
-
PathPrefix?: string;
|
|
4900
|
+
PathPrefix?: string | undefined;
|
|
4901
4901
|
/**
|
|
4902
4902
|
* <p>The policy usage method to use for filtering the results.</p>
|
|
4903
4903
|
* <p>To list only permissions policies,
|
|
@@ -4907,7 +4907,7 @@ export interface ListEntitiesForPolicyRequest {
|
|
|
4907
4907
|
* <p>This parameter is optional. If it is not included, all policies are returned. </p>
|
|
4908
4908
|
* @public
|
|
4909
4909
|
*/
|
|
4910
|
-
PolicyUsageFilter?: PolicyUsageType;
|
|
4910
|
+
PolicyUsageFilter?: PolicyUsageType | undefined;
|
|
4911
4911
|
/**
|
|
4912
4912
|
* <p>Use this parameter only when paginating results and only after
|
|
4913
4913
|
* you receive a response indicating that the results are truncated. Set it to the value of the
|
|
@@ -4915,7 +4915,7 @@ export interface ListEntitiesForPolicyRequest {
|
|
|
4915
4915
|
* should start.</p>
|
|
4916
4916
|
* @public
|
|
4917
4917
|
*/
|
|
4918
|
-
Marker?: string;
|
|
4918
|
+
Marker?: string | undefined;
|
|
4919
4919
|
/**
|
|
4920
4920
|
* <p>Use this only when paginating results to indicate the
|
|
4921
4921
|
* maximum number of items you want in the response. If additional items exist beyond the maximum
|
|
@@ -4927,7 +4927,7 @@ export interface ListEntitiesForPolicyRequest {
|
|
|
4927
4927
|
* from.</p>
|
|
4928
4928
|
* @public
|
|
4929
4929
|
*/
|
|
4930
|
-
MaxItems?: number;
|
|
4930
|
+
MaxItems?: number | undefined;
|
|
4931
4931
|
}
|
|
4932
4932
|
/**
|
|
4933
4933
|
* <p>Contains information about a group that a managed policy is attached to.</p>
|
|
@@ -4941,14 +4941,14 @@ export interface PolicyGroup {
|
|
|
4941
4941
|
* <p>The name (friendly name, not ARN) identifying the group.</p>
|
|
4942
4942
|
* @public
|
|
4943
4943
|
*/
|
|
4944
|
-
GroupName?: string;
|
|
4944
|
+
GroupName?: string | undefined;
|
|
4945
4945
|
/**
|
|
4946
4946
|
* <p>The stable and unique string identifying the group. For more information about IDs, see
|
|
4947
4947
|
* <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html">IAM
|
|
4948
4948
|
* identifiers</a> in the <i>IAM User Guide</i>.</p>
|
|
4949
4949
|
* @public
|
|
4950
4950
|
*/
|
|
4951
|
-
GroupId?: string;
|
|
4951
|
+
GroupId?: string | undefined;
|
|
4952
4952
|
}
|
|
4953
4953
|
/**
|
|
4954
4954
|
* <p>Contains information about a role that a managed policy is attached to.</p>
|
|
@@ -4962,14 +4962,14 @@ export interface PolicyRole {
|
|
|
4962
4962
|
* <p>The name (friendly name, not ARN) identifying the role.</p>
|
|
4963
4963
|
* @public
|
|
4964
4964
|
*/
|
|
4965
|
-
RoleName?: string;
|
|
4965
|
+
RoleName?: string | undefined;
|
|
4966
4966
|
/**
|
|
4967
4967
|
* <p>The stable and unique string identifying the role. For more information about IDs, see
|
|
4968
4968
|
* <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html">IAM
|
|
4969
4969
|
* identifiers</a> in the <i>IAM User Guide</i>.</p>
|
|
4970
4970
|
* @public
|
|
4971
4971
|
*/
|
|
4972
|
-
RoleId?: string;
|
|
4972
|
+
RoleId?: string | undefined;
|
|
4973
4973
|
}
|
|
4974
4974
|
/**
|
|
4975
4975
|
* <p>Contains information about a user that a managed policy is attached to.</p>
|
|
@@ -4983,14 +4983,14 @@ export interface PolicyUser {
|
|
|
4983
4983
|
* <p>The name (friendly name, not ARN) identifying the user.</p>
|
|
4984
4984
|
* @public
|
|
4985
4985
|
*/
|
|
4986
|
-
UserName?: string;
|
|
4986
|
+
UserName?: string | undefined;
|
|
4987
4987
|
/**
|
|
4988
4988
|
* <p>The stable and unique string identifying the user. For more information about IDs, see
|
|
4989
4989
|
* <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html">IAM
|
|
4990
4990
|
* identifiers</a> in the <i>IAM User Guide</i>.</p>
|
|
4991
4991
|
* @public
|
|
4992
4992
|
*/
|
|
4993
|
-
UserId?: string;
|
|
4993
|
+
UserId?: string | undefined;
|
|
4994
4994
|
}
|
|
4995
4995
|
/**
|
|
4996
4996
|
* <p>Contains the response to a successful <a>ListEntitiesForPolicy</a> request.
|
|
@@ -5002,17 +5002,17 @@ export interface ListEntitiesForPolicyResponse {
|
|
|
5002
5002
|
* <p>A list of IAM groups that the policy is attached to.</p>
|
|
5003
5003
|
* @public
|
|
5004
5004
|
*/
|
|
5005
|
-
PolicyGroups?: PolicyGroup[];
|
|
5005
|
+
PolicyGroups?: PolicyGroup[] | undefined;
|
|
5006
5006
|
/**
|
|
5007
5007
|
* <p>A list of IAM users that the policy is attached to.</p>
|
|
5008
5008
|
* @public
|
|
5009
5009
|
*/
|
|
5010
|
-
PolicyUsers?: PolicyUser[];
|
|
5010
|
+
PolicyUsers?: PolicyUser[] | undefined;
|
|
5011
5011
|
/**
|
|
5012
5012
|
* <p>A list of IAM roles that the policy is attached to.</p>
|
|
5013
5013
|
* @public
|
|
5014
5014
|
*/
|
|
5015
|
-
PolicyRoles?: PolicyRole[];
|
|
5015
|
+
PolicyRoles?: PolicyRole[] | undefined;
|
|
5016
5016
|
/**
|
|
5017
5017
|
* <p>A flag that indicates whether there are more items to return. If your
|
|
5018
5018
|
* results were truncated, you can make a subsequent pagination request using the <code>Marker</code>
|
|
@@ -5022,14 +5022,14 @@ export interface ListEntitiesForPolicyResponse {
|
|
|
5022
5022
|
* results.</p>
|
|
5023
5023
|
* @public
|
|
5024
5024
|
*/
|
|
5025
|
-
IsTruncated?: boolean;
|
|
5025
|
+
IsTruncated?: boolean | undefined;
|
|
5026
5026
|
/**
|
|
5027
5027
|
* <p>When <code>IsTruncated</code> is <code>true</code>, this element
|
|
5028
5028
|
* is present and contains the value to use for the <code>Marker</code> parameter in a subsequent
|
|
5029
5029
|
* pagination request.</p>
|
|
5030
5030
|
* @public
|
|
5031
5031
|
*/
|
|
5032
|
-
Marker?: string;
|
|
5032
|
+
Marker?: string | undefined;
|
|
5033
5033
|
}
|
|
5034
5034
|
/**
|
|
5035
5035
|
* @public
|
|
@@ -5049,7 +5049,7 @@ export interface ListGroupPoliciesRequest {
|
|
|
5049
5049
|
* should start.</p>
|
|
5050
5050
|
* @public
|
|
5051
5051
|
*/
|
|
5052
|
-
Marker?: string;
|
|
5052
|
+
Marker?: string | undefined;
|
|
5053
5053
|
/**
|
|
5054
5054
|
* <p>Use this only when paginating results to indicate the
|
|
5055
5055
|
* maximum number of items you want in the response. If additional items exist beyond the maximum
|
|
@@ -5061,7 +5061,7 @@ export interface ListGroupPoliciesRequest {
|
|
|
5061
5061
|
* from.</p>
|
|
5062
5062
|
* @public
|
|
5063
5063
|
*/
|
|
5064
|
-
MaxItems?: number;
|
|
5064
|
+
MaxItems?: number | undefined;
|
|
5065
5065
|
}
|
|
5066
5066
|
/**
|
|
5067
5067
|
* <p>Contains the response to a successful <a>ListGroupPolicies</a> request.
|
|
@@ -5085,14 +5085,14 @@ export interface ListGroupPoliciesResponse {
|
|
|
5085
5085
|
* results.</p>
|
|
5086
5086
|
* @public
|
|
5087
5087
|
*/
|
|
5088
|
-
IsTruncated?: boolean;
|
|
5088
|
+
IsTruncated?: boolean | undefined;
|
|
5089
5089
|
/**
|
|
5090
5090
|
* <p>When <code>IsTruncated</code> is <code>true</code>, this element
|
|
5091
5091
|
* is present and contains the value to use for the <code>Marker</code> parameter in a subsequent
|
|
5092
5092
|
* pagination request.</p>
|
|
5093
5093
|
* @public
|
|
5094
5094
|
*/
|
|
5095
|
-
Marker?: string;
|
|
5095
|
+
Marker?: string | undefined;
|
|
5096
5096
|
}
|
|
5097
5097
|
/**
|
|
5098
5098
|
* @public
|
|
@@ -5109,7 +5109,7 @@ export interface ListGroupsRequest {
|
|
|
5109
5109
|
* most punctuation characters, digits, and upper and lowercased letters.</p>
|
|
5110
5110
|
* @public
|
|
5111
5111
|
*/
|
|
5112
|
-
PathPrefix?: string;
|
|
5112
|
+
PathPrefix?: string | undefined;
|
|
5113
5113
|
/**
|
|
5114
5114
|
* <p>Use this parameter only when paginating results and only after
|
|
5115
5115
|
* you receive a response indicating that the results are truncated. Set it to the value of the
|
|
@@ -5117,7 +5117,7 @@ export interface ListGroupsRequest {
|
|
|
5117
5117
|
* should start.</p>
|
|
5118
5118
|
* @public
|
|
5119
5119
|
*/
|
|
5120
|
-
Marker?: string;
|
|
5120
|
+
Marker?: string | undefined;
|
|
5121
5121
|
/**
|
|
5122
5122
|
* <p>Use this only when paginating results to indicate the
|
|
5123
5123
|
* maximum number of items you want in the response. If additional items exist beyond the maximum
|
|
@@ -5129,7 +5129,7 @@ export interface ListGroupsRequest {
|
|
|
5129
5129
|
* from.</p>
|
|
5130
5130
|
* @public
|
|
5131
5131
|
*/
|
|
5132
|
-
MaxItems?: number;
|
|
5132
|
+
MaxItems?: number | undefined;
|
|
5133
5133
|
}
|
|
5134
5134
|
/**
|
|
5135
5135
|
* <p>Contains the response to a successful <a>ListGroups</a> request. </p>
|
|
@@ -5150,14 +5150,14 @@ export interface ListGroupsResponse {
|
|
|
5150
5150
|
* results.</p>
|
|
5151
5151
|
* @public
|
|
5152
5152
|
*/
|
|
5153
|
-
IsTruncated?: boolean;
|
|
5153
|
+
IsTruncated?: boolean | undefined;
|
|
5154
5154
|
/**
|
|
5155
5155
|
* <p>When <code>IsTruncated</code> is <code>true</code>, this element
|
|
5156
5156
|
* is present and contains the value to use for the <code>Marker</code> parameter in a subsequent
|
|
5157
5157
|
* pagination request.</p>
|
|
5158
5158
|
* @public
|
|
5159
5159
|
*/
|
|
5160
|
-
Marker?: string;
|
|
5160
|
+
Marker?: string | undefined;
|
|
5161
5161
|
}
|
|
5162
5162
|
/**
|
|
5163
5163
|
* @public
|
|
@@ -5177,7 +5177,7 @@ export interface ListGroupsForUserRequest {
|
|
|
5177
5177
|
* should start.</p>
|
|
5178
5178
|
* @public
|
|
5179
5179
|
*/
|
|
5180
|
-
Marker?: string;
|
|
5180
|
+
Marker?: string | undefined;
|
|
5181
5181
|
/**
|
|
5182
5182
|
* <p>Use this only when paginating results to indicate the
|
|
5183
5183
|
* maximum number of items you want in the response. If additional items exist beyond the maximum
|
|
@@ -5189,7 +5189,7 @@ export interface ListGroupsForUserRequest {
|
|
|
5189
5189
|
* from.</p>
|
|
5190
5190
|
* @public
|
|
5191
5191
|
*/
|
|
5192
|
-
MaxItems?: number;
|
|
5192
|
+
MaxItems?: number | undefined;
|
|
5193
5193
|
}
|
|
5194
5194
|
/**
|
|
5195
5195
|
* <p>Contains the response to a successful <a>ListGroupsForUser</a> request.
|
|
@@ -5211,14 +5211,14 @@ export interface ListGroupsForUserResponse {
|
|
|
5211
5211
|
* results.</p>
|
|
5212
5212
|
* @public
|
|
5213
5213
|
*/
|
|
5214
|
-
IsTruncated?: boolean;
|
|
5214
|
+
IsTruncated?: boolean | undefined;
|
|
5215
5215
|
/**
|
|
5216
5216
|
* <p>When <code>IsTruncated</code> is <code>true</code>, this element
|
|
5217
5217
|
* is present and contains the value to use for the <code>Marker</code> parameter in a subsequent
|
|
5218
5218
|
* pagination request.</p>
|
|
5219
5219
|
* @public
|
|
5220
5220
|
*/
|
|
5221
|
-
Marker?: string;
|
|
5221
|
+
Marker?: string | undefined;
|
|
5222
5222
|
}
|
|
5223
5223
|
/**
|
|
5224
5224
|
* @public
|
|
@@ -5235,7 +5235,7 @@ export interface ListInstanceProfilesRequest {
|
|
|
5235
5235
|
* most punctuation characters, digits, and upper and lowercased letters.</p>
|
|
5236
5236
|
* @public
|
|
5237
5237
|
*/
|
|
5238
|
-
PathPrefix?: string;
|
|
5238
|
+
PathPrefix?: string | undefined;
|
|
5239
5239
|
/**
|
|
5240
5240
|
* <p>Use this parameter only when paginating results and only after
|
|
5241
5241
|
* you receive a response indicating that the results are truncated. Set it to the value of the
|
|
@@ -5243,7 +5243,7 @@ export interface ListInstanceProfilesRequest {
|
|
|
5243
5243
|
* should start.</p>
|
|
5244
5244
|
* @public
|
|
5245
5245
|
*/
|
|
5246
|
-
Marker?: string;
|
|
5246
|
+
Marker?: string | undefined;
|
|
5247
5247
|
/**
|
|
5248
5248
|
* <p>Use this only when paginating results to indicate the
|
|
5249
5249
|
* maximum number of items you want in the response. If additional items exist beyond the maximum
|
|
@@ -5255,7 +5255,7 @@ export interface ListInstanceProfilesRequest {
|
|
|
5255
5255
|
* from.</p>
|
|
5256
5256
|
* @public
|
|
5257
5257
|
*/
|
|
5258
|
-
MaxItems?: number;
|
|
5258
|
+
MaxItems?: number | undefined;
|
|
5259
5259
|
}
|
|
5260
5260
|
/**
|
|
5261
5261
|
* <p>Contains the response to a successful <a>ListInstanceProfiles</a> request.
|
|
@@ -5277,14 +5277,14 @@ export interface ListInstanceProfilesResponse {
|
|
|
5277
5277
|
* results.</p>
|
|
5278
5278
|
* @public
|
|
5279
5279
|
*/
|
|
5280
|
-
IsTruncated?: boolean;
|
|
5280
|
+
IsTruncated?: boolean | undefined;
|
|
5281
5281
|
/**
|
|
5282
5282
|
* <p>When <code>IsTruncated</code> is <code>true</code>, this element
|
|
5283
5283
|
* is present and contains the value to use for the <code>Marker</code> parameter in a subsequent
|
|
5284
5284
|
* pagination request.</p>
|
|
5285
5285
|
* @public
|
|
5286
5286
|
*/
|
|
5287
|
-
Marker?: string;
|
|
5287
|
+
Marker?: string | undefined;
|
|
5288
5288
|
}
|
|
5289
5289
|
/**
|
|
5290
5290
|
* @public
|
|
@@ -5304,7 +5304,7 @@ export interface ListInstanceProfilesForRoleRequest {
|
|
|
5304
5304
|
* should start.</p>
|
|
5305
5305
|
* @public
|
|
5306
5306
|
*/
|
|
5307
|
-
Marker?: string;
|
|
5307
|
+
Marker?: string | undefined;
|
|
5308
5308
|
/**
|
|
5309
5309
|
* <p>Use this only when paginating results to indicate the
|
|
5310
5310
|
* maximum number of items you want in the response. If additional items exist beyond the maximum
|
|
@@ -5316,7 +5316,7 @@ export interface ListInstanceProfilesForRoleRequest {
|
|
|
5316
5316
|
* from.</p>
|
|
5317
5317
|
* @public
|
|
5318
5318
|
*/
|
|
5319
|
-
MaxItems?: number;
|
|
5319
|
+
MaxItems?: number | undefined;
|
|
5320
5320
|
}
|
|
5321
5321
|
/**
|
|
5322
5322
|
* <p>Contains the response to a successful <a>ListInstanceProfilesForRole</a>
|
|
@@ -5338,14 +5338,14 @@ export interface ListInstanceProfilesForRoleResponse {
|
|
|
5338
5338
|
* results.</p>
|
|
5339
5339
|
* @public
|
|
5340
5340
|
*/
|
|
5341
|
-
IsTruncated?: boolean;
|
|
5341
|
+
IsTruncated?: boolean | undefined;
|
|
5342
5342
|
/**
|
|
5343
5343
|
* <p>When <code>IsTruncated</code> is <code>true</code>, this element
|
|
5344
5344
|
* is present and contains the value to use for the <code>Marker</code> parameter in a subsequent
|
|
5345
5345
|
* pagination request.</p>
|
|
5346
5346
|
* @public
|
|
5347
5347
|
*/
|
|
5348
|
-
Marker?: string;
|
|
5348
|
+
Marker?: string | undefined;
|
|
5349
5349
|
}
|
|
5350
5350
|
/**
|
|
5351
5351
|
* @public
|
|
@@ -5365,7 +5365,7 @@ export interface ListInstanceProfileTagsRequest {
|
|
|
5365
5365
|
* should start.</p>
|
|
5366
5366
|
* @public
|
|
5367
5367
|
*/
|
|
5368
|
-
Marker?: string;
|
|
5368
|
+
Marker?: string | undefined;
|
|
5369
5369
|
/**
|
|
5370
5370
|
* <p>Use this only when paginating results to indicate the
|
|
5371
5371
|
* maximum number of items you want in the response. If additional items exist beyond the maximum
|
|
@@ -5377,7 +5377,7 @@ export interface ListInstanceProfileTagsRequest {
|
|
|
5377
5377
|
* from.</p>
|
|
5378
5378
|
* @public
|
|
5379
5379
|
*/
|
|
5380
|
-
MaxItems?: number;
|
|
5380
|
+
MaxItems?: number | undefined;
|
|
5381
5381
|
}
|
|
5382
5382
|
/**
|
|
5383
5383
|
* @public
|
|
@@ -5397,14 +5397,14 @@ export interface ListInstanceProfileTagsResponse {
|
|
|
5397
5397
|
* results.</p>
|
|
5398
5398
|
* @public
|
|
5399
5399
|
*/
|
|
5400
|
-
IsTruncated?: boolean;
|
|
5400
|
+
IsTruncated?: boolean | undefined;
|
|
5401
5401
|
/**
|
|
5402
5402
|
* <p>When <code>IsTruncated</code> is <code>true</code>, this element
|
|
5403
5403
|
* is present and contains the value to use for the <code>Marker</code> parameter in a subsequent
|
|
5404
5404
|
* pagination request.</p>
|
|
5405
5405
|
* @public
|
|
5406
5406
|
*/
|
|
5407
|
-
Marker?: string;
|
|
5407
|
+
Marker?: string | undefined;
|
|
5408
5408
|
}
|
|
5409
5409
|
/**
|
|
5410
5410
|
* @public
|
|
@@ -5416,7 +5416,7 @@ export interface ListMFADevicesRequest {
|
|
|
5416
5416
|
* characters with no spaces. You can also include any of the following characters: _+=,.@-</p>
|
|
5417
5417
|
* @public
|
|
5418
5418
|
*/
|
|
5419
|
-
UserName?: string;
|
|
5419
|
+
UserName?: string | undefined;
|
|
5420
5420
|
/**
|
|
5421
5421
|
* <p>Use this parameter only when paginating results and only after
|
|
5422
5422
|
* you receive a response indicating that the results are truncated. Set it to the value of the
|
|
@@ -5424,7 +5424,7 @@ export interface ListMFADevicesRequest {
|
|
|
5424
5424
|
* should start.</p>
|
|
5425
5425
|
* @public
|
|
5426
5426
|
*/
|
|
5427
|
-
Marker?: string;
|
|
5427
|
+
Marker?: string | undefined;
|
|
5428
5428
|
/**
|
|
5429
5429
|
* <p>Use this only when paginating results to indicate the
|
|
5430
5430
|
* maximum number of items you want in the response. If additional items exist beyond the maximum
|
|
@@ -5436,7 +5436,7 @@ export interface ListMFADevicesRequest {
|
|
|
5436
5436
|
* from.</p>
|
|
5437
5437
|
* @public
|
|
5438
5438
|
*/
|
|
5439
|
-
MaxItems?: number;
|
|
5439
|
+
MaxItems?: number | undefined;
|
|
5440
5440
|
}
|
|
5441
5441
|
/**
|
|
5442
5442
|
* <p>Contains information about an MFA device.</p>
|
|
@@ -5482,14 +5482,14 @@ export interface ListMFADevicesResponse {
|
|
|
5482
5482
|
* results.</p>
|
|
5483
5483
|
* @public
|
|
5484
5484
|
*/
|
|
5485
|
-
IsTruncated?: boolean;
|
|
5485
|
+
IsTruncated?: boolean | undefined;
|
|
5486
5486
|
/**
|
|
5487
5487
|
* <p>When <code>IsTruncated</code> is <code>true</code>, this element
|
|
5488
5488
|
* is present and contains the value to use for the <code>Marker</code> parameter in a subsequent
|
|
5489
5489
|
* pagination request.</p>
|
|
5490
5490
|
* @public
|
|
5491
5491
|
*/
|
|
5492
|
-
Marker?: string;
|
|
5492
|
+
Marker?: string | undefined;
|
|
5493
5493
|
}
|
|
5494
5494
|
/**
|
|
5495
5495
|
* @public
|
|
@@ -5510,7 +5510,7 @@ export interface ListMFADeviceTagsRequest {
|
|
|
5510
5510
|
* should start.</p>
|
|
5511
5511
|
* @public
|
|
5512
5512
|
*/
|
|
5513
|
-
Marker?: string;
|
|
5513
|
+
Marker?: string | undefined;
|
|
5514
5514
|
/**
|
|
5515
5515
|
* <p>Use this only when paginating results to indicate the
|
|
5516
5516
|
* maximum number of items you want in the response. If additional items exist beyond the maximum
|
|
@@ -5522,7 +5522,7 @@ export interface ListMFADeviceTagsRequest {
|
|
|
5522
5522
|
* from.</p>
|
|
5523
5523
|
* @public
|
|
5524
5524
|
*/
|
|
5525
|
-
MaxItems?: number;
|
|
5525
|
+
MaxItems?: number | undefined;
|
|
5526
5526
|
}
|
|
5527
5527
|
/**
|
|
5528
5528
|
* @public
|
|
@@ -5542,14 +5542,14 @@ export interface ListMFADeviceTagsResponse {
|
|
|
5542
5542
|
* results.</p>
|
|
5543
5543
|
* @public
|
|
5544
5544
|
*/
|
|
5545
|
-
IsTruncated?: boolean;
|
|
5545
|
+
IsTruncated?: boolean | undefined;
|
|
5546
5546
|
/**
|
|
5547
5547
|
* <p>When <code>IsTruncated</code> is <code>true</code>, this element
|
|
5548
5548
|
* is present and contains the value to use for the <code>Marker</code> parameter in a subsequent
|
|
5549
5549
|
* pagination request.</p>
|
|
5550
5550
|
* @public
|
|
5551
5551
|
*/
|
|
5552
|
-
Marker?: string;
|
|
5552
|
+
Marker?: string | undefined;
|
|
5553
5553
|
}
|
|
5554
5554
|
/**
|
|
5555
5555
|
* @public
|
|
@@ -5567,7 +5567,7 @@ export interface OpenIDConnectProviderListEntry {
|
|
|
5567
5567
|
* the <i>Amazon Web Services General Reference</i>. </p>
|
|
5568
5568
|
* @public
|
|
5569
5569
|
*/
|
|
5570
|
-
Arn?: string;
|
|
5570
|
+
Arn?: string | undefined;
|
|
5571
5571
|
}
|
|
5572
5572
|
/**
|
|
5573
5573
|
* <p>Contains the response to a successful <a>ListOpenIDConnectProviders</a>
|
|
@@ -5579,7 +5579,7 @@ export interface ListOpenIDConnectProvidersResponse {
|
|
|
5579
5579
|
* <p>The list of IAM OIDC provider resource objects defined in the Amazon Web Services account.</p>
|
|
5580
5580
|
* @public
|
|
5581
5581
|
*/
|
|
5582
|
-
OpenIDConnectProviderList?: OpenIDConnectProviderListEntry[];
|
|
5582
|
+
OpenIDConnectProviderList?: OpenIDConnectProviderListEntry[] | undefined;
|
|
5583
5583
|
}
|
|
5584
5584
|
/**
|
|
5585
5585
|
* @public
|
|
@@ -5600,7 +5600,7 @@ export interface ListOpenIDConnectProviderTagsRequest {
|
|
|
5600
5600
|
* should start.</p>
|
|
5601
5601
|
* @public
|
|
5602
5602
|
*/
|
|
5603
|
-
Marker?: string;
|
|
5603
|
+
Marker?: string | undefined;
|
|
5604
5604
|
/**
|
|
5605
5605
|
* <p>Use this only when paginating results to indicate the
|
|
5606
5606
|
* maximum number of items you want in the response. If additional items exist beyond the maximum
|
|
@@ -5612,7 +5612,7 @@ export interface ListOpenIDConnectProviderTagsRequest {
|
|
|
5612
5612
|
* from.</p>
|
|
5613
5613
|
* @public
|
|
5614
5614
|
*/
|
|
5615
|
-
MaxItems?: number;
|
|
5615
|
+
MaxItems?: number | undefined;
|
|
5616
5616
|
}
|
|
5617
5617
|
/**
|
|
5618
5618
|
* @public
|
|
@@ -5633,14 +5633,14 @@ export interface ListOpenIDConnectProviderTagsResponse {
|
|
|
5633
5633
|
* results.</p>
|
|
5634
5634
|
* @public
|
|
5635
5635
|
*/
|
|
5636
|
-
IsTruncated?: boolean;
|
|
5636
|
+
IsTruncated?: boolean | undefined;
|
|
5637
5637
|
/**
|
|
5638
5638
|
* <p>When <code>IsTruncated</code> is <code>true</code>, this element
|
|
5639
5639
|
* is present and contains the value to use for the <code>Marker</code> parameter in a subsequent
|
|
5640
5640
|
* pagination request.</p>
|
|
5641
5641
|
* @public
|
|
5642
5642
|
*/
|
|
5643
|
-
Marker?: string;
|
|
5643
|
+
Marker?: string | undefined;
|
|
5644
5644
|
}
|
|
5645
5645
|
/**
|
|
5646
5646
|
* @public
|
|
@@ -5668,7 +5668,7 @@ export interface ListPoliciesRequest {
|
|
|
5668
5668
|
* <code>All</code>, all policies are returned.</p>
|
|
5669
5669
|
* @public
|
|
5670
5670
|
*/
|
|
5671
|
-
Scope?: PolicyScopeType;
|
|
5671
|
+
Scope?: PolicyScopeType | undefined;
|
|
5672
5672
|
/**
|
|
5673
5673
|
* <p>A flag to filter the results to only the attached policies.</p>
|
|
5674
5674
|
* <p>When <code>OnlyAttached</code> is <code>true</code>, the returned list contains only
|
|
@@ -5677,7 +5677,7 @@ export interface ListPoliciesRequest {
|
|
|
5677
5677
|
* included, all policies are returned.</p>
|
|
5678
5678
|
* @public
|
|
5679
5679
|
*/
|
|
5680
|
-
OnlyAttached?: boolean;
|
|
5680
|
+
OnlyAttached?: boolean | undefined;
|
|
5681
5681
|
/**
|
|
5682
5682
|
* <p>The path prefix for filtering the results. This parameter is optional. If it is not
|
|
5683
5683
|
* included, it defaults to a slash (/), listing all policies. This parameter allows (through its <a href="http://wikipedia.org/wiki/regex">regex pattern</a>) a string of characters consisting
|
|
@@ -5686,7 +5686,7 @@ export interface ListPoliciesRequest {
|
|
|
5686
5686
|
* most punctuation characters, digits, and upper and lowercased letters.</p>
|
|
5687
5687
|
* @public
|
|
5688
5688
|
*/
|
|
5689
|
-
PathPrefix?: string;
|
|
5689
|
+
PathPrefix?: string | undefined;
|
|
5690
5690
|
/**
|
|
5691
5691
|
* <p>The policy usage method to use for filtering the results.</p>
|
|
5692
5692
|
* <p>To list only permissions policies,
|
|
@@ -5696,7 +5696,7 @@ export interface ListPoliciesRequest {
|
|
|
5696
5696
|
* <p>This parameter is optional. If it is not included, all policies are returned. </p>
|
|
5697
5697
|
* @public
|
|
5698
5698
|
*/
|
|
5699
|
-
PolicyUsageFilter?: PolicyUsageType;
|
|
5699
|
+
PolicyUsageFilter?: PolicyUsageType | undefined;
|
|
5700
5700
|
/**
|
|
5701
5701
|
* <p>Use this parameter only when paginating results and only after
|
|
5702
5702
|
* you receive a response indicating that the results are truncated. Set it to the value of the
|
|
@@ -5704,7 +5704,7 @@ export interface ListPoliciesRequest {
|
|
|
5704
5704
|
* should start.</p>
|
|
5705
5705
|
* @public
|
|
5706
5706
|
*/
|
|
5707
|
-
Marker?: string;
|
|
5707
|
+
Marker?: string | undefined;
|
|
5708
5708
|
/**
|
|
5709
5709
|
* <p>Use this only when paginating results to indicate the
|
|
5710
5710
|
* maximum number of items you want in the response. If additional items exist beyond the maximum
|
|
@@ -5716,7 +5716,7 @@ export interface ListPoliciesRequest {
|
|
|
5716
5716
|
* from.</p>
|
|
5717
5717
|
* @public
|
|
5718
5718
|
*/
|
|
5719
|
-
MaxItems?: number;
|
|
5719
|
+
MaxItems?: number | undefined;
|
|
5720
5720
|
}
|
|
5721
5721
|
/**
|
|
5722
5722
|
* <p>Contains the response to a successful <a>ListPolicies</a> request.
|
|
@@ -5728,7 +5728,7 @@ export interface ListPoliciesResponse {
|
|
|
5728
5728
|
* <p>A list of policies.</p>
|
|
5729
5729
|
* @public
|
|
5730
5730
|
*/
|
|
5731
|
-
Policies?: Policy[];
|
|
5731
|
+
Policies?: Policy[] | undefined;
|
|
5732
5732
|
/**
|
|
5733
5733
|
* <p>A flag that indicates whether there are more items to return. If your
|
|
5734
5734
|
* results were truncated, you can make a subsequent pagination request using the <code>Marker</code>
|
|
@@ -5738,14 +5738,14 @@ export interface ListPoliciesResponse {
|
|
|
5738
5738
|
* results.</p>
|
|
5739
5739
|
* @public
|
|
5740
5740
|
*/
|
|
5741
|
-
IsTruncated?: boolean;
|
|
5741
|
+
IsTruncated?: boolean | undefined;
|
|
5742
5742
|
/**
|
|
5743
5743
|
* <p>When <code>IsTruncated</code> is <code>true</code>, this element
|
|
5744
5744
|
* is present and contains the value to use for the <code>Marker</code> parameter in a subsequent
|
|
5745
5745
|
* pagination request.</p>
|
|
5746
5746
|
* @public
|
|
5747
5747
|
*/
|
|
5748
|
-
Marker?: string;
|
|
5748
|
+
Marker?: string | undefined;
|
|
5749
5749
|
}
|
|
5750
5750
|
/**
|
|
5751
5751
|
* @public
|
|
@@ -5758,7 +5758,7 @@ export interface ListPoliciesGrantingServiceAccessRequest {
|
|
|
5758
5758
|
* should start.</p>
|
|
5759
5759
|
* @public
|
|
5760
5760
|
*/
|
|
5761
|
-
Marker?: string;
|
|
5761
|
+
Marker?: string | undefined;
|
|
5762
5762
|
/**
|
|
5763
5763
|
* <p>The ARN of the IAM identity (user, group, or role) whose policies you want to
|
|
5764
5764
|
* list.</p>
|
|
@@ -5814,7 +5814,7 @@ export interface PolicyGrantingServiceAccess {
|
|
|
5814
5814
|
* the <i>Amazon Web Services General Reference</i>. </p>
|
|
5815
5815
|
* @public
|
|
5816
5816
|
*/
|
|
5817
|
-
PolicyArn?: string;
|
|
5817
|
+
PolicyArn?: string | undefined;
|
|
5818
5818
|
/**
|
|
5819
5819
|
* <p>The type of entity (user or role) that used the policy to access the service to which
|
|
5820
5820
|
* the inline policy is attached.</p>
|
|
@@ -5823,7 +5823,7 @@ export interface PolicyGrantingServiceAccess {
|
|
|
5823
5823
|
* <i>IAM User Guide</i>.</p>
|
|
5824
5824
|
* @public
|
|
5825
5825
|
*/
|
|
5826
|
-
EntityType?: PolicyOwnerEntityType;
|
|
5826
|
+
EntityType?: PolicyOwnerEntityType | undefined;
|
|
5827
5827
|
/**
|
|
5828
5828
|
* <p>The name of the entity (user or role) to which the inline policy is attached.</p>
|
|
5829
5829
|
* <p>This field is null for managed policies. For more information about these policy types,
|
|
@@ -5831,7 +5831,7 @@ export interface PolicyGrantingServiceAccess {
|
|
|
5831
5831
|
* <i>IAM User Guide</i>.</p>
|
|
5832
5832
|
* @public
|
|
5833
5833
|
*/
|
|
5834
|
-
EntityName?: string;
|
|
5834
|
+
EntityName?: string | undefined;
|
|
5835
5835
|
}
|
|
5836
5836
|
/**
|
|
5837
5837
|
* <p>Contains details about the permissions policies that are attached to the specified
|
|
@@ -5850,13 +5850,13 @@ export interface ListPoliciesGrantingServiceAccessEntry {
|
|
|
5850
5850
|
* service namespaces</a> in the <i>Amazon Web Services General Reference</i>.</p>
|
|
5851
5851
|
* @public
|
|
5852
5852
|
*/
|
|
5853
|
-
ServiceNamespace?: string;
|
|
5853
|
+
ServiceNamespace?: string | undefined;
|
|
5854
5854
|
/**
|
|
5855
5855
|
* <p>The <code>PoliciesGrantingServiceAccess</code> object that contains details about the
|
|
5856
5856
|
* policy.</p>
|
|
5857
5857
|
* @public
|
|
5858
5858
|
*/
|
|
5859
|
-
Policies?: PolicyGrantingServiceAccess[];
|
|
5859
|
+
Policies?: PolicyGrantingServiceAccess[] | undefined;
|
|
5860
5860
|
}
|
|
5861
5861
|
/**
|
|
5862
5862
|
* @public
|
|
@@ -5877,14 +5877,14 @@ export interface ListPoliciesGrantingServiceAccessResponse {
|
|
|
5877
5877
|
* results.</p>
|
|
5878
5878
|
* @public
|
|
5879
5879
|
*/
|
|
5880
|
-
IsTruncated?: boolean;
|
|
5880
|
+
IsTruncated?: boolean | undefined;
|
|
5881
5881
|
/**
|
|
5882
5882
|
* <p>When <code>IsTruncated</code> is <code>true</code>, this element
|
|
5883
5883
|
* is present and contains the value to use for the <code>Marker</code> parameter in a subsequent
|
|
5884
5884
|
* pagination request.</p>
|
|
5885
5885
|
* @public
|
|
5886
5886
|
*/
|
|
5887
|
-
Marker?: string;
|
|
5887
|
+
Marker?: string | undefined;
|
|
5888
5888
|
}
|
|
5889
5889
|
/**
|
|
5890
5890
|
* @public
|
|
@@ -5904,7 +5904,7 @@ export interface ListPolicyTagsRequest {
|
|
|
5904
5904
|
* should start.</p>
|
|
5905
5905
|
* @public
|
|
5906
5906
|
*/
|
|
5907
|
-
Marker?: string;
|
|
5907
|
+
Marker?: string | undefined;
|
|
5908
5908
|
/**
|
|
5909
5909
|
* <p>Use this only when paginating results to indicate the
|
|
5910
5910
|
* maximum number of items you want in the response. If additional items exist beyond the maximum
|
|
@@ -5916,7 +5916,7 @@ export interface ListPolicyTagsRequest {
|
|
|
5916
5916
|
* from.</p>
|
|
5917
5917
|
* @public
|
|
5918
5918
|
*/
|
|
5919
|
-
MaxItems?: number;
|
|
5919
|
+
MaxItems?: number | undefined;
|
|
5920
5920
|
}
|
|
5921
5921
|
/**
|
|
5922
5922
|
* @public
|
|
@@ -5937,14 +5937,14 @@ export interface ListPolicyTagsResponse {
|
|
|
5937
5937
|
* results.</p>
|
|
5938
5938
|
* @public
|
|
5939
5939
|
*/
|
|
5940
|
-
IsTruncated?: boolean;
|
|
5940
|
+
IsTruncated?: boolean | undefined;
|
|
5941
5941
|
/**
|
|
5942
5942
|
* <p>When <code>IsTruncated</code> is <code>true</code>, this element
|
|
5943
5943
|
* is present and contains the value to use for the <code>Marker</code> parameter in a subsequent
|
|
5944
5944
|
* pagination request.</p>
|
|
5945
5945
|
* @public
|
|
5946
5946
|
*/
|
|
5947
|
-
Marker?: string;
|
|
5947
|
+
Marker?: string | undefined;
|
|
5948
5948
|
}
|
|
5949
5949
|
/**
|
|
5950
5950
|
* @public
|
|
@@ -5964,7 +5964,7 @@ export interface ListPolicyVersionsRequest {
|
|
|
5964
5964
|
* should start.</p>
|
|
5965
5965
|
* @public
|
|
5966
5966
|
*/
|
|
5967
|
-
Marker?: string;
|
|
5967
|
+
Marker?: string | undefined;
|
|
5968
5968
|
/**
|
|
5969
5969
|
* <p>Use this only when paginating results to indicate the
|
|
5970
5970
|
* maximum number of items you want in the response. If additional items exist beyond the maximum
|
|
@@ -5976,7 +5976,7 @@ export interface ListPolicyVersionsRequest {
|
|
|
5976
5976
|
* from.</p>
|
|
5977
5977
|
* @public
|
|
5978
5978
|
*/
|
|
5979
|
-
MaxItems?: number;
|
|
5979
|
+
MaxItems?: number | undefined;
|
|
5980
5980
|
}
|
|
5981
5981
|
/**
|
|
5982
5982
|
* <p>Contains the response to a successful <a>ListPolicyVersions</a> request.
|
|
@@ -5990,7 +5990,7 @@ export interface ListPolicyVersionsResponse {
|
|
|
5990
5990
|
* policies</a> in the <i>IAM User Guide</i>.</p>
|
|
5991
5991
|
* @public
|
|
5992
5992
|
*/
|
|
5993
|
-
Versions?: PolicyVersion[];
|
|
5993
|
+
Versions?: PolicyVersion[] | undefined;
|
|
5994
5994
|
/**
|
|
5995
5995
|
* <p>A flag that indicates whether there are more items to return. If your
|
|
5996
5996
|
* results were truncated, you can make a subsequent pagination request using the <code>Marker</code>
|
|
@@ -6000,14 +6000,14 @@ export interface ListPolicyVersionsResponse {
|
|
|
6000
6000
|
* results.</p>
|
|
6001
6001
|
* @public
|
|
6002
6002
|
*/
|
|
6003
|
-
IsTruncated?: boolean;
|
|
6003
|
+
IsTruncated?: boolean | undefined;
|
|
6004
6004
|
/**
|
|
6005
6005
|
* <p>When <code>IsTruncated</code> is <code>true</code>, this element
|
|
6006
6006
|
* is present and contains the value to use for the <code>Marker</code> parameter in a subsequent
|
|
6007
6007
|
* pagination request.</p>
|
|
6008
6008
|
* @public
|
|
6009
6009
|
*/
|
|
6010
|
-
Marker?: string;
|
|
6010
|
+
Marker?: string | undefined;
|
|
6011
6011
|
}
|
|
6012
6012
|
/**
|
|
6013
6013
|
* @public
|
|
@@ -6027,7 +6027,7 @@ export interface ListRolePoliciesRequest {
|
|
|
6027
6027
|
* should start.</p>
|
|
6028
6028
|
* @public
|
|
6029
6029
|
*/
|
|
6030
|
-
Marker?: string;
|
|
6030
|
+
Marker?: string | undefined;
|
|
6031
6031
|
/**
|
|
6032
6032
|
* <p>Use this only when paginating results to indicate the
|
|
6033
6033
|
* maximum number of items you want in the response. If additional items exist beyond the maximum
|
|
@@ -6039,7 +6039,7 @@ export interface ListRolePoliciesRequest {
|
|
|
6039
6039
|
* from.</p>
|
|
6040
6040
|
* @public
|
|
6041
6041
|
*/
|
|
6042
|
-
MaxItems?: number;
|
|
6042
|
+
MaxItems?: number | undefined;
|
|
6043
6043
|
}
|
|
6044
6044
|
/**
|
|
6045
6045
|
* <p>Contains the response to a successful <a>ListRolePolicies</a> request.
|
|
@@ -6061,14 +6061,14 @@ export interface ListRolePoliciesResponse {
|
|
|
6061
6061
|
* results.</p>
|
|
6062
6062
|
* @public
|
|
6063
6063
|
*/
|
|
6064
|
-
IsTruncated?: boolean;
|
|
6064
|
+
IsTruncated?: boolean | undefined;
|
|
6065
6065
|
/**
|
|
6066
6066
|
* <p>When <code>IsTruncated</code> is <code>true</code>, this element
|
|
6067
6067
|
* is present and contains the value to use for the <code>Marker</code> parameter in a subsequent
|
|
6068
6068
|
* pagination request.</p>
|
|
6069
6069
|
* @public
|
|
6070
6070
|
*/
|
|
6071
|
-
Marker?: string;
|
|
6071
|
+
Marker?: string | undefined;
|
|
6072
6072
|
}
|
|
6073
6073
|
/**
|
|
6074
6074
|
* @public
|
|
@@ -6085,7 +6085,7 @@ export interface ListRolesRequest {
|
|
|
6085
6085
|
* most punctuation characters, digits, and upper and lowercased letters.</p>
|
|
6086
6086
|
* @public
|
|
6087
6087
|
*/
|
|
6088
|
-
PathPrefix?: string;
|
|
6088
|
+
PathPrefix?: string | undefined;
|
|
6089
6089
|
/**
|
|
6090
6090
|
* <p>Use this parameter only when paginating results and only after
|
|
6091
6091
|
* you receive a response indicating that the results are truncated. Set it to the value of the
|
|
@@ -6093,7 +6093,7 @@ export interface ListRolesRequest {
|
|
|
6093
6093
|
* should start.</p>
|
|
6094
6094
|
* @public
|
|
6095
6095
|
*/
|
|
6096
|
-
Marker?: string;
|
|
6096
|
+
Marker?: string | undefined;
|
|
6097
6097
|
/**
|
|
6098
6098
|
* <p>Use this only when paginating results to indicate the
|
|
6099
6099
|
* maximum number of items you want in the response. If additional items exist beyond the maximum
|
|
@@ -6105,7 +6105,7 @@ export interface ListRolesRequest {
|
|
|
6105
6105
|
* from.</p>
|
|
6106
6106
|
* @public
|
|
6107
6107
|
*/
|
|
6108
|
-
MaxItems?: number;
|
|
6108
|
+
MaxItems?: number | undefined;
|
|
6109
6109
|
}
|
|
6110
6110
|
/**
|
|
6111
6111
|
* <p>Contains the response to a successful <a>ListRoles</a> request. </p>
|
|
@@ -6126,14 +6126,14 @@ export interface ListRolesResponse {
|
|
|
6126
6126
|
* results.</p>
|
|
6127
6127
|
* @public
|
|
6128
6128
|
*/
|
|
6129
|
-
IsTruncated?: boolean;
|
|
6129
|
+
IsTruncated?: boolean | undefined;
|
|
6130
6130
|
/**
|
|
6131
6131
|
* <p>When <code>IsTruncated</code> is <code>true</code>, this element
|
|
6132
6132
|
* is present and contains the value to use for the <code>Marker</code> parameter in a subsequent
|
|
6133
6133
|
* pagination request.</p>
|
|
6134
6134
|
* @public
|
|
6135
6135
|
*/
|
|
6136
|
-
Marker?: string;
|
|
6136
|
+
Marker?: string | undefined;
|
|
6137
6137
|
}
|
|
6138
6138
|
/**
|
|
6139
6139
|
* @public
|
|
@@ -6153,7 +6153,7 @@ export interface ListRoleTagsRequest {
|
|
|
6153
6153
|
* should start.</p>
|
|
6154
6154
|
* @public
|
|
6155
6155
|
*/
|
|
6156
|
-
Marker?: string;
|
|
6156
|
+
Marker?: string | undefined;
|
|
6157
6157
|
/**
|
|
6158
6158
|
* <p>Use this only when paginating results to indicate the
|
|
6159
6159
|
* maximum number of items you want in the response. If additional items exist beyond the maximum
|
|
@@ -6165,7 +6165,7 @@ export interface ListRoleTagsRequest {
|
|
|
6165
6165
|
* from.</p>
|
|
6166
6166
|
* @public
|
|
6167
6167
|
*/
|
|
6168
|
-
MaxItems?: number;
|
|
6168
|
+
MaxItems?: number | undefined;
|
|
6169
6169
|
}
|
|
6170
6170
|
/**
|
|
6171
6171
|
* @public
|
|
@@ -6185,14 +6185,14 @@ export interface ListRoleTagsResponse {
|
|
|
6185
6185
|
* results.</p>
|
|
6186
6186
|
* @public
|
|
6187
6187
|
*/
|
|
6188
|
-
IsTruncated?: boolean;
|
|
6188
|
+
IsTruncated?: boolean | undefined;
|
|
6189
6189
|
/**
|
|
6190
6190
|
* <p>When <code>IsTruncated</code> is <code>true</code>, this element
|
|
6191
6191
|
* is present and contains the value to use for the <code>Marker</code> parameter in a subsequent
|
|
6192
6192
|
* pagination request.</p>
|
|
6193
6193
|
* @public
|
|
6194
6194
|
*/
|
|
6195
|
-
Marker?: string;
|
|
6195
|
+
Marker?: string | undefined;
|
|
6196
6196
|
}
|
|
6197
6197
|
/**
|
|
6198
6198
|
* @public
|
|
@@ -6208,17 +6208,17 @@ export interface SAMLProviderListEntry {
|
|
|
6208
6208
|
* <p>The Amazon Resource Name (ARN) of the SAML provider.</p>
|
|
6209
6209
|
* @public
|
|
6210
6210
|
*/
|
|
6211
|
-
Arn?: string;
|
|
6211
|
+
Arn?: string | undefined;
|
|
6212
6212
|
/**
|
|
6213
6213
|
* <p>The expiration date and time for the SAML provider.</p>
|
|
6214
6214
|
* @public
|
|
6215
6215
|
*/
|
|
6216
|
-
ValidUntil?: Date;
|
|
6216
|
+
ValidUntil?: Date | undefined;
|
|
6217
6217
|
/**
|
|
6218
6218
|
* <p>The date and time when the SAML provider was created.</p>
|
|
6219
6219
|
* @public
|
|
6220
6220
|
*/
|
|
6221
|
-
CreateDate?: Date;
|
|
6221
|
+
CreateDate?: Date | undefined;
|
|
6222
6222
|
}
|
|
6223
6223
|
/**
|
|
6224
6224
|
* <p>Contains the response to a successful <a>ListSAMLProviders</a> request.
|
|
@@ -6231,7 +6231,7 @@ export interface ListSAMLProvidersResponse {
|
|
|
6231
6231
|
* account.</p>
|
|
6232
6232
|
* @public
|
|
6233
6233
|
*/
|
|
6234
|
-
SAMLProviderList?: SAMLProviderListEntry[];
|
|
6234
|
+
SAMLProviderList?: SAMLProviderListEntry[] | undefined;
|
|
6235
6235
|
}
|
|
6236
6236
|
/**
|
|
6237
6237
|
* @public
|
|
@@ -6252,7 +6252,7 @@ export interface ListSAMLProviderTagsRequest {
|
|
|
6252
6252
|
* should start.</p>
|
|
6253
6253
|
* @public
|
|
6254
6254
|
*/
|
|
6255
|
-
Marker?: string;
|
|
6255
|
+
Marker?: string | undefined;
|
|
6256
6256
|
/**
|
|
6257
6257
|
* <p>Use this only when paginating results to indicate the
|
|
6258
6258
|
* maximum number of items you want in the response. If additional items exist beyond the maximum
|
|
@@ -6264,7 +6264,7 @@ export interface ListSAMLProviderTagsRequest {
|
|
|
6264
6264
|
* from.</p>
|
|
6265
6265
|
* @public
|
|
6266
6266
|
*/
|
|
6267
|
-
MaxItems?: number;
|
|
6267
|
+
MaxItems?: number | undefined;
|
|
6268
6268
|
}
|
|
6269
6269
|
/**
|
|
6270
6270
|
* @public
|
|
@@ -6285,14 +6285,14 @@ export interface ListSAMLProviderTagsResponse {
|
|
|
6285
6285
|
* results.</p>
|
|
6286
6286
|
* @public
|
|
6287
6287
|
*/
|
|
6288
|
-
IsTruncated?: boolean;
|
|
6288
|
+
IsTruncated?: boolean | undefined;
|
|
6289
6289
|
/**
|
|
6290
6290
|
* <p>When <code>IsTruncated</code> is <code>true</code>, this element
|
|
6291
6291
|
* is present and contains the value to use for the <code>Marker</code> parameter in a subsequent
|
|
6292
6292
|
* pagination request.</p>
|
|
6293
6293
|
* @public
|
|
6294
6294
|
*/
|
|
6295
|
-
Marker?: string;
|
|
6295
|
+
Marker?: string | undefined;
|
|
6296
6296
|
}
|
|
6297
6297
|
/**
|
|
6298
6298
|
* @public
|
|
@@ -6309,7 +6309,7 @@ export interface ListServerCertificatesRequest {
|
|
|
6309
6309
|
* most punctuation characters, digits, and upper and lowercased letters.</p>
|
|
6310
6310
|
* @public
|
|
6311
6311
|
*/
|
|
6312
|
-
PathPrefix?: string;
|
|
6312
|
+
PathPrefix?: string | undefined;
|
|
6313
6313
|
/**
|
|
6314
6314
|
* <p>Use this parameter only when paginating results and only after
|
|
6315
6315
|
* you receive a response indicating that the results are truncated. Set it to the value of the
|
|
@@ -6317,7 +6317,7 @@ export interface ListServerCertificatesRequest {
|
|
|
6317
6317
|
* should start.</p>
|
|
6318
6318
|
* @public
|
|
6319
6319
|
*/
|
|
6320
|
-
Marker?: string;
|
|
6320
|
+
Marker?: string | undefined;
|
|
6321
6321
|
/**
|
|
6322
6322
|
* <p>Use this only when paginating results to indicate the
|
|
6323
6323
|
* maximum number of items you want in the response. If additional items exist beyond the maximum
|
|
@@ -6329,7 +6329,7 @@ export interface ListServerCertificatesRequest {
|
|
|
6329
6329
|
* from.</p>
|
|
6330
6330
|
* @public
|
|
6331
6331
|
*/
|
|
6332
|
-
MaxItems?: number;
|
|
6332
|
+
MaxItems?: number | undefined;
|
|
6333
6333
|
}
|
|
6334
6334
|
/**
|
|
6335
6335
|
* <p>Contains the response to a successful <a>ListServerCertificates</a> request.
|
|
@@ -6351,14 +6351,14 @@ export interface ListServerCertificatesResponse {
|
|
|
6351
6351
|
* results.</p>
|
|
6352
6352
|
* @public
|
|
6353
6353
|
*/
|
|
6354
|
-
IsTruncated?: boolean;
|
|
6354
|
+
IsTruncated?: boolean | undefined;
|
|
6355
6355
|
/**
|
|
6356
6356
|
* <p>When <code>IsTruncated</code> is <code>true</code>, this element
|
|
6357
6357
|
* is present and contains the value to use for the <code>Marker</code> parameter in a subsequent
|
|
6358
6358
|
* pagination request.</p>
|
|
6359
6359
|
* @public
|
|
6360
6360
|
*/
|
|
6361
|
-
Marker?: string;
|
|
6361
|
+
Marker?: string | undefined;
|
|
6362
6362
|
}
|
|
6363
6363
|
/**
|
|
6364
6364
|
* @public
|
|
@@ -6378,7 +6378,7 @@ export interface ListServerCertificateTagsRequest {
|
|
|
6378
6378
|
* should start.</p>
|
|
6379
6379
|
* @public
|
|
6380
6380
|
*/
|
|
6381
|
-
Marker?: string;
|
|
6381
|
+
Marker?: string | undefined;
|
|
6382
6382
|
/**
|
|
6383
6383
|
* <p>Use this only when paginating results to indicate the
|
|
6384
6384
|
* maximum number of items you want in the response. If additional items exist beyond the maximum
|
|
@@ -6390,7 +6390,7 @@ export interface ListServerCertificateTagsRequest {
|
|
|
6390
6390
|
* from.</p>
|
|
6391
6391
|
* @public
|
|
6392
6392
|
*/
|
|
6393
|
-
MaxItems?: number;
|
|
6393
|
+
MaxItems?: number | undefined;
|
|
6394
6394
|
}
|
|
6395
6395
|
/**
|
|
6396
6396
|
* @public
|
|
@@ -6411,14 +6411,14 @@ export interface ListServerCertificateTagsResponse {
|
|
|
6411
6411
|
* results.</p>
|
|
6412
6412
|
* @public
|
|
6413
6413
|
*/
|
|
6414
|
-
IsTruncated?: boolean;
|
|
6414
|
+
IsTruncated?: boolean | undefined;
|
|
6415
6415
|
/**
|
|
6416
6416
|
* <p>When <code>IsTruncated</code> is <code>true</code>, this element
|
|
6417
6417
|
* is present and contains the value to use for the <code>Marker</code> parameter in a subsequent
|
|
6418
6418
|
* pagination request.</p>
|
|
6419
6419
|
* @public
|
|
6420
6420
|
*/
|
|
6421
|
-
Marker?: string;
|
|
6421
|
+
Marker?: string | undefined;
|
|
6422
6422
|
}
|
|
6423
6423
|
/**
|
|
6424
6424
|
* @public
|
|
@@ -6432,13 +6432,13 @@ export interface ListServiceSpecificCredentialsRequest {
|
|
|
6432
6432
|
* characters with no spaces. You can also include any of the following characters: _+=,.@-</p>
|
|
6433
6433
|
* @public
|
|
6434
6434
|
*/
|
|
6435
|
-
UserName?: string;
|
|
6435
|
+
UserName?: string | undefined;
|
|
6436
6436
|
/**
|
|
6437
6437
|
* <p>Filters the returned results to only those for the specified Amazon Web Services service. If not
|
|
6438
6438
|
* specified, then Amazon Web Services returns service-specific credentials for all services.</p>
|
|
6439
6439
|
* @public
|
|
6440
6440
|
*/
|
|
6441
|
-
ServiceName?: string;
|
|
6441
|
+
ServiceName?: string | undefined;
|
|
6442
6442
|
}
|
|
6443
6443
|
/**
|
|
6444
6444
|
* <p>Contains additional details about a service-specific credential.</p>
|
|
@@ -6487,7 +6487,7 @@ export interface ListServiceSpecificCredentialsResponse {
|
|
|
6487
6487
|
* credential.</p>
|
|
6488
6488
|
* @public
|
|
6489
6489
|
*/
|
|
6490
|
-
ServiceSpecificCredentials?: ServiceSpecificCredentialMetadata[];
|
|
6490
|
+
ServiceSpecificCredentials?: ServiceSpecificCredentialMetadata[] | undefined;
|
|
6491
6491
|
}
|
|
6492
6492
|
/**
|
|
6493
6493
|
* @public
|
|
@@ -6499,7 +6499,7 @@ export interface ListSigningCertificatesRequest {
|
|
|
6499
6499
|
* characters with no spaces. You can also include any of the following characters: _+=,.@-</p>
|
|
6500
6500
|
* @public
|
|
6501
6501
|
*/
|
|
6502
|
-
UserName?: string;
|
|
6502
|
+
UserName?: string | undefined;
|
|
6503
6503
|
/**
|
|
6504
6504
|
* <p>Use this parameter only when paginating results and only after
|
|
6505
6505
|
* you receive a response indicating that the results are truncated. Set it to the value of the
|
|
@@ -6507,7 +6507,7 @@ export interface ListSigningCertificatesRequest {
|
|
|
6507
6507
|
* should start.</p>
|
|
6508
6508
|
* @public
|
|
6509
6509
|
*/
|
|
6510
|
-
Marker?: string;
|
|
6510
|
+
Marker?: string | undefined;
|
|
6511
6511
|
/**
|
|
6512
6512
|
* <p>Use this only when paginating results to indicate the
|
|
6513
6513
|
* maximum number of items you want in the response. If additional items exist beyond the maximum
|
|
@@ -6519,7 +6519,7 @@ export interface ListSigningCertificatesRequest {
|
|
|
6519
6519
|
* from.</p>
|
|
6520
6520
|
* @public
|
|
6521
6521
|
*/
|
|
6522
|
-
MaxItems?: number;
|
|
6522
|
+
MaxItems?: number | undefined;
|
|
6523
6523
|
}
|
|
6524
6524
|
/**
|
|
6525
6525
|
* <p>Contains information about an X.509 signing certificate.</p>
|
|
@@ -6553,7 +6553,7 @@ export interface SigningCertificate {
|
|
|
6553
6553
|
* <p>The date when the signing certificate was uploaded.</p>
|
|
6554
6554
|
* @public
|
|
6555
6555
|
*/
|
|
6556
|
-
UploadDate?: Date;
|
|
6556
|
+
UploadDate?: Date | undefined;
|
|
6557
6557
|
}
|
|
6558
6558
|
/**
|
|
6559
6559
|
* <p>Contains the response to a successful <a>ListSigningCertificates</a>
|
|
@@ -6575,14 +6575,14 @@ export interface ListSigningCertificatesResponse {
|
|
|
6575
6575
|
* results.</p>
|
|
6576
6576
|
* @public
|
|
6577
6577
|
*/
|
|
6578
|
-
IsTruncated?: boolean;
|
|
6578
|
+
IsTruncated?: boolean | undefined;
|
|
6579
6579
|
/**
|
|
6580
6580
|
* <p>When <code>IsTruncated</code> is <code>true</code>, this element
|
|
6581
6581
|
* is present and contains the value to use for the <code>Marker</code> parameter in a subsequent
|
|
6582
6582
|
* pagination request.</p>
|
|
6583
6583
|
* @public
|
|
6584
6584
|
*/
|
|
6585
|
-
Marker?: string;
|
|
6585
|
+
Marker?: string | undefined;
|
|
6586
6586
|
}
|
|
6587
6587
|
/**
|
|
6588
6588
|
* @public
|
|
@@ -6596,7 +6596,7 @@ export interface ListSSHPublicKeysRequest {
|
|
|
6596
6596
|
* characters with no spaces. You can also include any of the following characters: _+=,.@-</p>
|
|
6597
6597
|
* @public
|
|
6598
6598
|
*/
|
|
6599
|
-
UserName?: string;
|
|
6599
|
+
UserName?: string | undefined;
|
|
6600
6600
|
/**
|
|
6601
6601
|
* <p>Use this parameter only when paginating results and only after
|
|
6602
6602
|
* you receive a response indicating that the results are truncated. Set it to the value of the
|
|
@@ -6604,7 +6604,7 @@ export interface ListSSHPublicKeysRequest {
|
|
|
6604
6604
|
* should start.</p>
|
|
6605
6605
|
* @public
|
|
6606
6606
|
*/
|
|
6607
|
-
Marker?: string;
|
|
6607
|
+
Marker?: string | undefined;
|
|
6608
6608
|
/**
|
|
6609
6609
|
* <p>Use this only when paginating results to indicate the
|
|
6610
6610
|
* maximum number of items you want in the response. If additional items exist beyond the maximum
|
|
@@ -6616,7 +6616,7 @@ export interface ListSSHPublicKeysRequest {
|
|
|
6616
6616
|
* from.</p>
|
|
6617
6617
|
* @public
|
|
6618
6618
|
*/
|
|
6619
|
-
MaxItems?: number;
|
|
6619
|
+
MaxItems?: number | undefined;
|
|
6620
6620
|
}
|
|
6621
6621
|
/**
|
|
6622
6622
|
* <p>Contains information about an SSH public key, without the key's body or
|
|
@@ -6660,7 +6660,7 @@ export interface ListSSHPublicKeysResponse {
|
|
|
6660
6660
|
* <p>A list of the SSH public keys assigned to IAM user.</p>
|
|
6661
6661
|
* @public
|
|
6662
6662
|
*/
|
|
6663
|
-
SSHPublicKeys?: SSHPublicKeyMetadata[];
|
|
6663
|
+
SSHPublicKeys?: SSHPublicKeyMetadata[] | undefined;
|
|
6664
6664
|
/**
|
|
6665
6665
|
* <p>A flag that indicates whether there are more items to return. If your
|
|
6666
6666
|
* results were truncated, you can make a subsequent pagination request using the <code>Marker</code>
|
|
@@ -6670,14 +6670,14 @@ export interface ListSSHPublicKeysResponse {
|
|
|
6670
6670
|
* results.</p>
|
|
6671
6671
|
* @public
|
|
6672
6672
|
*/
|
|
6673
|
-
IsTruncated?: boolean;
|
|
6673
|
+
IsTruncated?: boolean | undefined;
|
|
6674
6674
|
/**
|
|
6675
6675
|
* <p>When <code>IsTruncated</code> is <code>true</code>, this element
|
|
6676
6676
|
* is present and contains the value to use for the <code>Marker</code> parameter in a subsequent
|
|
6677
6677
|
* pagination request.</p>
|
|
6678
6678
|
* @public
|
|
6679
6679
|
*/
|
|
6680
|
-
Marker?: string;
|
|
6680
|
+
Marker?: string | undefined;
|
|
6681
6681
|
}
|
|
6682
6682
|
/**
|
|
6683
6683
|
* @public
|
|
@@ -6697,7 +6697,7 @@ export interface ListUserPoliciesRequest {
|
|
|
6697
6697
|
* should start.</p>
|
|
6698
6698
|
* @public
|
|
6699
6699
|
*/
|
|
6700
|
-
Marker?: string;
|
|
6700
|
+
Marker?: string | undefined;
|
|
6701
6701
|
/**
|
|
6702
6702
|
* <p>Use this only when paginating results to indicate the
|
|
6703
6703
|
* maximum number of items you want in the response. If additional items exist beyond the maximum
|
|
@@ -6709,7 +6709,7 @@ export interface ListUserPoliciesRequest {
|
|
|
6709
6709
|
* from.</p>
|
|
6710
6710
|
* @public
|
|
6711
6711
|
*/
|
|
6712
|
-
MaxItems?: number;
|
|
6712
|
+
MaxItems?: number | undefined;
|
|
6713
6713
|
}
|
|
6714
6714
|
/**
|
|
6715
6715
|
* <p>Contains the response to a successful <a>ListUserPolicies</a> request.
|
|
@@ -6731,14 +6731,14 @@ export interface ListUserPoliciesResponse {
|
|
|
6731
6731
|
* results.</p>
|
|
6732
6732
|
* @public
|
|
6733
6733
|
*/
|
|
6734
|
-
IsTruncated?: boolean;
|
|
6734
|
+
IsTruncated?: boolean | undefined;
|
|
6735
6735
|
/**
|
|
6736
6736
|
* <p>When <code>IsTruncated</code> is <code>true</code>, this element
|
|
6737
6737
|
* is present and contains the value to use for the <code>Marker</code> parameter in a subsequent
|
|
6738
6738
|
* pagination request.</p>
|
|
6739
6739
|
* @public
|
|
6740
6740
|
*/
|
|
6741
|
-
Marker?: string;
|
|
6741
|
+
Marker?: string | undefined;
|
|
6742
6742
|
}
|
|
6743
6743
|
/**
|
|
6744
6744
|
* @public
|
|
@@ -6755,7 +6755,7 @@ export interface ListUsersRequest {
|
|
|
6755
6755
|
* most punctuation characters, digits, and upper and lowercased letters.</p>
|
|
6756
6756
|
* @public
|
|
6757
6757
|
*/
|
|
6758
|
-
PathPrefix?: string;
|
|
6758
|
+
PathPrefix?: string | undefined;
|
|
6759
6759
|
/**
|
|
6760
6760
|
* <p>Use this parameter only when paginating results and only after
|
|
6761
6761
|
* you receive a response indicating that the results are truncated. Set it to the value of the
|
|
@@ -6763,7 +6763,7 @@ export interface ListUsersRequest {
|
|
|
6763
6763
|
* should start.</p>
|
|
6764
6764
|
* @public
|
|
6765
6765
|
*/
|
|
6766
|
-
Marker?: string;
|
|
6766
|
+
Marker?: string | undefined;
|
|
6767
6767
|
/**
|
|
6768
6768
|
* <p>Use this only when paginating results to indicate the
|
|
6769
6769
|
* maximum number of items you want in the response. If additional items exist beyond the maximum
|
|
@@ -6775,7 +6775,7 @@ export interface ListUsersRequest {
|
|
|
6775
6775
|
* from.</p>
|
|
6776
6776
|
* @public
|
|
6777
6777
|
*/
|
|
6778
|
-
MaxItems?: number;
|
|
6778
|
+
MaxItems?: number | undefined;
|
|
6779
6779
|
}
|
|
6780
6780
|
/**
|
|
6781
6781
|
* <p>Contains the response to a successful <a>ListUsers</a> request. </p>
|
|
@@ -6796,14 +6796,14 @@ export interface ListUsersResponse {
|
|
|
6796
6796
|
* results.</p>
|
|
6797
6797
|
* @public
|
|
6798
6798
|
*/
|
|
6799
|
-
IsTruncated?: boolean;
|
|
6799
|
+
IsTruncated?: boolean | undefined;
|
|
6800
6800
|
/**
|
|
6801
6801
|
* <p>When <code>IsTruncated</code> is <code>true</code>, this element
|
|
6802
6802
|
* is present and contains the value to use for the <code>Marker</code> parameter in a subsequent
|
|
6803
6803
|
* pagination request.</p>
|
|
6804
6804
|
* @public
|
|
6805
6805
|
*/
|
|
6806
|
-
Marker?: string;
|
|
6806
|
+
Marker?: string | undefined;
|
|
6807
6807
|
}
|
|
6808
6808
|
/**
|
|
6809
6809
|
* @public
|
|
@@ -6823,7 +6823,7 @@ export interface ListUserTagsRequest {
|
|
|
6823
6823
|
* should start.</p>
|
|
6824
6824
|
* @public
|
|
6825
6825
|
*/
|
|
6826
|
-
Marker?: string;
|
|
6826
|
+
Marker?: string | undefined;
|
|
6827
6827
|
/**
|
|
6828
6828
|
* <p>Use this only when paginating results to indicate the
|
|
6829
6829
|
* maximum number of items you want in the response. If additional items exist beyond the maximum
|
|
@@ -6835,7 +6835,7 @@ export interface ListUserTagsRequest {
|
|
|
6835
6835
|
* from.</p>
|
|
6836
6836
|
* @public
|
|
6837
6837
|
*/
|
|
6838
|
-
MaxItems?: number;
|
|
6838
|
+
MaxItems?: number | undefined;
|
|
6839
6839
|
}
|
|
6840
6840
|
/**
|
|
6841
6841
|
* @public
|
|
@@ -6855,14 +6855,14 @@ export interface ListUserTagsResponse {
|
|
|
6855
6855
|
* results.</p>
|
|
6856
6856
|
* @public
|
|
6857
6857
|
*/
|
|
6858
|
-
IsTruncated?: boolean;
|
|
6858
|
+
IsTruncated?: boolean | undefined;
|
|
6859
6859
|
/**
|
|
6860
6860
|
* <p>When <code>IsTruncated</code> is <code>true</code>, this element
|
|
6861
6861
|
* is present and contains the value to use for the <code>Marker</code> parameter in a subsequent
|
|
6862
6862
|
* pagination request.</p>
|
|
6863
6863
|
* @public
|
|
6864
6864
|
*/
|
|
6865
|
-
Marker?: string;
|
|
6865
|
+
Marker?: string | undefined;
|
|
6866
6866
|
}
|
|
6867
6867
|
/**
|
|
6868
6868
|
* @public
|
|
@@ -6875,7 +6875,7 @@ export interface ListVirtualMFADevicesRequest {
|
|
|
6875
6875
|
* devices.,</p>
|
|
6876
6876
|
* @public
|
|
6877
6877
|
*/
|
|
6878
|
-
AssignmentStatus?: AssignmentStatusType;
|
|
6878
|
+
AssignmentStatus?: AssignmentStatusType | undefined;
|
|
6879
6879
|
/**
|
|
6880
6880
|
* <p>Use this parameter only when paginating results and only after
|
|
6881
6881
|
* you receive a response indicating that the results are truncated. Set it to the value of the
|
|
@@ -6883,7 +6883,7 @@ export interface ListVirtualMFADevicesRequest {
|
|
|
6883
6883
|
* should start.</p>
|
|
6884
6884
|
* @public
|
|
6885
6885
|
*/
|
|
6886
|
-
Marker?: string;
|
|
6886
|
+
Marker?: string | undefined;
|
|
6887
6887
|
/**
|
|
6888
6888
|
* <p>Use this only when paginating results to indicate the
|
|
6889
6889
|
* maximum number of items you want in the response. If additional items exist beyond the maximum
|
|
@@ -6895,7 +6895,7 @@ export interface ListVirtualMFADevicesRequest {
|
|
|
6895
6895
|
* from.</p>
|
|
6896
6896
|
* @public
|
|
6897
6897
|
*/
|
|
6898
|
-
MaxItems?: number;
|
|
6898
|
+
MaxItems?: number | undefined;
|
|
6899
6899
|
}
|
|
6900
6900
|
/**
|
|
6901
6901
|
* <p>Contains the response to a successful <a>ListVirtualMFADevices</a> request.
|
|
@@ -6918,14 +6918,14 @@ export interface ListVirtualMFADevicesResponse {
|
|
|
6918
6918
|
* results.</p>
|
|
6919
6919
|
* @public
|
|
6920
6920
|
*/
|
|
6921
|
-
IsTruncated?: boolean;
|
|
6921
|
+
IsTruncated?: boolean | undefined;
|
|
6922
6922
|
/**
|
|
6923
6923
|
* <p>When <code>IsTruncated</code> is <code>true</code>, this element is present and
|
|
6924
6924
|
* contains the value to use for the <code>Marker</code> parameter in a subsequent
|
|
6925
6925
|
* pagination request.</p>
|
|
6926
6926
|
* @public
|
|
6927
6927
|
*/
|
|
6928
|
-
Marker?: string;
|
|
6928
|
+
Marker?: string | undefined;
|
|
6929
6929
|
}
|
|
6930
6930
|
/**
|
|
6931
6931
|
* @public
|
|
@@ -7172,7 +7172,7 @@ export interface ResetServiceSpecificCredentialRequest {
|
|
|
7172
7172
|
* characters with no spaces. You can also include any of the following characters: _+=,.@-</p>
|
|
7173
7173
|
* @public
|
|
7174
7174
|
*/
|
|
7175
|
-
UserName?: string;
|
|
7175
|
+
UserName?: string | undefined;
|
|
7176
7176
|
/**
|
|
7177
7177
|
* <p>The unique identifier of the service-specific credential.</p>
|
|
7178
7178
|
* <p>This parameter allows (through its <a href="http://wikipedia.org/wiki/regex">regex pattern</a>) a string of characters that can
|
|
@@ -7194,7 +7194,7 @@ export interface ResetServiceSpecificCredentialResponse {
|
|
|
7194
7194
|
* </important>
|
|
7195
7195
|
* @public
|
|
7196
7196
|
*/
|
|
7197
|
-
ServiceSpecificCredential?: ServiceSpecificCredential;
|
|
7197
|
+
ServiceSpecificCredential?: ServiceSpecificCredential | undefined;
|
|
7198
7198
|
}
|
|
7199
7199
|
/**
|
|
7200
7200
|
* @public
|
|
@@ -7324,20 +7324,20 @@ export interface ContextEntry {
|
|
|
7324
7324
|
* <code>aws:SourceIp</code> or <code>s3:VersionId</code>.</p>
|
|
7325
7325
|
* @public
|
|
7326
7326
|
*/
|
|
7327
|
-
ContextKeyName?: string;
|
|
7327
|
+
ContextKeyName?: string | undefined;
|
|
7328
7328
|
/**
|
|
7329
7329
|
* <p>The value (or values, if the condition context key supports multiple values) to provide
|
|
7330
7330
|
* to the simulation when the key is referenced by a <code>Condition</code> element in an
|
|
7331
7331
|
* input policy.</p>
|
|
7332
7332
|
* @public
|
|
7333
7333
|
*/
|
|
7334
|
-
ContextKeyValues?: string[];
|
|
7334
|
+
ContextKeyValues?: string[] | undefined;
|
|
7335
7335
|
/**
|
|
7336
7336
|
* <p>The data type of the value (or values) specified in the <code>ContextKeyValues</code>
|
|
7337
7337
|
* parameter.</p>
|
|
7338
7338
|
* @public
|
|
7339
7339
|
*/
|
|
7340
|
-
ContextKeyType?: ContextKeyTypeEnum;
|
|
7340
|
+
ContextKeyType?: ContextKeyTypeEnum | undefined;
|
|
7341
7341
|
}
|
|
7342
7342
|
/**
|
|
7343
7343
|
* @public
|
|
@@ -7400,7 +7400,7 @@ export interface SimulateCustomPolicyRequest {
|
|
|
7400
7400
|
* </ul>
|
|
7401
7401
|
* @public
|
|
7402
7402
|
*/
|
|
7403
|
-
PermissionsBoundaryPolicyInputList?: string[];
|
|
7403
|
+
PermissionsBoundaryPolicyInputList?: string[] | undefined;
|
|
7404
7404
|
/**
|
|
7405
7405
|
* <p>A list of names of API operations to evaluate in the simulation. Each operation is
|
|
7406
7406
|
* evaluated against each resource. Each operation must include the service identifier,
|
|
@@ -7427,7 +7427,7 @@ export interface SimulateCustomPolicyRequest {
|
|
|
7427
7427
|
* </note>
|
|
7428
7428
|
* @public
|
|
7429
7429
|
*/
|
|
7430
|
-
ResourceArns?: string[];
|
|
7430
|
+
ResourceArns?: string[] | undefined;
|
|
7431
7431
|
/**
|
|
7432
7432
|
* <p>A resource-based policy to include in the simulation provided as a string. Each
|
|
7433
7433
|
* resource in the simulation is treated as if it had this policy attached. You can include
|
|
@@ -7455,7 +7455,7 @@ export interface SimulateCustomPolicyRequest {
|
|
|
7455
7455
|
* </note>
|
|
7456
7456
|
* @public
|
|
7457
7457
|
*/
|
|
7458
|
-
ResourcePolicy?: string;
|
|
7458
|
+
ResourcePolicy?: string | undefined;
|
|
7459
7459
|
/**
|
|
7460
7460
|
* <p>An ARN representing the Amazon Web Services account ID that specifies the owner of any simulated
|
|
7461
7461
|
* resource that does not identify its owner in the resource ARN. Examples of resource ARNs
|
|
@@ -7472,7 +7472,7 @@ export interface SimulateCustomPolicyRequest {
|
|
|
7472
7472
|
* <code>arn:aws:iam::112233445566-ID:root</code>. </p>
|
|
7473
7473
|
* @public
|
|
7474
7474
|
*/
|
|
7475
|
-
ResourceOwner?: string;
|
|
7475
|
+
ResourceOwner?: string | undefined;
|
|
7476
7476
|
/**
|
|
7477
7477
|
* <p>The ARN of the IAM user that you want to use as the simulated caller of the API
|
|
7478
7478
|
* operations. <code>CallerArn</code> is required if you include a
|
|
@@ -7482,14 +7482,14 @@ export interface SimulateCustomPolicyRequest {
|
|
|
7482
7482
|
* assumed role, federated user, or a service principal.</p>
|
|
7483
7483
|
* @public
|
|
7484
7484
|
*/
|
|
7485
|
-
CallerArn?: string;
|
|
7485
|
+
CallerArn?: string | undefined;
|
|
7486
7486
|
/**
|
|
7487
7487
|
* <p>A list of context keys and corresponding values for the simulation to use. Whenever a
|
|
7488
7488
|
* context key is evaluated in one of the simulated IAM permissions policies, the
|
|
7489
7489
|
* corresponding value is supplied.</p>
|
|
7490
7490
|
* @public
|
|
7491
7491
|
*/
|
|
7492
|
-
ContextEntries?: ContextEntry[];
|
|
7492
|
+
ContextEntries?: ContextEntry[] | undefined;
|
|
7493
7493
|
/**
|
|
7494
7494
|
* <p>Specifies the type of simulation to run. Different API operations that support
|
|
7495
7495
|
* resource-based policies require different combinations of resources. By specifying the
|
|
@@ -7531,7 +7531,7 @@ export interface SimulateCustomPolicyRequest {
|
|
|
7531
7531
|
* </ul>
|
|
7532
7532
|
* @public
|
|
7533
7533
|
*/
|
|
7534
|
-
ResourceHandlingOption?: string;
|
|
7534
|
+
ResourceHandlingOption?: string | undefined;
|
|
7535
7535
|
/**
|
|
7536
7536
|
* <p>Use this only when paginating results to indicate the
|
|
7537
7537
|
* maximum number of items you want in the response. If additional items exist beyond the maximum
|
|
@@ -7543,7 +7543,7 @@ export interface SimulateCustomPolicyRequest {
|
|
|
7543
7543
|
* from.</p>
|
|
7544
7544
|
* @public
|
|
7545
7545
|
*/
|
|
7546
|
-
MaxItems?: number;
|
|
7546
|
+
MaxItems?: number | undefined;
|
|
7547
7547
|
/**
|
|
7548
7548
|
* <p>Use this parameter only when paginating results and only after
|
|
7549
7549
|
* you receive a response indicating that the results are truncated. Set it to the value of the
|
|
@@ -7551,7 +7551,7 @@ export interface SimulateCustomPolicyRequest {
|
|
|
7551
7551
|
* should start.</p>
|
|
7552
7552
|
* @public
|
|
7553
7553
|
*/
|
|
7554
|
-
Marker?: string;
|
|
7554
|
+
Marker?: string | undefined;
|
|
7555
7555
|
}
|
|
7556
7556
|
/**
|
|
7557
7557
|
* @public
|
|
@@ -7579,12 +7579,12 @@ export interface Position {
|
|
|
7579
7579
|
* <p>The line containing the specified position in the document.</p>
|
|
7580
7580
|
* @public
|
|
7581
7581
|
*/
|
|
7582
|
-
Line?: number;
|
|
7582
|
+
Line?: number | undefined;
|
|
7583
7583
|
/**
|
|
7584
7584
|
* <p>The column in the line containing the specified position in the document.</p>
|
|
7585
7585
|
* @public
|
|
7586
7586
|
*/
|
|
7587
|
-
Column?: number;
|
|
7587
|
+
Column?: number | undefined;
|
|
7588
7588
|
}
|
|
7589
7589
|
/**
|
|
7590
7590
|
* @public
|
|
@@ -7616,23 +7616,23 @@ export interface Statement {
|
|
|
7616
7616
|
* <p>The identifier of the policy that was provided as an input.</p>
|
|
7617
7617
|
* @public
|
|
7618
7618
|
*/
|
|
7619
|
-
SourcePolicyId?: string;
|
|
7619
|
+
SourcePolicyId?: string | undefined;
|
|
7620
7620
|
/**
|
|
7621
7621
|
* <p>The type of the policy.</p>
|
|
7622
7622
|
* @public
|
|
7623
7623
|
*/
|
|
7624
|
-
SourcePolicyType?: PolicySourceType;
|
|
7624
|
+
SourcePolicyType?: PolicySourceType | undefined;
|
|
7625
7625
|
/**
|
|
7626
7626
|
* <p>The row and column of the beginning of the <code>Statement</code> in an IAM
|
|
7627
7627
|
* policy.</p>
|
|
7628
7628
|
* @public
|
|
7629
7629
|
*/
|
|
7630
|
-
StartPosition?: Position;
|
|
7630
|
+
StartPosition?: Position | undefined;
|
|
7631
7631
|
/**
|
|
7632
7632
|
* <p>The row and column of the end of a <code>Statement</code> in an IAM policy.</p>
|
|
7633
7633
|
* @public
|
|
7634
7634
|
*/
|
|
7635
|
-
EndPosition?: Position;
|
|
7635
|
+
EndPosition?: Position | undefined;
|
|
7636
7636
|
}
|
|
7637
7637
|
/**
|
|
7638
7638
|
* <p>Contains information about the effect that Organizations has on a policy simulation.</p>
|
|
@@ -7644,7 +7644,7 @@ export interface OrganizationsDecisionDetail {
|
|
|
7644
7644
|
* policies that impact the simulated user's account.</p>
|
|
7645
7645
|
* @public
|
|
7646
7646
|
*/
|
|
7647
|
-
AllowedByOrganizations?: boolean;
|
|
7647
|
+
AllowedByOrganizations?: boolean | undefined;
|
|
7648
7648
|
}
|
|
7649
7649
|
/**
|
|
7650
7650
|
* <p>Contains information about the effect that a permissions boundary has on a policy
|
|
@@ -7663,7 +7663,7 @@ export interface PermissionsBoundaryDecisionDetail {
|
|
|
7663
7663
|
* these cases, the action is not allowed, regardless of the identity-based policy.</p>
|
|
7664
7664
|
* @public
|
|
7665
7665
|
*/
|
|
7666
|
-
AllowedByPermissionsBoundary?: boolean;
|
|
7666
|
+
AllowedByPermissionsBoundary?: boolean | undefined;
|
|
7667
7667
|
}
|
|
7668
7668
|
/**
|
|
7669
7669
|
* <p>Contains the result of the simulation of a single API operation call on a single
|
|
@@ -7692,7 +7692,7 @@ export interface ResourceSpecificResult {
|
|
|
7692
7692
|
* result.</p>
|
|
7693
7693
|
* @public
|
|
7694
7694
|
*/
|
|
7695
|
-
MatchedStatements?: Statement[];
|
|
7695
|
+
MatchedStatements?: Statement[] | undefined;
|
|
7696
7696
|
/**
|
|
7697
7697
|
* <p>A list of context keys that are required by the included input policies but that were
|
|
7698
7698
|
* not provided by one of the input parameters. This list is used when a list of ARNs is
|
|
@@ -7704,20 +7704,20 @@ export interface ResourceSpecificResult {
|
|
|
7704
7704
|
* <a>GetContextKeysForPrincipalPolicy</a>.</p>
|
|
7705
7705
|
* @public
|
|
7706
7706
|
*/
|
|
7707
|
-
MissingContextValues?: string[];
|
|
7707
|
+
MissingContextValues?: string[] | undefined;
|
|
7708
7708
|
/**
|
|
7709
7709
|
* <p>Additional details about the results of the evaluation decision on a single resource.
|
|
7710
7710
|
* This parameter is returned only for cross-account simulations. This parameter explains how
|
|
7711
7711
|
* each policy type contributes to the resource-specific evaluation decision.</p>
|
|
7712
7712
|
* @public
|
|
7713
7713
|
*/
|
|
7714
|
-
EvalDecisionDetails?: Record<string, PolicyEvaluationDecisionType
|
|
7714
|
+
EvalDecisionDetails?: Record<string, PolicyEvaluationDecisionType> | undefined;
|
|
7715
7715
|
/**
|
|
7716
7716
|
* <p>Contains information about the effect that a permissions boundary has on a policy
|
|
7717
7717
|
* simulation when that boundary is applied to an IAM entity.</p>
|
|
7718
7718
|
* @public
|
|
7719
7719
|
*/
|
|
7720
|
-
PermissionsBoundaryDecisionDetail?: PermissionsBoundaryDecisionDetail;
|
|
7720
|
+
PermissionsBoundaryDecisionDetail?: PermissionsBoundaryDecisionDetail | undefined;
|
|
7721
7721
|
}
|
|
7722
7722
|
/**
|
|
7723
7723
|
* <p>Contains the results of a simulation.</p>
|
|
@@ -7738,7 +7738,7 @@ export interface EvaluationResult {
|
|
|
7738
7738
|
* <p>The ARN of the resource that the indicated API operation was tested on.</p>
|
|
7739
7739
|
* @public
|
|
7740
7740
|
*/
|
|
7741
|
-
EvalResourceName?: string;
|
|
7741
|
+
EvalResourceName?: string | undefined;
|
|
7742
7742
|
/**
|
|
7743
7743
|
* <p>The result of the simulation.</p>
|
|
7744
7744
|
* @public
|
|
@@ -7751,7 +7751,7 @@ export interface EvaluationResult {
|
|
|
7751
7751
|
* addition, the deny statement is the only entry included in the result.</p>
|
|
7752
7752
|
* @public
|
|
7753
7753
|
*/
|
|
7754
|
-
MatchedStatements?: Statement[];
|
|
7754
|
+
MatchedStatements?: Statement[] | undefined;
|
|
7755
7755
|
/**
|
|
7756
7756
|
* <p>A list of context keys that are required by the included input policies but that were
|
|
7757
7757
|
* not provided by one of the input parameters. This list is used when the resource in a
|
|
@@ -7761,20 +7761,20 @@ export interface EvaluationResult {
|
|
|
7761
7761
|
* keys used by a set of policies, you can call <a>GetContextKeysForCustomPolicy</a> or <a>GetContextKeysForPrincipalPolicy</a>.</p>
|
|
7762
7762
|
* @public
|
|
7763
7763
|
*/
|
|
7764
|
-
MissingContextValues?: string[];
|
|
7764
|
+
MissingContextValues?: string[] | undefined;
|
|
7765
7765
|
/**
|
|
7766
7766
|
* <p>A structure that details how Organizations and its service control policies affect the results of
|
|
7767
7767
|
* the simulation. Only applies if the simulated user's account is part of an
|
|
7768
7768
|
* organization.</p>
|
|
7769
7769
|
* @public
|
|
7770
7770
|
*/
|
|
7771
|
-
OrganizationsDecisionDetail?: OrganizationsDecisionDetail;
|
|
7771
|
+
OrganizationsDecisionDetail?: OrganizationsDecisionDetail | undefined;
|
|
7772
7772
|
/**
|
|
7773
7773
|
* <p>Contains information about the effect that a permissions boundary has on a policy
|
|
7774
7774
|
* simulation when the boundary is applied to an IAM entity.</p>
|
|
7775
7775
|
* @public
|
|
7776
7776
|
*/
|
|
7777
|
-
PermissionsBoundaryDecisionDetail?: PermissionsBoundaryDecisionDetail;
|
|
7777
|
+
PermissionsBoundaryDecisionDetail?: PermissionsBoundaryDecisionDetail | undefined;
|
|
7778
7778
|
/**
|
|
7779
7779
|
* <p>Additional details about the results of the cross-account evaluation decision. This
|
|
7780
7780
|
* parameter is populated for only cross-account simulations. It contains a brief summary of
|
|
@@ -7791,13 +7791,13 @@ export interface EvaluationResult {
|
|
|
7791
7791
|
* returned.</p>
|
|
7792
7792
|
* @public
|
|
7793
7793
|
*/
|
|
7794
|
-
EvalDecisionDetails?: Record<string, PolicyEvaluationDecisionType
|
|
7794
|
+
EvalDecisionDetails?: Record<string, PolicyEvaluationDecisionType> | undefined;
|
|
7795
7795
|
/**
|
|
7796
7796
|
* <p>The individual results of the simulation of the API operation specified in
|
|
7797
7797
|
* EvalActionName on each resource.</p>
|
|
7798
7798
|
* @public
|
|
7799
7799
|
*/
|
|
7800
|
-
ResourceSpecificResults?: ResourceSpecificResult[];
|
|
7800
|
+
ResourceSpecificResults?: ResourceSpecificResult[] | undefined;
|
|
7801
7801
|
}
|
|
7802
7802
|
/**
|
|
7803
7803
|
* <p>Contains the response to a successful <a>SimulatePrincipalPolicy</a> or
|
|
@@ -7809,7 +7809,7 @@ export interface SimulatePolicyResponse {
|
|
|
7809
7809
|
* <p>The results of the simulation.</p>
|
|
7810
7810
|
* @public
|
|
7811
7811
|
*/
|
|
7812
|
-
EvaluationResults?: EvaluationResult[];
|
|
7812
|
+
EvaluationResults?: EvaluationResult[] | undefined;
|
|
7813
7813
|
/**
|
|
7814
7814
|
* <p>A flag that indicates whether there are more items to return. If your
|
|
7815
7815
|
* results were truncated, you can make a subsequent pagination request using the <code>Marker</code>
|
|
@@ -7819,14 +7819,14 @@ export interface SimulatePolicyResponse {
|
|
|
7819
7819
|
* results.</p>
|
|
7820
7820
|
* @public
|
|
7821
7821
|
*/
|
|
7822
|
-
IsTruncated?: boolean;
|
|
7822
|
+
IsTruncated?: boolean | undefined;
|
|
7823
7823
|
/**
|
|
7824
7824
|
* <p>When <code>IsTruncated</code> is <code>true</code>, this element
|
|
7825
7825
|
* is present and contains the value to use for the <code>Marker</code> parameter in a subsequent
|
|
7826
7826
|
* pagination request.</p>
|
|
7827
7827
|
* @public
|
|
7828
7828
|
*/
|
|
7829
|
-
Marker?: string;
|
|
7829
|
+
Marker?: string | undefined;
|
|
7830
7830
|
}
|
|
7831
7831
|
/**
|
|
7832
7832
|
* @public
|
|
@@ -7866,7 +7866,7 @@ export interface SimulatePrincipalPolicyRequest {
|
|
|
7866
7866
|
* </ul>
|
|
7867
7867
|
* @public
|
|
7868
7868
|
*/
|
|
7869
|
-
PolicyInputList?: string[];
|
|
7869
|
+
PolicyInputList?: string[] | undefined;
|
|
7870
7870
|
/**
|
|
7871
7871
|
* <p>The IAM permissions boundary policy to simulate. The permissions boundary sets the
|
|
7872
7872
|
* maximum permissions that the entity can have. You can input only one permissions
|
|
@@ -7898,7 +7898,7 @@ export interface SimulatePrincipalPolicyRequest {
|
|
|
7898
7898
|
* </ul>
|
|
7899
7899
|
* @public
|
|
7900
7900
|
*/
|
|
7901
|
-
PermissionsBoundaryPolicyInputList?: string[];
|
|
7901
|
+
PermissionsBoundaryPolicyInputList?: string[] | undefined;
|
|
7902
7902
|
/**
|
|
7903
7903
|
* <p>A list of names of API operations to evaluate in the simulation. Each operation is
|
|
7904
7904
|
* evaluated for each resource. Each operation must include the service identifier, such as
|
|
@@ -7922,7 +7922,7 @@ export interface SimulatePrincipalPolicyRequest {
|
|
|
7922
7922
|
* </note>
|
|
7923
7923
|
* @public
|
|
7924
7924
|
*/
|
|
7925
|
-
ResourceArns?: string[];
|
|
7925
|
+
ResourceArns?: string[] | undefined;
|
|
7926
7926
|
/**
|
|
7927
7927
|
* <p>A resource-based policy to include in the simulation provided as a string. Each
|
|
7928
7928
|
* resource in the simulation is treated as if it had this policy attached. You can include
|
|
@@ -7950,7 +7950,7 @@ export interface SimulatePrincipalPolicyRequest {
|
|
|
7950
7950
|
* </note>
|
|
7951
7951
|
* @public
|
|
7952
7952
|
*/
|
|
7953
|
-
ResourcePolicy?: string;
|
|
7953
|
+
ResourcePolicy?: string | undefined;
|
|
7954
7954
|
/**
|
|
7955
7955
|
* <p>An Amazon Web Services account ID that specifies the owner of any simulated resource that does not
|
|
7956
7956
|
* identify its owner in the resource ARN. Examples of resource ARNs include an S3 bucket
|
|
@@ -7963,7 +7963,7 @@ export interface SimulatePrincipalPolicyRequest {
|
|
|
7963
7963
|
* that owns the simulated calling user <code>CallerArn</code>.</p>
|
|
7964
7964
|
* @public
|
|
7965
7965
|
*/
|
|
7966
|
-
ResourceOwner?: string;
|
|
7966
|
+
ResourceOwner?: string | undefined;
|
|
7967
7967
|
/**
|
|
7968
7968
|
* <p>The ARN of the IAM user that you want to specify as the simulated caller of the API
|
|
7969
7969
|
* operations. If you do not specify a <code>CallerArn</code>, it defaults to the ARN of
|
|
@@ -7982,14 +7982,14 @@ export interface SimulatePrincipalPolicyRequest {
|
|
|
7982
7982
|
* <p>For more information about ARNs, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a> in the <i>Amazon Web Services General Reference</i>.</p>
|
|
7983
7983
|
* @public
|
|
7984
7984
|
*/
|
|
7985
|
-
CallerArn?: string;
|
|
7985
|
+
CallerArn?: string | undefined;
|
|
7986
7986
|
/**
|
|
7987
7987
|
* <p>A list of context keys and corresponding values for the simulation to use. Whenever a
|
|
7988
7988
|
* context key is evaluated in one of the simulated IAM permissions policies, the
|
|
7989
7989
|
* corresponding value is supplied.</p>
|
|
7990
7990
|
* @public
|
|
7991
7991
|
*/
|
|
7992
|
-
ContextEntries?: ContextEntry[];
|
|
7992
|
+
ContextEntries?: ContextEntry[] | undefined;
|
|
7993
7993
|
/**
|
|
7994
7994
|
* <p>Specifies the type of simulation to run. Different API operations that support
|
|
7995
7995
|
* resource-based policies require different combinations of resources. By specifying the
|
|
@@ -8031,7 +8031,7 @@ export interface SimulatePrincipalPolicyRequest {
|
|
|
8031
8031
|
* </ul>
|
|
8032
8032
|
* @public
|
|
8033
8033
|
*/
|
|
8034
|
-
ResourceHandlingOption?: string;
|
|
8034
|
+
ResourceHandlingOption?: string | undefined;
|
|
8035
8035
|
/**
|
|
8036
8036
|
* <p>Use this only when paginating results to indicate the
|
|
8037
8037
|
* maximum number of items you want in the response. If additional items exist beyond the maximum
|
|
@@ -8043,7 +8043,7 @@ export interface SimulatePrincipalPolicyRequest {
|
|
|
8043
8043
|
* from.</p>
|
|
8044
8044
|
* @public
|
|
8045
8045
|
*/
|
|
8046
|
-
MaxItems?: number;
|
|
8046
|
+
MaxItems?: number | undefined;
|
|
8047
8047
|
/**
|
|
8048
8048
|
* <p>Use this parameter only when paginating results and only after
|
|
8049
8049
|
* you receive a response indicating that the results are truncated. Set it to the value of the
|
|
@@ -8051,7 +8051,7 @@ export interface SimulatePrincipalPolicyRequest {
|
|
|
8051
8051
|
* should start.</p>
|
|
8052
8052
|
* @public
|
|
8053
8053
|
*/
|
|
8054
|
-
Marker?: string;
|
|
8054
|
+
Marker?: string | undefined;
|
|
8055
8055
|
}
|
|
8056
8056
|
/**
|
|
8057
8057
|
* @public
|