aws-sdk-qbusiness 1.10.0 → 1.12.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: e2ebf67aec9aced06bb542aa065a21577ac1e2ace0fd1ffcb85c1b33a949f18c
4
- data.tar.gz: 0ce0a8298e818f9ae572332dded8c3c78b3ec20f7af6d54fe913dca1dd270d7b
3
+ metadata.gz: d9c0359f7faf73a13d9a6e28c643a22ae563e60324ed0e464036fbacac9fd4eb
4
+ data.tar.gz: 5826d1e0f94bbc0b257b88b1d6510247b61752c021d79f264a42e6092026590f
5
5
  SHA512:
6
- metadata.gz: e1031a7f4032ae803afc04a94394b2ab6d3b0ee22fd2456fba4ee11a718158abb9f78bd2aef10080b3b66c2b5600b523b4f3711d14e83958cdbf97afb6740dfe
7
- data.tar.gz: 4c28686e3cd2b26eedbebbc8979343cf17b716de619ec1ff1045a589d62909031b356a9bb58697a5b3934d9510b55c9ff67233c56a4476741a7829f5919d74b6
6
+ metadata.gz: f747cab2c1ac613f635f8e00f9e14863dd31385640c43eaa48394821aac4840c0e79712993806ab3df5a2dec7b96199f231e250b270e6943430af54821221458
7
+ data.tar.gz: 43c89628d1b1ea615b57b849d68ebeb7709407f81e5f463e9f59dd1a546bb9796f07a9f0c8502149cb165d789de673891eddd5cb663ebd0380aea877d796ac6a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.12.0 (2024-08-23)
5
+ ------------------
6
+
7
+ * Feature - Amazon QBusiness: Enable support for SAML and OIDC federation through AWS IAM Identity Provider integration.
8
+
9
+ 1.11.0 (2024-07-05)
10
+ ------------------
11
+
12
+ * Feature - Add personalization to Q Applications. Customers can enable or disable personalization when creating or updating a Q application with the personalization configuration.
13
+
4
14
  1.10.0 (2024-07-02)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.10.0
1
+ 1.12.0
@@ -580,7 +580,7 @@ module Aws::QBusiness
580
580
  http_response: Seahorse::Client::Http::AsyncResponse.new,
581
581
  config: config)
582
582
  context[:gem_name] = 'aws-sdk-qbusiness'
583
- context[:gem_version] = '1.10.0'
583
+ context[:gem_version] = '1.12.0'
584
584
  Seahorse::Client::Request.new(handlers, context)
585
585
  end
586
586
 
@@ -919,11 +919,21 @@ module Aws::QBusiness
919
919
  # The Amazon Resource Name (ARN) of an IAM role with permissions to
920
920
  # access your Amazon CloudWatch logs and metrics.
921
921
  #
922
+ # @option params [String] :identity_type
923
+ # The authentication type being used by a Amazon Q Business application.
924
+ #
925
+ # @option params [String] :iam_identity_provider_arn
926
+ # The Amazon Resource Name (ARN) of an identity provider being used by
927
+ # an Amazon Q Business application.
928
+ #
922
929
  # @option params [String] :identity_center_instance_arn
923
930
  # The Amazon Resource Name (ARN) of the IAM Identity Center instance you
924
931
  # are either creating for—or connecting to—your Amazon Q Business
925
932
  # application.
926
933
  #
934
+ # @option params [Array<String>] :client_ids_for_oidc
935
+ # The OIDC client ID for a Amazon Q Business application.
936
+ #
927
937
  # @option params [String] :description
928
938
  # A description for the Amazon Q Business application.
929
939
  #
@@ -952,6 +962,14 @@ module Aws::QBusiness
952
962
  # An option to allow end users to create and use Amazon Q Apps in the
953
963
  # web experience.
954
964
  #
965
+ # @option params [Types::PersonalizationConfiguration] :personalization_configuration
966
+ # Configuration information about chat response personalization. For
967
+ # more information, see [Personalizing chat responses][1]
968
+ #
969
+ #
970
+ #
971
+ # [1]: https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/personalizing-chat-responses.html
972
+ #
955
973
  # @return [Types::CreateApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
956
974
  #
957
975
  # * {Types::CreateApplicationResponse#application_id #application_id} => String
@@ -962,7 +980,10 @@ module Aws::QBusiness
962
980
  # resp = client.create_application({
963
981
  # display_name: "ApplicationName", # required
964
982
  # role_arn: "RoleArn",
983
+ # identity_type: "AWS_IAM_IDP_SAML", # accepts AWS_IAM_IDP_SAML, AWS_IAM_IDP_OIDC, AWS_IAM_IDC
984
+ # iam_identity_provider_arn: "IamIdentityProviderArn",
965
985
  # identity_center_instance_arn: "InstanceArn",
986
+ # client_ids_for_oidc: ["ClientIdForOIDC"],
966
987
  # description: "Description",
967
988
  # encryption_configuration: {
968
989
  # kms_key_id: "KmsKeyId",
@@ -980,6 +1001,9 @@ module Aws::QBusiness
980
1001
  # q_apps_configuration: {
981
1002
  # q_apps_control_mode: "ENABLED", # required, accepts ENABLED, DISABLED
982
1003
  # },
1004
+ # personalization_configuration: {
1005
+ # personalization_control_mode: "ENABLED", # required, accepts ENABLED, DISABLED
1006
+ # },
983
1007
  # })
984
1008
  #
985
1009
  # @example Response structure
@@ -1014,9 +1038,27 @@ module Aws::QBusiness
1014
1038
  # A name for the data source connector.
1015
1039
  #
1016
1040
  # @option params [required, Hash,Array,String,Numeric,Boolean] :configuration
1017
- # Configuration information to connect to your data source repository.
1018
- # For configuration templates for your specific data source, see
1019
- # [Supported connectors][1].
1041
+ # Configuration information to connect your data source repository to
1042
+ # Amazon Q Business. Use this parameter to provide a JSON schema with
1043
+ # configuration information specific to your data source connector.
1044
+ #
1045
+ # Each data source has a JSON schema provided by Amazon Q Business that
1046
+ # you must use. For example, the Amazon S3 and Web Crawler connectors
1047
+ # require the following JSON schemas:
1048
+ #
1049
+ # * [Amazon S3 JSON schema][1]
1050
+ #
1051
+ # * [Web Crawler JSON schema][2]
1052
+ #
1053
+ # You can find configuration templates for your specific data source
1054
+ # using the following steps:
1055
+ #
1056
+ # 1. Navigate to the [Supported connectors][3] page in the Amazon Q
1057
+ # Business User Guide, and select the data source of your choice.
1058
+ #
1059
+ # 2. Then, from your specific data source connector page, select
1060
+ # **Using the API**. You will find the JSON schema for your data
1061
+ # source, including parameter descriptions, in this section.
1020
1062
  #
1021
1063
  # Document type used to carry open content
1022
1064
  # (Hash,Array,String,Numeric,Boolean). A document type value is
@@ -1025,7 +1067,9 @@ module Aws::QBusiness
1025
1067
  #
1026
1068
  #
1027
1069
  #
1028
- # [1]: https://docs.aws.amazon.com/amazonq/latest/business-use-dg/connectors-list.html
1070
+ # [1]: https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/s3-api.html
1071
+ # [2]: https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/web-crawler-api.html
1072
+ # [3]: https://docs.aws.amazon.com/amazonq/latest/business-use-dg/connectors-list.html
1029
1073
  #
1030
1074
  # @option params [Types::DataSourceVpcConfiguration] :vpc_configuration
1031
1075
  # Configuration information for an Amazon VPC (Virtual Private Cloud) to
@@ -1526,6 +1570,13 @@ module Aws::QBusiness
1526
1570
  # The Amazon Resource Name (ARN) of the service role attached to your
1527
1571
  # web experience.
1528
1572
  #
1573
+ # <note markdown="1"> You must provide this value if you're using IAM Identity Center to
1574
+ # manage end user access to your application. If you're using legacy
1575
+ # identity management to manage user access, you don't need to provide
1576
+ # this value.
1577
+ #
1578
+ # </note>
1579
+ #
1529
1580
  # @option params [Array<Types::Tag>] :tags
1530
1581
  # A list of key-value pairs that identify or categorize your Amazon Q
1531
1582
  # Business web experience. You can also use tags to help control access
@@ -1540,6 +1591,10 @@ module Aws::QBusiness
1540
1591
  # **A suitable default value is auto-generated.** You should normally
1541
1592
  # not need to pass this option.**
1542
1593
  #
1594
+ # @option params [Types::IdentityProviderConfiguration] :identity_provider_configuration
1595
+ # Information about the identity provider (IdP) used to authenticate end
1596
+ # users of an Amazon Q Business web experience.
1597
+ #
1543
1598
  # @return [Types::CreateWebExperienceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1544
1599
  #
1545
1600
  # * {Types::CreateWebExperienceResponse#web_experience_id #web_experience_id} => String
@@ -1561,6 +1616,15 @@ module Aws::QBusiness
1561
1616
  # },
1562
1617
  # ],
1563
1618
  # client_token: "ClientToken",
1619
+ # identity_provider_configuration: {
1620
+ # saml_configuration: {
1621
+ # authentication_url: "SamlAuthenticationUrl", # required
1622
+ # },
1623
+ # open_id_connect_configuration: {
1624
+ # secrets_arn: "SecretArn", # required
1625
+ # secrets_role: "RoleArn", # required
1626
+ # },
1627
+ # },
1564
1628
  # })
1565
1629
  #
1566
1630
  # @example Response structure
@@ -1887,6 +1951,8 @@ module Aws::QBusiness
1887
1951
  # * {Types::GetApplicationResponse#display_name #display_name} => String
1888
1952
  # * {Types::GetApplicationResponse#application_id #application_id} => String
1889
1953
  # * {Types::GetApplicationResponse#application_arn #application_arn} => String
1954
+ # * {Types::GetApplicationResponse#identity_type #identity_type} => String
1955
+ # * {Types::GetApplicationResponse#iam_identity_provider_arn #iam_identity_provider_arn} => String
1890
1956
  # * {Types::GetApplicationResponse#identity_center_application_arn #identity_center_application_arn} => String
1891
1957
  # * {Types::GetApplicationResponse#role_arn #role_arn} => String
1892
1958
  # * {Types::GetApplicationResponse#status #status} => String
@@ -1897,6 +1963,9 @@ module Aws::QBusiness
1897
1963
  # * {Types::GetApplicationResponse#error #error} => Types::ErrorDetail
1898
1964
  # * {Types::GetApplicationResponse#attachments_configuration #attachments_configuration} => Types::AppliedAttachmentsConfiguration
1899
1965
  # * {Types::GetApplicationResponse#q_apps_configuration #q_apps_configuration} => Types::QAppsConfiguration
1966
+ # * {Types::GetApplicationResponse#personalization_configuration #personalization_configuration} => Types::PersonalizationConfiguration
1967
+ # * {Types::GetApplicationResponse#auto_subscription_configuration #auto_subscription_configuration} => Types::AutoSubscriptionConfiguration
1968
+ # * {Types::GetApplicationResponse#client_ids_for_oidc #client_ids_for_oidc} => Array&lt;String&gt;
1900
1969
  #
1901
1970
  # @example Request syntax with placeholder values
1902
1971
  #
@@ -1909,6 +1978,8 @@ module Aws::QBusiness
1909
1978
  # resp.display_name #=> String
1910
1979
  # resp.application_id #=> String
1911
1980
  # resp.application_arn #=> String
1981
+ # resp.identity_type #=> String, one of "AWS_IAM_IDP_SAML", "AWS_IAM_IDP_OIDC", "AWS_IAM_IDC"
1982
+ # resp.iam_identity_provider_arn #=> String
1912
1983
  # resp.identity_center_application_arn #=> String
1913
1984
  # resp.role_arn #=> String
1914
1985
  # resp.status #=> String, one of "CREATING", "ACTIVE", "DELETING", "FAILED", "UPDATING"
@@ -1920,6 +1991,11 @@ module Aws::QBusiness
1920
1991
  # resp.error.error_code #=> String, one of "InternalError", "InvalidRequest", "ResourceInactive", "ResourceNotFound"
1921
1992
  # resp.attachments_configuration.attachments_control_mode #=> String, one of "ENABLED", "DISABLED"
1922
1993
  # resp.q_apps_configuration.q_apps_control_mode #=> String, one of "ENABLED", "DISABLED"
1994
+ # resp.personalization_configuration.personalization_control_mode #=> String, one of "ENABLED", "DISABLED"
1995
+ # resp.auto_subscription_configuration.auto_subscribe #=> String, one of "ENABLED", "DISABLED"
1996
+ # resp.auto_subscription_configuration.default_subscription_type #=> String, one of "Q_LITE", "Q_BUSINESS"
1997
+ # resp.client_ids_for_oidc #=> Array
1998
+ # resp.client_ids_for_oidc[0] #=> String
1923
1999
  #
1924
2000
  # @see http://docs.aws.amazon.com/goto/WebAPI/qbusiness-2023-11-27/GetApplication AWS API Documentation
1925
2001
  #
@@ -2399,6 +2475,7 @@ module Aws::QBusiness
2399
2475
  # * {Types::GetWebExperienceResponse#welcome_message #welcome_message} => String
2400
2476
  # * {Types::GetWebExperienceResponse#sample_prompts_control_mode #sample_prompts_control_mode} => String
2401
2477
  # * {Types::GetWebExperienceResponse#role_arn #role_arn} => String
2478
+ # * {Types::GetWebExperienceResponse#identity_provider_configuration #identity_provider_configuration} => Types::IdentityProviderConfiguration
2402
2479
  # * {Types::GetWebExperienceResponse#authentication_configuration #authentication_configuration} => Types::WebExperienceAuthConfiguration
2403
2480
  # * {Types::GetWebExperienceResponse#error #error} => Types::ErrorDetail
2404
2481
  #
@@ -2423,6 +2500,9 @@ module Aws::QBusiness
2423
2500
  # resp.welcome_message #=> String
2424
2501
  # resp.sample_prompts_control_mode #=> String, one of "ENABLED", "DISABLED"
2425
2502
  # resp.role_arn #=> String
2503
+ # resp.identity_provider_configuration.saml_configuration.authentication_url #=> String
2504
+ # resp.identity_provider_configuration.open_id_connect_configuration.secrets_arn #=> String
2505
+ # resp.identity_provider_configuration.open_id_connect_configuration.secrets_role #=> String
2426
2506
  # resp.authentication_configuration.saml_configuration.metadata_xml #=> String
2427
2507
  # resp.authentication_configuration.saml_configuration.role_arn #=> String
2428
2508
  # resp.authentication_configuration.saml_configuration.user_id_attribute #=> String
@@ -2473,6 +2553,7 @@ module Aws::QBusiness
2473
2553
  # resp.applications[0].created_at #=> Time
2474
2554
  # resp.applications[0].updated_at #=> Time
2475
2555
  # resp.applications[0].status #=> String, one of "CREATING", "ACTIVE", "DELETING", "FAILED", "UPDATING"
2556
+ # resp.applications[0].identity_type #=> String, one of "AWS_IAM_IDP_SAML", "AWS_IAM_IDP_OIDC", "AWS_IAM_IDC"
2476
2557
  #
2477
2558
  # @see http://docs.aws.amazon.com/goto/WebAPI/qbusiness-2023-11-27/ListApplications AWS API Documentation
2478
2559
  #
@@ -3174,12 +3255,6 @@ module Aws::QBusiness
3174
3255
  # and the sub groups "Research", "Engineering", and "Sales and
3175
3256
  # Marketing".
3176
3257
  #
3177
- # If you have more than 1000 users and/or sub groups for a single group,
3178
- # you need to provide the path to the S3 file that lists your users and
3179
- # sub groups for a group. Your sub groups can contain more than 1000
3180
- # users, but the list of sub groups that belong to a group (and/or
3181
- # users) must be no more than 1000.
3182
- #
3183
3258
  # @option params [String] :data_source_id
3184
3259
  # The identifier of the data source for which you want to map users to
3185
3260
  # their groups. This is useful if a group is tied to multiple data
@@ -3398,6 +3473,19 @@ module Aws::QBusiness
3398
3473
  # An option to allow end users to create and use Amazon Q Apps in the
3399
3474
  # web experience.
3400
3475
  #
3476
+ # @option params [Types::PersonalizationConfiguration] :personalization_configuration
3477
+ # Configuration information about chat response personalization. For
3478
+ # more information, see [Personalizing chat responses][1].
3479
+ #
3480
+ #
3481
+ #
3482
+ # [1]: https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/personalizing-chat-responses.html
3483
+ #
3484
+ # @option params [Types::AutoSubscriptionConfiguration] :auto_subscription_configuration
3485
+ # An option to enable updating the default subscription type assigned to
3486
+ # an Amazon Q Business application using IAM identity federation for
3487
+ # user management.
3488
+ #
3401
3489
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
3402
3490
  #
3403
3491
  # @example Request syntax with placeholder values
@@ -3414,6 +3502,13 @@ module Aws::QBusiness
3414
3502
  # q_apps_configuration: {
3415
3503
  # q_apps_control_mode: "ENABLED", # required, accepts ENABLED, DISABLED
3416
3504
  # },
3505
+ # personalization_configuration: {
3506
+ # personalization_control_mode: "ENABLED", # required, accepts ENABLED, DISABLED
3507
+ # },
3508
+ # auto_subscription_configuration: {
3509
+ # auto_subscribe: "ENABLED", # required, accepts ENABLED, DISABLED
3510
+ # default_subscription_type: "Q_LITE", # accepts Q_LITE, Q_BUSINESS
3511
+ # },
3417
3512
  # })
3418
3513
  #
3419
3514
  # @see http://docs.aws.amazon.com/goto/WebAPI/qbusiness-2023-11-27/UpdateApplication AWS API Documentation
@@ -3976,6 +4071,10 @@ module Aws::QBusiness
3976
4071
  # Determines whether sample prompts are enabled in the web experience
3977
4072
  # for an end user.
3978
4073
  #
4074
+ # @option params [Types::IdentityProviderConfiguration] :identity_provider_configuration
4075
+ # Information about the identity provider (IdP) used to authenticate end
4076
+ # users of an Amazon Q Business web experience.
4077
+ #
3979
4078
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
3980
4079
  #
3981
4080
  # @example Request syntax with placeholder values
@@ -3996,6 +4095,15 @@ module Aws::QBusiness
3996
4095
  # subtitle: "WebExperienceSubtitle",
3997
4096
  # welcome_message: "WebExperienceWelcomeMessage",
3998
4097
  # sample_prompts_control_mode: "ENABLED", # accepts ENABLED, DISABLED
4098
+ # identity_provider_configuration: {
4099
+ # saml_configuration: {
4100
+ # authentication_url: "SamlAuthenticationUrl", # required
4101
+ # },
4102
+ # open_id_connect_configuration: {
4103
+ # secrets_arn: "SecretArn", # required
4104
+ # secrets_role: "RoleArn", # required
4105
+ # },
4106
+ # },
3999
4107
  # })
4000
4108
  #
4001
4109
  # @see http://docs.aws.amazon.com/goto/WebAPI/qbusiness-2023-11-27/UpdateWebExperience AWS API Documentation
@@ -4020,7 +4128,7 @@ module Aws::QBusiness
4020
4128
  params: params,
4021
4129
  config: config)
4022
4130
  context[:gem_name] = 'aws-sdk-qbusiness'
4023
- context[:gem_version] = '1.10.0'
4131
+ context[:gem_version] = '1.12.0'
4024
4132
  Seahorse::Client::Request.new(handlers, context)
4025
4133
  end
4026
4134
 
@@ -62,6 +62,8 @@ module Aws::QBusiness
62
62
  AuthResponseKey = Shapes::StringShape.new(name: 'AuthResponseKey')
63
63
  AuthResponseValue = Shapes::StringShape.new(name: 'AuthResponseValue')
64
64
  AuthorizationResponseMap = Shapes::MapShape.new(name: 'AuthorizationResponseMap')
65
+ AutoSubscriptionConfiguration = Shapes::StructureShape.new(name: 'AutoSubscriptionConfiguration')
66
+ AutoSubscriptionStatus = Shapes::StringShape.new(name: 'AutoSubscriptionStatus')
65
67
  BasicAuthConfiguration = Shapes::StructureShape.new(name: 'BasicAuthConfiguration')
66
68
  BatchDeleteDocumentRequest = Shapes::StructureShape.new(name: 'BatchDeleteDocumentRequest')
67
69
  BatchDeleteDocumentResponse = Shapes::StructureShape.new(name: 'BatchDeleteDocumentResponse')
@@ -82,6 +84,8 @@ module Aws::QBusiness
82
84
  ChatOutputStream = Shapes::StructureShape.new(name: 'ChatOutputStream')
83
85
  ChatSyncInput = Shapes::StructureShape.new(name: 'ChatSyncInput')
84
86
  ChatSyncOutput = Shapes::StructureShape.new(name: 'ChatSyncOutput')
87
+ ClientIdForOIDC = Shapes::StringShape.new(name: 'ClientIdForOIDC')
88
+ ClientIdsForOIDC = Shapes::ListShape.new(name: 'ClientIdsForOIDC')
85
89
  ClientToken = Shapes::StringShape.new(name: 'ClientToken')
86
90
  ConfigurationEvent = Shapes::StructureShape.new(name: 'ConfigurationEvent')
87
91
  ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
@@ -211,7 +215,10 @@ module Aws::QBusiness
211
215
  GroupSummary = Shapes::StructureShape.new(name: 'GroupSummary')
212
216
  GroupSummaryList = Shapes::ListShape.new(name: 'GroupSummaryList')
213
217
  HookConfiguration = Shapes::StructureShape.new(name: 'HookConfiguration')
218
+ IamIdentityProviderArn = Shapes::StringShape.new(name: 'IamIdentityProviderArn')
214
219
  IdcApplicationArn = Shapes::StringShape.new(name: 'IdcApplicationArn')
220
+ IdentityProviderConfiguration = Shapes::UnionShape.new(name: 'IdentityProviderConfiguration')
221
+ IdentityType = Shapes::StringShape.new(name: 'IdentityType')
215
222
  Index = Shapes::StructureShape.new(name: 'Index')
216
223
  IndexArn = Shapes::StringShape.new(name: 'IndexArn')
217
224
  IndexCapacityConfiguration = Shapes::StructureShape.new(name: 'IndexCapacityConfiguration')
@@ -294,7 +301,10 @@ module Aws::QBusiness
294
301
  NumberAttributeBoostingConfiguration = Shapes::StructureShape.new(name: 'NumberAttributeBoostingConfiguration')
295
302
  NumberAttributeBoostingType = Shapes::StringShape.new(name: 'NumberAttributeBoostingType')
296
303
  OAuth2ClientCredentialConfiguration = Shapes::StructureShape.new(name: 'OAuth2ClientCredentialConfiguration')
304
+ OpenIDConnectProviderConfiguration = Shapes::StructureShape.new(name: 'OpenIDConnectProviderConfiguration')
297
305
  Payload = Shapes::StringShape.new(name: 'Payload')
306
+ PersonalizationConfiguration = Shapes::StructureShape.new(name: 'PersonalizationConfiguration')
307
+ PersonalizationControlMode = Shapes::StringShape.new(name: 'PersonalizationControlMode')
298
308
  Plugin = Shapes::StructureShape.new(name: 'Plugin')
299
309
  PluginArn = Shapes::StringShape.new(name: 'PluginArn')
300
310
  PluginAuthConfiguration = Shapes::UnionShape.new(name: 'PluginAuthConfiguration')
@@ -335,8 +345,10 @@ module Aws::QBusiness
335
345
  S3BucketName = Shapes::StringShape.new(name: 'S3BucketName')
336
346
  S3ObjectKey = Shapes::StringShape.new(name: 'S3ObjectKey')
337
347
  SamlAttribute = Shapes::StringShape.new(name: 'SamlAttribute')
348
+ SamlAuthenticationUrl = Shapes::StringShape.new(name: 'SamlAuthenticationUrl')
338
349
  SamlConfiguration = Shapes::StructureShape.new(name: 'SamlConfiguration')
339
350
  SamlMetadataXML = Shapes::StringShape.new(name: 'SamlMetadataXML')
351
+ SamlProviderConfiguration = Shapes::StructureShape.new(name: 'SamlProviderConfiguration')
340
352
  SecretArn = Shapes::StringShape.new(name: 'SecretArn')
341
353
  SecurityGroupId = Shapes::StringShape.new(name: 'SecurityGroupId')
342
354
  SecurityGroupIds = Shapes::ListShape.new(name: 'SecurityGroupIds')
@@ -357,6 +369,7 @@ module Aws::QBusiness
357
369
  StringListAttributeBoostingConfiguration = Shapes::StructureShape.new(name: 'StringListAttributeBoostingConfiguration')
358
370
  SubnetId = Shapes::StringShape.new(name: 'SubnetId')
359
371
  SubnetIds = Shapes::ListShape.new(name: 'SubnetIds')
372
+ SubscriptionType = Shapes::StringShape.new(name: 'SubscriptionType')
360
373
  SyncSchedule = Shapes::StringShape.new(name: 'SyncSchedule')
361
374
  SystemMessageId = Shapes::StringShape.new(name: 'SystemMessageId')
362
375
  SystemMessageOverride = Shapes::StringShape.new(name: 'SystemMessageOverride')
@@ -496,6 +509,7 @@ module Aws::QBusiness
496
509
  Application.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdAt"))
497
510
  Application.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "updatedAt"))
498
511
  Application.add_member(:status, Shapes::ShapeRef.new(shape: ApplicationStatus, location_name: "status"))
512
+ Application.add_member(:identity_type, Shapes::ShapeRef.new(shape: IdentityType, location_name: "identityType"))
499
513
  Application.struct_class = Types::Application
500
514
 
501
515
  Applications.member = Shapes::ShapeRef.new(shape: Application)
@@ -554,6 +568,10 @@ module Aws::QBusiness
554
568
  AuthorizationResponseMap.key = Shapes::ShapeRef.new(shape: AuthResponseKey)
555
569
  AuthorizationResponseMap.value = Shapes::ShapeRef.new(shape: AuthResponseValue)
556
570
 
571
+ AutoSubscriptionConfiguration.add_member(:auto_subscribe, Shapes::ShapeRef.new(shape: AutoSubscriptionStatus, required: true, location_name: "autoSubscribe"))
572
+ AutoSubscriptionConfiguration.add_member(:default_subscription_type, Shapes::ShapeRef.new(shape: SubscriptionType, location_name: "defaultSubscriptionType"))
573
+ AutoSubscriptionConfiguration.struct_class = Types::AutoSubscriptionConfiguration
574
+
557
575
  BasicAuthConfiguration.add_member(:secret_arn, Shapes::ShapeRef.new(shape: SecretArn, required: true, location_name: "secretArn"))
558
576
  BasicAuthConfiguration.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "roleArn"))
559
577
  BasicAuthConfiguration.struct_class = Types::BasicAuthConfiguration
@@ -650,6 +668,8 @@ module Aws::QBusiness
650
668
  ChatSyncOutput.add_member(:failed_attachments, Shapes::ShapeRef.new(shape: AttachmentsOutput, location_name: "failedAttachments"))
651
669
  ChatSyncOutput.struct_class = Types::ChatSyncOutput
652
670
 
671
+ ClientIdsForOIDC.member = Shapes::ShapeRef.new(shape: ClientIdForOIDC)
672
+
653
673
  ConfigurationEvent.add_member(:chat_mode, Shapes::ShapeRef.new(shape: ChatMode, location_name: "chatMode"))
654
674
  ConfigurationEvent.add_member(:chat_mode_configuration, Shapes::ShapeRef.new(shape: ChatModeConfiguration, location_name: "chatModeConfiguration"))
655
675
  ConfigurationEvent.add_member(:attribute_filter, Shapes::ShapeRef.new(shape: AttributeFilter, location_name: "attributeFilter"))
@@ -675,13 +695,17 @@ module Aws::QBusiness
675
695
 
676
696
  CreateApplicationRequest.add_member(:display_name, Shapes::ShapeRef.new(shape: ApplicationName, required: true, location_name: "displayName"))
677
697
  CreateApplicationRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "roleArn"))
698
+ CreateApplicationRequest.add_member(:identity_type, Shapes::ShapeRef.new(shape: IdentityType, location_name: "identityType"))
699
+ CreateApplicationRequest.add_member(:iam_identity_provider_arn, Shapes::ShapeRef.new(shape: IamIdentityProviderArn, location_name: "iamIdentityProviderArn"))
678
700
  CreateApplicationRequest.add_member(:identity_center_instance_arn, Shapes::ShapeRef.new(shape: InstanceArn, location_name: "identityCenterInstanceArn"))
701
+ CreateApplicationRequest.add_member(:client_ids_for_oidc, Shapes::ShapeRef.new(shape: ClientIdsForOIDC, location_name: "clientIdsForOIDC"))
679
702
  CreateApplicationRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
680
703
  CreateApplicationRequest.add_member(:encryption_configuration, Shapes::ShapeRef.new(shape: EncryptionConfiguration, location_name: "encryptionConfiguration"))
681
704
  CreateApplicationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
682
705
  CreateApplicationRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
683
706
  CreateApplicationRequest.add_member(:attachments_configuration, Shapes::ShapeRef.new(shape: AttachmentsConfiguration, location_name: "attachmentsConfiguration"))
684
707
  CreateApplicationRequest.add_member(:q_apps_configuration, Shapes::ShapeRef.new(shape: QAppsConfiguration, location_name: "qAppsConfiguration"))
708
+ CreateApplicationRequest.add_member(:personalization_configuration, Shapes::ShapeRef.new(shape: PersonalizationConfiguration, location_name: "personalizationConfiguration"))
685
709
  CreateApplicationRequest.struct_class = Types::CreateApplicationRequest
686
710
 
687
711
  CreateApplicationResponse.add_member(:application_id, Shapes::ShapeRef.new(shape: ApplicationId, location_name: "applicationId"))
@@ -764,6 +788,7 @@ module Aws::QBusiness
764
788
  CreateWebExperienceRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "roleArn"))
765
789
  CreateWebExperienceRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
766
790
  CreateWebExperienceRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
791
+ CreateWebExperienceRequest.add_member(:identity_provider_configuration, Shapes::ShapeRef.new(shape: IdentityProviderConfiguration, location_name: "identityProviderConfiguration"))
767
792
  CreateWebExperienceRequest.struct_class = Types::CreateWebExperienceRequest
768
793
 
769
794
  CreateWebExperienceResponse.add_member(:web_experience_id, Shapes::ShapeRef.new(shape: WebExperienceId, location_name: "webExperienceId"))
@@ -1004,6 +1029,8 @@ module Aws::QBusiness
1004
1029
  GetApplicationResponse.add_member(:display_name, Shapes::ShapeRef.new(shape: ApplicationName, location_name: "displayName"))
1005
1030
  GetApplicationResponse.add_member(:application_id, Shapes::ShapeRef.new(shape: ApplicationId, location_name: "applicationId"))
1006
1031
  GetApplicationResponse.add_member(:application_arn, Shapes::ShapeRef.new(shape: ApplicationArn, location_name: "applicationArn"))
1032
+ GetApplicationResponse.add_member(:identity_type, Shapes::ShapeRef.new(shape: IdentityType, location_name: "identityType"))
1033
+ GetApplicationResponse.add_member(:iam_identity_provider_arn, Shapes::ShapeRef.new(shape: IamIdentityProviderArn, location_name: "iamIdentityProviderArn"))
1007
1034
  GetApplicationResponse.add_member(:identity_center_application_arn, Shapes::ShapeRef.new(shape: IdcApplicationArn, location_name: "identityCenterApplicationArn"))
1008
1035
  GetApplicationResponse.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "roleArn"))
1009
1036
  GetApplicationResponse.add_member(:status, Shapes::ShapeRef.new(shape: ApplicationStatus, location_name: "status"))
@@ -1014,6 +1041,9 @@ module Aws::QBusiness
1014
1041
  GetApplicationResponse.add_member(:error, Shapes::ShapeRef.new(shape: ErrorDetail, location_name: "error"))
1015
1042
  GetApplicationResponse.add_member(:attachments_configuration, Shapes::ShapeRef.new(shape: AppliedAttachmentsConfiguration, location_name: "attachmentsConfiguration"))
1016
1043
  GetApplicationResponse.add_member(:q_apps_configuration, Shapes::ShapeRef.new(shape: QAppsConfiguration, location_name: "qAppsConfiguration"))
1044
+ GetApplicationResponse.add_member(:personalization_configuration, Shapes::ShapeRef.new(shape: PersonalizationConfiguration, location_name: "personalizationConfiguration"))
1045
+ GetApplicationResponse.add_member(:auto_subscription_configuration, Shapes::ShapeRef.new(shape: AutoSubscriptionConfiguration, location_name: "autoSubscriptionConfiguration"))
1046
+ GetApplicationResponse.add_member(:client_ids_for_oidc, Shapes::ShapeRef.new(shape: ClientIdsForOIDC, location_name: "clientIdsForOIDC"))
1017
1047
  GetApplicationResponse.struct_class = Types::GetApplicationResponse
1018
1048
 
1019
1049
  GetChatControlsConfigurationRequest.add_member(:application_id, Shapes::ShapeRef.new(shape: ApplicationId, required: true, location: "uri", location_name: "applicationId"))
@@ -1137,6 +1167,7 @@ module Aws::QBusiness
1137
1167
  GetWebExperienceResponse.add_member(:welcome_message, Shapes::ShapeRef.new(shape: WebExperienceWelcomeMessage, location_name: "welcomeMessage"))
1138
1168
  GetWebExperienceResponse.add_member(:sample_prompts_control_mode, Shapes::ShapeRef.new(shape: WebExperienceSamplePromptsControlMode, location_name: "samplePromptsControlMode"))
1139
1169
  GetWebExperienceResponse.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "roleArn"))
1170
+ GetWebExperienceResponse.add_member(:identity_provider_configuration, Shapes::ShapeRef.new(shape: IdentityProviderConfiguration, location_name: "identityProviderConfiguration"))
1140
1171
  GetWebExperienceResponse.add_member(:authentication_configuration, Shapes::ShapeRef.new(shape: WebExperienceAuthConfiguration, deprecated: true, location_name: "authenticationConfiguration", metadata: {"deprecatedMessage"=>"Property associated with legacy SAML IdP flow. Deprecated in favor of using AWS IAM Identity Center for user management."}))
1141
1172
  GetWebExperienceResponse.add_member(:error, Shapes::ShapeRef.new(shape: ErrorDetail, location_name: "error"))
1142
1173
  GetWebExperienceResponse.struct_class = Types::GetWebExperienceResponse
@@ -1163,6 +1194,14 @@ module Aws::QBusiness
1163
1194
  HookConfiguration.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "roleArn"))
1164
1195
  HookConfiguration.struct_class = Types::HookConfiguration
1165
1196
 
1197
+ IdentityProviderConfiguration.add_member(:saml_configuration, Shapes::ShapeRef.new(shape: SamlProviderConfiguration, location_name: "samlConfiguration"))
1198
+ IdentityProviderConfiguration.add_member(:open_id_connect_configuration, Shapes::ShapeRef.new(shape: OpenIDConnectProviderConfiguration, location_name: "openIDConnectConfiguration"))
1199
+ IdentityProviderConfiguration.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
1200
+ IdentityProviderConfiguration.add_member_subclass(:saml_configuration, Types::IdentityProviderConfiguration::SamlConfiguration)
1201
+ IdentityProviderConfiguration.add_member_subclass(:open_id_connect_configuration, Types::IdentityProviderConfiguration::OpenIdConnectConfiguration)
1202
+ IdentityProviderConfiguration.add_member_subclass(:unknown, Types::IdentityProviderConfiguration::Unknown)
1203
+ IdentityProviderConfiguration.struct_class = Types::IdentityProviderConfiguration
1204
+
1166
1205
  Index.add_member(:display_name, Shapes::ShapeRef.new(shape: IndexName, location_name: "displayName"))
1167
1206
  Index.add_member(:index_id, Shapes::ShapeRef.new(shape: IndexId, location_name: "indexId"))
1168
1207
  Index.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdAt"))
@@ -1363,6 +1402,13 @@ module Aws::QBusiness
1363
1402
  OAuth2ClientCredentialConfiguration.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "roleArn"))
1364
1403
  OAuth2ClientCredentialConfiguration.struct_class = Types::OAuth2ClientCredentialConfiguration
1365
1404
 
1405
+ OpenIDConnectProviderConfiguration.add_member(:secrets_arn, Shapes::ShapeRef.new(shape: SecretArn, required: true, location_name: "secretsArn"))
1406
+ OpenIDConnectProviderConfiguration.add_member(:secrets_role, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "secretsRole"))
1407
+ OpenIDConnectProviderConfiguration.struct_class = Types::OpenIDConnectProviderConfiguration
1408
+
1409
+ PersonalizationConfiguration.add_member(:personalization_control_mode, Shapes::ShapeRef.new(shape: PersonalizationControlMode, required: true, location_name: "personalizationControlMode"))
1410
+ PersonalizationConfiguration.struct_class = Types::PersonalizationConfiguration
1411
+
1366
1412
  Plugin.add_member(:plugin_id, Shapes::ShapeRef.new(shape: PluginId, location_name: "pluginId"))
1367
1413
  Plugin.add_member(:display_name, Shapes::ShapeRef.new(shape: PluginName, location_name: "displayName"))
1368
1414
  Plugin.add_member(:type, Shapes::ShapeRef.new(shape: PluginType, location_name: "type"))
@@ -1477,6 +1523,9 @@ module Aws::QBusiness
1477
1523
  SamlConfiguration.add_member(:user_group_attribute, Shapes::ShapeRef.new(shape: SamlAttribute, location_name: "userGroupAttribute"))
1478
1524
  SamlConfiguration.struct_class = Types::SamlConfiguration
1479
1525
 
1526
+ SamlProviderConfiguration.add_member(:authentication_url, Shapes::ShapeRef.new(shape: SamlAuthenticationUrl, required: true, location_name: "authenticationUrl"))
1527
+ SamlProviderConfiguration.struct_class = Types::SamlProviderConfiguration
1528
+
1480
1529
  SecurityGroupIds.member = Shapes::ShapeRef.new(shape: SecurityGroupId)
1481
1530
 
1482
1531
  ServiceQuotaExceededException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, required: true, location_name: "message"))
@@ -1582,6 +1631,8 @@ module Aws::QBusiness
1582
1631
  UpdateApplicationRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "roleArn"))
1583
1632
  UpdateApplicationRequest.add_member(:attachments_configuration, Shapes::ShapeRef.new(shape: AttachmentsConfiguration, location_name: "attachmentsConfiguration"))
1584
1633
  UpdateApplicationRequest.add_member(:q_apps_configuration, Shapes::ShapeRef.new(shape: QAppsConfiguration, location_name: "qAppsConfiguration"))
1634
+ UpdateApplicationRequest.add_member(:personalization_configuration, Shapes::ShapeRef.new(shape: PersonalizationConfiguration, location_name: "personalizationConfiguration"))
1635
+ UpdateApplicationRequest.add_member(:auto_subscription_configuration, Shapes::ShapeRef.new(shape: AutoSubscriptionConfiguration, location_name: "autoSubscriptionConfiguration"))
1585
1636
  UpdateApplicationRequest.struct_class = Types::UpdateApplicationRequest
1586
1637
 
1587
1638
  UpdateApplicationResponse.struct_class = Types::UpdateApplicationResponse
@@ -1660,6 +1711,7 @@ module Aws::QBusiness
1660
1711
  UpdateWebExperienceRequest.add_member(:subtitle, Shapes::ShapeRef.new(shape: WebExperienceSubtitle, location_name: "subtitle"))
1661
1712
  UpdateWebExperienceRequest.add_member(:welcome_message, Shapes::ShapeRef.new(shape: WebExperienceWelcomeMessage, location_name: "welcomeMessage"))
1662
1713
  UpdateWebExperienceRequest.add_member(:sample_prompts_control_mode, Shapes::ShapeRef.new(shape: WebExperienceSamplePromptsControlMode, location_name: "samplePromptsControlMode"))
1714
+ UpdateWebExperienceRequest.add_member(:identity_provider_configuration, Shapes::ShapeRef.new(shape: IdentityProviderConfiguration, location_name: "identityProviderConfiguration"))
1663
1715
  UpdateWebExperienceRequest.struct_class = Types::UpdateWebExperienceRequest
1664
1716
 
1665
1717
  UpdateWebExperienceResponse.struct_class = Types::UpdateWebExperienceResponse
@@ -369,6 +369,11 @@ module Aws::QBusiness
369
369
  # ready to use when the status is `ACTIVE`.
370
370
  # @return [String]
371
371
  #
372
+ # @!attribute [rw] identity_type
373
+ # The authentication type being used by a Amazon Q Business
374
+ # application.
375
+ # @return [String]
376
+ #
372
377
  # @see http://docs.aws.amazon.com/goto/WebAPI/qbusiness-2023-11-27/Application AWS API Documentation
373
378
  #
374
379
  class Application < Struct.new(
@@ -376,7 +381,8 @@ module Aws::QBusiness
376
381
  :application_id,
377
382
  :created_at,
378
383
  :updated_at,
379
- :status)
384
+ :status,
385
+ :identity_type)
380
386
  SENSITIVE = []
381
387
  include Aws::Structure
382
388
  end
@@ -668,6 +674,31 @@ module Aws::QBusiness
668
674
  include Aws::Structure
669
675
  end
670
676
 
677
+ # Subscription configuration information for an Amazon Q Business
678
+ # application using IAM identity federation for user management.
679
+ #
680
+ # @!attribute [rw] auto_subscribe
681
+ # Describes whether automatic subscriptions are enabled for an Amazon
682
+ # Q Business application using IAM identity federation for user
683
+ # management.
684
+ # @return [String]
685
+ #
686
+ # @!attribute [rw] default_subscription_type
687
+ # Describes the default subscription type assigned to an Amazon Q
688
+ # Business application using IAM identity federation for user
689
+ # management. If the value for `autoSubscribe` is set to `ENABLED` you
690
+ # must select a value for this field.
691
+ # @return [String]
692
+ #
693
+ # @see http://docs.aws.amazon.com/goto/WebAPI/qbusiness-2023-11-27/AutoSubscriptionConfiguration AWS API Documentation
694
+ #
695
+ class AutoSubscriptionConfiguration < Struct.new(
696
+ :auto_subscribe,
697
+ :default_subscription_type)
698
+ SENSITIVE = []
699
+ include Aws::Structure
700
+ end
701
+
671
702
  # Information about the basic authentication credentials used to
672
703
  # configure a plugin.
673
704
  #
@@ -1223,12 +1254,26 @@ module Aws::QBusiness
1223
1254
  # access your Amazon CloudWatch logs and metrics.
1224
1255
  # @return [String]
1225
1256
  #
1257
+ # @!attribute [rw] identity_type
1258
+ # The authentication type being used by a Amazon Q Business
1259
+ # application.
1260
+ # @return [String]
1261
+ #
1262
+ # @!attribute [rw] iam_identity_provider_arn
1263
+ # The Amazon Resource Name (ARN) of an identity provider being used by
1264
+ # an Amazon Q Business application.
1265
+ # @return [String]
1266
+ #
1226
1267
  # @!attribute [rw] identity_center_instance_arn
1227
1268
  # The Amazon Resource Name (ARN) of the IAM Identity Center instance
1228
1269
  # you are either creating for—or connecting to—your Amazon Q Business
1229
1270
  # application.
1230
1271
  # @return [String]
1231
1272
  #
1273
+ # @!attribute [rw] client_ids_for_oidc
1274
+ # The OIDC client ID for a Amazon Q Business application.
1275
+ # @return [Array<String>]
1276
+ #
1232
1277
  # @!attribute [rw] description
1233
1278
  # A description for the Amazon Q Business application.
1234
1279
  # @return [String]
@@ -1263,18 +1308,31 @@ module Aws::QBusiness
1263
1308
  # web experience.
1264
1309
  # @return [Types::QAppsConfiguration]
1265
1310
  #
1311
+ # @!attribute [rw] personalization_configuration
1312
+ # Configuration information about chat response personalization. For
1313
+ # more information, see [Personalizing chat responses][1]
1314
+ #
1315
+ #
1316
+ #
1317
+ # [1]: https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/personalizing-chat-responses.html
1318
+ # @return [Types::PersonalizationConfiguration]
1319
+ #
1266
1320
  # @see http://docs.aws.amazon.com/goto/WebAPI/qbusiness-2023-11-27/CreateApplicationRequest AWS API Documentation
1267
1321
  #
1268
1322
  class CreateApplicationRequest < Struct.new(
1269
1323
  :display_name,
1270
1324
  :role_arn,
1325
+ :identity_type,
1326
+ :iam_identity_provider_arn,
1271
1327
  :identity_center_instance_arn,
1328
+ :client_ids_for_oidc,
1272
1329
  :description,
1273
1330
  :encryption_configuration,
1274
1331
  :tags,
1275
1332
  :client_token,
1276
1333
  :attachments_configuration,
1277
- :q_apps_configuration)
1334
+ :q_apps_configuration,
1335
+ :personalization_configuration)
1278
1336
  SENSITIVE = []
1279
1337
  include Aws::Structure
1280
1338
  end
@@ -1311,13 +1369,33 @@ module Aws::QBusiness
1311
1369
  # @return [String]
1312
1370
  #
1313
1371
  # @!attribute [rw] configuration
1314
- # Configuration information to connect to your data source repository.
1315
- # For configuration templates for your specific data source, see
1316
- # [Supported connectors][1].
1372
+ # Configuration information to connect your data source repository to
1373
+ # Amazon Q Business. Use this parameter to provide a JSON schema with
1374
+ # configuration information specific to your data source connector.
1317
1375
  #
1376
+ # Each data source has a JSON schema provided by Amazon Q Business
1377
+ # that you must use. For example, the Amazon S3 and Web Crawler
1378
+ # connectors require the following JSON schemas:
1318
1379
  #
1380
+ # * [Amazon S3 JSON schema][1]
1319
1381
  #
1320
- # [1]: https://docs.aws.amazon.com/amazonq/latest/business-use-dg/connectors-list.html
1382
+ # * [Web Crawler JSON schema][2]
1383
+ #
1384
+ # You can find configuration templates for your specific data source
1385
+ # using the following steps:
1386
+ #
1387
+ # 1. Navigate to the [Supported connectors][3] page in the Amazon Q
1388
+ # Business User Guide, and select the data source of your choice.
1389
+ #
1390
+ # 2. Then, from your specific data source connector page, select
1391
+ # **Using the API**. You will find the JSON schema for your data
1392
+ # source, including parameter descriptions, in this section.
1393
+ #
1394
+ #
1395
+ #
1396
+ # [1]: https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/s3-api.html
1397
+ # [2]: https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/web-crawler-api.html
1398
+ # [3]: https://docs.aws.amazon.com/amazonq/latest/business-use-dg/connectors-list.html
1321
1399
  # @return [Hash,Array,String,Numeric,Boolean]
1322
1400
  #
1323
1401
  # @!attribute [rw] vpc_configuration
@@ -1696,6 +1774,13 @@ module Aws::QBusiness
1696
1774
  # @!attribute [rw] role_arn
1697
1775
  # The Amazon Resource Name (ARN) of the service role attached to your
1698
1776
  # web experience.
1777
+ #
1778
+ # <note markdown="1"> You must provide this value if you're using IAM Identity Center to
1779
+ # manage end user access to your application. If you're using legacy
1780
+ # identity management to manage user access, you don't need to
1781
+ # provide this value.
1782
+ #
1783
+ # </note>
1699
1784
  # @return [String]
1700
1785
  #
1701
1786
  # @!attribute [rw] tags
@@ -1714,6 +1799,11 @@ module Aws::QBusiness
1714
1799
  # not need to pass this option.
1715
1800
  # @return [String]
1716
1801
  #
1802
+ # @!attribute [rw] identity_provider_configuration
1803
+ # Information about the identity provider (IdP) used to authenticate
1804
+ # end users of an Amazon Q Business web experience.
1805
+ # @return [Types::IdentityProviderConfiguration]
1806
+ #
1717
1807
  # @see http://docs.aws.amazon.com/goto/WebAPI/qbusiness-2023-11-27/CreateWebExperienceRequest AWS API Documentation
1718
1808
  #
1719
1809
  class CreateWebExperienceRequest < Struct.new(
@@ -1724,7 +1814,8 @@ module Aws::QBusiness
1724
1814
  :sample_prompts_control_mode,
1725
1815
  :role_arn,
1726
1816
  :tags,
1727
- :client_token)
1817
+ :client_token,
1818
+ :identity_provider_configuration)
1728
1819
  SENSITIVE = []
1729
1820
  include Aws::Structure
1730
1821
  end
@@ -2848,6 +2939,16 @@ module Aws::QBusiness
2848
2939
  # The Amazon Resource Name (ARN) of the Amazon Q Business application.
2849
2940
  # @return [String]
2850
2941
  #
2942
+ # @!attribute [rw] identity_type
2943
+ # The authentication type being used by a Amazon Q Business
2944
+ # application.
2945
+ # @return [String]
2946
+ #
2947
+ # @!attribute [rw] iam_identity_provider_arn
2948
+ # The Amazon Resource Name (ARN) of an identity provider being used by
2949
+ # an Amazon Q Business application.
2950
+ # @return [String]
2951
+ #
2851
2952
  # @!attribute [rw] identity_center_application_arn
2852
2953
  # The Amazon Resource Name (ARN) of the AWS IAM Identity Center
2853
2954
  # instance attached to your Amazon Q Business application.
@@ -2898,12 +2999,32 @@ module Aws::QBusiness
2898
2999
  # the web experience.
2899
3000
  # @return [Types::QAppsConfiguration]
2900
3001
  #
3002
+ # @!attribute [rw] personalization_configuration
3003
+ # Configuration information about chat response personalization. For
3004
+ # more information, see [Personalizing chat responses][1].
3005
+ #
3006
+ #
3007
+ #
3008
+ # [1]: https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/personalizing-chat-responses.html
3009
+ # @return [Types::PersonalizationConfiguration]
3010
+ #
3011
+ # @!attribute [rw] auto_subscription_configuration
3012
+ # Settings for auto-subscription behavior for this application. This
3013
+ # is only applicable to SAML and OIDC applications.
3014
+ # @return [Types::AutoSubscriptionConfiguration]
3015
+ #
3016
+ # @!attribute [rw] client_ids_for_oidc
3017
+ # The OIDC client ID for a Amazon Q Business application.
3018
+ # @return [Array<String>]
3019
+ #
2901
3020
  # @see http://docs.aws.amazon.com/goto/WebAPI/qbusiness-2023-11-27/GetApplicationResponse AWS API Documentation
2902
3021
  #
2903
3022
  class GetApplicationResponse < Struct.new(
2904
3023
  :display_name,
2905
3024
  :application_id,
2906
3025
  :application_arn,
3026
+ :identity_type,
3027
+ :iam_identity_provider_arn,
2907
3028
  :identity_center_application_arn,
2908
3029
  :role_arn,
2909
3030
  :status,
@@ -2913,7 +3034,10 @@ module Aws::QBusiness
2913
3034
  :updated_at,
2914
3035
  :error,
2915
3036
  :attachments_configuration,
2916
- :q_apps_configuration)
3037
+ :q_apps_configuration,
3038
+ :personalization_configuration,
3039
+ :auto_subscription_configuration,
3040
+ :client_ids_for_oidc)
2917
3041
  SENSITIVE = []
2918
3042
  include Aws::Structure
2919
3043
  end
@@ -3524,6 +3648,11 @@ module Aws::QBusiness
3524
3648
  # web experience.
3525
3649
  # @return [String]
3526
3650
  #
3651
+ # @!attribute [rw] identity_provider_configuration
3652
+ # Information about the identity provider (IdP) used to authenticate
3653
+ # end users of an Amazon Q Business web experience.
3654
+ # @return [Types::IdentityProviderConfiguration]
3655
+ #
3527
3656
  # @!attribute [rw] authentication_configuration
3528
3657
  # The authentication configuration information for your Amazon Q
3529
3658
  # Business web experience.
@@ -3550,6 +3679,7 @@ module Aws::QBusiness
3550
3679
  :welcome_message,
3551
3680
  :sample_prompts_control_mode,
3552
3681
  :role_arn,
3682
+ :identity_provider_configuration,
3553
3683
  :authentication_configuration,
3554
3684
  :error)
3555
3685
  SENSITIVE = []
@@ -3686,6 +3816,39 @@ module Aws::QBusiness
3686
3816
  include Aws::Structure
3687
3817
  end
3688
3818
 
3819
+ # Provides information about the identity provider (IdP) used to
3820
+ # authenticate end users of an Amazon Q Business web experience.
3821
+ #
3822
+ # @note IdentityProviderConfiguration is a union - when making an API calls you must set exactly one of the members.
3823
+ #
3824
+ # @note IdentityProviderConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of IdentityProviderConfiguration corresponding to the set member.
3825
+ #
3826
+ # @!attribute [rw] saml_configuration
3827
+ # Information about the SAML 2.0-compliant identity provider (IdP)
3828
+ # used to authenticate end users of an Amazon Q Business web
3829
+ # experience.
3830
+ # @return [Types::SamlProviderConfiguration]
3831
+ #
3832
+ # @!attribute [rw] open_id_connect_configuration
3833
+ # Information about the OIDC-compliant identity provider (IdP) used to
3834
+ # authenticate end users of an Amazon Q Business web experience.
3835
+ # @return [Types::OpenIDConnectProviderConfiguration]
3836
+ #
3837
+ # @see http://docs.aws.amazon.com/goto/WebAPI/qbusiness-2023-11-27/IdentityProviderConfiguration AWS API Documentation
3838
+ #
3839
+ class IdentityProviderConfiguration < Struct.new(
3840
+ :saml_configuration,
3841
+ :open_id_connect_configuration,
3842
+ :unknown)
3843
+ SENSITIVE = []
3844
+ include Aws::Structure
3845
+ include Aws::Structure::Union
3846
+
3847
+ class SamlConfiguration < IdentityProviderConfiguration; end
3848
+ class OpenIdConnectConfiguration < IdentityProviderConfiguration; end
3849
+ class Unknown < IdentityProviderConfiguration; end
3850
+ end
3851
+
3689
3852
  # Summary information for your Amazon Q Business index.
3690
3853
  #
3691
3854
  # @!attribute [rw] display_name
@@ -4711,6 +4874,49 @@ module Aws::QBusiness
4711
4874
  include Aws::Structure
4712
4875
  end
4713
4876
 
4877
+ # Information about the OIDC-compliant identity provider (IdP) used to
4878
+ # authenticate end users of an Amazon Q Business web experience.
4879
+ #
4880
+ # @!attribute [rw] secrets_arn
4881
+ # The Amazon Resource Name (ARN) of a Secrets Manager secret
4882
+ # containing the OIDC client secret.
4883
+ # @return [String]
4884
+ #
4885
+ # @!attribute [rw] secrets_role
4886
+ # An IAM role with permissions to access KMS to decrypt the Secrets
4887
+ # Manager secret containing your OIDC client secret.
4888
+ # @return [String]
4889
+ #
4890
+ # @see http://docs.aws.amazon.com/goto/WebAPI/qbusiness-2023-11-27/OpenIDConnectProviderConfiguration AWS API Documentation
4891
+ #
4892
+ class OpenIDConnectProviderConfiguration < Struct.new(
4893
+ :secrets_arn,
4894
+ :secrets_role)
4895
+ SENSITIVE = []
4896
+ include Aws::Structure
4897
+ end
4898
+
4899
+ # Configuration information about chat response personalization. For
4900
+ # more information, see [Personalizing chat responses][1].
4901
+ #
4902
+ #
4903
+ #
4904
+ # [1]: https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/personalizing-chat-responses.html
4905
+ #
4906
+ # @!attribute [rw] personalization_control_mode
4907
+ # An option to allow Amazon Q Business to customize chat responses
4908
+ # using user specific metadata—specifically, location and job
4909
+ # information—in your IAM Identity Center instance.
4910
+ # @return [String]
4911
+ #
4912
+ # @see http://docs.aws.amazon.com/goto/WebAPI/qbusiness-2023-11-27/PersonalizationConfiguration AWS API Documentation
4913
+ #
4914
+ class PersonalizationConfiguration < Struct.new(
4915
+ :personalization_control_mode)
4916
+ SENSITIVE = []
4917
+ include Aws::Structure
4918
+ end
4919
+
4714
4920
  # Information about an Amazon Q Business plugin and its configuration.
4715
4921
  #
4716
4922
  # @!attribute [rw] plugin_id
@@ -4952,12 +5158,6 @@ module Aws::QBusiness
4952
5158
  # group. For example, the group "Company" includes the user "CEO"
4953
5159
  # and the sub groups "Research", "Engineering", and "Sales and
4954
5160
  # Marketing".
4955
- #
4956
- # If you have more than 1000 users and/or sub groups for a single
4957
- # group, you need to provide the path to the S3 file that lists your
4958
- # users and sub groups for a group. Your sub groups can contain more
4959
- # than 1000 users, but the list of sub groups that belong to a group
4960
- # (and/or users) must be no more than 1000.
4961
5161
  # @return [String]
4962
5162
  #
4963
5163
  # @!attribute [rw] data_source_id
@@ -5222,6 +5422,22 @@ module Aws::QBusiness
5222
5422
  include Aws::Structure
5223
5423
  end
5224
5424
 
5425
+ # Information about the SAML 2.0-compliant identity provider (IdP) used
5426
+ # to authenticate end users of an Amazon Q Business web experience.
5427
+ #
5428
+ # @!attribute [rw] authentication_url
5429
+ # The URL where Amazon Q Business end users will be redirected for
5430
+ # authentication.
5431
+ # @return [String]
5432
+ #
5433
+ # @see http://docs.aws.amazon.com/goto/WebAPI/qbusiness-2023-11-27/SamlProviderConfiguration AWS API Documentation
5434
+ #
5435
+ class SamlProviderConfiguration < Struct.new(
5436
+ :authentication_url)
5437
+ SENSITIVE = []
5438
+ include Aws::Structure
5439
+ end
5440
+
5225
5441
  # You have exceeded the set limits for your Amazon Q Business service.
5226
5442
  #
5227
5443
  # @!attribute [rw] message
@@ -5689,6 +5905,21 @@ module Aws::QBusiness
5689
5905
  # web experience.
5690
5906
  # @return [Types::QAppsConfiguration]
5691
5907
  #
5908
+ # @!attribute [rw] personalization_configuration
5909
+ # Configuration information about chat response personalization. For
5910
+ # more information, see [Personalizing chat responses][1].
5911
+ #
5912
+ #
5913
+ #
5914
+ # [1]: https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/personalizing-chat-responses.html
5915
+ # @return [Types::PersonalizationConfiguration]
5916
+ #
5917
+ # @!attribute [rw] auto_subscription_configuration
5918
+ # An option to enable updating the default subscription type assigned
5919
+ # to an Amazon Q Business application using IAM identity federation
5920
+ # for user management.
5921
+ # @return [Types::AutoSubscriptionConfiguration]
5922
+ #
5692
5923
  # @see http://docs.aws.amazon.com/goto/WebAPI/qbusiness-2023-11-27/UpdateApplicationRequest AWS API Documentation
5693
5924
  #
5694
5925
  class UpdateApplicationRequest < Struct.new(
@@ -5698,7 +5929,9 @@ module Aws::QBusiness
5698
5929
  :description,
5699
5930
  :role_arn,
5700
5931
  :attachments_configuration,
5701
- :q_apps_configuration)
5932
+ :q_apps_configuration,
5933
+ :personalization_configuration,
5934
+ :auto_subscription_configuration)
5702
5935
  SENSITIVE = []
5703
5936
  include Aws::Structure
5704
5937
  end
@@ -6056,6 +6289,11 @@ module Aws::QBusiness
6056
6289
  # for an end user.
6057
6290
  # @return [String]
6058
6291
  #
6292
+ # @!attribute [rw] identity_provider_configuration
6293
+ # Information about the identity provider (IdP) used to authenticate
6294
+ # end users of an Amazon Q Business web experience.
6295
+ # @return [Types::IdentityProviderConfiguration]
6296
+ #
6059
6297
  # @see http://docs.aws.amazon.com/goto/WebAPI/qbusiness-2023-11-27/UpdateWebExperienceRequest AWS API Documentation
6060
6298
  #
6061
6299
  class UpdateWebExperienceRequest < Struct.new(
@@ -6066,7 +6304,8 @@ module Aws::QBusiness
6066
6304
  :title,
6067
6305
  :subtitle,
6068
6306
  :welcome_message,
6069
- :sample_prompts_control_mode)
6307
+ :sample_prompts_control_mode,
6308
+ :identity_provider_configuration)
6070
6309
  SENSITIVE = []
6071
6310
  include Aws::Structure
6072
6311
  end
@@ -55,6 +55,6 @@ require_relative 'aws-sdk-qbusiness/event_streams'
55
55
  # @!group service
56
56
  module Aws::QBusiness
57
57
 
58
- GEM_VERSION = '1.10.0'
58
+ GEM_VERSION = '1.12.0'
59
59
 
60
60
  end
data/sig/client.rbs CHANGED
@@ -353,7 +353,10 @@ module Aws
353
353
  def create_application: (
354
354
  display_name: ::String,
355
355
  ?role_arn: ::String,
356
+ ?identity_type: ("AWS_IAM_IDP_SAML" | "AWS_IAM_IDP_OIDC" | "AWS_IAM_IDC"),
357
+ ?iam_identity_provider_arn: ::String,
356
358
  ?identity_center_instance_arn: ::String,
359
+ ?client_ids_for_oidc: Array[::String],
357
360
  ?description: ::String,
358
361
  ?encryption_configuration: {
359
362
  kms_key_id: ::String?
@@ -370,6 +373,9 @@ module Aws
370
373
  },
371
374
  ?q_apps_configuration: {
372
375
  q_apps_control_mode: ("ENABLED" | "DISABLED")
376
+ },
377
+ ?personalization_configuration: {
378
+ personalization_control_mode: ("ENABLED" | "DISABLED")
373
379
  }
374
380
  ) -> _CreateApplicationResponseSuccess
375
381
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateApplicationResponseSuccess
@@ -612,7 +618,16 @@ module Aws
612
618
  value: ::String
613
619
  },
614
620
  ],
615
- ?client_token: ::String
621
+ ?client_token: ::String,
622
+ ?identity_provider_configuration: {
623
+ saml_configuration: {
624
+ authentication_url: ::String
625
+ }?,
626
+ open_id_connect_configuration: {
627
+ secrets_arn: ::String,
628
+ secrets_role: ::String
629
+ }?
630
+ }
616
631
  ) -> _CreateWebExperienceResponseSuccess
617
632
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateWebExperienceResponseSuccess
618
633
 
@@ -723,6 +738,8 @@ module Aws
723
738
  def display_name: () -> ::String
724
739
  def application_id: () -> ::String
725
740
  def application_arn: () -> ::String
741
+ def identity_type: () -> ("AWS_IAM_IDP_SAML" | "AWS_IAM_IDP_OIDC" | "AWS_IAM_IDC")
742
+ def iam_identity_provider_arn: () -> ::String
726
743
  def identity_center_application_arn: () -> ::String
727
744
  def role_arn: () -> ::String
728
745
  def status: () -> ("CREATING" | "ACTIVE" | "DELETING" | "FAILED" | "UPDATING")
@@ -732,6 +749,9 @@ module Aws
732
749
  def updated_at: () -> ::Time
733
750
  def attachments_configuration: () -> Types::AppliedAttachmentsConfiguration
734
751
  def q_apps_configuration: () -> Types::QAppsConfiguration
752
+ def personalization_configuration: () -> Types::PersonalizationConfiguration
753
+ def auto_subscription_configuration: () -> Types::AutoSubscriptionConfiguration
754
+ def client_ids_for_oidc: () -> ::Array[::String]
735
755
  end
736
756
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QBusiness/Client.html#get_application-instance_method
737
757
  def get_application: (
@@ -884,6 +904,7 @@ module Aws
884
904
  def welcome_message: () -> ::String
885
905
  def sample_prompts_control_mode: () -> ("ENABLED" | "DISABLED")
886
906
  def role_arn: () -> ::String
907
+ def identity_provider_configuration: () -> Types::IdentityProviderConfiguration
887
908
  def authentication_configuration: () -> Types::WebExperienceAuthConfiguration
888
909
  end
889
910
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QBusiness/Client.html#get_web_experience-instance_method
@@ -1165,6 +1186,13 @@ module Aws
1165
1186
  },
1166
1187
  ?q_apps_configuration: {
1167
1188
  q_apps_control_mode: ("ENABLED" | "DISABLED")
1189
+ },
1190
+ ?personalization_configuration: {
1191
+ personalization_control_mode: ("ENABLED" | "DISABLED")
1192
+ },
1193
+ ?auto_subscription_configuration: {
1194
+ auto_subscribe: ("ENABLED" | "DISABLED"),
1195
+ default_subscription_type: ("Q_LITE" | "Q_BUSINESS")?
1168
1196
  }
1169
1197
  ) -> _UpdateApplicationResponseSuccess
1170
1198
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateApplicationResponseSuccess
@@ -1473,7 +1501,16 @@ module Aws
1473
1501
  ?title: ::String,
1474
1502
  ?subtitle: ::String,
1475
1503
  ?welcome_message: ::String,
1476
- ?sample_prompts_control_mode: ("ENABLED" | "DISABLED")
1504
+ ?sample_prompts_control_mode: ("ENABLED" | "DISABLED"),
1505
+ ?identity_provider_configuration: {
1506
+ saml_configuration: {
1507
+ authentication_url: ::String
1508
+ }?,
1509
+ open_id_connect_configuration: {
1510
+ secrets_arn: ::String,
1511
+ secrets_role: ::String
1512
+ }?
1513
+ }
1477
1514
  ) -> _UpdateWebExperienceResponseSuccess
1478
1515
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateWebExperienceResponseSuccess
1479
1516
  end
data/sig/types.rbs CHANGED
@@ -103,6 +103,7 @@ module Aws::QBusiness
103
103
  attr_accessor created_at: ::Time
104
104
  attr_accessor updated_at: ::Time
105
105
  attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING" | "FAILED" | "UPDATING")
106
+ attr_accessor identity_type: ("AWS_IAM_IDP_SAML" | "AWS_IAM_IDP_OIDC" | "AWS_IAM_IDC")
106
107
  SENSITIVE: []
107
108
  end
108
109
 
@@ -176,6 +177,12 @@ module Aws::QBusiness
176
177
  SENSITIVE: []
177
178
  end
178
179
 
180
+ class AutoSubscriptionConfiguration
181
+ attr_accessor auto_subscribe: ("ENABLED" | "DISABLED")
182
+ attr_accessor default_subscription_type: ("Q_LITE" | "Q_BUSINESS")
183
+ SENSITIVE: []
184
+ end
185
+
179
186
  class BasicAuthConfiguration
180
187
  attr_accessor secret_arn: ::String
181
188
  attr_accessor role_arn: ::String
@@ -313,13 +320,17 @@ module Aws::QBusiness
313
320
  class CreateApplicationRequest
314
321
  attr_accessor display_name: ::String
315
322
  attr_accessor role_arn: ::String
323
+ attr_accessor identity_type: ("AWS_IAM_IDP_SAML" | "AWS_IAM_IDP_OIDC" | "AWS_IAM_IDC")
324
+ attr_accessor iam_identity_provider_arn: ::String
316
325
  attr_accessor identity_center_instance_arn: ::String
326
+ attr_accessor client_ids_for_oidc: ::Array[::String]
317
327
  attr_accessor description: ::String
318
328
  attr_accessor encryption_configuration: Types::EncryptionConfiguration
319
329
  attr_accessor tags: ::Array[Types::Tag]
320
330
  attr_accessor client_token: ::String
321
331
  attr_accessor attachments_configuration: Types::AttachmentsConfiguration
322
332
  attr_accessor q_apps_configuration: Types::QAppsConfiguration
333
+ attr_accessor personalization_configuration: Types::PersonalizationConfiguration
323
334
  SENSITIVE: []
324
335
  end
325
336
 
@@ -423,6 +434,7 @@ module Aws::QBusiness
423
434
  attr_accessor role_arn: ::String
424
435
  attr_accessor tags: ::Array[Types::Tag]
425
436
  attr_accessor client_token: ::String
437
+ attr_accessor identity_provider_configuration: Types::IdentityProviderConfiguration
426
438
  SENSITIVE: []
427
439
  end
428
440
 
@@ -738,6 +750,8 @@ module Aws::QBusiness
738
750
  attr_accessor display_name: ::String
739
751
  attr_accessor application_id: ::String
740
752
  attr_accessor application_arn: ::String
753
+ attr_accessor identity_type: ("AWS_IAM_IDP_SAML" | "AWS_IAM_IDP_OIDC" | "AWS_IAM_IDC")
754
+ attr_accessor iam_identity_provider_arn: ::String
741
755
  attr_accessor identity_center_application_arn: ::String
742
756
  attr_accessor role_arn: ::String
743
757
  attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING" | "FAILED" | "UPDATING")
@@ -748,6 +762,9 @@ module Aws::QBusiness
748
762
  attr_accessor error: Types::ErrorDetail
749
763
  attr_accessor attachments_configuration: Types::AppliedAttachmentsConfiguration
750
764
  attr_accessor q_apps_configuration: Types::QAppsConfiguration
765
+ attr_accessor personalization_configuration: Types::PersonalizationConfiguration
766
+ attr_accessor auto_subscription_configuration: Types::AutoSubscriptionConfiguration
767
+ attr_accessor client_ids_for_oidc: ::Array[::String]
751
768
  SENSITIVE: []
752
769
  end
753
770
 
@@ -903,6 +920,7 @@ module Aws::QBusiness
903
920
  attr_accessor welcome_message: ::String
904
921
  attr_accessor sample_prompts_control_mode: ("ENABLED" | "DISABLED")
905
922
  attr_accessor role_arn: ::String
923
+ attr_accessor identity_provider_configuration: Types::IdentityProviderConfiguration
906
924
  attr_accessor authentication_configuration: Types::WebExperienceAuthConfiguration
907
925
  attr_accessor error: Types::ErrorDetail
908
926
  SENSITIVE: []
@@ -934,6 +952,20 @@ module Aws::QBusiness
934
952
  SENSITIVE: []
935
953
  end
936
954
 
955
+ class IdentityProviderConfiguration
956
+ attr_accessor saml_configuration: Types::SamlProviderConfiguration
957
+ attr_accessor open_id_connect_configuration: Types::OpenIDConnectProviderConfiguration
958
+ attr_accessor unknown: untyped
959
+ SENSITIVE: []
960
+
961
+ class SamlConfiguration < IdentityProviderConfiguration
962
+ end
963
+ class OpenIdConnectConfiguration < IdentityProviderConfiguration
964
+ end
965
+ class Unknown < IdentityProviderConfiguration
966
+ end
967
+ end
968
+
937
969
  class Index
938
970
  attr_accessor display_name: ::String
939
971
  attr_accessor index_id: ::String
@@ -1204,6 +1236,17 @@ module Aws::QBusiness
1204
1236
  SENSITIVE: []
1205
1237
  end
1206
1238
 
1239
+ class OpenIDConnectProviderConfiguration
1240
+ attr_accessor secrets_arn: ::String
1241
+ attr_accessor secrets_role: ::String
1242
+ SENSITIVE: []
1243
+ end
1244
+
1245
+ class PersonalizationConfiguration
1246
+ attr_accessor personalization_control_mode: ("ENABLED" | "DISABLED")
1247
+ SENSITIVE: []
1248
+ end
1249
+
1207
1250
  class Plugin
1208
1251
  attr_accessor plugin_id: ::String
1209
1252
  attr_accessor display_name: ::String
@@ -1360,6 +1403,11 @@ module Aws::QBusiness
1360
1403
  SENSITIVE: []
1361
1404
  end
1362
1405
 
1406
+ class SamlProviderConfiguration
1407
+ attr_accessor authentication_url: ::String
1408
+ SENSITIVE: []
1409
+ end
1410
+
1363
1411
  class ServiceQuotaExceededException
1364
1412
  attr_accessor message: ::String
1365
1413
  attr_accessor resource_id: ::String
@@ -1488,6 +1536,8 @@ module Aws::QBusiness
1488
1536
  attr_accessor role_arn: ::String
1489
1537
  attr_accessor attachments_configuration: Types::AttachmentsConfiguration
1490
1538
  attr_accessor q_apps_configuration: Types::QAppsConfiguration
1539
+ attr_accessor personalization_configuration: Types::PersonalizationConfiguration
1540
+ attr_accessor auto_subscription_configuration: Types::AutoSubscriptionConfiguration
1491
1541
  SENSITIVE: []
1492
1542
  end
1493
1543
 
@@ -1588,6 +1638,7 @@ module Aws::QBusiness
1588
1638
  attr_accessor subtitle: ::String
1589
1639
  attr_accessor welcome_message: ::String
1590
1640
  attr_accessor sample_prompts_control_mode: ("ENABLED" | "DISABLED")
1641
+ attr_accessor identity_provider_configuration: Types::IdentityProviderConfiguration
1591
1642
  SENSITIVE: []
1592
1643
  end
1593
1644
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-qbusiness
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.10.0
4
+ version: 1.12.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: 2024-07-02 00:00:00.000000000 Z
11
+ date: 2024-08-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core