aws-sdk-iam 1.39.0 → 1.44.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '086f8194faa4dda8254d6053c3c2606092a537a46624c9d6e5a159f5506431d5'
4
- data.tar.gz: 62e40109086cdd1bb34a6cb886329219dc781e248ba791ac83d20a87ef0d8362
3
+ metadata.gz: 2cef364b17c59de953ba086a699ea0a75e8bb0f6ada6f67c25b84bb5c1031209
4
+ data.tar.gz: 7ae862facff9e3e7148aa22e6fe477ad2ecba6d4bdfbef7835736dd0792a46ea
5
5
  SHA512:
6
- metadata.gz: 70434a577f415496951934e86db86a7653da7b5505d2f45d6532666155c1b2fc768e1eeadae1b9b35b1086c9115364b11c168b0b2d316ae3c06d560450933ba9
7
- data.tar.gz: 284262a384e6dc7abee1508eb9604b42fe4d649b18e6c27b0b3130da0a78dcbc36307e6bf80597147169acf39dd74c766f6716fc5629a00c91d18754bb540957
6
+ metadata.gz: e5c862130dc821f106ccc534a8832afc82c840d4f6b006418fd2cf901eb888db2107bbb3d62ff397249e091dced18eb563c0d3d7852bf01885ac6e40485726f5
7
+ data.tar.gz: dc009c40980ad7b7f05e8207a2ff070ebe32d98430672ec0029b47512bffe5000247aa6b71c53ac9375e6bc5673dd941d49b4409e0445c2605c5492294b468dd
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -64,9 +66,9 @@ require_relative 'aws-sdk-iam/customizations'
64
66
  #
65
67
  # See {Errors} for more information.
66
68
  #
67
- # @service
69
+ # @!group service
68
70
  module Aws::IAM
69
71
 
70
- GEM_VERSION = '1.39.0'
72
+ GEM_VERSION = '1.44.0'
71
73
 
72
74
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
24
26
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
25
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
26
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
+ require 'aws-sdk-core/plugins/http_checksum.rb'
27
30
  require 'aws-sdk-core/plugins/signature_v4.rb'
28
31
  require 'aws-sdk-core/plugins/protocols/query.rb'
29
32
 
@@ -69,6 +72,7 @@ module Aws::IAM
69
72
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
70
73
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
71
74
  add_plugin(Aws::Plugins::TransferEncoding)
75
+ add_plugin(Aws::Plugins::HttpChecksum)
72
76
  add_plugin(Aws::Plugins::SignatureV4)
73
77
  add_plugin(Aws::Plugins::Protocols::Query)
74
78
 
@@ -81,13 +85,28 @@ module Aws::IAM
81
85
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
82
86
  # credentials.
83
87
  #
88
+ # * `Aws::SharedCredentials` - Used for loading static credentials from a
89
+ # shared file, such as `~/.aws/config`.
90
+ #
91
+ # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
92
+ #
93
+ # * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
94
+ # assume a role after providing credentials via the web.
95
+ #
96
+ # * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
97
+ # access token generated from `aws login`.
98
+ #
99
+ # * `Aws::ProcessCredentials` - Used for loading credentials from a
100
+ # process that outputs to stdout.
101
+ #
84
102
  # * `Aws::InstanceProfileCredentials` - Used for loading credentials
85
103
  # from an EC2 IMDS on an EC2 instance.
86
104
  #
87
- # * `Aws::SharedCredentials` - Used for loading credentials from a
88
- # shared file, such as `~/.aws/config`.
105
+ # * `Aws::ECSCredentials` - Used for loading credentials from
106
+ # instances running in ECS.
89
107
  #
90
- # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
108
+ # * `Aws::CognitoIdentityCredentials` - Used for loading credentials
109
+ # from the Cognito Identity service.
91
110
  #
92
111
  # When `:credentials` are not configured directly, the following
93
112
  # locations will be searched for credentials:
@@ -97,10 +116,10 @@ module Aws::IAM
97
116
  # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
98
117
  # * `~/.aws/credentials`
99
118
  # * `~/.aws/config`
100
- # * EC2 IMDS instance profile - When used by default, the timeouts are
101
- # very aggressive. Construct and pass an instance of
102
- # `Aws::InstanceProfileCredentails` to enable retries and extended
103
- # timeouts.
119
+ # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
+ # are very aggressive. Construct and pass an instance of
121
+ # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
+ # enable retries and extended timeouts.
104
123
  #
105
124
  # @option options [required, String] :region
106
125
  # The AWS region to connect to. The configured `:region` is
@@ -161,7 +180,7 @@ module Aws::IAM
161
180
  # @option options [String] :endpoint
162
181
  # The client endpoint is normally constructed from the `:region`
163
182
  # option. You should only configure an `:endpoint` when connecting
164
- # to test endpoints. This should be a valid HTTP(S) URI.
183
+ # to test or custom endpoints. This should be a valid HTTP(S) URI.
165
184
  #
166
185
  # @option options [Integer] :endpoint_cache_max_entries (1000)
167
186
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -354,30 +373,33 @@ module Aws::IAM
354
373
  end
355
374
 
356
375
  # Adds the specified IAM role to the specified instance profile. An
357
- # instance profile can contain only one role, and this limit cannot be
358
- # increased. You can remove the existing role and then add a different
359
- # role to an instance profile. You must then wait for the change to
360
- # appear across all of AWS because of [eventual consistency][1]. To
361
- # force the change, you must [disassociate the instance profile][2] and
362
- # then [associate the instance profile][3], or you can stop your
363
- # instance and then restart it.
376
+ # instance profile can contain only one role. (The number and size of
377
+ # IAM resources in an AWS account are limited. For more information, see
378
+ # [IAM and STS Quotas][1] in the *IAM User Guide*.) You can remove the
379
+ # existing role and then add a different role to an instance profile.
380
+ # You must then wait for the change to appear across all of AWS because
381
+ # of [eventual consistency][2]. To force the change, you must
382
+ # [disassociate the instance profile][3] and then [associate the
383
+ # instance profile][4], or you can stop your instance and then restart
384
+ # it.
364
385
  #
365
386
  # <note markdown="1"> The caller of this API must be granted the `PassRole` permission on
366
387
  # the IAM role by a permissions policy.
367
388
  #
368
389
  # </note>
369
390
  #
370
- # For more information about roles, go to [Working with Roles][4]. For
391
+ # For more information about roles, go to [Working with Roles][5]. For
371
392
  # more information about instance profiles, go to [About Instance
372
- # Profiles][5].
393
+ # Profiles][6].
373
394
  #
374
395
  #
375
396
  #
376
- # [1]: https://en.wikipedia.org/wiki/Eventual_consistency
377
- # [2]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DisassociateIamInstanceProfile.html
378
- # [3]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_AssociateIamInstanceProfile.html
379
- # [4]: https://docs.aws.amazon.com/IAM/latest/UserGuide/WorkingWithRoles.html
380
- # [5]: https://docs.aws.amazon.com/IAM/latest/UserGuide/AboutInstanceProfiles.html
397
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-quotas.html
398
+ # [2]: https://en.wikipedia.org/wiki/Eventual_consistency
399
+ # [3]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DisassociateIamInstanceProfile.html
400
+ # [4]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_AssociateIamInstanceProfile.html
401
+ # [5]: https://docs.aws.amazon.com/IAM/latest/UserGuide/WorkingWithRoles.html
402
+ # [6]: https://docs.aws.amazon.com/IAM/latest/UserGuide/AboutInstanceProfiles.html
381
403
  #
382
404
  # @option params [required, String] :instance_profile_name
383
405
  # The name of the instance profile to update.
@@ -751,8 +773,9 @@ module Aws::IAM
751
773
  # credentials. This is true even if the AWS account has no associated
752
774
  # users.
753
775
  #
754
- # For information about limits on the number of keys you can create, see
755
- # [Limitations on IAM Entities][1] in the *IAM User Guide*.
776
+ # The number and size of IAM resources in an AWS account are limited.
777
+ # For more information, see [IAM and STS Quotas][1] in the *IAM User
778
+ # Guide*.
756
779
  #
757
780
  # To ensure the security of your AWS account, the secret access key is
758
781
  # accessible only during key and user creation. You must save the key
@@ -762,7 +785,7 @@ module Aws::IAM
762
785
  #
763
786
  #
764
787
  #
765
- # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/LimitationsOnEntities.html
788
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-quotas.html
766
789
  #
767
790
  # @option params [String] :user_name
768
791
  # The name of the IAM user that the new key will belong to.
@@ -871,12 +894,13 @@ module Aws::IAM
871
894
 
872
895
  # Creates a new group.
873
896
  #
874
- # For information about the number of groups you can create, see
875
- # [Limitations on IAM Entities][1] in the *IAM User Guide*.
897
+ # The number and size of IAM resources in an AWS account are limited.
898
+ # For more information, see [IAM and STS Quotas][1] in the *IAM User
899
+ # Guide*.
876
900
  #
877
901
  #
878
902
  #
879
- # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/LimitationsOnEntities.html
903
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-quotas.html
880
904
  #
881
905
  # @option params [String] :path
882
906
  # The path to the group. For more information about paths, see [IAM
@@ -956,13 +980,14 @@ module Aws::IAM
956
980
  # Creates a new instance profile. For information about instance
957
981
  # profiles, go to [About Instance Profiles][1].
958
982
  #
959
- # For information about the number of instance profiles you can create,
960
- # see [Limitations on IAM Entities][2] in the *IAM User Guide*.
983
+ # The number and size of IAM resources in an AWS account are limited.
984
+ # For more information, see [IAM and STS Quotas][2] in the *IAM User
985
+ # Guide*.
961
986
  #
962
987
  #
963
988
  #
964
989
  # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/AboutInstanceProfiles.html
965
- # [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/LimitationsOnEntities.html
990
+ # [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-quotas.html
966
991
  #
967
992
  # @option params [required, String] :instance_profile_name
968
993
  # The name of the instance profile to create.
@@ -1492,14 +1517,14 @@ module Aws::IAM
1492
1517
  end
1493
1518
 
1494
1519
  # Creates a new role for your AWS account. For more information about
1495
- # roles, go to [IAM Roles][1]. For information about limitations on role
1496
- # names and the number of roles you can create, go to [Limitations on
1497
- # IAM Entities][2] in the *IAM User Guide*.
1520
+ # roles, go to [IAM Roles][1]. The number and size of IAM resources in
1521
+ # an AWS account are limited. For more information, see [IAM and STS
1522
+ # Quotas][2] in the *IAM User Guide*.
1498
1523
  #
1499
1524
  #
1500
1525
  #
1501
1526
  # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/WorkingWithRoles.html
1502
- # [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/LimitationsOnEntities.html
1527
+ # [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-quotas.html
1503
1528
  #
1504
1529
  # @option params [String] :path
1505
1530
  # The path to the role. For more information about paths, see [IAM
@@ -1912,12 +1937,13 @@ module Aws::IAM
1912
1937
 
1913
1938
  # Creates a new IAM user for your AWS account.
1914
1939
  #
1915
- # For information about limitations on the number of IAM users you can
1916
- # create, see [Limitations on IAM Entities][1] in the *IAM User Guide*.
1940
+ # The number and size of IAM resources in an AWS account are limited.
1941
+ # For more information, see [IAM and STS Quotas][1] in the *IAM User
1942
+ # Guide*.
1917
1943
  #
1918
1944
  #
1919
1945
  #
1920
- # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/LimitationsOnEntities.html
1946
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-quotas.html
1921
1947
  #
1922
1948
  # @option params [String] :path
1923
1949
  # The path for the user name. For more information about paths, see [IAM
@@ -2032,8 +2058,9 @@ module Aws::IAM
2032
2058
  # MFA devices, go to [Using a Virtual MFA Device][1] in the *IAM User
2033
2059
  # Guide*.
2034
2060
  #
2035
- # For information about limits on the number of MFA devices you can
2036
- # create, see [Limitations on Entities][2] in the *IAM User Guide*.
2061
+ # The number and size of IAM resources in an AWS account are limited.
2062
+ # For more information, see [IAM and STS Quotas][2] in the *IAM User
2063
+ # Guide*.
2037
2064
  #
2038
2065
  # The seed information contained in the QR code and the Base32 string
2039
2066
  # should be treated like any other secret access information. In other
@@ -2044,7 +2071,7 @@ module Aws::IAM
2044
2071
  #
2045
2072
  #
2046
2073
  # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_VirtualMFA.html
2047
- # [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/LimitationsOnEntities.html
2074
+ # [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-quotas.html
2048
2075
  #
2049
2076
  # @option params [String] :path
2050
2077
  # The path for the virtual MFA device. For more information about paths,
@@ -4130,12 +4157,13 @@ module Aws::IAM
4130
4157
  # Retrieves information about IAM entity usage and IAM quotas in the AWS
4131
4158
  # account.
4132
4159
  #
4133
- # For information about limitations on IAM entities, see [Limitations on
4134
- # IAM Entities][1] in the *IAM User Guide*.
4160
+ # The number and size of IAM resources in an AWS account are limited.
4161
+ # For more information, see [IAM and STS Quotas][1] in the *IAM User
4162
+ # Guide*.
4135
4163
  #
4136
4164
  #
4137
4165
  #
4138
- # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/LimitationsOnEntities.html
4166
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-quotas.html
4139
4167
  #
4140
4168
  # @return [Types::GetAccountSummaryResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4141
4169
  #
@@ -11561,7 +11589,7 @@ module Aws::IAM
11561
11589
  params: params,
11562
11590
  config: config)
11563
11591
  context[:gem_name] = 'aws-sdk-iam'
11564
- context[:gem_version] = '1.39.0'
11592
+ context[:gem_version] = '1.44.0'
11565
11593
  Seahorse::Client::Request.new(handlers, context)
11566
11594
  end
11567
11595
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,2 +1,4 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # customizations to generated classes
2
4
  require 'aws-sdk-iam/customizations/resource'
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Aws
2
4
  module IAM
3
5
  class Resource
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -93,6 +95,7 @@ module Aws::IAM
93
95
  :entity_path,
94
96
  :last_authenticated_time,
95
97
  :total_authenticated_entities)
98
+ SENSITIVE = []
96
99
  include Aws::Structure
97
100
  end
98
101
 
@@ -137,6 +140,7 @@ module Aws::IAM
137
140
  :status,
138
141
  :secret_access_key,
139
142
  :create_date)
143
+ SENSITIVE = [:secret_access_key]
140
144
  include Aws::Structure
141
145
  end
142
146
 
@@ -201,6 +205,7 @@ module Aws::IAM
201
205
  :last_used_date,
202
206
  :service_name,
203
207
  :region)
208
+ SENSITIVE = []
204
209
  include Aws::Structure
205
210
  end
206
211
 
@@ -233,6 +238,7 @@ module Aws::IAM
233
238
  :access_key_id,
234
239
  :status,
235
240
  :create_date)
241
+ SENSITIVE = []
236
242
  include Aws::Structure
237
243
  end
238
244
 
@@ -261,6 +267,7 @@ module Aws::IAM
261
267
  class AddClientIDToOpenIDConnectProviderRequest < Struct.new(
262
268
  :open_id_connect_provider_arn,
263
269
  :client_id)
270
+ SENSITIVE = []
264
271
  include Aws::Structure
265
272
  end
266
273
 
@@ -303,6 +310,7 @@ module Aws::IAM
303
310
  class AddRoleToInstanceProfileRequest < Struct.new(
304
311
  :instance_profile_name,
305
312
  :role_name)
313
+ SENSITIVE = []
306
314
  include Aws::Structure
307
315
  end
308
316
 
@@ -345,6 +353,7 @@ module Aws::IAM
345
353
  class AddUserToGroupRequest < Struct.new(
346
354
  :group_name,
347
355
  :user_name)
356
+ SENSITIVE = []
348
357
  include Aws::Structure
349
358
  end
350
359
 
@@ -386,6 +395,7 @@ module Aws::IAM
386
395
  class AttachGroupPolicyRequest < Struct.new(
387
396
  :group_name,
388
397
  :policy_arn)
398
+ SENSITIVE = []
389
399
  include Aws::Structure
390
400
  end
391
401
 
@@ -427,6 +437,7 @@ module Aws::IAM
427
437
  class AttachRolePolicyRequest < Struct.new(
428
438
  :role_name,
429
439
  :policy_arn)
440
+ SENSITIVE = []
430
441
  include Aws::Structure
431
442
  end
432
443
 
@@ -468,6 +479,7 @@ module Aws::IAM
468
479
  class AttachUserPolicyRequest < Struct.new(
469
480
  :user_name,
470
481
  :policy_arn)
482
+ SENSITIVE = []
471
483
  include Aws::Structure
472
484
  end
473
485
 
@@ -499,6 +511,7 @@ module Aws::IAM
499
511
  class AttachedPermissionsBoundary < Struct.new(
500
512
  :permissions_boundary_type,
501
513
  :permissions_boundary_arn)
514
+ SENSITIVE = []
502
515
  include Aws::Structure
503
516
  end
504
517
 
@@ -538,6 +551,7 @@ module Aws::IAM
538
551
  class AttachedPolicy < Struct.new(
539
552
  :policy_name,
540
553
  :policy_arn)
554
+ SENSITIVE = []
541
555
  include Aws::Structure
542
556
  end
543
557
 
@@ -577,6 +591,7 @@ module Aws::IAM
577
591
  class ChangePasswordRequest < Struct.new(
578
592
  :old_password,
579
593
  :new_password)
594
+ SENSITIVE = [:old_password, :new_password]
580
595
  include Aws::Structure
581
596
  end
582
597
 
@@ -591,6 +606,7 @@ module Aws::IAM
591
606
  #
592
607
  class ConcurrentModificationException < Struct.new(
593
608
  :message)
609
+ SENSITIVE = []
594
610
  include Aws::Structure
595
611
  end
596
612
 
@@ -634,6 +650,7 @@ module Aws::IAM
634
650
  :context_key_name,
635
651
  :context_key_values,
636
652
  :context_key_type)
653
+ SENSITIVE = []
637
654
  include Aws::Structure
638
655
  end
639
656
 
@@ -661,6 +678,7 @@ module Aws::IAM
661
678
  #
662
679
  class CreateAccessKeyRequest < Struct.new(
663
680
  :user_name)
681
+ SENSITIVE = []
664
682
  include Aws::Structure
665
683
  end
666
684
 
@@ -674,6 +692,7 @@ module Aws::IAM
674
692
  #
675
693
  class CreateAccessKeyResponse < Struct.new(
676
694
  :access_key)
695
+ SENSITIVE = []
677
696
  include Aws::Structure
678
697
  end
679
698
 
@@ -701,6 +720,7 @@ module Aws::IAM
701
720
  #
702
721
  class CreateAccountAliasRequest < Struct.new(
703
722
  :account_alias)
723
+ SENSITIVE = []
704
724
  include Aws::Structure
705
725
  end
706
726
 
@@ -747,6 +767,7 @@ module Aws::IAM
747
767
  class CreateGroupRequest < Struct.new(
748
768
  :path,
749
769
  :group_name)
770
+ SENSITIVE = []
750
771
  include Aws::Structure
751
772
  end
752
773
 
@@ -760,6 +781,7 @@ module Aws::IAM
760
781
  #
761
782
  class CreateGroupResponse < Struct.new(
762
783
  :group)
784
+ SENSITIVE = []
763
785
  include Aws::Structure
764
786
  end
765
787
 
@@ -809,6 +831,7 @@ module Aws::IAM
809
831
  class CreateInstanceProfileRequest < Struct.new(
810
832
  :instance_profile_name,
811
833
  :path)
834
+ SENSITIVE = []
812
835
  include Aws::Structure
813
836
  end
814
837
 
@@ -822,6 +845,7 @@ module Aws::IAM
822
845
  #
823
846
  class CreateInstanceProfileResponse < Struct.new(
824
847
  :instance_profile)
848
+ SENSITIVE = []
825
849
  include Aws::Structure
826
850
  end
827
851
 
@@ -877,6 +901,7 @@ module Aws::IAM
877
901
  :user_name,
878
902
  :password,
879
903
  :password_reset_required)
904
+ SENSITIVE = [:password]
880
905
  include Aws::Structure
881
906
  end
882
907
 
@@ -890,6 +915,7 @@ module Aws::IAM
890
915
  #
891
916
  class CreateLoginProfileResponse < Struct.new(
892
917
  :login_profile)
918
+ SENSITIVE = []
893
919
  include Aws::Structure
894
920
  end
895
921
 
@@ -966,6 +992,7 @@ module Aws::IAM
966
992
  :url,
967
993
  :client_id_list,
968
994
  :thumbprint_list)
995
+ SENSITIVE = []
969
996
  include Aws::Structure
970
997
  end
971
998
 
@@ -982,6 +1009,7 @@ module Aws::IAM
982
1009
  #
983
1010
  class CreateOpenIDConnectProviderResponse < Struct.new(
984
1011
  :open_id_connect_provider_arn)
1012
+ SENSITIVE = []
985
1013
  include Aws::Structure
986
1014
  end
987
1015
 
@@ -1070,6 +1098,7 @@ module Aws::IAM
1070
1098
  :path,
1071
1099
  :policy_document,
1072
1100
  :description)
1101
+ SENSITIVE = []
1073
1102
  include Aws::Structure
1074
1103
  end
1075
1104
 
@@ -1083,6 +1112,7 @@ module Aws::IAM
1083
1112
  #
1084
1113
  class CreatePolicyResponse < Struct.new(
1085
1114
  :policy)
1115
+ SENSITIVE = []
1086
1116
  include Aws::Structure
1087
1117
  end
1088
1118
 
@@ -1155,6 +1185,7 @@ module Aws::IAM
1155
1185
  :policy_arn,
1156
1186
  :policy_document,
1157
1187
  :set_as_default)
1188
+ SENSITIVE = []
1158
1189
  include Aws::Structure
1159
1190
  end
1160
1191
 
@@ -1168,6 +1199,7 @@ module Aws::IAM
1168
1199
  #
1169
1200
  class CreatePolicyVersionResponse < Struct.new(
1170
1201
  :policy_version)
1202
+ SENSITIVE = []
1171
1203
  include Aws::Structure
1172
1204
  end
1173
1205
 
@@ -1307,6 +1339,7 @@ module Aws::IAM
1307
1339
  :max_session_duration,
1308
1340
  :permissions_boundary,
1309
1341
  :tags)
1342
+ SENSITIVE = []
1310
1343
  include Aws::Structure
1311
1344
  end
1312
1345
 
@@ -1320,6 +1353,7 @@ module Aws::IAM
1320
1353
  #
1321
1354
  class CreateRoleResponse < Struct.new(
1322
1355
  :role)
1356
+ SENSITIVE = []
1323
1357
  include Aws::Structure
1324
1358
  end
1325
1359
 
@@ -1365,6 +1399,7 @@ module Aws::IAM
1365
1399
  class CreateSAMLProviderRequest < Struct.new(
1366
1400
  :saml_metadata_document,
1367
1401
  :name)
1402
+ SENSITIVE = []
1368
1403
  include Aws::Structure
1369
1404
  end
1370
1405
 
@@ -1379,6 +1414,7 @@ module Aws::IAM
1379
1414
  #
1380
1415
  class CreateSAMLProviderResponse < Struct.new(
1381
1416
  :saml_provider_arn)
1417
+ SENSITIVE = []
1382
1418
  include Aws::Structure
1383
1419
  end
1384
1420
 
@@ -1431,6 +1467,7 @@ module Aws::IAM
1431
1467
  :aws_service_name,
1432
1468
  :description,
1433
1469
  :custom_suffix)
1470
+ SENSITIVE = []
1434
1471
  include Aws::Structure
1435
1472
  end
1436
1473
 
@@ -1442,6 +1479,7 @@ module Aws::IAM
1442
1479
  #
1443
1480
  class CreateServiceLinkedRoleResponse < Struct.new(
1444
1481
  :role)
1482
+ SENSITIVE = []
1445
1483
  include Aws::Structure
1446
1484
  end
1447
1485
 
@@ -1480,6 +1518,7 @@ module Aws::IAM
1480
1518
  class CreateServiceSpecificCredentialRequest < Struct.new(
1481
1519
  :user_name,
1482
1520
  :service_name)
1521
+ SENSITIVE = []
1483
1522
  include Aws::Structure
1484
1523
  end
1485
1524
 
@@ -1496,6 +1535,7 @@ module Aws::IAM
1496
1535
  #
1497
1536
  class CreateServiceSpecificCredentialResponse < Struct.new(
1498
1537
  :service_specific_credential)
1538
+ SENSITIVE = []
1499
1539
  include Aws::Structure
1500
1540
  end
1501
1541
 
@@ -1572,6 +1612,7 @@ module Aws::IAM
1572
1612
  :user_name,
1573
1613
  :permissions_boundary,
1574
1614
  :tags)
1615
+ SENSITIVE = []
1575
1616
  include Aws::Structure
1576
1617
  end
1577
1618
 
@@ -1585,6 +1626,7 @@ module Aws::IAM
1585
1626
  #
1586
1627
  class CreateUserResponse < Struct.new(
1587
1628
  :user)
1629
+ SENSITIVE = []
1588
1630
  include Aws::Structure
1589
1631
  end
1590
1632
 
@@ -1635,6 +1677,7 @@ module Aws::IAM
1635
1677
  class CreateVirtualMFADeviceRequest < Struct.new(
1636
1678
  :path,
1637
1679
  :virtual_mfa_device_name)
1680
+ SENSITIVE = []
1638
1681
  include Aws::Structure
1639
1682
  end
1640
1683
 
@@ -1648,6 +1691,7 @@ module Aws::IAM
1648
1691
  #
1649
1692
  class CreateVirtualMFADeviceResponse < Struct.new(
1650
1693
  :virtual_mfa_device)
1694
+ SENSITIVE = []
1651
1695
  include Aws::Structure
1652
1696
  end
1653
1697
 
@@ -1668,6 +1712,7 @@ module Aws::IAM
1668
1712
  #
1669
1713
  class CredentialReportExpiredException < Struct.new(
1670
1714
  :message)
1715
+ SENSITIVE = []
1671
1716
  include Aws::Structure
1672
1717
  end
1673
1718
 
@@ -1681,6 +1726,7 @@ module Aws::IAM
1681
1726
  #
1682
1727
  class CredentialReportNotPresentException < Struct.new(
1683
1728
  :message)
1729
+ SENSITIVE = []
1684
1730
  include Aws::Structure
1685
1731
  end
1686
1732
 
@@ -1694,6 +1740,7 @@ module Aws::IAM
1694
1740
  #
1695
1741
  class CredentialReportNotReadyException < Struct.new(
1696
1742
  :message)
1743
+ SENSITIVE = []
1697
1744
  include Aws::Structure
1698
1745
  end
1699
1746
 
@@ -1737,6 +1784,7 @@ module Aws::IAM
1737
1784
  class DeactivateMFADeviceRequest < Struct.new(
1738
1785
  :user_name,
1739
1786
  :serial_number)
1787
+ SENSITIVE = []
1740
1788
  include Aws::Structure
1741
1789
  end
1742
1790
 
@@ -1779,6 +1827,7 @@ module Aws::IAM
1779
1827
  class DeleteAccessKeyRequest < Struct.new(
1780
1828
  :user_name,
1781
1829
  :access_key_id)
1830
+ SENSITIVE = []
1782
1831
  include Aws::Structure
1783
1832
  end
1784
1833
 
@@ -1806,6 +1855,7 @@ module Aws::IAM
1806
1855
  #
1807
1856
  class DeleteAccountAliasRequest < Struct.new(
1808
1857
  :account_alias)
1858
+ SENSITIVE = []
1809
1859
  include Aws::Structure
1810
1860
  end
1811
1861
 
@@ -1820,6 +1870,7 @@ module Aws::IAM
1820
1870
  #
1821
1871
  class DeleteConflictException < Struct.new(
1822
1872
  :message)
1873
+ SENSITIVE = []
1823
1874
  include Aws::Structure
1824
1875
  end
1825
1876
 
@@ -1863,6 +1914,7 @@ module Aws::IAM
1863
1914
  class DeleteGroupPolicyRequest < Struct.new(
1864
1915
  :group_name,
1865
1916
  :policy_name)
1917
+ SENSITIVE = []
1866
1918
  include Aws::Structure
1867
1919
  end
1868
1920
 
@@ -1890,6 +1942,7 @@ module Aws::IAM
1890
1942
  #
1891
1943
  class DeleteGroupRequest < Struct.new(
1892
1944
  :group_name)
1945
+ SENSITIVE = []
1893
1946
  include Aws::Structure
1894
1947
  end
1895
1948
 
@@ -1917,6 +1970,7 @@ module Aws::IAM
1917
1970
  #
1918
1971
  class DeleteInstanceProfileRequest < Struct.new(
1919
1972
  :instance_profile_name)
1973
+ SENSITIVE = []
1920
1974
  include Aws::Structure
1921
1975
  end
1922
1976
 
@@ -1944,6 +1998,7 @@ module Aws::IAM
1944
1998
  #
1945
1999
  class DeleteLoginProfileRequest < Struct.new(
1946
2000
  :user_name)
2001
+ SENSITIVE = []
1947
2002
  include Aws::Structure
1948
2003
  end
1949
2004
 
@@ -1965,6 +2020,7 @@ module Aws::IAM
1965
2020
  #
1966
2021
  class DeleteOpenIDConnectProviderRequest < Struct.new(
1967
2022
  :open_id_connect_provider_arn)
2023
+ SENSITIVE = []
1968
2024
  include Aws::Structure
1969
2025
  end
1970
2026
 
@@ -1990,6 +2046,7 @@ module Aws::IAM
1990
2046
  #
1991
2047
  class DeletePolicyRequest < Struct.new(
1992
2048
  :policy_arn)
2049
+ SENSITIVE = []
1993
2050
  include Aws::Structure
1994
2051
  end
1995
2052
 
@@ -2035,6 +2092,7 @@ module Aws::IAM
2035
2092
  class DeletePolicyVersionRequest < Struct.new(
2036
2093
  :policy_arn,
2037
2094
  :version_id)
2095
+ SENSITIVE = []
2038
2096
  include Aws::Structure
2039
2097
  end
2040
2098
 
@@ -2054,6 +2112,7 @@ module Aws::IAM
2054
2112
  #
2055
2113
  class DeleteRolePermissionsBoundaryRequest < Struct.new(
2056
2114
  :role_name)
2115
+ SENSITIVE = []
2057
2116
  include Aws::Structure
2058
2117
  end
2059
2118
 
@@ -2097,6 +2156,7 @@ module Aws::IAM
2097
2156
  class DeleteRolePolicyRequest < Struct.new(
2098
2157
  :role_name,
2099
2158
  :policy_name)
2159
+ SENSITIVE = []
2100
2160
  include Aws::Structure
2101
2161
  end
2102
2162
 
@@ -2124,6 +2184,7 @@ module Aws::IAM
2124
2184
  #
2125
2185
  class DeleteRoleRequest < Struct.new(
2126
2186
  :role_name)
2187
+ SENSITIVE = []
2127
2188
  include Aws::Structure
2128
2189
  end
2129
2190
 
@@ -2142,6 +2203,7 @@ module Aws::IAM
2142
2203
  #
2143
2204
  class DeleteSAMLProviderRequest < Struct.new(
2144
2205
  :saml_provider_arn)
2206
+ SENSITIVE = []
2145
2207
  include Aws::Structure
2146
2208
  end
2147
2209
 
@@ -2183,6 +2245,7 @@ module Aws::IAM
2183
2245
  class DeleteSSHPublicKeyRequest < Struct.new(
2184
2246
  :user_name,
2185
2247
  :ssh_public_key_id)
2248
+ SENSITIVE = []
2186
2249
  include Aws::Structure
2187
2250
  end
2188
2251
 
@@ -2210,6 +2273,7 @@ module Aws::IAM
2210
2273
  #
2211
2274
  class DeleteServerCertificateRequest < Struct.new(
2212
2275
  :server_certificate_name)
2276
+ SENSITIVE = []
2213
2277
  include Aws::Structure
2214
2278
  end
2215
2279
 
@@ -2228,6 +2292,7 @@ module Aws::IAM
2228
2292
  #
2229
2293
  class DeleteServiceLinkedRoleRequest < Struct.new(
2230
2294
  :role_name)
2295
+ SENSITIVE = []
2231
2296
  include Aws::Structure
2232
2297
  end
2233
2298
 
@@ -2241,6 +2306,7 @@ module Aws::IAM
2241
2306
  #
2242
2307
  class DeleteServiceLinkedRoleResponse < Struct.new(
2243
2308
  :deletion_task_id)
2309
+ SENSITIVE = []
2244
2310
  include Aws::Structure
2245
2311
  end
2246
2312
 
@@ -2285,6 +2351,7 @@ module Aws::IAM
2285
2351
  class DeleteServiceSpecificCredentialRequest < Struct.new(
2286
2352
  :user_name,
2287
2353
  :service_specific_credential_id)
2354
+ SENSITIVE = []
2288
2355
  include Aws::Structure
2289
2356
  end
2290
2357
 
@@ -2326,6 +2393,7 @@ module Aws::IAM
2326
2393
  class DeleteSigningCertificateRequest < Struct.new(
2327
2394
  :user_name,
2328
2395
  :certificate_id)
2396
+ SENSITIVE = []
2329
2397
  include Aws::Structure
2330
2398
  end
2331
2399
 
@@ -2345,6 +2413,7 @@ module Aws::IAM
2345
2413
  #
2346
2414
  class DeleteUserPermissionsBoundaryRequest < Struct.new(
2347
2415
  :user_name)
2416
+ SENSITIVE = []
2348
2417
  include Aws::Structure
2349
2418
  end
2350
2419
 
@@ -2388,6 +2457,7 @@ module Aws::IAM
2388
2457
  class DeleteUserPolicyRequest < Struct.new(
2389
2458
  :user_name,
2390
2459
  :policy_name)
2460
+ SENSITIVE = []
2391
2461
  include Aws::Structure
2392
2462
  end
2393
2463
 
@@ -2415,6 +2485,7 @@ module Aws::IAM
2415
2485
  #
2416
2486
  class DeleteUserRequest < Struct.new(
2417
2487
  :user_name)
2488
+ SENSITIVE = []
2418
2489
  include Aws::Structure
2419
2490
  end
2420
2491
 
@@ -2443,6 +2514,7 @@ module Aws::IAM
2443
2514
  #
2444
2515
  class DeleteVirtualMFADeviceRequest < Struct.new(
2445
2516
  :serial_number)
2517
+ SENSITIVE = []
2446
2518
  include Aws::Structure
2447
2519
  end
2448
2520
 
@@ -2471,6 +2543,7 @@ module Aws::IAM
2471
2543
  class DeletionTaskFailureReasonType < Struct.new(
2472
2544
  :reason,
2473
2545
  :role_usage_list)
2546
+ SENSITIVE = []
2474
2547
  include Aws::Structure
2475
2548
  end
2476
2549
 
@@ -2512,6 +2585,7 @@ module Aws::IAM
2512
2585
  class DetachGroupPolicyRequest < Struct.new(
2513
2586
  :group_name,
2514
2587
  :policy_arn)
2588
+ SENSITIVE = []
2515
2589
  include Aws::Structure
2516
2590
  end
2517
2591
 
@@ -2553,6 +2627,7 @@ module Aws::IAM
2553
2627
  class DetachRolePolicyRequest < Struct.new(
2554
2628
  :role_name,
2555
2629
  :policy_arn)
2630
+ SENSITIVE = []
2556
2631
  include Aws::Structure
2557
2632
  end
2558
2633
 
@@ -2594,6 +2669,7 @@ module Aws::IAM
2594
2669
  class DetachUserPolicyRequest < Struct.new(
2595
2670
  :user_name,
2596
2671
  :policy_arn)
2672
+ SENSITIVE = []
2597
2673
  include Aws::Structure
2598
2674
  end
2599
2675
 
@@ -2607,6 +2683,7 @@ module Aws::IAM
2607
2683
  #
2608
2684
  class DuplicateCertificateException < Struct.new(
2609
2685
  :message)
2686
+ SENSITIVE = []
2610
2687
  include Aws::Structure
2611
2688
  end
2612
2689
 
@@ -2620,6 +2697,7 @@ module Aws::IAM
2620
2697
  #
2621
2698
  class DuplicateSSHPublicKeyException < Struct.new(
2622
2699
  :message)
2700
+ SENSITIVE = []
2623
2701
  include Aws::Structure
2624
2702
  end
2625
2703
 
@@ -2701,6 +2779,7 @@ module Aws::IAM
2701
2779
  :serial_number,
2702
2780
  :authentication_code_1,
2703
2781
  :authentication_code_2)
2782
+ SENSITIVE = []
2704
2783
  include Aws::Structure
2705
2784
  end
2706
2785
 
@@ -2714,6 +2793,7 @@ module Aws::IAM
2714
2793
  #
2715
2794
  class EntityAlreadyExistsException < Struct.new(
2716
2795
  :message)
2796
+ SENSITIVE = []
2717
2797
  include Aws::Structure
2718
2798
  end
2719
2799
 
@@ -2748,6 +2828,7 @@ module Aws::IAM
2748
2828
  class EntityDetails < Struct.new(
2749
2829
  :entity_info,
2750
2830
  :last_authenticated)
2831
+ SENSITIVE = []
2751
2832
  include Aws::Structure
2752
2833
  end
2753
2834
 
@@ -2796,6 +2877,7 @@ module Aws::IAM
2796
2877
  :type,
2797
2878
  :id,
2798
2879
  :path)
2880
+ SENSITIVE = []
2799
2881
  include Aws::Structure
2800
2882
  end
2801
2883
 
@@ -2812,6 +2894,7 @@ module Aws::IAM
2812
2894
  #
2813
2895
  class EntityTemporarilyUnmodifiableException < Struct.new(
2814
2896
  :message)
2897
+ SENSITIVE = []
2815
2898
  include Aws::Structure
2816
2899
  end
2817
2900
 
@@ -2834,6 +2917,7 @@ module Aws::IAM
2834
2917
  class ErrorDetails < Struct.new(
2835
2918
  :message,
2836
2919
  :code)
2920
+ SENSITIVE = []
2837
2921
  include Aws::Structure
2838
2922
  end
2839
2923
 
@@ -2931,6 +3015,7 @@ module Aws::IAM
2931
3015
  :permissions_boundary_decision_detail,
2932
3016
  :eval_decision_details,
2933
3017
  :resource_specific_results)
3018
+ SENSITIVE = []
2934
3019
  include Aws::Structure
2935
3020
  end
2936
3021
 
@@ -2950,6 +3035,7 @@ module Aws::IAM
2950
3035
  class GenerateCredentialReportResponse < Struct.new(
2951
3036
  :state,
2952
3037
  :description)
3038
+ SENSITIVE = []
2953
3039
  include Aws::Structure
2954
3040
  end
2955
3041
 
@@ -2985,6 +3071,7 @@ module Aws::IAM
2985
3071
  class GenerateOrganizationsAccessReportRequest < Struct.new(
2986
3072
  :entity_path,
2987
3073
  :organizations_policy_id)
3074
+ SENSITIVE = []
2988
3075
  include Aws::Structure
2989
3076
  end
2990
3077
 
@@ -2997,6 +3084,7 @@ module Aws::IAM
2997
3084
  #
2998
3085
  class GenerateOrganizationsAccessReportResponse < Struct.new(
2999
3086
  :job_id)
3087
+ SENSITIVE = []
3000
3088
  include Aws::Structure
3001
3089
  end
3002
3090
 
@@ -3029,6 +3117,7 @@ module Aws::IAM
3029
3117
  class GenerateServiceLastAccessedDetailsRequest < Struct.new(
3030
3118
  :arn,
3031
3119
  :granularity)
3120
+ SENSITIVE = []
3032
3121
  include Aws::Structure
3033
3122
  end
3034
3123
 
@@ -3044,6 +3133,7 @@ module Aws::IAM
3044
3133
  #
3045
3134
  class GenerateServiceLastAccessedDetailsResponse < Struct.new(
3046
3135
  :job_id)
3136
+ SENSITIVE = []
3047
3137
  include Aws::Structure
3048
3138
  end
3049
3139
 
@@ -3070,6 +3160,7 @@ module Aws::IAM
3070
3160
  #
3071
3161
  class GetAccessKeyLastUsedRequest < Struct.new(
3072
3162
  :access_key_id)
3163
+ SENSITIVE = []
3073
3164
  include Aws::Structure
3074
3165
  end
3075
3166
 
@@ -3090,6 +3181,7 @@ module Aws::IAM
3090
3181
  class GetAccessKeyLastUsedResponse < Struct.new(
3091
3182
  :user_name,
3092
3183
  :access_key_last_used)
3184
+ SENSITIVE = []
3093
3185
  include Aws::Structure
3094
3186
  end
3095
3187
 
@@ -3138,6 +3230,7 @@ module Aws::IAM
3138
3230
  :filter,
3139
3231
  :max_items,
3140
3232
  :marker)
3233
+ SENSITIVE = []
3141
3234
  include Aws::Structure
3142
3235
  end
3143
3236
 
@@ -3185,6 +3278,7 @@ module Aws::IAM
3185
3278
  :policies,
3186
3279
  :is_truncated,
3187
3280
  :marker)
3281
+ SENSITIVE = []
3188
3282
  include Aws::Structure
3189
3283
  end
3190
3284
 
@@ -3200,6 +3294,7 @@ module Aws::IAM
3200
3294
  #
3201
3295
  class GetAccountPasswordPolicyResponse < Struct.new(
3202
3296
  :password_policy)
3297
+ SENSITIVE = []
3203
3298
  include Aws::Structure
3204
3299
  end
3205
3300
 
@@ -3214,6 +3309,7 @@ module Aws::IAM
3214
3309
  #
3215
3310
  class GetAccountSummaryResponse < Struct.new(
3216
3311
  :summary_map)
3312
+ SENSITIVE = []
3217
3313
  include Aws::Structure
3218
3314
  end
3219
3315
 
@@ -3250,6 +3346,7 @@ module Aws::IAM
3250
3346
  #
3251
3347
  class GetContextKeysForCustomPolicyRequest < Struct.new(
3252
3348
  :policy_input_list)
3349
+ SENSITIVE = []
3253
3350
  include Aws::Structure
3254
3351
  end
3255
3352
 
@@ -3264,6 +3361,7 @@ module Aws::IAM
3264
3361
  #
3265
3362
  class GetContextKeysForPolicyResponse < Struct.new(
3266
3363
  :context_key_names)
3364
+ SENSITIVE = []
3267
3365
  include Aws::Structure
3268
3366
  end
3269
3367
 
@@ -3320,6 +3418,7 @@ module Aws::IAM
3320
3418
  class GetContextKeysForPrincipalPolicyRequest < Struct.new(
3321
3419
  :policy_source_arn,
3322
3420
  :policy_input_list)
3421
+ SENSITIVE = []
3323
3422
  include Aws::Structure
3324
3423
  end
3325
3424
 
@@ -3348,6 +3447,7 @@ module Aws::IAM
3348
3447
  :content,
3349
3448
  :report_format,
3350
3449
  :generated_time)
3450
+ SENSITIVE = []
3351
3451
  include Aws::Structure
3352
3452
  end
3353
3453
 
@@ -3390,6 +3490,7 @@ module Aws::IAM
3390
3490
  class GetGroupPolicyRequest < Struct.new(
3391
3491
  :group_name,
3392
3492
  :policy_name)
3493
+ SENSITIVE = []
3393
3494
  include Aws::Structure
3394
3495
  end
3395
3496
 
@@ -3418,6 +3519,7 @@ module Aws::IAM
3418
3519
  :group_name,
3419
3520
  :policy_name,
3420
3521
  :policy_document)
3522
+ SENSITIVE = []
3421
3523
  include Aws::Structure
3422
3524
  end
3423
3525
 
@@ -3469,6 +3571,7 @@ module Aws::IAM
3469
3571
  :group_name,
3470
3572
  :marker,
3471
3573
  :max_items)
3574
+ SENSITIVE = []
3472
3575
  include Aws::Structure
3473
3576
  end
3474
3577
 
@@ -3505,6 +3608,7 @@ module Aws::IAM
3505
3608
  :users,
3506
3609
  :is_truncated,
3507
3610
  :marker)
3611
+ SENSITIVE = []
3508
3612
  include Aws::Structure
3509
3613
  end
3510
3614
 
@@ -3532,6 +3636,7 @@ module Aws::IAM
3532
3636
  #
3533
3637
  class GetInstanceProfileRequest < Struct.new(
3534
3638
  :instance_profile_name)
3639
+ SENSITIVE = []
3535
3640
  include Aws::Structure
3536
3641
  end
3537
3642
 
@@ -3545,6 +3650,7 @@ module Aws::IAM
3545
3650
  #
3546
3651
  class GetInstanceProfileResponse < Struct.new(
3547
3652
  :instance_profile)
3653
+ SENSITIVE = []
3548
3654
  include Aws::Structure
3549
3655
  end
3550
3656
 
@@ -3572,6 +3678,7 @@ module Aws::IAM
3572
3678
  #
3573
3679
  class GetLoginProfileRequest < Struct.new(
3574
3680
  :user_name)
3681
+ SENSITIVE = []
3575
3682
  include Aws::Structure
3576
3683
  end
3577
3684
 
@@ -3586,6 +3693,7 @@ module Aws::IAM
3586
3693
  #
3587
3694
  class GetLoginProfileResponse < Struct.new(
3588
3695
  :login_profile)
3696
+ SENSITIVE = []
3589
3697
  include Aws::Structure
3590
3698
  end
3591
3699
 
@@ -3613,6 +3721,7 @@ module Aws::IAM
3613
3721
  #
3614
3722
  class GetOpenIDConnectProviderRequest < Struct.new(
3615
3723
  :open_id_connect_provider_arn)
3724
+ SENSITIVE = []
3616
3725
  include Aws::Structure
3617
3726
  end
3618
3727
 
@@ -3648,6 +3757,7 @@ module Aws::IAM
3648
3757
  :client_id_list,
3649
3758
  :thumbprint_list,
3650
3759
  :create_date)
3760
+ SENSITIVE = []
3651
3761
  include Aws::Structure
3652
3762
  end
3653
3763
 
@@ -3700,6 +3810,7 @@ module Aws::IAM
3700
3810
  :max_items,
3701
3811
  :marker,
3702
3812
  :sort_key)
3813
+ SENSITIVE = []
3703
3814
  include Aws::Structure
3704
3815
  end
3705
3816
 
@@ -3779,6 +3890,7 @@ module Aws::IAM
3779
3890
  :is_truncated,
3780
3891
  :marker,
3781
3892
  :error_details)
3893
+ SENSITIVE = []
3782
3894
  include Aws::Structure
3783
3895
  end
3784
3896
 
@@ -3805,6 +3917,7 @@ module Aws::IAM
3805
3917
  #
3806
3918
  class GetPolicyRequest < Struct.new(
3807
3919
  :policy_arn)
3920
+ SENSITIVE = []
3808
3921
  include Aws::Structure
3809
3922
  end
3810
3923
 
@@ -3818,6 +3931,7 @@ module Aws::IAM
3818
3931
  #
3819
3932
  class GetPolicyResponse < Struct.new(
3820
3933
  :policy)
3934
+ SENSITIVE = []
3821
3935
  include Aws::Structure
3822
3936
  end
3823
3937
 
@@ -3859,6 +3973,7 @@ module Aws::IAM
3859
3973
  class GetPolicyVersionRequest < Struct.new(
3860
3974
  :policy_arn,
3861
3975
  :version_id)
3976
+ SENSITIVE = []
3862
3977
  include Aws::Structure
3863
3978
  end
3864
3979
 
@@ -3872,6 +3987,7 @@ module Aws::IAM
3872
3987
  #
3873
3988
  class GetPolicyVersionResponse < Struct.new(
3874
3989
  :policy_version)
3990
+ SENSITIVE = []
3875
3991
  include Aws::Structure
3876
3992
  end
3877
3993
 
@@ -3914,6 +4030,7 @@ module Aws::IAM
3914
4030
  class GetRolePolicyRequest < Struct.new(
3915
4031
  :role_name,
3916
4032
  :policy_name)
4033
+ SENSITIVE = []
3917
4034
  include Aws::Structure
3918
4035
  end
3919
4036
 
@@ -3942,6 +4059,7 @@ module Aws::IAM
3942
4059
  :role_name,
3943
4060
  :policy_name,
3944
4061
  :policy_document)
4062
+ SENSITIVE = []
3945
4063
  include Aws::Structure
3946
4064
  end
3947
4065
 
@@ -3969,6 +4087,7 @@ module Aws::IAM
3969
4087
  #
3970
4088
  class GetRoleRequest < Struct.new(
3971
4089
  :role_name)
4090
+ SENSITIVE = []
3972
4091
  include Aws::Structure
3973
4092
  end
3974
4093
 
@@ -3982,6 +4101,7 @@ module Aws::IAM
3982
4101
  #
3983
4102
  class GetRoleResponse < Struct.new(
3984
4103
  :role)
4104
+ SENSITIVE = []
3985
4105
  include Aws::Structure
3986
4106
  end
3987
4107
 
@@ -4008,6 +4128,7 @@ module Aws::IAM
4008
4128
  #
4009
4129
  class GetSAMLProviderRequest < Struct.new(
4010
4130
  :saml_provider_arn)
4131
+ SENSITIVE = []
4011
4132
  include Aws::Structure
4012
4133
  end
4013
4134
 
@@ -4032,6 +4153,7 @@ module Aws::IAM
4032
4153
  :saml_metadata_document,
4033
4154
  :create_date,
4034
4155
  :valid_until)
4156
+ SENSITIVE = []
4035
4157
  include Aws::Structure
4036
4158
  end
4037
4159
 
@@ -4081,6 +4203,7 @@ module Aws::IAM
4081
4203
  :user_name,
4082
4204
  :ssh_public_key_id,
4083
4205
  :encoding)
4206
+ SENSITIVE = []
4084
4207
  include Aws::Structure
4085
4208
  end
4086
4209
 
@@ -4094,6 +4217,7 @@ module Aws::IAM
4094
4217
  #
4095
4218
  class GetSSHPublicKeyResponse < Struct.new(
4096
4219
  :ssh_public_key)
4220
+ SENSITIVE = []
4097
4221
  include Aws::Structure
4098
4222
  end
4099
4223
 
@@ -4122,6 +4246,7 @@ module Aws::IAM
4122
4246
  #
4123
4247
  class GetServerCertificateRequest < Struct.new(
4124
4248
  :server_certificate_name)
4249
+ SENSITIVE = []
4125
4250
  include Aws::Structure
4126
4251
  end
4127
4252
 
@@ -4135,6 +4260,7 @@ module Aws::IAM
4135
4260
  #
4136
4261
  class GetServerCertificateResponse < Struct.new(
4137
4262
  :server_certificate)
4263
+ SENSITIVE = []
4138
4264
  include Aws::Structure
4139
4265
  end
4140
4266
 
@@ -4181,6 +4307,7 @@ module Aws::IAM
4181
4307
  :job_id,
4182
4308
  :max_items,
4183
4309
  :marker)
4310
+ SENSITIVE = []
4184
4311
  include Aws::Structure
4185
4312
  end
4186
4313
 
@@ -4252,6 +4379,7 @@ module Aws::IAM
4252
4379
  :is_truncated,
4253
4380
  :marker,
4254
4381
  :error)
4382
+ SENSITIVE = []
4255
4383
  include Aws::Structure
4256
4384
  end
4257
4385
 
@@ -4316,6 +4444,7 @@ module Aws::IAM
4316
4444
  :service_namespace,
4317
4445
  :max_items,
4318
4446
  :marker)
4447
+ SENSITIVE = []
4319
4448
  include Aws::Structure
4320
4449
  end
4321
4450
 
@@ -4381,6 +4510,7 @@ module Aws::IAM
4381
4510
  :is_truncated,
4382
4511
  :marker,
4383
4512
  :error)
4513
+ SENSITIVE = []
4384
4514
  include Aws::Structure
4385
4515
  end
4386
4516
 
@@ -4401,6 +4531,7 @@ module Aws::IAM
4401
4531
  #
4402
4532
  class GetServiceLinkedRoleDeletionStatusRequest < Struct.new(
4403
4533
  :deletion_task_id)
4534
+ SENSITIVE = []
4404
4535
  include Aws::Structure
4405
4536
  end
4406
4537
 
@@ -4418,6 +4549,7 @@ module Aws::IAM
4418
4549
  class GetServiceLinkedRoleDeletionStatusResponse < Struct.new(
4419
4550
  :status,
4420
4551
  :reason)
4552
+ SENSITIVE = []
4421
4553
  include Aws::Structure
4422
4554
  end
4423
4555
 
@@ -4460,6 +4592,7 @@ module Aws::IAM
4460
4592
  class GetUserPolicyRequest < Struct.new(
4461
4593
  :user_name,
4462
4594
  :policy_name)
4595
+ SENSITIVE = []
4463
4596
  include Aws::Structure
4464
4597
  end
4465
4598
 
@@ -4488,6 +4621,7 @@ module Aws::IAM
4488
4621
  :user_name,
4489
4622
  :policy_name,
4490
4623
  :policy_document)
4624
+ SENSITIVE = []
4491
4625
  include Aws::Structure
4492
4626
  end
4493
4627
 
@@ -4516,6 +4650,7 @@ module Aws::IAM
4516
4650
  #
4517
4651
  class GetUserRequest < Struct.new(
4518
4652
  :user_name)
4653
+ SENSITIVE = []
4519
4654
  include Aws::Structure
4520
4655
  end
4521
4656
 
@@ -4552,6 +4687,7 @@ module Aws::IAM
4552
4687
  #
4553
4688
  class GetUserResponse < Struct.new(
4554
4689
  :user)
4690
+ SENSITIVE = []
4555
4691
  include Aws::Structure
4556
4692
  end
4557
4693
 
@@ -4616,6 +4752,7 @@ module Aws::IAM
4616
4752
  :group_id,
4617
4753
  :arn,
4618
4754
  :create_date)
4755
+ SENSITIVE = []
4619
4756
  include Aws::Structure
4620
4757
  end
4621
4758
 
@@ -4687,6 +4824,7 @@ module Aws::IAM
4687
4824
  :create_date,
4688
4825
  :group_policy_list,
4689
4826
  :attached_managed_policies)
4827
+ SENSITIVE = []
4690
4828
  include Aws::Structure
4691
4829
  end
4692
4830
 
@@ -4753,6 +4891,7 @@ module Aws::IAM
4753
4891
  :arn,
4754
4892
  :create_date,
4755
4893
  :roles)
4894
+ SENSITIVE = []
4756
4895
  include Aws::Structure
4757
4896
  end
4758
4897
 
@@ -4766,6 +4905,7 @@ module Aws::IAM
4766
4905
  #
4767
4906
  class InvalidAuthenticationCodeException < Struct.new(
4768
4907
  :message)
4908
+ SENSITIVE = []
4769
4909
  include Aws::Structure
4770
4910
  end
4771
4911
 
@@ -4778,6 +4918,7 @@ module Aws::IAM
4778
4918
  #
4779
4919
  class InvalidCertificateException < Struct.new(
4780
4920
  :message)
4921
+ SENSITIVE = []
4781
4922
  include Aws::Structure
4782
4923
  end
4783
4924
 
@@ -4791,6 +4932,7 @@ module Aws::IAM
4791
4932
  #
4792
4933
  class InvalidInputException < Struct.new(
4793
4934
  :message)
4935
+ SENSITIVE = []
4794
4936
  include Aws::Structure
4795
4937
  end
4796
4938
 
@@ -4804,6 +4946,7 @@ module Aws::IAM
4804
4946
  #
4805
4947
  class InvalidPublicKeyException < Struct.new(
4806
4948
  :message)
4949
+ SENSITIVE = []
4807
4950
  include Aws::Structure
4808
4951
  end
4809
4952
 
@@ -4817,6 +4960,7 @@ module Aws::IAM
4817
4960
  #
4818
4961
  class InvalidUserTypeException < Struct.new(
4819
4962
  :message)
4963
+ SENSITIVE = []
4820
4964
  include Aws::Structure
4821
4965
  end
4822
4966
 
@@ -4830,12 +4974,13 @@ module Aws::IAM
4830
4974
  #
4831
4975
  class KeyPairMismatchException < Struct.new(
4832
4976
  :message)
4977
+ SENSITIVE = []
4833
4978
  include Aws::Structure
4834
4979
  end
4835
4980
 
4836
4981
  # The request was rejected because it attempted to create resources
4837
- # beyond the current AWS account limits. The error message describes the
4838
- # limit exceeded.
4982
+ # beyond the current AWS account limitations. The error message
4983
+ # describes the limit exceeded.
4839
4984
  #
4840
4985
  # @!attribute [rw] message
4841
4986
  # @return [String]
@@ -4844,6 +4989,7 @@ module Aws::IAM
4844
4989
  #
4845
4990
  class LimitExceededException < Struct.new(
4846
4991
  :message)
4992
+ SENSITIVE = []
4847
4993
  include Aws::Structure
4848
4994
  end
4849
4995
 
@@ -4895,6 +5041,7 @@ module Aws::IAM
4895
5041
  :user_name,
4896
5042
  :marker,
4897
5043
  :max_items)
5044
+ SENSITIVE = []
4898
5045
  include Aws::Structure
4899
5046
  end
4900
5047
 
@@ -4926,6 +5073,7 @@ module Aws::IAM
4926
5073
  :access_key_metadata,
4927
5074
  :is_truncated,
4928
5075
  :marker)
5076
+ SENSITIVE = []
4929
5077
  include Aws::Structure
4930
5078
  end
4931
5079
 
@@ -4962,6 +5110,7 @@ module Aws::IAM
4962
5110
  class ListAccountAliasesRequest < Struct.new(
4963
5111
  :marker,
4964
5112
  :max_items)
5113
+ SENSITIVE = []
4965
5114
  include Aws::Structure
4966
5115
  end
4967
5116
 
@@ -4994,6 +5143,7 @@ module Aws::IAM
4994
5143
  :account_aliases,
4995
5144
  :is_truncated,
4996
5145
  :marker)
5146
+ SENSITIVE = []
4997
5147
  include Aws::Structure
4998
5148
  end
4999
5149
 
@@ -5065,6 +5215,7 @@ module Aws::IAM
5065
5215
  :path_prefix,
5066
5216
  :marker,
5067
5217
  :max_items)
5218
+ SENSITIVE = []
5068
5219
  include Aws::Structure
5069
5220
  end
5070
5221
 
@@ -5097,6 +5248,7 @@ module Aws::IAM
5097
5248
  :attached_policies,
5098
5249
  :is_truncated,
5099
5250
  :marker)
5251
+ SENSITIVE = []
5100
5252
  include Aws::Structure
5101
5253
  end
5102
5254
 
@@ -5168,6 +5320,7 @@ module Aws::IAM
5168
5320
  :path_prefix,
5169
5321
  :marker,
5170
5322
  :max_items)
5323
+ SENSITIVE = []
5171
5324
  include Aws::Structure
5172
5325
  end
5173
5326
 
@@ -5200,6 +5353,7 @@ module Aws::IAM
5200
5353
  :attached_policies,
5201
5354
  :is_truncated,
5202
5355
  :marker)
5356
+ SENSITIVE = []
5203
5357
  include Aws::Structure
5204
5358
  end
5205
5359
 
@@ -5271,6 +5425,7 @@ module Aws::IAM
5271
5425
  :path_prefix,
5272
5426
  :marker,
5273
5427
  :max_items)
5428
+ SENSITIVE = []
5274
5429
  include Aws::Structure
5275
5430
  end
5276
5431
 
@@ -5303,6 +5458,7 @@ module Aws::IAM
5303
5458
  :attached_policies,
5304
5459
  :is_truncated,
5305
5460
  :marker)
5461
+ SENSITIVE = []
5306
5462
  include Aws::Structure
5307
5463
  end
5308
5464
 
@@ -5398,6 +5554,7 @@ module Aws::IAM
5398
5554
  :policy_usage_filter,
5399
5555
  :marker,
5400
5556
  :max_items)
5557
+ SENSITIVE = []
5401
5558
  include Aws::Structure
5402
5559
  end
5403
5560
 
@@ -5439,6 +5596,7 @@ module Aws::IAM
5439
5596
  :policy_roles,
5440
5597
  :is_truncated,
5441
5598
  :marker)
5599
+ SENSITIVE = []
5442
5600
  include Aws::Structure
5443
5601
  end
5444
5602
 
@@ -5490,6 +5648,7 @@ module Aws::IAM
5490
5648
  :group_name,
5491
5649
  :marker,
5492
5650
  :max_items)
5651
+ SENSITIVE = []
5493
5652
  include Aws::Structure
5494
5653
  end
5495
5654
 
@@ -5530,6 +5689,7 @@ module Aws::IAM
5530
5689
  :policy_names,
5531
5690
  :is_truncated,
5532
5691
  :marker)
5692
+ SENSITIVE = []
5533
5693
  include Aws::Structure
5534
5694
  end
5535
5695
 
@@ -5581,6 +5741,7 @@ module Aws::IAM
5581
5741
  :user_name,
5582
5742
  :marker,
5583
5743
  :max_items)
5744
+ SENSITIVE = []
5584
5745
  include Aws::Structure
5585
5746
  end
5586
5747
 
@@ -5612,6 +5773,7 @@ module Aws::IAM
5612
5773
  :groups,
5613
5774
  :is_truncated,
5614
5775
  :marker)
5776
+ SENSITIVE = []
5615
5777
  include Aws::Structure
5616
5778
  end
5617
5779
 
@@ -5669,6 +5831,7 @@ module Aws::IAM
5669
5831
  :path_prefix,
5670
5832
  :marker,
5671
5833
  :max_items)
5834
+ SENSITIVE = []
5672
5835
  include Aws::Structure
5673
5836
  end
5674
5837
 
@@ -5700,6 +5863,7 @@ module Aws::IAM
5700
5863
  :groups,
5701
5864
  :is_truncated,
5702
5865
  :marker)
5866
+ SENSITIVE = []
5703
5867
  include Aws::Structure
5704
5868
  end
5705
5869
 
@@ -5751,6 +5915,7 @@ module Aws::IAM
5751
5915
  :role_name,
5752
5916
  :marker,
5753
5917
  :max_items)
5918
+ SENSITIVE = []
5754
5919
  include Aws::Structure
5755
5920
  end
5756
5921
 
@@ -5783,6 +5948,7 @@ module Aws::IAM
5783
5948
  :instance_profiles,
5784
5949
  :is_truncated,
5785
5950
  :marker)
5951
+ SENSITIVE = []
5786
5952
  include Aws::Structure
5787
5953
  end
5788
5954
 
@@ -5840,6 +6006,7 @@ module Aws::IAM
5840
6006
  :path_prefix,
5841
6007
  :marker,
5842
6008
  :max_items)
6009
+ SENSITIVE = []
5843
6010
  include Aws::Structure
5844
6011
  end
5845
6012
 
@@ -5871,6 +6038,7 @@ module Aws::IAM
5871
6038
  :instance_profiles,
5872
6039
  :is_truncated,
5873
6040
  :marker)
6041
+ SENSITIVE = []
5874
6042
  include Aws::Structure
5875
6043
  end
5876
6044
 
@@ -5922,6 +6090,7 @@ module Aws::IAM
5922
6090
  :user_name,
5923
6091
  :marker,
5924
6092
  :max_items)
6093
+ SENSITIVE = []
5925
6094
  include Aws::Structure
5926
6095
  end
5927
6096
 
@@ -5953,6 +6122,7 @@ module Aws::IAM
5953
6122
  :mfa_devices,
5954
6123
  :is_truncated,
5955
6124
  :marker)
6125
+ SENSITIVE = []
5956
6126
  include Aws::Structure
5957
6127
  end
5958
6128
 
@@ -5974,6 +6144,7 @@ module Aws::IAM
5974
6144
  #
5975
6145
  class ListOpenIDConnectProvidersResponse < Struct.new(
5976
6146
  :open_id_connect_provider_list)
6147
+ SENSITIVE = []
5977
6148
  include Aws::Structure
5978
6149
  end
5979
6150
 
@@ -6010,6 +6181,7 @@ module Aws::IAM
6010
6181
  class ListPoliciesGrantingServiceAccessEntry < Struct.new(
6011
6182
  :service_namespace,
6012
6183
  :policies)
6184
+ SENSITIVE = []
6013
6185
  include Aws::Structure
6014
6186
  end
6015
6187
 
@@ -6058,6 +6230,7 @@ module Aws::IAM
6058
6230
  :marker,
6059
6231
  :arn,
6060
6232
  :service_namespaces)
6233
+ SENSITIVE = []
6061
6234
  include Aws::Structure
6062
6235
  end
6063
6236
 
@@ -6087,6 +6260,7 @@ module Aws::IAM
6087
6260
  :policies_granting_service_access,
6088
6261
  :is_truncated,
6089
6262
  :marker)
6263
+ SENSITIVE = []
6090
6264
  include Aws::Structure
6091
6265
  end
6092
6266
 
@@ -6178,6 +6352,7 @@ module Aws::IAM
6178
6352
  :policy_usage_filter,
6179
6353
  :marker,
6180
6354
  :max_items)
6355
+ SENSITIVE = []
6181
6356
  include Aws::Structure
6182
6357
  end
6183
6358
 
@@ -6209,6 +6384,7 @@ module Aws::IAM
6209
6384
  :policies,
6210
6385
  :is_truncated,
6211
6386
  :marker)
6387
+ SENSITIVE = []
6212
6388
  include Aws::Structure
6213
6389
  end
6214
6390
 
@@ -6259,6 +6435,7 @@ module Aws::IAM
6259
6435
  :policy_arn,
6260
6436
  :marker,
6261
6437
  :max_items)
6438
+ SENSITIVE = []
6262
6439
  include Aws::Structure
6263
6440
  end
6264
6441
 
@@ -6297,6 +6474,7 @@ module Aws::IAM
6297
6474
  :versions,
6298
6475
  :is_truncated,
6299
6476
  :marker)
6477
+ SENSITIVE = []
6300
6478
  include Aws::Structure
6301
6479
  end
6302
6480
 
@@ -6348,6 +6526,7 @@ module Aws::IAM
6348
6526
  :role_name,
6349
6527
  :marker,
6350
6528
  :max_items)
6529
+ SENSITIVE = []
6351
6530
  include Aws::Structure
6352
6531
  end
6353
6532
 
@@ -6379,6 +6558,7 @@ module Aws::IAM
6379
6558
  :policy_names,
6380
6559
  :is_truncated,
6381
6560
  :marker)
6561
+ SENSITIVE = []
6382
6562
  include Aws::Structure
6383
6563
  end
6384
6564
 
@@ -6430,6 +6610,7 @@ module Aws::IAM
6430
6610
  :role_name,
6431
6611
  :marker,
6432
6612
  :max_items)
6613
+ SENSITIVE = []
6433
6614
  include Aws::Structure
6434
6615
  end
6435
6616
 
@@ -6461,6 +6642,7 @@ module Aws::IAM
6461
6642
  :tags,
6462
6643
  :is_truncated,
6463
6644
  :marker)
6645
+ SENSITIVE = []
6464
6646
  include Aws::Structure
6465
6647
  end
6466
6648
 
@@ -6518,6 +6700,7 @@ module Aws::IAM
6518
6700
  :path_prefix,
6519
6701
  :marker,
6520
6702
  :max_items)
6703
+ SENSITIVE = []
6521
6704
  include Aws::Structure
6522
6705
  end
6523
6706
 
@@ -6549,6 +6732,7 @@ module Aws::IAM
6549
6732
  :roles,
6550
6733
  :is_truncated,
6551
6734
  :marker)
6735
+ SENSITIVE = []
6552
6736
  include Aws::Structure
6553
6737
  end
6554
6738
 
@@ -6569,6 +6753,7 @@ module Aws::IAM
6569
6753
  #
6570
6754
  class ListSAMLProvidersResponse < Struct.new(
6571
6755
  :saml_provider_list)
6756
+ SENSITIVE = []
6572
6757
  include Aws::Structure
6573
6758
  end
6574
6759
 
@@ -6622,6 +6807,7 @@ module Aws::IAM
6622
6807
  :user_name,
6623
6808
  :marker,
6624
6809
  :max_items)
6810
+ SENSITIVE = []
6625
6811
  include Aws::Structure
6626
6812
  end
6627
6813
 
@@ -6653,6 +6839,7 @@ module Aws::IAM
6653
6839
  :ssh_public_keys,
6654
6840
  :is_truncated,
6655
6841
  :marker)
6842
+ SENSITIVE = []
6656
6843
  include Aws::Structure
6657
6844
  end
6658
6845
 
@@ -6710,6 +6897,7 @@ module Aws::IAM
6710
6897
  :path_prefix,
6711
6898
  :marker,
6712
6899
  :max_items)
6900
+ SENSITIVE = []
6713
6901
  include Aws::Structure
6714
6902
  end
6715
6903
 
@@ -6741,6 +6929,7 @@ module Aws::IAM
6741
6929
  :server_certificate_metadata_list,
6742
6930
  :is_truncated,
6743
6931
  :marker)
6932
+ SENSITIVE = []
6744
6933
  include Aws::Structure
6745
6934
  end
6746
6935
 
@@ -6779,6 +6968,7 @@ module Aws::IAM
6779
6968
  class ListServiceSpecificCredentialsRequest < Struct.new(
6780
6969
  :user_name,
6781
6970
  :service_name)
6971
+ SENSITIVE = []
6782
6972
  include Aws::Structure
6783
6973
  end
6784
6974
 
@@ -6791,6 +6981,7 @@ module Aws::IAM
6791
6981
  #
6792
6982
  class ListServiceSpecificCredentialsResponse < Struct.new(
6793
6983
  :service_specific_credentials)
6984
+ SENSITIVE = []
6794
6985
  include Aws::Structure
6795
6986
  end
6796
6987
 
@@ -6843,6 +7034,7 @@ module Aws::IAM
6843
7034
  :user_name,
6844
7035
  :marker,
6845
7036
  :max_items)
7037
+ SENSITIVE = []
6846
7038
  include Aws::Structure
6847
7039
  end
6848
7040
 
@@ -6874,6 +7066,7 @@ module Aws::IAM
6874
7066
  :certificates,
6875
7067
  :is_truncated,
6876
7068
  :marker)
7069
+ SENSITIVE = []
6877
7070
  include Aws::Structure
6878
7071
  end
6879
7072
 
@@ -6925,6 +7118,7 @@ module Aws::IAM
6925
7118
  :user_name,
6926
7119
  :marker,
6927
7120
  :max_items)
7121
+ SENSITIVE = []
6928
7122
  include Aws::Structure
6929
7123
  end
6930
7124
 
@@ -6956,6 +7150,7 @@ module Aws::IAM
6956
7150
  :policy_names,
6957
7151
  :is_truncated,
6958
7152
  :marker)
7153
+ SENSITIVE = []
6959
7154
  include Aws::Structure
6960
7155
  end
6961
7156
 
@@ -7007,6 +7202,7 @@ module Aws::IAM
7007
7202
  :user_name,
7008
7203
  :marker,
7009
7204
  :max_items)
7205
+ SENSITIVE = []
7010
7206
  include Aws::Structure
7011
7207
  end
7012
7208
 
@@ -7038,6 +7234,7 @@ module Aws::IAM
7038
7234
  :tags,
7039
7235
  :is_truncated,
7040
7236
  :marker)
7237
+ SENSITIVE = []
7041
7238
  include Aws::Structure
7042
7239
  end
7043
7240
 
@@ -7095,6 +7292,7 @@ module Aws::IAM
7095
7292
  :path_prefix,
7096
7293
  :marker,
7097
7294
  :max_items)
7295
+ SENSITIVE = []
7098
7296
  include Aws::Structure
7099
7297
  end
7100
7298
 
@@ -7126,6 +7324,7 @@ module Aws::IAM
7126
7324
  :users,
7127
7325
  :is_truncated,
7128
7326
  :marker)
7327
+ SENSITIVE = []
7129
7328
  include Aws::Structure
7130
7329
  end
7131
7330
 
@@ -7171,6 +7370,7 @@ module Aws::IAM
7171
7370
  :assignment_status,
7172
7371
  :marker,
7173
7372
  :max_items)
7373
+ SENSITIVE = []
7174
7374
  include Aws::Structure
7175
7375
  end
7176
7376
 
@@ -7203,6 +7403,7 @@ module Aws::IAM
7203
7403
  :virtual_mfa_devices,
7204
7404
  :is_truncated,
7205
7405
  :marker)
7406
+ SENSITIVE = []
7206
7407
  include Aws::Structure
7207
7408
  end
7208
7409
 
@@ -7231,6 +7432,7 @@ module Aws::IAM
7231
7432
  :user_name,
7232
7433
  :create_date,
7233
7434
  :password_reset_required)
7435
+ SENSITIVE = []
7234
7436
  include Aws::Structure
7235
7437
  end
7236
7438
 
@@ -7258,6 +7460,7 @@ module Aws::IAM
7258
7460
  :user_name,
7259
7461
  :serial_number,
7260
7462
  :enable_date)
7463
+ SENSITIVE = []
7261
7464
  include Aws::Structure
7262
7465
  end
7263
7466
 
@@ -7271,6 +7474,7 @@ module Aws::IAM
7271
7474
  #
7272
7475
  class MalformedCertificateException < Struct.new(
7273
7476
  :message)
7477
+ SENSITIVE = []
7274
7478
  include Aws::Structure
7275
7479
  end
7276
7480
 
@@ -7284,6 +7488,7 @@ module Aws::IAM
7284
7488
  #
7285
7489
  class MalformedPolicyDocumentException < Struct.new(
7286
7490
  :message)
7491
+ SENSITIVE = []
7287
7492
  include Aws::Structure
7288
7493
  end
7289
7494
 
@@ -7419,6 +7624,7 @@ module Aws::IAM
7419
7624
  :create_date,
7420
7625
  :update_date,
7421
7626
  :policy_version_list)
7627
+ SENSITIVE = []
7422
7628
  include Aws::Structure
7423
7629
  end
7424
7630
 
@@ -7432,6 +7638,7 @@ module Aws::IAM
7432
7638
  #
7433
7639
  class NoSuchEntityException < Struct.new(
7434
7640
  :message)
7641
+ SENSITIVE = []
7435
7642
  include Aws::Structure
7436
7643
  end
7437
7644
 
@@ -7454,6 +7661,7 @@ module Aws::IAM
7454
7661
  #
7455
7662
  class OpenIDConnectProviderListEntry < Struct.new(
7456
7663
  :arn)
7664
+ SENSITIVE = []
7457
7665
  include Aws::Structure
7458
7666
  end
7459
7667
 
@@ -7470,6 +7678,7 @@ module Aws::IAM
7470
7678
  #
7471
7679
  class OrganizationsDecisionDetail < Struct.new(
7472
7680
  :allowed_by_organizations)
7681
+ SENSITIVE = []
7473
7682
  include Aws::Structure
7474
7683
  end
7475
7684
 
@@ -7538,6 +7747,7 @@ module Aws::IAM
7538
7747
  :max_password_age,
7539
7748
  :password_reuse_prevention,
7540
7749
  :hard_expiry)
7750
+ SENSITIVE = []
7541
7751
  include Aws::Structure
7542
7752
  end
7543
7753
 
@@ -7551,6 +7761,7 @@ module Aws::IAM
7551
7761
  #
7552
7762
  class PasswordPolicyViolationException < Struct.new(
7553
7763
  :message)
7764
+ SENSITIVE = []
7554
7765
  include Aws::Structure
7555
7766
  end
7556
7767
 
@@ -7574,6 +7785,7 @@ module Aws::IAM
7574
7785
  #
7575
7786
  class PermissionsBoundaryDecisionDetail < Struct.new(
7576
7787
  :allowed_by_permissions_boundary)
7788
+ SENSITIVE = []
7577
7789
  include Aws::Structure
7578
7790
  end
7579
7791
 
@@ -7698,6 +7910,7 @@ module Aws::IAM
7698
7910
  :description,
7699
7911
  :create_date,
7700
7912
  :update_date)
7913
+ SENSITIVE = []
7701
7914
  include Aws::Structure
7702
7915
  end
7703
7916
 
@@ -7720,6 +7933,7 @@ module Aws::IAM
7720
7933
  class PolicyDetail < Struct.new(
7721
7934
  :policy_name,
7722
7935
  :policy_document)
7936
+ SENSITIVE = []
7723
7937
  include Aws::Structure
7724
7938
  end
7725
7939
 
@@ -7734,6 +7948,7 @@ module Aws::IAM
7734
7948
  #
7735
7949
  class PolicyEvaluationException < Struct.new(
7736
7950
  :message)
7951
+ SENSITIVE = []
7737
7952
  include Aws::Structure
7738
7953
  end
7739
7954
 
@@ -7802,6 +8017,7 @@ module Aws::IAM
7802
8017
  :policy_arn,
7803
8018
  :entity_type,
7804
8019
  :entity_name)
8020
+ SENSITIVE = []
7805
8021
  include Aws::Structure
7806
8022
  end
7807
8023
 
@@ -7837,6 +8053,7 @@ module Aws::IAM
7837
8053
  class PolicyGroup < Struct.new(
7838
8054
  :group_name,
7839
8055
  :group_id)
8056
+ SENSITIVE = []
7840
8057
  include Aws::Structure
7841
8058
  end
7842
8059
 
@@ -7850,6 +8067,7 @@ module Aws::IAM
7850
8067
  #
7851
8068
  class PolicyNotAttachableException < Struct.new(
7852
8069
  :message)
8070
+ SENSITIVE = []
7853
8071
  include Aws::Structure
7854
8072
  end
7855
8073
 
@@ -7885,6 +8103,7 @@ module Aws::IAM
7885
8103
  class PolicyRole < Struct.new(
7886
8104
  :role_name,
7887
8105
  :role_id)
8106
+ SENSITIVE = []
7888
8107
  include Aws::Structure
7889
8108
  end
7890
8109
 
@@ -7920,6 +8139,7 @@ module Aws::IAM
7920
8139
  class PolicyUser < Struct.new(
7921
8140
  :user_name,
7922
8141
  :user_id)
8142
+ SENSITIVE = []
7923
8143
  include Aws::Structure
7924
8144
  end
7925
8145
 
@@ -7984,6 +8204,7 @@ module Aws::IAM
7984
8204
  :version_id,
7985
8205
  :is_default_version,
7986
8206
  :create_date)
8207
+ SENSITIVE = []
7987
8208
  include Aws::Structure
7988
8209
  end
7989
8210
 
@@ -8006,6 +8227,7 @@ module Aws::IAM
8006
8227
  class Position < Struct.new(
8007
8228
  :line,
8008
8229
  :column)
8230
+ SENSITIVE = []
8009
8231
  include Aws::Structure
8010
8232
  end
8011
8233
 
@@ -8075,6 +8297,7 @@ module Aws::IAM
8075
8297
  :group_name,
8076
8298
  :policy_name,
8077
8299
  :policy_document)
8300
+ SENSITIVE = []
8078
8301
  include Aws::Structure
8079
8302
  end
8080
8303
 
@@ -8101,6 +8324,7 @@ module Aws::IAM
8101
8324
  class PutRolePermissionsBoundaryRequest < Struct.new(
8102
8325
  :role_name,
8103
8326
  :permissions_boundary)
8327
+ SENSITIVE = []
8104
8328
  include Aws::Structure
8105
8329
  end
8106
8330
 
@@ -8170,6 +8394,7 @@ module Aws::IAM
8170
8394
  :role_name,
8171
8395
  :policy_name,
8172
8396
  :policy_document)
8397
+ SENSITIVE = []
8173
8398
  include Aws::Structure
8174
8399
  end
8175
8400
 
@@ -8196,6 +8421,7 @@ module Aws::IAM
8196
8421
  class PutUserPermissionsBoundaryRequest < Struct.new(
8197
8422
  :user_name,
8198
8423
  :permissions_boundary)
8424
+ SENSITIVE = []
8199
8425
  include Aws::Structure
8200
8426
  end
8201
8427
 
@@ -8265,6 +8491,7 @@ module Aws::IAM
8265
8491
  :user_name,
8266
8492
  :policy_name,
8267
8493
  :policy_document)
8494
+ SENSITIVE = []
8268
8495
  include Aws::Structure
8269
8496
  end
8270
8497
 
@@ -8300,6 +8527,7 @@ module Aws::IAM
8300
8527
  class RemoveClientIDFromOpenIDConnectProviderRequest < Struct.new(
8301
8528
  :open_id_connect_provider_arn,
8302
8529
  :client_id)
8530
+ SENSITIVE = []
8303
8531
  include Aws::Structure
8304
8532
  end
8305
8533
 
@@ -8342,6 +8570,7 @@ module Aws::IAM
8342
8570
  class RemoveRoleFromInstanceProfileRequest < Struct.new(
8343
8571
  :instance_profile_name,
8344
8572
  :role_name)
8573
+ SENSITIVE = []
8345
8574
  include Aws::Structure
8346
8575
  end
8347
8576
 
@@ -8384,6 +8613,7 @@ module Aws::IAM
8384
8613
  class RemoveUserFromGroupRequest < Struct.new(
8385
8614
  :group_name,
8386
8615
  :user_name)
8616
+ SENSITIVE = []
8387
8617
  include Aws::Structure
8388
8618
  end
8389
8619
 
@@ -8397,6 +8627,7 @@ module Aws::IAM
8397
8627
  #
8398
8628
  class ReportGenerationLimitExceededException < Struct.new(
8399
8629
  :message)
8630
+ SENSITIVE = []
8400
8631
  include Aws::Structure
8401
8632
  end
8402
8633
 
@@ -8440,6 +8671,7 @@ module Aws::IAM
8440
8671
  class ResetServiceSpecificCredentialRequest < Struct.new(
8441
8672
  :user_name,
8442
8673
  :service_specific_credential_id)
8674
+ SENSITIVE = []
8443
8675
  include Aws::Structure
8444
8676
  end
8445
8677
 
@@ -8455,6 +8687,7 @@ module Aws::IAM
8455
8687
  #
8456
8688
  class ResetServiceSpecificCredentialResponse < Struct.new(
8457
8689
  :service_specific_credential)
8690
+ SENSITIVE = []
8458
8691
  include Aws::Structure
8459
8692
  end
8460
8693
 
@@ -8516,6 +8749,7 @@ module Aws::IAM
8516
8749
  :missing_context_values,
8517
8750
  :eval_decision_details,
8518
8751
  :permissions_boundary_decision_detail)
8752
+ SENSITIVE = []
8519
8753
  include Aws::Structure
8520
8754
  end
8521
8755
 
@@ -8574,6 +8808,7 @@ module Aws::IAM
8574
8808
  :serial_number,
8575
8809
  :authentication_code_1,
8576
8810
  :authentication_code_2)
8811
+ SENSITIVE = []
8577
8812
  include Aws::Structure
8578
8813
  end
8579
8814
 
@@ -8687,6 +8922,7 @@ module Aws::IAM
8687
8922
  :permissions_boundary,
8688
8923
  :tags,
8689
8924
  :role_last_used)
8925
+ SENSITIVE = []
8690
8926
  include Aws::Structure
8691
8927
  end
8692
8928
 
@@ -8809,6 +9045,7 @@ module Aws::IAM
8809
9045
  :permissions_boundary,
8810
9046
  :tags,
8811
9047
  :role_last_used)
9048
+ SENSITIVE = []
8812
9049
  include Aws::Structure
8813
9050
  end
8814
9051
 
@@ -8850,6 +9087,7 @@ module Aws::IAM
8850
9087
  class RoleLastUsed < Struct.new(
8851
9088
  :last_used_date,
8852
9089
  :region)
9090
+ SENSITIVE = []
8853
9091
  include Aws::Structure
8854
9092
  end
8855
9093
 
@@ -8872,6 +9110,7 @@ module Aws::IAM
8872
9110
  class RoleUsageType < Struct.new(
8873
9111
  :region,
8874
9112
  :resources)
9113
+ SENSITIVE = []
8875
9114
  include Aws::Structure
8876
9115
  end
8877
9116
 
@@ -8895,6 +9134,7 @@ module Aws::IAM
8895
9134
  :arn,
8896
9135
  :valid_until,
8897
9136
  :create_date)
9137
+ SENSITIVE = []
8898
9138
  include Aws::Structure
8899
9139
  end
8900
9140
 
@@ -8943,6 +9183,7 @@ module Aws::IAM
8943
9183
  :ssh_public_key_body,
8944
9184
  :status,
8945
9185
  :upload_date)
9186
+ SENSITIVE = []
8946
9187
  include Aws::Structure
8947
9188
  end
8948
9189
 
@@ -8982,6 +9223,7 @@ module Aws::IAM
8982
9223
  :ssh_public_key_id,
8983
9224
  :status,
8984
9225
  :upload_date)
9226
+ SENSITIVE = []
8985
9227
  include Aws::Structure
8986
9228
  end
8987
9229
 
@@ -9009,6 +9251,7 @@ module Aws::IAM
9009
9251
  :server_certificate_metadata,
9010
9252
  :certificate_body,
9011
9253
  :certificate_chain)
9254
+ SENSITIVE = []
9012
9255
  include Aws::Structure
9013
9256
  end
9014
9257
 
@@ -9068,6 +9311,7 @@ module Aws::IAM
9068
9311
  :arn,
9069
9312
  :upload_date,
9070
9313
  :expiration)
9314
+ SENSITIVE = []
9071
9315
  include Aws::Structure
9072
9316
  end
9073
9317
 
@@ -9081,6 +9325,7 @@ module Aws::IAM
9081
9325
  #
9082
9326
  class ServiceFailureException < Struct.new(
9083
9327
  :message)
9328
+ SENSITIVE = []
9084
9329
  include Aws::Structure
9085
9330
  end
9086
9331
 
@@ -9187,6 +9432,7 @@ module Aws::IAM
9187
9432
  :last_authenticated_region,
9188
9433
  :total_authenticated_entities,
9189
9434
  :tracked_actions_last_accessed)
9435
+ SENSITIVE = []
9190
9436
  include Aws::Structure
9191
9437
  end
9192
9438
 
@@ -9199,6 +9445,7 @@ module Aws::IAM
9199
9445
  #
9200
9446
  class ServiceNotSupportedException < Struct.new(
9201
9447
  :message)
9448
+ SENSITIVE = []
9202
9449
  include Aws::Structure
9203
9450
  end
9204
9451
 
@@ -9253,6 +9500,7 @@ module Aws::IAM
9253
9500
  :service_specific_credential_id,
9254
9501
  :user_name,
9255
9502
  :status)
9503
+ SENSITIVE = [:service_password]
9256
9504
  include Aws::Structure
9257
9505
  end
9258
9506
 
@@ -9299,6 +9547,7 @@ module Aws::IAM
9299
9547
  :create_date,
9300
9548
  :service_specific_credential_id,
9301
9549
  :service_name)
9550
+ SENSITIVE = []
9302
9551
  include Aws::Structure
9303
9552
  end
9304
9553
 
@@ -9338,6 +9587,7 @@ module Aws::IAM
9338
9587
  class SetDefaultPolicyVersionRequest < Struct.new(
9339
9588
  :policy_arn,
9340
9589
  :version_id)
9590
+ SENSITIVE = []
9341
9591
  include Aws::Structure
9342
9592
  end
9343
9593
 
@@ -9368,6 +9618,7 @@ module Aws::IAM
9368
9618
  #
9369
9619
  class SetSecurityTokenServicePreferencesRequest < Struct.new(
9370
9620
  :global_endpoint_token_version)
9621
+ SENSITIVE = []
9371
9622
  include Aws::Structure
9372
9623
  end
9373
9624
 
@@ -9405,6 +9656,7 @@ module Aws::IAM
9405
9656
  :certificate_body,
9406
9657
  :status,
9407
9658
  :upload_date)
9659
+ SENSITIVE = []
9408
9660
  include Aws::Structure
9409
9661
  end
9410
9662
 
@@ -9661,6 +9913,7 @@ module Aws::IAM
9661
9913
  :resource_handling_option,
9662
9914
  :max_items,
9663
9915
  :marker)
9916
+ SENSITIVE = []
9664
9917
  include Aws::Structure
9665
9918
  end
9666
9919
 
@@ -9693,6 +9946,7 @@ module Aws::IAM
9693
9946
  :evaluation_results,
9694
9947
  :is_truncated,
9695
9948
  :marker)
9949
+ SENSITIVE = []
9696
9950
  include Aws::Structure
9697
9951
  end
9698
9952
 
@@ -9970,6 +10224,7 @@ module Aws::IAM
9970
10224
  :resource_handling_option,
9971
10225
  :max_items,
9972
10226
  :marker)
10227
+ SENSITIVE = []
9973
10228
  include Aws::Structure
9974
10229
  end
9975
10230
 
@@ -10003,6 +10258,7 @@ module Aws::IAM
10003
10258
  :source_policy_type,
10004
10259
  :start_position,
10005
10260
  :end_position)
10261
+ SENSITIVE = []
10006
10262
  include Aws::Structure
10007
10263
  end
10008
10264
 
@@ -10049,6 +10305,7 @@ module Aws::IAM
10049
10305
  class Tag < Struct.new(
10050
10306
  :key,
10051
10307
  :value)
10308
+ SENSITIVE = []
10052
10309
  include Aws::Structure
10053
10310
  end
10054
10311
 
@@ -10089,6 +10346,7 @@ module Aws::IAM
10089
10346
  class TagRoleRequest < Struct.new(
10090
10347
  :role_name,
10091
10348
  :tags)
10349
+ SENSITIVE = []
10092
10350
  include Aws::Structure
10093
10351
  end
10094
10352
 
@@ -10128,6 +10386,7 @@ module Aws::IAM
10128
10386
  class TagUserRequest < Struct.new(
10129
10387
  :user_name,
10130
10388
  :tags)
10389
+ SENSITIVE = []
10131
10390
  include Aws::Structure
10132
10391
  end
10133
10392
 
@@ -10188,6 +10447,7 @@ module Aws::IAM
10188
10447
  :last_accessed_entity,
10189
10448
  :last_accessed_time,
10190
10449
  :last_accessed_region)
10450
+ SENSITIVE = []
10191
10451
  include Aws::Structure
10192
10452
  end
10193
10453
 
@@ -10203,6 +10463,7 @@ module Aws::IAM
10203
10463
  #
10204
10464
  class UnmodifiableEntityException < Struct.new(
10205
10465
  :message)
10466
+ SENSITIVE = []
10206
10467
  include Aws::Structure
10207
10468
  end
10208
10469
 
@@ -10216,6 +10477,7 @@ module Aws::IAM
10216
10477
  #
10217
10478
  class UnrecognizedPublicKeyEncodingException < Struct.new(
10218
10479
  :message)
10480
+ SENSITIVE = []
10219
10481
  include Aws::Structure
10220
10482
  end
10221
10483
 
@@ -10250,6 +10512,7 @@ module Aws::IAM
10250
10512
  class UntagRoleRequest < Struct.new(
10251
10513
  :role_name,
10252
10514
  :tag_keys)
10515
+ SENSITIVE = []
10253
10516
  include Aws::Structure
10254
10517
  end
10255
10518
 
@@ -10284,6 +10547,7 @@ module Aws::IAM
10284
10547
  class UntagUserRequest < Struct.new(
10285
10548
  :user_name,
10286
10549
  :tag_keys)
10550
+ SENSITIVE = []
10287
10551
  include Aws::Structure
10288
10552
  end
10289
10553
 
@@ -10333,6 +10597,7 @@ module Aws::IAM
10333
10597
  :user_name,
10334
10598
  :access_key_id,
10335
10599
  :status)
10600
+ SENSITIVE = []
10336
10601
  include Aws::Structure
10337
10602
  end
10338
10603
 
@@ -10452,6 +10717,7 @@ module Aws::IAM
10452
10717
  :max_password_age,
10453
10718
  :password_reuse_prevention,
10454
10719
  :hard_expiry)
10720
+ SENSITIVE = []
10455
10721
  include Aws::Structure
10456
10722
  end
10457
10723
 
@@ -10506,6 +10772,7 @@ module Aws::IAM
10506
10772
  class UpdateAssumeRolePolicyRequest < Struct.new(
10507
10773
  :role_name,
10508
10774
  :policy_document)
10775
+ SENSITIVE = []
10509
10776
  include Aws::Structure
10510
10777
  end
10511
10778
 
@@ -10564,6 +10831,7 @@ module Aws::IAM
10564
10831
  :group_name,
10565
10832
  :new_path,
10566
10833
  :new_group_name)
10834
+ SENSITIVE = []
10567
10835
  include Aws::Structure
10568
10836
  end
10569
10837
 
@@ -10624,6 +10892,7 @@ module Aws::IAM
10624
10892
  :user_name,
10625
10893
  :password,
10626
10894
  :password_reset_required)
10895
+ SENSITIVE = [:password]
10627
10896
  include Aws::Structure
10628
10897
  end
10629
10898
 
@@ -10660,6 +10929,7 @@ module Aws::IAM
10660
10929
  class UpdateOpenIDConnectProviderThumbprintRequest < Struct.new(
10661
10930
  :open_id_connect_provider_arn,
10662
10931
  :thumbprint_list)
10932
+ SENSITIVE = []
10663
10933
  include Aws::Structure
10664
10934
  end
10665
10935
 
@@ -10684,6 +10954,7 @@ module Aws::IAM
10684
10954
  class UpdateRoleDescriptionRequest < Struct.new(
10685
10955
  :role_name,
10686
10956
  :description)
10957
+ SENSITIVE = []
10687
10958
  include Aws::Structure
10688
10959
  end
10689
10960
 
@@ -10695,6 +10966,7 @@ module Aws::IAM
10695
10966
  #
10696
10967
  class UpdateRoleDescriptionResponse < Struct.new(
10697
10968
  :role)
10969
+ SENSITIVE = []
10698
10970
  include Aws::Structure
10699
10971
  end
10700
10972
 
@@ -10744,6 +11016,7 @@ module Aws::IAM
10744
11016
  :role_name,
10745
11017
  :description,
10746
11018
  :max_session_duration)
11019
+ SENSITIVE = []
10747
11020
  include Aws::Structure
10748
11021
  end
10749
11022
 
@@ -10784,6 +11057,7 @@ module Aws::IAM
10784
11057
  class UpdateSAMLProviderRequest < Struct.new(
10785
11058
  :saml_metadata_document,
10786
11059
  :saml_provider_arn)
11060
+ SENSITIVE = []
10787
11061
  include Aws::Structure
10788
11062
  end
10789
11063
 
@@ -10798,6 +11072,7 @@ module Aws::IAM
10798
11072
  #
10799
11073
  class UpdateSAMLProviderResponse < Struct.new(
10800
11074
  :saml_provider_arn)
11075
+ SENSITIVE = []
10801
11076
  include Aws::Structure
10802
11077
  end
10803
11078
 
@@ -10847,6 +11122,7 @@ module Aws::IAM
10847
11122
  :user_name,
10848
11123
  :ssh_public_key_id,
10849
11124
  :status)
11125
+ SENSITIVE = []
10850
11126
  include Aws::Structure
10851
11127
  end
10852
11128
 
@@ -10909,6 +11185,7 @@ module Aws::IAM
10909
11185
  :server_certificate_name,
10910
11186
  :new_path,
10911
11187
  :new_server_certificate_name)
11188
+ SENSITIVE = []
10912
11189
  include Aws::Structure
10913
11190
  end
10914
11191
 
@@ -10958,6 +11235,7 @@ module Aws::IAM
10958
11235
  :user_name,
10959
11236
  :service_specific_credential_id,
10960
11237
  :status)
11238
+ SENSITIVE = []
10961
11239
  include Aws::Structure
10962
11240
  end
10963
11241
 
@@ -11007,6 +11285,7 @@ module Aws::IAM
11007
11285
  :user_name,
11008
11286
  :certificate_id,
11009
11287
  :status)
11288
+ SENSITIVE = []
11010
11289
  include Aws::Structure
11011
11290
  end
11012
11291
 
@@ -11065,6 +11344,7 @@ module Aws::IAM
11065
11344
  :user_name,
11066
11345
  :new_path,
11067
11346
  :new_user_name)
11347
+ SENSITIVE = []
11068
11348
  include Aws::Structure
11069
11349
  end
11070
11350
 
@@ -11117,6 +11397,7 @@ module Aws::IAM
11117
11397
  class UploadSSHPublicKeyRequest < Struct.new(
11118
11398
  :user_name,
11119
11399
  :ssh_public_key_body)
11400
+ SENSITIVE = []
11120
11401
  include Aws::Structure
11121
11402
  end
11122
11403
 
@@ -11130,6 +11411,7 @@ module Aws::IAM
11130
11411
  #
11131
11412
  class UploadSSHPublicKeyResponse < Struct.new(
11132
11413
  :ssh_public_key)
11414
+ SENSITIVE = []
11133
11415
  include Aws::Structure
11134
11416
  end
11135
11417
 
@@ -11253,6 +11535,7 @@ module Aws::IAM
11253
11535
  :certificate_body,
11254
11536
  :private_key,
11255
11537
  :certificate_chain)
11538
+ SENSITIVE = [:private_key]
11256
11539
  include Aws::Structure
11257
11540
  end
11258
11541
 
@@ -11267,6 +11550,7 @@ module Aws::IAM
11267
11550
  #
11268
11551
  class UploadServerCertificateResponse < Struct.new(
11269
11552
  :server_certificate_metadata)
11553
+ SENSITIVE = []
11270
11554
  include Aws::Structure
11271
11555
  end
11272
11556
 
@@ -11316,6 +11600,7 @@ module Aws::IAM
11316
11600
  class UploadSigningCertificateRequest < Struct.new(
11317
11601
  :user_name,
11318
11602
  :certificate_body)
11603
+ SENSITIVE = []
11319
11604
  include Aws::Structure
11320
11605
  end
11321
11606
 
@@ -11330,6 +11615,7 @@ module Aws::IAM
11330
11615
  #
11331
11616
  class UploadSigningCertificateResponse < Struct.new(
11332
11617
  :certificate)
11618
+ SENSITIVE = []
11333
11619
  include Aws::Structure
11334
11620
  end
11335
11621
 
@@ -11447,6 +11733,7 @@ module Aws::IAM
11447
11733
  :password_last_used,
11448
11734
  :permissions_boundary,
11449
11735
  :tags)
11736
+ SENSITIVE = []
11450
11737
  include Aws::Structure
11451
11738
  end
11452
11739
 
@@ -11547,6 +11834,7 @@ module Aws::IAM
11547
11834
  :attached_managed_policies,
11548
11835
  :permissions_boundary,
11549
11836
  :tags)
11837
+ SENSITIVE = []
11550
11838
  include Aws::Structure
11551
11839
  end
11552
11840
 
@@ -11590,6 +11878,7 @@ module Aws::IAM
11590
11878
  :qr_code_png,
11591
11879
  :user,
11592
11880
  :enable_date)
11881
+ SENSITIVE = [:base_32_string_seed, :qr_code_png]
11593
11882
  include Aws::Structure
11594
11883
  end
11595
11884