aws-sdk-customerprofiles 1.66.0 → 1.68.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 85b5da852426f74960adfe1a21d870982ecd5220a5258f21b80a0f493ce1ef43
4
- data.tar.gz: 8459a44e915d4eb0de88c6518a1d5dee181af0bc923d2b2a90191795f33d05f9
3
+ metadata.gz: 252b68b60987d38fb54b477c0e49c5690ccdd55af03b94007c007a3477314777
4
+ data.tar.gz: b53eccfefd5409964e659cf8de449cb8d78c4fb34d81573dce2b4626fcaa7752
5
5
  SHA512:
6
- metadata.gz: ca51417b78604203a0b4b886dc32b6713f56585464a9623bf3fd9293fbedda17e91b5e6237e3bd5dba94e0b3b636bf0dcdf32c687fd2c364da33b19a8f6c014a
7
- data.tar.gz: 38e8ae746dbf50ada8e2eaa361c2ebfb25ea14dc6dc30f2e9f74a02b88b8acaa06af283f76a01349844fa44da600585ddb57636a4fe7271e6db9fb1b30989063
6
+ metadata.gz: 6cb07cbf85370c9a447224d167b1ae75ed1f70e317afa96407f8c8b06bf8618ea2cdb4c1b9ee90ad51783fa050cd4c61d9fb6aa3cd3989f5ad418543c9cb1070
7
+ data.tar.gz: a82b279420d8a5fbe2d6ac4408ddfbadd64c3303385a7f495b4f0a5fe74ffe0822dcc204e81118b85bacdd35e298f1ec5c2a35ec64cb8b75aff5e0a7045a3060
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.68.0 (2025-07-31)
5
+ ------------------
6
+
7
+ * Feature - The release updates standard profile with 2 new fields that supports account-level engagement. Updated APIs include CreateProfile, UpdateProfile, MergeProfiles, SearchProfiles, BatchGetProfile, GetSegmentMembership, CreateSegmentDefinition, CreateSegmentEstimate.
8
+
9
+ 1.67.0 (2025-07-21)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.66.0 (2025-07-03)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.66.0
1
+ 1.68.0
@@ -95,7 +95,7 @@ module Aws::CustomerProfiles
95
95
  # class name or an instance of a plugin class.
96
96
  #
97
97
  # @option options [required, Aws::CredentialProvider] :credentials
98
- # Your AWS credentials. This can be an instance of any one of the
98
+ # Your AWS credentials used for authentication. This can be an instance of any one of the
99
99
  # following classes:
100
100
  #
101
101
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
@@ -128,18 +128,23 @@ module Aws::CustomerProfiles
128
128
  # locations will be searched for credentials:
129
129
  #
130
130
  # * `Aws.config[:credentials]`
131
+ #
131
132
  # * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
132
133
  # `:account_id` options.
133
- # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'],
134
- # ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID']
134
+ #
135
+ # * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
136
+ # `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
137
+ #
135
138
  # * `~/.aws/credentials`
139
+ #
136
140
  # * `~/.aws/config`
141
+ #
137
142
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
138
143
  # are very aggressive. Construct and pass an instance of
139
144
  # `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
140
145
  # enable retries and extended timeouts. Instance profile credential
141
- # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
142
- # to true.
146
+ # fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
147
+ # to `true`.
143
148
  #
144
149
  # @option options [required, String] :region
145
150
  # The AWS region to connect to. The configured `:region` is
@@ -167,6 +172,11 @@ module Aws::CustomerProfiles
167
172
  # When false, the request will raise a `RetryCapacityNotAvailableError` and will
168
173
  # not retry instead of sleeping.
169
174
  #
175
+ # @option options [Array<String>] :auth_scheme_preference
176
+ # A list of preferred authentication schemes to use when making a request. Supported values are:
177
+ # `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
178
+ # shared config as `auth_scheme_preference`, the value should be a comma-separated list.
179
+ #
170
180
  # @option options [Boolean] :client_side_monitoring (false)
171
181
  # When `true`, client-side metrics will be collected for all API requests from
172
182
  # this client.
@@ -253,8 +263,8 @@ module Aws::CustomerProfiles
253
263
  # 4 times. Used in `standard` and `adaptive` retry modes.
254
264
  #
255
265
  # @option options [String] :profile ("default")
256
- # Used when loading credentials from the shared credentials file
257
- # at HOME/.aws/credentials. When not specified, 'default' is used.
266
+ # Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
267
+ # When not specified, 'default' is used.
258
268
  #
259
269
  # @option options [String] :request_checksum_calculation ("when_supported")
260
270
  # Determines when a checksum will be calculated for request payloads. Values are:
@@ -367,7 +377,7 @@ module Aws::CustomerProfiles
367
377
  # `Aws::Telemetry::OTelProvider` for telemetry provider.
368
378
  #
369
379
  # @option options [Aws::TokenProvider] :token_provider
370
- # A Bearer Token Provider. This can be an instance of any one of the
380
+ # Your Bearer token used for authentication. This can be an instance of any one of the
371
381
  # following classes:
372
382
  #
373
383
  # * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
@@ -677,6 +687,17 @@ module Aws::CustomerProfiles
677
687
  # resp.profiles[0].found_by_items[0].values[0] #=> String
678
688
  # resp.profiles[0].party_type_string #=> String
679
689
  # resp.profiles[0].gender_string #=> String
690
+ # resp.profiles[0].profile_type #=> String, one of "ACCOUNT_PROFILE", "PROFILE"
691
+ # resp.profiles[0].engagement_preferences.phone #=> Array
692
+ # resp.profiles[0].engagement_preferences.phone[0].key_name #=> String
693
+ # resp.profiles[0].engagement_preferences.phone[0].key_value #=> String
694
+ # resp.profiles[0].engagement_preferences.phone[0].profile_id #=> String
695
+ # resp.profiles[0].engagement_preferences.phone[0].contact_type #=> String, one of "PhoneNumber", "MobilePhoneNumber", "HomePhoneNumber", "BusinessPhoneNumber", "EmailAddress", "PersonalEmailAddress", "BusinessEmailAddress"
696
+ # resp.profiles[0].engagement_preferences.email #=> Array
697
+ # resp.profiles[0].engagement_preferences.email[0].key_name #=> String
698
+ # resp.profiles[0].engagement_preferences.email[0].key_value #=> String
699
+ # resp.profiles[0].engagement_preferences.email[0].profile_id #=> String
700
+ # resp.profiles[0].engagement_preferences.email[0].contact_type #=> String, one of "PhoneNumber", "MobilePhoneNumber", "HomePhoneNumber", "BusinessPhoneNumber", "EmailAddress", "PersonalEmailAddress", "BusinessEmailAddress"
680
701
  #
681
702
  # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/BatchGetProfile AWS API Documentation
682
703
  #
@@ -1522,6 +1543,12 @@ module Aws::CustomerProfiles
1522
1543
  # @option params [String] :gender_string
1523
1544
  # An alternative to `Gender` which accepts any string as input.
1524
1545
  #
1546
+ # @option params [String] :profile_type
1547
+ # The type of the profile.
1548
+ #
1549
+ # @option params [Types::EngagementPreferences] :engagement_preferences
1550
+ # Object that defines the preferred methods of engagement, per channel.
1551
+ #
1525
1552
  # @return [Types::CreateProfileResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1526
1553
  #
1527
1554
  # * {Types::CreateProfileResponse#profile_id #profile_id} => String
@@ -1599,6 +1626,25 @@ module Aws::CustomerProfiles
1599
1626
  # },
1600
1627
  # party_type_string: "sensitiveString1To255",
1601
1628
  # gender_string: "sensitiveString1To255",
1629
+ # profile_type: "ACCOUNT_PROFILE", # accepts ACCOUNT_PROFILE, PROFILE
1630
+ # engagement_preferences: {
1631
+ # phone: [
1632
+ # {
1633
+ # key_name: "name",
1634
+ # key_value: "string1To255",
1635
+ # profile_id: "uuid",
1636
+ # contact_type: "PhoneNumber", # accepts PhoneNumber, MobilePhoneNumber, HomePhoneNumber, BusinessPhoneNumber, EmailAddress, PersonalEmailAddress, BusinessEmailAddress
1637
+ # },
1638
+ # ],
1639
+ # email: [
1640
+ # {
1641
+ # key_name: "name",
1642
+ # key_value: "string1To255",
1643
+ # profile_id: "uuid",
1644
+ # contact_type: "PhoneNumber", # accepts PhoneNumber, MobilePhoneNumber, HomePhoneNumber, BusinessPhoneNumber, EmailAddress, PersonalEmailAddress, BusinessEmailAddress
1645
+ # },
1646
+ # ],
1647
+ # },
1602
1648
  # })
1603
1649
  #
1604
1650
  # @example Response structure
@@ -1831,6 +1877,10 @@ module Aws::CustomerProfiles
1831
1877
  # values: ["string1To255"], # required
1832
1878
  # },
1833
1879
  # },
1880
+ # profile_type: {
1881
+ # dimension_type: "INCLUSIVE", # required, accepts INCLUSIVE, EXCLUSIVE
1882
+ # values: ["ACCOUNT_PROFILE"], # required, accepts ACCOUNT_PROFILE, PROFILE
1883
+ # },
1834
1884
  # },
1835
1885
  # calculated_attributes: {
1836
1886
  # "typeName" => {
@@ -2080,6 +2130,10 @@ module Aws::CustomerProfiles
2080
2130
  # values: ["string1To255"], # required
2081
2131
  # },
2082
2132
  # },
2133
+ # profile_type: {
2134
+ # dimension_type: "INCLUSIVE", # required, accepts INCLUSIVE, EXCLUSIVE
2135
+ # values: ["ACCOUNT_PROFILE"], # required, accepts ACCOUNT_PROFILE, PROFILE
2136
+ # },
2083
2137
  # },
2084
2138
  # calculated_attributes: {
2085
2139
  # "typeName" => {
@@ -3601,6 +3655,9 @@ module Aws::CustomerProfiles
3601
3655
  # resp.segment_groups.groups[0].dimensions[0].profile_attributes.attributes["typeName"].dimension_type #=> String, one of "INCLUSIVE", "EXCLUSIVE", "CONTAINS", "BEGINS_WITH", "ENDS_WITH", "BEFORE", "AFTER", "BETWEEN", "NOT_BETWEEN", "ON", "GREATER_THAN", "LESS_THAN", "GREATER_THAN_OR_EQUAL", "LESS_THAN_OR_EQUAL", "EQUAL"
3602
3656
  # resp.segment_groups.groups[0].dimensions[0].profile_attributes.attributes["typeName"].values #=> Array
3603
3657
  # resp.segment_groups.groups[0].dimensions[0].profile_attributes.attributes["typeName"].values[0] #=> String
3658
+ # resp.segment_groups.groups[0].dimensions[0].profile_attributes.profile_type.dimension_type #=> String, one of "INCLUSIVE", "EXCLUSIVE"
3659
+ # resp.segment_groups.groups[0].dimensions[0].profile_attributes.profile_type.values #=> Array
3660
+ # resp.segment_groups.groups[0].dimensions[0].profile_attributes.profile_type.values[0] #=> String, one of "ACCOUNT_PROFILE", "PROFILE"
3604
3661
  # resp.segment_groups.groups[0].dimensions[0].calculated_attributes #=> Hash
3605
3662
  # resp.segment_groups.groups[0].dimensions[0].calculated_attributes["typeName"].dimension_type #=> String, one of "INCLUSIVE", "EXCLUSIVE", "CONTAINS", "BEGINS_WITH", "ENDS_WITH", "BEFORE", "AFTER", "BETWEEN", "NOT_BETWEEN", "ON", "GREATER_THAN", "LESS_THAN", "GREATER_THAN_OR_EQUAL", "LESS_THAN_OR_EQUAL", "EQUAL"
3606
3663
  # resp.segment_groups.groups[0].dimensions[0].calculated_attributes["typeName"].values #=> Array
@@ -3766,6 +3823,17 @@ module Aws::CustomerProfiles
3766
3823
  # resp.profiles[0].profile.found_by_items[0].values[0] #=> String
3767
3824
  # resp.profiles[0].profile.party_type_string #=> String
3768
3825
  # resp.profiles[0].profile.gender_string #=> String
3826
+ # resp.profiles[0].profile.profile_type #=> String, one of "ACCOUNT_PROFILE", "PROFILE"
3827
+ # resp.profiles[0].profile.engagement_preferences.phone #=> Array
3828
+ # resp.profiles[0].profile.engagement_preferences.phone[0].key_name #=> String
3829
+ # resp.profiles[0].profile.engagement_preferences.phone[0].key_value #=> String
3830
+ # resp.profiles[0].profile.engagement_preferences.phone[0].profile_id #=> String
3831
+ # resp.profiles[0].profile.engagement_preferences.phone[0].contact_type #=> String, one of "PhoneNumber", "MobilePhoneNumber", "HomePhoneNumber", "BusinessPhoneNumber", "EmailAddress", "PersonalEmailAddress", "BusinessEmailAddress"
3832
+ # resp.profiles[0].profile.engagement_preferences.email #=> Array
3833
+ # resp.profiles[0].profile.engagement_preferences.email[0].key_name #=> String
3834
+ # resp.profiles[0].profile.engagement_preferences.email[0].key_value #=> String
3835
+ # resp.profiles[0].profile.engagement_preferences.email[0].profile_id #=> String
3836
+ # resp.profiles[0].profile.engagement_preferences.email[0].contact_type #=> String, one of "PhoneNumber", "MobilePhoneNumber", "HomePhoneNumber", "BusinessPhoneNumber", "EmailAddress", "PersonalEmailAddress", "BusinessEmailAddress"
3769
3837
  # resp.failures #=> Array
3770
3838
  # resp.failures[0].profile_id #=> String
3771
3839
  # resp.failures[0].message #=> String
@@ -5086,6 +5154,8 @@ module Aws::CustomerProfiles
5086
5154
  # attributes: {
5087
5155
  # "string1To255" => "uuid",
5088
5156
  # },
5157
+ # profile_type: "uuid",
5158
+ # engagement_preferences: "uuid",
5089
5159
  # },
5090
5160
  # })
5091
5161
  #
@@ -5609,6 +5679,17 @@ module Aws::CustomerProfiles
5609
5679
  # resp.items[0].found_by_items[0].values[0] #=> String
5610
5680
  # resp.items[0].party_type_string #=> String
5611
5681
  # resp.items[0].gender_string #=> String
5682
+ # resp.items[0].profile_type #=> String, one of "ACCOUNT_PROFILE", "PROFILE"
5683
+ # resp.items[0].engagement_preferences.phone #=> Array
5684
+ # resp.items[0].engagement_preferences.phone[0].key_name #=> String
5685
+ # resp.items[0].engagement_preferences.phone[0].key_value #=> String
5686
+ # resp.items[0].engagement_preferences.phone[0].profile_id #=> String
5687
+ # resp.items[0].engagement_preferences.phone[0].contact_type #=> String, one of "PhoneNumber", "MobilePhoneNumber", "HomePhoneNumber", "BusinessPhoneNumber", "EmailAddress", "PersonalEmailAddress", "BusinessEmailAddress"
5688
+ # resp.items[0].engagement_preferences.email #=> Array
5689
+ # resp.items[0].engagement_preferences.email[0].key_name #=> String
5690
+ # resp.items[0].engagement_preferences.email[0].key_value #=> String
5691
+ # resp.items[0].engagement_preferences.email[0].profile_id #=> String
5692
+ # resp.items[0].engagement_preferences.email[0].contact_type #=> String, one of "PhoneNumber", "MobilePhoneNumber", "HomePhoneNumber", "BusinessPhoneNumber", "EmailAddress", "PersonalEmailAddress", "BusinessEmailAddress"
5612
5693
  # resp.next_token #=> String
5613
5694
  #
5614
5695
  # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/SearchProfiles AWS API Documentation
@@ -6314,6 +6395,12 @@ module Aws::CustomerProfiles
6314
6395
  # @option params [String] :gender_string
6315
6396
  # An alternative to `Gender` which accepts any string as input.
6316
6397
  #
6398
+ # @option params [String] :profile_type
6399
+ # Determines the type of the profile.
6400
+ #
6401
+ # @option params [Types::EngagementPreferences] :engagement_preferences
6402
+ # Object that defines users preferred methods of engagement.
6403
+ #
6317
6404
  # @return [Types::UpdateProfileResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6318
6405
  #
6319
6406
  # * {Types::UpdateProfileResponse#profile_id #profile_id} => String
@@ -6392,6 +6479,25 @@ module Aws::CustomerProfiles
6392
6479
  # },
6393
6480
  # party_type_string: "sensitiveString0To255",
6394
6481
  # gender_string: "sensitiveString0To255",
6482
+ # profile_type: "ACCOUNT_PROFILE", # accepts ACCOUNT_PROFILE, PROFILE
6483
+ # engagement_preferences: {
6484
+ # phone: [
6485
+ # {
6486
+ # key_name: "name",
6487
+ # key_value: "string1To255",
6488
+ # profile_id: "uuid",
6489
+ # contact_type: "PhoneNumber", # accepts PhoneNumber, MobilePhoneNumber, HomePhoneNumber, BusinessPhoneNumber, EmailAddress, PersonalEmailAddress, BusinessEmailAddress
6490
+ # },
6491
+ # ],
6492
+ # email: [
6493
+ # {
6494
+ # key_name: "name",
6495
+ # key_value: "string1To255",
6496
+ # profile_id: "uuid",
6497
+ # contact_type: "PhoneNumber", # accepts PhoneNumber, MobilePhoneNumber, HomePhoneNumber, BusinessPhoneNumber, EmailAddress, PersonalEmailAddress, BusinessEmailAddress
6498
+ # },
6499
+ # ],
6500
+ # },
6395
6501
  # })
6396
6502
  #
6397
6503
  # @example Response structure
@@ -6425,7 +6531,7 @@ module Aws::CustomerProfiles
6425
6531
  tracer: tracer
6426
6532
  )
6427
6533
  context[:gem_name] = 'aws-sdk-customerprofiles'
6428
- context[:gem_version] = '1.66.0'
6534
+ context[:gem_version] = '1.68.0'
6429
6535
  Seahorse::Client::Request.new(handlers, context)
6430
6536
  end
6431
6537
 
@@ -67,6 +67,8 @@ module Aws::CustomerProfiles
67
67
  ConnectorOperator = Shapes::StructureShape.new(name: 'ConnectorOperator')
68
68
  ConnectorProfileName = Shapes::StringShape.new(name: 'ConnectorProfileName')
69
69
  Consolidation = Shapes::StructureShape.new(name: 'Consolidation')
70
+ ContactPreference = Shapes::StructureShape.new(name: 'ContactPreference')
71
+ ContactType = Shapes::StringShape.new(name: 'ContactType')
70
72
  CreateCalculatedAttributeDefinitionRequest = Shapes::StructureShape.new(name: 'CreateCalculatedAttributeDefinitionRequest')
71
73
  CreateCalculatedAttributeDefinitionResponse = Shapes::StructureShape.new(name: 'CreateCalculatedAttributeDefinitionResponse')
72
74
  CreateDomainLayoutRequest = Shapes::StructureShape.new(name: 'CreateDomainLayoutRequest')
@@ -134,7 +136,9 @@ module Aws::CustomerProfiles
134
136
  Double = Shapes::FloatShape.new(name: 'Double')
135
137
  Double0To1 = Shapes::FloatShape.new(name: 'Double0To1')
136
138
  EmailList = Shapes::ListShape.new(name: 'EmailList')
139
+ EmailPreferenceList = Shapes::ListShape.new(name: 'EmailPreferenceList')
137
140
  End = Shapes::IntegerShape.new(name: 'End')
141
+ EngagementPreferences = Shapes::StructureShape.new(name: 'EngagementPreferences')
138
142
  EstimateStatus = Shapes::StringShape.new(name: 'EstimateStatus')
139
143
  EventStreamDestinationDetails = Shapes::StructureShape.new(name: 'EventStreamDestinationDetails')
140
144
  EventStreamDestinationStatus = Shapes::StringShape.new(name: 'EventStreamDestinationStatus')
@@ -316,6 +320,7 @@ module Aws::CustomerProfiles
316
320
  PeriodUnit = Shapes::StringShape.new(name: 'PeriodUnit')
317
321
  Periods = Shapes::ListShape.new(name: 'Periods')
318
322
  PhoneNumberList = Shapes::ListShape.new(name: 'PhoneNumberList')
323
+ PhonePreferenceList = Shapes::ListShape.new(name: 'PhonePreferenceList')
319
324
  Profile = Shapes::StructureShape.new(name: 'Profile')
320
325
  ProfileAttributeValuesRequest = Shapes::StructureShape.new(name: 'ProfileAttributeValuesRequest')
321
326
  ProfileAttributeValuesResponse = Shapes::StructureShape.new(name: 'ProfileAttributeValuesResponse')
@@ -331,6 +336,10 @@ module Aws::CustomerProfiles
331
336
  ProfileObjectTypeTemplateList = Shapes::ListShape.new(name: 'ProfileObjectTypeTemplateList')
332
337
  ProfileQueryFailures = Shapes::StructureShape.new(name: 'ProfileQueryFailures')
333
338
  ProfileQueryResult = Shapes::StructureShape.new(name: 'ProfileQueryResult')
339
+ ProfileType = Shapes::StringShape.new(name: 'ProfileType')
340
+ ProfileTypeDimension = Shapes::StructureShape.new(name: 'ProfileTypeDimension')
341
+ ProfileTypeDimensionType = Shapes::StringShape.new(name: 'ProfileTypeDimensionType')
342
+ ProfileTypeValues = Shapes::ListShape.new(name: 'ProfileTypeValues')
334
343
  Profiles = Shapes::ListShape.new(name: 'Profiles')
335
344
  Property = Shapes::StringShape.new(name: 'Property')
336
345
  PutIntegrationRequest = Shapes::StructureShape.new(name: 'PutIntegrationRequest')
@@ -676,6 +685,12 @@ module Aws::CustomerProfiles
676
685
  Consolidation.add_member(:matching_attributes_list, Shapes::ShapeRef.new(shape: MatchingAttributesList, required: true, location_name: "MatchingAttributesList"))
677
686
  Consolidation.struct_class = Types::Consolidation
678
687
 
688
+ ContactPreference.add_member(:key_name, Shapes::ShapeRef.new(shape: name, location_name: "KeyName"))
689
+ ContactPreference.add_member(:key_value, Shapes::ShapeRef.new(shape: string1To255, location_name: "KeyValue"))
690
+ ContactPreference.add_member(:profile_id, Shapes::ShapeRef.new(shape: uuid, location_name: "ProfileId"))
691
+ ContactPreference.add_member(:contact_type, Shapes::ShapeRef.new(shape: ContactType, location_name: "ContactType"))
692
+ ContactPreference.struct_class = Types::ContactPreference
693
+
679
694
  CreateCalculatedAttributeDefinitionRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: name, required: true, location: "uri", location_name: "DomainName"))
680
695
  CreateCalculatedAttributeDefinitionRequest.add_member(:calculated_attribute_name, Shapes::ShapeRef.new(shape: typeName, required: true, location: "uri", location_name: "CalculatedAttributeName"))
681
696
  CreateCalculatedAttributeDefinitionRequest.add_member(:display_name, Shapes::ShapeRef.new(shape: displayName, location_name: "DisplayName"))
@@ -812,6 +827,8 @@ module Aws::CustomerProfiles
812
827
  CreateProfileRequest.add_member(:attributes, Shapes::ShapeRef.new(shape: Attributes, location_name: "Attributes"))
813
828
  CreateProfileRequest.add_member(:party_type_string, Shapes::ShapeRef.new(shape: sensitiveString1To255, location_name: "PartyTypeString"))
814
829
  CreateProfileRequest.add_member(:gender_string, Shapes::ShapeRef.new(shape: sensitiveString1To255, location_name: "GenderString"))
830
+ CreateProfileRequest.add_member(:profile_type, Shapes::ShapeRef.new(shape: ProfileType, location_name: "ProfileType"))
831
+ CreateProfileRequest.add_member(:engagement_preferences, Shapes::ShapeRef.new(shape: EngagementPreferences, location_name: "EngagementPreferences"))
815
832
  CreateProfileRequest.struct_class = Types::CreateProfileRequest
816
833
 
817
834
  CreateProfileResponse.add_member(:profile_id, Shapes::ShapeRef.new(shape: uuid, required: true, location_name: "ProfileId"))
@@ -995,6 +1012,12 @@ module Aws::CustomerProfiles
995
1012
 
996
1013
  EmailList.member = Shapes::ShapeRef.new(shape: string1To255)
997
1014
 
1015
+ EmailPreferenceList.member = Shapes::ShapeRef.new(shape: ContactPreference)
1016
+
1017
+ EngagementPreferences.add_member(:phone, Shapes::ShapeRef.new(shape: PhonePreferenceList, location_name: "Phone"))
1018
+ EngagementPreferences.add_member(:email, Shapes::ShapeRef.new(shape: EmailPreferenceList, location_name: "Email"))
1019
+ EngagementPreferences.struct_class = Types::EngagementPreferences
1020
+
998
1021
  EventStreamDestinationDetails.add_member(:uri, Shapes::ShapeRef.new(shape: string1To255, required: true, location_name: "Uri"))
999
1022
  EventStreamDestinationDetails.add_member(:status, Shapes::ShapeRef.new(shape: EventStreamDestinationStatus, required: true, location_name: "Status"))
1000
1023
  EventStreamDestinationDetails.add_member(:unhealthy_since, Shapes::ShapeRef.new(shape: timestamp, location_name: "UnhealthySince"))
@@ -1081,6 +1104,8 @@ module Aws::CustomerProfiles
1081
1104
  FieldSourceProfileIds.add_member(:mailing_address, Shapes::ShapeRef.new(shape: uuid, location_name: "MailingAddress"))
1082
1105
  FieldSourceProfileIds.add_member(:billing_address, Shapes::ShapeRef.new(shape: uuid, location_name: "BillingAddress"))
1083
1106
  FieldSourceProfileIds.add_member(:attributes, Shapes::ShapeRef.new(shape: AttributeSourceIdMap, location_name: "Attributes"))
1107
+ FieldSourceProfileIds.add_member(:profile_type, Shapes::ShapeRef.new(shape: uuid, location_name: "ProfileType"))
1108
+ FieldSourceProfileIds.add_member(:engagement_preferences, Shapes::ShapeRef.new(shape: uuid, location_name: "EngagementPreferences"))
1084
1109
  FieldSourceProfileIds.struct_class = Types::FieldSourceProfileIds
1085
1110
 
1086
1111
  Filter.add_member(:include, Shapes::ShapeRef.new(shape: Include, required: true, location_name: "Include"))
@@ -1781,6 +1806,8 @@ module Aws::CustomerProfiles
1781
1806
 
1782
1807
  PhoneNumberList.member = Shapes::ShapeRef.new(shape: string1To255)
1783
1808
 
1809
+ PhonePreferenceList.member = Shapes::ShapeRef.new(shape: ContactPreference)
1810
+
1784
1811
  Profile.add_member(:profile_id, Shapes::ShapeRef.new(shape: uuid, location_name: "ProfileId"))
1785
1812
  Profile.add_member(:account_number, Shapes::ShapeRef.new(shape: sensitiveString1To255, location_name: "AccountNumber"))
1786
1813
  Profile.add_member(:additional_information, Shapes::ShapeRef.new(shape: sensitiveString1To1000, location_name: "AdditionalInformation"))
@@ -1806,6 +1833,8 @@ module Aws::CustomerProfiles
1806
1833
  Profile.add_member(:found_by_items, Shapes::ShapeRef.new(shape: foundByList, location_name: "FoundByItems"))
1807
1834
  Profile.add_member(:party_type_string, Shapes::ShapeRef.new(shape: sensitiveString1To255, location_name: "PartyTypeString"))
1808
1835
  Profile.add_member(:gender_string, Shapes::ShapeRef.new(shape: sensitiveString1To255, location_name: "GenderString"))
1836
+ Profile.add_member(:profile_type, Shapes::ShapeRef.new(shape: ProfileType, location_name: "ProfileType"))
1837
+ Profile.add_member(:engagement_preferences, Shapes::ShapeRef.new(shape: EngagementPreferences, location_name: "EngagementPreferences"))
1809
1838
  Profile.struct_class = Types::Profile
1810
1839
 
1811
1840
  ProfileAttributeValuesRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: name, required: true, location: "uri", location_name: "DomainName"))
@@ -1839,6 +1868,7 @@ module Aws::CustomerProfiles
1839
1868
  ProfileAttributes.add_member(:mailing_address, Shapes::ShapeRef.new(shape: AddressDimension, location_name: "MailingAddress"))
1840
1869
  ProfileAttributes.add_member(:billing_address, Shapes::ShapeRef.new(shape: AddressDimension, location_name: "BillingAddress"))
1841
1870
  ProfileAttributes.add_member(:attributes, Shapes::ShapeRef.new(shape: CustomAttributes, location_name: "Attributes"))
1871
+ ProfileAttributes.add_member(:profile_type, Shapes::ShapeRef.new(shape: ProfileTypeDimension, location_name: "ProfileType"))
1842
1872
  ProfileAttributes.struct_class = Types::ProfileAttributes
1843
1873
 
1844
1874
  ProfileDimension.add_member(:dimension_type, Shapes::ShapeRef.new(shape: StringDimensionType, required: true, location_name: "DimensionType"))
@@ -1869,6 +1899,12 @@ module Aws::CustomerProfiles
1869
1899
  ProfileQueryResult.add_member(:profile, Shapes::ShapeRef.new(shape: Profile, location_name: "Profile"))
1870
1900
  ProfileQueryResult.struct_class = Types::ProfileQueryResult
1871
1901
 
1902
+ ProfileTypeDimension.add_member(:dimension_type, Shapes::ShapeRef.new(shape: ProfileTypeDimensionType, required: true, location_name: "DimensionType"))
1903
+ ProfileTypeDimension.add_member(:values, Shapes::ShapeRef.new(shape: ProfileTypeValues, required: true, location_name: "Values"))
1904
+ ProfileTypeDimension.struct_class = Types::ProfileTypeDimension
1905
+
1906
+ ProfileTypeValues.member = Shapes::ShapeRef.new(shape: ProfileType)
1907
+
1872
1908
  Profiles.member = Shapes::ShapeRef.new(shape: ProfileQueryResult)
1873
1909
 
1874
1910
  PutIntegrationRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: name, required: true, location: "uri", location_name: "DomainName"))
@@ -2236,6 +2272,8 @@ module Aws::CustomerProfiles
2236
2272
  UpdateProfileRequest.add_member(:attributes, Shapes::ShapeRef.new(shape: UpdateAttributes, location_name: "Attributes"))
2237
2273
  UpdateProfileRequest.add_member(:party_type_string, Shapes::ShapeRef.new(shape: sensitiveString0To255, location_name: "PartyTypeString"))
2238
2274
  UpdateProfileRequest.add_member(:gender_string, Shapes::ShapeRef.new(shape: sensitiveString0To255, location_name: "GenderString"))
2275
+ UpdateProfileRequest.add_member(:profile_type, Shapes::ShapeRef.new(shape: ProfileType, location_name: "ProfileType"))
2276
+ UpdateProfileRequest.add_member(:engagement_preferences, Shapes::ShapeRef.new(shape: EngagementPreferences, location_name: "EngagementPreferences"))
2239
2277
  UpdateProfileRequest.struct_class = Types::UpdateProfileRequest
2240
2278
 
2241
2279
  UpdateProfileResponse.add_member(:profile_id, Shapes::ShapeRef.new(shape: uuid, required: true, location_name: "ProfileId"))
@@ -888,6 +888,36 @@ module Aws::CustomerProfiles
888
888
  include Aws::Structure
889
889
  end
890
890
 
891
+ # Object that defines users contact preference.
892
+ #
893
+ # @!attribute [rw] key_name
894
+ # A searchable, unique identifier of a customer profile.
895
+ # @return [String]
896
+ #
897
+ # @!attribute [rw] key_value
898
+ # The key value used to look up profile based off the keyName.
899
+ # @return [String]
900
+ #
901
+ # @!attribute [rw] profile_id
902
+ # The unique identifier of a customer profile.
903
+ # @return [String]
904
+ #
905
+ # @!attribute [rw] contact_type
906
+ # The contact type used for engagement. For example: HomePhoneNumber,
907
+ # PersonalEmailAddress.
908
+ # @return [String]
909
+ #
910
+ # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/ContactPreference AWS API Documentation
911
+ #
912
+ class ContactPreference < Struct.new(
913
+ :key_name,
914
+ :key_value,
915
+ :profile_id,
916
+ :contact_type)
917
+ SENSITIVE = []
918
+ include Aws::Structure
919
+ end
920
+
891
921
  # @!attribute [rw] domain_name
892
922
  # The unique name of the domain.
893
923
  # @return [String]
@@ -1604,6 +1634,15 @@ module Aws::CustomerProfiles
1604
1634
  # An alternative to `Gender` which accepts any string as input.
1605
1635
  # @return [String]
1606
1636
  #
1637
+ # @!attribute [rw] profile_type
1638
+ # The type of the profile.
1639
+ # @return [String]
1640
+ #
1641
+ # @!attribute [rw] engagement_preferences
1642
+ # Object that defines the preferred methods of engagement, per
1643
+ # channel.
1644
+ # @return [Types::EngagementPreferences]
1645
+ #
1607
1646
  # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/CreateProfileRequest AWS API Documentation
1608
1647
  #
1609
1648
  class CreateProfileRequest < Struct.new(
@@ -1630,8 +1669,10 @@ module Aws::CustomerProfiles
1630
1669
  :billing_address,
1631
1670
  :attributes,
1632
1671
  :party_type_string,
1633
- :gender_string)
1634
- SENSITIVE = [:account_number, :additional_information, :party_type, :business_name, :first_name, :middle_name, :last_name, :birth_date, :gender, :phone_number, :mobile_phone_number, :home_phone_number, :business_phone_number, :email_address, :personal_email_address, :business_email_address, :address, :shipping_address, :mailing_address, :billing_address, :attributes, :party_type_string, :gender_string]
1672
+ :gender_string,
1673
+ :profile_type,
1674
+ :engagement_preferences)
1675
+ SENSITIVE = [:account_number, :additional_information, :party_type, :business_name, :first_name, :middle_name, :last_name, :birth_date, :gender, :phone_number, :mobile_phone_number, :home_phone_number, :business_phone_number, :email_address, :personal_email_address, :business_email_address, :address, :shipping_address, :mailing_address, :billing_address, :attributes, :party_type_string, :gender_string, :profile_type, :engagement_preferences]
1635
1676
  include Aws::Structure
1636
1677
  end
1637
1678
 
@@ -2370,6 +2411,25 @@ module Aws::CustomerProfiles
2370
2411
  include Aws::Structure
2371
2412
  end
2372
2413
 
2414
+ # Object that defines users preferred methods of engagement.
2415
+ #
2416
+ # @!attribute [rw] phone
2417
+ # A list of phone-related contact preferences
2418
+ # @return [Array<Types::ContactPreference>]
2419
+ #
2420
+ # @!attribute [rw] email
2421
+ # A list of email-related contact preferences
2422
+ # @return [Array<Types::ContactPreference>]
2423
+ #
2424
+ # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/EngagementPreferences AWS API Documentation
2425
+ #
2426
+ class EngagementPreferences < Struct.new(
2427
+ :phone,
2428
+ :email)
2429
+ SENSITIVE = []
2430
+ include Aws::Structure
2431
+ end
2432
+
2373
2433
  # Details of the destination being used for the EventStream.
2374
2434
  #
2375
2435
  # @!attribute [rw] uri
@@ -2692,6 +2752,15 @@ module Aws::CustomerProfiles
2692
2752
  # A unique identifier for the attributes field to be merged.
2693
2753
  # @return [Hash<String,String>]
2694
2754
  #
2755
+ # @!attribute [rw] profile_type
2756
+ # A unique identifier for the profile type field to be merged.
2757
+ # @return [String]
2758
+ #
2759
+ # @!attribute [rw] engagement_preferences
2760
+ # A unique identifier for the engagement preferences field to be
2761
+ # merged.
2762
+ # @return [String]
2763
+ #
2695
2764
  # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/FieldSourceProfileIds AWS API Documentation
2696
2765
  #
2697
2766
  class FieldSourceProfileIds < Struct.new(
@@ -2715,7 +2784,9 @@ module Aws::CustomerProfiles
2715
2784
  :shipping_address,
2716
2785
  :mailing_address,
2717
2786
  :billing_address,
2718
- :attributes)
2787
+ :attributes,
2788
+ :profile_type,
2789
+ :engagement_preferences)
2719
2790
  SENSITIVE = []
2720
2791
  include Aws::Structure
2721
2792
  end
@@ -6205,6 +6276,14 @@ module Aws::CustomerProfiles
6205
6276
  # An alternative to Gender which accepts any string as input.
6206
6277
  # @return [String]
6207
6278
  #
6279
+ # @!attribute [rw] profile_type
6280
+ # The type of the profile.
6281
+ # @return [String]
6282
+ #
6283
+ # @!attribute [rw] engagement_preferences
6284
+ # The customer or account’s engagement preferences.
6285
+ # @return [Types::EngagementPreferences]
6286
+ #
6208
6287
  # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/Profile AWS API Documentation
6209
6288
  #
6210
6289
  class Profile < Struct.new(
@@ -6232,8 +6311,10 @@ module Aws::CustomerProfiles
6232
6311
  :attributes,
6233
6312
  :found_by_items,
6234
6313
  :party_type_string,
6235
- :gender_string)
6236
- SENSITIVE = [:account_number, :additional_information, :party_type, :business_name, :first_name, :middle_name, :last_name, :birth_date, :gender, :phone_number, :mobile_phone_number, :home_phone_number, :business_phone_number, :email_address, :personal_email_address, :business_email_address, :address, :shipping_address, :mailing_address, :billing_address, :attributes, :party_type_string, :gender_string]
6314
+ :gender_string,
6315
+ :profile_type,
6316
+ :engagement_preferences)
6317
+ SENSITIVE = [:account_number, :additional_information, :party_type, :business_name, :first_name, :middle_name, :last_name, :birth_date, :gender, :phone_number, :mobile_phone_number, :home_phone_number, :business_phone_number, :email_address, :personal_email_address, :business_email_address, :address, :shipping_address, :mailing_address, :billing_address, :attributes, :party_type_string, :gender_string, :profile_type, :engagement_preferences]
6237
6318
  include Aws::Structure
6238
6319
  end
6239
6320
 
@@ -6371,6 +6452,10 @@ module Aws::CustomerProfiles
6371
6452
  # A field to describe values to segment on within attributes.
6372
6453
  # @return [Hash<String,Types::AttributeDimension>]
6373
6454
  #
6455
+ # @!attribute [rw] profile_type
6456
+ # A field to describe values to segment on within profile type.
6457
+ # @return [Types::ProfileTypeDimension]
6458
+ #
6374
6459
  # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/ProfileAttributes AWS API Documentation
6375
6460
  #
6376
6461
  class ProfileAttributes < Struct.new(
@@ -6394,7 +6479,8 @@ module Aws::CustomerProfiles
6394
6479
  :shipping_address,
6395
6480
  :mailing_address,
6396
6481
  :billing_address,
6397
- :attributes)
6482
+ :attributes,
6483
+ :profile_type)
6398
6484
  SENSITIVE = []
6399
6485
  include Aws::Structure
6400
6486
  end
@@ -6466,6 +6552,25 @@ module Aws::CustomerProfiles
6466
6552
  include Aws::Structure
6467
6553
  end
6468
6554
 
6555
+ # Object to hold the dimension of a profile type field to segment on.
6556
+ #
6557
+ # @!attribute [rw] dimension_type
6558
+ # The action to segment on.
6559
+ # @return [String]
6560
+ #
6561
+ # @!attribute [rw] values
6562
+ # The values to apply the DimensionType on.
6563
+ # @return [Array<String>]
6564
+ #
6565
+ # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/ProfileTypeDimension AWS API Documentation
6566
+ #
6567
+ class ProfileTypeDimension < Struct.new(
6568
+ :dimension_type,
6569
+ :values)
6570
+ SENSITIVE = [:values]
6571
+ include Aws::Structure
6572
+ end
6573
+
6469
6574
  # @!attribute [rw] domain_name
6470
6575
  # The unique name of the domain.
6471
6576
  # @return [String]
@@ -8336,6 +8441,14 @@ module Aws::CustomerProfiles
8336
8441
  # An alternative to `Gender` which accepts any string as input.
8337
8442
  # @return [String]
8338
8443
  #
8444
+ # @!attribute [rw] profile_type
8445
+ # Determines the type of the profile.
8446
+ # @return [String]
8447
+ #
8448
+ # @!attribute [rw] engagement_preferences
8449
+ # Object that defines users preferred methods of engagement.
8450
+ # @return [Types::EngagementPreferences]
8451
+ #
8339
8452
  # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/UpdateProfileRequest AWS API Documentation
8340
8453
  #
8341
8454
  class UpdateProfileRequest < Struct.new(
@@ -8363,8 +8476,10 @@ module Aws::CustomerProfiles
8363
8476
  :billing_address,
8364
8477
  :attributes,
8365
8478
  :party_type_string,
8366
- :gender_string)
8367
- SENSITIVE = [:additional_information, :account_number, :party_type, :business_name, :first_name, :middle_name, :last_name, :birth_date, :gender, :phone_number, :mobile_phone_number, :home_phone_number, :business_phone_number, :email_address, :personal_email_address, :business_email_address, :address, :shipping_address, :mailing_address, :billing_address, :attributes, :party_type_string, :gender_string]
8479
+ :gender_string,
8480
+ :profile_type,
8481
+ :engagement_preferences)
8482
+ SENSITIVE = [:additional_information, :account_number, :party_type, :business_name, :first_name, :middle_name, :last_name, :birth_date, :gender, :phone_number, :mobile_phone_number, :home_phone_number, :business_phone_number, :email_address, :personal_email_address, :business_email_address, :address, :shipping_address, :mailing_address, :billing_address, :attributes, :party_type_string, :gender_string, :profile_type, :engagement_preferences]
8368
8483
  include Aws::Structure
8369
8484
  end
8370
8485
 
@@ -54,7 +54,7 @@ module Aws::CustomerProfiles
54
54
  autoload :EndpointProvider, 'aws-sdk-customerprofiles/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-customerprofiles/endpoints'
56
56
 
57
- GEM_VERSION = '1.66.0'
57
+ GEM_VERSION = '1.68.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -18,6 +18,7 @@ module Aws
18
18
  ?account_id: String,
19
19
  ?active_endpoint_cache: bool,
20
20
  ?adaptive_retry_wait_to_fill: bool,
21
+ ?auth_scheme_preference: Array[String],
21
22
  ?client_side_monitoring: bool,
22
23
  ?client_side_monitoring_client_id: String,
23
24
  ?client_side_monitoring_host: String,
@@ -517,7 +518,26 @@ module Aws
517
518
  },
518
519
  ?attributes: Hash[::String, ::String],
519
520
  ?party_type_string: ::String,
520
- ?gender_string: ::String
521
+ ?gender_string: ::String,
522
+ ?profile_type: ("ACCOUNT_PROFILE" | "PROFILE"),
523
+ ?engagement_preferences: {
524
+ phone: Array[
525
+ {
526
+ key_name: ::String?,
527
+ key_value: ::String?,
528
+ profile_id: ::String?,
529
+ contact_type: ("PhoneNumber" | "MobilePhoneNumber" | "HomePhoneNumber" | "BusinessPhoneNumber" | "EmailAddress" | "PersonalEmailAddress" | "BusinessEmailAddress")?
530
+ },
531
+ ]?,
532
+ email: Array[
533
+ {
534
+ key_name: ::String?,
535
+ key_value: ::String?,
536
+ profile_id: ::String?,
537
+ contact_type: ("PhoneNumber" | "MobilePhoneNumber" | "HomePhoneNumber" | "BusinessPhoneNumber" | "EmailAddress" | "PersonalEmailAddress" | "BusinessEmailAddress")?
538
+ },
539
+ ]?
540
+ }
521
541
  ) -> _CreateProfileResponseSuccess
522
542
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateProfileResponseSuccess
523
543
 
@@ -713,7 +733,11 @@ module Aws
713
733
  attributes: Hash[::String, {
714
734
  dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH" | "BEFORE" | "AFTER" | "BETWEEN" | "NOT_BETWEEN" | "ON" | "GREATER_THAN" | "LESS_THAN" | "GREATER_THAN_OR_EQUAL" | "LESS_THAN_OR_EQUAL" | "EQUAL"),
715
735
  values: Array[::String]
716
- }]?
736
+ }]?,
737
+ profile_type: {
738
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE"),
739
+ values: Array[("ACCOUNT_PROFILE" | "PROFILE")]
740
+ }?
717
741
  }?,
718
742
  calculated_attributes: Hash[::String, {
719
743
  dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH" | "BEFORE" | "AFTER" | "BETWEEN" | "NOT_BETWEEN" | "ON" | "GREATER_THAN" | "LESS_THAN" | "GREATER_THAN_OR_EQUAL" | "LESS_THAN_OR_EQUAL" | "EQUAL"),
@@ -929,7 +953,11 @@ module Aws
929
953
  attributes: Hash[::String, {
930
954
  dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH" | "BEFORE" | "AFTER" | "BETWEEN" | "NOT_BETWEEN" | "ON" | "GREATER_THAN" | "LESS_THAN" | "GREATER_THAN_OR_EQUAL" | "LESS_THAN_OR_EQUAL" | "EQUAL"),
931
955
  values: Array[::String]
932
- }]?
956
+ }]?,
957
+ profile_type: {
958
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE"),
959
+ values: Array[("ACCOUNT_PROFILE" | "PROFILE")]
960
+ }?
933
961
  }?,
934
962
  calculated_attributes: Hash[::String, {
935
963
  dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH" | "BEFORE" | "AFTER" | "BETWEEN" | "NOT_BETWEEN" | "ON" | "GREATER_THAN" | "LESS_THAN" | "GREATER_THAN_OR_EQUAL" | "LESS_THAN_OR_EQUAL" | "EQUAL"),
@@ -1807,7 +1835,9 @@ module Aws
1807
1835
  shipping_address: ::String?,
1808
1836
  mailing_address: ::String?,
1809
1837
  billing_address: ::String?,
1810
- attributes: Hash[::String, ::String]?
1838
+ attributes: Hash[::String, ::String]?,
1839
+ profile_type: ::String?,
1840
+ engagement_preferences: ::String?
1811
1841
  }
1812
1842
  ) -> _MergeProfilesResponseSuccess
1813
1843
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _MergeProfilesResponseSuccess
@@ -2280,7 +2310,26 @@ module Aws
2280
2310
  },
2281
2311
  ?attributes: Hash[::String, ::String],
2282
2312
  ?party_type_string: ::String,
2283
- ?gender_string: ::String
2313
+ ?gender_string: ::String,
2314
+ ?profile_type: ("ACCOUNT_PROFILE" | "PROFILE"),
2315
+ ?engagement_preferences: {
2316
+ phone: Array[
2317
+ {
2318
+ key_name: ::String?,
2319
+ key_value: ::String?,
2320
+ profile_id: ::String?,
2321
+ contact_type: ("PhoneNumber" | "MobilePhoneNumber" | "HomePhoneNumber" | "BusinessPhoneNumber" | "EmailAddress" | "PersonalEmailAddress" | "BusinessEmailAddress")?
2322
+ },
2323
+ ]?,
2324
+ email: Array[
2325
+ {
2326
+ key_name: ::String?,
2327
+ key_value: ::String?,
2328
+ profile_id: ::String?,
2329
+ contact_type: ("PhoneNumber" | "MobilePhoneNumber" | "HomePhoneNumber" | "BusinessPhoneNumber" | "EmailAddress" | "PersonalEmailAddress" | "BusinessEmailAddress")?
2330
+ },
2331
+ ]?
2332
+ }
2284
2333
  ) -> _UpdateProfileResponseSuccess
2285
2334
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateProfileResponseSuccess
2286
2335
  end
data/sig/resource.rbs CHANGED
@@ -18,6 +18,7 @@ module Aws
18
18
  ?account_id: String,
19
19
  ?active_endpoint_cache: bool,
20
20
  ?adaptive_retry_wait_to_fill: bool,
21
+ ?auth_scheme_preference: Array[String],
21
22
  ?client_side_monitoring: bool,
22
23
  ?client_side_monitoring_client_id: String,
23
24
  ?client_side_monitoring_host: String,
data/sig/types.rbs CHANGED
@@ -228,6 +228,14 @@ module Aws::CustomerProfiles
228
228
  SENSITIVE: []
229
229
  end
230
230
 
231
+ class ContactPreference
232
+ attr_accessor key_name: ::String
233
+ attr_accessor key_value: ::String
234
+ attr_accessor profile_id: ::String
235
+ attr_accessor contact_type: ("PhoneNumber" | "MobilePhoneNumber" | "HomePhoneNumber" | "BusinessPhoneNumber" | "EmailAddress" | "PersonalEmailAddress" | "BusinessEmailAddress")
236
+ SENSITIVE: []
237
+ end
238
+
231
239
  class CreateCalculatedAttributeDefinitionRequest
232
240
  attr_accessor domain_name: ::String
233
241
  attr_accessor calculated_attribute_name: ::String
@@ -389,7 +397,9 @@ module Aws::CustomerProfiles
389
397
  attr_accessor attributes: ::Hash[::String, ::String]
390
398
  attr_accessor party_type_string: ::String
391
399
  attr_accessor gender_string: ::String
392
- SENSITIVE: [:account_number, :additional_information, :party_type, :business_name, :first_name, :middle_name, :last_name, :birth_date, :gender, :phone_number, :mobile_phone_number, :home_phone_number, :business_phone_number, :email_address, :personal_email_address, :business_email_address, :address, :shipping_address, :mailing_address, :billing_address, :attributes, :party_type_string, :gender_string]
400
+ attr_accessor profile_type: ("ACCOUNT_PROFILE" | "PROFILE")
401
+ attr_accessor engagement_preferences: Types::EngagementPreferences
402
+ SENSITIVE: [:account_number, :additional_information, :party_type, :business_name, :first_name, :middle_name, :last_name, :birth_date, :gender, :phone_number, :mobile_phone_number, :home_phone_number, :business_phone_number, :email_address, :personal_email_address, :business_email_address, :address, :shipping_address, :mailing_address, :billing_address, :attributes, :party_type_string, :gender_string, :profile_type, :engagement_preferences]
393
403
  end
394
404
 
395
405
  class CreateProfileResponse
@@ -641,6 +651,12 @@ module Aws::CustomerProfiles
641
651
  SENSITIVE: []
642
652
  end
643
653
 
654
+ class EngagementPreferences
655
+ attr_accessor phone: ::Array[Types::ContactPreference]
656
+ attr_accessor email: ::Array[Types::ContactPreference]
657
+ SENSITIVE: []
658
+ end
659
+
644
660
  class EventStreamDestinationDetails
645
661
  attr_accessor uri: ::String
646
662
  attr_accessor status: ("HEALTHY" | "UNHEALTHY")
@@ -725,6 +741,8 @@ module Aws::CustomerProfiles
725
741
  attr_accessor mailing_address: ::String
726
742
  attr_accessor billing_address: ::String
727
743
  attr_accessor attributes: ::Hash[::String, ::String]
744
+ attr_accessor profile_type: ::String
745
+ attr_accessor engagement_preferences: ::String
728
746
  SENSITIVE: []
729
747
  end
730
748
 
@@ -1638,7 +1656,9 @@ module Aws::CustomerProfiles
1638
1656
  attr_accessor found_by_items: ::Array[Types::FoundByKeyValue]
1639
1657
  attr_accessor party_type_string: ::String
1640
1658
  attr_accessor gender_string: ::String
1641
- SENSITIVE: [:account_number, :additional_information, :party_type, :business_name, :first_name, :middle_name, :last_name, :birth_date, :gender, :phone_number, :mobile_phone_number, :home_phone_number, :business_phone_number, :email_address, :personal_email_address, :business_email_address, :address, :shipping_address, :mailing_address, :billing_address, :attributes, :party_type_string, :gender_string]
1659
+ attr_accessor profile_type: ("ACCOUNT_PROFILE" | "PROFILE")
1660
+ attr_accessor engagement_preferences: Types::EngagementPreferences
1661
+ SENSITIVE: [:account_number, :additional_information, :party_type, :business_name, :first_name, :middle_name, :last_name, :birth_date, :gender, :phone_number, :mobile_phone_number, :home_phone_number, :business_phone_number, :email_address, :personal_email_address, :business_email_address, :address, :shipping_address, :mailing_address, :billing_address, :attributes, :party_type_string, :gender_string, :profile_type, :engagement_preferences]
1642
1662
  end
1643
1663
 
1644
1664
  class ProfileAttributeValuesRequest
@@ -1677,6 +1697,7 @@ module Aws::CustomerProfiles
1677
1697
  attr_accessor mailing_address: Types::AddressDimension
1678
1698
  attr_accessor billing_address: Types::AddressDimension
1679
1699
  attr_accessor attributes: ::Hash[::String, Types::AttributeDimension]
1700
+ attr_accessor profile_type: Types::ProfileTypeDimension
1680
1701
  SENSITIVE: []
1681
1702
  end
1682
1703
 
@@ -1700,6 +1721,12 @@ module Aws::CustomerProfiles
1700
1721
  SENSITIVE: []
1701
1722
  end
1702
1723
 
1724
+ class ProfileTypeDimension
1725
+ attr_accessor dimension_type: ("INCLUSIVE" | "EXCLUSIVE")
1726
+ attr_accessor values: ::Array[("ACCOUNT_PROFILE" | "PROFILE")]
1727
+ SENSITIVE: []
1728
+ end
1729
+
1703
1730
  class PutIntegrationRequest
1704
1731
  attr_accessor domain_name: ::String
1705
1732
  attr_accessor uri: ::String
@@ -2137,7 +2164,9 @@ module Aws::CustomerProfiles
2137
2164
  attr_accessor attributes: ::Hash[::String, ::String]
2138
2165
  attr_accessor party_type_string: ::String
2139
2166
  attr_accessor gender_string: ::String
2140
- SENSITIVE: [:additional_information, :account_number, :party_type, :business_name, :first_name, :middle_name, :last_name, :birth_date, :gender, :phone_number, :mobile_phone_number, :home_phone_number, :business_phone_number, :email_address, :personal_email_address, :business_email_address, :address, :shipping_address, :mailing_address, :billing_address, :attributes, :party_type_string, :gender_string]
2167
+ attr_accessor profile_type: ("ACCOUNT_PROFILE" | "PROFILE")
2168
+ attr_accessor engagement_preferences: Types::EngagementPreferences
2169
+ SENSITIVE: [:additional_information, :account_number, :party_type, :business_name, :first_name, :middle_name, :last_name, :birth_date, :gender, :phone_number, :mobile_phone_number, :home_phone_number, :business_phone_number, :email_address, :personal_email_address, :business_email_address, :address, :shipping_address, :mailing_address, :billing_address, :attributes, :party_type_string, :gender_string, :profile_type, :engagement_preferences]
2141
2170
  end
2142
2171
 
2143
2172
  class UpdateProfileResponse
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-customerprofiles
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.66.0
4
+ version: 1.68.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.225.0
21
+ version: 3.228.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.225.0
31
+ version: 3.228.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement