aws-sdk-connect 1.130.0 → 1.131.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: ea0017a55ed2e3aaace982671f7b021bba3ce1382da6500a4031f91673593ba8
4
- data.tar.gz: 031742ed5742c7a2173bc5f35aa14feb6d190175aa2f0ef6773d660418a51c06
3
+ metadata.gz: 84abdb694f528ac8e7499c712dd49b82e8d3de43ec1ea76f335045998a592d75
4
+ data.tar.gz: 99ee9201f2396bab87c86163fdeb5606bb32edf666e4237685629e09c6ac0277
5
5
  SHA512:
6
- metadata.gz: 323c2323d8f42ef79d96d57b79dc146b1006c726bb4bb8ae360a7038707ca1d859f1e53fd556925cfb9f0fb26c1bf3d09707a10e0139d17f202473da5e87c337
7
- data.tar.gz: 32e7852c07d1ef57a84282d5befe452e86d4295ceb0e4734c3570391c9c95d709ac2f75dd98618acfb3eb2ea714ae2ddb42f353b7f879958dab7ed569abb7ac0
6
+ metadata.gz: 8d8730875db28cd95c3790d0c6c7d23f134da57c899375ad9905ff090009b17b7bc608814bd5be6a91e1f3708259a251addeca5d4794803449fd21ed7a4f39f9
7
+ data.tar.gz: c5c116b7f614f4ac0a0ecfe9b584d7d23e5a74e22513d2d7c9c2c0d999c2cab36a56d6c61724ec54ca8dedc4ed28ddcf2d79e78b9da54c3a3d9f7bb9c58fc361
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.131.0 (2023-10-30)
5
+ ------------------
6
+
7
+ * Feature - This release adds InstanceId field for phone number APIs.
8
+
4
9
  1.130.0 (2023-10-20)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.130.0
1
+ 1.131.0
@@ -959,9 +959,20 @@ module Aws::Connect
959
959
  # [4]: https://docs.aws.amazon.com/connect/latest/APIReference/API_DescribePhoneNumber.html
960
960
  # [5]: https://docs.aws.amazon.com/connect/latest/APIReference/API_ClaimPhoneNumber.html
961
961
  #
962
- # @option params [required, String] :target_arn
962
+ # @option params [String] :target_arn
963
963
  # The Amazon Resource Name (ARN) for Amazon Connect instances or traffic
964
- # distribution groups that phone numbers are claimed to.
964
+ # distribution groups that phone number inbound traffic is routed
965
+ # through. You must enter `InstanceId` or `TargetArn`.
966
+ #
967
+ # @option params [String] :instance_id
968
+ # The identifier of the Amazon Connect instance that phone numbers are
969
+ # claimed to. You can [find the instance ID][1] in the Amazon Resource
970
+ # Name (ARN) of the instance. You must enter `InstanceId` or
971
+ # `TargetArn`.
972
+ #
973
+ #
974
+ #
975
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
965
976
  #
966
977
  # @option params [required, String] :phone_number
967
978
  # The phone number you want to claim. Phone numbers are formatted `[+]
@@ -999,7 +1010,8 @@ module Aws::Connect
999
1010
  # @example Request syntax with placeholder values
1000
1011
  #
1001
1012
  # resp = client.claim_phone_number({
1002
- # target_arn: "ARN", # required
1013
+ # target_arn: "ARN",
1014
+ # instance_id: "InstanceId",
1003
1015
  # phone_number: "PhoneNumber", # required
1004
1016
  # phone_number_description: "PhoneNumberDescription",
1005
1017
  # tags: {
@@ -2130,7 +2142,7 @@ module Aws::Connect
2130
2142
  # This API is in preview release for Amazon Connect and is subject to
2131
2143
  # change.
2132
2144
  #
2133
- # A list of third party applications that the security profile will give
2145
+ # A list of third-party applications that the security profile will give
2134
2146
  # access to.
2135
2147
  #
2136
2148
  # @return [Types::CreateSecurityProfileResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
@@ -4215,6 +4227,7 @@ module Aws::Connect
4215
4227
  # resp.claimed_phone_number_summary.phone_number_type #=> String, one of "TOLL_FREE", "DID", "UIFN", "SHARED", "THIRD_PARTY_TF", "THIRD_PARTY_DID"
4216
4228
  # resp.claimed_phone_number_summary.phone_number_description #=> String
4217
4229
  # resp.claimed_phone_number_summary.target_arn #=> String
4230
+ # resp.claimed_phone_number_summary.instance_id #=> String
4218
4231
  # resp.claimed_phone_number_summary.tags #=> Hash
4219
4232
  # resp.claimed_phone_number_summary.tags["TagKey"] #=> String
4220
4233
  # resp.claimed_phone_number_summary.phone_number_status.status #=> String, one of "CLAIMED", "IN_PROGRESS", "FAILED"
@@ -7945,10 +7958,23 @@ module Aws::Connect
7945
7958
  #
7946
7959
  # @option params [String] :target_arn
7947
7960
  # The Amazon Resource Name (ARN) for Amazon Connect instances or traffic
7948
- # distribution groups that phone numbers are claimed to. If `TargetArn`
7949
- # input is not provided, this API lists numbers claimed to all the
7950
- # Amazon Connect instances belonging to your account in the same Amazon
7951
- # Web Services Region as the request.
7961
+ # distribution groups that phone number inbound traffic is routed
7962
+ # through. If both `TargetArn` and `InstanceId` input are not provided,
7963
+ # this API lists numbers claimed to all the Amazon Connect instances
7964
+ # belonging to your account in the same Amazon Web Services Region as
7965
+ # the request.
7966
+ #
7967
+ # @option params [String] :instance_id
7968
+ # The identifier of the Amazon Connect instance that phone numbers are
7969
+ # claimed to. You can [find the instance ID][1] in the Amazon Resource
7970
+ # Name (ARN) of the instance. If both `TargetArn` and `InstanceId` are
7971
+ # not provided, this API lists numbers claimed to all the Amazon Connect
7972
+ # instances belonging to your account in the same AWS Region as the
7973
+ # request.
7974
+ #
7975
+ #
7976
+ #
7977
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
7952
7978
  #
7953
7979
  # @option params [Integer] :max_results
7954
7980
  # The maximum number of results to return per page.
@@ -7979,6 +8005,7 @@ module Aws::Connect
7979
8005
  #
7980
8006
  # resp = client.list_phone_numbers_v2({
7981
8007
  # target_arn: "ARN",
8008
+ # instance_id: "InstanceId",
7982
8009
  # max_results: 1,
7983
8010
  # next_token: "LargeNextToken",
7984
8011
  # phone_number_country_codes: ["AF"], # accepts AF, AL, DZ, AS, AD, AO, AI, AQ, AG, AR, AM, AW, AU, AT, AZ, BS, BH, BD, BB, BY, BE, BZ, BJ, BM, BT, BO, BA, BW, BR, IO, VG, BN, BG, BF, BI, KH, CM, CA, CV, KY, CF, TD, CL, CN, CX, CC, CO, KM, CK, CR, HR, CU, CW, CY, CZ, CD, DK, DJ, DM, DO, TL, EC, EG, SV, GQ, ER, EE, ET, FK, FO, FJ, FI, FR, PF, GA, GM, GE, DE, GH, GI, GR, GL, GD, GU, GT, GG, GN, GW, GY, HT, HN, HK, HU, IS, IN, ID, IR, IQ, IE, IM, IL, IT, CI, JM, JP, JE, JO, KZ, KE, KI, KW, KG, LA, LV, LB, LS, LR, LY, LI, LT, LU, MO, MK, MG, MW, MY, MV, ML, MT, MH, MR, MU, YT, MX, FM, MD, MC, MN, ME, MS, MA, MZ, MM, NA, NR, NP, NL, AN, NC, NZ, NI, NE, NG, NU, KP, MP, NO, OM, PK, PW, PA, PG, PY, PE, PH, PN, PL, PT, PR, QA, CG, RE, RO, RU, RW, BL, SH, KN, LC, MF, PM, VC, WS, SM, ST, SA, SN, RS, SC, SL, SG, SX, SK, SI, SB, SO, ZA, KR, ES, LK, SD, SR, SJ, SZ, SE, CH, SY, TW, TJ, TZ, TH, TG, TK, TO, TT, TN, TR, TM, TC, TV, VI, UG, UA, AE, GB, US, UY, UZ, VU, VA, VE, VN, WF, EH, YE, ZM, ZW
@@ -7996,6 +8023,7 @@ module Aws::Connect
7996
8023
  # resp.list_phone_numbers_summary_list[0].phone_number_country_code #=> String, one of "AF", "AL", "DZ", "AS", "AD", "AO", "AI", "AQ", "AG", "AR", "AM", "AW", "AU", "AT", "AZ", "BS", "BH", "BD", "BB", "BY", "BE", "BZ", "BJ", "BM", "BT", "BO", "BA", "BW", "BR", "IO", "VG", "BN", "BG", "BF", "BI", "KH", "CM", "CA", "CV", "KY", "CF", "TD", "CL", "CN", "CX", "CC", "CO", "KM", "CK", "CR", "HR", "CU", "CW", "CY", "CZ", "CD", "DK", "DJ", "DM", "DO", "TL", "EC", "EG", "SV", "GQ", "ER", "EE", "ET", "FK", "FO", "FJ", "FI", "FR", "PF", "GA", "GM", "GE", "DE", "GH", "GI", "GR", "GL", "GD", "GU", "GT", "GG", "GN", "GW", "GY", "HT", "HN", "HK", "HU", "IS", "IN", "ID", "IR", "IQ", "IE", "IM", "IL", "IT", "CI", "JM", "JP", "JE", "JO", "KZ", "KE", "KI", "KW", "KG", "LA", "LV", "LB", "LS", "LR", "LY", "LI", "LT", "LU", "MO", "MK", "MG", "MW", "MY", "MV", "ML", "MT", "MH", "MR", "MU", "YT", "MX", "FM", "MD", "MC", "MN", "ME", "MS", "MA", "MZ", "MM", "NA", "NR", "NP", "NL", "AN", "NC", "NZ", "NI", "NE", "NG", "NU", "KP", "MP", "NO", "OM", "PK", "PW", "PA", "PG", "PY", "PE", "PH", "PN", "PL", "PT", "PR", "QA", "CG", "RE", "RO", "RU", "RW", "BL", "SH", "KN", "LC", "MF", "PM", "VC", "WS", "SM", "ST", "SA", "SN", "RS", "SC", "SL", "SG", "SX", "SK", "SI", "SB", "SO", "ZA", "KR", "ES", "LK", "SD", "SR", "SJ", "SZ", "SE", "CH", "SY", "TW", "TJ", "TZ", "TH", "TG", "TK", "TO", "TT", "TN", "TR", "TM", "TC", "TV", "VI", "UG", "UA", "AE", "GB", "US", "UY", "UZ", "VU", "VA", "VE", "VN", "WF", "EH", "YE", "ZM", "ZW"
7997
8024
  # resp.list_phone_numbers_summary_list[0].phone_number_type #=> String, one of "TOLL_FREE", "DID", "UIFN", "SHARED", "THIRD_PARTY_TF", "THIRD_PARTY_DID"
7998
8025
  # resp.list_phone_numbers_summary_list[0].target_arn #=> String
8026
+ # resp.list_phone_numbers_summary_list[0].instance_id #=> String
7999
8027
  #
8000
8028
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListPhoneNumbersV2 AWS API Documentation
8001
8029
  #
@@ -8478,19 +8506,24 @@ module Aws::Connect
8478
8506
  req.send_request(options)
8479
8507
  end
8480
8508
 
8481
- # Returns a list of third party applications in a specific security
8509
+ # Returns a list of third-party applications in a specific security
8482
8510
  # profile.
8483
8511
  #
8484
8512
  # @option params [required, String] :security_profile_id
8485
- # The security profile identifier.
8513
+ # The identifier for the security profle.
8486
8514
  #
8487
8515
  # @option params [required, String] :instance_id
8488
- # The instance identifier.
8516
+ # The identifier of the Amazon Connect instance. You can [find the
8517
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
8518
+ #
8519
+ #
8520
+ #
8521
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
8489
8522
  #
8490
8523
  # @option params [String] :next_token
8491
- # The token for the next set of results. The next set of results can be
8492
- # retrieved by using the token value returned in the previous response
8493
- # when making the next request.
8524
+ # The token for the next set of results. Use the value returned in the
8525
+ # previous response in the next request to retrieve the next set of
8526
+ # results.
8494
8527
  #
8495
8528
  # @option params [Integer] :max_results
8496
8529
  # The maximum number of results to return per page.
@@ -9370,8 +9403,10 @@ module Aws::Connect
9370
9403
  end
9371
9404
 
9372
9405
  # When a contact is being recorded, and the recording has been suspended
9373
- # using SuspendContactRecording, this API resumes recording the call or
9374
- # screen.
9406
+ # using SuspendContactRecording, this API resumes recording whatever
9407
+ # recording is selected in the flow configuration: call, screen, or
9408
+ # both. If only call recording or only screen recording is enabled, then
9409
+ # it would resume.
9375
9410
  #
9376
9411
  # Voice and screen recordings are supported.
9377
9412
  #
@@ -9415,9 +9450,20 @@ module Aws::Connect
9415
9450
  # both Amazon Web Services Regions associated with the traffic
9416
9451
  # distribution group.
9417
9452
  #
9418
- # @option params [required, String] :target_arn
9453
+ # @option params [String] :target_arn
9419
9454
  # The Amazon Resource Name (ARN) for Amazon Connect instances or traffic
9420
- # distribution groups that phone numbers are claimed to.
9455
+ # distribution groups that phone number inbound traffic is routed
9456
+ # through. You must enter `InstanceId` or `TargetArn`.
9457
+ #
9458
+ # @option params [String] :instance_id
9459
+ # The identifier of the Amazon Connect instance that phone numbers are
9460
+ # claimed to. You can [find the instance ID][1] in the Amazon Resource
9461
+ # Name (ARN) of the instance. You must enter `InstanceId` or
9462
+ # `TargetArn`.
9463
+ #
9464
+ #
9465
+ #
9466
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
9421
9467
  #
9422
9468
  # @option params [required, String] :phone_number_country_code
9423
9469
  # The ISO country code.
@@ -9447,7 +9493,8 @@ module Aws::Connect
9447
9493
  # @example Request syntax with placeholder values
9448
9494
  #
9449
9495
  # resp = client.search_available_phone_numbers({
9450
- # target_arn: "ARN", # required
9496
+ # target_arn: "ARN",
9497
+ # instance_id: "InstanceId",
9451
9498
  # phone_number_country_code: "AF", # required, accepts AF, AL, DZ, AS, AD, AO, AI, AQ, AG, AR, AM, AW, AU, AT, AZ, BS, BH, BD, BB, BY, BE, BZ, BJ, BM, BT, BO, BA, BW, BR, IO, VG, BN, BG, BF, BI, KH, CM, CA, CV, KY, CF, TD, CL, CN, CX, CC, CO, KM, CK, CR, HR, CU, CW, CY, CZ, CD, DK, DJ, DM, DO, TL, EC, EG, SV, GQ, ER, EE, ET, FK, FO, FJ, FI, FR, PF, GA, GM, GE, DE, GH, GI, GR, GL, GD, GU, GT, GG, GN, GW, GY, HT, HN, HK, HU, IS, IN, ID, IR, IQ, IE, IM, IL, IT, CI, JM, JP, JE, JO, KZ, KE, KI, KW, KG, LA, LV, LB, LS, LR, LY, LI, LT, LU, MO, MK, MG, MW, MY, MV, ML, MT, MH, MR, MU, YT, MX, FM, MD, MC, MN, ME, MS, MA, MZ, MM, NA, NR, NP, NL, AN, NC, NZ, NI, NE, NG, NU, KP, MP, NO, OM, PK, PW, PA, PG, PY, PE, PH, PN, PL, PT, PR, QA, CG, RE, RO, RU, RW, BL, SH, KN, LC, MF, PM, VC, WS, SM, ST, SA, SN, RS, SC, SL, SG, SX, SK, SI, SB, SO, ZA, KR, ES, LK, SD, SR, SJ, SZ, SE, CH, SY, TW, TJ, TZ, TH, TG, TK, TO, TT, TN, TR, TM, TC, TV, VI, UG, UA, AE, GB, US, UY, UZ, VU, VA, VE, VN, WF, EH, YE, ZM, ZW
9452
9499
  # phone_number_type: "TOLL_FREE", # required, accepts TOLL_FREE, DID, UIFN, SHARED, THIRD_PARTY_TF, THIRD_PARTY_DID
9453
9500
  # phone_number_prefix: "PhoneNumberPrefix",
@@ -11281,10 +11328,12 @@ module Aws::Connect
11281
11328
  req.send_request(options)
11282
11329
  end
11283
11330
 
11284
- # When a contact is being recorded, this API suspends recording the call
11285
- # or screen. For example, you might suspend the call or screen recording
11286
- # while collecting sensitive information, such as a credit card number.
11287
- # Then use ResumeContactRecording to restart recording.
11331
+ # When a contact is being recorded, this API suspends recording whatever
11332
+ # is selected in the flow configuration: call, screen, or both. If only
11333
+ # call recording or only screen recording is enabled, then it would be
11334
+ # suspended. For example, you might suspend the screen recording while
11335
+ # collecting sensitive information, such as a credit card number. Then
11336
+ # use ResumeContactRecording to restart recording the screen.
11288
11337
  #
11289
11338
  # The period of time that the recording is suspended is filled with
11290
11339
  # silence in the final recording.
@@ -12380,9 +12429,20 @@ module Aws::Connect
12380
12429
  # @option params [required, String] :phone_number_id
12381
12430
  # A unique identifier for the phone number.
12382
12431
  #
12383
- # @option params [required, String] :target_arn
12432
+ # @option params [String] :target_arn
12384
12433
  # The Amazon Resource Name (ARN) for Amazon Connect instances or traffic
12385
- # distribution groups that phone numbers are claimed to.
12434
+ # distribution groups that phone number inbound traffic is routed
12435
+ # through. You must enter `InstanceId` or `TargetArn`.
12436
+ #
12437
+ # @option params [String] :instance_id
12438
+ # The identifier of the Amazon Connect instance that phone numbers are
12439
+ # claimed to. You can [find the instance ID][1] in the Amazon Resource
12440
+ # Name (ARN) of the instance. You must enter `InstanceId` or
12441
+ # `TargetArn`.
12442
+ #
12443
+ #
12444
+ #
12445
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
12386
12446
  #
12387
12447
  # @option params [String] :client_token
12388
12448
  # A unique, case-sensitive identifier that you provide to ensure the
@@ -12406,7 +12466,8 @@ module Aws::Connect
12406
12466
  #
12407
12467
  # resp = client.update_phone_number({
12408
12468
  # phone_number_id: "PhoneNumberId", # required
12409
- # target_arn: "ARN", # required
12469
+ # target_arn: "ARN",
12470
+ # instance_id: "InstanceId",
12410
12471
  # client_token: "ClientToken",
12411
12472
  # })
12412
12473
  #
@@ -13172,7 +13233,7 @@ module Aws::Connect
13172
13233
  # This API is in preview release for Amazon Connect and is subject to
13173
13234
  # change.
13174
13235
  #
13175
- # A list of the third party application's metadata.
13236
+ # A list of the third-party application's metadata.
13176
13237
  #
13177
13238
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
13178
13239
  #
@@ -13830,7 +13891,7 @@ module Aws::Connect
13830
13891
  params: params,
13831
13892
  config: config)
13832
13893
  context[:gem_name] = 'aws-sdk-connect'
13833
- context[:gem_version] = '1.130.0'
13894
+ context[:gem_version] = '1.131.0'
13834
13895
  Seahorse::Client::Request.new(handlers, context)
13835
13896
  end
13836
13897
 
@@ -1191,7 +1191,8 @@ module Aws::Connect
1191
1191
  ChatStreamingConfiguration.add_member(:streaming_endpoint_arn, Shapes::ShapeRef.new(shape: ChatStreamingEndpointARN, required: true, location_name: "StreamingEndpointArn"))
1192
1192
  ChatStreamingConfiguration.struct_class = Types::ChatStreamingConfiguration
1193
1193
 
1194
- ClaimPhoneNumberRequest.add_member(:target_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "TargetArn"))
1194
+ ClaimPhoneNumberRequest.add_member(:target_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "TargetArn"))
1195
+ ClaimPhoneNumberRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, location_name: "InstanceId"))
1195
1196
  ClaimPhoneNumberRequest.add_member(:phone_number, Shapes::ShapeRef.new(shape: PhoneNumber, required: true, location_name: "PhoneNumber"))
1196
1197
  ClaimPhoneNumberRequest.add_member(:phone_number_description, Shapes::ShapeRef.new(shape: PhoneNumberDescription, location_name: "PhoneNumberDescription"))
1197
1198
  ClaimPhoneNumberRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
@@ -1209,6 +1210,7 @@ module Aws::Connect
1209
1210
  ClaimedPhoneNumberSummary.add_member(:phone_number_type, Shapes::ShapeRef.new(shape: PhoneNumberType, location_name: "PhoneNumberType"))
1210
1211
  ClaimedPhoneNumberSummary.add_member(:phone_number_description, Shapes::ShapeRef.new(shape: PhoneNumberDescription, location_name: "PhoneNumberDescription"))
1211
1212
  ClaimedPhoneNumberSummary.add_member(:target_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "TargetArn"))
1213
+ ClaimedPhoneNumberSummary.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, location_name: "InstanceId"))
1212
1214
  ClaimedPhoneNumberSummary.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
1213
1215
  ClaimedPhoneNumberSummary.add_member(:phone_number_status, Shapes::ShapeRef.new(shape: PhoneNumberStatus, location_name: "PhoneNumberStatus"))
1214
1216
  ClaimedPhoneNumberSummary.struct_class = Types::ClaimedPhoneNumberSummary
@@ -2695,11 +2697,13 @@ module Aws::Connect
2695
2697
  ListPhoneNumbersSummary.add_member(:phone_number_country_code, Shapes::ShapeRef.new(shape: PhoneNumberCountryCode, location_name: "PhoneNumberCountryCode"))
2696
2698
  ListPhoneNumbersSummary.add_member(:phone_number_type, Shapes::ShapeRef.new(shape: PhoneNumberType, location_name: "PhoneNumberType"))
2697
2699
  ListPhoneNumbersSummary.add_member(:target_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "TargetArn"))
2700
+ ListPhoneNumbersSummary.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, location_name: "InstanceId"))
2698
2701
  ListPhoneNumbersSummary.struct_class = Types::ListPhoneNumbersSummary
2699
2702
 
2700
2703
  ListPhoneNumbersSummaryList.member = Shapes::ShapeRef.new(shape: ListPhoneNumbersSummary)
2701
2704
 
2702
2705
  ListPhoneNumbersV2Request.add_member(:target_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "TargetArn"))
2706
+ ListPhoneNumbersV2Request.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, location_name: "InstanceId"))
2703
2707
  ListPhoneNumbersV2Request.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResult1000, location_name: "MaxResults", metadata: {"box"=>true}))
2704
2708
  ListPhoneNumbersV2Request.add_member(:next_token, Shapes::ShapeRef.new(shape: LargeNextToken, location_name: "NextToken"))
2705
2709
  ListPhoneNumbersV2Request.add_member(:phone_number_country_codes, Shapes::ShapeRef.new(shape: PhoneNumberCountryCodes, location_name: "PhoneNumberCountryCodes"))
@@ -3342,7 +3346,8 @@ module Aws::Connect
3342
3346
  S3Config.add_member(:encryption_config, Shapes::ShapeRef.new(shape: EncryptionConfig, location_name: "EncryptionConfig"))
3343
3347
  S3Config.struct_class = Types::S3Config
3344
3348
 
3345
- SearchAvailablePhoneNumbersRequest.add_member(:target_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "TargetArn"))
3349
+ SearchAvailablePhoneNumbersRequest.add_member(:target_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "TargetArn"))
3350
+ SearchAvailablePhoneNumbersRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, location_name: "InstanceId"))
3346
3351
  SearchAvailablePhoneNumbersRequest.add_member(:phone_number_country_code, Shapes::ShapeRef.new(shape: PhoneNumberCountryCode, required: true, location_name: "PhoneNumberCountryCode"))
3347
3352
  SearchAvailablePhoneNumbersRequest.add_member(:phone_number_type, Shapes::ShapeRef.new(shape: PhoneNumberType, required: true, location_name: "PhoneNumberType"))
3348
3353
  SearchAvailablePhoneNumbersRequest.add_member(:phone_number_prefix, Shapes::ShapeRef.new(shape: PhoneNumberPrefix, location_name: "PhoneNumberPrefix"))
@@ -3927,7 +3932,8 @@ module Aws::Connect
3927
3932
  UpdatePhoneNumberMetadataRequest.struct_class = Types::UpdatePhoneNumberMetadataRequest
3928
3933
 
3929
3934
  UpdatePhoneNumberRequest.add_member(:phone_number_id, Shapes::ShapeRef.new(shape: PhoneNumberId, required: true, location: "uri", location_name: "PhoneNumberId"))
3930
- UpdatePhoneNumberRequest.add_member(:target_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "TargetArn"))
3935
+ UpdatePhoneNumberRequest.add_member(:target_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "TargetArn"))
3936
+ UpdatePhoneNumberRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, location_name: "InstanceId"))
3931
3937
  UpdatePhoneNumberRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
3932
3938
  UpdatePhoneNumberRequest.struct_class = Types::UpdatePhoneNumberRequest
3933
3939
 
@@ -302,7 +302,7 @@ module Aws::Connect
302
302
  # This API is in preview release for Amazon Connect and is subject to
303
303
  # change.
304
304
  #
305
- # A third party application's metadata.
305
+ # A third-party application's metadata.
306
306
  #
307
307
  # @!attribute [rw] namespace
308
308
  # Namespace of the application that you want to give access to.
@@ -793,7 +793,19 @@ module Aws::Connect
793
793
 
794
794
  # @!attribute [rw] target_arn
795
795
  # The Amazon Resource Name (ARN) for Amazon Connect instances or
796
- # traffic distribution groups that phone numbers are claimed to.
796
+ # traffic distribution groups that phone number inbound traffic is
797
+ # routed through. You must enter `InstanceId` or `TargetArn`.
798
+ # @return [String]
799
+ #
800
+ # @!attribute [rw] instance_id
801
+ # The identifier of the Amazon Connect instance that phone numbers are
802
+ # claimed to. You can [find the instance ID][1] in the Amazon Resource
803
+ # Name (ARN) of the instance. You must enter `InstanceId` or
804
+ # `TargetArn`.
805
+ #
806
+ #
807
+ #
808
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
797
809
  # @return [String]
798
810
  #
799
811
  # @!attribute [rw] phone_number
@@ -832,6 +844,7 @@ module Aws::Connect
832
844
  #
833
845
  class ClaimPhoneNumberRequest < Struct.new(
834
846
  :target_arn,
847
+ :instance_id,
835
848
  :phone_number,
836
849
  :phone_number_description,
837
850
  :tags,
@@ -887,7 +900,18 @@ module Aws::Connect
887
900
  #
888
901
  # @!attribute [rw] target_arn
889
902
  # The Amazon Resource Name (ARN) for Amazon Connect instances or
890
- # traffic distribution groups that phone numbers are claimed to.
903
+ # traffic distribution groups that phone number inbound traffic is
904
+ # routed through.
905
+ # @return [String]
906
+ #
907
+ # @!attribute [rw] instance_id
908
+ # The identifier of the Amazon Connect instance that phone numbers are
909
+ # claimed to. You can [find the instance ID][1] in the Amazon Resource
910
+ # Name (ARN) of the instance.
911
+ #
912
+ #
913
+ #
914
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
891
915
  # @return [String]
892
916
  #
893
917
  # @!attribute [rw] tags
@@ -941,6 +965,7 @@ module Aws::Connect
941
965
  :phone_number_type,
942
966
  :phone_number_description,
943
967
  :target_arn,
968
+ :instance_id,
944
969
  :tags,
945
970
  :phone_number_status)
946
971
  SENSITIVE = []
@@ -2252,7 +2277,7 @@ module Aws::Connect
2252
2277
  # This API is in preview release for Amazon Connect and is subject to
2253
2278
  # change.
2254
2279
  #
2255
- # A list of third party applications that the security profile will
2280
+ # A list of third-party applications that the security profile will
2256
2281
  # give access to.
2257
2282
  # @return [Array<Types::Application>]
2258
2283
  #
@@ -9101,7 +9126,18 @@ module Aws::Connect
9101
9126
  #
9102
9127
  # @!attribute [rw] target_arn
9103
9128
  # The Amazon Resource Name (ARN) for Amazon Connect instances or
9104
- # traffic distribution groups that phone numbers are claimed to.
9129
+ # traffic distribution groups that phone number inbound traffic is
9130
+ # routed through.
9131
+ # @return [String]
9132
+ #
9133
+ # @!attribute [rw] instance_id
9134
+ # The identifier of the Amazon Connect instance that phone numbers are
9135
+ # claimed to. You can [find the instance ID][1] in the Amazon Resource
9136
+ # Name (ARN) of the instance.
9137
+ #
9138
+ #
9139
+ #
9140
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
9105
9141
  # @return [String]
9106
9142
  #
9107
9143
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListPhoneNumbersSummary AWS API Documentation
@@ -9112,17 +9148,32 @@ module Aws::Connect
9112
9148
  :phone_number,
9113
9149
  :phone_number_country_code,
9114
9150
  :phone_number_type,
9115
- :target_arn)
9151
+ :target_arn,
9152
+ :instance_id)
9116
9153
  SENSITIVE = []
9117
9154
  include Aws::Structure
9118
9155
  end
9119
9156
 
9120
9157
  # @!attribute [rw] target_arn
9121
9158
  # The Amazon Resource Name (ARN) for Amazon Connect instances or
9122
- # traffic distribution groups that phone numbers are claimed to. If
9123
- # `TargetArn` input is not provided, this API lists numbers claimed to
9124
- # all the Amazon Connect instances belonging to your account in the
9125
- # same Amazon Web Services Region as the request.
9159
+ # traffic distribution groups that phone number inbound traffic is
9160
+ # routed through. If both `TargetArn` and `InstanceId` input are not
9161
+ # provided, this API lists numbers claimed to all the Amazon Connect
9162
+ # instances belonging to your account in the same Amazon Web Services
9163
+ # Region as the request.
9164
+ # @return [String]
9165
+ #
9166
+ # @!attribute [rw] instance_id
9167
+ # The identifier of the Amazon Connect instance that phone numbers are
9168
+ # claimed to. You can [find the instance ID][1] in the Amazon Resource
9169
+ # Name (ARN) of the instance. If both `TargetArn` and `InstanceId` are
9170
+ # not provided, this API lists numbers claimed to all the Amazon
9171
+ # Connect instances belonging to your account in the same AWS Region
9172
+ # as the request.
9173
+ #
9174
+ #
9175
+ #
9176
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
9126
9177
  # @return [String]
9127
9178
  #
9128
9179
  # @!attribute [rw] max_results
@@ -9152,6 +9203,7 @@ module Aws::Connect
9152
9203
  #
9153
9204
  class ListPhoneNumbersV2Request < Struct.new(
9154
9205
  :target_arn,
9206
+ :instance_id,
9155
9207
  :max_results,
9156
9208
  :next_token,
9157
9209
  :phone_number_country_codes,
@@ -9591,17 +9643,22 @@ module Aws::Connect
9591
9643
  end
9592
9644
 
9593
9645
  # @!attribute [rw] security_profile_id
9594
- # The security profile identifier.
9646
+ # The identifier for the security profle.
9595
9647
  # @return [String]
9596
9648
  #
9597
9649
  # @!attribute [rw] instance_id
9598
- # The instance identifier.
9650
+ # The identifier of the Amazon Connect instance. You can [find the
9651
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
9652
+ #
9653
+ #
9654
+ #
9655
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
9599
9656
  # @return [String]
9600
9657
  #
9601
9658
  # @!attribute [rw] next_token
9602
- # The token for the next set of results. The next set of results can
9603
- # be retrieved by using the token value returned in the previous
9604
- # response when making the next request.
9659
+ # The token for the next set of results. Use the value returned in the
9660
+ # previous response in the next request to retrieve the next set of
9661
+ # results.
9605
9662
  # @return [String]
9606
9663
  #
9607
9664
  # @!attribute [rw] max_results
@@ -9623,13 +9680,12 @@ module Aws::Connect
9623
9680
  # This API is in preview release for Amazon Connect and is subject to
9624
9681
  # change.
9625
9682
  #
9626
- # A list of the third party application's metadata.
9683
+ # A list of the third-party application's metadata.
9627
9684
  # @return [Array<Types::Application>]
9628
9685
  #
9629
9686
  # @!attribute [rw] next_token
9630
- # The token for the next set of results. The next set of results can
9631
- # be retrieved by using the token value returned in the previous
9632
- # response when making the next request.
9687
+ # If there are additional results, this is the token for the next set
9688
+ # of results.
9633
9689
  # @return [String]
9634
9690
  #
9635
9691
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListSecurityProfileApplicationsResponse AWS API Documentation
@@ -12210,7 +12266,19 @@ module Aws::Connect
12210
12266
 
12211
12267
  # @!attribute [rw] target_arn
12212
12268
  # The Amazon Resource Name (ARN) for Amazon Connect instances or
12213
- # traffic distribution groups that phone numbers are claimed to.
12269
+ # traffic distribution groups that phone number inbound traffic is
12270
+ # routed through. You must enter `InstanceId` or `TargetArn`.
12271
+ # @return [String]
12272
+ #
12273
+ # @!attribute [rw] instance_id
12274
+ # The identifier of the Amazon Connect instance that phone numbers are
12275
+ # claimed to. You can [find the instance ID][1] in the Amazon Resource
12276
+ # Name (ARN) of the instance. You must enter `InstanceId` or
12277
+ # `TargetArn`.
12278
+ #
12279
+ #
12280
+ #
12281
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
12214
12282
  # @return [String]
12215
12283
  #
12216
12284
  # @!attribute [rw] phone_number_country_code
@@ -12240,6 +12308,7 @@ module Aws::Connect
12240
12308
  #
12241
12309
  class SearchAvailablePhoneNumbersRequest < Struct.new(
12242
12310
  :target_arn,
12311
+ :instance_id,
12243
12312
  :phone_number_country_code,
12244
12313
  :phone_number_type,
12245
12314
  :phone_number_prefix,
@@ -15264,7 +15333,19 @@ module Aws::Connect
15264
15333
  #
15265
15334
  # @!attribute [rw] target_arn
15266
15335
  # The Amazon Resource Name (ARN) for Amazon Connect instances or
15267
- # traffic distribution groups that phone numbers are claimed to.
15336
+ # traffic distribution groups that phone number inbound traffic is
15337
+ # routed through. You must enter `InstanceId` or `TargetArn`.
15338
+ # @return [String]
15339
+ #
15340
+ # @!attribute [rw] instance_id
15341
+ # The identifier of the Amazon Connect instance that phone numbers are
15342
+ # claimed to. You can [find the instance ID][1] in the Amazon Resource
15343
+ # Name (ARN) of the instance. You must enter `InstanceId` or
15344
+ # `TargetArn`.
15345
+ #
15346
+ #
15347
+ #
15348
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
15268
15349
  # @return [String]
15269
15350
  #
15270
15351
  # @!attribute [rw] client_token
@@ -15286,6 +15367,7 @@ module Aws::Connect
15286
15367
  class UpdatePhoneNumberRequest < Struct.new(
15287
15368
  :phone_number_id,
15288
15369
  :target_arn,
15370
+ :instance_id,
15289
15371
  :client_token)
15290
15372
  SENSITIVE = []
15291
15373
  include Aws::Structure
@@ -15794,7 +15876,7 @@ module Aws::Connect
15794
15876
  # This API is in preview release for Amazon Connect and is subject to
15795
15877
  # change.
15796
15878
  #
15797
- # A list of the third party application's metadata.
15879
+ # A list of the third-party application's metadata.
15798
15880
  # @return [Array<Types::Application>]
15799
15881
  #
15800
15882
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateSecurityProfileRequest AWS API Documentation
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-connect/customizations'
52
52
  # @!group service
53
53
  module Aws::Connect
54
54
 
55
- GEM_VERSION = '1.130.0'
55
+ GEM_VERSION = '1.131.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-connect
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.130.0
4
+ version: 1.131.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-10-20 00:00:00.000000000 Z
11
+ date: 2023-10-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core