aws-sdk-identitystore 1.23.0 → 1.25.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 15294df7a15cd0b04e3649d9ad32a6c24de545de10b954665813f22534bc628e
4
- data.tar.gz: 57e3f977d450491a4c7ec8b240d419b6495c3f669a52f5162df9f217a71d8af9
3
+ metadata.gz: adb27fb7f42d0d4f69cd0c61e4f25e531643d329a88dbe8537a2b76823fb7fee
4
+ data.tar.gz: d4def27fe26bc0a3755a4a10bb0af389ab603b428721112684efe31f0a4575dc
5
5
  SHA512:
6
- metadata.gz: 01fae7624aba8723045fdb63ebc0327ecc48129cb1556602e98037e1638b6467ab1043b49bab10d5427398931e6e9697dc245b890847ccbca15d24f69a637414
7
- data.tar.gz: b9021d2deb0a94397dd1aec2f52a226fbbb6d25ef857eb623e9f5f749b6b97d753fe92492dd4b6ceecad84ad0049416c40c08d71ecd90643655282ad4fb44893
6
+ metadata.gz: fd8c3b40ebce258c20981dbc781e196835cbf1e5f2dd28883e4d0f729002d70ea7c48b81031fa523b7a9cedd1b13b365ff64155dee2ae393c1e97a8bdbf02ef8
7
+ data.tar.gz: 611222c2275bd0c7fae06a782e8459e9e999a144e2734e7f09f609884577488233ca9ab766dddf16a1e0bd4d44237cc24f711ccbd827e13a1d7dea1821567d70
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.25.0 (2023-05-31)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.24.0 (2023-04-05)
10
+ ------------------
11
+
12
+ * Feature - Documentation updates for Identity Store CLI command reference.
13
+
4
14
  1.23.0 (2023-01-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.23.0
1
+ 1.25.0
@@ -275,6 +275,11 @@ module Aws::IdentityStore
275
275
  # in the future.
276
276
  #
277
277
  #
278
+ # @option options [String] :sdk_ua_app_id
279
+ # A unique and opaque application ID that is appended to the
280
+ # User-Agent header as app/<sdk_ua_app_id>. It should have a
281
+ # maximum length of 50.
282
+ #
278
283
  # @option options [String] :secret_access_key
279
284
  #
280
285
  # @option options [String] :session_token
@@ -385,7 +390,9 @@ module Aws::IdentityStore
385
390
  #
386
391
  # @option params [String] :display_name
387
392
  # A string containing the name of the group. This value is commonly
388
- # displayed when the group is referenced.
393
+ # displayed when the group is referenced. "Administrator" and
394
+ # "AWSAdministrators" are reserved names and can't be used for users
395
+ # or groups.
389
396
  #
390
397
  # @option params [String] :description
391
398
  # A string containing the description of the group.
@@ -461,7 +468,7 @@ module Aws::IdentityStore
461
468
  req.send_request(options)
462
469
  end
463
470
 
464
- # Creates a new user within the specified identity store.
471
+ # Creates a user within the specified identity store.
465
472
  #
466
473
  # @option params [required, String] :identity_store_id
467
474
  # The globally unique identifier for the identity store.
@@ -471,13 +478,14 @@ module Aws::IdentityStore
471
478
  # characters. This value can consist of letters, accented characters,
472
479
  # symbols, numbers, and punctuation. This value is specified at the time
473
480
  # the user is created and stored as an attribute of the user object in
474
- # the identity store.
481
+ # the identity store. "Administrator" and "AWSAdministrators" are
482
+ # reserved names and can't be used for users or groups.
475
483
  #
476
484
  # @option params [Types::Name] :name
477
- # An object containing the user's name.
485
+ # An object containing the name of the user.
478
486
  #
479
487
  # @option params [String] :display_name
480
- # A string containing the user's name. This value is typically
488
+ # A string containing the name of the user. This value is typically
481
489
  # formatted for display when the user is referenced. For example, "John
482
490
  # Doe."
483
491
  #
@@ -485,7 +493,7 @@ module Aws::IdentityStore
485
493
  # A string containing an alternate name for the user.
486
494
  #
487
495
  # @option params [String] :profile_url
488
- # A string containing a URL that may be associated with the user.
496
+ # A string containing a URL that might be associated with the user.
489
497
  #
490
498
  # @option params [Array<Types::Email>] :emails
491
499
  # A list of `Email` objects containing email addresses associated with
@@ -500,22 +508,22 @@ module Aws::IdentityStore
500
508
  # with the user.
501
509
  #
502
510
  # @option params [String] :user_type
503
- # A string indicating the user's type. Possible values depend on each
504
- # customer's specific needs, so they are left unspecified.
511
+ # A string indicating the type of user. Possible values are left
512
+ # unspecified. The value can vary based on your specific use case.
505
513
  #
506
514
  # @option params [String] :title
507
- # A string containing the user's title. Possible values are left
508
- # unspecified given that they depend on each customer's specific needs.
515
+ # A string containing the title of the user. Possible values are left
516
+ # unspecified. The value can vary based on your specific use case.
509
517
  #
510
518
  # @option params [String] :preferred_language
511
519
  # A string containing the preferred language of the user. For example,
512
520
  # "American English" or "en-us."
513
521
  #
514
522
  # @option params [String] :locale
515
- # A string containing the user's geographical region or location.
523
+ # A string containing the geographical region or location of the user.
516
524
  #
517
525
  # @option params [String] :timezone
518
- # A string containing the user's time zone.
526
+ # A string containing the time zone of the user.
519
527
  #
520
528
  # @return [Types::CreateUserResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
521
529
  #
@@ -846,7 +854,8 @@ module Aws::IdentityStore
846
854
  # A unique identifier for a user or group that is not the primary
847
855
  # identifier. This value can be an identifier from an external identity
848
856
  # provider (IdP) that is associated with the user, the group, or a
849
- # unique attribute. For example, a unique `GroupDisplayName`.
857
+ # unique attribute. For the unique attribute, the only valid path is
858
+ # `displayName`.
850
859
  #
851
860
  # @return [Types::GetGroupIdResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
852
861
  #
@@ -934,7 +943,8 @@ module Aws::IdentityStore
934
943
  # A unique identifier for a user or group that is not the primary
935
944
  # identifier. This value can be an identifier from an external identity
936
945
  # provider (IdP) that is associated with the user, the group, or a
937
- # unique attribute. For example, a unique `UserDisplayName`.
946
+ # unique attribute. For the unique attribute, the only valid paths are
947
+ # `userName` and `emails.value`.
938
948
  #
939
949
  # @return [Types::GetUserIdResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
940
950
  #
@@ -1389,7 +1399,7 @@ module Aws::IdentityStore
1389
1399
  params: params,
1390
1400
  config: config)
1391
1401
  context[:gem_name] = 'aws-sdk-identitystore'
1392
- context[:gem_version] = '1.23.0'
1402
+ context[:gem_version] = '1.25.0'
1393
1403
  Seahorse::Client::Request.new(handlers, context)
1394
1404
  end
1395
1405
 
@@ -14,39 +14,42 @@ module Aws::IdentityStore
14
14
  use_dual_stack = parameters.use_dual_stack
15
15
  use_fips = parameters.use_fips
16
16
  endpoint = parameters.endpoint
17
- if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
- if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
19
- if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
- raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
- end
22
- if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
- raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
- end
25
- return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
17
+ if Aws::Endpoints::Matchers.set?(endpoint)
18
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
19
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
26
20
  end
27
- if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
- return Aws::Endpoints::Endpoint.new(url: "https://identitystore-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
- end
31
- raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
21
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
22
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
32
23
  end
33
- if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
- if Aws::Endpoints::Matchers.string_equals?("aws-us-gov", Aws::Endpoints::Matchers.attr(partition_result, "name"))
36
- return Aws::Endpoints::Endpoint.new(url: "https://identitystore.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
24
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
25
+ end
26
+ if Aws::Endpoints::Matchers.set?(region)
27
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
28
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
29
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
30
+ return Aws::Endpoints::Endpoint.new(url: "https://identitystore-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
37
31
  end
38
- return Aws::Endpoints::Endpoint.new(url: "https://identitystore-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
32
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
39
33
  end
40
- raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
41
- end
42
- if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
43
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
44
- return Aws::Endpoints::Endpoint.new(url: "https://identitystore.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
34
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
36
+ if Aws::Endpoints::Matchers.string_equals?("aws-us-gov", Aws::Endpoints::Matchers.attr(partition_result, "name"))
37
+ return Aws::Endpoints::Endpoint.new(url: "https://identitystore.#{region}.amazonaws.com", headers: {}, properties: {})
38
+ end
39
+ return Aws::Endpoints::Endpoint.new(url: "https://identitystore-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
40
+ end
41
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
42
+ end
43
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
44
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
45
+ return Aws::Endpoints::Endpoint.new(url: "https://identitystore.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
46
+ end
47
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
45
48
  end
46
- raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
49
+ return Aws::Endpoints::Endpoint.new(url: "https://identitystore.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
47
50
  end
48
- return Aws::Endpoints::Endpoint.new(url: "https://identitystore.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
49
51
  end
52
+ raise ArgumentError, "Invalid Configuration: Missing Region"
50
53
  raise ArgumentError, 'No endpoint could be resolved'
51
54
 
52
55
  end
@@ -84,7 +84,7 @@ module Aws::IdentityStore
84
84
  # A unique identifier for a user or group that is not the primary
85
85
  # identifier. This value can be an identifier from an external identity
86
86
  # provider (IdP) that is associated with the user, the group, or a
87
- # unique attribute. For example, a unique `GroupDisplayName`.
87
+ # unique attribute.
88
88
  #
89
89
  # @note AlternateIdentifier is a union - when making an API calls you must set exactly one of the members.
90
90
  #
@@ -222,7 +222,9 @@ module Aws::IdentityStore
222
222
  #
223
223
  # @!attribute [rw] display_name
224
224
  # A string containing the name of the group. This value is commonly
225
- # displayed when the group is referenced.
225
+ # displayed when the group is referenced. "Administrator" and
226
+ # "AWSAdministrators" are reserved names and can't be used for
227
+ # users or groups.
226
228
  # @return [String]
227
229
  #
228
230
  # @!attribute [rw] description
@@ -265,15 +267,17 @@ module Aws::IdentityStore
265
267
  # characters. This value can consist of letters, accented characters,
266
268
  # symbols, numbers, and punctuation. This value is specified at the
267
269
  # time the user is created and stored as an attribute of the user
268
- # object in the identity store.
270
+ # object in the identity store. "Administrator" and
271
+ # "AWSAdministrators" are reserved names and can't be used for
272
+ # users or groups.
269
273
  # @return [String]
270
274
  #
271
275
  # @!attribute [rw] name
272
- # An object containing the user's name.
276
+ # An object containing the name of the user.
273
277
  # @return [Types::Name]
274
278
  #
275
279
  # @!attribute [rw] display_name
276
- # A string containing the user's name. This value is typically
280
+ # A string containing the name of the user. This value is typically
277
281
  # formatted for display when the user is referenced. For example,
278
282
  # "John Doe."
279
283
  # @return [String]
@@ -283,7 +287,7 @@ module Aws::IdentityStore
283
287
  # @return [String]
284
288
  #
285
289
  # @!attribute [rw] profile_url
286
- # A string containing a URL that may be associated with the user.
290
+ # A string containing a URL that might be associated with the user.
287
291
  # @return [String]
288
292
  #
289
293
  # @!attribute [rw] emails
@@ -302,14 +306,13 @@ module Aws::IdentityStore
302
306
  # @return [Array<Types::PhoneNumber>]
303
307
  #
304
308
  # @!attribute [rw] user_type
305
- # A string indicating the user's type. Possible values depend on each
306
- # customer's specific needs, so they are left unspecified.
309
+ # A string indicating the type of user. Possible values are left
310
+ # unspecified. The value can vary based on your specific use case.
307
311
  # @return [String]
308
312
  #
309
313
  # @!attribute [rw] title
310
- # A string containing the user's title. Possible values are left
311
- # unspecified given that they depend on each customer's specific
312
- # needs.
314
+ # A string containing the title of the user. Possible values are left
315
+ # unspecified. The value can vary based on your specific use case.
313
316
  # @return [String]
314
317
  #
315
318
  # @!attribute [rw] preferred_language
@@ -318,11 +321,11 @@ module Aws::IdentityStore
318
321
  # @return [String]
319
322
  #
320
323
  # @!attribute [rw] locale
321
- # A string containing the user's geographical region or location.
324
+ # A string containing the geographical region or location of the user.
322
325
  # @return [String]
323
326
  #
324
327
  # @!attribute [rw] timezone
325
- # A string containing the user's time zone.
328
+ # A string containing the time zone of the user.
326
329
  # @return [String]
327
330
  #
328
331
  # @see http://docs.aws.amazon.com/goto/WebAPI/identitystore-2020-06-15/CreateUserRequest AWS API Documentation
@@ -572,7 +575,7 @@ module Aws::IdentityStore
572
575
  # @return [Types::Name]
573
576
  #
574
577
  # @!attribute [rw] display_name
575
- # The user's name value for display.
578
+ # The display name of the user.
576
579
  # @return [String]
577
580
  #
578
581
  # @!attribute [rw] nick_name
@@ -584,11 +587,11 @@ module Aws::IdentityStore
584
587
  # @return [String]
585
588
  #
586
589
  # @!attribute [rw] emails
587
- # The user's email value.
590
+ # The email address of the user.
588
591
  # @return [Array<Types::Email>]
589
592
  #
590
593
  # @!attribute [rw] addresses
591
- # The user's physical address.
594
+ # The physical address of the user.
592
595
  # @return [Array<Types::Address>]
593
596
  #
594
597
  # @!attribute [rw] phone_numbers
@@ -596,11 +599,11 @@ module Aws::IdentityStore
596
599
  # @return [Array<Types::PhoneNumber>]
597
600
  #
598
601
  # @!attribute [rw] user_type
599
- # A string indicating the user's type.
602
+ # A string indicating the type of user.
600
603
  # @return [String]
601
604
  #
602
605
  # @!attribute [rw] title
603
- # A string containing the user's title.
606
+ # A string containing the title of the user.
604
607
  # @return [String]
605
608
  #
606
609
  # @!attribute [rw] preferred_language
@@ -608,7 +611,7 @@ module Aws::IdentityStore
608
611
  # @return [String]
609
612
  #
610
613
  # @!attribute [rw] locale
611
- # A string containing the user's geographical region or location.
614
+ # A string containing the geographical region or location of the user.
612
615
  # @return [String]
613
616
  #
614
617
  # @!attribute [rw] timezone
@@ -722,7 +725,8 @@ module Aws::IdentityStore
722
725
  # A unique identifier for a user or group that is not the primary
723
726
  # identifier. This value can be an identifier from an external
724
727
  # identity provider (IdP) that is associated with the user, the group,
725
- # or a unique attribute. For example, a unique `GroupDisplayName`.
728
+ # or a unique attribute. For the unique attribute, the only valid path
729
+ # is `displayName`.
726
730
  # @return [Types::AlternateIdentifier]
727
731
  #
728
732
  # @see http://docs.aws.amazon.com/goto/WebAPI/identitystore-2020-06-15/GetGroupIdRequest AWS API Documentation
@@ -800,7 +804,8 @@ module Aws::IdentityStore
800
804
  # A unique identifier for a user or group that is not the primary
801
805
  # identifier. This value can be an identifier from an external
802
806
  # identity provider (IdP) that is associated with the user, the group,
803
- # or a unique attribute. For example, a unique `UserDisplayName`.
807
+ # or a unique attribute. For the unique attribute, the only valid
808
+ # paths are `userName` and `emails.value`.
804
809
  # @return [Types::AlternateIdentifier]
805
810
  #
806
811
  # @see http://docs.aws.amazon.com/goto/WebAPI/identitystore-2020-06-15/GetUserIdRequest AWS API Documentation
@@ -829,15 +834,15 @@ module Aws::IdentityStore
829
834
  include Aws::Structure
830
835
  end
831
836
 
832
- # A group object that contains a specified group’s metadata and
833
- # attributes.
837
+ # A group object that contains the metadata and attributes for a
838
+ # specified group.
834
839
  #
835
840
  # @!attribute [rw] group_id
836
841
  # The identifier for a group in the identity store.
837
842
  # @return [String]
838
843
  #
839
844
  # @!attribute [rw] display_name
840
- # The group’s display name value. The length limit is 1,024
845
+ # The display name value for the group. The length limit is 1,024
841
846
  # characters. This value can consist of letters, accented characters,
842
847
  # symbols, numbers, punctuation, tab, new line, carriage return,
843
848
  # space, and nonbreaking space in this attribute. This value is
@@ -943,8 +948,7 @@ module Aws::IdentityStore
943
948
  # @return [String]
944
949
  #
945
950
  # @!attribute [rw] retry_after_seconds
946
- # The number of seconds that you would like to wait before retrying
947
- # the next request.
951
+ # The number of seconds to wait before retrying the next request.
948
952
  # @return [Integer]
949
953
  #
950
954
  # @see http://docs.aws.amazon.com/goto/WebAPI/identitystore-2020-06-15/InternalServerException AWS API Documentation
@@ -1392,8 +1396,7 @@ module Aws::IdentityStore
1392
1396
  # @return [String]
1393
1397
  #
1394
1398
  # @!attribute [rw] retry_after_seconds
1395
- # The number of seconds that you would like to wait before retrying
1396
- # the next request.
1399
+ # The number of seconds to wait before retrying the next request.
1397
1400
  # @return [Integer]
1398
1401
  #
1399
1402
  # @see http://docs.aws.amazon.com/goto/WebAPI/identitystore-2020-06-15/ThrottlingException AWS API Documentation
@@ -1481,8 +1484,8 @@ module Aws::IdentityStore
1481
1484
  #
1482
1485
  class UpdateUserResponse < Aws::EmptyStructure; end
1483
1486
 
1484
- # A user object that contains a specified user’s metadata and
1485
- # attributes.
1487
+ # A user object that contains the metadata and attributes for a
1488
+ # specified user.
1486
1489
  #
1487
1490
  # @!attribute [rw] user_name
1488
1491
  # A unique string used to identify the user. The length limit is 128
@@ -1502,12 +1505,12 @@ module Aws::IdentityStore
1502
1505
  # @return [Array<Types::ExternalId>]
1503
1506
  #
1504
1507
  # @!attribute [rw] name
1505
- # An object containing the user's name.
1508
+ # An object containing the name of the user.
1506
1509
  # @return [Types::Name]
1507
1510
  #
1508
1511
  # @!attribute [rw] display_name
1509
- # A string containing the user's name that's formatted for display
1510
- # when the user is referenced. For example, "John Doe."
1512
+ # A string containing the name of the user that is formatted for
1513
+ # display when the user is referenced. For example, "John Doe."
1511
1514
  # @return [String]
1512
1515
  #
1513
1516
  # @!attribute [rw] nick_name
@@ -1515,7 +1518,7 @@ module Aws::IdentityStore
1515
1518
  # @return [String]
1516
1519
  #
1517
1520
  # @!attribute [rw] profile_url
1518
- # A string containing a URL that may be associated with the user.
1521
+ # A string containing a URL that might be associated with the user.
1519
1522
  # @return [String]
1520
1523
  #
1521
1524
  # @!attribute [rw] emails
@@ -1534,13 +1537,13 @@ module Aws::IdentityStore
1534
1537
  # @return [Array<Types::PhoneNumber>]
1535
1538
  #
1536
1539
  # @!attribute [rw] user_type
1537
- # A string indicating the user's type. Possible values depend on each
1538
- # customer's specific needs, so they are left unspecified.
1540
+ # A string indicating the type of user. Possible values are left
1541
+ # unspecified. The value can vary based on your specific use case.
1539
1542
  # @return [String]
1540
1543
  #
1541
1544
  # @!attribute [rw] title
1542
- # A string containing the user's title. Possible values depend on
1543
- # each customer's specific needs, so they are left unspecified.
1545
+ # A string containing the title of the user. Possible values are left
1546
+ # unspecified. The value can vary based on your specific use case.
1544
1547
  # @return [String]
1545
1548
  #
1546
1549
  # @!attribute [rw] preferred_language
@@ -1549,11 +1552,11 @@ module Aws::IdentityStore
1549
1552
  # @return [String]
1550
1553
  #
1551
1554
  # @!attribute [rw] locale
1552
- # A string containing the user's geographical region or location.
1555
+ # A string containing the geographical region or location of the user.
1553
1556
  # @return [String]
1554
1557
  #
1555
1558
  # @!attribute [rw] timezone
1556
- # A string containing the user's time zone.
1559
+ # A string containing the time zone of the user.
1557
1560
  # @return [String]
1558
1561
  #
1559
1562
  # @!attribute [rw] identity_store_id
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-identitystore/customizations'
52
52
  # @!group service
53
53
  module Aws::IdentityStore
54
54
 
55
- GEM_VERSION = '1.23.0'
55
+ GEM_VERSION = '1.25.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-identitystore
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.23.0
4
+ version: 1.25.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-01-18 00:00:00.000000000 Z
11
+ date: 2023-05-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.165.0
22
+ version: 3.174.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.165.0
32
+ version: 3.174.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement