aws-sdk-customerprofiles 1.27.0 → 1.29.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.
@@ -25,6 +25,20 @@ module Aws::CustomerProfiles
25
25
  end
26
26
  end
27
27
 
28
+ class CreateCalculatedAttributeDefinition
29
+ def self.build(context)
30
+ unless context.config.regional_endpoint
31
+ endpoint = context.config.endpoint.to_s
32
+ end
33
+ Aws::CustomerProfiles::EndpointParameters.new(
34
+ region: context.config.region,
35
+ use_dual_stack: context.config.use_dualstack_endpoint,
36
+ use_fips: context.config.use_fips_endpoint,
37
+ endpoint: endpoint,
38
+ )
39
+ end
40
+ end
41
+
28
42
  class CreateDomain
29
43
  def self.build(context)
30
44
  unless context.config.regional_endpoint
@@ -67,6 +81,20 @@ module Aws::CustomerProfiles
67
81
  end
68
82
  end
69
83
 
84
+ class DeleteCalculatedAttributeDefinition
85
+ def self.build(context)
86
+ unless context.config.regional_endpoint
87
+ endpoint = context.config.endpoint.to_s
88
+ end
89
+ Aws::CustomerProfiles::EndpointParameters.new(
90
+ region: context.config.region,
91
+ use_dual_stack: context.config.use_dualstack_endpoint,
92
+ use_fips: context.config.use_fips_endpoint,
93
+ endpoint: endpoint,
94
+ )
95
+ end
96
+ end
97
+
70
98
  class DeleteDomain
71
99
  def self.build(context)
72
100
  unless context.config.regional_endpoint
@@ -179,6 +207,34 @@ module Aws::CustomerProfiles
179
207
  end
180
208
  end
181
209
 
210
+ class GetCalculatedAttributeDefinition
211
+ def self.build(context)
212
+ unless context.config.regional_endpoint
213
+ endpoint = context.config.endpoint.to_s
214
+ end
215
+ Aws::CustomerProfiles::EndpointParameters.new(
216
+ region: context.config.region,
217
+ use_dual_stack: context.config.use_dualstack_endpoint,
218
+ use_fips: context.config.use_fips_endpoint,
219
+ endpoint: endpoint,
220
+ )
221
+ end
222
+ end
223
+
224
+ class GetCalculatedAttributeForProfile
225
+ def self.build(context)
226
+ unless context.config.regional_endpoint
227
+ endpoint = context.config.endpoint.to_s
228
+ end
229
+ Aws::CustomerProfiles::EndpointParameters.new(
230
+ region: context.config.region,
231
+ use_dual_stack: context.config.use_dualstack_endpoint,
232
+ use_fips: context.config.use_fips_endpoint,
233
+ endpoint: endpoint,
234
+ )
235
+ end
236
+ end
237
+
182
238
  class GetDomain
183
239
  def self.build(context)
184
240
  unless context.config.regional_endpoint
@@ -305,6 +361,34 @@ module Aws::CustomerProfiles
305
361
  end
306
362
  end
307
363
 
364
+ class ListCalculatedAttributeDefinitions
365
+ def self.build(context)
366
+ unless context.config.regional_endpoint
367
+ endpoint = context.config.endpoint.to_s
368
+ end
369
+ Aws::CustomerProfiles::EndpointParameters.new(
370
+ region: context.config.region,
371
+ use_dual_stack: context.config.use_dualstack_endpoint,
372
+ use_fips: context.config.use_fips_endpoint,
373
+ endpoint: endpoint,
374
+ )
375
+ end
376
+ end
377
+
378
+ class ListCalculatedAttributesForProfile
379
+ def self.build(context)
380
+ unless context.config.regional_endpoint
381
+ endpoint = context.config.endpoint.to_s
382
+ end
383
+ Aws::CustomerProfiles::EndpointParameters.new(
384
+ region: context.config.region,
385
+ use_dual_stack: context.config.use_dualstack_endpoint,
386
+ use_fips: context.config.use_fips_endpoint,
387
+ endpoint: endpoint,
388
+ )
389
+ end
390
+ end
391
+
308
392
  class ListDomains
309
393
  def self.build(context)
310
394
  unless context.config.regional_endpoint
@@ -515,6 +599,20 @@ module Aws::CustomerProfiles
515
599
  end
516
600
  end
517
601
 
602
+ class UpdateCalculatedAttributeDefinition
603
+ def self.build(context)
604
+ unless context.config.regional_endpoint
605
+ endpoint = context.config.endpoint.to_s
606
+ end
607
+ Aws::CustomerProfiles::EndpointParameters.new(
608
+ region: context.config.region,
609
+ use_dual_stack: context.config.use_dualstack_endpoint,
610
+ use_fips: context.config.use_fips_endpoint,
611
+ endpoint: endpoint,
612
+ )
613
+ end
614
+ end
615
+
518
616
  class UpdateDomain
519
617
  def self.build(context)
520
618
  unless context.config.regional_endpoint
@@ -58,12 +58,16 @@ module Aws::CustomerProfiles
58
58
  case context.operation_name
59
59
  when :add_profile_key
60
60
  Aws::CustomerProfiles::Endpoints::AddProfileKey.build(context)
61
+ when :create_calculated_attribute_definition
62
+ Aws::CustomerProfiles::Endpoints::CreateCalculatedAttributeDefinition.build(context)
61
63
  when :create_domain
62
64
  Aws::CustomerProfiles::Endpoints::CreateDomain.build(context)
63
65
  when :create_integration_workflow
64
66
  Aws::CustomerProfiles::Endpoints::CreateIntegrationWorkflow.build(context)
65
67
  when :create_profile
66
68
  Aws::CustomerProfiles::Endpoints::CreateProfile.build(context)
69
+ when :delete_calculated_attribute_definition
70
+ Aws::CustomerProfiles::Endpoints::DeleteCalculatedAttributeDefinition.build(context)
67
71
  when :delete_domain
68
72
  Aws::CustomerProfiles::Endpoints::DeleteDomain.build(context)
69
73
  when :delete_integration
@@ -80,6 +84,10 @@ module Aws::CustomerProfiles
80
84
  Aws::CustomerProfiles::Endpoints::DeleteWorkflow.build(context)
81
85
  when :get_auto_merging_preview
82
86
  Aws::CustomerProfiles::Endpoints::GetAutoMergingPreview.build(context)
87
+ when :get_calculated_attribute_definition
88
+ Aws::CustomerProfiles::Endpoints::GetCalculatedAttributeDefinition.build(context)
89
+ when :get_calculated_attribute_for_profile
90
+ Aws::CustomerProfiles::Endpoints::GetCalculatedAttributeForProfile.build(context)
83
91
  when :get_domain
84
92
  Aws::CustomerProfiles::Endpoints::GetDomain.build(context)
85
93
  when :get_identity_resolution_job
@@ -98,6 +106,10 @@ module Aws::CustomerProfiles
98
106
  Aws::CustomerProfiles::Endpoints::GetWorkflowSteps.build(context)
99
107
  when :list_account_integrations
100
108
  Aws::CustomerProfiles::Endpoints::ListAccountIntegrations.build(context)
109
+ when :list_calculated_attribute_definitions
110
+ Aws::CustomerProfiles::Endpoints::ListCalculatedAttributeDefinitions.build(context)
111
+ when :list_calculated_attributes_for_profile
112
+ Aws::CustomerProfiles::Endpoints::ListCalculatedAttributesForProfile.build(context)
101
113
  when :list_domains
102
114
  Aws::CustomerProfiles::Endpoints::ListDomains.build(context)
103
115
  when :list_identity_resolution_jobs
@@ -128,6 +140,8 @@ module Aws::CustomerProfiles
128
140
  Aws::CustomerProfiles::Endpoints::TagResource.build(context)
129
141
  when :untag_resource
130
142
  Aws::CustomerProfiles::Endpoints::UntagResource.build(context)
143
+ when :update_calculated_attribute_definition
144
+ Aws::CustomerProfiles::Endpoints::UpdateCalculatedAttributeDefinition.build(context)
131
145
  when :update_domain
132
146
  Aws::CustomerProfiles::Endpoints::UpdateDomain.build(context)
133
147
  when :update_profile