aws-sdk-iam 1.12.0 → 1.13.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-iam.rb +1 -1
- data/lib/aws-sdk-iam/access_key.rb +2 -2
- data/lib/aws-sdk-iam/account_summary.rb +1 -1
- data/lib/aws-sdk-iam/client.rb +1045 -523
- data/lib/aws-sdk-iam/client_api.rb +161 -6
- data/lib/aws-sdk-iam/current_user.rb +21 -23
- data/lib/aws-sdk-iam/group.rb +7 -7
- data/lib/aws-sdk-iam/instance_profile.rb +2 -2
- data/lib/aws-sdk-iam/policy.rb +10 -10
- data/lib/aws-sdk-iam/resource.rb +76 -74
- data/lib/aws-sdk-iam/role.rb +17 -19
- data/lib/aws-sdk-iam/server_certificate.rb +2 -2
- data/lib/aws-sdk-iam/types.rb +1201 -578
- data/lib/aws-sdk-iam/user.rb +30 -32
- data/lib/aws-sdk-iam/virtual_mfa_device.rb +5 -5
- metadata +2 -2
data/lib/aws-sdk-iam/role.rb
CHANGED
@@ -89,20 +89,8 @@ module Aws::IAM
|
|
89
89
|
data[:description]
|
90
90
|
end
|
91
91
|
|
92
|
-
# A list of tags that are attached to the specified role. For more
|
93
|
-
# information about tagging, see [Tagging IAM Identities][1] in the *IAM
|
94
|
-
# User Guide*.
|
95
|
-
#
|
96
|
-
#
|
97
|
-
#
|
98
|
-
# [1]: http://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html
|
99
|
-
# @return [Array<Types::Tag>]
|
100
|
-
def tags
|
101
|
-
data[:tags]
|
102
|
-
end
|
103
|
-
|
104
92
|
# The maximum session duration (in seconds) for the specified role.
|
105
|
-
# Anyone who uses the AWS CLI or API to assume the role can specify the
|
93
|
+
# Anyone who uses the AWS CLI, or API to assume the role can specify the
|
106
94
|
# duration using the optional `DurationSeconds` API parameter or
|
107
95
|
# `duration-seconds` CLI parameter.
|
108
96
|
# @return [Integer]
|
@@ -114,16 +102,26 @@ module Aws::IAM
|
|
114
102
|
# role.
|
115
103
|
#
|
116
104
|
# For more information about permissions boundaries, see [Permissions
|
117
|
-
# Boundaries for IAM Identities
|
118
|
-
#
|
119
|
-
#
|
120
|
-
#
|
121
|
-
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_boundaries.html
|
105
|
+
# Boundaries for IAM Identities
|
106
|
+
# ](IAM/latest/UserGuide/access_policies_boundaries.html) in the *IAM
|
107
|
+
# User Guide*.
|
122
108
|
# @return [Types::AttachedPermissionsBoundary]
|
123
109
|
def permissions_boundary
|
124
110
|
data[:permissions_boundary]
|
125
111
|
end
|
126
112
|
|
113
|
+
# A list of tags that are attached to the specified role. For more
|
114
|
+
# information about tagging, see [Tagging IAM Identities][1] in the *IAM
|
115
|
+
# User Guide*.
|
116
|
+
#
|
117
|
+
#
|
118
|
+
#
|
119
|
+
# [1]: http://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html
|
120
|
+
# @return [Array<Types::Tag>]
|
121
|
+
def tags
|
122
|
+
data[:tags]
|
123
|
+
end
|
124
|
+
|
127
125
|
# @!endgroup
|
128
126
|
|
129
127
|
# @return [Client]
|
@@ -332,7 +330,7 @@ module Aws::IAM
|
|
332
330
|
# If it is not included, it defaults to a slash (/), listing all
|
333
331
|
# policies.
|
334
332
|
#
|
335
|
-
# This parameter allows (
|
333
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
336
334
|
# characters consisting of either a forward slash (/) by itself or a
|
337
335
|
# string that must begin and end with forward slashes. In addition, it
|
338
336
|
# can contain any ASCII character from the ! (\\u0021) through the DEL
|
@@ -203,7 +203,7 @@ module Aws::IAM
|
|
203
203
|
# The new path for the server certificate. Include this only if you are
|
204
204
|
# updating the server certificate's path.
|
205
205
|
#
|
206
|
-
# This parameter allows (
|
206
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
207
207
|
# characters consisting of either a forward slash (/) by itself or a
|
208
208
|
# string that must begin and end with forward slashes. In addition, it
|
209
209
|
# can contain any ASCII character from the ! (\\u0021) through the DEL
|
@@ -218,7 +218,7 @@ module Aws::IAM
|
|
218
218
|
# updating the server certificate's name. The name of the certificate
|
219
219
|
# cannot contain any spaces.
|
220
220
|
#
|
221
|
-
# This parameter allows (
|
221
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
222
222
|
# characters consisting of upper and lowercase alphanumeric characters
|
223
223
|
# with no spaces. You can also include any of the following characters:
|
224
224
|
# \_+=,.@-
|
data/lib/aws-sdk-iam/types.rb
CHANGED
@@ -52,7 +52,8 @@ module Aws::IAM
|
|
52
52
|
include Aws::Structure
|
53
53
|
end
|
54
54
|
|
55
|
-
# Contains information about the last time an AWS access key was used
|
55
|
+
# Contains information about the last time an AWS access key was used
|
56
|
+
# since IAM began tracking this information on April 22, 2015.
|
56
57
|
#
|
57
58
|
# This data type is used as a response element in the
|
58
59
|
# GetAccessKeyLastUsed operation.
|
@@ -64,8 +65,8 @@ module Aws::IAM
|
|
64
65
|
#
|
65
66
|
# * The user does not have an access key.
|
66
67
|
#
|
67
|
-
# * An access key exists but has
|
68
|
-
#
|
68
|
+
# * An access key exists but has not been used since IAM began
|
69
|
+
# tracking this information.
|
69
70
|
#
|
70
71
|
# * There is no sign-in data associated with the user
|
71
72
|
#
|
@@ -76,25 +77,25 @@ module Aws::IAM
|
|
76
77
|
#
|
77
78
|
# @!attribute [rw] service_name
|
78
79
|
# The name of the AWS service with which this access key was most
|
79
|
-
# recently used.
|
80
|
+
# recently used. The value of this field is "N/A" in the following
|
80
81
|
# situations:
|
81
82
|
#
|
82
83
|
# * The user does not have an access key.
|
83
84
|
#
|
84
|
-
# * An access key exists but has
|
85
|
-
#
|
85
|
+
# * An access key exists but has not been used since IAM started
|
86
|
+
# tracking this information.
|
86
87
|
#
|
87
88
|
# * There is no sign-in data associated with the user
|
88
89
|
# @return [String]
|
89
90
|
#
|
90
91
|
# @!attribute [rw] region
|
91
|
-
# The AWS region where this access key was most recently used.
|
92
|
-
# field is
|
92
|
+
# The AWS region where this access key was most recently used. The
|
93
|
+
# value for this field is "N/A" in the following situations:
|
93
94
|
#
|
94
95
|
# * The user does not have an access key.
|
95
96
|
#
|
96
|
-
# * An access key exists but has
|
97
|
-
#
|
97
|
+
# * An access key exists but has not been used since IAM began
|
98
|
+
# tracking this information.
|
98
99
|
#
|
99
100
|
# * There is no sign-in data associated with the user
|
100
101
|
#
|
@@ -129,8 +130,8 @@ module Aws::IAM
|
|
129
130
|
# @return [String]
|
130
131
|
#
|
131
132
|
# @!attribute [rw] status
|
132
|
-
# The status of the access key. `Active` means the key is valid
|
133
|
-
# API calls; `Inactive` means it is not.
|
133
|
+
# The status of the access key. `Active` means that the key is valid
|
134
|
+
# for API calls; `Inactive` means it is not.
|
134
135
|
# @return [String]
|
135
136
|
#
|
136
137
|
# @!attribute [rw] create_date
|
@@ -186,7 +187,7 @@ module Aws::IAM
|
|
186
187
|
# @!attribute [rw] instance_profile_name
|
187
188
|
# The name of the instance profile to update.
|
188
189
|
#
|
189
|
-
# This parameter allows (
|
190
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
190
191
|
# characters consisting of upper and lowercase alphanumeric characters
|
191
192
|
# with no spaces. You can also include any of the following
|
192
193
|
# characters: \_+=,.@-
|
@@ -199,7 +200,7 @@ module Aws::IAM
|
|
199
200
|
# @!attribute [rw] role_name
|
200
201
|
# The name of the role to add.
|
201
202
|
#
|
202
|
-
# This parameter allows (
|
203
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
203
204
|
# characters consisting of upper and lowercase alphanumeric characters
|
204
205
|
# with no spaces. You can also include any of the following
|
205
206
|
# characters: \_+=,.@-
|
@@ -228,7 +229,7 @@ module Aws::IAM
|
|
228
229
|
# @!attribute [rw] group_name
|
229
230
|
# The name of the group to update.
|
230
231
|
#
|
231
|
-
# This parameter allows (
|
232
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
232
233
|
# characters consisting of upper and lowercase alphanumeric characters
|
233
234
|
# with no spaces. You can also include any of the following
|
234
235
|
# characters: \_+=,.@-
|
@@ -241,7 +242,7 @@ module Aws::IAM
|
|
241
242
|
# @!attribute [rw] user_name
|
242
243
|
# The name of the user to add.
|
243
244
|
#
|
244
|
-
# This parameter allows (
|
245
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
245
246
|
# characters consisting of upper and lowercase alphanumeric characters
|
246
247
|
# with no spaces. You can also include any of the following
|
247
248
|
# characters: \_+=,.@-
|
@@ -271,7 +272,7 @@ module Aws::IAM
|
|
271
272
|
# The name (friendly name, not ARN) of the group to attach the policy
|
272
273
|
# to.
|
273
274
|
#
|
274
|
-
# This parameter allows (
|
275
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
275
276
|
# characters consisting of upper and lowercase alphanumeric characters
|
276
277
|
# with no spaces. You can also include any of the following
|
277
278
|
# characters: \_+=,.@-
|
@@ -312,7 +313,7 @@ module Aws::IAM
|
|
312
313
|
# The name (friendly name, not ARN) of the role to attach the policy
|
313
314
|
# to.
|
314
315
|
#
|
315
|
-
# This parameter allows (
|
316
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
316
317
|
# characters consisting of upper and lowercase alphanumeric characters
|
317
318
|
# with no spaces. You can also include any of the following
|
318
319
|
# characters: \_+=,.@-
|
@@ -353,7 +354,7 @@ module Aws::IAM
|
|
353
354
|
# The name (friendly name, not ARN) of the IAM user to attach the
|
354
355
|
# policy to.
|
355
356
|
#
|
356
|
-
# This parameter allows (
|
357
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
357
358
|
# characters consisting of upper and lowercase alphanumeric characters
|
358
359
|
# with no spaces. You can also include any of the following
|
359
360
|
# characters: \_+=,.@-
|
@@ -392,7 +393,7 @@ module Aws::IAM
|
|
392
393
|
#
|
393
394
|
#
|
394
395
|
#
|
395
|
-
# [1]:
|
396
|
+
# [1]: http://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_boundaries.html
|
396
397
|
#
|
397
398
|
# @!attribute [rw] permissions_boundary_type
|
398
399
|
# The permissions boundary usage type that indicates what type of IAM
|
@@ -544,7 +545,7 @@ module Aws::IAM
|
|
544
545
|
# @!attribute [rw] user_name
|
545
546
|
# The name of the IAM user that the new key will belong to.
|
546
547
|
#
|
547
|
-
# This parameter allows (
|
548
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
548
549
|
# characters consisting of upper and lowercase alphanumeric characters
|
549
550
|
# with no spaces. You can also include any of the following
|
550
551
|
# characters: \_+=,.@-
|
@@ -584,7 +585,7 @@ module Aws::IAM
|
|
584
585
|
# @!attribute [rw] account_alias
|
585
586
|
# The account alias to create.
|
586
587
|
#
|
587
|
-
# This parameter allows (
|
588
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
588
589
|
# characters consisting of lowercase letters, digits, and dashes. You
|
589
590
|
# cannot start or finish with a dash, nor can you have two dashes in a
|
590
591
|
# row.
|
@@ -616,7 +617,7 @@ module Aws::IAM
|
|
616
617
|
# This parameter is optional. If it is not included, it defaults to a
|
617
618
|
# slash (/).
|
618
619
|
#
|
619
|
-
# This parameter allows (
|
620
|
+
# This parameter allows (through its [regex pattern][2]) a string of
|
620
621
|
# characters consisting of either a forward slash (/) by itself or a
|
621
622
|
# string that must begin and end with forward slashes. In addition, it
|
622
623
|
# can contain any ASCII character from the ! (\\u0021) through the DEL
|
@@ -633,7 +634,7 @@ module Aws::IAM
|
|
633
634
|
# The name of the group to create. Do not include the path in this
|
634
635
|
# value.
|
635
636
|
#
|
636
|
-
# This parameter allows (
|
637
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
637
638
|
# characters consisting of upper and lowercase alphanumeric characters
|
638
639
|
# with no spaces. You can also include any of the following
|
639
640
|
# characters: \_+=,.@-. The group name must be unique within the
|
@@ -677,7 +678,7 @@ module Aws::IAM
|
|
677
678
|
# @!attribute [rw] instance_profile_name
|
678
679
|
# The name of the instance profile to create.
|
679
680
|
#
|
680
|
-
# This parameter allows (
|
681
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
681
682
|
# characters consisting of upper and lowercase alphanumeric characters
|
682
683
|
# with no spaces. You can also include any of the following
|
683
684
|
# characters: \_+=,.@-
|
@@ -694,7 +695,7 @@ module Aws::IAM
|
|
694
695
|
# This parameter is optional. If it is not included, it defaults to a
|
695
696
|
# slash (/).
|
696
697
|
#
|
697
|
-
# This parameter allows (
|
698
|
+
# This parameter allows (through its [regex pattern][2]) a string of
|
698
699
|
# characters consisting of either a forward slash (/) by itself or a
|
699
700
|
# string that must begin and end with forward slashes. In addition, it
|
700
701
|
# can contain any ASCII character from the ! (\\u0021) through the DEL
|
@@ -741,7 +742,7 @@ module Aws::IAM
|
|
741
742
|
# The name of the IAM user to create a password for. The user must
|
742
743
|
# already exist.
|
743
744
|
#
|
744
|
-
# This parameter allows (
|
745
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
745
746
|
# characters consisting of upper and lowercase alphanumeric characters
|
746
747
|
# with no spaces. You can also include any of the following
|
747
748
|
# characters: \_+=,.@-
|
@@ -901,7 +902,7 @@ module Aws::IAM
|
|
901
902
|
# @!attribute [rw] policy_name
|
902
903
|
# The friendly name of the policy.
|
903
904
|
#
|
904
|
-
# This parameter allows (
|
905
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
905
906
|
# characters consisting of upper and lowercase alphanumeric characters
|
906
907
|
# with no spaces. You can also include any of the following
|
907
908
|
# characters: \_+=,.@-
|
@@ -920,7 +921,7 @@ module Aws::IAM
|
|
920
921
|
# This parameter is optional. If it is not included, it defaults to a
|
921
922
|
# slash (/).
|
922
923
|
#
|
923
|
-
# This parameter allows (
|
924
|
+
# This parameter allows (through its [regex pattern][2]) a string of
|
924
925
|
# characters consisting of either a forward slash (/) by itself or a
|
925
926
|
# string that must begin and end with forward slashes. In addition, it
|
926
927
|
# can contain any ASCII character from the ! (\\u0021) through the DEL
|
@@ -1076,14 +1077,14 @@ module Aws::IAM
|
|
1076
1077
|
# role_name: "roleNameType", # required
|
1077
1078
|
# assume_role_policy_document: "policyDocumentType", # required
|
1078
1079
|
# description: "roleDescriptionType",
|
1080
|
+
# max_session_duration: 1,
|
1081
|
+
# permissions_boundary: "arnType",
|
1079
1082
|
# tags: [
|
1080
1083
|
# {
|
1081
1084
|
# key: "tagKeyType", # required
|
1082
1085
|
# value: "tagValueType", # required
|
1083
1086
|
# },
|
1084
1087
|
# ],
|
1085
|
-
# max_session_duration: 1,
|
1086
|
-
# permissions_boundary: "arnType",
|
1087
1088
|
# }
|
1088
1089
|
#
|
1089
1090
|
# @!attribute [rw] path
|
@@ -1093,7 +1094,7 @@ module Aws::IAM
|
|
1093
1094
|
# This parameter is optional. If it is not included, it defaults to a
|
1094
1095
|
# slash (/).
|
1095
1096
|
#
|
1096
|
-
# This parameter allows (
|
1097
|
+
# This parameter allows (through its [regex pattern][2]) a string of
|
1097
1098
|
# characters consisting of either a forward slash (/) by itself or a
|
1098
1099
|
# string that must begin and end with forward slashes. In addition, it
|
1099
1100
|
# can contain any ASCII character from the ! (\\u0021) through the DEL
|
@@ -1109,7 +1110,7 @@ module Aws::IAM
|
|
1109
1110
|
# @!attribute [rw] role_name
|
1110
1111
|
# The name of the role to create.
|
1111
1112
|
#
|
1112
|
-
# This parameter allows (
|
1113
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
1113
1114
|
# characters consisting of upper and lowercase alphanumeric characters
|
1114
1115
|
# with no spaces. You can also include any of the following
|
1115
1116
|
# characters: \_+=,.@-
|
@@ -1147,23 +1148,6 @@ module Aws::IAM
|
|
1147
1148
|
# A description of the role.
|
1148
1149
|
# @return [String]
|
1149
1150
|
#
|
1150
|
-
# @!attribute [rw] tags
|
1151
|
-
# A list of tags that you want to attach to the newly created role.
|
1152
|
-
# Each tag consists of a key name and an associated value. For more
|
1153
|
-
# information about tagging, see [Tagging IAM Identities][1] in the
|
1154
|
-
# *IAM User Guide*.
|
1155
|
-
#
|
1156
|
-
# <note markdown="1"> If any one of the tags is invalid or if you exceed the allowed
|
1157
|
-
# number of tags per role, then the entire request fails and the role
|
1158
|
-
# is not created.
|
1159
|
-
#
|
1160
|
-
# </note>
|
1161
|
-
#
|
1162
|
-
#
|
1163
|
-
#
|
1164
|
-
# [1]: http://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html
|
1165
|
-
# @return [Array<Types::Tag>]
|
1166
|
-
#
|
1167
1151
|
# @!attribute [rw] max_session_duration
|
1168
1152
|
# The maximum session duration (in seconds) that you want to set for
|
1169
1153
|
# the specified role. If you do not specify a value for this setting,
|
@@ -1192,6 +1176,23 @@ module Aws::IAM
|
|
1192
1176
|
# for the role.
|
1193
1177
|
# @return [String]
|
1194
1178
|
#
|
1179
|
+
# @!attribute [rw] tags
|
1180
|
+
# A list of tags that you want to attach to the newly created role.
|
1181
|
+
# Each tag consists of a key name and an associated value. For more
|
1182
|
+
# information about tagging, see [Tagging IAM Identities][1] in the
|
1183
|
+
# *IAM User Guide*.
|
1184
|
+
#
|
1185
|
+
# <note markdown="1"> If any one of the tags is invalid or if you exceed the allowed
|
1186
|
+
# number of tags per role, then the entire request fails and the role
|
1187
|
+
# is not created.
|
1188
|
+
#
|
1189
|
+
# </note>
|
1190
|
+
#
|
1191
|
+
#
|
1192
|
+
#
|
1193
|
+
# [1]: http://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html
|
1194
|
+
# @return [Array<Types::Tag>]
|
1195
|
+
#
|
1195
1196
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/CreateRoleRequest AWS API Documentation
|
1196
1197
|
#
|
1197
1198
|
class CreateRoleRequest < Struct.new(
|
@@ -1199,9 +1200,9 @@ module Aws::IAM
|
|
1199
1200
|
:role_name,
|
1200
1201
|
:assume_role_policy_document,
|
1201
1202
|
:description,
|
1202
|
-
:tags,
|
1203
1203
|
:max_session_duration,
|
1204
|
-
:permissions_boundary
|
1204
|
+
:permissions_boundary,
|
1205
|
+
:tags)
|
1205
1206
|
include Aws::Structure
|
1206
1207
|
end
|
1207
1208
|
|
@@ -1245,7 +1246,7 @@ module Aws::IAM
|
|
1245
1246
|
# @!attribute [rw] name
|
1246
1247
|
# The name of the provider to create.
|
1247
1248
|
#
|
1248
|
-
# This parameter allows (
|
1249
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
1249
1250
|
# characters consisting of upper and lowercase alphanumeric characters
|
1250
1251
|
# with no spaces. You can also include any of the following
|
1251
1252
|
# characters: \_+=,.@-
|
@@ -1354,7 +1355,7 @@ module Aws::IAM
|
|
1354
1355
|
# permissions as the associated user except that they can be used only
|
1355
1356
|
# to access the specified service.
|
1356
1357
|
#
|
1357
|
-
# This parameter allows (
|
1358
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
1358
1359
|
# characters consisting of upper and lowercase alphanumeric characters
|
1359
1360
|
# with no spaces. You can also include any of the following
|
1360
1361
|
# characters: \_+=,.@-
|
@@ -1400,13 +1401,13 @@ module Aws::IAM
|
|
1400
1401
|
# {
|
1401
1402
|
# path: "pathType",
|
1402
1403
|
# user_name: "userNameType", # required
|
1404
|
+
# permissions_boundary: "arnType",
|
1403
1405
|
# tags: [
|
1404
1406
|
# {
|
1405
1407
|
# key: "tagKeyType", # required
|
1406
1408
|
# value: "tagValueType", # required
|
1407
1409
|
# },
|
1408
1410
|
# ],
|
1409
|
-
# permissions_boundary: "arnType",
|
1410
1411
|
# }
|
1411
1412
|
#
|
1412
1413
|
# @!attribute [rw] path
|
@@ -1416,7 +1417,7 @@ module Aws::IAM
|
|
1416
1417
|
# This parameter is optional. If it is not included, it defaults to a
|
1417
1418
|
# slash (/).
|
1418
1419
|
#
|
1419
|
-
# This parameter allows (
|
1420
|
+
# This parameter allows (through its [regex pattern][2]) a string of
|
1420
1421
|
# characters consisting of either a forward slash (/) by itself or a
|
1421
1422
|
# string that must begin and end with forward slashes. In addition, it
|
1422
1423
|
# can contain any ASCII character from the ! (\\u0021) through the DEL
|
@@ -1432,7 +1433,7 @@ module Aws::IAM
|
|
1432
1433
|
# @!attribute [rw] user_name
|
1433
1434
|
# The name of the user to create.
|
1434
1435
|
#
|
1435
|
-
# This parameter allows (
|
1436
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
1436
1437
|
# characters consisting of upper and lowercase alphanumeric characters
|
1437
1438
|
# with no spaces. You can also include any of the following
|
1438
1439
|
# characters: \_+=,.@-. User names are not distinguished by case. For
|
@@ -1444,6 +1445,11 @@ module Aws::IAM
|
|
1444
1445
|
# [1]: http://wikipedia.org/wiki/regex
|
1445
1446
|
# @return [String]
|
1446
1447
|
#
|
1448
|
+
# @!attribute [rw] permissions_boundary
|
1449
|
+
# The ARN of the policy that is used to set the permissions boundary
|
1450
|
+
# for the user.
|
1451
|
+
# @return [String]
|
1452
|
+
#
|
1447
1453
|
# @!attribute [rw] tags
|
1448
1454
|
# A list of tags that you want to attach to the newly created user.
|
1449
1455
|
# Each tag consists of a key name and an associated value. For more
|
@@ -1461,18 +1467,13 @@ module Aws::IAM
|
|
1461
1467
|
# [1]: http://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html
|
1462
1468
|
# @return [Array<Types::Tag>]
|
1463
1469
|
#
|
1464
|
-
# @!attribute [rw] permissions_boundary
|
1465
|
-
# The ARN of the policy that is used to set the permissions boundary
|
1466
|
-
# for the user.
|
1467
|
-
# @return [String]
|
1468
|
-
#
|
1469
1470
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/CreateUserRequest AWS API Documentation
|
1470
1471
|
#
|
1471
1472
|
class CreateUserRequest < Struct.new(
|
1472
1473
|
:path,
|
1473
1474
|
:user_name,
|
1474
|
-
:
|
1475
|
-
:
|
1475
|
+
:permissions_boundary,
|
1476
|
+
:tags)
|
1476
1477
|
include Aws::Structure
|
1477
1478
|
end
|
1478
1479
|
|
@@ -1504,7 +1505,7 @@ module Aws::IAM
|
|
1504
1505
|
# This parameter is optional. If it is not included, it defaults to a
|
1505
1506
|
# slash (/).
|
1506
1507
|
#
|
1507
|
-
# This parameter allows (
|
1508
|
+
# This parameter allows (through its [regex pattern][2]) a string of
|
1508
1509
|
# characters consisting of either a forward slash (/) by itself or a
|
1509
1510
|
# string that must begin and end with forward slashes. In addition, it
|
1510
1511
|
# can contain any ASCII character from the ! (\\u0021) through the DEL
|
@@ -1521,7 +1522,7 @@ module Aws::IAM
|
|
1521
1522
|
# The name of the virtual MFA device. Use with path to uniquely
|
1522
1523
|
# identify a virtual MFA device.
|
1523
1524
|
#
|
1524
|
-
# This parameter allows (
|
1525
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
1525
1526
|
# characters consisting of upper and lowercase alphanumeric characters
|
1526
1527
|
# with no spaces. You can also include any of the following
|
1527
1528
|
# characters: \_+=,.@-
|
@@ -1563,7 +1564,7 @@ module Aws::IAM
|
|
1563
1564
|
# @!attribute [rw] user_name
|
1564
1565
|
# The name of the user whose MFA device you want to deactivate.
|
1565
1566
|
#
|
1566
|
-
# This parameter allows (
|
1567
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
1567
1568
|
# characters consisting of upper and lowercase alphanumeric characters
|
1568
1569
|
# with no spaces. You can also include any of the following
|
1569
1570
|
# characters: \_+=,.@-
|
@@ -1577,7 +1578,7 @@ module Aws::IAM
|
|
1577
1578
|
# The serial number that uniquely identifies the MFA device. For
|
1578
1579
|
# virtual MFA devices, the serial number is the device ARN.
|
1579
1580
|
#
|
1580
|
-
# This parameter allows (
|
1581
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
1581
1582
|
# characters consisting of upper and lowercase alphanumeric characters
|
1582
1583
|
# with no spaces. You can also include any of the following
|
1583
1584
|
# characters: =,.@:/-
|
@@ -1606,7 +1607,7 @@ module Aws::IAM
|
|
1606
1607
|
# @!attribute [rw] user_name
|
1607
1608
|
# The name of the user whose access key pair you want to delete.
|
1608
1609
|
#
|
1609
|
-
# This parameter allows (
|
1610
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
1610
1611
|
# characters consisting of upper and lowercase alphanumeric characters
|
1611
1612
|
# with no spaces. You can also include any of the following
|
1612
1613
|
# characters: \_+=,.@-
|
@@ -1620,7 +1621,7 @@ module Aws::IAM
|
|
1620
1621
|
# The access key ID for the access key ID and secret access key you
|
1621
1622
|
# want to delete.
|
1622
1623
|
#
|
1623
|
-
# This parameter allows (
|
1624
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
1624
1625
|
# characters that can consist of any upper or lowercased letter or
|
1625
1626
|
# digit.
|
1626
1627
|
#
|
@@ -1647,7 +1648,7 @@ module Aws::IAM
|
|
1647
1648
|
# @!attribute [rw] account_alias
|
1648
1649
|
# The name of the account alias to delete.
|
1649
1650
|
#
|
1650
|
-
# This parameter allows (
|
1651
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
1651
1652
|
# characters consisting of lowercase letters, digits, and dashes. You
|
1652
1653
|
# cannot start or finish with a dash, nor can you have two dashes in a
|
1653
1654
|
# row.
|
@@ -1676,7 +1677,7 @@ module Aws::IAM
|
|
1676
1677
|
# The name (friendly name, not ARN) identifying the group that the
|
1677
1678
|
# policy is embedded in.
|
1678
1679
|
#
|
1679
|
-
# This parameter allows (
|
1680
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
1680
1681
|
# characters consisting of upper and lowercase alphanumeric characters
|
1681
1682
|
# with no spaces. You can also include any of the following
|
1682
1683
|
# characters: \_+=,.@-
|
@@ -1689,7 +1690,7 @@ module Aws::IAM
|
|
1689
1690
|
# @!attribute [rw] policy_name
|
1690
1691
|
# The name identifying the policy document to delete.
|
1691
1692
|
#
|
1692
|
-
# This parameter allows (
|
1693
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
1693
1694
|
# characters consisting of upper and lowercase alphanumeric characters
|
1694
1695
|
# with no spaces. You can also include any of the following
|
1695
1696
|
# characters: \_+=,.@-
|
@@ -1717,7 +1718,7 @@ module Aws::IAM
|
|
1717
1718
|
# @!attribute [rw] group_name
|
1718
1719
|
# The name of the IAM group to delete.
|
1719
1720
|
#
|
1720
|
-
# This parameter allows (
|
1721
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
1721
1722
|
# characters consisting of upper and lowercase alphanumeric characters
|
1722
1723
|
# with no spaces. You can also include any of the following
|
1723
1724
|
# characters: \_+=,.@-
|
@@ -1744,7 +1745,7 @@ module Aws::IAM
|
|
1744
1745
|
# @!attribute [rw] instance_profile_name
|
1745
1746
|
# The name of the instance profile to delete.
|
1746
1747
|
#
|
1747
|
-
# This parameter allows (
|
1748
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
1748
1749
|
# characters consisting of upper and lowercase alphanumeric characters
|
1749
1750
|
# with no spaces. You can also include any of the following
|
1750
1751
|
# characters: \_+=,.@-
|
@@ -1771,7 +1772,7 @@ module Aws::IAM
|
|
1771
1772
|
# @!attribute [rw] user_name
|
1772
1773
|
# The name of the user whose password you want to delete.
|
1773
1774
|
#
|
1774
|
-
# This parameter allows (
|
1775
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
1775
1776
|
# characters consisting of upper and lowercase alphanumeric characters
|
1776
1777
|
# with no spaces. You can also include any of the following
|
1777
1778
|
# characters: \_+=,.@-
|
@@ -1857,7 +1858,7 @@ module Aws::IAM
|
|
1857
1858
|
# @!attribute [rw] version_id
|
1858
1859
|
# The policy version to delete.
|
1859
1860
|
#
|
1860
|
-
# This parameter allows (
|
1861
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
1861
1862
|
# characters that consists of the lowercase letter 'v' followed by
|
1862
1863
|
# one or two digits, and optionally followed by a period '.' and a
|
1863
1864
|
# string of letters and digits.
|
@@ -1910,7 +1911,7 @@ module Aws::IAM
|
|
1910
1911
|
# The name (friendly name, not ARN) identifying the role that the
|
1911
1912
|
# policy is embedded in.
|
1912
1913
|
#
|
1913
|
-
# This parameter allows (
|
1914
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
1914
1915
|
# characters consisting of upper and lowercase alphanumeric characters
|
1915
1916
|
# with no spaces. You can also include any of the following
|
1916
1917
|
# characters: \_+=,.@-
|
@@ -1923,7 +1924,7 @@ module Aws::IAM
|
|
1923
1924
|
# @!attribute [rw] policy_name
|
1924
1925
|
# The name of the inline policy to delete from the specified IAM role.
|
1925
1926
|
#
|
1926
|
-
# This parameter allows (
|
1927
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
1927
1928
|
# characters consisting of upper and lowercase alphanumeric characters
|
1928
1929
|
# with no spaces. You can also include any of the following
|
1929
1930
|
# characters: \_+=,.@-
|
@@ -1951,7 +1952,7 @@ module Aws::IAM
|
|
1951
1952
|
# @!attribute [rw] role_name
|
1952
1953
|
# The name of the role to delete.
|
1953
1954
|
#
|
1954
|
-
# This parameter allows (
|
1955
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
1955
1956
|
# characters consisting of upper and lowercase alphanumeric characters
|
1956
1957
|
# with no spaces. You can also include any of the following
|
1957
1958
|
# characters: \_+=,.@-
|
@@ -1997,7 +1998,7 @@ module Aws::IAM
|
|
1997
1998
|
# @!attribute [rw] user_name
|
1998
1999
|
# The name of the IAM user associated with the SSH public key.
|
1999
2000
|
#
|
2000
|
-
# This parameter allows (
|
2001
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
2001
2002
|
# characters consisting of upper and lowercase alphanumeric characters
|
2002
2003
|
# with no spaces. You can also include any of the following
|
2003
2004
|
# characters: \_+=,.@-
|
@@ -2010,7 +2011,7 @@ module Aws::IAM
|
|
2010
2011
|
# @!attribute [rw] ssh_public_key_id
|
2011
2012
|
# The unique identifier for the SSH public key.
|
2012
2013
|
#
|
2013
|
-
# This parameter allows (
|
2014
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
2014
2015
|
# characters that can consist of any upper or lowercased letter or
|
2015
2016
|
# digit.
|
2016
2017
|
#
|
@@ -2037,7 +2038,7 @@ module Aws::IAM
|
|
2037
2038
|
# @!attribute [rw] server_certificate_name
|
2038
2039
|
# The name of the server certificate you want to delete.
|
2039
2040
|
#
|
2040
|
-
# This parameter allows (
|
2041
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
2041
2042
|
# characters consisting of upper and lowercase alphanumeric characters
|
2042
2043
|
# with no spaces. You can also include any of the following
|
2043
2044
|
# characters: \_+=,.@-
|
@@ -2098,7 +2099,7 @@ module Aws::IAM
|
|
2098
2099
|
# credential. If this value is not specified, then the operation
|
2099
2100
|
# assumes the user whose credentials are used to call the operation.
|
2100
2101
|
#
|
2101
|
-
# This parameter allows (
|
2102
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
2102
2103
|
# characters consisting of upper and lowercase alphanumeric characters
|
2103
2104
|
# with no spaces. You can also include any of the following
|
2104
2105
|
# characters: \_+=,.@-
|
@@ -2112,7 +2113,7 @@ module Aws::IAM
|
|
2112
2113
|
# The unique identifier of the service-specific credential. You can
|
2113
2114
|
# get this value by calling ListServiceSpecificCredentials.
|
2114
2115
|
#
|
2115
|
-
# This parameter allows (
|
2116
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
2116
2117
|
# characters that can consist of any upper or lowercased letter or
|
2117
2118
|
# digit.
|
2118
2119
|
#
|
@@ -2140,7 +2141,7 @@ module Aws::IAM
|
|
2140
2141
|
# @!attribute [rw] user_name
|
2141
2142
|
# The name of the user the signing certificate belongs to.
|
2142
2143
|
#
|
2143
|
-
# This parameter allows (
|
2144
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
2144
2145
|
# characters consisting of upper and lowercase alphanumeric characters
|
2145
2146
|
# with no spaces. You can also include any of the following
|
2146
2147
|
# characters: \_+=,.@-
|
@@ -2201,7 +2202,7 @@ module Aws::IAM
|
|
2201
2202
|
# The name (friendly name, not ARN) identifying the user that the
|
2202
2203
|
# policy is embedded in.
|
2203
2204
|
#
|
2204
|
-
# This parameter allows (
|
2205
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
2205
2206
|
# characters consisting of upper and lowercase alphanumeric characters
|
2206
2207
|
# with no spaces. You can also include any of the following
|
2207
2208
|
# characters: \_+=,.@-
|
@@ -2214,7 +2215,7 @@ module Aws::IAM
|
|
2214
2215
|
# @!attribute [rw] policy_name
|
2215
2216
|
# The name identifying the policy document to delete.
|
2216
2217
|
#
|
2217
|
-
# This parameter allows (
|
2218
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
2218
2219
|
# characters consisting of upper and lowercase alphanumeric characters
|
2219
2220
|
# with no spaces. You can also include any of the following
|
2220
2221
|
# characters: \_+=,.@-
|
@@ -2242,7 +2243,7 @@ module Aws::IAM
|
|
2242
2243
|
# @!attribute [rw] user_name
|
2243
2244
|
# The name of the user to delete.
|
2244
2245
|
#
|
2245
|
-
# This parameter allows (
|
2246
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
2246
2247
|
# characters consisting of upper and lowercase alphanumeric characters
|
2247
2248
|
# with no spaces. You can also include any of the following
|
2248
2249
|
# characters: \_+=,.@-
|
@@ -2270,7 +2271,7 @@ module Aws::IAM
|
|
2270
2271
|
# The serial number that uniquely identifies the MFA device. For
|
2271
2272
|
# virtual MFA devices, the serial number is the same as the ARN.
|
2272
2273
|
#
|
2273
|
-
# This parameter allows (
|
2274
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
2274
2275
|
# characters consisting of upper and lowercase alphanumeric characters
|
2275
2276
|
# with no spaces. You can also include any of the following
|
2276
2277
|
# characters: =,.@:/-
|
@@ -2327,7 +2328,7 @@ module Aws::IAM
|
|
2327
2328
|
# The name (friendly name, not ARN) of the IAM group to detach the
|
2328
2329
|
# policy from.
|
2329
2330
|
#
|
2330
|
-
# This parameter allows (
|
2331
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
2331
2332
|
# characters consisting of upper and lowercase alphanumeric characters
|
2332
2333
|
# with no spaces. You can also include any of the following
|
2333
2334
|
# characters: \_+=,.@-
|
@@ -2368,7 +2369,7 @@ module Aws::IAM
|
|
2368
2369
|
# The name (friendly name, not ARN) of the IAM role to detach the
|
2369
2370
|
# policy from.
|
2370
2371
|
#
|
2371
|
-
# This parameter allows (
|
2372
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
2372
2373
|
# characters consisting of upper and lowercase alphanumeric characters
|
2373
2374
|
# with no spaces. You can also include any of the following
|
2374
2375
|
# characters: \_+=,.@-
|
@@ -2409,7 +2410,7 @@ module Aws::IAM
|
|
2409
2410
|
# The name (friendly name, not ARN) of the IAM user to detach the
|
2410
2411
|
# policy from.
|
2411
2412
|
#
|
2412
|
-
# This parameter allows (
|
2413
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
2413
2414
|
# characters consisting of upper and lowercase alphanumeric characters
|
2414
2415
|
# with no spaces. You can also include any of the following
|
2415
2416
|
# characters: \_+=,.@-
|
@@ -2451,7 +2452,7 @@ module Aws::IAM
|
|
2451
2452
|
# @!attribute [rw] user_name
|
2452
2453
|
# The name of the IAM user for whom you want to enable the MFA device.
|
2453
2454
|
#
|
2454
|
-
# This parameter allows (
|
2455
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
2455
2456
|
# characters consisting of upper and lowercase alphanumeric characters
|
2456
2457
|
# with no spaces. You can also include any of the following
|
2457
2458
|
# characters: \_+=,.@-
|
@@ -2465,7 +2466,7 @@ module Aws::IAM
|
|
2465
2466
|
# The serial number that uniquely identifies the MFA device. For
|
2466
2467
|
# virtual MFA devices, the serial number is the device ARN.
|
2467
2468
|
#
|
2468
|
-
# This parameter allows (
|
2469
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
2469
2470
|
# characters consisting of upper and lowercase alphanumeric characters
|
2470
2471
|
# with no spaces. You can also include any of the following
|
2471
2472
|
# characters: =,.@:/-
|
@@ -2519,6 +2520,110 @@ module Aws::IAM
|
|
2519
2520
|
include Aws::Structure
|
2520
2521
|
end
|
2521
2522
|
|
2523
|
+
# An object that contains details about when the IAM entities (users or
|
2524
|
+
# roles) were last used in an attempt to access the specified AWS
|
2525
|
+
# service.
|
2526
|
+
#
|
2527
|
+
# This data type is a response element in the
|
2528
|
+
# GetServiceLastAccessedDetailsWithEntities operation.
|
2529
|
+
#
|
2530
|
+
# @!attribute [rw] entity_info
|
2531
|
+
# The `EntityInfo` object that contains details about the entity (user
|
2532
|
+
# or role).
|
2533
|
+
# @return [Types::EntityInfo]
|
2534
|
+
#
|
2535
|
+
# @!attribute [rw] last_authenticated
|
2536
|
+
# The date and time, in [ISO 8601 date-time format][1], when the
|
2537
|
+
# authenticated entity last attempted to access AWS. AWS does not
|
2538
|
+
# report unauthenticated requests.
|
2539
|
+
#
|
2540
|
+
# This field is null if no IAM entities attempted to access the
|
2541
|
+
# service within the [reporting period][2].
|
2542
|
+
#
|
2543
|
+
#
|
2544
|
+
#
|
2545
|
+
# [1]: http://www.iso.org/iso/iso8601
|
2546
|
+
# [2]: http://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_access-advisor.html#service-last-accessed-reporting-period
|
2547
|
+
# @return [Time]
|
2548
|
+
#
|
2549
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/EntityDetails AWS API Documentation
|
2550
|
+
#
|
2551
|
+
class EntityDetails < Struct.new(
|
2552
|
+
:entity_info,
|
2553
|
+
:last_authenticated)
|
2554
|
+
include Aws::Structure
|
2555
|
+
end
|
2556
|
+
|
2557
|
+
# Contains details about the specified entity (user or role).
|
2558
|
+
#
|
2559
|
+
# This data type is an element of the EntityDetails object.
|
2560
|
+
#
|
2561
|
+
# @!attribute [rw] arn
|
2562
|
+
# The Amazon Resource Name (ARN). ARNs are unique identifiers for AWS
|
2563
|
+
# resources.
|
2564
|
+
#
|
2565
|
+
# For more information about ARNs, go to [Amazon Resource Names (ARNs)
|
2566
|
+
# and AWS Service Namespaces][1] in the *AWS General Reference*.
|
2567
|
+
#
|
2568
|
+
#
|
2569
|
+
#
|
2570
|
+
# [1]: http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
2571
|
+
# @return [String]
|
2572
|
+
#
|
2573
|
+
# @!attribute [rw] name
|
2574
|
+
# The name of the entity (user or role).
|
2575
|
+
# @return [String]
|
2576
|
+
#
|
2577
|
+
# @!attribute [rw] type
|
2578
|
+
# The type of entity (user or role).
|
2579
|
+
# @return [String]
|
2580
|
+
#
|
2581
|
+
# @!attribute [rw] id
|
2582
|
+
# The identifier of the entity (user or role).
|
2583
|
+
# @return [String]
|
2584
|
+
#
|
2585
|
+
# @!attribute [rw] path
|
2586
|
+
# The path to the entity (user or role). For more information about
|
2587
|
+
# paths, see [IAM Identifiers][1] in the *Using IAM* guide.
|
2588
|
+
#
|
2589
|
+
#
|
2590
|
+
#
|
2591
|
+
# [1]: http://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html
|
2592
|
+
# @return [String]
|
2593
|
+
#
|
2594
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/EntityInfo AWS API Documentation
|
2595
|
+
#
|
2596
|
+
class EntityInfo < Struct.new(
|
2597
|
+
:arn,
|
2598
|
+
:name,
|
2599
|
+
:type,
|
2600
|
+
:id,
|
2601
|
+
:path)
|
2602
|
+
include Aws::Structure
|
2603
|
+
end
|
2604
|
+
|
2605
|
+
# Contains information about the reason that the operation failed.
|
2606
|
+
#
|
2607
|
+
# This data type is used as a response element in the
|
2608
|
+
# GetServiceLastAccessedDetails operation and the
|
2609
|
+
# GetServiceLastAccessedDetailsWithEntities operation.
|
2610
|
+
#
|
2611
|
+
# @!attribute [rw] message
|
2612
|
+
# Detailed information about the reason that the operation failed.
|
2613
|
+
# @return [String]
|
2614
|
+
#
|
2615
|
+
# @!attribute [rw] code
|
2616
|
+
# The error code associated with the operation failure.
|
2617
|
+
# @return [String]
|
2618
|
+
#
|
2619
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ErrorDetails AWS API Documentation
|
2620
|
+
#
|
2621
|
+
class ErrorDetails < Struct.new(
|
2622
|
+
:message,
|
2623
|
+
:code)
|
2624
|
+
include Aws::Structure
|
2625
|
+
end
|
2626
|
+
|
2522
2627
|
# Contains the results of a simulation.
|
2523
2628
|
#
|
2524
2629
|
# This data type is used by the return parameter of `
|
@@ -2541,8 +2646,9 @@ module Aws::IAM
|
|
2541
2646
|
# A list of the statements in the input policies that determine the
|
2542
2647
|
# result for this scenario. Remember that even if multiple statements
|
2543
2648
|
# allow the operation on the resource, if only one statement denies
|
2544
|
-
# that operation, then the explicit deny overrides any allow
|
2545
|
-
# deny statement is the only entry included in the
|
2649
|
+
# that operation, then the explicit deny overrides any allow.
|
2650
|
+
# Inaddition, the deny statement is the only entry included in the
|
2651
|
+
# result.
|
2546
2652
|
# @return [Array<Types::Statement>]
|
2547
2653
|
#
|
2548
2654
|
# @!attribute [rw] missing_context_values
|
@@ -2614,6 +2720,38 @@ module Aws::IAM
|
|
2614
2720
|
include Aws::Structure
|
2615
2721
|
end
|
2616
2722
|
|
2723
|
+
# @note When making an API call, you may pass GenerateServiceLastAccessedDetailsRequest
|
2724
|
+
# data as a hash:
|
2725
|
+
#
|
2726
|
+
# {
|
2727
|
+
# arn: "arnType", # required
|
2728
|
+
# }
|
2729
|
+
#
|
2730
|
+
# @!attribute [rw] arn
|
2731
|
+
# The ARN of the IAM resource (user, group, role, or managed policy)
|
2732
|
+
# used to generate information about when the resource was last used
|
2733
|
+
# in an attempt to access an AWS service.
|
2734
|
+
# @return [String]
|
2735
|
+
#
|
2736
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GenerateServiceLastAccessedDetailsRequest AWS API Documentation
|
2737
|
+
#
|
2738
|
+
class GenerateServiceLastAccessedDetailsRequest < Struct.new(
|
2739
|
+
:arn)
|
2740
|
+
include Aws::Structure
|
2741
|
+
end
|
2742
|
+
|
2743
|
+
# @!attribute [rw] job_id
|
2744
|
+
# The job ID that you can use in the GetServiceLastAccessedDetails or
|
2745
|
+
# GetServiceLastAccessedDetailsWithEntities operations.
|
2746
|
+
# @return [String]
|
2747
|
+
#
|
2748
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GenerateServiceLastAccessedDetailsResponse AWS API Documentation
|
2749
|
+
#
|
2750
|
+
class GenerateServiceLastAccessedDetailsResponse < Struct.new(
|
2751
|
+
:job_id)
|
2752
|
+
include Aws::Structure
|
2753
|
+
end
|
2754
|
+
|
2617
2755
|
# @note When making an API call, you may pass GetAccessKeyLastUsedRequest
|
2618
2756
|
# data as a hash:
|
2619
2757
|
#
|
@@ -2624,7 +2762,7 @@ module Aws::IAM
|
|
2624
2762
|
# @!attribute [rw] access_key_id
|
2625
2763
|
# The identifier of an access key.
|
2626
2764
|
#
|
2627
|
-
# This parameter allows (
|
2765
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
2628
2766
|
# characters that can consist of any upper or lowercased letter or
|
2629
2767
|
# digit.
|
2630
2768
|
#
|
@@ -2680,16 +2818,16 @@ module Aws::IAM
|
|
2680
2818
|
# @return [Array<String>]
|
2681
2819
|
#
|
2682
2820
|
# @!attribute [rw] max_items
|
2683
|
-
#
|
2684
|
-
#
|
2685
|
-
#
|
2686
|
-
#
|
2687
|
-
#
|
2688
|
-
# If you do not include this parameter,
|
2689
|
-
# IAM might return fewer results, even when there
|
2690
|
-
# available. In that case, the `IsTruncated` response
|
2691
|
-
# `true
|
2692
|
-
# call that tells the service where to continue from.
|
2821
|
+
# Use this only when paginating results to indicate the maximum number
|
2822
|
+
# of items you want in the response. If additional items exist beyond
|
2823
|
+
# the maximum you specify, the `IsTruncated` response element is
|
2824
|
+
# `true`.
|
2825
|
+
#
|
2826
|
+
# If you do not include this parameter, the number of items defaults
|
2827
|
+
# to 100. Note that IAM might return fewer results, even when there
|
2828
|
+
# are more results available. In that case, the `IsTruncated` response
|
2829
|
+
# element returns `true`, and `Marker` contains a value to include in
|
2830
|
+
# the subsequent call that tells the service where to continue from.
|
2693
2831
|
# @return [Integer]
|
2694
2832
|
#
|
2695
2833
|
# @!attribute [rw] marker
|
@@ -2734,7 +2872,7 @@ module Aws::IAM
|
|
2734
2872
|
# Note that IAM might return fewer than the `MaxItems` number of
|
2735
2873
|
# results even when there are more results available. We recommend
|
2736
2874
|
# that you check `IsTruncated` after every call to ensure that you
|
2737
|
-
# receive all
|
2875
|
+
# receive all your results.
|
2738
2876
|
# @return [Boolean]
|
2739
2877
|
#
|
2740
2878
|
# @!attribute [rw] marker
|
@@ -2773,7 +2911,7 @@ module Aws::IAM
|
|
2773
2911
|
# Contains the response to a successful GetAccountSummary request.
|
2774
2912
|
#
|
2775
2913
|
# @!attribute [rw] summary_map
|
2776
|
-
# A set of key
|
2914
|
+
# A set of key–value pairs containing information about IAM entity
|
2777
2915
|
# usage and IAM quotas.
|
2778
2916
|
# @return [Hash<String,Integer>]
|
2779
2917
|
#
|
@@ -2929,7 +3067,7 @@ module Aws::IAM
|
|
2929
3067
|
# @!attribute [rw] group_name
|
2930
3068
|
# The name of the group the policy is associated with.
|
2931
3069
|
#
|
2932
|
-
# This parameter allows (
|
3070
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
2933
3071
|
# characters consisting of upper and lowercase alphanumeric characters
|
2934
3072
|
# with no spaces. You can also include any of the following
|
2935
3073
|
# characters: \_+=,.@-
|
@@ -2942,7 +3080,7 @@ module Aws::IAM
|
|
2942
3080
|
# @!attribute [rw] policy_name
|
2943
3081
|
# The name of the policy document to get.
|
2944
3082
|
#
|
2945
|
-
# This parameter allows (
|
3083
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
2946
3084
|
# characters consisting of upper and lowercase alphanumeric characters
|
2947
3085
|
# with no spaces. You can also include any of the following
|
2948
3086
|
# characters: \_+=,.@-
|
@@ -2995,7 +3133,7 @@ module Aws::IAM
|
|
2995
3133
|
# @!attribute [rw] group_name
|
2996
3134
|
# The name of the group.
|
2997
3135
|
#
|
2998
|
-
# This parameter allows (
|
3136
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
2999
3137
|
# characters consisting of upper and lowercase alphanumeric characters
|
3000
3138
|
# with no spaces. You can also include any of the following
|
3001
3139
|
# characters: \_+=,.@-
|
@@ -3013,16 +3151,16 @@ module Aws::IAM
|
|
3013
3151
|
# @return [String]
|
3014
3152
|
#
|
3015
3153
|
# @!attribute [rw] max_items
|
3016
|
-
#
|
3017
|
-
#
|
3018
|
-
#
|
3019
|
-
#
|
3020
|
-
#
|
3021
|
-
# If you do not include this parameter,
|
3022
|
-
# IAM might return fewer results, even when there
|
3023
|
-
# available. In that case, the `IsTruncated` response
|
3024
|
-
# `true
|
3025
|
-
# call that tells the service where to continue from.
|
3154
|
+
# Use this only when paginating results to indicate the maximum number
|
3155
|
+
# of items you want in the response. If additional items exist beyond
|
3156
|
+
# the maximum you specify, the `IsTruncated` response element is
|
3157
|
+
# `true`.
|
3158
|
+
#
|
3159
|
+
# If you do not include this parameter, the number of items defaults
|
3160
|
+
# to 100. Note that IAM might return fewer results, even when there
|
3161
|
+
# are more results available. In that case, the `IsTruncated` response
|
3162
|
+
# element returns `true`, and `Marker` contains a value to include in
|
3163
|
+
# the subsequent call that tells the service where to continue from.
|
3026
3164
|
# @return [Integer]
|
3027
3165
|
#
|
3028
3166
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetGroupRequest AWS API Documentation
|
@@ -3051,7 +3189,7 @@ module Aws::IAM
|
|
3051
3189
|
# Note that IAM might return fewer than the `MaxItems` number of
|
3052
3190
|
# results even when there are more results available. We recommend
|
3053
3191
|
# that you check `IsTruncated` after every call to ensure that you
|
3054
|
-
# receive all
|
3192
|
+
# receive all your results.
|
3055
3193
|
# @return [Boolean]
|
3056
3194
|
#
|
3057
3195
|
# @!attribute [rw] marker
|
@@ -3080,7 +3218,7 @@ module Aws::IAM
|
|
3080
3218
|
# @!attribute [rw] instance_profile_name
|
3081
3219
|
# The name of the instance profile to get information about.
|
3082
3220
|
#
|
3083
|
-
# This parameter allows (
|
3221
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
3084
3222
|
# characters consisting of upper and lowercase alphanumeric characters
|
3085
3223
|
# with no spaces. You can also include any of the following
|
3086
3224
|
# characters: \_+=,.@-
|
@@ -3120,7 +3258,7 @@ module Aws::IAM
|
|
3120
3258
|
# @!attribute [rw] user_name
|
3121
3259
|
# The name of the user whose login profile you want to retrieve.
|
3122
3260
|
#
|
3123
|
-
# This parameter allows (
|
3261
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
3124
3262
|
# characters consisting of upper and lowercase alphanumeric characters
|
3125
3263
|
# with no spaces. You can also include any of the following
|
3126
3264
|
# characters: \_+=,.@-
|
@@ -3275,7 +3413,7 @@ module Aws::IAM
|
|
3275
3413
|
# @!attribute [rw] version_id
|
3276
3414
|
# Identifies the policy version to retrieve.
|
3277
3415
|
#
|
3278
|
-
# This parameter allows (
|
3416
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
3279
3417
|
# characters that consists of the lowercase letter 'v' followed by
|
3280
3418
|
# one or two digits, and optionally followed by a period '.' and a
|
3281
3419
|
# string of letters and digits.
|
@@ -3317,7 +3455,7 @@ module Aws::IAM
|
|
3317
3455
|
# @!attribute [rw] role_name
|
3318
3456
|
# The name of the role associated with the policy.
|
3319
3457
|
#
|
3320
|
-
# This parameter allows (
|
3458
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
3321
3459
|
# characters consisting of upper and lowercase alphanumeric characters
|
3322
3460
|
# with no spaces. You can also include any of the following
|
3323
3461
|
# characters: \_+=,.@-
|
@@ -3330,7 +3468,7 @@ module Aws::IAM
|
|
3330
3468
|
# @!attribute [rw] policy_name
|
3331
3469
|
# The name of the policy document to get.
|
3332
3470
|
#
|
3333
|
-
# This parameter allows (
|
3471
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
3334
3472
|
# characters consisting of upper and lowercase alphanumeric characters
|
3335
3473
|
# with no spaces. You can also include any of the following
|
3336
3474
|
# characters: \_+=,.@-
|
@@ -3381,7 +3519,7 @@ module Aws::IAM
|
|
3381
3519
|
# @!attribute [rw] role_name
|
3382
3520
|
# The name of the IAM role to get information about.
|
3383
3521
|
#
|
3384
|
-
# This parameter allows (
|
3522
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
3385
3523
|
# characters consisting of upper and lowercase alphanumeric characters
|
3386
3524
|
# with no spaces. You can also include any of the following
|
3387
3525
|
# characters: \_+=,.@-
|
@@ -3473,7 +3611,7 @@ module Aws::IAM
|
|
3473
3611
|
# @!attribute [rw] user_name
|
3474
3612
|
# The name of the IAM user associated with the SSH public key.
|
3475
3613
|
#
|
3476
|
-
# This parameter allows (
|
3614
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
3477
3615
|
# characters consisting of upper and lowercase alphanumeric characters
|
3478
3616
|
# with no spaces. You can also include any of the following
|
3479
3617
|
# characters: \_+=,.@-
|
@@ -3486,7 +3624,7 @@ module Aws::IAM
|
|
3486
3624
|
# @!attribute [rw] ssh_public_key_id
|
3487
3625
|
# The unique identifier for the SSH public key.
|
3488
3626
|
#
|
3489
|
-
# This parameter allows (
|
3627
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
3490
3628
|
# characters that can consist of any upper or lowercased letter or
|
3491
3629
|
# digit.
|
3492
3630
|
#
|
@@ -3534,7 +3672,7 @@ module Aws::IAM
|
|
3534
3672
|
# The name of the server certificate you want to retrieve information
|
3535
3673
|
# about.
|
3536
3674
|
#
|
3537
|
-
# This parameter allows (
|
3675
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
3538
3676
|
# characters consisting of upper and lowercase alphanumeric characters
|
3539
3677
|
# with no spaces. You can also include any of the following
|
3540
3678
|
# characters: \_+=,.@-
|
@@ -3564,6 +3702,239 @@ module Aws::IAM
|
|
3564
3702
|
include Aws::Structure
|
3565
3703
|
end
|
3566
3704
|
|
3705
|
+
# @note When making an API call, you may pass GetServiceLastAccessedDetailsRequest
|
3706
|
+
# data as a hash:
|
3707
|
+
#
|
3708
|
+
# {
|
3709
|
+
# job_id: "jobIDType", # required
|
3710
|
+
# max_items: 1,
|
3711
|
+
# marker: "markerType",
|
3712
|
+
# }
|
3713
|
+
#
|
3714
|
+
# @!attribute [rw] job_id
|
3715
|
+
# The ID of the request generated by the
|
3716
|
+
# GenerateServiceLastAccessedDetails operation.
|
3717
|
+
# @return [String]
|
3718
|
+
#
|
3719
|
+
# @!attribute [rw] max_items
|
3720
|
+
# Use this only when paginating results to indicate the maximum number
|
3721
|
+
# of items you want in the response. If additional items exist beyond
|
3722
|
+
# the maximum you specify, the `IsTruncated` response element is
|
3723
|
+
# `true`.
|
3724
|
+
#
|
3725
|
+
# If you do not include this parameter, the number of items defaults
|
3726
|
+
# to 100. Note that IAM might return fewer results, even when there
|
3727
|
+
# are more results available. In that case, the `IsTruncated` response
|
3728
|
+
# element returns `true`, and `Marker` contains a value to include in
|
3729
|
+
# the subsequent call that tells the service where to continue from.
|
3730
|
+
# @return [Integer]
|
3731
|
+
#
|
3732
|
+
# @!attribute [rw] marker
|
3733
|
+
# Use this parameter only when paginating results and only after you
|
3734
|
+
# receive a response indicating that the results are truncated. Set it
|
3735
|
+
# to the value of the `Marker` element in the response that you
|
3736
|
+
# received to indicate where the next call should start.
|
3737
|
+
# @return [String]
|
3738
|
+
#
|
3739
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetServiceLastAccessedDetailsRequest AWS API Documentation
|
3740
|
+
#
|
3741
|
+
class GetServiceLastAccessedDetailsRequest < Struct.new(
|
3742
|
+
:job_id,
|
3743
|
+
:max_items,
|
3744
|
+
:marker)
|
3745
|
+
include Aws::Structure
|
3746
|
+
end
|
3747
|
+
|
3748
|
+
# @!attribute [rw] job_status
|
3749
|
+
# The status of the job.
|
3750
|
+
# @return [String]
|
3751
|
+
#
|
3752
|
+
# @!attribute [rw] job_creation_date
|
3753
|
+
# The date and time, in [ISO 8601 date-time format][1], when the
|
3754
|
+
# report job was created.
|
3755
|
+
#
|
3756
|
+
#
|
3757
|
+
#
|
3758
|
+
# [1]: http://www.iso.org/iso/iso8601
|
3759
|
+
# @return [Time]
|
3760
|
+
#
|
3761
|
+
# @!attribute [rw] services_last_accessed
|
3762
|
+
# A `ServiceLastAccessed` object that contains details about the most
|
3763
|
+
# recent attempt to access the service.
|
3764
|
+
# @return [Array<Types::ServiceLastAccessed>]
|
3765
|
+
#
|
3766
|
+
# @!attribute [rw] job_completion_date
|
3767
|
+
# The date and time, in [ISO 8601 date-time format][1], when the
|
3768
|
+
# generated report job was completed or failed.
|
3769
|
+
#
|
3770
|
+
# This field is null if the job is still in progress, as indicated by
|
3771
|
+
# a `JobStatus` value of `IN_PROGRESS`.
|
3772
|
+
#
|
3773
|
+
#
|
3774
|
+
#
|
3775
|
+
# [1]: http://www.iso.org/iso/iso8601
|
3776
|
+
# @return [Time]
|
3777
|
+
#
|
3778
|
+
# @!attribute [rw] is_truncated
|
3779
|
+
# A flag that indicates whether there are more items to return. If
|
3780
|
+
# your results were truncated, you can make a subsequent pagination
|
3781
|
+
# request using the `Marker` request parameter to retrieve more items.
|
3782
|
+
# Note that IAM might return fewer than the `MaxItems` number of
|
3783
|
+
# results even when there are more results available. We recommend
|
3784
|
+
# that you check `IsTruncated` after every call to ensure that you
|
3785
|
+
# receive all your results.
|
3786
|
+
# @return [Boolean]
|
3787
|
+
#
|
3788
|
+
# @!attribute [rw] marker
|
3789
|
+
# When `IsTruncated` is `true`, this element is present and contains
|
3790
|
+
# the value to use for the `Marker` parameter in a subsequent
|
3791
|
+
# pagination request.
|
3792
|
+
# @return [String]
|
3793
|
+
#
|
3794
|
+
# @!attribute [rw] error
|
3795
|
+
# An object that contains details about the reason the operation
|
3796
|
+
# failed.
|
3797
|
+
# @return [Types::ErrorDetails]
|
3798
|
+
#
|
3799
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetServiceLastAccessedDetailsResponse AWS API Documentation
|
3800
|
+
#
|
3801
|
+
class GetServiceLastAccessedDetailsResponse < Struct.new(
|
3802
|
+
:job_status,
|
3803
|
+
:job_creation_date,
|
3804
|
+
:services_last_accessed,
|
3805
|
+
:job_completion_date,
|
3806
|
+
:is_truncated,
|
3807
|
+
:marker,
|
3808
|
+
:error)
|
3809
|
+
include Aws::Structure
|
3810
|
+
end
|
3811
|
+
|
3812
|
+
# @note When making an API call, you may pass GetServiceLastAccessedDetailsWithEntitiesRequest
|
3813
|
+
# data as a hash:
|
3814
|
+
#
|
3815
|
+
# {
|
3816
|
+
# job_id: "jobIDType", # required
|
3817
|
+
# service_namespace: "serviceNamespaceType", # required
|
3818
|
+
# max_items: 1,
|
3819
|
+
# marker: "markerType",
|
3820
|
+
# }
|
3821
|
+
#
|
3822
|
+
# @!attribute [rw] job_id
|
3823
|
+
# The ID of the request generated by the
|
3824
|
+
# `GenerateServiceLastAccessedDetails` operation.
|
3825
|
+
# @return [String]
|
3826
|
+
#
|
3827
|
+
# @!attribute [rw] service_namespace
|
3828
|
+
# The service namespace for an AWS service. Provide the service
|
3829
|
+
# namespace to learn when the IAM entity last attempted to access the
|
3830
|
+
# specified service.
|
3831
|
+
#
|
3832
|
+
# To learn the service namespace for a service, go to [Actions,
|
3833
|
+
# Resources, and Condition Keys for AWS Services][1] in the *IAM User
|
3834
|
+
# Guide* and choose the name of the service to view details for that
|
3835
|
+
# service. In the first paragraph, find the service prefix. For
|
3836
|
+
# example, `(service prefix: a4b)`. For more information about service
|
3837
|
+
# namespaces, see [AWS Service Namespaces][2] in the *AWS General
|
3838
|
+
# Reference*.
|
3839
|
+
#
|
3840
|
+
#
|
3841
|
+
#
|
3842
|
+
# [1]: http://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_actions-resources-contextkeys.html
|
3843
|
+
# [2]: http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#genref-aws-service-namespaces
|
3844
|
+
# @return [String]
|
3845
|
+
#
|
3846
|
+
# @!attribute [rw] max_items
|
3847
|
+
# Use this only when paginating results to indicate the maximum number
|
3848
|
+
# of items you want in the response. If additional items exist beyond
|
3849
|
+
# the maximum you specify, the `IsTruncated` response element is
|
3850
|
+
# `true`.
|
3851
|
+
#
|
3852
|
+
# If you do not include this parameter, the number of items defaults
|
3853
|
+
# to 100. Note that IAM might return fewer results, even when there
|
3854
|
+
# are more results available. In that case, the `IsTruncated` response
|
3855
|
+
# element returns `true`, and `Marker` contains a value to include in
|
3856
|
+
# the subsequent call that tells the service where to continue from.
|
3857
|
+
# @return [Integer]
|
3858
|
+
#
|
3859
|
+
# @!attribute [rw] marker
|
3860
|
+
# Use this parameter only when paginating results and only after you
|
3861
|
+
# receive a response indicating that the results are truncated. Set it
|
3862
|
+
# to the value of the `Marker` element in the response that you
|
3863
|
+
# received to indicate where the next call should start.
|
3864
|
+
# @return [String]
|
3865
|
+
#
|
3866
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetServiceLastAccessedDetailsWithEntitiesRequest AWS API Documentation
|
3867
|
+
#
|
3868
|
+
class GetServiceLastAccessedDetailsWithEntitiesRequest < Struct.new(
|
3869
|
+
:job_id,
|
3870
|
+
:service_namespace,
|
3871
|
+
:max_items,
|
3872
|
+
:marker)
|
3873
|
+
include Aws::Structure
|
3874
|
+
end
|
3875
|
+
|
3876
|
+
# @!attribute [rw] job_status
|
3877
|
+
# The status of the job.
|
3878
|
+
# @return [String]
|
3879
|
+
#
|
3880
|
+
# @!attribute [rw] job_creation_date
|
3881
|
+
# The date and time, in [ISO 8601 date-time format][1], when the
|
3882
|
+
# report job was created.
|
3883
|
+
#
|
3884
|
+
#
|
3885
|
+
#
|
3886
|
+
# [1]: http://www.iso.org/iso/iso8601
|
3887
|
+
# @return [Time]
|
3888
|
+
#
|
3889
|
+
# @!attribute [rw] job_completion_date
|
3890
|
+
# The date and time, in [ISO 8601 date-time format][1], when the
|
3891
|
+
# generated report job was completed or failed.
|
3892
|
+
#
|
3893
|
+
#
|
3894
|
+
#
|
3895
|
+
# [1]: http://www.iso.org/iso/iso8601
|
3896
|
+
# @return [Time]
|
3897
|
+
#
|
3898
|
+
# @!attribute [rw] entity_details_list
|
3899
|
+
# An `EntityDetailsList` object that contains details about when an
|
3900
|
+
# IAM entity (user or role) used group or policy permissions in an
|
3901
|
+
# attempt to access the specified AWS service.
|
3902
|
+
# @return [Array<Types::EntityDetails>]
|
3903
|
+
#
|
3904
|
+
# @!attribute [rw] is_truncated
|
3905
|
+
# A flag that indicates whether there are more items to return. If
|
3906
|
+
# your results were truncated, you can make a subsequent pagination
|
3907
|
+
# request using the `Marker` request parameter to retrieve more items.
|
3908
|
+
# Note that IAM might return fewer than the `MaxItems` number of
|
3909
|
+
# results even when there are more results available. We recommend
|
3910
|
+
# that you check `IsTruncated` after every call to ensure that you
|
3911
|
+
# receive all your results.
|
3912
|
+
# @return [Boolean]
|
3913
|
+
#
|
3914
|
+
# @!attribute [rw] marker
|
3915
|
+
# When `IsTruncated` is `true`, this element is present and contains
|
3916
|
+
# the value to use for the `Marker` parameter in a subsequent
|
3917
|
+
# pagination request.
|
3918
|
+
# @return [String]
|
3919
|
+
#
|
3920
|
+
# @!attribute [rw] error
|
3921
|
+
# An object that contains details about the reason the operation
|
3922
|
+
# failed.
|
3923
|
+
# @return [Types::ErrorDetails]
|
3924
|
+
#
|
3925
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetServiceLastAccessedDetailsWithEntitiesResponse AWS API Documentation
|
3926
|
+
#
|
3927
|
+
class GetServiceLastAccessedDetailsWithEntitiesResponse < Struct.new(
|
3928
|
+
:job_status,
|
3929
|
+
:job_creation_date,
|
3930
|
+
:job_completion_date,
|
3931
|
+
:entity_details_list,
|
3932
|
+
:is_truncated,
|
3933
|
+
:marker,
|
3934
|
+
:error)
|
3935
|
+
include Aws::Structure
|
3936
|
+
end
|
3937
|
+
|
3567
3938
|
# @note When making an API call, you may pass GetServiceLinkedRoleDeletionStatusRequest
|
3568
3939
|
# data as a hash:
|
3569
3940
|
#
|
@@ -3612,7 +3983,7 @@ module Aws::IAM
|
|
3612
3983
|
# @!attribute [rw] user_name
|
3613
3984
|
# The name of the user who the policy is associated with.
|
3614
3985
|
#
|
3615
|
-
# This parameter allows (
|
3986
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
3616
3987
|
# characters consisting of upper and lowercase alphanumeric characters
|
3617
3988
|
# with no spaces. You can also include any of the following
|
3618
3989
|
# characters: \_+=,.@-
|
@@ -3625,7 +3996,7 @@ module Aws::IAM
|
|
3625
3996
|
# @!attribute [rw] policy_name
|
3626
3997
|
# The name of the policy document to get.
|
3627
3998
|
#
|
3628
|
-
# This parameter allows (
|
3999
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
3629
4000
|
# characters consisting of upper and lowercase alphanumeric characters
|
3630
4001
|
# with no spaces. You can also include any of the following
|
3631
4002
|
# characters: \_+=,.@-
|
@@ -3677,8 +4048,8 @@ module Aws::IAM
|
|
3677
4048
|
# The name of the user to get information about.
|
3678
4049
|
#
|
3679
4050
|
# This parameter is optional. If it is not included, it defaults to
|
3680
|
-
# the user making the request. This parameter allows (
|
3681
|
-
# pattern][1]) a string of characters consisting of upper and
|
4051
|
+
# the user making the request. This parameter allows (through its
|
4052
|
+
# [regex pattern][1]) a string of characters consisting of upper and
|
3682
4053
|
# lowercase alphanumeric characters with no spaces. You can also
|
3683
4054
|
# include any of the following characters: \_+=,.@-
|
3684
4055
|
#
|
@@ -3700,22 +4071,22 @@ module Aws::IAM
|
|
3700
4071
|
# A structure containing details about the IAM user.
|
3701
4072
|
#
|
3702
4073
|
# Due to a service issue, password last used data does not include
|
3703
|
-
# password use from May
|
4074
|
+
# password use from May 3, 2018 22:50 PDT to May 23, 2018 14:08 PDT.
|
3704
4075
|
# This affects [last sign-in][1] dates shown in the IAM console and
|
3705
4076
|
# password last used dates in the [IAM credential report][2], and
|
3706
4077
|
# returned by this GetUser API. If users signed in during the affected
|
3707
4078
|
# time, the password last used date that is returned is the date the
|
3708
|
-
# user last signed in before May
|
3709
|
-
# after May
|
4079
|
+
# user last signed in before May 3, 2018. For users that signed in
|
4080
|
+
# after May 23, 2018 14:08 PDT, the returned password last used date
|
3710
4081
|
# is accurate.
|
3711
4082
|
#
|
3712
|
-
#
|
3713
|
-
# credentials for deletion,
|
3714
|
-
# to AWS in the last 90 days
|
3715
|
-
# evaluation window to include dates
|
3716
|
-
# Alternatively, if your users use access keys to
|
3717
|
-
# programmatically you can refer to access key last used
|
3718
|
-
# because it is accurate for all dates.
|
4083
|
+
# You can use password last used information to identify unused
|
4084
|
+
# credentials for deletion. For example, you might delete users who
|
4085
|
+
# did not sign in to AWS in the last 90 days. In cases like this, we
|
4086
|
+
# recommend that you adjust your evaluation window to include dates
|
4087
|
+
# after May 23, 2018. Alternatively, if your users use access keys to
|
4088
|
+
# access AWS programmatically you can refer to access key last used
|
4089
|
+
# information because it is accurate for all dates.
|
3719
4090
|
#
|
3720
4091
|
#
|
3721
4092
|
#
|
@@ -3943,7 +4314,7 @@ module Aws::IAM
|
|
3943
4314
|
# @!attribute [rw] user_name
|
3944
4315
|
# The name of the user.
|
3945
4316
|
#
|
3946
|
-
# This parameter allows (
|
4317
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
3947
4318
|
# characters consisting of upper and lowercase alphanumeric characters
|
3948
4319
|
# with no spaces. You can also include any of the following
|
3949
4320
|
# characters: \_+=,.@-
|
@@ -3961,16 +4332,16 @@ module Aws::IAM
|
|
3961
4332
|
# @return [String]
|
3962
4333
|
#
|
3963
4334
|
# @!attribute [rw] max_items
|
3964
|
-
#
|
3965
|
-
#
|
3966
|
-
#
|
3967
|
-
#
|
3968
|
-
#
|
3969
|
-
# If you do not include this parameter,
|
3970
|
-
# IAM might return fewer results, even when there
|
3971
|
-
# available. In that case, the `IsTruncated` response
|
3972
|
-
# `true
|
3973
|
-
# call that tells the service where to continue from.
|
4335
|
+
# Use this only when paginating results to indicate the maximum number
|
4336
|
+
# of items you want in the response. If additional items exist beyond
|
4337
|
+
# the maximum you specify, the `IsTruncated` response element is
|
4338
|
+
# `true`.
|
4339
|
+
#
|
4340
|
+
# If you do not include this parameter, the number of items defaults
|
4341
|
+
# to 100. Note that IAM might return fewer results, even when there
|
4342
|
+
# are more results available. In that case, the `IsTruncated` response
|
4343
|
+
# element returns `true`, and `Marker` contains a value to include in
|
4344
|
+
# the subsequent call that tells the service where to continue from.
|
3974
4345
|
# @return [Integer]
|
3975
4346
|
#
|
3976
4347
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListAccessKeysRequest AWS API Documentation
|
@@ -3995,7 +4366,7 @@ module Aws::IAM
|
|
3995
4366
|
# Note that IAM might return fewer than the `MaxItems` number of
|
3996
4367
|
# results even when there are more results available. We recommend
|
3997
4368
|
# that you check `IsTruncated` after every call to ensure that you
|
3998
|
-
# receive all
|
4369
|
+
# receive all your results.
|
3999
4370
|
# @return [Boolean]
|
4000
4371
|
#
|
4001
4372
|
# @!attribute [rw] marker
|
@@ -4029,16 +4400,16 @@ module Aws::IAM
|
|
4029
4400
|
# @return [String]
|
4030
4401
|
#
|
4031
4402
|
# @!attribute [rw] max_items
|
4032
|
-
#
|
4033
|
-
#
|
4034
|
-
#
|
4035
|
-
#
|
4036
|
-
#
|
4037
|
-
# If you do not include this parameter,
|
4038
|
-
# IAM might return fewer results, even when there
|
4039
|
-
# available. In that case, the `IsTruncated` response
|
4040
|
-
# `true
|
4041
|
-
# call that tells the service where to continue from.
|
4403
|
+
# Use this only when paginating results to indicate the maximum number
|
4404
|
+
# of items you want in the response. If additional items exist beyond
|
4405
|
+
# the maximum you specify, the `IsTruncated` response element is
|
4406
|
+
# `true`.
|
4407
|
+
#
|
4408
|
+
# If you do not include this parameter, the number of items defaults
|
4409
|
+
# to 100. Note that IAM might return fewer results, even when there
|
4410
|
+
# are more results available. In that case, the `IsTruncated` response
|
4411
|
+
# element returns `true`, and `Marker` contains a value to include in
|
4412
|
+
# the subsequent call that tells the service where to continue from.
|
4042
4413
|
# @return [Integer]
|
4043
4414
|
#
|
4044
4415
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListAccountAliasesRequest AWS API Documentation
|
@@ -4063,7 +4434,7 @@ module Aws::IAM
|
|
4063
4434
|
# Note that IAM might return fewer than the `MaxItems` number of
|
4064
4435
|
# results even when there are more results available. We recommend
|
4065
4436
|
# that you check `IsTruncated` after every call to ensure that you
|
4066
|
-
# receive all
|
4437
|
+
# receive all your results.
|
4067
4438
|
# @return [Boolean]
|
4068
4439
|
#
|
4069
4440
|
# @!attribute [rw] marker
|
@@ -4095,7 +4466,7 @@ module Aws::IAM
|
|
4095
4466
|
# The name (friendly name, not ARN) of the group to list attached
|
4096
4467
|
# policies for.
|
4097
4468
|
#
|
4098
|
-
# This parameter allows (
|
4469
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
4099
4470
|
# characters consisting of upper and lowercase alphanumeric characters
|
4100
4471
|
# with no spaces. You can also include any of the following
|
4101
4472
|
# characters: \_+=,.@-
|
@@ -4110,7 +4481,7 @@ module Aws::IAM
|
|
4110
4481
|
# optional. If it is not included, it defaults to a slash (/), listing
|
4111
4482
|
# all policies.
|
4112
4483
|
#
|
4113
|
-
# This parameter allows (
|
4484
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
4114
4485
|
# characters consisting of either a forward slash (/) by itself or a
|
4115
4486
|
# string that must begin and end with forward slashes. In addition, it
|
4116
4487
|
# can contain any ASCII character from the ! (\\u0021) through the DEL
|
@@ -4130,16 +4501,16 @@ module Aws::IAM
|
|
4130
4501
|
# @return [String]
|
4131
4502
|
#
|
4132
4503
|
# @!attribute [rw] max_items
|
4133
|
-
#
|
4134
|
-
#
|
4135
|
-
#
|
4136
|
-
#
|
4137
|
-
#
|
4138
|
-
# If you do not include this parameter,
|
4139
|
-
# IAM might return fewer results, even when there
|
4140
|
-
# available. In that case, the `IsTruncated` response
|
4141
|
-
# `true
|
4142
|
-
# call that tells the service where to continue from.
|
4504
|
+
# Use this only when paginating results to indicate the maximum number
|
4505
|
+
# of items you want in the response. If additional items exist beyond
|
4506
|
+
# the maximum you specify, the `IsTruncated` response element is
|
4507
|
+
# `true`.
|
4508
|
+
#
|
4509
|
+
# If you do not include this parameter, the number of items defaults
|
4510
|
+
# to 100. Note that IAM might return fewer results, even when there
|
4511
|
+
# are more results available. In that case, the `IsTruncated` response
|
4512
|
+
# element returns `true`, and `Marker` contains a value to include in
|
4513
|
+
# the subsequent call that tells the service where to continue from.
|
4143
4514
|
# @return [Integer]
|
4144
4515
|
#
|
4145
4516
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListAttachedGroupPoliciesRequest AWS API Documentation
|
@@ -4166,7 +4537,7 @@ module Aws::IAM
|
|
4166
4537
|
# Note that IAM might return fewer than the `MaxItems` number of
|
4167
4538
|
# results even when there are more results available. We recommend
|
4168
4539
|
# that you check `IsTruncated` after every call to ensure that you
|
4169
|
-
# receive all
|
4540
|
+
# receive all your results.
|
4170
4541
|
# @return [Boolean]
|
4171
4542
|
#
|
4172
4543
|
# @!attribute [rw] marker
|
@@ -4198,7 +4569,7 @@ module Aws::IAM
|
|
4198
4569
|
# The name (friendly name, not ARN) of the role to list attached
|
4199
4570
|
# policies for.
|
4200
4571
|
#
|
4201
|
-
# This parameter allows (
|
4572
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
4202
4573
|
# characters consisting of upper and lowercase alphanumeric characters
|
4203
4574
|
# with no spaces. You can also include any of the following
|
4204
4575
|
# characters: \_+=,.@-
|
@@ -4213,7 +4584,7 @@ module Aws::IAM
|
|
4213
4584
|
# optional. If it is not included, it defaults to a slash (/), listing
|
4214
4585
|
# all policies.
|
4215
4586
|
#
|
4216
|
-
# This parameter allows (
|
4587
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
4217
4588
|
# characters consisting of either a forward slash (/) by itself or a
|
4218
4589
|
# string that must begin and end with forward slashes. In addition, it
|
4219
4590
|
# can contain any ASCII character from the ! (\\u0021) through the DEL
|
@@ -4233,16 +4604,16 @@ module Aws::IAM
|
|
4233
4604
|
# @return [String]
|
4234
4605
|
#
|
4235
4606
|
# @!attribute [rw] max_items
|
4236
|
-
#
|
4237
|
-
#
|
4238
|
-
#
|
4239
|
-
#
|
4240
|
-
#
|
4241
|
-
# If you do not include this parameter,
|
4242
|
-
# IAM might return fewer results, even when there
|
4243
|
-
# available. In that case, the `IsTruncated` response
|
4244
|
-
# `true
|
4245
|
-
# call that tells the service where to continue from.
|
4607
|
+
# Use this only when paginating results to indicate the maximum number
|
4608
|
+
# of items you want in the response. If additional items exist beyond
|
4609
|
+
# the maximum you specify, the `IsTruncated` response element is
|
4610
|
+
# `true`.
|
4611
|
+
#
|
4612
|
+
# If you do not include this parameter, the number of items defaults
|
4613
|
+
# to 100. Note that IAM might return fewer results, even when there
|
4614
|
+
# are more results available. In that case, the `IsTruncated` response
|
4615
|
+
# element returns `true`, and `Marker` contains a value to include in
|
4616
|
+
# the subsequent call that tells the service where to continue from.
|
4246
4617
|
# @return [Integer]
|
4247
4618
|
#
|
4248
4619
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListAttachedRolePoliciesRequest AWS API Documentation
|
@@ -4269,7 +4640,7 @@ module Aws::IAM
|
|
4269
4640
|
# Note that IAM might return fewer than the `MaxItems` number of
|
4270
4641
|
# results even when there are more results available. We recommend
|
4271
4642
|
# that you check `IsTruncated` after every call to ensure that you
|
4272
|
-
# receive all
|
4643
|
+
# receive all your results.
|
4273
4644
|
# @return [Boolean]
|
4274
4645
|
#
|
4275
4646
|
# @!attribute [rw] marker
|
@@ -4301,7 +4672,7 @@ module Aws::IAM
|
|
4301
4672
|
# The name (friendly name, not ARN) of the user to list attached
|
4302
4673
|
# policies for.
|
4303
4674
|
#
|
4304
|
-
# This parameter allows (
|
4675
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
4305
4676
|
# characters consisting of upper and lowercase alphanumeric characters
|
4306
4677
|
# with no spaces. You can also include any of the following
|
4307
4678
|
# characters: \_+=,.@-
|
@@ -4316,7 +4687,7 @@ module Aws::IAM
|
|
4316
4687
|
# optional. If it is not included, it defaults to a slash (/), listing
|
4317
4688
|
# all policies.
|
4318
4689
|
#
|
4319
|
-
# This parameter allows (
|
4690
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
4320
4691
|
# characters consisting of either a forward slash (/) by itself or a
|
4321
4692
|
# string that must begin and end with forward slashes. In addition, it
|
4322
4693
|
# can contain any ASCII character from the ! (\\u0021) through the DEL
|
@@ -4336,16 +4707,16 @@ module Aws::IAM
|
|
4336
4707
|
# @return [String]
|
4337
4708
|
#
|
4338
4709
|
# @!attribute [rw] max_items
|
4339
|
-
#
|
4340
|
-
#
|
4341
|
-
#
|
4342
|
-
#
|
4343
|
-
#
|
4344
|
-
# If you do not include this parameter,
|
4345
|
-
# IAM might return fewer results, even when there
|
4346
|
-
# available. In that case, the `IsTruncated` response
|
4347
|
-
# `true
|
4348
|
-
# call that tells the service where to continue from.
|
4710
|
+
# Use this only when paginating results to indicate the maximum number
|
4711
|
+
# of items you want in the response. If additional items exist beyond
|
4712
|
+
# the maximum you specify, the `IsTruncated` response element is
|
4713
|
+
# `true`.
|
4714
|
+
#
|
4715
|
+
# If you do not include this parameter, the number of items defaults
|
4716
|
+
# to 100. Note that IAM might return fewer results, even when there
|
4717
|
+
# are more results available. In that case, the `IsTruncated` response
|
4718
|
+
# element returns `true`, and `Marker` contains a value to include in
|
4719
|
+
# the subsequent call that tells the service where to continue from.
|
4349
4720
|
# @return [Integer]
|
4350
4721
|
#
|
4351
4722
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListAttachedUserPoliciesRequest AWS API Documentation
|
@@ -4372,7 +4743,7 @@ module Aws::IAM
|
|
4372
4743
|
# Note that IAM might return fewer than the `MaxItems` number of
|
4373
4744
|
# results even when there are more results available. We recommend
|
4374
4745
|
# that you check `IsTruncated` after every call to ensure that you
|
4375
|
-
# receive all
|
4746
|
+
# receive all your results.
|
4376
4747
|
# @return [Boolean]
|
4377
4748
|
#
|
4378
4749
|
# @!attribute [rw] marker
|
@@ -4429,7 +4800,7 @@ module Aws::IAM
|
|
4429
4800
|
# optional. If it is not included, it defaults to a slash (/), listing
|
4430
4801
|
# all entities.
|
4431
4802
|
#
|
4432
|
-
# This parameter allows (
|
4803
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
4433
4804
|
# characters consisting of either a forward slash (/) by itself or a
|
4434
4805
|
# string that must begin and end with forward slashes. In addition, it
|
4435
4806
|
# can contain any ASCII character from the ! (\\u0021) through the DEL
|
@@ -4461,16 +4832,16 @@ module Aws::IAM
|
|
4461
4832
|
# @return [String]
|
4462
4833
|
#
|
4463
4834
|
# @!attribute [rw] max_items
|
4464
|
-
#
|
4465
|
-
#
|
4466
|
-
#
|
4467
|
-
#
|
4468
|
-
#
|
4469
|
-
# If you do not include this parameter,
|
4470
|
-
# IAM might return fewer results, even when there
|
4471
|
-
# available. In that case, the `IsTruncated` response
|
4472
|
-
# `true
|
4473
|
-
# call that tells the service where to continue from.
|
4835
|
+
# Use this only when paginating results to indicate the maximum number
|
4836
|
+
# of items you want in the response. If additional items exist beyond
|
4837
|
+
# the maximum you specify, the `IsTruncated` response element is
|
4838
|
+
# `true`.
|
4839
|
+
#
|
4840
|
+
# If you do not include this parameter, the number of items defaults
|
4841
|
+
# to 100. Note that IAM might return fewer results, even when there
|
4842
|
+
# are more results available. In that case, the `IsTruncated` response
|
4843
|
+
# element returns `true`, and `Marker` contains a value to include in
|
4844
|
+
# the subsequent call that tells the service where to continue from.
|
4474
4845
|
# @return [Integer]
|
4475
4846
|
#
|
4476
4847
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListEntitiesForPolicyRequest AWS API Documentation
|
@@ -4506,7 +4877,7 @@ module Aws::IAM
|
|
4506
4877
|
# Note that IAM might return fewer than the `MaxItems` number of
|
4507
4878
|
# results even when there are more results available. We recommend
|
4508
4879
|
# that you check `IsTruncated` after every call to ensure that you
|
4509
|
-
# receive all
|
4880
|
+
# receive all your results.
|
4510
4881
|
# @return [Boolean]
|
4511
4882
|
#
|
4512
4883
|
# @!attribute [rw] marker
|
@@ -4538,7 +4909,7 @@ module Aws::IAM
|
|
4538
4909
|
# @!attribute [rw] group_name
|
4539
4910
|
# The name of the group to list policies for.
|
4540
4911
|
#
|
4541
|
-
# This parameter allows (
|
4912
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
4542
4913
|
# characters consisting of upper and lowercase alphanumeric characters
|
4543
4914
|
# with no spaces. You can also include any of the following
|
4544
4915
|
# characters: \_+=,.@-
|
@@ -4556,16 +4927,16 @@ module Aws::IAM
|
|
4556
4927
|
# @return [String]
|
4557
4928
|
#
|
4558
4929
|
# @!attribute [rw] max_items
|
4559
|
-
#
|
4560
|
-
#
|
4561
|
-
#
|
4562
|
-
#
|
4563
|
-
#
|
4564
|
-
# If you do not include this parameter,
|
4565
|
-
# IAM might return fewer results, even when there
|
4566
|
-
# available. In that case, the `IsTruncated` response
|
4567
|
-
# `true
|
4568
|
-
# call that tells the service where to continue from.
|
4930
|
+
# Use this only when paginating results to indicate the maximum number
|
4931
|
+
# of items you want in the response. If additional items exist beyond
|
4932
|
+
# the maximum you specify, the `IsTruncated` response element is
|
4933
|
+
# `true`.
|
4934
|
+
#
|
4935
|
+
# If you do not include this parameter, the number of items defaults
|
4936
|
+
# to 100. Note that IAM might return fewer results, even when there
|
4937
|
+
# are more results available. In that case, the `IsTruncated` response
|
4938
|
+
# element returns `true`, and `Marker` contains a value to include in
|
4939
|
+
# the subsequent call that tells the service where to continue from.
|
4569
4940
|
# @return [Integer]
|
4570
4941
|
#
|
4571
4942
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListGroupPoliciesRequest AWS API Documentation
|
@@ -4582,7 +4953,7 @@ module Aws::IAM
|
|
4582
4953
|
# @!attribute [rw] policy_names
|
4583
4954
|
# A list of policy names.
|
4584
4955
|
#
|
4585
|
-
# This parameter allows (
|
4956
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
4586
4957
|
# characters consisting of upper and lowercase alphanumeric characters
|
4587
4958
|
# with no spaces. You can also include any of the following
|
4588
4959
|
# characters: \_+=,.@-
|
@@ -4599,7 +4970,7 @@ module Aws::IAM
|
|
4599
4970
|
# Note that IAM might return fewer than the `MaxItems` number of
|
4600
4971
|
# results even when there are more results available. We recommend
|
4601
4972
|
# that you check `IsTruncated` after every call to ensure that you
|
4602
|
-
# receive all
|
4973
|
+
# receive all your results.
|
4603
4974
|
# @return [Boolean]
|
4604
4975
|
#
|
4605
4976
|
# @!attribute [rw] marker
|
@@ -4629,7 +5000,7 @@ module Aws::IAM
|
|
4629
5000
|
# @!attribute [rw] user_name
|
4630
5001
|
# The name of the user to list groups for.
|
4631
5002
|
#
|
4632
|
-
# This parameter allows (
|
5003
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
4633
5004
|
# characters consisting of upper and lowercase alphanumeric characters
|
4634
5005
|
# with no spaces. You can also include any of the following
|
4635
5006
|
# characters: \_+=,.@-
|
@@ -4647,16 +5018,16 @@ module Aws::IAM
|
|
4647
5018
|
# @return [String]
|
4648
5019
|
#
|
4649
5020
|
# @!attribute [rw] max_items
|
4650
|
-
#
|
4651
|
-
#
|
4652
|
-
#
|
4653
|
-
#
|
4654
|
-
#
|
4655
|
-
# If you do not include this parameter,
|
4656
|
-
# IAM might return fewer results, even when there
|
4657
|
-
# available. In that case, the `IsTruncated` response
|
4658
|
-
# `true
|
4659
|
-
# call that tells the service where to continue from.
|
5021
|
+
# Use this only when paginating results to indicate the maximum number
|
5022
|
+
# of items you want in the response. If additional items exist beyond
|
5023
|
+
# the maximum you specify, the `IsTruncated` response element is
|
5024
|
+
# `true`.
|
5025
|
+
#
|
5026
|
+
# If you do not include this parameter, the number of items defaults
|
5027
|
+
# to 100. Note that IAM might return fewer results, even when there
|
5028
|
+
# are more results available. In that case, the `IsTruncated` response
|
5029
|
+
# element returns `true`, and `Marker` contains a value to include in
|
5030
|
+
# the subsequent call that tells the service where to continue from.
|
4660
5031
|
# @return [Integer]
|
4661
5032
|
#
|
4662
5033
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListGroupsForUserRequest AWS API Documentation
|
@@ -4681,7 +5052,7 @@ module Aws::IAM
|
|
4681
5052
|
# Note that IAM might return fewer than the `MaxItems` number of
|
4682
5053
|
# results even when there are more results available. We recommend
|
4683
5054
|
# that you check `IsTruncated` after every call to ensure that you
|
4684
|
-
# receive all
|
5055
|
+
# receive all your results.
|
4685
5056
|
# @return [Boolean]
|
4686
5057
|
#
|
4687
5058
|
# @!attribute [rw] marker
|
@@ -4714,12 +5085,13 @@ module Aws::IAM
|
|
4714
5085
|
# with `/division_abc/subdivision_xyz/`.
|
4715
5086
|
#
|
4716
5087
|
# This parameter is optional. If it is not included, it defaults to a
|
4717
|
-
# slash (/), listing all groups. This parameter allows (
|
4718
|
-
# pattern][1]) a string of characters consisting of either a
|
4719
|
-
# slash (/) by itself or a string that must begin and end with
|
4720
|
-
# slashes. In addition, it can contain any ASCII character
|
4721
|
-
# (\\u0021) through the DEL character (\\u007F), including
|
4722
|
-
# punctuation characters, digits, and upper and lowercased
|
5088
|
+
# slash (/), listing all groups. This parameter allows (through its
|
5089
|
+
# [regex pattern][1]) a string of characters consisting of either a
|
5090
|
+
# forward slash (/) by itself or a string that must begin and end with
|
5091
|
+
# forward slashes. In addition, it can contain any ASCII character
|
5092
|
+
# from the ! (\\u0021) through the DEL character (\\u007F), including
|
5093
|
+
# most punctuation characters, digits, and upper and lowercased
|
5094
|
+
# letters.
|
4723
5095
|
#
|
4724
5096
|
#
|
4725
5097
|
#
|
@@ -4734,16 +5106,16 @@ module Aws::IAM
|
|
4734
5106
|
# @return [String]
|
4735
5107
|
#
|
4736
5108
|
# @!attribute [rw] max_items
|
4737
|
-
#
|
4738
|
-
#
|
4739
|
-
#
|
4740
|
-
#
|
4741
|
-
#
|
4742
|
-
# If you do not include this parameter,
|
4743
|
-
# IAM might return fewer results, even when there
|
4744
|
-
# available. In that case, the `IsTruncated` response
|
4745
|
-
# `true
|
4746
|
-
# call that tells the service where to continue from.
|
5109
|
+
# Use this only when paginating results to indicate the maximum number
|
5110
|
+
# of items you want in the response. If additional items exist beyond
|
5111
|
+
# the maximum you specify, the `IsTruncated` response element is
|
5112
|
+
# `true`.
|
5113
|
+
#
|
5114
|
+
# If you do not include this parameter, the number of items defaults
|
5115
|
+
# to 100. Note that IAM might return fewer results, even when there
|
5116
|
+
# are more results available. In that case, the `IsTruncated` response
|
5117
|
+
# element returns `true`, and `Marker` contains a value to include in
|
5118
|
+
# the subsequent call that tells the service where to continue from.
|
4747
5119
|
# @return [Integer]
|
4748
5120
|
#
|
4749
5121
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListGroupsRequest AWS API Documentation
|
@@ -4768,7 +5140,7 @@ module Aws::IAM
|
|
4768
5140
|
# Note that IAM might return fewer than the `MaxItems` number of
|
4769
5141
|
# results even when there are more results available. We recommend
|
4770
5142
|
# that you check `IsTruncated` after every call to ensure that you
|
4771
|
-
# receive all
|
5143
|
+
# receive all your results.
|
4772
5144
|
# @return [Boolean]
|
4773
5145
|
#
|
4774
5146
|
# @!attribute [rw] marker
|
@@ -4798,7 +5170,7 @@ module Aws::IAM
|
|
4798
5170
|
# @!attribute [rw] role_name
|
4799
5171
|
# The name of the role to list instance profiles for.
|
4800
5172
|
#
|
4801
|
-
# This parameter allows (
|
5173
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
4802
5174
|
# characters consisting of upper and lowercase alphanumeric characters
|
4803
5175
|
# with no spaces. You can also include any of the following
|
4804
5176
|
# characters: \_+=,.@-
|
@@ -4816,16 +5188,16 @@ module Aws::IAM
|
|
4816
5188
|
# @return [String]
|
4817
5189
|
#
|
4818
5190
|
# @!attribute [rw] max_items
|
4819
|
-
#
|
4820
|
-
#
|
4821
|
-
#
|
4822
|
-
#
|
4823
|
-
#
|
4824
|
-
# If you do not include this parameter,
|
4825
|
-
# IAM might return fewer results, even when there
|
4826
|
-
# available. In that case, the `IsTruncated` response
|
4827
|
-
# `true
|
4828
|
-
# call that tells the service where to continue from.
|
5191
|
+
# Use this only when paginating results to indicate the maximum number
|
5192
|
+
# of items you want in the response. If additional items exist beyond
|
5193
|
+
# the maximum you specify, the `IsTruncated` response element is
|
5194
|
+
# `true`.
|
5195
|
+
#
|
5196
|
+
# If you do not include this parameter, the number of items defaults
|
5197
|
+
# to 100. Note that IAM might return fewer results, even when there
|
5198
|
+
# are more results available. In that case, the `IsTruncated` response
|
5199
|
+
# element returns `true`, and `Marker` contains a value to include in
|
5200
|
+
# the subsequent call that tells the service where to continue from.
|
4829
5201
|
# @return [Integer]
|
4830
5202
|
#
|
4831
5203
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListInstanceProfilesForRoleRequest AWS API Documentation
|
@@ -4851,7 +5223,7 @@ module Aws::IAM
|
|
4851
5223
|
# Note that IAM might return fewer than the `MaxItems` number of
|
4852
5224
|
# results even when there are more results available. We recommend
|
4853
5225
|
# that you check `IsTruncated` after every call to ensure that you
|
4854
|
-
# receive all
|
5226
|
+
# receive all your results.
|
4855
5227
|
# @return [Boolean]
|
4856
5228
|
#
|
4857
5229
|
# @!attribute [rw] marker
|
@@ -4884,10 +5256,10 @@ module Aws::IAM
|
|
4884
5256
|
# path starts with `/application_abc/component_xyz/`.
|
4885
5257
|
#
|
4886
5258
|
# This parameter is optional. If it is not included, it defaults to a
|
4887
|
-
# slash (/), listing all instance profiles. This parameter allows
|
4888
|
-
# its [regex pattern][1]) a string of characters consisting
|
4889
|
-
# a forward slash (/) by itself or a string that must begin
|
4890
|
-
# with forward slashes. In addition, it can contain any ASCII
|
5259
|
+
# slash (/), listing all instance profiles. This parameter allows
|
5260
|
+
# (through its [regex pattern][1]) a string of characters consisting
|
5261
|
+
# of either a forward slash (/) by itself or a string that must begin
|
5262
|
+
# and end with forward slashes. In addition, it can contain any ASCII
|
4891
5263
|
# character from the ! (\\u0021) through the DEL character (\\u007F),
|
4892
5264
|
# including most punctuation characters, digits, and upper and
|
4893
5265
|
# lowercased letters.
|
@@ -4905,16 +5277,16 @@ module Aws::IAM
|
|
4905
5277
|
# @return [String]
|
4906
5278
|
#
|
4907
5279
|
# @!attribute [rw] max_items
|
4908
|
-
#
|
4909
|
-
#
|
4910
|
-
#
|
4911
|
-
#
|
4912
|
-
#
|
4913
|
-
# If you do not include this parameter,
|
4914
|
-
# IAM might return fewer results, even when there
|
4915
|
-
# available. In that case, the `IsTruncated` response
|
4916
|
-
# `true
|
4917
|
-
# call that tells the service where to continue from.
|
5280
|
+
# Use this only when paginating results to indicate the maximum number
|
5281
|
+
# of items you want in the response. If additional items exist beyond
|
5282
|
+
# the maximum you specify, the `IsTruncated` response element is
|
5283
|
+
# `true`.
|
5284
|
+
#
|
5285
|
+
# If you do not include this parameter, the number of items defaults
|
5286
|
+
# to 100. Note that IAM might return fewer results, even when there
|
5287
|
+
# are more results available. In that case, the `IsTruncated` response
|
5288
|
+
# element returns `true`, and `Marker` contains a value to include in
|
5289
|
+
# the subsequent call that tells the service where to continue from.
|
4918
5290
|
# @return [Integer]
|
4919
5291
|
#
|
4920
5292
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListInstanceProfilesRequest AWS API Documentation
|
@@ -4939,7 +5311,7 @@ module Aws::IAM
|
|
4939
5311
|
# Note that IAM might return fewer than the `MaxItems` number of
|
4940
5312
|
# results even when there are more results available. We recommend
|
4941
5313
|
# that you check `IsTruncated` after every call to ensure that you
|
4942
|
-
# receive all
|
5314
|
+
# receive all your results.
|
4943
5315
|
# @return [Boolean]
|
4944
5316
|
#
|
4945
5317
|
# @!attribute [rw] marker
|
@@ -4969,7 +5341,7 @@ module Aws::IAM
|
|
4969
5341
|
# @!attribute [rw] user_name
|
4970
5342
|
# The name of the user whose MFA devices you want to list.
|
4971
5343
|
#
|
4972
|
-
# This parameter allows (
|
5344
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
4973
5345
|
# characters consisting of upper and lowercase alphanumeric characters
|
4974
5346
|
# with no spaces. You can also include any of the following
|
4975
5347
|
# characters: \_+=,.@-
|
@@ -4987,16 +5359,16 @@ module Aws::IAM
|
|
4987
5359
|
# @return [String]
|
4988
5360
|
#
|
4989
5361
|
# @!attribute [rw] max_items
|
4990
|
-
#
|
4991
|
-
#
|
4992
|
-
#
|
4993
|
-
#
|
4994
|
-
#
|
4995
|
-
# If you do not include this parameter,
|
4996
|
-
# IAM might return fewer results, even when there
|
4997
|
-
# available. In that case, the `IsTruncated` response
|
4998
|
-
# `true
|
4999
|
-
# call that tells the service where to continue from.
|
5362
|
+
# Use this only when paginating results to indicate the maximum number
|
5363
|
+
# of items you want in the response. If additional items exist beyond
|
5364
|
+
# the maximum you specify, the `IsTruncated` response element is
|
5365
|
+
# `true`.
|
5366
|
+
#
|
5367
|
+
# If you do not include this parameter, the number of items defaults
|
5368
|
+
# to 100. Note that IAM might return fewer results, even when there
|
5369
|
+
# are more results available. In that case, the `IsTruncated` response
|
5370
|
+
# element returns `true`, and `Marker` contains a value to include in
|
5371
|
+
# the subsequent call that tells the service where to continue from.
|
5000
5372
|
# @return [Integer]
|
5001
5373
|
#
|
5002
5374
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListMFADevicesRequest AWS API Documentation
|
@@ -5021,7 +5393,7 @@ module Aws::IAM
|
|
5021
5393
|
# Note that IAM might return fewer than the `MaxItems` number of
|
5022
5394
|
# results even when there are more results available. We recommend
|
5023
5395
|
# that you check `IsTruncated` after every call to ensure that you
|
5024
|
-
# receive all
|
5396
|
+
# receive all your results.
|
5025
5397
|
# @return [Boolean]
|
5026
5398
|
#
|
5027
5399
|
# @!attribute [rw] marker
|
@@ -5060,6 +5432,119 @@ module Aws::IAM
|
|
5060
5432
|
include Aws::Structure
|
5061
5433
|
end
|
5062
5434
|
|
5435
|
+
# Contains details about the permissions policies that are attached to
|
5436
|
+
# the specified identity (user, group, or role).
|
5437
|
+
#
|
5438
|
+
# This data type is used as a response element in the
|
5439
|
+
# ListPoliciesGrantingServiceAccess operation.
|
5440
|
+
#
|
5441
|
+
# @!attribute [rw] service_namespace
|
5442
|
+
# The namespace of the service that was accessed.
|
5443
|
+
#
|
5444
|
+
# To learn the service namespace of a service, go to [Actions,
|
5445
|
+
# Resources, and Condition Keys for AWS Services][1] in the *IAM User
|
5446
|
+
# Guide*. Choose the name of the service to view details for that
|
5447
|
+
# service. In the first paragraph, find the service prefix. For
|
5448
|
+
# example, `(service prefix: a4b)`. For more information about service
|
5449
|
+
# namespaces, see [AWS Service Namespaces][2] in the *AWS General
|
5450
|
+
# Reference*.
|
5451
|
+
#
|
5452
|
+
#
|
5453
|
+
#
|
5454
|
+
# [1]: http://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_actions-resources-contextkeys.html
|
5455
|
+
# [2]: http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#genref-aws-service-namespaces
|
5456
|
+
# @return [String]
|
5457
|
+
#
|
5458
|
+
# @!attribute [rw] policies
|
5459
|
+
# The `PoliciesGrantingServiceAccess` object that contains details
|
5460
|
+
# about the policy.
|
5461
|
+
# @return [Array<Types::PolicyGrantingServiceAccess>]
|
5462
|
+
#
|
5463
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListPoliciesGrantingServiceAccessEntry AWS API Documentation
|
5464
|
+
#
|
5465
|
+
class ListPoliciesGrantingServiceAccessEntry < Struct.new(
|
5466
|
+
:service_namespace,
|
5467
|
+
:policies)
|
5468
|
+
include Aws::Structure
|
5469
|
+
end
|
5470
|
+
|
5471
|
+
# @note When making an API call, you may pass ListPoliciesGrantingServiceAccessRequest
|
5472
|
+
# data as a hash:
|
5473
|
+
#
|
5474
|
+
# {
|
5475
|
+
# marker: "markerType",
|
5476
|
+
# arn: "arnType", # required
|
5477
|
+
# service_namespaces: ["serviceNamespaceType"], # required
|
5478
|
+
# }
|
5479
|
+
#
|
5480
|
+
# @!attribute [rw] marker
|
5481
|
+
# Use this parameter only when paginating results and only after you
|
5482
|
+
# receive a response indicating that the results are truncated. Set it
|
5483
|
+
# to the value of the `Marker` element in the response that you
|
5484
|
+
# received to indicate where the next call should start.
|
5485
|
+
# @return [String]
|
5486
|
+
#
|
5487
|
+
# @!attribute [rw] arn
|
5488
|
+
# The ARN of the IAM identity (user, group, or role) whose policies
|
5489
|
+
# you want to list.
|
5490
|
+
# @return [String]
|
5491
|
+
#
|
5492
|
+
# @!attribute [rw] service_namespaces
|
5493
|
+
# The service namespace for the AWS services whose policies you want
|
5494
|
+
# to list.
|
5495
|
+
#
|
5496
|
+
# To learn the service namespace for a service, go to [Actions,
|
5497
|
+
# Resources, and Condition Keys for AWS Services][1] in the *IAM User
|
5498
|
+
# Guide*. Choose the name of the service to view details for that
|
5499
|
+
# service. In the first paragraph, find the service prefix. For
|
5500
|
+
# example, `(service prefix: a4b)`. For more information about service
|
5501
|
+
# namespaces, see [AWS Service Namespaces][2] in the *AWS General
|
5502
|
+
# Reference*.
|
5503
|
+
#
|
5504
|
+
#
|
5505
|
+
#
|
5506
|
+
# [1]: http://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_actions-resources-contextkeys.html
|
5507
|
+
# [2]: http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#genref-aws-service-namespaces
|
5508
|
+
# @return [Array<String>]
|
5509
|
+
#
|
5510
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListPoliciesGrantingServiceAccessRequest AWS API Documentation
|
5511
|
+
#
|
5512
|
+
class ListPoliciesGrantingServiceAccessRequest < Struct.new(
|
5513
|
+
:marker,
|
5514
|
+
:arn,
|
5515
|
+
:service_namespaces)
|
5516
|
+
include Aws::Structure
|
5517
|
+
end
|
5518
|
+
|
5519
|
+
# @!attribute [rw] policies_granting_service_access
|
5520
|
+
# A `ListPoliciesGrantingServiceAccess` object that contains details
|
5521
|
+
# about the permissions policies attached to the specified identity
|
5522
|
+
# (user, group, or role).
|
5523
|
+
# @return [Array<Types::ListPoliciesGrantingServiceAccessEntry>]
|
5524
|
+
#
|
5525
|
+
# @!attribute [rw] is_truncated
|
5526
|
+
# A flag that indicates whether there are more items to return. If
|
5527
|
+
# your results were truncated, you can make a subsequent pagination
|
5528
|
+
# request using the `Marker` request parameter to retrieve more items.
|
5529
|
+
# We recommend that you check `IsTruncated` after every call to ensure
|
5530
|
+
# that you receive all your results.
|
5531
|
+
# @return [Boolean]
|
5532
|
+
#
|
5533
|
+
# @!attribute [rw] marker
|
5534
|
+
# When `IsTruncated` is `true`, this element is present and contains
|
5535
|
+
# the value to use for the `Marker` parameter in a subsequent
|
5536
|
+
# pagination request.
|
5537
|
+
# @return [String]
|
5538
|
+
#
|
5539
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListPoliciesGrantingServiceAccessResponse AWS API Documentation
|
5540
|
+
#
|
5541
|
+
class ListPoliciesGrantingServiceAccessResponse < Struct.new(
|
5542
|
+
:policies_granting_service_access,
|
5543
|
+
:is_truncated,
|
5544
|
+
:marker)
|
5545
|
+
include Aws::Structure
|
5546
|
+
end
|
5547
|
+
|
5063
5548
|
# @note When making an API call, you may pass ListPoliciesRequest
|
5064
5549
|
# data as a hash:
|
5065
5550
|
#
|
@@ -5095,8 +5580,8 @@ module Aws::IAM
|
|
5095
5580
|
# @!attribute [rw] path_prefix
|
5096
5581
|
# The path prefix for filtering the results. This parameter is
|
5097
5582
|
# optional. If it is not included, it defaults to a slash (/), listing
|
5098
|
-
# all policies. This parameter allows (
|
5099
|
-
# string of characters consisting of either a forward slash (/) by
|
5583
|
+
# all policies. This parameter allows (through its [regex pattern][1])
|
5584
|
+
# a string of characters consisting of either a forward slash (/) by
|
5100
5585
|
# itself or a string that must begin and end with forward slashes. In
|
5101
5586
|
# addition, it can contain any ASCII character from the ! (\\u0021)
|
5102
5587
|
# through the DEL character (\\u007F), including most punctuation
|
@@ -5127,16 +5612,16 @@ module Aws::IAM
|
|
5127
5612
|
# @return [String]
|
5128
5613
|
#
|
5129
5614
|
# @!attribute [rw] max_items
|
5130
|
-
#
|
5131
|
-
#
|
5132
|
-
#
|
5133
|
-
#
|
5134
|
-
#
|
5135
|
-
# If you do not include this parameter,
|
5136
|
-
# IAM might return fewer results, even when there
|
5137
|
-
# available. In that case, the `IsTruncated` response
|
5138
|
-
# `true
|
5139
|
-
# call that tells the service where to continue from.
|
5615
|
+
# Use this only when paginating results to indicate the maximum number
|
5616
|
+
# of items you want in the response. If additional items exist beyond
|
5617
|
+
# the maximum you specify, the `IsTruncated` response element is
|
5618
|
+
# `true`.
|
5619
|
+
#
|
5620
|
+
# If you do not include this parameter, the number of items defaults
|
5621
|
+
# to 100. Note that IAM might return fewer results, even when there
|
5622
|
+
# are more results available. In that case, the `IsTruncated` response
|
5623
|
+
# element returns `true`, and `Marker` contains a value to include in
|
5624
|
+
# the subsequent call that tells the service where to continue from.
|
5140
5625
|
# @return [Integer]
|
5141
5626
|
#
|
5142
5627
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListPoliciesRequest AWS API Documentation
|
@@ -5164,7 +5649,7 @@ module Aws::IAM
|
|
5164
5649
|
# Note that IAM might return fewer than the `MaxItems` number of
|
5165
5650
|
# results even when there are more results available. We recommend
|
5166
5651
|
# that you check `IsTruncated` after every call to ensure that you
|
5167
|
-
# receive all
|
5652
|
+
# receive all your results.
|
5168
5653
|
# @return [Boolean]
|
5169
5654
|
#
|
5170
5655
|
# @!attribute [rw] marker
|
@@ -5211,16 +5696,16 @@ module Aws::IAM
|
|
5211
5696
|
# @return [String]
|
5212
5697
|
#
|
5213
5698
|
# @!attribute [rw] max_items
|
5214
|
-
#
|
5215
|
-
#
|
5216
|
-
#
|
5217
|
-
#
|
5218
|
-
#
|
5219
|
-
# If you do not include this parameter,
|
5220
|
-
# IAM might return fewer results, even when there
|
5221
|
-
# available. In that case, the `IsTruncated` response
|
5222
|
-
# `true
|
5223
|
-
# call that tells the service where to continue from.
|
5699
|
+
# Use this only when paginating results to indicate the maximum number
|
5700
|
+
# of items you want in the response. If additional items exist beyond
|
5701
|
+
# the maximum you specify, the `IsTruncated` response element is
|
5702
|
+
# `true`.
|
5703
|
+
#
|
5704
|
+
# If you do not include this parameter, the number of items defaults
|
5705
|
+
# to 100. Note that IAM might return fewer results, even when there
|
5706
|
+
# are more results available. In that case, the `IsTruncated` response
|
5707
|
+
# element returns `true`, and `Marker` contains a value to include in
|
5708
|
+
# the subsequent call that tells the service where to continue from.
|
5224
5709
|
# @return [Integer]
|
5225
5710
|
#
|
5226
5711
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListPolicyVersionsRequest AWS API Documentation
|
@@ -5252,7 +5737,7 @@ module Aws::IAM
|
|
5252
5737
|
# Note that IAM might return fewer than the `MaxItems` number of
|
5253
5738
|
# results even when there are more results available. We recommend
|
5254
5739
|
# that you check `IsTruncated` after every call to ensure that you
|
5255
|
-
# receive all
|
5740
|
+
# receive all your results.
|
5256
5741
|
# @return [Boolean]
|
5257
5742
|
#
|
5258
5743
|
# @!attribute [rw] marker
|
@@ -5282,7 +5767,7 @@ module Aws::IAM
|
|
5282
5767
|
# @!attribute [rw] role_name
|
5283
5768
|
# The name of the role to list policies for.
|
5284
5769
|
#
|
5285
|
-
# This parameter allows (
|
5770
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
5286
5771
|
# characters consisting of upper and lowercase alphanumeric characters
|
5287
5772
|
# with no spaces. You can also include any of the following
|
5288
5773
|
# characters: \_+=,.@-
|
@@ -5300,16 +5785,16 @@ module Aws::IAM
|
|
5300
5785
|
# @return [String]
|
5301
5786
|
#
|
5302
5787
|
# @!attribute [rw] max_items
|
5303
|
-
#
|
5304
|
-
#
|
5305
|
-
#
|
5306
|
-
#
|
5307
|
-
#
|
5308
|
-
# If you do not include this parameter,
|
5309
|
-
# IAM might return fewer results, even when there
|
5310
|
-
# available. In that case, the `IsTruncated` response
|
5311
|
-
# `true
|
5312
|
-
# call that tells the service where to continue from.
|
5788
|
+
# Use this only when paginating results to indicate the maximum number
|
5789
|
+
# of items you want in the response. If additional items exist beyond
|
5790
|
+
# the maximum you specify, the `IsTruncated` response element is
|
5791
|
+
# `true`.
|
5792
|
+
#
|
5793
|
+
# If you do not include this parameter, the number of items defaults
|
5794
|
+
# to 100. Note that IAM might return fewer results, even when there
|
5795
|
+
# are more results available. In that case, the `IsTruncated` response
|
5796
|
+
# element returns `true`, and `Marker` contains a value to include in
|
5797
|
+
# the subsequent call that tells the service where to continue from.
|
5313
5798
|
# @return [Integer]
|
5314
5799
|
#
|
5315
5800
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListRolePoliciesRequest AWS API Documentation
|
@@ -5334,7 +5819,7 @@ module Aws::IAM
|
|
5334
5819
|
# Note that IAM might return fewer than the `MaxItems` number of
|
5335
5820
|
# results even when there are more results available. We recommend
|
5336
5821
|
# that you check `IsTruncated` after every call to ensure that you
|
5337
|
-
# receive all
|
5822
|
+
# receive all your results.
|
5338
5823
|
# @return [Boolean]
|
5339
5824
|
#
|
5340
5825
|
# @!attribute [rw] marker
|
@@ -5449,12 +5934,13 @@ module Aws::IAM
|
|
5449
5934
|
# with `/application_abc/component_xyz/`.
|
5450
5935
|
#
|
5451
5936
|
# This parameter is optional. If it is not included, it defaults to a
|
5452
|
-
# slash (/), listing all roles. This parameter allows (
|
5453
|
-
# pattern][1]) a string of characters consisting of either a
|
5454
|
-
# slash (/) by itself or a string that must begin and end with
|
5455
|
-
# slashes. In addition, it can contain any ASCII character
|
5456
|
-
# (\\u0021) through the DEL character (\\u007F), including
|
5457
|
-
# punctuation characters, digits, and upper and lowercased
|
5937
|
+
# slash (/), listing all roles. This parameter allows (through its
|
5938
|
+
# [regex pattern][1]) a string of characters consisting of either a
|
5939
|
+
# forward slash (/) by itself or a string that must begin and end with
|
5940
|
+
# forward slashes. In addition, it can contain any ASCII character
|
5941
|
+
# from the ! (\\u0021) through the DEL character (\\u007F), including
|
5942
|
+
# most punctuation characters, digits, and upper and lowercased
|
5943
|
+
# letters.
|
5458
5944
|
#
|
5459
5945
|
#
|
5460
5946
|
#
|
@@ -5469,16 +5955,16 @@ module Aws::IAM
|
|
5469
5955
|
# @return [String]
|
5470
5956
|
#
|
5471
5957
|
# @!attribute [rw] max_items
|
5472
|
-
#
|
5473
|
-
#
|
5474
|
-
#
|
5475
|
-
#
|
5476
|
-
#
|
5477
|
-
# If you do not include this parameter,
|
5478
|
-
# IAM might return fewer results, even when there
|
5479
|
-
# available. In that case, the `IsTruncated` response
|
5480
|
-
# `true
|
5481
|
-
# call that tells the service where to continue from.
|
5958
|
+
# Use this only when paginating results to indicate the maximum number
|
5959
|
+
# of items you want in the response. If additional items exist beyond
|
5960
|
+
# the maximum you specify, the `IsTruncated` response element is
|
5961
|
+
# `true`.
|
5962
|
+
#
|
5963
|
+
# If you do not include this parameter, the number of items defaults
|
5964
|
+
# to 100. Note that IAM might return fewer results, even when there
|
5965
|
+
# are more results available. In that case, the `IsTruncated` response
|
5966
|
+
# element returns `true`, and `Marker` contains a value to include in
|
5967
|
+
# the subsequent call that tells the service where to continue from.
|
5482
5968
|
# @return [Integer]
|
5483
5969
|
#
|
5484
5970
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListRolesRequest AWS API Documentation
|
@@ -5503,7 +5989,7 @@ module Aws::IAM
|
|
5503
5989
|
# Note that IAM might return fewer than the `MaxItems` number of
|
5504
5990
|
# results even when there are more results available. We recommend
|
5505
5991
|
# that you check `IsTruncated` after every call to ensure that you
|
5506
|
-
# receive all
|
5992
|
+
# receive all your results.
|
5507
5993
|
# @return [Boolean]
|
5508
5994
|
#
|
5509
5995
|
# @!attribute [rw] marker
|
@@ -5555,7 +6041,7 @@ module Aws::IAM
|
|
5555
6041
|
# specified, the `UserName` field is determined implicitly based on
|
5556
6042
|
# the AWS access key used to sign the request.
|
5557
6043
|
#
|
5558
|
-
# This parameter allows (
|
6044
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
5559
6045
|
# characters consisting of upper and lowercase alphanumeric characters
|
5560
6046
|
# with no spaces. You can also include any of the following
|
5561
6047
|
# characters: \_+=,.@-
|
@@ -5573,16 +6059,16 @@ module Aws::IAM
|
|
5573
6059
|
# @return [String]
|
5574
6060
|
#
|
5575
6061
|
# @!attribute [rw] max_items
|
5576
|
-
#
|
5577
|
-
#
|
5578
|
-
#
|
5579
|
-
#
|
5580
|
-
#
|
5581
|
-
# If you do not include this parameter,
|
5582
|
-
# IAM might return fewer results, even when there
|
5583
|
-
# available. In that case, the `IsTruncated` response
|
5584
|
-
# `true
|
5585
|
-
# call that tells the service where to continue from.
|
6062
|
+
# Use this only when paginating results to indicate the maximum number
|
6063
|
+
# of items you want in the response. If additional items exist beyond
|
6064
|
+
# the maximum you specify, the `IsTruncated` response element is
|
6065
|
+
# `true`.
|
6066
|
+
#
|
6067
|
+
# If you do not include this parameter, the number of items defaults
|
6068
|
+
# to 100. Note that IAM might return fewer results, even when there
|
6069
|
+
# are more results available. In that case, the `IsTruncated` response
|
6070
|
+
# element returns `true`, and `Marker` contains a value to include in
|
6071
|
+
# the subsequent call that tells the service where to continue from.
|
5586
6072
|
# @return [Integer]
|
5587
6073
|
#
|
5588
6074
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListSSHPublicKeysRequest AWS API Documentation
|
@@ -5607,7 +6093,7 @@ module Aws::IAM
|
|
5607
6093
|
# Note that IAM might return fewer than the `MaxItems` number of
|
5608
6094
|
# results even when there are more results available. We recommend
|
5609
6095
|
# that you check `IsTruncated` after every call to ensure that you
|
5610
|
-
# receive all
|
6096
|
+
# receive all your results.
|
5611
6097
|
# @return [Boolean]
|
5612
6098
|
#
|
5613
6099
|
# @!attribute [rw] marker
|
@@ -5641,9 +6127,9 @@ module Aws::IAM
|
|
5641
6127
|
#
|
5642
6128
|
# This parameter is optional. If it is not included, it defaults to a
|
5643
6129
|
# slash (/), listing all server certificates. This parameter allows
|
5644
|
-
# (
|
5645
|
-
# either a forward slash (/) by itself or a string that must begin
|
5646
|
-
# end with forward slashes. In addition, it can contain any ASCII
|
6130
|
+
# (through its [regex pattern][1]) a string of characters consisting
|
6131
|
+
# of either a forward slash (/) by itself or a string that must begin
|
6132
|
+
# and end with forward slashes. In addition, it can contain any ASCII
|
5647
6133
|
# character from the ! (\\u0021) through the DEL character (\\u007F),
|
5648
6134
|
# including most punctuation characters, digits, and upper and
|
5649
6135
|
# lowercased letters.
|
@@ -5661,16 +6147,16 @@ module Aws::IAM
|
|
5661
6147
|
# @return [String]
|
5662
6148
|
#
|
5663
6149
|
# @!attribute [rw] max_items
|
5664
|
-
#
|
5665
|
-
#
|
5666
|
-
#
|
5667
|
-
#
|
5668
|
-
#
|
5669
|
-
# If you do not include this parameter,
|
5670
|
-
# IAM might return fewer results, even when there
|
5671
|
-
# available. In that case, the `IsTruncated` response
|
5672
|
-
# `true
|
5673
|
-
# call that tells the service where to continue from.
|
6150
|
+
# Use this only when paginating results to indicate the maximum number
|
6151
|
+
# of items you want in the response. If additional items exist beyond
|
6152
|
+
# the maximum you specify, the `IsTruncated` response element is
|
6153
|
+
# `true`.
|
6154
|
+
#
|
6155
|
+
# If you do not include this parameter, the number of items defaults
|
6156
|
+
# to 100. Note that IAM might return fewer results, even when there
|
6157
|
+
# are more results available. In that case, the `IsTruncated` response
|
6158
|
+
# element returns `true`, and `Marker` contains a value to include in
|
6159
|
+
# the subsequent call that tells the service where to continue from.
|
5674
6160
|
# @return [Integer]
|
5675
6161
|
#
|
5676
6162
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListServerCertificatesRequest AWS API Documentation
|
@@ -5695,7 +6181,7 @@ module Aws::IAM
|
|
5695
6181
|
# Note that IAM might return fewer than the `MaxItems` number of
|
5696
6182
|
# results even when there are more results available. We recommend
|
5697
6183
|
# that you check `IsTruncated` after every call to ensure that you
|
5698
|
-
# receive all
|
6184
|
+
# receive all your results.
|
5699
6185
|
# @return [Boolean]
|
5700
6186
|
#
|
5701
6187
|
# @!attribute [rw] marker
|
@@ -5727,7 +6213,7 @@ module Aws::IAM
|
|
5727
6213
|
# operation assumes the user whose credentials are used to call the
|
5728
6214
|
# operation.
|
5729
6215
|
#
|
5730
|
-
# This parameter allows (
|
6216
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
5731
6217
|
# characters consisting of upper and lowercase alphanumeric characters
|
5732
6218
|
# with no spaces. You can also include any of the following
|
5733
6219
|
# characters: \_+=,.@-
|
@@ -5776,7 +6262,7 @@ module Aws::IAM
|
|
5776
6262
|
# The name of the IAM user whose signing certificates you want to
|
5777
6263
|
# examine.
|
5778
6264
|
#
|
5779
|
-
# This parameter allows (
|
6265
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
5780
6266
|
# characters consisting of upper and lowercase alphanumeric characters
|
5781
6267
|
# with no spaces. You can also include any of the following
|
5782
6268
|
# characters: \_+=,.@-
|
@@ -5794,16 +6280,16 @@ module Aws::IAM
|
|
5794
6280
|
# @return [String]
|
5795
6281
|
#
|
5796
6282
|
# @!attribute [rw] max_items
|
5797
|
-
#
|
5798
|
-
#
|
5799
|
-
#
|
5800
|
-
#
|
5801
|
-
#
|
5802
|
-
# If you do not include this parameter,
|
5803
|
-
# IAM might return fewer results, even when there
|
5804
|
-
# available. In that case, the `IsTruncated` response
|
5805
|
-
# `true
|
5806
|
-
# call that tells the service where to continue from.
|
6283
|
+
# Use this only when paginating results to indicate the maximum number
|
6284
|
+
# of items you want in the response. If additional items exist beyond
|
6285
|
+
# the maximum you specify, the `IsTruncated` response element is
|
6286
|
+
# `true`.
|
6287
|
+
#
|
6288
|
+
# If you do not include this parameter, the number of items defaults
|
6289
|
+
# to 100. Note that IAM might return fewer results, even when there
|
6290
|
+
# are more results available. In that case, the `IsTruncated` response
|
6291
|
+
# element returns `true`, and `Marker` contains a value to include in
|
6292
|
+
# the subsequent call that tells the service where to continue from.
|
5807
6293
|
# @return [Integer]
|
5808
6294
|
#
|
5809
6295
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListSigningCertificatesRequest AWS API Documentation
|
@@ -5828,7 +6314,7 @@ module Aws::IAM
|
|
5828
6314
|
# Note that IAM might return fewer than the `MaxItems` number of
|
5829
6315
|
# results even when there are more results available. We recommend
|
5830
6316
|
# that you check `IsTruncated` after every call to ensure that you
|
5831
|
-
# receive all
|
6317
|
+
# receive all your results.
|
5832
6318
|
# @return [Boolean]
|
5833
6319
|
#
|
5834
6320
|
# @!attribute [rw] marker
|
@@ -5858,7 +6344,7 @@ module Aws::IAM
|
|
5858
6344
|
# @!attribute [rw] user_name
|
5859
6345
|
# The name of the user to list policies for.
|
5860
6346
|
#
|
5861
|
-
# This parameter allows (
|
6347
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
5862
6348
|
# characters consisting of upper and lowercase alphanumeric characters
|
5863
6349
|
# with no spaces. You can also include any of the following
|
5864
6350
|
# characters: \_+=,.@-
|
@@ -5876,16 +6362,16 @@ module Aws::IAM
|
|
5876
6362
|
# @return [String]
|
5877
6363
|
#
|
5878
6364
|
# @!attribute [rw] max_items
|
5879
|
-
#
|
5880
|
-
#
|
5881
|
-
#
|
5882
|
-
#
|
5883
|
-
#
|
5884
|
-
# If you do not include this parameter,
|
5885
|
-
# IAM might return fewer results, even when there
|
5886
|
-
# available. In that case, the `IsTruncated` response
|
5887
|
-
# `true
|
5888
|
-
# call that tells the service where to continue from.
|
6365
|
+
# Use this only when paginating results to indicate the maximum number
|
6366
|
+
# of items you want in the response. If additional items exist beyond
|
6367
|
+
# the maximum you specify, the `IsTruncated` response element is
|
6368
|
+
# `true`.
|
6369
|
+
#
|
6370
|
+
# If you do not include this parameter, the number of items defaults
|
6371
|
+
# to 100. Note that IAM might return fewer results, even when there
|
6372
|
+
# are more results available. In that case, the `IsTruncated` response
|
6373
|
+
# element returns `true`, and `Marker` contains a value to include in
|
6374
|
+
# the subsequent call that tells the service where to continue from.
|
5889
6375
|
# @return [Integer]
|
5890
6376
|
#
|
5891
6377
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListUserPoliciesRequest AWS API Documentation
|
@@ -5910,7 +6396,7 @@ module Aws::IAM
|
|
5910
6396
|
# Note that IAM might return fewer than the `MaxItems` number of
|
5911
6397
|
# results even when there are more results available. We recommend
|
5912
6398
|
# that you check `IsTruncated` after every call to ensure that you
|
5913
|
-
# receive all
|
6399
|
+
# receive all your results.
|
5914
6400
|
# @return [Boolean]
|
5915
6401
|
#
|
5916
6402
|
# @!attribute [rw] marker
|
@@ -6025,13 +6511,13 @@ module Aws::IAM
|
|
6025
6511
|
# whose path starts with `/division_abc/subdivision_xyz/`.
|
6026
6512
|
#
|
6027
6513
|
# This parameter is optional. If it is not included, it defaults to a
|
6028
|
-
# slash (/), listing all user names. This parameter allows (
|
6029
|
-
# [regex pattern][1]) a string of characters consisting of either
|
6030
|
-
# forward slash (/) by itself or a string that must begin and end
|
6031
|
-
# forward slashes. In addition, it can contain any ASCII
|
6032
|
-
# from the ! (\\u0021) through the DEL character (\\u007F),
|
6033
|
-
# most punctuation characters, digits, and upper and
|
6034
|
-
# letters.
|
6514
|
+
# slash (/), listing all user names. This parameter allows (through
|
6515
|
+
# its [regex pattern][1]) a string of characters consisting of either
|
6516
|
+
# a forward slash (/) by itself or a string that must begin and end
|
6517
|
+
# with forward slashes. In addition, it can contain any ASCII
|
6518
|
+
# character from the ! (\\u0021) through the DEL character (\\u007F),
|
6519
|
+
# including most punctuation characters, digits, and upper and
|
6520
|
+
# lowercased letters.
|
6035
6521
|
#
|
6036
6522
|
#
|
6037
6523
|
#
|
@@ -6046,16 +6532,16 @@ module Aws::IAM
|
|
6046
6532
|
# @return [String]
|
6047
6533
|
#
|
6048
6534
|
# @!attribute [rw] max_items
|
6049
|
-
#
|
6050
|
-
#
|
6051
|
-
#
|
6052
|
-
#
|
6053
|
-
#
|
6054
|
-
# If you do not include this parameter,
|
6055
|
-
# IAM might return fewer results, even when there
|
6056
|
-
# available. In that case, the `IsTruncated` response
|
6057
|
-
# `true
|
6058
|
-
# call that tells the service where to continue from.
|
6535
|
+
# Use this only when paginating results to indicate the maximum number
|
6536
|
+
# of items you want in the response. If additional items exist beyond
|
6537
|
+
# the maximum you specify, the `IsTruncated` response element is
|
6538
|
+
# `true`.
|
6539
|
+
#
|
6540
|
+
# If you do not include this parameter, the number of items defaults
|
6541
|
+
# to 100. Note that IAM might return fewer results, even when there
|
6542
|
+
# are more results available. In that case, the `IsTruncated` response
|
6543
|
+
# element returns `true`, and `Marker` contains a value to include in
|
6544
|
+
# the subsequent call that tells the service where to continue from.
|
6059
6545
|
# @return [Integer]
|
6060
6546
|
#
|
6061
6547
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListUsersRequest AWS API Documentation
|
@@ -6080,7 +6566,7 @@ module Aws::IAM
|
|
6080
6566
|
# Note that IAM might return fewer than the `MaxItems` number of
|
6081
6567
|
# results even when there are more results available. We recommend
|
6082
6568
|
# that you check `IsTruncated` after every call to ensure that you
|
6083
|
-
# receive all
|
6569
|
+
# receive all your results.
|
6084
6570
|
# @return [Boolean]
|
6085
6571
|
#
|
6086
6572
|
# @!attribute [rw] marker
|
@@ -6110,7 +6596,8 @@ module Aws::IAM
|
|
6110
6596
|
# @!attribute [rw] assignment_status
|
6111
6597
|
# The status (`Unassigned` or `Assigned`) of the devices to list. If
|
6112
6598
|
# you do not specify an `AssignmentStatus`, the operation defaults to
|
6113
|
-
# `Any
|
6599
|
+
# `Any`, which lists both assigned and unassigned virtual MFA
|
6600
|
+
# devices.,
|
6114
6601
|
# @return [String]
|
6115
6602
|
#
|
6116
6603
|
# @!attribute [rw] marker
|
@@ -6121,16 +6608,16 @@ module Aws::IAM
|
|
6121
6608
|
# @return [String]
|
6122
6609
|
#
|
6123
6610
|
# @!attribute [rw] max_items
|
6124
|
-
#
|
6125
|
-
#
|
6126
|
-
#
|
6127
|
-
#
|
6128
|
-
#
|
6129
|
-
# If you do not include this parameter,
|
6130
|
-
# IAM might return fewer results, even when there
|
6131
|
-
# available. In that case, the `IsTruncated` response
|
6132
|
-
# `true
|
6133
|
-
# call that tells the service where to continue from.
|
6611
|
+
# Use this only when paginating results to indicate the maximum number
|
6612
|
+
# of items you want in the response. If additional items exist beyond
|
6613
|
+
# the maximum you specify, the `IsTruncated` response element is
|
6614
|
+
# `true`.
|
6615
|
+
#
|
6616
|
+
# If you do not include this parameter, the number of items defaults
|
6617
|
+
# to 100. Note that IAM might return fewer results, even when there
|
6618
|
+
# are more results available. In that case, the `IsTruncated` response
|
6619
|
+
# element returns `true`, and `Marker` contains a value to include in
|
6620
|
+
# the subsequent call that tells the service where to continue from.
|
6134
6621
|
# @return [Integer]
|
6135
6622
|
#
|
6136
6623
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListVirtualMFADevicesRequest AWS API Documentation
|
@@ -6156,7 +6643,7 @@ module Aws::IAM
|
|
6156
6643
|
# Note that IAM might return fewer than the `MaxItems` number of
|
6157
6644
|
# results even when there are more results available. We recommend
|
6158
6645
|
# that you check `IsTruncated` after every call to ensure that you
|
6159
|
-
# receive all
|
6646
|
+
# receive all your results.
|
6160
6647
|
# @return [Boolean]
|
6161
6648
|
#
|
6162
6649
|
# @!attribute [rw] marker
|
@@ -6307,7 +6794,7 @@ module Aws::IAM
|
|
6307
6794
|
#
|
6308
6795
|
#
|
6309
6796
|
#
|
6310
|
-
# [1]:
|
6797
|
+
# [1]: http://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_boundaries.html
|
6311
6798
|
# @return [Integer]
|
6312
6799
|
#
|
6313
6800
|
# @!attribute [rw] is_attachable
|
@@ -6539,7 +7026,7 @@ module Aws::IAM
|
|
6539
7026
|
#
|
6540
7027
|
#
|
6541
7028
|
#
|
6542
|
-
# [1]:
|
7029
|
+
# [1]: http://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_boundaries.html
|
6543
7030
|
# @return [Integer]
|
6544
7031
|
#
|
6545
7032
|
# @!attribute [rw] is_attachable
|
@@ -6616,6 +7103,74 @@ module Aws::IAM
|
|
6616
7103
|
include Aws::Structure
|
6617
7104
|
end
|
6618
7105
|
|
7106
|
+
# Contains details about the permissions policies that are attached to
|
7107
|
+
# the specified identity (user, group, or role).
|
7108
|
+
#
|
7109
|
+
# This data type is an element of the
|
7110
|
+
# ListPoliciesGrantingServiceAccessEntry object.
|
7111
|
+
#
|
7112
|
+
# @!attribute [rw] policy_name
|
7113
|
+
# The policy name.
|
7114
|
+
# @return [String]
|
7115
|
+
#
|
7116
|
+
# @!attribute [rw] policy_type
|
7117
|
+
# The policy type. For more information about these policy types, see
|
7118
|
+
# [Managed Policies and Inline Policies][1] in the *IAM User Guide*.
|
7119
|
+
#
|
7120
|
+
#
|
7121
|
+
#
|
7122
|
+
# [1]: http://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_managed-vs-inline.html
|
7123
|
+
# @return [String]
|
7124
|
+
#
|
7125
|
+
# @!attribute [rw] policy_arn
|
7126
|
+
# The Amazon Resource Name (ARN). ARNs are unique identifiers for AWS
|
7127
|
+
# resources.
|
7128
|
+
#
|
7129
|
+
# For more information about ARNs, go to [Amazon Resource Names (ARNs)
|
7130
|
+
# and AWS Service Namespaces][1] in the *AWS General Reference*.
|
7131
|
+
#
|
7132
|
+
#
|
7133
|
+
#
|
7134
|
+
# [1]: http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
7135
|
+
# @return [String]
|
7136
|
+
#
|
7137
|
+
# @!attribute [rw] entity_type
|
7138
|
+
# The type of entity (user or role) that used the policy to access the
|
7139
|
+
# service to which the inline policy is attached.
|
7140
|
+
#
|
7141
|
+
# This field is null for managed policies. For more information about
|
7142
|
+
# these policy types, see [Managed Policies and Inline Policies][1] in
|
7143
|
+
# the *IAM User Guide*.
|
7144
|
+
#
|
7145
|
+
#
|
7146
|
+
#
|
7147
|
+
# [1]: http://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_managed-vs-inline.html
|
7148
|
+
# @return [String]
|
7149
|
+
#
|
7150
|
+
# @!attribute [rw] entity_name
|
7151
|
+
# The name of the entity (user or role) to which the inline policy is
|
7152
|
+
# attached.
|
7153
|
+
#
|
7154
|
+
# This field is null for managed policies. For more information about
|
7155
|
+
# these policy types, see [Managed Policies and Inline Policies][1] in
|
7156
|
+
# the *IAM User Guide*.
|
7157
|
+
#
|
7158
|
+
#
|
7159
|
+
#
|
7160
|
+
# [1]: http://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_managed-vs-inline.html
|
7161
|
+
# @return [String]
|
7162
|
+
#
|
7163
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/PolicyGrantingServiceAccess AWS API Documentation
|
7164
|
+
#
|
7165
|
+
class PolicyGrantingServiceAccess < Struct.new(
|
7166
|
+
:policy_name,
|
7167
|
+
:policy_type,
|
7168
|
+
:policy_arn,
|
7169
|
+
:entity_type,
|
7170
|
+
:entity_name)
|
7171
|
+
include Aws::Structure
|
7172
|
+
end
|
7173
|
+
|
6619
7174
|
# Contains information about a group that a managed policy is attached
|
6620
7175
|
# to.
|
6621
7176
|
#
|
@@ -6819,7 +7374,7 @@ module Aws::IAM
|
|
6819
7374
|
# @!attribute [rw] group_name
|
6820
7375
|
# The name of the group to associate the policy with.
|
6821
7376
|
#
|
6822
|
-
# This parameter allows (
|
7377
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
6823
7378
|
# characters consisting of upper and lowercase alphanumeric characters
|
6824
7379
|
# with no spaces. You can also include any of the following
|
6825
7380
|
# characters: \_+=,.@-
|
@@ -6832,7 +7387,7 @@ module Aws::IAM
|
|
6832
7387
|
# @!attribute [rw] policy_name
|
6833
7388
|
# The name of the policy document.
|
6834
7389
|
#
|
6835
|
-
# This parameter allows (
|
7390
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
6836
7391
|
# characters consisting of upper and lowercase alphanumeric characters
|
6837
7392
|
# with no spaces. You can also include any of the following
|
6838
7393
|
# characters: \_+=,.@-
|
@@ -6909,7 +7464,7 @@ module Aws::IAM
|
|
6909
7464
|
# @!attribute [rw] role_name
|
6910
7465
|
# The name of the role to associate the policy with.
|
6911
7466
|
#
|
6912
|
-
# This parameter allows (
|
7467
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
6913
7468
|
# characters consisting of upper and lowercase alphanumeric characters
|
6914
7469
|
# with no spaces. You can also include any of the following
|
6915
7470
|
# characters: \_+=,.@-
|
@@ -6922,7 +7477,7 @@ module Aws::IAM
|
|
6922
7477
|
# @!attribute [rw] policy_name
|
6923
7478
|
# The name of the policy document.
|
6924
7479
|
#
|
6925
|
-
# This parameter allows (
|
7480
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
6926
7481
|
# characters consisting of upper and lowercase alphanumeric characters
|
6927
7482
|
# with no spaces. You can also include any of the following
|
6928
7483
|
# characters: \_+=,.@-
|
@@ -6999,7 +7554,7 @@ module Aws::IAM
|
|
6999
7554
|
# @!attribute [rw] user_name
|
7000
7555
|
# The name of the user to associate the policy with.
|
7001
7556
|
#
|
7002
|
-
# This parameter allows (
|
7557
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
7003
7558
|
# characters consisting of upper and lowercase alphanumeric characters
|
7004
7559
|
# with no spaces. You can also include any of the following
|
7005
7560
|
# characters: \_+=,.@-
|
@@ -7012,7 +7567,7 @@ module Aws::IAM
|
|
7012
7567
|
# @!attribute [rw] policy_name
|
7013
7568
|
# The name of the policy document.
|
7014
7569
|
#
|
7015
|
-
# This parameter allows (
|
7570
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
7016
7571
|
# characters consisting of upper and lowercase alphanumeric characters
|
7017
7572
|
# with no spaces. You can also include any of the following
|
7018
7573
|
# characters: \_+=,.@-
|
@@ -7097,7 +7652,7 @@ module Aws::IAM
|
|
7097
7652
|
# @!attribute [rw] instance_profile_name
|
7098
7653
|
# The name of the instance profile to update.
|
7099
7654
|
#
|
7100
|
-
# This parameter allows (
|
7655
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
7101
7656
|
# characters consisting of upper and lowercase alphanumeric characters
|
7102
7657
|
# with no spaces. You can also include any of the following
|
7103
7658
|
# characters: \_+=,.@-
|
@@ -7110,7 +7665,7 @@ module Aws::IAM
|
|
7110
7665
|
# @!attribute [rw] role_name
|
7111
7666
|
# The name of the role to remove.
|
7112
7667
|
#
|
7113
|
-
# This parameter allows (
|
7668
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
7114
7669
|
# characters consisting of upper and lowercase alphanumeric characters
|
7115
7670
|
# with no spaces. You can also include any of the following
|
7116
7671
|
# characters: \_+=,.@-
|
@@ -7139,7 +7694,7 @@ module Aws::IAM
|
|
7139
7694
|
# @!attribute [rw] group_name
|
7140
7695
|
# The name of the group to update.
|
7141
7696
|
#
|
7142
|
-
# This parameter allows (
|
7697
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
7143
7698
|
# characters consisting of upper and lowercase alphanumeric characters
|
7144
7699
|
# with no spaces. You can also include any of the following
|
7145
7700
|
# characters: \_+=,.@-
|
@@ -7152,7 +7707,7 @@ module Aws::IAM
|
|
7152
7707
|
# @!attribute [rw] user_name
|
7153
7708
|
# The name of the user to remove.
|
7154
7709
|
#
|
7155
|
-
# This parameter allows (
|
7710
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
7156
7711
|
# characters consisting of upper and lowercase alphanumeric characters
|
7157
7712
|
# with no spaces. You can also include any of the following
|
7158
7713
|
# characters: \_+=,.@-
|
@@ -7183,7 +7738,7 @@ module Aws::IAM
|
|
7183
7738
|
# credential. If this value is not specified, then the operation
|
7184
7739
|
# assumes the user whose credentials are used to call the operation.
|
7185
7740
|
#
|
7186
|
-
# This parameter allows (
|
7741
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
7187
7742
|
# characters consisting of upper and lowercase alphanumeric characters
|
7188
7743
|
# with no spaces. You can also include any of the following
|
7189
7744
|
# characters: \_+=,.@-
|
@@ -7196,7 +7751,7 @@ module Aws::IAM
|
|
7196
7751
|
# @!attribute [rw] service_specific_credential_id
|
7197
7752
|
# The unique identifier of the service-specific credential.
|
7198
7753
|
#
|
7199
|
-
# This parameter allows (
|
7754
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
7200
7755
|
# characters that can consist of any upper or lowercased letter or
|
7201
7756
|
# digit.
|
7202
7757
|
#
|
@@ -7248,8 +7803,8 @@ module Aws::IAM
|
|
7248
7803
|
# result for this part of the simulation. Remember that even if
|
7249
7804
|
# multiple statements allow the operation on the resource, if *any*
|
7250
7805
|
# statement denies that operation, then the explicit deny overrides
|
7251
|
-
# any allow,
|
7252
|
-
# result.
|
7806
|
+
# any allow. In addition, the deny statement is the only entry
|
7807
|
+
# included in the result.
|
7253
7808
|
# @return [Array<Types::Statement>]
|
7254
7809
|
#
|
7255
7810
|
# @!attribute [rw] missing_context_values
|
@@ -7297,7 +7852,7 @@ module Aws::IAM
|
|
7297
7852
|
# @!attribute [rw] user_name
|
7298
7853
|
# The name of the user whose MFA device you want to resynchronize.
|
7299
7854
|
#
|
7300
|
-
# This parameter allows (
|
7855
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
7301
7856
|
# characters consisting of upper and lowercase alphanumeric characters
|
7302
7857
|
# with no spaces. You can also include any of the following
|
7303
7858
|
# characters: \_+=,.@-
|
@@ -7310,7 +7865,7 @@ module Aws::IAM
|
|
7310
7865
|
# @!attribute [rw] serial_number
|
7311
7866
|
# Serial number that uniquely identifies the MFA device.
|
7312
7867
|
#
|
7313
|
-
# This parameter allows (
|
7868
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
7314
7869
|
# characters consisting of upper and lowercase alphanumeric characters
|
7315
7870
|
# with no spaces. You can also include any of the following
|
7316
7871
|
# characters: \_+=,.@-
|
@@ -7395,19 +7950,9 @@ module Aws::IAM
|
|
7395
7950
|
# A description of the role that you provide.
|
7396
7951
|
# @return [String]
|
7397
7952
|
#
|
7398
|
-
# @!attribute [rw] tags
|
7399
|
-
# A list of tags that are attached to the specified role. For more
|
7400
|
-
# information about tagging, see [Tagging IAM Identities][1] in the
|
7401
|
-
# *IAM User Guide*.
|
7402
|
-
#
|
7403
|
-
#
|
7404
|
-
#
|
7405
|
-
# [1]: http://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html
|
7406
|
-
# @return [Array<Types::Tag>]
|
7407
|
-
#
|
7408
7953
|
# @!attribute [rw] max_session_duration
|
7409
7954
|
# The maximum session duration (in seconds) for the specified role.
|
7410
|
-
# Anyone who uses the AWS CLI or API to assume the role can specify
|
7955
|
+
# Anyone who uses the AWS CLI, or API to assume the role can specify
|
7411
7956
|
# the duration using the optional `DurationSeconds` API parameter or
|
7412
7957
|
# `duration-seconds` CLI parameter.
|
7413
7958
|
# @return [Integer]
|
@@ -7417,12 +7962,20 @@ module Aws::IAM
|
|
7417
7962
|
# role.
|
7418
7963
|
#
|
7419
7964
|
# For more information about permissions boundaries, see [Permissions
|
7420
|
-
# Boundaries for IAM Identities
|
7965
|
+
# Boundaries for IAM Identities
|
7966
|
+
# ](IAM/latest/UserGuide/access_policies_boundaries.html) in the *IAM
|
7967
|
+
# User Guide*.
|
7968
|
+
# @return [Types::AttachedPermissionsBoundary]
|
7969
|
+
#
|
7970
|
+
# @!attribute [rw] tags
|
7971
|
+
# A list of tags that are attached to the specified role. For more
|
7972
|
+
# information about tagging, see [Tagging IAM Identities][1] in the
|
7973
|
+
# *IAM User Guide*.
|
7421
7974
|
#
|
7422
7975
|
#
|
7423
7976
|
#
|
7424
|
-
# [1]:
|
7425
|
-
# @return [Types::
|
7977
|
+
# [1]: http://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html
|
7978
|
+
# @return [Array<Types::Tag>]
|
7426
7979
|
#
|
7427
7980
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/Role AWS API Documentation
|
7428
7981
|
#
|
@@ -7434,9 +7987,9 @@ module Aws::IAM
|
|
7434
7987
|
:create_date,
|
7435
7988
|
:assume_role_policy_document,
|
7436
7989
|
:description,
|
7437
|
-
:tags,
|
7438
7990
|
:max_session_duration,
|
7439
|
-
:permissions_boundary
|
7991
|
+
:permissions_boundary,
|
7992
|
+
:tags)
|
7440
7993
|
include Aws::Structure
|
7441
7994
|
end
|
7442
7995
|
|
@@ -7508,6 +8061,16 @@ module Aws::IAM
|
|
7508
8061
|
# the role's access (permissions) policies.
|
7509
8062
|
# @return [Array<Types::AttachedPolicy>]
|
7510
8063
|
#
|
8064
|
+
# @!attribute [rw] permissions_boundary
|
8065
|
+
# The ARN of the policy used to set the permissions boundary for the
|
8066
|
+
# role.
|
8067
|
+
#
|
8068
|
+
# For more information about permissions boundaries, see [Permissions
|
8069
|
+
# Boundaries for IAM Identities
|
8070
|
+
# ](IAM/latest/UserGuide/access_policies_boundaries.html) in the *IAM
|
8071
|
+
# User Guide*.
|
8072
|
+
# @return [Types::AttachedPermissionsBoundary]
|
8073
|
+
#
|
7511
8074
|
# @!attribute [rw] tags
|
7512
8075
|
# A list of tags that are attached to the specified role. For more
|
7513
8076
|
# information about tagging, see [Tagging IAM Identities][1] in the
|
@@ -7518,18 +8081,6 @@ module Aws::IAM
|
|
7518
8081
|
# [1]: http://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html
|
7519
8082
|
# @return [Array<Types::Tag>]
|
7520
8083
|
#
|
7521
|
-
# @!attribute [rw] permissions_boundary
|
7522
|
-
# The ARN of the policy used to set the permissions boundary for the
|
7523
|
-
# role.
|
7524
|
-
#
|
7525
|
-
# For more information about permissions boundaries, see [Permissions
|
7526
|
-
# Boundaries for IAM Identities ][1] in the *IAM User Guide*.
|
7527
|
-
#
|
7528
|
-
#
|
7529
|
-
#
|
7530
|
-
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_boundaries.html
|
7531
|
-
# @return [Types::AttachedPermissionsBoundary]
|
7532
|
-
#
|
7533
8084
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/RoleDetail AWS API Documentation
|
7534
8085
|
#
|
7535
8086
|
class RoleDetail < Struct.new(
|
@@ -7542,8 +8093,8 @@ module Aws::IAM
|
|
7542
8093
|
:instance_profile_list,
|
7543
8094
|
:role_policy_list,
|
7544
8095
|
:attached_managed_policies,
|
7545
|
-
:
|
7546
|
-
:
|
8096
|
+
:permissions_boundary,
|
8097
|
+
:tags)
|
7547
8098
|
include Aws::Structure
|
7548
8099
|
end
|
7549
8100
|
|
@@ -7765,6 +8316,82 @@ module Aws::IAM
|
|
7765
8316
|
include Aws::Structure
|
7766
8317
|
end
|
7767
8318
|
|
8319
|
+
# Contains details about the most recent attempt to access the service.
|
8320
|
+
#
|
8321
|
+
# This data type is used as a response element in the
|
8322
|
+
# GetServiceLastAccessedDetails operation.
|
8323
|
+
#
|
8324
|
+
# @!attribute [rw] service_name
|
8325
|
+
# The name of the service in which access was attempted.
|
8326
|
+
# @return [String]
|
8327
|
+
#
|
8328
|
+
# @!attribute [rw] last_authenticated
|
8329
|
+
# The date and time, in [ISO 8601 date-time format][1], when an
|
8330
|
+
# authenticated entity most recently attempted to access the service.
|
8331
|
+
# AWS does not report unauthenticated requests.
|
8332
|
+
#
|
8333
|
+
# This field is null if no IAM entities attempted to access the
|
8334
|
+
# service within the [reporting period][2].
|
8335
|
+
#
|
8336
|
+
#
|
8337
|
+
#
|
8338
|
+
# [1]: http://www.iso.org/iso/iso8601
|
8339
|
+
# [2]: http://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_access-advisor.html#service-last-accessed-reporting-period
|
8340
|
+
# @return [Time]
|
8341
|
+
#
|
8342
|
+
# @!attribute [rw] service_namespace
|
8343
|
+
# The namespace of the service in which access was attempted.
|
8344
|
+
#
|
8345
|
+
# To learn the service namespace of a service, go to [Actions,
|
8346
|
+
# Resources, and Condition Keys for AWS Services][1] in the *IAM User
|
8347
|
+
# Guide*. Choose the name of the service to view details for that
|
8348
|
+
# service. In the first paragraph, find the service prefix. For
|
8349
|
+
# example, `(service prefix: a4b)`. For more information about service
|
8350
|
+
# namespaces, see [AWS Service Namespaces][2] in the *AWS General
|
8351
|
+
# Reference*.
|
8352
|
+
#
|
8353
|
+
#
|
8354
|
+
#
|
8355
|
+
# [1]: http://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_actions-resources-contextkeys.html
|
8356
|
+
# [2]: http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#genref-aws-service-namespaces
|
8357
|
+
# @return [String]
|
8358
|
+
#
|
8359
|
+
# @!attribute [rw] last_authenticated_entity
|
8360
|
+
# The ARN of the authenticated entity (user or role) that last
|
8361
|
+
# attempted to access the service. AWS does not report unauthenticated
|
8362
|
+
# requests.
|
8363
|
+
#
|
8364
|
+
# This field is null if no IAM entities attempted to access the
|
8365
|
+
# service within the [reporting period][1].
|
8366
|
+
#
|
8367
|
+
#
|
8368
|
+
#
|
8369
|
+
# [1]: http://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_access-advisor.html#service-last-accessed-reporting-period
|
8370
|
+
# @return [String]
|
8371
|
+
#
|
8372
|
+
# @!attribute [rw] total_authenticated_entities
|
8373
|
+
# The total number of authenticated entities that have attempted to
|
8374
|
+
# access the service.
|
8375
|
+
#
|
8376
|
+
# This field is null if no IAM entities attempted to access the
|
8377
|
+
# service within the [reporting period][1].
|
8378
|
+
#
|
8379
|
+
#
|
8380
|
+
#
|
8381
|
+
# [1]: http://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_access-advisor.html#service-last-accessed-reporting-period
|
8382
|
+
# @return [Integer]
|
8383
|
+
#
|
8384
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ServiceLastAccessed AWS API Documentation
|
8385
|
+
#
|
8386
|
+
class ServiceLastAccessed < Struct.new(
|
8387
|
+
:service_name,
|
8388
|
+
:last_authenticated,
|
8389
|
+
:service_namespace,
|
8390
|
+
:last_authenticated_entity,
|
8391
|
+
:total_authenticated_entities)
|
8392
|
+
include Aws::Structure
|
8393
|
+
end
|
8394
|
+
|
7768
8395
|
# Contains the details of a service-specific credential.
|
7769
8396
|
#
|
7770
8397
|
# @!attribute [rw] create_date
|
@@ -8001,7 +8628,7 @@ module Aws::IAM
|
|
8001
8628
|
#
|
8002
8629
|
# @!attribute [rw] resource_arns
|
8003
8630
|
# A list of ARNs of AWS resources to include in the simulation. If
|
8004
|
-
# this parameter is not provided then the value defaults to `*` (all
|
8631
|
+
# this parameter is not provided, then the value defaults to `*` (all
|
8005
8632
|
# resources). Each API in the `ActionNames` parameter is evaluated for
|
8006
8633
|
# each resource in this list. The simulation determines the access
|
8007
8634
|
# result (allowed or denied) of each combination and reports it in the
|
@@ -8131,16 +8758,16 @@ module Aws::IAM
|
|
8131
8758
|
# @return [String]
|
8132
8759
|
#
|
8133
8760
|
# @!attribute [rw] max_items
|
8134
|
-
#
|
8135
|
-
#
|
8136
|
-
#
|
8137
|
-
#
|
8138
|
-
#
|
8139
|
-
# If you do not include this parameter,
|
8140
|
-
# IAM might return fewer results, even when there
|
8141
|
-
# available. In that case, the `IsTruncated` response
|
8142
|
-
# `true
|
8143
|
-
# call that tells the service where to continue from.
|
8761
|
+
# Use this only when paginating results to indicate the maximum number
|
8762
|
+
# of items you want in the response. If additional items exist beyond
|
8763
|
+
# the maximum you specify, the `IsTruncated` response element is
|
8764
|
+
# `true`.
|
8765
|
+
#
|
8766
|
+
# If you do not include this parameter, the number of items defaults
|
8767
|
+
# to 100. Note that IAM might return fewer results, even when there
|
8768
|
+
# are more results available. In that case, the `IsTruncated` response
|
8769
|
+
# element returns `true`, and `Marker` contains a value to include in
|
8770
|
+
# the subsequent call that tells the service where to continue from.
|
8144
8771
|
# @return [Integer]
|
8145
8772
|
#
|
8146
8773
|
# @!attribute [rw] marker
|
@@ -8180,7 +8807,7 @@ module Aws::IAM
|
|
8180
8807
|
# Note that IAM might return fewer than the `MaxItems` number of
|
8181
8808
|
# results even when there are more results available. We recommend
|
8182
8809
|
# that you check `IsTruncated` after every call to ensure that you
|
8183
|
-
# receive all
|
8810
|
+
# receive all your results.
|
8184
8811
|
# @return [Boolean]
|
8185
8812
|
#
|
8186
8813
|
# @!attribute [rw] marker
|
@@ -8367,36 +8994,36 @@ module Aws::IAM
|
|
8367
8994
|
# simulation.
|
8368
8995
|
#
|
8369
8996
|
# Each of the EC2 scenarios requires that you specify instance, image,
|
8370
|
-
# and security
|
8997
|
+
# and security group resources. If your scenario includes an EBS
|
8371
8998
|
# volume, then you must specify that volume as a resource. If the EC2
|
8372
|
-
# scenario includes VPC, then you must supply the network
|
8999
|
+
# scenario includes VPC, then you must supply the network interface
|
8373
9000
|
# resource. If it includes an IP subnet, then you must specify the
|
8374
9001
|
# subnet resource. For more information on the EC2 scenario options,
|
8375
9002
|
# see [Supported Platforms][1] in the *Amazon EC2 User Guide*.
|
8376
9003
|
#
|
8377
9004
|
# * **EC2-Classic-InstanceStore**
|
8378
9005
|
#
|
8379
|
-
# instance, image, security
|
9006
|
+
# instance, image, security group
|
8380
9007
|
#
|
8381
9008
|
# * **EC2-Classic-EBS**
|
8382
9009
|
#
|
8383
|
-
# instance, image, security
|
9010
|
+
# instance, image, security group, volume
|
8384
9011
|
#
|
8385
9012
|
# * **EC2-VPC-InstanceStore**
|
8386
9013
|
#
|
8387
|
-
# instance, image, security
|
9014
|
+
# instance, image, security group, network interface
|
8388
9015
|
#
|
8389
9016
|
# * **EC2-VPC-InstanceStore-Subnet**
|
8390
9017
|
#
|
8391
|
-
# instance, image, security
|
9018
|
+
# instance, image, security group, network interface, subnet
|
8392
9019
|
#
|
8393
9020
|
# * **EC2-VPC-EBS**
|
8394
9021
|
#
|
8395
|
-
# instance, image, security
|
9022
|
+
# instance, image, security group, network interface, volume
|
8396
9023
|
#
|
8397
9024
|
# * **EC2-VPC-EBS-Subnet**
|
8398
9025
|
#
|
8399
|
-
# instance, image, security
|
9026
|
+
# instance, image, security group, network interface, subnet, volume
|
8400
9027
|
#
|
8401
9028
|
#
|
8402
9029
|
#
|
@@ -8404,16 +9031,16 @@ module Aws::IAM
|
|
8404
9031
|
# @return [String]
|
8405
9032
|
#
|
8406
9033
|
# @!attribute [rw] max_items
|
8407
|
-
#
|
8408
|
-
#
|
8409
|
-
#
|
8410
|
-
#
|
8411
|
-
#
|
8412
|
-
# If you do not include this parameter,
|
8413
|
-
# IAM might return fewer results, even when there
|
8414
|
-
# available. In that case, the `IsTruncated` response
|
8415
|
-
# `true
|
8416
|
-
# call that tells the service where to continue from.
|
9034
|
+
# Use this only when paginating results to indicate the maximum number
|
9035
|
+
# of items you want in the response. If additional items exist beyond
|
9036
|
+
# the maximum you specify, the `IsTruncated` response element is
|
9037
|
+
# `true`.
|
9038
|
+
#
|
9039
|
+
# If you do not include this parameter, the number of items defaults
|
9040
|
+
# to 100. Note that IAM might return fewer results, even when there
|
9041
|
+
# are more results available. In that case, the `IsTruncated` response
|
9042
|
+
# element returns `true`, and `Marker` contains a value to include in
|
9043
|
+
# the subsequent call that tells the service where to continue from.
|
8417
9044
|
# @return [Integer]
|
8418
9045
|
#
|
8419
9046
|
# @!attribute [rw] marker
|
@@ -8678,7 +9305,7 @@ module Aws::IAM
|
|
8678
9305
|
# @!attribute [rw] user_name
|
8679
9306
|
# The name of the user whose key you want to update.
|
8680
9307
|
#
|
8681
|
-
# This parameter allows (
|
9308
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
8682
9309
|
# characters consisting of upper and lowercase alphanumeric characters
|
8683
9310
|
# with no spaces. You can also include any of the following
|
8684
9311
|
# characters: \_+=,.@-
|
@@ -8691,7 +9318,7 @@ module Aws::IAM
|
|
8691
9318
|
# @!attribute [rw] access_key_id
|
8692
9319
|
# The access key ID of the secret access key you want to update.
|
8693
9320
|
#
|
8694
|
-
# This parameter allows (
|
9321
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
8695
9322
|
# characters that can consist of any upper or lowercased letter or
|
8696
9323
|
# digit.
|
8697
9324
|
#
|
@@ -8845,7 +9472,7 @@ module Aws::IAM
|
|
8845
9472
|
# @!attribute [rw] role_name
|
8846
9473
|
# The name of the role to update with the new policy.
|
8847
9474
|
#
|
8848
|
-
# This parameter allows (
|
9475
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
8849
9476
|
# characters consisting of upper and lowercase alphanumeric characters
|
8850
9477
|
# with no spaces. You can also include any of the following
|
8851
9478
|
# characters: \_+=,.@-
|
@@ -8896,7 +9523,7 @@ module Aws::IAM
|
|
8896
9523
|
# Name of the IAM group to update. If you're changing the name of the
|
8897
9524
|
# group, this is the original name.
|
8898
9525
|
#
|
8899
|
-
# This parameter allows (
|
9526
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
8900
9527
|
# characters consisting of upper and lowercase alphanumeric characters
|
8901
9528
|
# with no spaces. You can also include any of the following
|
8902
9529
|
# characters: \_+=,.@-
|
@@ -8910,7 +9537,7 @@ module Aws::IAM
|
|
8910
9537
|
# New path for the IAM group. Only include this if changing the
|
8911
9538
|
# group's path.
|
8912
9539
|
#
|
8913
|
-
# This parameter allows (
|
9540
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
8914
9541
|
# characters consisting of either a forward slash (/) by itself or a
|
8915
9542
|
# string that must begin and end with forward slashes. In addition, it
|
8916
9543
|
# can contain any ASCII character from the ! (\\u0021) through the DEL
|
@@ -8926,7 +9553,7 @@ module Aws::IAM
|
|
8926
9553
|
# New name for the IAM group. Only include this if changing the
|
8927
9554
|
# group's name.
|
8928
9555
|
#
|
8929
|
-
# This parameter allows (
|
9556
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
8930
9557
|
# characters consisting of upper and lowercase alphanumeric characters
|
8931
9558
|
# with no spaces. You can also include any of the following
|
8932
9559
|
# characters: \_+=,.@-
|
@@ -8957,7 +9584,7 @@ module Aws::IAM
|
|
8957
9584
|
# @!attribute [rw] user_name
|
8958
9585
|
# The name of the user whose password you want to update.
|
8959
9586
|
#
|
8960
|
-
# This parameter allows (
|
9587
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
8961
9588
|
# characters consisting of upper and lowercase alphanumeric characters
|
8962
9589
|
# with no spaces. You can also include any of the following
|
8963
9590
|
# characters: \_+=,.@-
|
@@ -9191,7 +9818,7 @@ module Aws::IAM
|
|
9191
9818
|
# @!attribute [rw] user_name
|
9192
9819
|
# The name of the IAM user associated with the SSH public key.
|
9193
9820
|
#
|
9194
|
-
# This parameter allows (
|
9821
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
9195
9822
|
# characters consisting of upper and lowercase alphanumeric characters
|
9196
9823
|
# with no spaces. You can also include any of the following
|
9197
9824
|
# characters: \_+=,.@-
|
@@ -9204,7 +9831,7 @@ module Aws::IAM
|
|
9204
9831
|
# @!attribute [rw] ssh_public_key_id
|
9205
9832
|
# The unique identifier for the SSH public key.
|
9206
9833
|
#
|
9207
|
-
# This parameter allows (
|
9834
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
9208
9835
|
# characters that can consist of any upper or lowercased letter or
|
9209
9836
|
# digit.
|
9210
9837
|
#
|
@@ -9240,7 +9867,7 @@ module Aws::IAM
|
|
9240
9867
|
# @!attribute [rw] server_certificate_name
|
9241
9868
|
# The name of the server certificate that you want to update.
|
9242
9869
|
#
|
9243
|
-
# This parameter allows (
|
9870
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
9244
9871
|
# characters consisting of upper and lowercase alphanumeric characters
|
9245
9872
|
# with no spaces. You can also include any of the following
|
9246
9873
|
# characters: \_+=,.@-
|
@@ -9254,7 +9881,7 @@ module Aws::IAM
|
|
9254
9881
|
# The new path for the server certificate. Include this only if you
|
9255
9882
|
# are updating the server certificate's path.
|
9256
9883
|
#
|
9257
|
-
# This parameter allows (
|
9884
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
9258
9885
|
# characters consisting of either a forward slash (/) by itself or a
|
9259
9886
|
# string that must begin and end with forward slashes. In addition, it
|
9260
9887
|
# can contain any ASCII character from the ! (\\u0021) through the DEL
|
@@ -9271,7 +9898,7 @@ module Aws::IAM
|
|
9271
9898
|
# are updating the server certificate's name. The name of the
|
9272
9899
|
# certificate cannot contain any spaces.
|
9273
9900
|
#
|
9274
|
-
# This parameter allows (
|
9901
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
9275
9902
|
# characters consisting of upper and lowercase alphanumeric characters
|
9276
9903
|
# with no spaces. You can also include any of the following
|
9277
9904
|
# characters: \_+=,.@-
|
@@ -9304,7 +9931,7 @@ module Aws::IAM
|
|
9304
9931
|
# credential. If you do not specify this value, then the operation
|
9305
9932
|
# assumes the user whose credentials are used to call the operation.
|
9306
9933
|
#
|
9307
|
-
# This parameter allows (
|
9934
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
9308
9935
|
# characters consisting of upper and lowercase alphanumeric characters
|
9309
9936
|
# with no spaces. You can also include any of the following
|
9310
9937
|
# characters: \_+=,.@-
|
@@ -9317,7 +9944,7 @@ module Aws::IAM
|
|
9317
9944
|
# @!attribute [rw] service_specific_credential_id
|
9318
9945
|
# The unique identifier of the service-specific credential.
|
9319
9946
|
#
|
9320
|
-
# This parameter allows (
|
9947
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
9321
9948
|
# characters that can consist of any upper or lowercased letter or
|
9322
9949
|
# digit.
|
9323
9950
|
#
|
@@ -9351,7 +9978,7 @@ module Aws::IAM
|
|
9351
9978
|
# @!attribute [rw] user_name
|
9352
9979
|
# The name of the IAM user the signing certificate belongs to.
|
9353
9980
|
#
|
9354
|
-
# This parameter allows (
|
9981
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
9355
9982
|
# characters consisting of upper and lowercase alphanumeric characters
|
9356
9983
|
# with no spaces. You can also include any of the following
|
9357
9984
|
# characters: \_+=,.@-
|
@@ -9364,7 +9991,7 @@ module Aws::IAM
|
|
9364
9991
|
# @!attribute [rw] certificate_id
|
9365
9992
|
# The ID of the signing certificate you want to update.
|
9366
9993
|
#
|
9367
|
-
# This parameter allows (
|
9994
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
9368
9995
|
# characters that can consist of any upper or lowercased letter or
|
9369
9996
|
# digit.
|
9370
9997
|
#
|
@@ -9401,7 +10028,7 @@ module Aws::IAM
|
|
9401
10028
|
# Name of the user to update. If you're changing the name of the
|
9402
10029
|
# user, this is the original user name.
|
9403
10030
|
#
|
9404
|
-
# This parameter allows (
|
10031
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
9405
10032
|
# characters consisting of upper and lowercase alphanumeric characters
|
9406
10033
|
# with no spaces. You can also include any of the following
|
9407
10034
|
# characters: \_+=,.@-
|
@@ -9415,7 +10042,7 @@ module Aws::IAM
|
|
9415
10042
|
# New path for the IAM user. Include this parameter only if you're
|
9416
10043
|
# changing the user's path.
|
9417
10044
|
#
|
9418
|
-
# This parameter allows (
|
10045
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
9419
10046
|
# characters consisting of either a forward slash (/) by itself or a
|
9420
10047
|
# string that must begin and end with forward slashes. In addition, it
|
9421
10048
|
# can contain any ASCII character from the ! (\\u0021) through the DEL
|
@@ -9431,7 +10058,7 @@ module Aws::IAM
|
|
9431
10058
|
# New name for the user. Include this parameter only if you're
|
9432
10059
|
# changing the user's name.
|
9433
10060
|
#
|
9434
|
-
# This parameter allows (
|
10061
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
9435
10062
|
# characters consisting of upper and lowercase alphanumeric characters
|
9436
10063
|
# with no spaces. You can also include any of the following
|
9437
10064
|
# characters: \_+=,.@-
|
@@ -9461,7 +10088,7 @@ module Aws::IAM
|
|
9461
10088
|
# @!attribute [rw] user_name
|
9462
10089
|
# The name of the IAM user to associate the SSH public key with.
|
9463
10090
|
#
|
9464
|
-
# This parameter allows (
|
10091
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
9465
10092
|
# characters consisting of upper and lowercase alphanumeric characters
|
9466
10093
|
# with no spaces. You can also include any of the following
|
9467
10094
|
# characters: \_+=,.@-
|
@@ -9473,7 +10100,7 @@ module Aws::IAM
|
|
9473
10100
|
#
|
9474
10101
|
# @!attribute [rw] ssh_public_key_body
|
9475
10102
|
# The SSH public key. The public key must be encoded in ssh-rsa format
|
9476
|
-
# or PEM format. The
|
10103
|
+
# or PEM format. The minimum bit-length of the public key is 2048
|
9477
10104
|
# bits. For example, you can generate a 2048-bit key, and the
|
9478
10105
|
# resulting PEM file is 1679 bytes long.
|
9479
10106
|
#
|
@@ -9531,7 +10158,7 @@ module Aws::IAM
|
|
9531
10158
|
# paths, see [IAM Identifiers][1] in the *IAM User Guide*.
|
9532
10159
|
#
|
9533
10160
|
# This parameter is optional. If it is not included, it defaults to a
|
9534
|
-
# slash (/). This parameter allows (
|
10161
|
+
# slash (/). This parameter allows (through its [regex pattern][2]) a
|
9535
10162
|
# string of characters consisting of either a forward slash (/) by
|
9536
10163
|
# itself or a string that must begin and end with forward slashes. In
|
9537
10164
|
# addition, it can contain any ASCII character from the ! (\\u0021)
|
@@ -9555,7 +10182,7 @@ module Aws::IAM
|
|
9555
10182
|
# The name for the server certificate. Do not include the path in this
|
9556
10183
|
# value. The name of the certificate cannot contain any spaces.
|
9557
10184
|
#
|
9558
|
-
# This parameter allows (
|
10185
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
9559
10186
|
# characters consisting of upper and lowercase alphanumeric characters
|
9560
10187
|
# with no spaces. You can also include any of the following
|
9561
10188
|
# characters: \_+=,.@-
|
@@ -9663,7 +10290,7 @@ module Aws::IAM
|
|
9663
10290
|
# @!attribute [rw] user_name
|
9664
10291
|
# The name of the user the signing certificate is for.
|
9665
10292
|
#
|
9666
|
-
# This parameter allows (
|
10293
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
9667
10294
|
# characters consisting of upper and lowercase alphanumeric characters
|
9668
10295
|
# with no spaces. You can also include any of the following
|
9669
10296
|
# characters: \_+=,.@-
|
@@ -9774,18 +10401,18 @@ module Aws::IAM
|
|
9774
10401
|
# list of AWS websites that capture a user's last sign-in time, see
|
9775
10402
|
# the [Credential Reports][2] topic in the *Using IAM* guide. If a
|
9776
10403
|
# password is used more than once in a five-minute span, only the
|
9777
|
-
# first use is returned in this field. If the field is null (no
|
9778
|
-
# then it indicates that they never signed in with a password.
|
9779
|
-
# can be because:
|
10404
|
+
# first use is returned in this field. If the field is null (no
|
10405
|
+
# value), then it indicates that they never signed in with a password.
|
10406
|
+
# This can be because:
|
9780
10407
|
#
|
9781
10408
|
# * The user never had a password.
|
9782
10409
|
#
|
9783
10410
|
# * A password exists but has not been used since IAM started tracking
|
9784
|
-
# this information on October
|
10411
|
+
# this information on October 20, 2014.
|
9785
10412
|
#
|
9786
|
-
# A null
|
9787
|
-
# the user does not currently have a password, but had one in
|
9788
|
-
# past, then this field contains the date and time the most recent
|
10413
|
+
# A null valuedoes not mean that the user *never* had a password.
|
10414
|
+
# Also, if the user does not currently have a password, but had one in
|
10415
|
+
# the past, then this field contains the date and time the most recent
|
9789
10416
|
# password was used.
|
9790
10417
|
#
|
9791
10418
|
# This value is returned only in the GetUser and ListUsers operations.
|
@@ -9796,6 +10423,16 @@ module Aws::IAM
|
|
9796
10423
|
# [2]: http://docs.aws.amazon.com/IAM/latest/UserGuide/credential-reports.html
|
9797
10424
|
# @return [Time]
|
9798
10425
|
#
|
10426
|
+
# @!attribute [rw] permissions_boundary
|
10427
|
+
# The ARN of the policy used to set the permissions boundary for the
|
10428
|
+
# user.
|
10429
|
+
#
|
10430
|
+
# For more information about permissions boundaries, see [Permissions
|
10431
|
+
# Boundaries for IAM Identities
|
10432
|
+
# ](IAM/latest/UserGuide/access_policies_boundaries.html) in the *IAM
|
10433
|
+
# User Guide*.
|
10434
|
+
# @return [Types::AttachedPermissionsBoundary]
|
10435
|
+
#
|
9799
10436
|
# @!attribute [rw] tags
|
9800
10437
|
# A list of tags that are associated with the specified user. For more
|
9801
10438
|
# information about tagging, see [Tagging IAM Identities][1] in the
|
@@ -9806,18 +10443,6 @@ module Aws::IAM
|
|
9806
10443
|
# [1]: http://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html
|
9807
10444
|
# @return [Array<Types::Tag>]
|
9808
10445
|
#
|
9809
|
-
# @!attribute [rw] permissions_boundary
|
9810
|
-
# The ARN of the policy used to set the permissions boundary for the
|
9811
|
-
# user.
|
9812
|
-
#
|
9813
|
-
# For more information about permissions boundaries, see [Permissions
|
9814
|
-
# Boundaries for IAM Identities ][1] in the *IAM User Guide*.
|
9815
|
-
#
|
9816
|
-
#
|
9817
|
-
#
|
9818
|
-
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_boundaries.html
|
9819
|
-
# @return [Types::AttachedPermissionsBoundary]
|
9820
|
-
#
|
9821
10446
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/User AWS API Documentation
|
9822
10447
|
#
|
9823
10448
|
class User < Struct.new(
|
@@ -9827,8 +10452,8 @@ module Aws::IAM
|
|
9827
10452
|
:arn,
|
9828
10453
|
:create_date,
|
9829
10454
|
:password_last_used,
|
9830
|
-
:
|
9831
|
-
:
|
10455
|
+
:permissions_boundary,
|
10456
|
+
:tags)
|
9832
10457
|
include Aws::Structure
|
9833
10458
|
end
|
9834
10459
|
|
@@ -9894,6 +10519,16 @@ module Aws::IAM
|
|
9894
10519
|
# A list of the managed policies attached to the user.
|
9895
10520
|
# @return [Array<Types::AttachedPolicy>]
|
9896
10521
|
#
|
10522
|
+
# @!attribute [rw] permissions_boundary
|
10523
|
+
# The ARN of the policy used to set the permissions boundary for the
|
10524
|
+
# user.
|
10525
|
+
#
|
10526
|
+
# For more information about permissions boundaries, see [Permissions
|
10527
|
+
# Boundaries for IAM Identities
|
10528
|
+
# ](IAM/latest/UserGuide/access_policies_boundaries.html) in the *IAM
|
10529
|
+
# User Guide*.
|
10530
|
+
# @return [Types::AttachedPermissionsBoundary]
|
10531
|
+
#
|
9897
10532
|
# @!attribute [rw] tags
|
9898
10533
|
# A list of tags that are associated with the specified user. For more
|
9899
10534
|
# information about tagging, see [Tagging IAM Identities][1] in the
|
@@ -9904,18 +10539,6 @@ module Aws::IAM
|
|
9904
10539
|
# [1]: http://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html
|
9905
10540
|
# @return [Array<Types::Tag>]
|
9906
10541
|
#
|
9907
|
-
# @!attribute [rw] permissions_boundary
|
9908
|
-
# The ARN of the policy used to set the permissions boundary for the
|
9909
|
-
# user.
|
9910
|
-
#
|
9911
|
-
# For more information about permissions boundaries, see [Permissions
|
9912
|
-
# Boundaries for IAM Identities ][1] in the *IAM User Guide*.
|
9913
|
-
#
|
9914
|
-
#
|
9915
|
-
#
|
9916
|
-
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_boundaries.html
|
9917
|
-
# @return [Types::AttachedPermissionsBoundary]
|
9918
|
-
#
|
9919
10542
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/UserDetail AWS API Documentation
|
9920
10543
|
#
|
9921
10544
|
class UserDetail < Struct.new(
|
@@ -9927,8 +10550,8 @@ module Aws::IAM
|
|
9927
10550
|
:user_policy_list,
|
9928
10551
|
:group_list,
|
9929
10552
|
:attached_managed_policies,
|
9930
|
-
:
|
9931
|
-
:
|
10553
|
+
:permissions_boundary,
|
10554
|
+
:tags)
|
9932
10555
|
include Aws::Structure
|
9933
10556
|
end
|
9934
10557
|
|
@@ -9939,8 +10562,8 @@ module Aws::IAM
|
|
9939
10562
|
# @return [String]
|
9940
10563
|
#
|
9941
10564
|
# @!attribute [rw] base_32_string_seed
|
9942
|
-
# The
|
9943
|
-
# `Base32StringSeed` is
|
10565
|
+
# The base32 seed defined as specified in [RFC3548][1]. The
|
10566
|
+
# `Base32StringSeed` is base64-encoded.
|
9944
10567
|
#
|
9945
10568
|
#
|
9946
10569
|
#
|
@@ -9950,10 +10573,10 @@ module Aws::IAM
|
|
9950
10573
|
# @!attribute [rw] qr_code_png
|
9951
10574
|
# A QR code PNG image that encodes
|
9952
10575
|
# `otpauth://totp/$virtualMFADeviceName@$AccountName?secret=$Base32String`
|
9953
|
-
# where `$virtualMFADeviceName` is one of the create call arguments
|
10576
|
+
# where `$virtualMFADeviceName` is one of the create call arguments.
|
9954
10577
|
# `AccountName` is the user name if set (otherwise, the account ID
|
9955
|
-
# otherwise), and `Base32String` is the seed in
|
9956
|
-
# `Base32String` value is
|
10578
|
+
# otherwise), and `Base32String` is the seed in base32 format. The
|
10579
|
+
# `Base32String` value is base64-encoded.
|
9957
10580
|
# @return [String]
|
9958
10581
|
#
|
9959
10582
|
# @!attribute [rw] user
|