aws-sdk-iam 1.55.0 → 1.56.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-iam.rb +1 -1
- data/lib/aws-sdk-iam/account_password_policy.rb +2 -2
- data/lib/aws-sdk-iam/assume_role_policy.rb +3 -3
- data/lib/aws-sdk-iam/client.rb +740 -671
- data/lib/aws-sdk-iam/current_user.rb +7 -6
- data/lib/aws-sdk-iam/group.rb +5 -5
- data/lib/aws-sdk-iam/group_policy.rb +5 -5
- data/lib/aws-sdk-iam/login_profile.rb +4 -4
- data/lib/aws-sdk-iam/policy.rb +11 -5
- data/lib/aws-sdk-iam/resource.rb +25 -20
- data/lib/aws-sdk-iam/role.rb +3 -3
- data/lib/aws-sdk-iam/role_policy.rb +5 -5
- data/lib/aws-sdk-iam/types.rb +563 -506
- data/lib/aws-sdk-iam/user.rb +14 -13
- data/lib/aws-sdk-iam/user_policy.rb +5 -5
- metadata +2 -2
@@ -80,12 +80,13 @@ module Aws::IAM
|
|
80
80
|
end
|
81
81
|
|
82
82
|
# The date and time, in [ISO 8601 date-time format][1], when the user's
|
83
|
-
# password was last used to sign in to an
|
84
|
-
# websites that capture a user's last
|
85
|
-
# reports][2] topic in the *IAM User
|
86
|
-
# than once in a five-minute span,
|
87
|
-
# this field. If the field is null (no
|
88
|
-
# they never signed in with a password.
|
83
|
+
# password was last used to sign in to an Amazon Web Services website.
|
84
|
+
# For a list of Amazon Web Services websites that capture a user's last
|
85
|
+
# sign-in time, see the [Credential reports][2] topic in the *IAM User
|
86
|
+
# Guide*. If a password is used more than once in a five-minute span,
|
87
|
+
# only the first use is returned in this field. If the field is null (no
|
88
|
+
# value), then it indicates that they never signed in with a password.
|
89
|
+
# This can be because:
|
89
90
|
#
|
90
91
|
# * The user never had a password.
|
91
92
|
#
|
data/lib/aws-sdk-iam/group.rb
CHANGED
@@ -249,7 +249,7 @@ module Aws::IAM
|
|
249
249
|
# The Amazon Resource Name (ARN) of the IAM policy you want to attach.
|
250
250
|
#
|
251
251
|
# For more information about ARNs, see [Amazon Resource Names (ARNs)][1]
|
252
|
-
# in the *
|
252
|
+
# in the *Amazon Web Services General Reference*.
|
253
253
|
#
|
254
254
|
#
|
255
255
|
#
|
@@ -317,10 +317,10 @@ module Aws::IAM
|
|
317
317
|
# @option options [required, String] :policy_document
|
318
318
|
# The policy document.
|
319
319
|
#
|
320
|
-
# You must provide policies in JSON format in IAM. However, for
|
320
|
+
# You must provide policies in JSON format in IAM. However, for
|
321
321
|
# CloudFormation templates formatted in YAML, you can provide the policy
|
322
|
-
# in JSON or YAML format.
|
323
|
-
#
|
322
|
+
# in JSON or YAML format. CloudFormation always converts a YAML policy
|
323
|
+
# to JSON format before submitting it to = IAM.
|
324
324
|
#
|
325
325
|
# The [regex pattern][1] used to validate this parameter is a string of
|
326
326
|
# characters consisting of the following:
|
@@ -369,7 +369,7 @@ module Aws::IAM
|
|
369
369
|
# The Amazon Resource Name (ARN) of the IAM policy you want to detach.
|
370
370
|
#
|
371
371
|
# For more information about ARNs, see [Amazon Resource Names (ARNs)][1]
|
372
|
-
# in the *
|
372
|
+
# in the *Amazon Web Services General Reference*.
|
373
373
|
#
|
374
374
|
#
|
375
375
|
#
|
@@ -46,8 +46,8 @@ module Aws::IAM
|
|
46
46
|
# The policy document.
|
47
47
|
#
|
48
48
|
# IAM stores policies in JSON format. However, resources that were
|
49
|
-
# created using
|
50
|
-
#
|
49
|
+
# created using CloudFormation templates can be formatted in YAML.
|
50
|
+
# CloudFormation always converts a YAML policy to JSON format before
|
51
51
|
# submitting it to IAM.
|
52
52
|
# @return [String]
|
53
53
|
def policy_document
|
@@ -214,10 +214,10 @@ module Aws::IAM
|
|
214
214
|
# @option options [required, String] :policy_document
|
215
215
|
# The policy document.
|
216
216
|
#
|
217
|
-
# You must provide policies in JSON format in IAM. However, for
|
217
|
+
# You must provide policies in JSON format in IAM. However, for
|
218
218
|
# CloudFormation templates formatted in YAML, you can provide the policy
|
219
|
-
# in JSON or YAML format.
|
220
|
-
#
|
219
|
+
# in JSON or YAML format. CloudFormation always converts a YAML policy
|
220
|
+
# to JSON format before submitting it to = IAM.
|
221
221
|
#
|
222
222
|
# The [regex pattern][1] used to validate this parameter is a string of
|
223
223
|
# characters consisting of the following:
|
@@ -197,8 +197,8 @@ module Aws::IAM
|
|
197
197
|
# character range (`\u00FF`). You can also include the tab (`\u0009`),
|
198
198
|
# line feed (`\u000A`), and carriage return (`\u000D`) characters. Any
|
199
199
|
# of these characters are valid in a password. However, many tools, such
|
200
|
-
# as the
|
201
|
-
#
|
200
|
+
# as the Management Console, might restrict the ability to type certain
|
201
|
+
# characters because they have special meaning within that tool.
|
202
202
|
#
|
203
203
|
#
|
204
204
|
#
|
@@ -251,8 +251,8 @@ module Aws::IAM
|
|
251
251
|
# carriage return (`\u000D`)
|
252
252
|
#
|
253
253
|
# However, the format can be further restricted by the account
|
254
|
-
# administrator by setting a password policy on the
|
255
|
-
#
|
254
|
+
# administrator by setting a password policy on the account. For more
|
255
|
+
# information, see UpdateAccountPasswordPolicy.
|
256
256
|
#
|
257
257
|
#
|
258
258
|
#
|
data/lib/aws-sdk-iam/policy.rb
CHANGED
@@ -368,12 +368,17 @@ module Aws::IAM
|
|
368
368
|
# The JSON policy document that you want to use as the content for this
|
369
369
|
# new version of the policy.
|
370
370
|
#
|
371
|
-
# You must provide policies in JSON format in IAM. However, for
|
371
|
+
# You must provide policies in JSON format in IAM. However, for
|
372
372
|
# CloudFormation templates formatted in YAML, you can provide the policy
|
373
|
-
# in JSON or YAML format.
|
374
|
-
#
|
373
|
+
# in JSON or YAML format. CloudFormation always converts a YAML policy
|
374
|
+
# to JSON format before submitting it to IAM.
|
375
375
|
#
|
376
|
-
# The
|
376
|
+
# The maximum length of the policy document that you can pass in this
|
377
|
+
# operation, including whitespace, is listed below. To view the maximum
|
378
|
+
# character counts of a managed policy with no whitespaces, see [IAM and
|
379
|
+
# STS character quotas][1].
|
380
|
+
#
|
381
|
+
# The [regex pattern][2] used to validate this parameter is a string of
|
377
382
|
# characters consisting of the following:
|
378
383
|
#
|
379
384
|
# * Any printable ASCII character ranging from the space character
|
@@ -387,7 +392,8 @@ module Aws::IAM
|
|
387
392
|
#
|
388
393
|
#
|
389
394
|
#
|
390
|
-
# [1]:
|
395
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-quotas.html#reference_iam-quotas-entity-length
|
396
|
+
# [2]: http://wikipedia.org/wiki/regex
|
391
397
|
# @option options [Boolean] :set_as_default
|
392
398
|
# Specifies whether to set this version as the policy's default
|
393
399
|
# version.
|
data/lib/aws-sdk-iam/resource.rb
CHANGED
@@ -45,7 +45,7 @@ module Aws::IAM
|
|
45
45
|
# @option options [required, String] :old_password
|
46
46
|
# The IAM user's current password.
|
47
47
|
# @option options [required, String] :new_password
|
48
|
-
# The new password. The new password must conform to the
|
48
|
+
# The new password. The new password must conform to the account's
|
49
49
|
# password policy, if one exists.
|
50
50
|
#
|
51
51
|
# The [regex pattern][1] that is used to validate this parameter is a
|
@@ -54,8 +54,8 @@ module Aws::IAM
|
|
54
54
|
# character range (`\u00FF`). You can also include the tab (`\u0009`),
|
55
55
|
# line feed (`\u000A`), and carriage return (`\u000D`) characters. Any
|
56
56
|
# of these characters are valid in a password. However, many tools, such
|
57
|
-
# as the
|
58
|
-
#
|
57
|
+
# as the Management Console, might restrict the ability to type certain
|
58
|
+
# characters because they have special meaning within that tool.
|
59
59
|
#
|
60
60
|
#
|
61
61
|
#
|
@@ -139,8 +139,8 @@ module Aws::IAM
|
|
139
139
|
# uses the default value of `false`. The result is that passwords do not
|
140
140
|
# require at least one lowercase character.
|
141
141
|
# @option options [Boolean] :allow_users_to_change_password
|
142
|
-
# Allows all IAM users in your account to use the
|
143
|
-
#
|
142
|
+
# Allows all IAM users in your account to use the Management Console to
|
143
|
+
# change their own passwords. For more information, see [Letting IAM
|
144
144
|
# users change their own passwords][1] in the *IAM User Guide*.
|
145
145
|
#
|
146
146
|
# If you do not specify a value for this parameter, then the operation
|
@@ -333,15 +333,20 @@ module Aws::IAM
|
|
333
333
|
# The JSON policy document that you want to use as the content for the
|
334
334
|
# new policy.
|
335
335
|
#
|
336
|
-
# You must provide policies in JSON format in IAM. However, for
|
336
|
+
# You must provide policies in JSON format in IAM. However, for
|
337
337
|
# CloudFormation templates formatted in YAML, you can provide the policy
|
338
|
-
# in JSON or YAML format.
|
339
|
-
#
|
338
|
+
# in JSON or YAML format. CloudFormation always converts a YAML policy
|
339
|
+
# to JSON format before submitting it to IAM.
|
340
|
+
#
|
341
|
+
# The maximum length of the policy document that you can pass in this
|
342
|
+
# operation, including whitespace, is listed below. To view the maximum
|
343
|
+
# character counts of a managed policy with no whitespaces, see [IAM and
|
344
|
+
# STS character quotas][1].
|
340
345
|
#
|
341
346
|
# To learn more about JSON policy grammar, see [Grammar of the IAM JSON
|
342
|
-
# policy language][
|
347
|
+
# policy language][2] in the *IAM User Guide*.
|
343
348
|
#
|
344
|
-
# The [regex pattern][
|
349
|
+
# The [regex pattern][3] used to validate this parameter is a string of
|
345
350
|
# characters consisting of the following:
|
346
351
|
#
|
347
352
|
# * Any printable ASCII character ranging from the space character
|
@@ -355,8 +360,9 @@ module Aws::IAM
|
|
355
360
|
#
|
356
361
|
#
|
357
362
|
#
|
358
|
-
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/
|
359
|
-
# [2]:
|
363
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-quotas.html#reference_iam-quotas-entity-length
|
364
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_grammar.html
|
365
|
+
# [3]: http://wikipedia.org/wiki/regex
|
360
366
|
# @option options [String] :description
|
361
367
|
# A friendly description of the policy.
|
362
368
|
#
|
@@ -436,10 +442,9 @@ module Aws::IAM
|
|
436
442
|
# permission to assume the role.
|
437
443
|
#
|
438
444
|
# In IAM, you must provide a JSON policy that has been converted to a
|
439
|
-
# string. However, for
|
440
|
-
#
|
441
|
-
#
|
442
|
-
# IAM.
|
445
|
+
# string. However, for CloudFormation templates formatted in YAML, you
|
446
|
+
# can provide the policy in JSON or YAML format. CloudFormation always
|
447
|
+
# converts a YAML policy to JSON format before submitting it to IAM.
|
443
448
|
#
|
444
449
|
# The [regex pattern][1] used to validate this parameter is a string of
|
445
450
|
# characters consisting of the following:
|
@@ -467,7 +472,7 @@ module Aws::IAM
|
|
467
472
|
# default maximum of one hour is applied. This setting can have a value
|
468
473
|
# from 1 hour to 12 hours.
|
469
474
|
#
|
470
|
-
# Anyone who assumes the role from the
|
475
|
+
# Anyone who assumes the role from the or API can use the
|
471
476
|
# `DurationSeconds` API parameter or the `duration-seconds` CLI
|
472
477
|
# parameter to request a longer session. The `MaxSessionDuration`
|
473
478
|
# setting determines the maximum duration that can be requested using
|
@@ -1009,9 +1014,9 @@ module Aws::IAM
|
|
1009
1014
|
# @option options [String] :scope
|
1010
1015
|
# The scope to use for filtering the results.
|
1011
1016
|
#
|
1012
|
-
# To list only
|
1013
|
-
# the customer managed policies in your
|
1014
|
-
# `Local`.
|
1017
|
+
# To list only Amazon Web Services managed policies, set `Scope` to
|
1018
|
+
# `AWS`. To list only the customer managed policies in your account, set
|
1019
|
+
# `Scope` to `Local`.
|
1015
1020
|
#
|
1016
1021
|
# This parameter is optional. If it is not included, or if it is set to
|
1017
1022
|
# `All`, all policies are returned.
|
data/lib/aws-sdk-iam/role.rb
CHANGED
@@ -94,7 +94,7 @@ module Aws::IAM
|
|
94
94
|
end
|
95
95
|
|
96
96
|
# The maximum session duration (in seconds) for the specified role.
|
97
|
-
# Anyone who uses the
|
97
|
+
# Anyone who uses the CLI, or API to assume the role can specify the
|
98
98
|
# duration using the optional `DurationSeconds` API parameter or
|
99
99
|
# `duration-seconds` CLI parameter.
|
100
100
|
# @return [Integer]
|
@@ -287,7 +287,7 @@ module Aws::IAM
|
|
287
287
|
# The Amazon Resource Name (ARN) of the IAM policy you want to attach.
|
288
288
|
#
|
289
289
|
# For more information about ARNs, see [Amazon Resource Names (ARNs)][1]
|
290
|
-
# in the *
|
290
|
+
# in the *Amazon Web Services General Reference*.
|
291
291
|
#
|
292
292
|
#
|
293
293
|
#
|
@@ -320,7 +320,7 @@ module Aws::IAM
|
|
320
320
|
# The Amazon Resource Name (ARN) of the IAM policy you want to detach.
|
321
321
|
#
|
322
322
|
# For more information about ARNs, see [Amazon Resource Names (ARNs)][1]
|
323
|
-
# in the *
|
323
|
+
# in the *Amazon Web Services General Reference*.
|
324
324
|
#
|
325
325
|
#
|
326
326
|
#
|
@@ -46,8 +46,8 @@ module Aws::IAM
|
|
46
46
|
# The policy document.
|
47
47
|
#
|
48
48
|
# IAM stores policies in JSON format. However, resources that were
|
49
|
-
# created using
|
50
|
-
#
|
49
|
+
# created using CloudFormation templates can be formatted in YAML.
|
50
|
+
# CloudFormation always converts a YAML policy to JSON format before
|
51
51
|
# submitting it to IAM.
|
52
52
|
# @return [String]
|
53
53
|
def policy_document
|
@@ -214,10 +214,10 @@ module Aws::IAM
|
|
214
214
|
# @option options [required, String] :policy_document
|
215
215
|
# The policy document.
|
216
216
|
#
|
217
|
-
# You must provide policies in JSON format in IAM. However, for
|
217
|
+
# You must provide policies in JSON format in IAM. However, for
|
218
218
|
# CloudFormation templates formatted in YAML, you can provide the policy
|
219
|
-
# in JSON or YAML format.
|
220
|
-
#
|
219
|
+
# in JSON or YAML format. CloudFormation always converts a YAML policy
|
220
|
+
# to JSON format before submitting it to IAM.
|
221
221
|
#
|
222
222
|
# The [regex pattern][1] used to validate this parameter is a string of
|
223
223
|
# characters consisting of the following:
|
data/lib/aws-sdk-iam/types.rb
CHANGED
@@ -11,9 +11,10 @@ module Aws::IAM
|
|
11
11
|
module Types
|
12
12
|
|
13
13
|
# An object that contains details about when a principal in the reported
|
14
|
-
#
|
15
|
-
# principal can be an IAM user, an IAM role, or the
|
16
|
-
# user within the reported Organizations
|
14
|
+
# Organizations entity last attempted to access an Amazon Web Services
|
15
|
+
# service. A principal can be an IAM user, an IAM role, or the Amazon
|
16
|
+
# Web Services account root user within the reported Organizations
|
17
|
+
# entity.
|
17
18
|
#
|
18
19
|
# This data type is a response element in the
|
19
20
|
# GetOrganizationsAccessReport operation.
|
@@ -26,12 +27,13 @@ module Aws::IAM
|
|
26
27
|
# The namespace of the service in which access was attempted.
|
27
28
|
#
|
28
29
|
# To learn the service namespace of a service, see [Actions,
|
29
|
-
# resources, and condition keys for
|
30
|
-
# Authorization Reference*. Choose the name of the
|
31
|
-
# details for that service. In the first paragraph,
|
32
|
-
# prefix. For example, `(service prefix: a4b)`. For
|
33
|
-
# about service namespaces, see [
|
34
|
-
# the *
|
30
|
+
# resources, and condition keys for Amazon Web Services services][1]
|
31
|
+
# in the *Service Authorization Reference*. Choose the name of the
|
32
|
+
# service to view details for that service. In the first paragraph,
|
33
|
+
# find the service prefix. For example, `(service prefix: a4b)`. For
|
34
|
+
# more information about service namespaces, see [Amazon Web Services
|
35
|
+
# service namespaces][2] in the *Amazon Web Services General
|
36
|
+
# Reference*.
|
35
37
|
#
|
36
38
|
#
|
37
39
|
#
|
@@ -54,7 +56,8 @@ module Aws::IAM
|
|
54
56
|
# @!attribute [rw] entity_path
|
55
57
|
# The path of the Organizations entity (root, organizational unit, or
|
56
58
|
# account) from which an authenticated principal last attempted to
|
57
|
-
# access the service.
|
59
|
+
# access the service. Amazon Web Services does not report
|
60
|
+
# unauthenticated requests.
|
58
61
|
#
|
59
62
|
# This field is null if no principals (IAM users, IAM roles, or root
|
60
63
|
# users) in the reported Organizations entity attempted to access the
|
@@ -68,7 +71,8 @@ module Aws::IAM
|
|
68
71
|
# @!attribute [rw] last_authenticated_time
|
69
72
|
# The date and time, in [ISO 8601 date-time format][1], when an
|
70
73
|
# authenticated principal most recently attempted to access the
|
71
|
-
# service.
|
74
|
+
# service. Amazon Web Services does not report unauthenticated
|
75
|
+
# requests.
|
72
76
|
#
|
73
77
|
# This field is null if no principals in the reported Organizations
|
74
78
|
# entity attempted to access the service within the [reporting
|
@@ -99,7 +103,7 @@ module Aws::IAM
|
|
99
103
|
include Aws::Structure
|
100
104
|
end
|
101
105
|
|
102
|
-
# Contains information about an
|
106
|
+
# Contains information about an Amazon Web Services access key.
|
103
107
|
#
|
104
108
|
# This data type is used as a response element in the CreateAccessKey
|
105
109
|
# and ListAccessKeys operations.
|
@@ -144,8 +148,9 @@ module Aws::IAM
|
|
144
148
|
include Aws::Structure
|
145
149
|
end
|
146
150
|
|
147
|
-
# Contains information about the last time an
|
148
|
-
# since IAM began tracking this information on April 22,
|
151
|
+
# Contains information about the last time an Amazon Web Services access
|
152
|
+
# key was used since IAM began tracking this information on April 22,
|
153
|
+
# 2015.
|
149
154
|
#
|
150
155
|
# This data type is used as a response element in the
|
151
156
|
# GetAccessKeyLastUsed operation.
|
@@ -168,9 +173,9 @@ module Aws::IAM
|
|
168
173
|
# @return [Time]
|
169
174
|
#
|
170
175
|
# @!attribute [rw] service_name
|
171
|
-
# The name of the
|
172
|
-
# recently used. The value of this field is "N/A" in
|
173
|
-
# situations:
|
176
|
+
# The name of the Amazon Web Services service with which this access
|
177
|
+
# key was most recently used. The value of this field is "N/A" in
|
178
|
+
# the following situations:
|
174
179
|
#
|
175
180
|
# * The user does not have an access key.
|
176
181
|
#
|
@@ -181,8 +186,8 @@ module Aws::IAM
|
|
181
186
|
# @return [String]
|
182
187
|
#
|
183
188
|
# @!attribute [rw] region
|
184
|
-
# The
|
185
|
-
#
|
189
|
+
# The Region where this access key was most recently used. The value
|
190
|
+
# for this field is "N/A" in the following situations:
|
186
191
|
#
|
187
192
|
# * The user does not have an access key.
|
188
193
|
#
|
@@ -191,8 +196,8 @@ module Aws::IAM
|
|
191
196
|
#
|
192
197
|
# * There is no sign-in data associated with the user.
|
193
198
|
#
|
194
|
-
# For more information about
|
195
|
-
#
|
199
|
+
# For more information about Regions, see [Regions and endpoints][1]
|
200
|
+
# in the Amazon Web Services General Reference.
|
196
201
|
#
|
197
202
|
#
|
198
203
|
#
|
@@ -209,7 +214,8 @@ module Aws::IAM
|
|
209
214
|
include Aws::Structure
|
210
215
|
end
|
211
216
|
|
212
|
-
# Contains information about an
|
217
|
+
# Contains information about an Amazon Web Services access key, without
|
218
|
+
# its secret key.
|
213
219
|
#
|
214
220
|
# This data type is used as a response element in the ListAccessKeys
|
215
221
|
# operation.
|
@@ -383,7 +389,7 @@ module Aws::IAM
|
|
383
389
|
# The Amazon Resource Name (ARN) of the IAM policy you want to attach.
|
384
390
|
#
|
385
391
|
# For more information about ARNs, see [Amazon Resource Names
|
386
|
-
# (ARNs)][1] in the *
|
392
|
+
# (ARNs)][1] in the *Amazon Web Services General Reference*.
|
387
393
|
#
|
388
394
|
#
|
389
395
|
#
|
@@ -425,7 +431,7 @@ module Aws::IAM
|
|
425
431
|
# The Amazon Resource Name (ARN) of the IAM policy you want to attach.
|
426
432
|
#
|
427
433
|
# For more information about ARNs, see [Amazon Resource Names
|
428
|
-
# (ARNs)][1] in the *
|
434
|
+
# (ARNs)][1] in the *Amazon Web Services General Reference*.
|
429
435
|
#
|
430
436
|
#
|
431
437
|
#
|
@@ -467,7 +473,7 @@ module Aws::IAM
|
|
467
473
|
# The Amazon Resource Name (ARN) of the IAM policy you want to attach.
|
468
474
|
#
|
469
475
|
# For more information about ARNs, see [Amazon Resource Names
|
470
|
-
# (ARNs)][1] in the *
|
476
|
+
# (ARNs)][1] in the *Amazon Web Services General Reference*.
|
471
477
|
#
|
472
478
|
#
|
473
479
|
#
|
@@ -535,11 +541,11 @@ module Aws::IAM
|
|
535
541
|
# @return [String]
|
536
542
|
#
|
537
543
|
# @!attribute [rw] policy_arn
|
538
|
-
# The Amazon Resource Name (ARN). ARNs are unique identifiers for
|
539
|
-
# resources.
|
544
|
+
# The Amazon Resource Name (ARN). ARNs are unique identifiers for
|
545
|
+
# Amazon Web Services resources.
|
540
546
|
#
|
541
547
|
# For more information about ARNs, go to [Amazon Resource Names
|
542
|
-
# (ARNs)][1] in the *
|
548
|
+
# (ARNs)][1] in the *Amazon Web Services General Reference*.
|
543
549
|
#
|
544
550
|
#
|
545
551
|
#
|
@@ -568,8 +574,8 @@ module Aws::IAM
|
|
568
574
|
# @return [String]
|
569
575
|
#
|
570
576
|
# @!attribute [rw] new_password
|
571
|
-
# The new password. The new password must conform to the
|
572
|
-
#
|
577
|
+
# The new password. The new password must conform to the account's
|
578
|
+
# password policy, if one exists.
|
573
579
|
#
|
574
580
|
# The [regex pattern][1] that is used to validate this parameter is a
|
575
581
|
# string of characters. That string can include almost any printable
|
@@ -577,9 +583,9 @@ module Aws::IAM
|
|
577
583
|
# ASCII character range (`\u00FF`). You can also include the tab
|
578
584
|
# (`\u0009`), line feed (`\u000A`), and carriage return (`\u000D`)
|
579
585
|
# characters. Any of these characters are valid in a password.
|
580
|
-
# However, many tools, such as the
|
581
|
-
#
|
582
|
-
#
|
586
|
+
# However, many tools, such as the Management Console, might restrict
|
587
|
+
# the ability to type certain characters because they have special
|
588
|
+
# meaning within that tool.
|
583
589
|
#
|
584
590
|
#
|
585
591
|
#
|
@@ -905,9 +911,9 @@ module Aws::IAM
|
|
905
911
|
# ASCII character range (`\u00FF`). You can also include the tab
|
906
912
|
# (`\u0009`), line feed (`\u000A`), and carriage return (`\u000D`)
|
907
913
|
# characters. Any of these characters are valid in a password.
|
908
|
-
# However, many tools, such as the
|
909
|
-
#
|
910
|
-
#
|
914
|
+
# However, many tools, such as the Management Console, might restrict
|
915
|
+
# the ability to type certain characters because they have special
|
916
|
+
# meaning within that tool.
|
911
917
|
#
|
912
918
|
#
|
913
919
|
#
|
@@ -966,10 +972,9 @@ module Aws::IAM
|
|
966
972
|
# only a hostname, like `https://server.example.org` or
|
967
973
|
# `https://example.com`.
|
968
974
|
#
|
969
|
-
# You cannot register the same provider multiple times in a single
|
975
|
+
# You cannot register the same provider multiple times in a single
|
970
976
|
# account. If you try to submit a URL that has already been used for
|
971
|
-
# an OpenID Connect provider in the
|
972
|
-
# error.
|
977
|
+
# an OpenID Connect provider in the account, you will get an error.
|
973
978
|
# @return [String]
|
974
979
|
#
|
975
980
|
# @!attribute [rw] client_id_list
|
@@ -1124,15 +1129,20 @@ module Aws::IAM
|
|
1124
1129
|
# The JSON policy document that you want to use as the content for the
|
1125
1130
|
# new policy.
|
1126
1131
|
#
|
1127
|
-
# You must provide policies in JSON format in IAM. However, for
|
1132
|
+
# You must provide policies in JSON format in IAM. However, for
|
1128
1133
|
# CloudFormation templates formatted in YAML, you can provide the
|
1129
|
-
# policy in JSON or YAML format.
|
1130
|
-
#
|
1134
|
+
# policy in JSON or YAML format. CloudFormation always converts a YAML
|
1135
|
+
# policy to JSON format before submitting it to IAM.
|
1136
|
+
#
|
1137
|
+
# The maximum length of the policy document that you can pass in this
|
1138
|
+
# operation, including whitespace, is listed below. To view the
|
1139
|
+
# maximum character counts of a managed policy with no whitespaces,
|
1140
|
+
# see [IAM and STS character quotas][1].
|
1131
1141
|
#
|
1132
1142
|
# To learn more about JSON policy grammar, see [Grammar of the IAM
|
1133
|
-
# JSON policy language][
|
1143
|
+
# JSON policy language][2] in the *IAM User Guide*.
|
1134
1144
|
#
|
1135
|
-
# The [regex pattern][
|
1145
|
+
# The [regex pattern][3] used to validate this parameter is a string
|
1136
1146
|
# of characters consisting of the following:
|
1137
1147
|
#
|
1138
1148
|
# * Any printable ASCII character ranging from the space character
|
@@ -1146,8 +1156,9 @@ module Aws::IAM
|
|
1146
1156
|
#
|
1147
1157
|
#
|
1148
1158
|
#
|
1149
|
-
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/
|
1150
|
-
# [2]:
|
1159
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-quotas.html#reference_iam-quotas-entity-length
|
1160
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_grammar.html
|
1161
|
+
# [3]: http://wikipedia.org/wiki/regex
|
1151
1162
|
# @return [String]
|
1152
1163
|
#
|
1153
1164
|
# @!attribute [rw] description
|
@@ -1218,7 +1229,7 @@ module Aws::IAM
|
|
1218
1229
|
# to add a new version.
|
1219
1230
|
#
|
1220
1231
|
# For more information about ARNs, see [Amazon Resource Names
|
1221
|
-
# (ARNs)][1] in the *
|
1232
|
+
# (ARNs)][1] in the *Amazon Web Services General Reference*.
|
1222
1233
|
#
|
1223
1234
|
#
|
1224
1235
|
#
|
@@ -1229,12 +1240,17 @@ module Aws::IAM
|
|
1229
1240
|
# The JSON policy document that you want to use as the content for
|
1230
1241
|
# this new version of the policy.
|
1231
1242
|
#
|
1232
|
-
# You must provide policies in JSON format in IAM. However, for
|
1243
|
+
# You must provide policies in JSON format in IAM. However, for
|
1233
1244
|
# CloudFormation templates formatted in YAML, you can provide the
|
1234
|
-
# policy in JSON or YAML format.
|
1235
|
-
#
|
1245
|
+
# policy in JSON or YAML format. CloudFormation always converts a YAML
|
1246
|
+
# policy to JSON format before submitting it to IAM.
|
1236
1247
|
#
|
1237
|
-
# The
|
1248
|
+
# The maximum length of the policy document that you can pass in this
|
1249
|
+
# operation, including whitespace, is listed below. To view the
|
1250
|
+
# maximum character counts of a managed policy with no whitespaces,
|
1251
|
+
# see [IAM and STS character quotas][1].
|
1252
|
+
#
|
1253
|
+
# The [regex pattern][2] used to validate this parameter is a string
|
1238
1254
|
# of characters consisting of the following:
|
1239
1255
|
#
|
1240
1256
|
# * Any printable ASCII character ranging from the space character
|
@@ -1248,7 +1264,8 @@ module Aws::IAM
|
|
1248
1264
|
#
|
1249
1265
|
#
|
1250
1266
|
#
|
1251
|
-
# [1]:
|
1267
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-quotas.html#reference_iam-quotas-entity-length
|
1268
|
+
# [2]: http://wikipedia.org/wiki/regex
|
1252
1269
|
# @return [String]
|
1253
1270
|
#
|
1254
1271
|
# @!attribute [rw] set_as_default
|
@@ -1343,10 +1360,9 @@ module Aws::IAM
|
|
1343
1360
|
# permission to assume the role.
|
1344
1361
|
#
|
1345
1362
|
# In IAM, you must provide a JSON policy that has been converted to a
|
1346
|
-
# string. However, for
|
1347
|
-
#
|
1348
|
-
#
|
1349
|
-
# submitting it to IAM.
|
1363
|
+
# string. However, for CloudFormation templates formatted in YAML, you
|
1364
|
+
# can provide the policy in JSON or YAML format. CloudFormation always
|
1365
|
+
# converts a YAML policy to JSON format before submitting it to IAM.
|
1350
1366
|
#
|
1351
1367
|
# The [regex pattern][1] used to validate this parameter is a string
|
1352
1368
|
# of characters consisting of the following:
|
@@ -1378,7 +1394,7 @@ module Aws::IAM
|
|
1378
1394
|
# the default maximum of one hour is applied. This setting can have a
|
1379
1395
|
# value from 1 hour to 12 hours.
|
1380
1396
|
#
|
1381
|
-
# Anyone who assumes the role from the
|
1397
|
+
# Anyone who assumes the role from the or API can use the
|
1382
1398
|
# `DurationSeconds` API parameter or the `duration-seconds` CLI
|
1383
1399
|
# parameter to request a longer session. The `MaxSessionDuration`
|
1384
1400
|
# setting determines the maximum duration that can be requested using
|
@@ -1552,16 +1568,16 @@ module Aws::IAM
|
|
1552
1568
|
# }
|
1553
1569
|
#
|
1554
1570
|
# @!attribute [rw] aws_service_name
|
1555
|
-
# The service principal for the
|
1556
|
-
# attached. You use a string similar to a URL but without
|
1557
|
-
# in front. For example: `elasticbeanstalk.amazonaws.com`.
|
1571
|
+
# The service principal for the Amazon Web Services service to which
|
1572
|
+
# this role is attached. You use a string similar to a URL but without
|
1573
|
+
# the http:// in front. For example: `elasticbeanstalk.amazonaws.com`.
|
1558
1574
|
#
|
1559
1575
|
# Service principals are unique and case-sensitive. To find the exact
|
1560
|
-
# service principal for your service-linked role, see [
|
1561
|
-
# that work with IAM][1] in the *IAM User Guide*.
|
1562
|
-
# services that have <b>Yes </b>in the **Service-Linked
|
1563
|
-
# Choose the **Yes** link to view the service-linked
|
1564
|
-
# documentation for that service.
|
1576
|
+
# service principal for your service-linked role, see [Amazon Web
|
1577
|
+
# Services services that work with IAM][1] in the *IAM User Guide*.
|
1578
|
+
# Look for the services that have <b>Yes </b>in the **Service-Linked
|
1579
|
+
# Role** column. Choose the **Yes** link to view the service-linked
|
1580
|
+
# role documentation for that service.
|
1565
1581
|
#
|
1566
1582
|
#
|
1567
1583
|
#
|
@@ -1632,9 +1648,9 @@ module Aws::IAM
|
|
1632
1648
|
# @return [String]
|
1633
1649
|
#
|
1634
1650
|
# @!attribute [rw] service_name
|
1635
|
-
# The name of the
|
1636
|
-
# credentials. The service you specify here is the only
|
1637
|
-
# can be accessed using these credentials.
|
1651
|
+
# The name of the Amazon Web Services service that is to be associated
|
1652
|
+
# with the credentials. The service you specify here is the only
|
1653
|
+
# service that can be accessed using these credentials.
|
1638
1654
|
# @return [String]
|
1639
1655
|
#
|
1640
1656
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/CreateServiceSpecificCredentialRequest AWS API Documentation
|
@@ -2183,7 +2199,7 @@ module Aws::IAM
|
|
2183
2199
|
# The Amazon Resource Name (ARN) of the IAM policy you want to delete.
|
2184
2200
|
#
|
2185
2201
|
# For more information about ARNs, see [Amazon Resource Names
|
2186
|
-
# (ARNs)][1] in the *
|
2202
|
+
# (ARNs)][1] in the *Amazon Web Services General Reference*.
|
2187
2203
|
#
|
2188
2204
|
#
|
2189
2205
|
#
|
@@ -2211,7 +2227,7 @@ module Aws::IAM
|
|
2211
2227
|
# to delete a version.
|
2212
2228
|
#
|
2213
2229
|
# For more information about ARNs, see [Amazon Resource Names
|
2214
|
-
# (ARNs)][1] in the *
|
2230
|
+
# (ARNs)][1] in the *Amazon Web Services General Reference*.
|
2215
2231
|
#
|
2216
2232
|
#
|
2217
2233
|
#
|
@@ -2721,7 +2737,7 @@ module Aws::IAM
|
|
2721
2737
|
# The Amazon Resource Name (ARN) of the IAM policy you want to detach.
|
2722
2738
|
#
|
2723
2739
|
# For more information about ARNs, see [Amazon Resource Names
|
2724
|
-
# (ARNs)][1] in the *
|
2740
|
+
# (ARNs)][1] in the *Amazon Web Services General Reference*.
|
2725
2741
|
#
|
2726
2742
|
#
|
2727
2743
|
#
|
@@ -2763,7 +2779,7 @@ module Aws::IAM
|
|
2763
2779
|
# The Amazon Resource Name (ARN) of the IAM policy you want to detach.
|
2764
2780
|
#
|
2765
2781
|
# For more information about ARNs, see [Amazon Resource Names
|
2766
|
-
# (ARNs)][1] in the *
|
2782
|
+
# (ARNs)][1] in the *Amazon Web Services General Reference*.
|
2767
2783
|
#
|
2768
2784
|
#
|
2769
2785
|
#
|
@@ -2805,7 +2821,7 @@ module Aws::IAM
|
|
2805
2821
|
# The Amazon Resource Name (ARN) of the IAM policy you want to detach.
|
2806
2822
|
#
|
2807
2823
|
# For more information about ARNs, see [Amazon Resource Names
|
2808
|
-
# (ARNs)][1] in the *
|
2824
|
+
# (ARNs)][1] in the *Amazon Web Services General Reference*.
|
2809
2825
|
#
|
2810
2826
|
#
|
2811
2827
|
#
|
@@ -2946,8 +2962,8 @@ module Aws::IAM
|
|
2946
2962
|
end
|
2947
2963
|
|
2948
2964
|
# An object that contains details about when the IAM entities (users or
|
2949
|
-
# roles) were last used in an attempt to access the specified
|
2950
|
-
# service.
|
2965
|
+
# roles) were last used in an attempt to access the specified Amazon Web
|
2966
|
+
# Services service.
|
2951
2967
|
#
|
2952
2968
|
# This data type is a response element in the
|
2953
2969
|
# GetServiceLastAccessedDetailsWithEntities operation.
|
@@ -2959,8 +2975,8 @@ module Aws::IAM
|
|
2959
2975
|
#
|
2960
2976
|
# @!attribute [rw] last_authenticated
|
2961
2977
|
# The date and time, in [ISO 8601 date-time format][1], when the
|
2962
|
-
# authenticated entity last attempted to access
|
2963
|
-
# report unauthenticated requests.
|
2978
|
+
# authenticated entity last attempted to access Amazon Web Services.
|
2979
|
+
# Amazon Web Services does not report unauthenticated requests.
|
2964
2980
|
#
|
2965
2981
|
# This field is null if no IAM entities attempted to access the
|
2966
2982
|
# service within the [reporting period][2].
|
@@ -2985,11 +3001,11 @@ module Aws::IAM
|
|
2985
3001
|
# This data type is an element of the EntityDetails object.
|
2986
3002
|
#
|
2987
3003
|
# @!attribute [rw] arn
|
2988
|
-
# The Amazon Resource Name (ARN). ARNs are unique identifiers for
|
2989
|
-
# resources.
|
3004
|
+
# The Amazon Resource Name (ARN). ARNs are unique identifiers for
|
3005
|
+
# Amazon Web Services resources.
|
2990
3006
|
#
|
2991
3007
|
# For more information about ARNs, go to [Amazon Resource Names
|
2992
|
-
# (ARNs)][1] in the *
|
3008
|
+
# (ARNs)][1] in the *Amazon Web Services General Reference*.
|
2993
3009
|
#
|
2994
3010
|
#
|
2995
3011
|
#
|
@@ -3131,15 +3147,15 @@ module Aws::IAM
|
|
3131
3147
|
# same account and specifies all resources (`*`), then the parameter
|
3132
3148
|
# is not returned.
|
3133
3149
|
#
|
3134
|
-
# When you make a cross-account request,
|
3135
|
-
# the trusting account and the trusted account. The
|
3136
|
-
# only if both evaluations return `true`. For more
|
3137
|
-
# how policies are evaluated, see [Evaluating
|
3138
|
-
# account][1].
|
3150
|
+
# When you make a cross-account request, Amazon Web Services evaluates
|
3151
|
+
# the request in the trusting account and the trusted account. The
|
3152
|
+
# request is allowed only if both evaluations return `true`. For more
|
3153
|
+
# information about how policies are evaluated, see [Evaluating
|
3154
|
+
# policies within a single account][1].
|
3139
3155
|
#
|
3140
|
-
# If an
|
3141
|
-
#
|
3142
|
-
#
|
3156
|
+
# If an Organizations SCP included in the evaluation denies access,
|
3157
|
+
# the simulation ends. In this case, policy evaluation does not
|
3158
|
+
# proceed any further and this parameter is not returned.
|
3143
3159
|
#
|
3144
3160
|
#
|
3145
3161
|
#
|
@@ -3196,22 +3212,22 @@ module Aws::IAM
|
|
3196
3212
|
# }
|
3197
3213
|
#
|
3198
3214
|
# @!attribute [rw] entity_path
|
3199
|
-
# The path of the
|
3200
|
-
#
|
3201
|
-
#
|
3202
|
-
#
|
3203
|
-
#
|
3204
|
-
#
|
3215
|
+
# The path of the Organizations entity (root, OU, or account). You can
|
3216
|
+
# build an entity path using the known structure of your organization.
|
3217
|
+
# For example, assume that your account ID is `123456789012` and its
|
3218
|
+
# parent OU ID is `ou-rge0-awsabcde`. The organization root ID is
|
3219
|
+
# `r-f6g7h8i9j0example` and your organization ID is `o-a1b2c3d4e5`.
|
3220
|
+
# Your entity path is
|
3205
3221
|
# `o-a1b2c3d4e5/r-f6g7h8i9j0example/ou-rge0-awsabcde/123456789012`.
|
3206
3222
|
# @return [String]
|
3207
3223
|
#
|
3208
3224
|
# @!attribute [rw] organizations_policy_id
|
3209
|
-
# The identifier of the
|
3210
|
-
#
|
3225
|
+
# The identifier of the Organizations service control policy (SCP).
|
3226
|
+
# This parameter is optional.
|
3211
3227
|
#
|
3212
3228
|
# This ID is used to generate information about when an account
|
3213
|
-
# principal that is limited by the SCP attempted to access an
|
3214
|
-
# service.
|
3229
|
+
# principal that is limited by the SCP attempted to access an Amazon
|
3230
|
+
# Web Services service.
|
3215
3231
|
# @return [String]
|
3216
3232
|
#
|
3217
3233
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GenerateOrganizationsAccessReportRequest AWS API Documentation
|
@@ -3247,7 +3263,7 @@ module Aws::IAM
|
|
3247
3263
|
# @!attribute [rw] arn
|
3248
3264
|
# The ARN of the IAM resource (user, group, role, or managed policy)
|
3249
3265
|
# used to generate information about when the resource was last used
|
3250
|
-
# in an attempt to access an
|
3266
|
+
# in an attempt to access an Amazon Web Services service.
|
3251
3267
|
# @return [String]
|
3252
3268
|
#
|
3253
3269
|
# @!attribute [rw] granularity
|
@@ -3317,7 +3333,7 @@ module Aws::IAM
|
|
3317
3333
|
# returned by the ListAccessKeys action.
|
3318
3334
|
#
|
3319
3335
|
# @!attribute [rw] user_name
|
3320
|
-
# The name of the
|
3336
|
+
# The name of the IAM user that owns this access key.
|
3321
3337
|
# @return [String]
|
3322
3338
|
#
|
3323
3339
|
# @!attribute [rw] access_key_last_used
|
@@ -3533,7 +3549,7 @@ module Aws::IAM
|
|
3533
3549
|
# HTML request.
|
3534
3550
|
#
|
3535
3551
|
# For more information about ARNs, see [Amazon Resource Names
|
3536
|
-
# (ARNs)][1] in the *
|
3552
|
+
# (ARNs)][1] in the *Amazon Web Services General Reference*.
|
3537
3553
|
#
|
3538
3554
|
#
|
3539
3555
|
#
|
@@ -3656,9 +3672,9 @@ module Aws::IAM
|
|
3656
3672
|
# The policy document.
|
3657
3673
|
#
|
3658
3674
|
# IAM stores policies in JSON format. However, resources that were
|
3659
|
-
# created using
|
3660
|
-
#
|
3661
|
-
#
|
3675
|
+
# created using CloudFormation templates can be formatted in YAML.
|
3676
|
+
# CloudFormation always converts a YAML policy to JSON format before
|
3677
|
+
# submitting it to IAM.
|
3662
3678
|
# @return [String]
|
3663
3679
|
#
|
3664
3680
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetGroupPolicyResponse AWS API Documentation
|
@@ -3833,8 +3849,8 @@ module Aws::IAM
|
|
3833
3849
|
# Contains the response to a successful GetLoginProfile request.
|
3834
3850
|
#
|
3835
3851
|
# @!attribute [rw] login_profile
|
3836
|
-
# A structure containing the user name and
|
3837
|
-
# the user.
|
3852
|
+
# A structure containing the user name and the profile creation date
|
3853
|
+
# for the user.
|
3838
3854
|
# @return [Types::LoginProfile]
|
3839
3855
|
#
|
3840
3856
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetLoginProfileResponse AWS API Documentation
|
@@ -3858,7 +3874,7 @@ module Aws::IAM
|
|
3858
3874
|
# resource ARNs by using the ListOpenIDConnectProviders operation.
|
3859
3875
|
#
|
3860
3876
|
# For more information about ARNs, see [Amazon Resource Names
|
3861
|
-
# (ARNs)][1] in the *
|
3877
|
+
# (ARNs)][1] in the *Amazon Web Services General Reference*.
|
3862
3878
|
#
|
3863
3879
|
#
|
3864
3880
|
#
|
@@ -3895,7 +3911,7 @@ module Aws::IAM
|
|
3895
3911
|
#
|
3896
3912
|
# @!attribute [rw] create_date
|
3897
3913
|
# The date and time when the IAM OIDC provider resource object was
|
3898
|
-
# created in the
|
3914
|
+
# created in the account.
|
3899
3915
|
# @return [Time]
|
3900
3916
|
#
|
3901
3917
|
# @!attribute [rw] tags
|
@@ -4066,7 +4082,7 @@ module Aws::IAM
|
|
4066
4082
|
# information about.
|
4067
4083
|
#
|
4068
4084
|
# For more information about ARNs, see [Amazon Resource Names
|
4069
|
-
# (ARNs)][1] in the *
|
4085
|
+
# (ARNs)][1] in the *Amazon Web Services General Reference*.
|
4070
4086
|
#
|
4071
4087
|
#
|
4072
4088
|
#
|
@@ -4108,7 +4124,7 @@ module Aws::IAM
|
|
4108
4124
|
# information about.
|
4109
4125
|
#
|
4110
4126
|
# For more information about ARNs, see [Amazon Resource Names
|
4111
|
-
# (ARNs)][1] in the *
|
4127
|
+
# (ARNs)][1] in the *Amazon Web Services General Reference*.
|
4112
4128
|
#
|
4113
4129
|
#
|
4114
4130
|
#
|
@@ -4208,9 +4224,9 @@ module Aws::IAM
|
|
4208
4224
|
# The policy document.
|
4209
4225
|
#
|
4210
4226
|
# IAM stores policies in JSON format. However, resources that were
|
4211
|
-
# created using
|
4212
|
-
#
|
4213
|
-
#
|
4227
|
+
# created using CloudFormation templates can be formatted in YAML.
|
4228
|
+
# CloudFormation always converts a YAML policy to JSON format before
|
4229
|
+
# submitting it to IAM.
|
4214
4230
|
# @return [String]
|
4215
4231
|
#
|
4216
4232
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetRolePolicyResponse AWS API Documentation
|
@@ -4277,7 +4293,7 @@ module Aws::IAM
|
|
4277
4293
|
# in IAM to get information about.
|
4278
4294
|
#
|
4279
4295
|
# For more information about ARNs, see [Amazon Resource Names
|
4280
|
-
# (ARNs)][1] in the *
|
4296
|
+
# (ARNs)][1] in the *Amazon Web Services General Reference*.
|
4281
4297
|
#
|
4282
4298
|
#
|
4283
4299
|
#
|
@@ -4571,17 +4587,17 @@ module Aws::IAM
|
|
4571
4587
|
# @return [String]
|
4572
4588
|
#
|
4573
4589
|
# @!attribute [rw] service_namespace
|
4574
|
-
# The service namespace for an
|
4575
|
-
# namespace to learn when the IAM entity last attempted to
|
4576
|
-
# specified service.
|
4590
|
+
# The service namespace for an Amazon Web Services service. Provide
|
4591
|
+
# the service namespace to learn when the IAM entity last attempted to
|
4592
|
+
# access the specified service.
|
4577
4593
|
#
|
4578
4594
|
# To learn the service namespace for a service, see [Actions,
|
4579
|
-
# resources, and condition keys for
|
4580
|
-
# Guide*. Choose the name of the service to view
|
4581
|
-
# service. In the first paragraph, find the service
|
4582
|
-
# example, `(service prefix: a4b)`. For more information
|
4583
|
-
# namespaces, see [
|
4584
|
-
# Reference*.
|
4595
|
+
# resources, and condition keys for Amazon Web Services services][1]
|
4596
|
+
# in the *IAM User Guide*. Choose the name of the service to view
|
4597
|
+
# details for that service. In the first paragraph, find the service
|
4598
|
+
# prefix. For example, `(service prefix: a4b)`. For more information
|
4599
|
+
# about service namespaces, see [Amazon Web Services service
|
4600
|
+
# namespaces][2] in the *Amazon Web Services General Reference*.
|
4585
4601
|
#
|
4586
4602
|
#
|
4587
4603
|
#
|
@@ -4648,7 +4664,7 @@ module Aws::IAM
|
|
4648
4664
|
# @!attribute [rw] entity_details_list
|
4649
4665
|
# An `EntityDetailsList` object that contains details about when an
|
4650
4666
|
# IAM entity (user or role) used group or policy permissions in an
|
4651
|
-
# attempt to access the specified
|
4667
|
+
# attempt to access the specified Amazon Web Services service.
|
4652
4668
|
# @return [Array<Types::EntityDetails>]
|
4653
4669
|
#
|
4654
4670
|
# @!attribute [rw] is_truncated
|
@@ -4782,9 +4798,9 @@ module Aws::IAM
|
|
4782
4798
|
# The policy document.
|
4783
4799
|
#
|
4784
4800
|
# IAM stores policies in JSON format. However, resources that were
|
4785
|
-
# created using
|
4786
|
-
#
|
4787
|
-
#
|
4801
|
+
# created using CloudFormation templates can be formatted in YAML.
|
4802
|
+
# CloudFormation always converts a YAML policy to JSON format before
|
4803
|
+
# submitting it to IAM.
|
4788
4804
|
# @return [String]
|
4789
4805
|
#
|
4790
4806
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetUserPolicyResponse AWS API Documentation
|
@@ -4843,11 +4859,12 @@ module Aws::IAM
|
|
4843
4859
|
#
|
4844
4860
|
# You can use password last used information to identify unused
|
4845
4861
|
# credentials for deletion. For example, you might delete users who
|
4846
|
-
# did not sign in to
|
4847
|
-
# recommend that you adjust your evaluation window to
|
4848
|
-
# after May 23, 2018. Alternatively, if your users use
|
4849
|
-
# access
|
4850
|
-
# information because it is accurate for
|
4862
|
+
# did not sign in to Amazon Web Services in the last 90 days. In cases
|
4863
|
+
# like this, we recommend that you adjust your evaluation window to
|
4864
|
+
# include dates after May 23, 2018. Alternatively, if your users use
|
4865
|
+
# access keys to access Amazon Web Services programmatically you can
|
4866
|
+
# refer to access key last used information because it is accurate for
|
4867
|
+
# all dates.
|
4851
4868
|
#
|
4852
4869
|
#
|
4853
4870
|
#
|
@@ -4958,11 +4975,11 @@ module Aws::IAM
|
|
4958
4975
|
# @return [String]
|
4959
4976
|
#
|
4960
4977
|
# @!attribute [rw] arn
|
4961
|
-
# The Amazon Resource Name (ARN). ARNs are unique identifiers for
|
4962
|
-
# resources.
|
4978
|
+
# The Amazon Resource Name (ARN). ARNs are unique identifiers for
|
4979
|
+
# Amazon Web Services resources.
|
4963
4980
|
#
|
4964
4981
|
# For more information about ARNs, go to [Amazon Resource Names
|
4965
|
-
# (ARNs)][1] in the *
|
4982
|
+
# (ARNs)][1] in the *Amazon Web Services General Reference*.
|
4966
4983
|
#
|
4967
4984
|
#
|
4968
4985
|
#
|
@@ -5162,8 +5179,8 @@ module Aws::IAM
|
|
5162
5179
|
end
|
5163
5180
|
|
5164
5181
|
# The request was rejected because it attempted to create resources
|
5165
|
-
# beyond the current
|
5166
|
-
# limit exceeded.
|
5182
|
+
# beyond the current Amazon Web Services account limits. The error
|
5183
|
+
# message describes the limit exceeded.
|
5167
5184
|
#
|
5168
5185
|
# @!attribute [rw] message
|
5169
5186
|
# @return [String]
|
@@ -5300,8 +5317,8 @@ module Aws::IAM
|
|
5300
5317
|
# Contains the response to a successful ListAccountAliases request.
|
5301
5318
|
#
|
5302
5319
|
# @!attribute [rw] account_aliases
|
5303
|
-
# A list of aliases associated with the account.
|
5304
|
-
# alias per account.
|
5320
|
+
# A list of aliases associated with the account. Amazon Web Services
|
5321
|
+
# supports only one alias per account.
|
5305
5322
|
# @return [Array<String>]
|
5306
5323
|
#
|
5307
5324
|
# @!attribute [rw] is_truncated
|
@@ -5662,7 +5679,7 @@ module Aws::IAM
|
|
5662
5679
|
# the versions.
|
5663
5680
|
#
|
5664
5681
|
# For more information about ARNs, see [Amazon Resource Names
|
5665
|
-
# (ARNs)][1] in the *
|
5682
|
+
# (ARNs)][1] in the *Amazon Web Services General Reference*.
|
5666
5683
|
#
|
5667
5684
|
#
|
5668
5685
|
#
|
@@ -6062,10 +6079,10 @@ module Aws::IAM
|
|
6062
6079
|
# @!attribute [rw] instance_profile_name
|
6063
6080
|
# The name of the IAM instance profile whose tags you want to see.
|
6064
6081
|
#
|
6065
|
-
# This parameter
|
6066
|
-
# characters
|
6067
|
-
#
|
6068
|
-
# characters:
|
6082
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
6083
|
+
# characters consisting of upper and lowercase alphanumeric characters
|
6084
|
+
# with no spaces. You can also include any of the following
|
6085
|
+
# characters: \_+=,.@-
|
6069
6086
|
#
|
6070
6087
|
#
|
6071
6088
|
#
|
@@ -6080,16 +6097,16 @@ module Aws::IAM
|
|
6080
6097
|
# @return [String]
|
6081
6098
|
#
|
6082
6099
|
# @!attribute [rw] max_items
|
6083
|
-
#
|
6084
|
-
#
|
6085
|
-
#
|
6086
|
-
#
|
6087
|
-
#
|
6088
|
-
# If you do not include this parameter,
|
6089
|
-
# IAM might return fewer results, even when
|
6090
|
-
# available. In that case, the `IsTruncated` response
|
6091
|
-
# `true`, and `Marker` contains a value to include in
|
6092
|
-
# call that tells the service where to continue from.
|
6100
|
+
# Use this only when paginating results to indicate the maximum number
|
6101
|
+
# of items you want in the response. If additional items exist beyond
|
6102
|
+
# the maximum you specify, the `IsTruncated` response element is
|
6103
|
+
# `true`.
|
6104
|
+
#
|
6105
|
+
# If you do not include this parameter, the number of items defaults
|
6106
|
+
# to 100. Note that IAM might return fewer results, even when there
|
6107
|
+
# are more results available. In that case, the `IsTruncated` response
|
6108
|
+
# element returns `true`, and `Marker` contains a value to include in
|
6109
|
+
# the subsequent call that tells the service where to continue from.
|
6093
6110
|
# @return [Integer]
|
6094
6111
|
#
|
6095
6112
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListInstanceProfileTagsRequest AWS API Documentation
|
@@ -6111,12 +6128,12 @@ module Aws::IAM
|
|
6111
6128
|
#
|
6112
6129
|
# @!attribute [rw] is_truncated
|
6113
6130
|
# A flag that indicates whether there are more items to return. If
|
6114
|
-
# your results were truncated, you can
|
6115
|
-
#
|
6116
|
-
#
|
6117
|
-
#
|
6118
|
-
# `IsTruncated` after every call to ensure that you
|
6119
|
-
# your results.
|
6131
|
+
# your results were truncated, you can make a subsequent pagination
|
6132
|
+
# request using the `Marker` request parameter to retrieve more items.
|
6133
|
+
# Note that IAM might return fewer than the `MaxItems` number of
|
6134
|
+
# results even when there are more results available. We recommend
|
6135
|
+
# that you check `IsTruncated` after every call to ensure that you
|
6136
|
+
# receive all your results.
|
6120
6137
|
# @return [Boolean]
|
6121
6138
|
#
|
6122
6139
|
# @!attribute [rw] marker
|
@@ -6324,10 +6341,10 @@ module Aws::IAM
|
|
6324
6341
|
# want to see. For virtual MFA devices, the serial number is the same
|
6325
6342
|
# as the ARN.
|
6326
6343
|
#
|
6327
|
-
# This parameter
|
6328
|
-
# characters
|
6329
|
-
#
|
6330
|
-
# characters:
|
6344
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
6345
|
+
# characters consisting of upper and lowercase alphanumeric characters
|
6346
|
+
# with no spaces. You can also include any of the following
|
6347
|
+
# characters: \_+=,.@-
|
6331
6348
|
#
|
6332
6349
|
#
|
6333
6350
|
#
|
@@ -6342,16 +6359,16 @@ module Aws::IAM
|
|
6342
6359
|
# @return [String]
|
6343
6360
|
#
|
6344
6361
|
# @!attribute [rw] max_items
|
6345
|
-
#
|
6346
|
-
#
|
6347
|
-
#
|
6348
|
-
#
|
6349
|
-
#
|
6350
|
-
# If you do not include this parameter,
|
6351
|
-
# IAM might return fewer results, even when
|
6352
|
-
# available. In that case, the `IsTruncated` response
|
6353
|
-
# `true`, and `Marker` contains a value to include in
|
6354
|
-
# call that tells the service where to continue from.
|
6362
|
+
# Use this only when paginating results to indicate the maximum number
|
6363
|
+
# of items you want in the response. If additional items exist beyond
|
6364
|
+
# the maximum you specify, the `IsTruncated` response element is
|
6365
|
+
# `true`.
|
6366
|
+
#
|
6367
|
+
# If you do not include this parameter, the number of items defaults
|
6368
|
+
# to 100. Note that IAM might return fewer results, even when there
|
6369
|
+
# are more results available. In that case, the `IsTruncated` response
|
6370
|
+
# element returns `true`, and `Marker` contains a value to include in
|
6371
|
+
# the subsequent call that tells the service where to continue from.
|
6355
6372
|
# @return [Integer]
|
6356
6373
|
#
|
6357
6374
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListMFADeviceTagsRequest AWS API Documentation
|
@@ -6373,12 +6390,12 @@ module Aws::IAM
|
|
6373
6390
|
#
|
6374
6391
|
# @!attribute [rw] is_truncated
|
6375
6392
|
# A flag that indicates whether there are more items to return. If
|
6376
|
-
# your results were truncated, you can
|
6377
|
-
#
|
6378
|
-
#
|
6379
|
-
#
|
6380
|
-
# `IsTruncated` after every call to ensure that you
|
6381
|
-
# your results.
|
6393
|
+
# your results were truncated, you can make a subsequent pagination
|
6394
|
+
# request using the `Marker` request parameter to retrieve more items.
|
6395
|
+
# Note that IAM might return fewer than the `MaxItems` number of
|
6396
|
+
# results even when there are more results available. We recommend
|
6397
|
+
# that you check `IsTruncated` after every call to ensure that you
|
6398
|
+
# receive all your results.
|
6382
6399
|
# @return [Boolean]
|
6383
6400
|
#
|
6384
6401
|
# @!attribute [rw] marker
|
@@ -6494,10 +6511,10 @@ module Aws::IAM
|
|
6494
6511
|
# The ARN of the OpenID Connect (OIDC) identity provider whose tags
|
6495
6512
|
# you want to see.
|
6496
6513
|
#
|
6497
|
-
# This parameter
|
6498
|
-
# characters
|
6499
|
-
#
|
6500
|
-
# characters:
|
6514
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
6515
|
+
# characters consisting of upper and lowercase alphanumeric characters
|
6516
|
+
# with no spaces. You can also include any of the following
|
6517
|
+
# characters: \_+=,.@-
|
6501
6518
|
#
|
6502
6519
|
#
|
6503
6520
|
#
|
@@ -6512,16 +6529,16 @@ module Aws::IAM
|
|
6512
6529
|
# @return [String]
|
6513
6530
|
#
|
6514
6531
|
# @!attribute [rw] max_items
|
6515
|
-
#
|
6516
|
-
#
|
6517
|
-
#
|
6518
|
-
#
|
6519
|
-
#
|
6520
|
-
# If you do not include this parameter,
|
6521
|
-
# IAM might return fewer results, even when
|
6522
|
-
# available. In that case, the `IsTruncated` response
|
6523
|
-
# `true`, and `Marker` contains a value to include in
|
6524
|
-
# call that tells the service where to continue from.
|
6532
|
+
# Use this only when paginating results to indicate the maximum number
|
6533
|
+
# of items you want in the response. If additional items exist beyond
|
6534
|
+
# the maximum you specify, the `IsTruncated` response element is
|
6535
|
+
# `true`.
|
6536
|
+
#
|
6537
|
+
# If you do not include this parameter, the number of items defaults
|
6538
|
+
# to 100. Note that IAM might return fewer results, even when there
|
6539
|
+
# are more results available. In that case, the `IsTruncated` response
|
6540
|
+
# element returns `true`, and `Marker` contains a value to include in
|
6541
|
+
# the subsequent call that tells the service where to continue from.
|
6525
6542
|
# @return [Integer]
|
6526
6543
|
#
|
6527
6544
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListOpenIDConnectProviderTagsRequest AWS API Documentation
|
@@ -6543,12 +6560,12 @@ module Aws::IAM
|
|
6543
6560
|
#
|
6544
6561
|
# @!attribute [rw] is_truncated
|
6545
6562
|
# A flag that indicates whether there are more items to return. If
|
6546
|
-
# your results were truncated, you can
|
6547
|
-
#
|
6548
|
-
#
|
6549
|
-
#
|
6550
|
-
# `IsTruncated` after every call to ensure that you
|
6551
|
-
# your results.
|
6563
|
+
# your results were truncated, you can make a subsequent pagination
|
6564
|
+
# request using the `Marker` request parameter to retrieve more items.
|
6565
|
+
# Note that IAM might return fewer than the `MaxItems` number of
|
6566
|
+
# results even when there are more results available. We recommend
|
6567
|
+
# that you check `IsTruncated` after every call to ensure that you
|
6568
|
+
# receive all your results.
|
6552
6569
|
# @return [Boolean]
|
6553
6570
|
#
|
6554
6571
|
# @!attribute [rw] marker
|
@@ -6577,7 +6594,7 @@ module Aws::IAM
|
|
6577
6594
|
# request.
|
6578
6595
|
#
|
6579
6596
|
# @!attribute [rw] open_id_connect_provider_list
|
6580
|
-
# The list of IAM OIDC provider resource objects defined in the
|
6597
|
+
# The list of IAM OIDC provider resource objects defined in the
|
6581
6598
|
# account.
|
6582
6599
|
# @return [Array<Types::OpenIDConnectProviderListEntry>]
|
6583
6600
|
#
|
@@ -6599,12 +6616,13 @@ module Aws::IAM
|
|
6599
6616
|
# The namespace of the service that was accessed.
|
6600
6617
|
#
|
6601
6618
|
# To learn the service namespace of a service, see [Actions,
|
6602
|
-
# resources, and condition keys for
|
6603
|
-
# Authorization Reference*. Choose the name of the
|
6604
|
-
# details for that service. In the first paragraph,
|
6605
|
-
# prefix. For example, `(service prefix: a4b)`. For
|
6606
|
-
# about service namespaces, see [
|
6607
|
-
# the *
|
6619
|
+
# resources, and condition keys for Amazon Web Services services][1]
|
6620
|
+
# in the *Service Authorization Reference*. Choose the name of the
|
6621
|
+
# service to view details for that service. In the first paragraph,
|
6622
|
+
# find the service prefix. For example, `(service prefix: a4b)`. For
|
6623
|
+
# more information about service namespaces, see [Amazon Web Services
|
6624
|
+
# service namespaces][2] in the *Amazon Web Services General
|
6625
|
+
# Reference*.
|
6608
6626
|
#
|
6609
6627
|
#
|
6610
6628
|
#
|
@@ -6648,16 +6666,16 @@ module Aws::IAM
|
|
6648
6666
|
# @return [String]
|
6649
6667
|
#
|
6650
6668
|
# @!attribute [rw] service_namespaces
|
6651
|
-
# The service namespace for the
|
6652
|
-
# to list.
|
6669
|
+
# The service namespace for the Amazon Web Services services whose
|
6670
|
+
# policies you want to list.
|
6653
6671
|
#
|
6654
6672
|
# To learn the service namespace for a service, see [Actions,
|
6655
|
-
# resources, and condition keys for
|
6656
|
-
# Guide*. Choose the name of the service to view
|
6657
|
-
# service. In the first paragraph, find the service
|
6658
|
-
# example, `(service prefix: a4b)`. For more information
|
6659
|
-
# namespaces, see [
|
6660
|
-
# Reference*.
|
6673
|
+
# resources, and condition keys for Amazon Web Services services][1]
|
6674
|
+
# in the *IAM User Guide*. Choose the name of the service to view
|
6675
|
+
# details for that service. In the first paragraph, find the service
|
6676
|
+
# prefix. For example, `(service prefix: a4b)`. For more information
|
6677
|
+
# about service namespaces, see [Amazon Web Services service
|
6678
|
+
# namespaces][2] in the *Amazon Web Services General Reference*.
|
6661
6679
|
#
|
6662
6680
|
#
|
6663
6681
|
#
|
@@ -6720,9 +6738,9 @@ module Aws::IAM
|
|
6720
6738
|
# @!attribute [rw] scope
|
6721
6739
|
# The scope to use for filtering the results.
|
6722
6740
|
#
|
6723
|
-
# To list only
|
6724
|
-
# only the customer managed policies in your
|
6725
|
-
# to `Local`.
|
6741
|
+
# To list only Amazon Web Services managed policies, set `Scope` to
|
6742
|
+
# `AWS`. To list only the customer managed policies in your account,
|
6743
|
+
# set `Scope` to `Local`.
|
6726
6744
|
#
|
6727
6745
|
# This parameter is optional. If it is not included, or if it is set
|
6728
6746
|
# to `All`, all policies are returned.
|
@@ -6842,10 +6860,10 @@ module Aws::IAM
|
|
6842
6860
|
# The ARN of the IAM customer managed policy whose tags you want to
|
6843
6861
|
# see.
|
6844
6862
|
#
|
6845
|
-
# This parameter
|
6846
|
-
# characters
|
6847
|
-
#
|
6848
|
-
# characters:
|
6863
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
6864
|
+
# characters consisting of upper and lowercase alphanumeric characters
|
6865
|
+
# with no spaces. You can also include any of the following
|
6866
|
+
# characters: \_+=,.@-
|
6849
6867
|
#
|
6850
6868
|
#
|
6851
6869
|
#
|
@@ -6860,16 +6878,16 @@ module Aws::IAM
|
|
6860
6878
|
# @return [String]
|
6861
6879
|
#
|
6862
6880
|
# @!attribute [rw] max_items
|
6863
|
-
#
|
6864
|
-
#
|
6865
|
-
#
|
6866
|
-
#
|
6867
|
-
#
|
6868
|
-
# If you do not include this parameter,
|
6869
|
-
# IAM might return fewer results, even when
|
6870
|
-
# available. In that case, the `IsTruncated` response
|
6871
|
-
# `true`, and `Marker` contains a value to include in
|
6872
|
-
# call that tells the service where to continue from.
|
6881
|
+
# Use this only when paginating results to indicate the maximum number
|
6882
|
+
# of items you want in the response. If additional items exist beyond
|
6883
|
+
# the maximum you specify, the `IsTruncated` response element is
|
6884
|
+
# `true`.
|
6885
|
+
#
|
6886
|
+
# If you do not include this parameter, the number of items defaults
|
6887
|
+
# to 100. Note that IAM might return fewer results, even when there
|
6888
|
+
# are more results available. In that case, the `IsTruncated` response
|
6889
|
+
# element returns `true`, and `Marker` contains a value to include in
|
6890
|
+
# the subsequent call that tells the service where to continue from.
|
6873
6891
|
# @return [Integer]
|
6874
6892
|
#
|
6875
6893
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListPolicyTagsRequest AWS API Documentation
|
@@ -6891,12 +6909,12 @@ module Aws::IAM
|
|
6891
6909
|
#
|
6892
6910
|
# @!attribute [rw] is_truncated
|
6893
6911
|
# A flag that indicates whether there are more items to return. If
|
6894
|
-
# your results were truncated, you can
|
6895
|
-
#
|
6896
|
-
#
|
6897
|
-
#
|
6898
|
-
# `IsTruncated` after every call to ensure that you
|
6899
|
-
# your results.
|
6912
|
+
# your results were truncated, you can make a subsequent pagination
|
6913
|
+
# request using the `Marker` request parameter to retrieve more items.
|
6914
|
+
# Note that IAM might return fewer than the `MaxItems` number of
|
6915
|
+
# results even when there are more results available. We recommend
|
6916
|
+
# that you check `IsTruncated` after every call to ensure that you
|
6917
|
+
# receive all your results.
|
6900
6918
|
# @return [Boolean]
|
6901
6919
|
#
|
6902
6920
|
# @!attribute [rw] marker
|
@@ -6929,7 +6947,7 @@ module Aws::IAM
|
|
6929
6947
|
# the versions.
|
6930
6948
|
#
|
6931
6949
|
# For more information about ARNs, see [Amazon Resource Names
|
6932
|
-
# (ARNs)][1] in the *
|
6950
|
+
# (ARNs)][1] in the *Amazon Web Services General Reference*.
|
6933
6951
|
#
|
6934
6952
|
#
|
6935
6953
|
#
|
@@ -7119,16 +7137,16 @@ module Aws::IAM
|
|
7119
7137
|
# @return [String]
|
7120
7138
|
#
|
7121
7139
|
# @!attribute [rw] max_items
|
7122
|
-
#
|
7123
|
-
#
|
7124
|
-
#
|
7125
|
-
#
|
7126
|
-
#
|
7127
|
-
# If you do not include this parameter,
|
7128
|
-
# IAM might return fewer results, even when
|
7129
|
-
# available. In that case, the `IsTruncated` response
|
7130
|
-
# `true`, and `Marker` contains a value to include in
|
7131
|
-
# call that tells the service where to continue from.
|
7140
|
+
# Use this only when paginating results to indicate the maximum number
|
7141
|
+
# of items you want in the response. If additional items exist beyond
|
7142
|
+
# the maximum you specify, the `IsTruncated` response element is
|
7143
|
+
# `true`.
|
7144
|
+
#
|
7145
|
+
# If you do not include this parameter, the number of items defaults
|
7146
|
+
# to 100. Note that IAM might return fewer results, even when there
|
7147
|
+
# are more results available. In that case, the `IsTruncated` response
|
7148
|
+
# element returns `true`, and `Marker` contains a value to include in
|
7149
|
+
# the subsequent call that tells the service where to continue from.
|
7132
7150
|
# @return [Integer]
|
7133
7151
|
#
|
7134
7152
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListRoleTagsRequest AWS API Documentation
|
@@ -7150,12 +7168,12 @@ module Aws::IAM
|
|
7150
7168
|
#
|
7151
7169
|
# @!attribute [rw] is_truncated
|
7152
7170
|
# A flag that indicates whether there are more items to return. If
|
7153
|
-
# your results were truncated, you can
|
7154
|
-
#
|
7155
|
-
#
|
7156
|
-
#
|
7157
|
-
# `IsTruncated` after every call to ensure that you
|
7158
|
-
# your results.
|
7171
|
+
# your results were truncated, you can make a subsequent pagination
|
7172
|
+
# request using the `Marker` request parameter to retrieve more items.
|
7173
|
+
# Note that IAM might return fewer than the `MaxItems` number of
|
7174
|
+
# results even when there are more results available. We recommend
|
7175
|
+
# that you check `IsTruncated` after every call to ensure that you
|
7176
|
+
# receive all your results.
|
7159
7177
|
# @return [Boolean]
|
7160
7178
|
#
|
7161
7179
|
# @!attribute [rw] marker
|
@@ -7277,10 +7295,10 @@ module Aws::IAM
|
|
7277
7295
|
# The ARN of the Security Assertion Markup Language (SAML) identity
|
7278
7296
|
# provider whose tags you want to see.
|
7279
7297
|
#
|
7280
|
-
# This parameter
|
7281
|
-
# characters
|
7282
|
-
#
|
7283
|
-
# characters:
|
7298
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
7299
|
+
# characters consisting of upper and lowercase alphanumeric characters
|
7300
|
+
# with no spaces. You can also include any of the following
|
7301
|
+
# characters: \_+=,.@-
|
7284
7302
|
#
|
7285
7303
|
#
|
7286
7304
|
#
|
@@ -7295,16 +7313,16 @@ module Aws::IAM
|
|
7295
7313
|
# @return [String]
|
7296
7314
|
#
|
7297
7315
|
# @!attribute [rw] max_items
|
7298
|
-
#
|
7299
|
-
#
|
7300
|
-
#
|
7301
|
-
#
|
7302
|
-
#
|
7303
|
-
# If you do not include this parameter,
|
7304
|
-
# IAM might return fewer results, even when
|
7305
|
-
# available. In that case, the `IsTruncated` response
|
7306
|
-
# `true`, and `Marker` contains a value to include in
|
7307
|
-
# call that tells the service where to continue from.
|
7316
|
+
# Use this only when paginating results to indicate the maximum number
|
7317
|
+
# of items you want in the response. If additional items exist beyond
|
7318
|
+
# the maximum you specify, the `IsTruncated` response element is
|
7319
|
+
# `true`.
|
7320
|
+
#
|
7321
|
+
# If you do not include this parameter, the number of items defaults
|
7322
|
+
# to 100. Note that IAM might return fewer results, even when there
|
7323
|
+
# are more results available. In that case, the `IsTruncated` response
|
7324
|
+
# element returns `true`, and `Marker` contains a value to include in
|
7325
|
+
# the subsequent call that tells the service where to continue from.
|
7308
7326
|
# @return [Integer]
|
7309
7327
|
#
|
7310
7328
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListSAMLProviderTagsRequest AWS API Documentation
|
@@ -7327,12 +7345,12 @@ module Aws::IAM
|
|
7327
7345
|
#
|
7328
7346
|
# @!attribute [rw] is_truncated
|
7329
7347
|
# A flag that indicates whether there are more items to return. If
|
7330
|
-
# your results were truncated, you can
|
7331
|
-
#
|
7332
|
-
#
|
7333
|
-
#
|
7334
|
-
# `IsTruncated` after every call to ensure that you
|
7335
|
-
# your results.
|
7348
|
+
# your results were truncated, you can make a subsequent pagination
|
7349
|
+
# request using the `Marker` request parameter to retrieve more items.
|
7350
|
+
# Note that IAM might return fewer than the `MaxItems` number of
|
7351
|
+
# results even when there are more results available. We recommend
|
7352
|
+
# that you check `IsTruncated` after every call to ensure that you
|
7353
|
+
# receive all your results.
|
7336
7354
|
# @return [Boolean]
|
7337
7355
|
#
|
7338
7356
|
# @!attribute [rw] marker
|
@@ -7361,7 +7379,7 @@ module Aws::IAM
|
|
7361
7379
|
#
|
7362
7380
|
# @!attribute [rw] saml_provider_list
|
7363
7381
|
# The list of SAML provider resource objects defined in IAM for this
|
7364
|
-
#
|
7382
|
+
# Amazon Web Services account.
|
7365
7383
|
# @return [Array<Types::SAMLProviderListEntry>]
|
7366
7384
|
#
|
7367
7385
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListSAMLProvidersResponse AWS API Documentation
|
@@ -7384,7 +7402,7 @@ module Aws::IAM
|
|
7384
7402
|
# @!attribute [rw] user_name
|
7385
7403
|
# The name of the IAM user to list SSH public keys for. If none is
|
7386
7404
|
# specified, the `UserName` field is determined implicitly based on
|
7387
|
-
# the
|
7405
|
+
# the Amazon Web Services access key used to sign the request.
|
7388
7406
|
#
|
7389
7407
|
# This parameter allows (through its [regex pattern][1]) a string of
|
7390
7408
|
# characters consisting of upper and lowercase alphanumeric characters
|
@@ -7470,10 +7488,10 @@ module Aws::IAM
|
|
7470
7488
|
# @!attribute [rw] server_certificate_name
|
7471
7489
|
# The name of the IAM server certificate whose tags you want to see.
|
7472
7490
|
#
|
7473
|
-
# This parameter
|
7474
|
-
# characters
|
7475
|
-
#
|
7476
|
-
# characters:
|
7491
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
7492
|
+
# characters consisting of upper and lowercase alphanumeric characters
|
7493
|
+
# with no spaces. You can also include any of the following
|
7494
|
+
# characters: \_+=,.@-
|
7477
7495
|
#
|
7478
7496
|
#
|
7479
7497
|
#
|
@@ -7488,16 +7506,16 @@ module Aws::IAM
|
|
7488
7506
|
# @return [String]
|
7489
7507
|
#
|
7490
7508
|
# @!attribute [rw] max_items
|
7491
|
-
#
|
7492
|
-
#
|
7493
|
-
#
|
7494
|
-
#
|
7495
|
-
#
|
7496
|
-
# If you do not include this parameter,
|
7497
|
-
# IAM might return fewer results, even when
|
7498
|
-
# available. In that case, the `IsTruncated` response
|
7499
|
-
# `true`, and `Marker` contains a value to include in
|
7500
|
-
# call that tells the service where to continue from.
|
7509
|
+
# Use this only when paginating results to indicate the maximum number
|
7510
|
+
# of items you want in the response. If additional items exist beyond
|
7511
|
+
# the maximum you specify, the `IsTruncated` response element is
|
7512
|
+
# `true`.
|
7513
|
+
#
|
7514
|
+
# If you do not include this parameter, the number of items defaults
|
7515
|
+
# to 100. Note that IAM might return fewer results, even when there
|
7516
|
+
# are more results available. In that case, the `IsTruncated` response
|
7517
|
+
# element returns `true`, and `Marker` contains a value to include in
|
7518
|
+
# the subsequent call that tells the service where to continue from.
|
7501
7519
|
# @return [Integer]
|
7502
7520
|
#
|
7503
7521
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListServerCertificateTagsRequest AWS API Documentation
|
@@ -7519,12 +7537,12 @@ module Aws::IAM
|
|
7519
7537
|
#
|
7520
7538
|
# @!attribute [rw] is_truncated
|
7521
7539
|
# A flag that indicates whether there are more items to return. If
|
7522
|
-
# your results were truncated, you can
|
7523
|
-
#
|
7524
|
-
#
|
7525
|
-
#
|
7526
|
-
# `IsTruncated` after every call to ensure that you
|
7527
|
-
# your results.
|
7540
|
+
# your results were truncated, you can make a subsequent pagination
|
7541
|
+
# request using the `Marker` request parameter to retrieve more items.
|
7542
|
+
# Note that IAM might return fewer than the `MaxItems` number of
|
7543
|
+
# results even when there are more results available. We recommend
|
7544
|
+
# that you check `IsTruncated` after every call to ensure that you
|
7545
|
+
# receive all your results.
|
7528
7546
|
# @return [Boolean]
|
7529
7547
|
#
|
7530
7548
|
# @!attribute [rw] marker
|
@@ -7658,9 +7676,9 @@ module Aws::IAM
|
|
7658
7676
|
# @return [String]
|
7659
7677
|
#
|
7660
7678
|
# @!attribute [rw] service_name
|
7661
|
-
# Filters the returned results to only those for the specified
|
7662
|
-
# service. If not specified, then
|
7663
|
-
# credentials for all services.
|
7679
|
+
# Filters the returned results to only those for the specified Amazon
|
7680
|
+
# Web Services service. If not specified, then Amazon Web Services
|
7681
|
+
# returns service-specific credentials for all services.
|
7664
7682
|
# @return [String]
|
7665
7683
|
#
|
7666
7684
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListServiceSpecificCredentialsRequest AWS API Documentation
|
@@ -7866,10 +7884,10 @@ module Aws::IAM
|
|
7866
7884
|
# @!attribute [rw] user_name
|
7867
7885
|
# The name of the IAM user whose tags you want to see.
|
7868
7886
|
#
|
7869
|
-
# This parameter
|
7870
|
-
# characters
|
7871
|
-
#
|
7872
|
-
# characters:
|
7887
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
7888
|
+
# characters consisting of upper and lowercase alphanumeric characters
|
7889
|
+
# with no spaces. You can also include any of the following
|
7890
|
+
# characters: \_+=,.@-
|
7873
7891
|
#
|
7874
7892
|
#
|
7875
7893
|
#
|
@@ -7884,16 +7902,16 @@ module Aws::IAM
|
|
7884
7902
|
# @return [String]
|
7885
7903
|
#
|
7886
7904
|
# @!attribute [rw] max_items
|
7887
|
-
#
|
7888
|
-
#
|
7889
|
-
#
|
7890
|
-
#
|
7891
|
-
#
|
7892
|
-
# If you do not include this parameter,
|
7893
|
-
# IAM might return fewer results, even when
|
7894
|
-
# available. In that case, the `IsTruncated` response
|
7895
|
-
# `true`, and `Marker` contains a value to include in
|
7896
|
-
# call that tells the service where to continue from.
|
7905
|
+
# Use this only when paginating results to indicate the maximum number
|
7906
|
+
# of items you want in the response. If additional items exist beyond
|
7907
|
+
# the maximum you specify, the `IsTruncated` response element is
|
7908
|
+
# `true`.
|
7909
|
+
#
|
7910
|
+
# If you do not include this parameter, the number of items defaults
|
7911
|
+
# to 100. Note that IAM might return fewer results, even when there
|
7912
|
+
# are more results available. In that case, the `IsTruncated` response
|
7913
|
+
# element returns `true`, and `Marker` contains a value to include in
|
7914
|
+
# the subsequent call that tells the service where to continue from.
|
7897
7915
|
# @return [Integer]
|
7898
7916
|
#
|
7899
7917
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListUserTagsRequest AWS API Documentation
|
@@ -7915,12 +7933,12 @@ module Aws::IAM
|
|
7915
7933
|
#
|
7916
7934
|
# @!attribute [rw] is_truncated
|
7917
7935
|
# A flag that indicates whether there are more items to return. If
|
7918
|
-
# your results were truncated, you can
|
7919
|
-
#
|
7920
|
-
#
|
7921
|
-
#
|
7922
|
-
# `IsTruncated` after every call to ensure that you
|
7923
|
-
# your results.
|
7936
|
+
# your results were truncated, you can make a subsequent pagination
|
7937
|
+
# request using the `Marker` request parameter to retrieve more items.
|
7938
|
+
# Note that IAM might return fewer than the `MaxItems` number of
|
7939
|
+
# results even when there are more results available. We recommend
|
7940
|
+
# that you check `IsTruncated` after every call to ensure that you
|
7941
|
+
# receive all your results.
|
7924
7942
|
# @return [Boolean]
|
7925
7943
|
#
|
7926
7944
|
# @!attribute [rw] marker
|
@@ -8114,7 +8132,7 @@ module Aws::IAM
|
|
8114
8132
|
# and GetLoginProfile operations.
|
8115
8133
|
#
|
8116
8134
|
# @!attribute [rw] user_name
|
8117
|
-
# The name of the user, which can be used for signing in to the
|
8135
|
+
# The name of the user, which can be used for signing in to the
|
8118
8136
|
# Management Console.
|
8119
8137
|
# @return [String]
|
8120
8138
|
#
|
@@ -8223,11 +8241,11 @@ module Aws::IAM
|
|
8223
8241
|
# @return [String]
|
8224
8242
|
#
|
8225
8243
|
# @!attribute [rw] arn
|
8226
|
-
# The Amazon Resource Name (ARN). ARNs are unique identifiers for
|
8227
|
-
# resources.
|
8244
|
+
# The Amazon Resource Name (ARN). ARNs are unique identifiers for
|
8245
|
+
# Amazon Web Services resources.
|
8228
8246
|
#
|
8229
8247
|
# For more information about ARNs, go to [Amazon Resource Names
|
8230
|
-
# (ARNs)][1] in the *
|
8248
|
+
# (ARNs)][1] in the *Amazon Web Services General Reference*.
|
8231
8249
|
#
|
8232
8250
|
#
|
8233
8251
|
#
|
@@ -8347,11 +8365,11 @@ module Aws::IAM
|
|
8347
8365
|
# provider.
|
8348
8366
|
#
|
8349
8367
|
# @!attribute [rw] arn
|
8350
|
-
# The Amazon Resource Name (ARN). ARNs are unique identifiers for
|
8351
|
-
# resources.
|
8368
|
+
# The Amazon Resource Name (ARN). ARNs are unique identifiers for
|
8369
|
+
# Amazon Web Services resources.
|
8352
8370
|
#
|
8353
8371
|
# For more information about ARNs, go to [Amazon Resource Names
|
8354
|
-
# (ARNs)][1] in the *
|
8372
|
+
# (ARNs)][1] in the *Amazon Web Services General Reference*.
|
8355
8373
|
#
|
8356
8374
|
#
|
8357
8375
|
#
|
@@ -8522,11 +8540,11 @@ module Aws::IAM
|
|
8522
8540
|
# @return [String]
|
8523
8541
|
#
|
8524
8542
|
# @!attribute [rw] arn
|
8525
|
-
# The Amazon Resource Name (ARN). ARNs are unique identifiers for
|
8526
|
-
# resources.
|
8543
|
+
# The Amazon Resource Name (ARN). ARNs are unique identifiers for
|
8544
|
+
# Amazon Web Services resources.
|
8527
8545
|
#
|
8528
8546
|
# For more information about ARNs, go to [Amazon Resource Names
|
8529
|
-
# (ARNs)][1] in the *
|
8547
|
+
# (ARNs)][1] in the *Amazon Web Services General Reference*.
|
8530
8548
|
#
|
8531
8549
|
#
|
8532
8550
|
#
|
@@ -8688,11 +8706,11 @@ module Aws::IAM
|
|
8688
8706
|
# @return [String]
|
8689
8707
|
#
|
8690
8708
|
# @!attribute [rw] policy_arn
|
8691
|
-
# The Amazon Resource Name (ARN). ARNs are unique identifiers for
|
8692
|
-
# resources.
|
8709
|
+
# The Amazon Resource Name (ARN). ARNs are unique identifiers for
|
8710
|
+
# Amazon Web Services resources.
|
8693
8711
|
#
|
8694
8712
|
# For more information about ARNs, go to [Amazon Resource Names
|
8695
|
-
# (ARNs)][1] in the *
|
8713
|
+
# (ARNs)][1] in the *Amazon Web Services General Reference*.
|
8696
8714
|
#
|
8697
8715
|
#
|
8698
8716
|
#
|
@@ -8773,8 +8791,8 @@ module Aws::IAM
|
|
8773
8791
|
include Aws::Structure
|
8774
8792
|
end
|
8775
8793
|
|
8776
|
-
# The request failed because
|
8777
|
-
# attached to the service-linked role for that service.
|
8794
|
+
# The request failed because Amazon Web Services service role policies
|
8795
|
+
# can only be attached to the service-linked role for that service.
|
8778
8796
|
#
|
8779
8797
|
# @!attribute [rw] message
|
8780
8798
|
# @return [String]
|
@@ -8985,10 +9003,10 @@ module Aws::IAM
|
|
8985
9003
|
# @!attribute [rw] policy_document
|
8986
9004
|
# The policy document.
|
8987
9005
|
#
|
8988
|
-
# You must provide policies in JSON format in IAM. However, for
|
9006
|
+
# You must provide policies in JSON format in IAM. However, for
|
8989
9007
|
# CloudFormation templates formatted in YAML, you can provide the
|
8990
|
-
# policy in JSON or YAML format.
|
8991
|
-
#
|
9008
|
+
# policy in JSON or YAML format. CloudFormation always converts a YAML
|
9009
|
+
# policy to JSON format before submitting it to = IAM.
|
8992
9010
|
#
|
8993
9011
|
# The [regex pattern][1] used to validate this parameter is a string
|
8994
9012
|
# of characters consisting of the following:
|
@@ -9082,10 +9100,10 @@ module Aws::IAM
|
|
9082
9100
|
# @!attribute [rw] policy_document
|
9083
9101
|
# The policy document.
|
9084
9102
|
#
|
9085
|
-
# You must provide policies in JSON format in IAM. However, for
|
9103
|
+
# You must provide policies in JSON format in IAM. However, for
|
9086
9104
|
# CloudFormation templates formatted in YAML, you can provide the
|
9087
|
-
# policy in JSON or YAML format.
|
9088
|
-
#
|
9105
|
+
# policy in JSON or YAML format. CloudFormation always converts a YAML
|
9106
|
+
# policy to JSON format before submitting it to IAM.
|
9089
9107
|
#
|
9090
9108
|
# The [regex pattern][1] used to validate this parameter is a string
|
9091
9109
|
# of characters consisting of the following:
|
@@ -9179,10 +9197,10 @@ module Aws::IAM
|
|
9179
9197
|
# @!attribute [rw] policy_document
|
9180
9198
|
# The policy document.
|
9181
9199
|
#
|
9182
|
-
# You must provide policies in JSON format in IAM. However, for
|
9200
|
+
# You must provide policies in JSON format in IAM. However, for
|
9183
9201
|
# CloudFormation templates formatted in YAML, you can provide the
|
9184
|
-
# policy in JSON or YAML format.
|
9185
|
-
#
|
9202
|
+
# policy in JSON or YAML format. CloudFormation always converts a YAML
|
9203
|
+
# policy to JSON format before submitting it to IAM.
|
9186
9204
|
#
|
9187
9205
|
# The [regex pattern][1] used to validate this parameter is a string
|
9188
9206
|
# of characters consisting of the following:
|
@@ -9225,7 +9243,7 @@ module Aws::IAM
|
|
9225
9243
|
# by using the ListOpenIDConnectProviders operation.
|
9226
9244
|
#
|
9227
9245
|
# For more information about ARNs, see [Amazon Resource Names
|
9228
|
-
# (ARNs)][1] in the *
|
9246
|
+
# (ARNs)][1] in the *Amazon Web Services General Reference*.
|
9229
9247
|
#
|
9230
9248
|
#
|
9231
9249
|
#
|
@@ -9583,8 +9601,8 @@ module Aws::IAM
|
|
9583
9601
|
#
|
9584
9602
|
# @!attribute [rw] max_session_duration
|
9585
9603
|
# The maximum session duration (in seconds) for the specified role.
|
9586
|
-
# Anyone who uses the
|
9587
|
-
#
|
9604
|
+
# Anyone who uses the CLI, or API to assume the role can specify the
|
9605
|
+
# duration using the optional `DurationSeconds` API parameter or
|
9588
9606
|
# `duration-seconds` CLI parameter.
|
9589
9607
|
# @return [Integer]
|
9590
9608
|
#
|
@@ -9672,11 +9690,11 @@ module Aws::IAM
|
|
9672
9690
|
# @return [String]
|
9673
9691
|
#
|
9674
9692
|
# @!attribute [rw] arn
|
9675
|
-
# The Amazon Resource Name (ARN). ARNs are unique identifiers for
|
9676
|
-
# resources.
|
9693
|
+
# The Amazon Resource Name (ARN). ARNs are unique identifiers for
|
9694
|
+
# Amazon Web Services resources.
|
9677
9695
|
#
|
9678
9696
|
# For more information about ARNs, go to [Amazon Resource Names
|
9679
|
-
# (ARNs)][1] in the *
|
9697
|
+
# (ARNs)][1] in the *Amazon Web Services General Reference*.
|
9680
9698
|
#
|
9681
9699
|
#
|
9682
9700
|
#
|
@@ -9795,7 +9813,7 @@ module Aws::IAM
|
|
9795
9813
|
# @return [Time]
|
9796
9814
|
#
|
9797
9815
|
# @!attribute [rw] region
|
9798
|
-
# The name of the
|
9816
|
+
# The name of the Region in which the role was last used.
|
9799
9817
|
# @return [String]
|
9800
9818
|
#
|
9801
9819
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/RoleLastUsed AWS API Documentation
|
@@ -9877,8 +9895,8 @@ module Aws::IAM
|
|
9877
9895
|
#
|
9878
9896
|
# @!attribute [rw] status
|
9879
9897
|
# The status of the SSH public key. `Active` means that the key can be
|
9880
|
-
# used for authentication with an
|
9881
|
-
#
|
9898
|
+
# used for authentication with an CodeCommit repository. `Inactive`
|
9899
|
+
# means that the key cannot be used.
|
9882
9900
|
# @return [String]
|
9883
9901
|
#
|
9884
9902
|
# @!attribute [rw] upload_date
|
@@ -9919,8 +9937,8 @@ module Aws::IAM
|
|
9919
9937
|
#
|
9920
9938
|
# @!attribute [rw] status
|
9921
9939
|
# The status of the SSH public key. `Active` means that the key can be
|
9922
|
-
# used for authentication with an
|
9923
|
-
#
|
9940
|
+
# used for authentication with an CodeCommit repository. `Inactive`
|
9941
|
+
# means that the key cannot be used.
|
9924
9942
|
# @return [String]
|
9925
9943
|
#
|
9926
9944
|
# @!attribute [rw] upload_date
|
@@ -10068,7 +10086,7 @@ module Aws::IAM
|
|
10068
10086
|
# @!attribute [rw] last_authenticated
|
10069
10087
|
# The date and time, in [ISO 8601 date-time format][1], when an
|
10070
10088
|
# authenticated entity most recently attempted to access the service.
|
10071
|
-
#
|
10089
|
+
# Amazon Web Services does not report unauthenticated requests.
|
10072
10090
|
#
|
10073
10091
|
# This field is null if no IAM entities attempted to access the
|
10074
10092
|
# service within the [reporting period][2].
|
@@ -10083,12 +10101,13 @@ module Aws::IAM
|
|
10083
10101
|
# The namespace of the service in which access was attempted.
|
10084
10102
|
#
|
10085
10103
|
# To learn the service namespace of a service, see [Actions,
|
10086
|
-
# resources, and condition keys for
|
10087
|
-
# Authorization Reference*. Choose the name of the
|
10088
|
-
# details for that service. In the first paragraph,
|
10089
|
-
# prefix. For example, `(service prefix: a4b)`. For
|
10090
|
-
# about service namespaces, see [
|
10091
|
-
# the *
|
10104
|
+
# resources, and condition keys for Amazon Web Services services][1]
|
10105
|
+
# in the *Service Authorization Reference*. Choose the name of the
|
10106
|
+
# service to view details for that service. In the first paragraph,
|
10107
|
+
# find the service prefix. For example, `(service prefix: a4b)`. For
|
10108
|
+
# more information about service namespaces, see [Amazon Web Services
|
10109
|
+
# Service Namespaces][2] in the *Amazon Web Services General
|
10110
|
+
# Reference*.
|
10092
10111
|
#
|
10093
10112
|
#
|
10094
10113
|
#
|
@@ -10098,8 +10117,8 @@ module Aws::IAM
|
|
10098
10117
|
#
|
10099
10118
|
# @!attribute [rw] last_authenticated_entity
|
10100
10119
|
# The ARN of the authenticated entity (user or role) that last
|
10101
|
-
# attempted to access the service.
|
10102
|
-
# requests.
|
10120
|
+
# attempted to access the service. Amazon Web Services does not report
|
10121
|
+
# unauthenticated requests.
|
10103
10122
|
#
|
10104
10123
|
# This field is null if no IAM entities attempted to access the
|
10105
10124
|
# service within the [reporting period][1].
|
@@ -10111,8 +10130,8 @@ module Aws::IAM
|
|
10111
10130
|
#
|
10112
10131
|
# @!attribute [rw] last_authenticated_region
|
10113
10132
|
# The Region from which the authenticated entity (user or role) last
|
10114
|
-
# attempted to access the service.
|
10115
|
-
# requests.
|
10133
|
+
# attempted to access the service. Amazon Web Services does not report
|
10134
|
+
# unauthenticated requests.
|
10116
10135
|
#
|
10117
10136
|
# This field is null if no IAM entities attempted to access the
|
10118
10137
|
# service within the [reporting period][1].
|
@@ -10195,8 +10214,9 @@ module Aws::IAM
|
|
10195
10214
|
# @!attribute [rw] service_user_name
|
10196
10215
|
# The generated user name for the service-specific credential. This
|
10197
10216
|
# value is generated by combining the IAM user's name combined with
|
10198
|
-
# the ID number of the
|
10199
|
-
# example. This value cannot be configured
|
10217
|
+
# the ID number of the Amazon Web Services account, as in
|
10218
|
+
# `jane-at-123456789012`, for example. This value cannot be configured
|
10219
|
+
# by the user.
|
10200
10220
|
# @return [String]
|
10201
10221
|
#
|
10202
10222
|
# @!attribute [rw] service_password
|
@@ -10291,7 +10311,7 @@ module Aws::IAM
|
|
10291
10311
|
# version you want to set.
|
10292
10312
|
#
|
10293
10313
|
# For more information about ARNs, see [Amazon Resource Names
|
10294
|
-
# (ARNs)][1] in the *
|
10314
|
+
# (ARNs)][1] in the *Amazon Web Services General Reference*.
|
10295
10315
|
#
|
10296
10316
|
#
|
10297
10317
|
#
|
@@ -10327,14 +10347,14 @@ module Aws::IAM
|
|
10327
10347
|
#
|
10328
10348
|
# @!attribute [rw] global_endpoint_token_version
|
10329
10349
|
# The version of the global endpoint token. Version 1 tokens are valid
|
10330
|
-
# only in
|
10331
|
-
#
|
10332
|
-
#
|
10333
|
-
#
|
10334
|
-
#
|
10350
|
+
# only in Regions that are available by default. These tokens do not
|
10351
|
+
# work in manually enabled Regions, such as Asia Pacific (Hong Kong).
|
10352
|
+
# Version 2 tokens are valid in all Regions. However, version 2 tokens
|
10353
|
+
# are longer and might affect systems where you temporarily store
|
10354
|
+
# tokens.
|
10335
10355
|
#
|
10336
|
-
# For information, see [Activating and deactivating STS in an
|
10337
|
-
#
|
10356
|
+
# For information, see [Activating and deactivating STS in an
|
10357
|
+
# Region][1] in the *IAM User Guide*.
|
10338
10358
|
#
|
10339
10359
|
#
|
10340
10360
|
#
|
@@ -10421,7 +10441,12 @@ module Aws::IAM
|
|
10421
10441
|
# operations. In other words, do not use policies designed to restrict
|
10422
10442
|
# what a user can do while using the temporary credentials.
|
10423
10443
|
#
|
10424
|
-
# The
|
10444
|
+
# The maximum length of the policy document that you can pass in this
|
10445
|
+
# operation, including whitespace, is listed below. To view the
|
10446
|
+
# maximum character counts of a managed policy with no whitespaces,
|
10447
|
+
# see [IAM and STS character quotas][3].
|
10448
|
+
#
|
10449
|
+
# The [regex pattern][4] used to validate this parameter is a string
|
10425
10450
|
# of characters consisting of the following:
|
10426
10451
|
#
|
10427
10452
|
# * Any printable ASCII character ranging from the space character
|
@@ -10437,7 +10462,8 @@ module Aws::IAM
|
|
10437
10462
|
#
|
10438
10463
|
# [1]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetFederationToken.html
|
10439
10464
|
# [2]: https://docs.aws.amazon.com/IAM/latest/APIReference/API_AssumeRole.html
|
10440
|
-
# [3]:
|
10465
|
+
# [3]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-quotas.html#reference_iam-quotas-entity-length
|
10466
|
+
# [4]: http://wikipedia.org/wiki/regex
|
10441
10467
|
# @return [Array<String>]
|
10442
10468
|
#
|
10443
10469
|
# @!attribute [rw] permissions_boundary_policy_input_list
|
@@ -10450,7 +10476,12 @@ module Aws::IAM
|
|
10450
10476
|
# contains the complete, valid JSON text of a permissions boundary
|
10451
10477
|
# policy.
|
10452
10478
|
#
|
10453
|
-
# The
|
10479
|
+
# The maximum length of the policy document that you can pass in this
|
10480
|
+
# operation, including whitespace, is listed below. To view the
|
10481
|
+
# maximum character counts of a managed policy with no whitespaces,
|
10482
|
+
# see [IAM and STS character quotas][2].
|
10483
|
+
#
|
10484
|
+
# The [regex pattern][3] used to validate this parameter is a string
|
10454
10485
|
# of characters consisting of the following:
|
10455
10486
|
#
|
10456
10487
|
# * Any printable ASCII character ranging from the space character
|
@@ -10465,7 +10496,8 @@ module Aws::IAM
|
|
10465
10496
|
#
|
10466
10497
|
#
|
10467
10498
|
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_boundaries.html
|
10468
|
-
# [2]:
|
10499
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-quotas.html#reference_iam-quotas-entity-length
|
10500
|
+
# [3]: http://wikipedia.org/wiki/regex
|
10469
10501
|
# @return [Array<String>]
|
10470
10502
|
#
|
10471
10503
|
# @!attribute [rw] action_names
|
@@ -10476,13 +10508,13 @@ module Aws::IAM
|
|
10476
10508
|
# @return [Array<String>]
|
10477
10509
|
#
|
10478
10510
|
# @!attribute [rw] resource_arns
|
10479
|
-
# A list of ARNs of
|
10480
|
-
# this parameter is not provided, then the value
|
10481
|
-
# resources). Each API in the `ActionNames`
|
10482
|
-
# each resource in this list. The
|
10483
|
-
# result (allowed or denied) of each
|
10484
|
-
#
|
10485
|
-
# account.
|
10511
|
+
# A list of ARNs of Amazon Web Services resources to include in the
|
10512
|
+
# simulation. If this parameter is not provided, then the value
|
10513
|
+
# defaults to `*` (all resources). Each API in the `ActionNames`
|
10514
|
+
# parameter is evaluated for each resource in this list. The
|
10515
|
+
# simulation determines the access result (allowed or denied) of each
|
10516
|
+
# combination and reports it in the response. You can simulate
|
10517
|
+
# resources that don't exist in your account.
|
10486
10518
|
#
|
10487
10519
|
# The simulation does not automatically retrieve policies for the
|
10488
10520
|
# specified resources. If you want to include a resource policy in the
|
@@ -10494,7 +10526,7 @@ module Aws::IAM
|
|
10494
10526
|
# invalid input error.
|
10495
10527
|
#
|
10496
10528
|
# For more information about ARNs, see [Amazon Resource Names
|
10497
|
-
# (ARNs)][1] in the *
|
10529
|
+
# (ARNs)][1] in the *Amazon Web Services General Reference*.
|
10498
10530
|
#
|
10499
10531
|
#
|
10500
10532
|
#
|
@@ -10507,7 +10539,12 @@ module Aws::IAM
|
|
10507
10539
|
# policy attached. You can include only one resource-based policy in a
|
10508
10540
|
# simulation.
|
10509
10541
|
#
|
10510
|
-
# The
|
10542
|
+
# The maximum length of the policy document that you can pass in this
|
10543
|
+
# operation, including whitespace, is listed below. To view the
|
10544
|
+
# maximum character counts of a managed policy with no whitespaces,
|
10545
|
+
# see [IAM and STS character quotas][1].
|
10546
|
+
#
|
10547
|
+
# The [regex pattern][2] used to validate this parameter is a string
|
10511
10548
|
# of characters consisting of the following:
|
10512
10549
|
#
|
10513
10550
|
# * Any printable ASCII character ranging from the space character
|
@@ -10521,17 +10558,18 @@ module Aws::IAM
|
|
10521
10558
|
#
|
10522
10559
|
#
|
10523
10560
|
#
|
10524
|
-
# [1]:
|
10561
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-quotas.html#reference_iam-quotas-entity-length
|
10562
|
+
# [2]: http://wikipedia.org/wiki/regex
|
10525
10563
|
# @return [String]
|
10526
10564
|
#
|
10527
10565
|
# @!attribute [rw] resource_owner
|
10528
|
-
# An ARN representing the
|
10529
|
-
#
|
10530
|
-
#
|
10531
|
-
#
|
10532
|
-
#
|
10533
|
-
#
|
10534
|
-
#
|
10566
|
+
# An ARN representing the account ID that specifies the owner of any
|
10567
|
+
# simulated resource that does not identify its owner in the resource
|
10568
|
+
# ARN. Examples of resource ARNs include an S3 bucket or object. If
|
10569
|
+
# `ResourceOwner` is specified, it is also used as the account owner
|
10570
|
+
# of any `ResourcePolicy` included in the simulation. If the
|
10571
|
+
# `ResourceOwner` parameter is not specified, then the owner of the
|
10572
|
+
# resources and the resource policy defaults to the account of the
|
10535
10573
|
# identity provided in `CallerArn`. This parameter is required only if
|
10536
10574
|
# you specify a resource-based policy and account that owns the
|
10537
10575
|
# resource is different from the account that owns the simulated
|
@@ -10710,12 +10748,18 @@ module Aws::IAM
|
|
10710
10748
|
# also includes all policies that are attached to any groups the user
|
10711
10749
|
# belongs to.
|
10712
10750
|
#
|
10751
|
+
# The maximum length of the policy document that you can pass in this
|
10752
|
+
# operation, including whitespace, is listed below. To view the
|
10753
|
+
# maximum character counts of a managed policy with no whitespaces,
|
10754
|
+
# see [IAM and STS character quotas][1].
|
10755
|
+
#
|
10713
10756
|
# For more information about ARNs, see [Amazon Resource Names
|
10714
|
-
# (ARNs)][
|
10757
|
+
# (ARNs)][2] in the *Amazon Web Services General Reference*.
|
10715
10758
|
#
|
10716
10759
|
#
|
10717
10760
|
#
|
10718
|
-
# [1]: https://docs.aws.amazon.com/
|
10761
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-quotas.html#reference_iam-quotas-entity-length
|
10762
|
+
# [2]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
10719
10763
|
# @return [String]
|
10720
10764
|
#
|
10721
10765
|
# @!attribute [rw] policy_input_list
|
@@ -10754,7 +10798,12 @@ module Aws::IAM
|
|
10754
10798
|
# as a string containing the complete, valid JSON text of a
|
10755
10799
|
# permissions boundary policy.
|
10756
10800
|
#
|
10757
|
-
# The
|
10801
|
+
# The maximum length of the policy document that you can pass in this
|
10802
|
+
# operation, including whitespace, is listed below. To view the
|
10803
|
+
# maximum character counts of a managed policy with no whitespaces,
|
10804
|
+
# see [IAM and STS character quotas][2].
|
10805
|
+
#
|
10806
|
+
# The [regex pattern][3] used to validate this parameter is a string
|
10758
10807
|
# of characters consisting of the following:
|
10759
10808
|
#
|
10760
10809
|
# * Any printable ASCII character ranging from the space character
|
@@ -10769,7 +10818,8 @@ module Aws::IAM
|
|
10769
10818
|
#
|
10770
10819
|
#
|
10771
10820
|
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_boundaries.html
|
10772
|
-
# [2]:
|
10821
|
+
# [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-quotas.html#reference_iam-quotas-entity-length
|
10822
|
+
# [3]: http://wikipedia.org/wiki/regex
|
10773
10823
|
# @return [Array<String>]
|
10774
10824
|
#
|
10775
10825
|
# @!attribute [rw] action_names
|
@@ -10779,13 +10829,13 @@ module Aws::IAM
|
|
10779
10829
|
# @return [Array<String>]
|
10780
10830
|
#
|
10781
10831
|
# @!attribute [rw] resource_arns
|
10782
|
-
# A list of ARNs of
|
10783
|
-
# this parameter is not provided, then the value
|
10784
|
-
# resources). Each API in the `ActionNames`
|
10785
|
-
# each resource in this list. The
|
10786
|
-
# result (allowed or denied) of each
|
10787
|
-
#
|
10788
|
-
# account.
|
10832
|
+
# A list of ARNs of Amazon Web Services resources to include in the
|
10833
|
+
# simulation. If this parameter is not provided, then the value
|
10834
|
+
# defaults to `*` (all resources). Each API in the `ActionNames`
|
10835
|
+
# parameter is evaluated for each resource in this list. The
|
10836
|
+
# simulation determines the access result (allowed or denied) of each
|
10837
|
+
# combination and reports it in the response. You can simulate
|
10838
|
+
# resources that don't exist in your account.
|
10789
10839
|
#
|
10790
10840
|
# The simulation does not automatically retrieve policies for the
|
10791
10841
|
# specified resources. If you want to include a resource policy in the
|
@@ -10793,7 +10843,7 @@ module Aws::IAM
|
|
10793
10843
|
# `ResourcePolicy` parameter.
|
10794
10844
|
#
|
10795
10845
|
# For more information about ARNs, see [Amazon Resource Names
|
10796
|
-
# (ARNs)][1] in the *
|
10846
|
+
# (ARNs)][1] in the *Amazon Web Services General Reference*.
|
10797
10847
|
#
|
10798
10848
|
#
|
10799
10849
|
#
|
@@ -10806,7 +10856,12 @@ module Aws::IAM
|
|
10806
10856
|
# policy attached. You can include only one resource-based policy in a
|
10807
10857
|
# simulation.
|
10808
10858
|
#
|
10809
|
-
# The
|
10859
|
+
# The maximum length of the policy document that you can pass in this
|
10860
|
+
# operation, including whitespace, is listed below. To view the
|
10861
|
+
# maximum character counts of a managed policy with no whitespaces,
|
10862
|
+
# see [IAM and STS character quotas][1].
|
10863
|
+
#
|
10864
|
+
# The [regex pattern][2] used to validate this parameter is a string
|
10810
10865
|
# of characters consisting of the following:
|
10811
10866
|
#
|
10812
10867
|
# * Any printable ASCII character ranging from the space character
|
@@ -10820,11 +10875,12 @@ module Aws::IAM
|
|
10820
10875
|
#
|
10821
10876
|
#
|
10822
10877
|
#
|
10823
|
-
# [1]:
|
10878
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-quotas.html#reference_iam-quotas-entity-length
|
10879
|
+
# [2]: http://wikipedia.org/wiki/regex
|
10824
10880
|
# @return [String]
|
10825
10881
|
#
|
10826
10882
|
# @!attribute [rw] resource_owner
|
10827
|
-
# An
|
10883
|
+
# An account ID that specifies the owner of any simulated resource
|
10828
10884
|
# that does not identify its owner in the resource ARN. Examples of
|
10829
10885
|
# resource ARNs include an S3 bucket or object. If `ResourceOwner` is
|
10830
10886
|
# specified, it is also used as the account owner of any
|
@@ -10857,7 +10913,7 @@ module Aws::IAM
|
|
10857
10913
|
# to use in evaluating the policy.
|
10858
10914
|
#
|
10859
10915
|
# For more information about ARNs, see [Amazon Resource Names
|
10860
|
-
# (ARNs)][1] in the *
|
10916
|
+
# (ARNs)][1] in the *Amazon Web Services General Reference*.
|
10861
10917
|
#
|
10862
10918
|
#
|
10863
10919
|
#
|
@@ -11021,9 +11077,10 @@ module Aws::IAM
|
|
11021
11077
|
# different cost centers in your company. Typically, many resources
|
11022
11078
|
# have tags with the same key name but with different values.
|
11023
11079
|
#
|
11024
|
-
# <note markdown="1">
|
11025
|
-
# need to store an array, you can store comma-separated
|
11026
|
-
# string. However, you must interpret the value in your
|
11080
|
+
# <note markdown="1"> Amazon Web Services always interprets the tag `Value` as a single
|
11081
|
+
# string. If you need to store an array, you can store comma-separated
|
11082
|
+
# values in the string. However, you must interpret the value in your
|
11083
|
+
# code.
|
11027
11084
|
#
|
11028
11085
|
# </note>
|
11029
11086
|
# @return [String]
|
@@ -11053,10 +11110,10 @@ module Aws::IAM
|
|
11053
11110
|
# @!attribute [rw] instance_profile_name
|
11054
11111
|
# The name of the IAM instance profile to which you want to add tags.
|
11055
11112
|
#
|
11056
|
-
# This parameter
|
11057
|
-
# characters
|
11058
|
-
#
|
11059
|
-
# characters:
|
11113
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
11114
|
+
# characters consisting of upper and lowercase alphanumeric characters
|
11115
|
+
# with no spaces. You can also include any of the following
|
11116
|
+
# characters: \_+=,.@-
|
11060
11117
|
#
|
11061
11118
|
#
|
11062
11119
|
#
|
@@ -11095,10 +11152,10 @@ module Aws::IAM
|
|
11095
11152
|
# want to add tags. For virtual MFA devices, the serial number is the
|
11096
11153
|
# same as the ARN.
|
11097
11154
|
#
|
11098
|
-
# This parameter
|
11099
|
-
# characters
|
11100
|
-
#
|
11101
|
-
# characters:
|
11155
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
11156
|
+
# characters consisting of upper and lowercase alphanumeric characters
|
11157
|
+
# with no spaces. You can also include any of the following
|
11158
|
+
# characters: \_+=,.@-
|
11102
11159
|
#
|
11103
11160
|
#
|
11104
11161
|
#
|
@@ -11136,10 +11193,10 @@ module Aws::IAM
|
|
11136
11193
|
# The ARN of the OIDC identity provider in IAM to which you want to
|
11137
11194
|
# add tags.
|
11138
11195
|
#
|
11139
|
-
# This parameter
|
11140
|
-
# characters
|
11141
|
-
#
|
11142
|
-
# characters:
|
11196
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
11197
|
+
# characters consisting of upper and lowercase alphanumeric characters
|
11198
|
+
# with no spaces. You can also include any of the following
|
11199
|
+
# characters: \_+=,.@-
|
11143
11200
|
#
|
11144
11201
|
#
|
11145
11202
|
#
|
@@ -11178,10 +11235,10 @@ module Aws::IAM
|
|
11178
11235
|
# The ARN of the IAM customer managed policy to which you want to add
|
11179
11236
|
# tags.
|
11180
11237
|
#
|
11181
|
-
# This parameter
|
11182
|
-
# characters
|
11183
|
-
#
|
11184
|
-
# characters:
|
11238
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
11239
|
+
# characters consisting of upper and lowercase alphanumeric characters
|
11240
|
+
# with no spaces. You can also include any of the following
|
11241
|
+
# characters: \_+=,.@-
|
11185
11242
|
#
|
11186
11243
|
#
|
11187
11244
|
#
|
@@ -11259,10 +11316,10 @@ module Aws::IAM
|
|
11259
11316
|
# The ARN of the SAML identity provider in IAM to which you want to
|
11260
11317
|
# add tags.
|
11261
11318
|
#
|
11262
|
-
# This parameter
|
11263
|
-
# characters
|
11264
|
-
#
|
11265
|
-
# characters:
|
11319
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
11320
|
+
# characters consisting of upper and lowercase alphanumeric characters
|
11321
|
+
# with no spaces. You can also include any of the following
|
11322
|
+
# characters: \_+=,.@-
|
11266
11323
|
#
|
11267
11324
|
#
|
11268
11325
|
#
|
@@ -11301,10 +11358,10 @@ module Aws::IAM
|
|
11301
11358
|
# The name of the IAM server certificate to which you want to add
|
11302
11359
|
# tags.
|
11303
11360
|
#
|
11304
|
-
# This parameter
|
11305
|
-
# characters
|
11306
|
-
#
|
11307
|
-
# characters:
|
11361
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
11362
|
+
# characters consisting of upper and lowercase alphanumeric characters
|
11363
|
+
# with no spaces. You can also include any of the following
|
11364
|
+
# characters: \_+=,.@-
|
11308
11365
|
#
|
11309
11366
|
#
|
11310
11367
|
#
|
@@ -11342,10 +11399,10 @@ module Aws::IAM
|
|
11342
11399
|
# @!attribute [rw] user_name
|
11343
11400
|
# The name of the IAM user to which you want to add tags.
|
11344
11401
|
#
|
11345
|
-
# This parameter
|
11346
|
-
# characters
|
11347
|
-
#
|
11348
|
-
# characters:
|
11402
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
11403
|
+
# characters consisting of upper and lowercase alphanumeric characters
|
11404
|
+
# with no spaces. You can also include any of the following
|
11405
|
+
# characters: \_+=,.@-
|
11349
11406
|
#
|
11350
11407
|
#
|
11351
11408
|
#
|
@@ -11378,11 +11435,11 @@ module Aws::IAM
|
|
11378
11435
|
# @return [String]
|
11379
11436
|
#
|
11380
11437
|
# @!attribute [rw] last_accessed_entity
|
11381
|
-
# The Amazon Resource Name (ARN). ARNs are unique identifiers for
|
11382
|
-
# resources.
|
11438
|
+
# The Amazon Resource Name (ARN). ARNs are unique identifiers for
|
11439
|
+
# Amazon Web Services resources.
|
11383
11440
|
#
|
11384
11441
|
# For more information about ARNs, go to [Amazon Resource Names
|
11385
|
-
# (ARNs)][1] in the *
|
11442
|
+
# (ARNs)][1] in the *Amazon Web Services General Reference*.
|
11386
11443
|
#
|
11387
11444
|
#
|
11388
11445
|
#
|
@@ -11392,7 +11449,8 @@ module Aws::IAM
|
|
11392
11449
|
# @!attribute [rw] last_accessed_time
|
11393
11450
|
# The date and time, in [ISO 8601 date-time format][1], when an
|
11394
11451
|
# authenticated entity most recently attempted to access the tracked
|
11395
|
-
# service.
|
11452
|
+
# service. Amazon Web Services does not report unauthenticated
|
11453
|
+
# requests.
|
11396
11454
|
#
|
11397
11455
|
# This field is null if no IAM entities attempted to access the
|
11398
11456
|
# service within the [reporting period][2].
|
@@ -11405,8 +11463,8 @@ module Aws::IAM
|
|
11405
11463
|
#
|
11406
11464
|
# @!attribute [rw] last_accessed_region
|
11407
11465
|
# The Region from which the authenticated entity (user or role) last
|
11408
|
-
# attempted to access the tracked action.
|
11409
|
-
# unauthenticated requests.
|
11466
|
+
# attempted to access the tracked action. Amazon Web Services does not
|
11467
|
+
# report unauthenticated requests.
|
11410
11468
|
#
|
11411
11469
|
# This field is null if no IAM entities attempted to access the
|
11412
11470
|
# service within the [reporting period][1].
|
@@ -11469,10 +11527,10 @@ module Aws::IAM
|
|
11469
11527
|
# The name of the IAM instance profile from which you want to remove
|
11470
11528
|
# tags.
|
11471
11529
|
#
|
11472
|
-
# This parameter
|
11473
|
-
# characters
|
11474
|
-
#
|
11475
|
-
# characters:
|
11530
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
11531
|
+
# characters consisting of upper and lowercase alphanumeric characters
|
11532
|
+
# with no spaces. You can also include any of the following
|
11533
|
+
# characters: \_+=,.@-
|
11476
11534
|
#
|
11477
11535
|
#
|
11478
11536
|
#
|
@@ -11506,10 +11564,10 @@ module Aws::IAM
|
|
11506
11564
|
# want to remove tags. For virtual MFA devices, the serial number is
|
11507
11565
|
# the same as the ARN.
|
11508
11566
|
#
|
11509
|
-
# This parameter
|
11510
|
-
# characters
|
11511
|
-
#
|
11512
|
-
# characters:
|
11567
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
11568
|
+
# characters consisting of upper and lowercase alphanumeric characters
|
11569
|
+
# with no spaces. You can also include any of the following
|
11570
|
+
# characters: \_+=,.@-
|
11513
11571
|
#
|
11514
11572
|
#
|
11515
11573
|
#
|
@@ -11542,10 +11600,10 @@ module Aws::IAM
|
|
11542
11600
|
# The ARN of the OIDC provider in IAM from which you want to remove
|
11543
11601
|
# tags.
|
11544
11602
|
#
|
11545
|
-
# This parameter
|
11546
|
-
# characters
|
11547
|
-
#
|
11548
|
-
# characters:
|
11603
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
11604
|
+
# characters consisting of upper and lowercase alphanumeric characters
|
11605
|
+
# with no spaces. You can also include any of the following
|
11606
|
+
# characters: \_+=,.@-
|
11549
11607
|
#
|
11550
11608
|
#
|
11551
11609
|
#
|
@@ -11578,10 +11636,10 @@ module Aws::IAM
|
|
11578
11636
|
# The ARN of the IAM customer managed policy from which you want to
|
11579
11637
|
# remove tags.
|
11580
11638
|
#
|
11581
|
-
# This parameter
|
11582
|
-
# characters
|
11583
|
-
#
|
11584
|
-
# characters:
|
11639
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
11640
|
+
# characters consisting of upper and lowercase alphanumeric characters
|
11641
|
+
# with no spaces. You can also include any of the following
|
11642
|
+
# characters: \_+=,.@-
|
11585
11643
|
#
|
11586
11644
|
#
|
11587
11645
|
#
|
@@ -11649,10 +11707,10 @@ module Aws::IAM
|
|
11649
11707
|
# The ARN of the SAML identity provider in IAM from which you want to
|
11650
11708
|
# remove tags.
|
11651
11709
|
#
|
11652
|
-
# This parameter
|
11653
|
-
# characters
|
11654
|
-
#
|
11655
|
-
# characters:
|
11710
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
11711
|
+
# characters consisting of upper and lowercase alphanumeric characters
|
11712
|
+
# with no spaces. You can also include any of the following
|
11713
|
+
# characters: \_+=,.@-
|
11656
11714
|
#
|
11657
11715
|
#
|
11658
11716
|
#
|
@@ -11685,10 +11743,10 @@ module Aws::IAM
|
|
11685
11743
|
# The name of the IAM server certificate from which you want to remove
|
11686
11744
|
# tags.
|
11687
11745
|
#
|
11688
|
-
# This parameter
|
11689
|
-
# characters
|
11690
|
-
#
|
11691
|
-
# characters:
|
11746
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
11747
|
+
# characters consisting of upper and lowercase alphanumeric characters
|
11748
|
+
# with no spaces. You can also include any of the following
|
11749
|
+
# characters: \_+=,.@-
|
11692
11750
|
#
|
11693
11751
|
#
|
11694
11752
|
#
|
@@ -11720,10 +11778,10 @@ module Aws::IAM
|
|
11720
11778
|
# @!attribute [rw] user_name
|
11721
11779
|
# The name of the IAM user from which you want to remove tags.
|
11722
11780
|
#
|
11723
|
-
# This parameter
|
11724
|
-
# characters
|
11725
|
-
#
|
11726
|
-
# characters:
|
11781
|
+
# This parameter allows (through its [regex pattern][1]) a string of
|
11782
|
+
# characters consisting of upper and lowercase alphanumeric characters
|
11783
|
+
# with no spaces. You can also include any of the following
|
11784
|
+
# characters: \_+=,.@-
|
11727
11785
|
#
|
11728
11786
|
#
|
11729
11787
|
#
|
@@ -11780,8 +11838,8 @@ module Aws::IAM
|
|
11780
11838
|
#
|
11781
11839
|
# @!attribute [rw] status
|
11782
11840
|
# The status you want to assign to the secret access key. `Active`
|
11783
|
-
# means that the key can be used for programmatic calls to
|
11784
|
-
# `Inactive` means that the key cannot be used.
|
11841
|
+
# means that the key can be used for programmatic calls to Amazon Web
|
11842
|
+
# Services, while `Inactive` means that the key cannot be used.
|
11785
11843
|
# @return [String]
|
11786
11844
|
#
|
11787
11845
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/UpdateAccessKeyRequest AWS API Documentation
|
@@ -11855,10 +11913,9 @@ module Aws::IAM
|
|
11855
11913
|
# @return [Boolean]
|
11856
11914
|
#
|
11857
11915
|
# @!attribute [rw] allow_users_to_change_password
|
11858
|
-
# Allows all IAM users in your account to use the
|
11859
|
-
#
|
11860
|
-
#
|
11861
|
-
# Guide*.
|
11916
|
+
# Allows all IAM users in your account to use the Management Console
|
11917
|
+
# to change their own passwords. For more information, see [Letting
|
11918
|
+
# IAM users change their own passwords][1] in the *IAM User Guide*.
|
11862
11919
|
#
|
11863
11920
|
# If you do not specify a value for this parameter, then the operation
|
11864
11921
|
# uses the default value of `false`. The result is that IAM users in
|
@@ -11938,10 +11995,10 @@ module Aws::IAM
|
|
11938
11995
|
# @!attribute [rw] policy_document
|
11939
11996
|
# The policy that grants an entity permission to assume the role.
|
11940
11997
|
#
|
11941
|
-
# You must provide policies in JSON format in IAM. However, for
|
11998
|
+
# You must provide policies in JSON format in IAM. However, for
|
11942
11999
|
# CloudFormation templates formatted in YAML, you can provide the
|
11943
|
-
# policy in JSON or YAML format.
|
11944
|
-
#
|
12000
|
+
# policy in JSON or YAML format. CloudFormation always converts a YAML
|
12001
|
+
# policy to JSON format before submitting it to IAM.
|
11945
12002
|
#
|
11946
12003
|
# The [regex pattern][1] used to validate this parameter is a string
|
11947
12004
|
# of characters consisting of the following:
|
@@ -12066,8 +12123,8 @@ module Aws::IAM
|
|
12066
12123
|
# carriage return (`\u000D`)
|
12067
12124
|
#
|
12068
12125
|
# However, the format can be further restricted by the account
|
12069
|
-
# administrator by setting a password policy on the
|
12070
|
-
#
|
12126
|
+
# administrator by setting a password policy on the account. For more
|
12127
|
+
# information, see UpdateAccountPasswordPolicy.
|
12071
12128
|
#
|
12072
12129
|
#
|
12073
12130
|
#
|
@@ -12104,7 +12161,7 @@ module Aws::IAM
|
|
12104
12161
|
# operation.
|
12105
12162
|
#
|
12106
12163
|
# For more information about ARNs, see [Amazon Resource Names
|
12107
|
-
# (ARNs)][1] in the *
|
12164
|
+
# (ARNs)][1] in the *Amazon Web Services General Reference*.
|
12108
12165
|
#
|
12109
12166
|
#
|
12110
12167
|
#
|
@@ -12186,7 +12243,7 @@ module Aws::IAM
|
|
12186
12243
|
# the default maximum of one hour is applied. This setting can have a
|
12187
12244
|
# value from 1 hour to 12 hours.
|
12188
12245
|
#
|
12189
|
-
# Anyone who assumes the role from the
|
12246
|
+
# Anyone who assumes the role from the CLI or API can use the
|
12190
12247
|
# `DurationSeconds` API parameter or the `duration-seconds` CLI
|
12191
12248
|
# parameter to request a longer session. The `MaxSessionDuration`
|
12192
12249
|
# setting determines the maximum duration that can be requested using
|
@@ -12238,7 +12295,7 @@ module Aws::IAM
|
|
12238
12295
|
# The Amazon Resource Name (ARN) of the SAML provider to update.
|
12239
12296
|
#
|
12240
12297
|
# For more information about ARNs, see [Amazon Resource Names
|
12241
|
-
# (ARNs)][1] in the *
|
12298
|
+
# (ARNs)][1] in the *Amazon Web Services General Reference*.
|
12242
12299
|
#
|
12243
12300
|
#
|
12244
12301
|
#
|
@@ -12305,8 +12362,8 @@ module Aws::IAM
|
|
12305
12362
|
#
|
12306
12363
|
# @!attribute [rw] status
|
12307
12364
|
# The status to assign to the SSH public key. `Active` means that the
|
12308
|
-
# key can be used for authentication with an
|
12309
|
-
#
|
12365
|
+
# key can be used for authentication with an CodeCommit repository.
|
12366
|
+
# `Inactive` means that the key cannot be used.
|
12310
12367
|
# @return [String]
|
12311
12368
|
#
|
12312
12369
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/UpdateSSHPublicKeyRequest AWS API Documentation
|
@@ -12468,8 +12525,8 @@ module Aws::IAM
|
|
12468
12525
|
#
|
12469
12526
|
# @!attribute [rw] status
|
12470
12527
|
# The status you want to assign to the certificate. `Active` means
|
12471
|
-
# that the certificate can be used for programmatic calls to
|
12472
|
-
# `Inactive` means that the certificate cannot be used.
|
12528
|
+
# that the certificate can be used for programmatic calls to Amazon
|
12529
|
+
# Web Services `Inactive` means that the certificate cannot be used.
|
12473
12530
|
# @return [String]
|
12474
12531
|
#
|
12475
12532
|
# @see http://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/UpdateSigningCertificateRequest AWS API Documentation
|
@@ -12906,13 +12963,13 @@ module Aws::IAM
|
|
12906
12963
|
#
|
12907
12964
|
# @!attribute [rw] password_last_used
|
12908
12965
|
# The date and time, in [ISO 8601 date-time format][1], when the
|
12909
|
-
# user's password was last used to sign in to an
|
12910
|
-
# list of
|
12911
|
-
# the [Credential reports][2] topic in
|
12912
|
-
# password is used more than once in a
|
12913
|
-
# first use is returned in this field. If
|
12914
|
-
# value), then it indicates that they never
|
12915
|
-
# This can be because:
|
12966
|
+
# user's password was last used to sign in to an Amazon Web Services
|
12967
|
+
# website. For a list of Amazon Web Services websites that capture a
|
12968
|
+
# user's last sign-in time, see the [Credential reports][2] topic in
|
12969
|
+
# the *IAM User Guide*. If a password is used more than once in a
|
12970
|
+
# five-minute span, only the first use is returned in this field. If
|
12971
|
+
# the field is null (no value), then it indicates that they never
|
12972
|
+
# signed in with a password. This can be because:
|
12916
12973
|
#
|
12917
12974
|
# * The user never had a password.
|
12918
12975
|
#
|
@@ -12996,11 +13053,11 @@ module Aws::IAM
|
|
12996
13053
|
# @return [String]
|
12997
13054
|
#
|
12998
13055
|
# @!attribute [rw] arn
|
12999
|
-
# The Amazon Resource Name (ARN). ARNs are unique identifiers for
|
13000
|
-
# resources.
|
13056
|
+
# The Amazon Resource Name (ARN). ARNs are unique identifiers for
|
13057
|
+
# Amazon Web Services resources.
|
13001
13058
|
#
|
13002
13059
|
# For more information about ARNs, go to [Amazon Resource Names
|
13003
|
-
# (ARNs)][1] in the *
|
13060
|
+
# (ARNs)][1] in the *Amazon Web Services General Reference*.
|
13004
13061
|
#
|
13005
13062
|
#
|
13006
13063
|
#
|