aws-sdk-customerprofiles 1.40.0 → 1.41.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-customerprofiles/client.rb +1 -1
- data/lib/aws-sdk-customerprofiles/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-customerprofiles.rb +1 -1
- data/sig/client.rbs +1307 -0
- data/sig/errors.rbs +31 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +1409 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,1409 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::CustomerProfiles
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class AddProfileKeyRequest
|
17
|
+
attr_accessor profile_id: ::String
|
18
|
+
attr_accessor key_name: ::String
|
19
|
+
attr_accessor values: ::Array[::String]
|
20
|
+
attr_accessor domain_name: ::String
|
21
|
+
SENSITIVE: []
|
22
|
+
end
|
23
|
+
|
24
|
+
class AddProfileKeyResponse
|
25
|
+
attr_accessor key_name: ::String
|
26
|
+
attr_accessor values: ::Array[::String]
|
27
|
+
SENSITIVE: []
|
28
|
+
end
|
29
|
+
|
30
|
+
class AdditionalSearchKey
|
31
|
+
attr_accessor key_name: ::String
|
32
|
+
attr_accessor values: ::Array[::String]
|
33
|
+
SENSITIVE: []
|
34
|
+
end
|
35
|
+
|
36
|
+
class Address
|
37
|
+
attr_accessor address_1: ::String
|
38
|
+
attr_accessor address_2: ::String
|
39
|
+
attr_accessor address_3: ::String
|
40
|
+
attr_accessor address_4: ::String
|
41
|
+
attr_accessor city: ::String
|
42
|
+
attr_accessor county: ::String
|
43
|
+
attr_accessor state: ::String
|
44
|
+
attr_accessor province: ::String
|
45
|
+
attr_accessor country: ::String
|
46
|
+
attr_accessor postal_code: ::String
|
47
|
+
SENSITIVE: []
|
48
|
+
end
|
49
|
+
|
50
|
+
class AppflowIntegration
|
51
|
+
attr_accessor flow_definition: Types::FlowDefinition
|
52
|
+
attr_accessor batches: ::Array[Types::Batch]
|
53
|
+
SENSITIVE: [:flow_definition]
|
54
|
+
end
|
55
|
+
|
56
|
+
class AppflowIntegrationWorkflowAttributes
|
57
|
+
attr_accessor source_connector_type: ("Salesforce" | "Marketo" | "Zendesk" | "Servicenow" | "S3")
|
58
|
+
attr_accessor connector_profile_name: ::String
|
59
|
+
attr_accessor role_arn: ::String
|
60
|
+
SENSITIVE: []
|
61
|
+
end
|
62
|
+
|
63
|
+
class AppflowIntegrationWorkflowMetrics
|
64
|
+
attr_accessor records_processed: ::Integer
|
65
|
+
attr_accessor steps_completed: ::Integer
|
66
|
+
attr_accessor total_steps: ::Integer
|
67
|
+
SENSITIVE: []
|
68
|
+
end
|
69
|
+
|
70
|
+
class AppflowIntegrationWorkflowStep
|
71
|
+
attr_accessor flow_name: ::String
|
72
|
+
attr_accessor status: ("NOT_STARTED" | "IN_PROGRESS" | "COMPLETE" | "FAILED" | "SPLIT" | "RETRY" | "CANCELLED")
|
73
|
+
attr_accessor execution_message: ::String
|
74
|
+
attr_accessor records_processed: ::Integer
|
75
|
+
attr_accessor batch_records_start_time: ::String
|
76
|
+
attr_accessor batch_records_end_time: ::String
|
77
|
+
attr_accessor created_at: ::Time
|
78
|
+
attr_accessor last_updated_at: ::Time
|
79
|
+
SENSITIVE: []
|
80
|
+
end
|
81
|
+
|
82
|
+
class AttributeDetails
|
83
|
+
attr_accessor attributes: ::Array[Types::AttributeItem]
|
84
|
+
attr_accessor expression: ::String
|
85
|
+
SENSITIVE: []
|
86
|
+
end
|
87
|
+
|
88
|
+
class AttributeItem
|
89
|
+
attr_accessor name: ::String
|
90
|
+
SENSITIVE: []
|
91
|
+
end
|
92
|
+
|
93
|
+
class AttributeTypesSelector
|
94
|
+
attr_accessor attribute_matching_model: ("ONE_TO_ONE" | "MANY_TO_MANY")
|
95
|
+
attr_accessor address: ::Array[::String]
|
96
|
+
attr_accessor phone_number: ::Array[::String]
|
97
|
+
attr_accessor email_address: ::Array[::String]
|
98
|
+
SENSITIVE: []
|
99
|
+
end
|
100
|
+
|
101
|
+
class AutoMerging
|
102
|
+
attr_accessor enabled: bool
|
103
|
+
attr_accessor consolidation: Types::Consolidation
|
104
|
+
attr_accessor conflict_resolution: Types::ConflictResolution
|
105
|
+
attr_accessor min_allowed_confidence_score_for_merging: ::Float
|
106
|
+
SENSITIVE: []
|
107
|
+
end
|
108
|
+
|
109
|
+
class BadRequestException
|
110
|
+
attr_accessor message: ::String
|
111
|
+
SENSITIVE: []
|
112
|
+
end
|
113
|
+
|
114
|
+
class Batch
|
115
|
+
attr_accessor start_time: ::Time
|
116
|
+
attr_accessor end_time: ::Time
|
117
|
+
SENSITIVE: []
|
118
|
+
end
|
119
|
+
|
120
|
+
class Conditions
|
121
|
+
attr_accessor range: Types::Range
|
122
|
+
attr_accessor object_count: ::Integer
|
123
|
+
attr_accessor threshold: Types::Threshold
|
124
|
+
SENSITIVE: []
|
125
|
+
end
|
126
|
+
|
127
|
+
class ConflictResolution
|
128
|
+
attr_accessor conflict_resolving_model: ("RECENCY" | "SOURCE")
|
129
|
+
attr_accessor source_name: ::String
|
130
|
+
SENSITIVE: []
|
131
|
+
end
|
132
|
+
|
133
|
+
class ConnectorOperator
|
134
|
+
attr_accessor marketo: ("PROJECTION" | "LESS_THAN" | "GREATER_THAN" | "BETWEEN" | "ADDITION" | "MULTIPLICATION" | "DIVISION" | "SUBTRACTION" | "MASK_ALL" | "MASK_FIRST_N" | "MASK_LAST_N" | "VALIDATE_NON_NULL" | "VALIDATE_NON_ZERO" | "VALIDATE_NON_NEGATIVE" | "VALIDATE_NUMERIC" | "NO_OP")
|
135
|
+
attr_accessor s3: ("PROJECTION" | "LESS_THAN" | "GREATER_THAN" | "BETWEEN" | "LESS_THAN_OR_EQUAL_TO" | "GREATER_THAN_OR_EQUAL_TO" | "EQUAL_TO" | "NOT_EQUAL_TO" | "ADDITION" | "MULTIPLICATION" | "DIVISION" | "SUBTRACTION" | "MASK_ALL" | "MASK_FIRST_N" | "MASK_LAST_N" | "VALIDATE_NON_NULL" | "VALIDATE_NON_ZERO" | "VALIDATE_NON_NEGATIVE" | "VALIDATE_NUMERIC" | "NO_OP")
|
136
|
+
attr_accessor salesforce: ("PROJECTION" | "LESS_THAN" | "CONTAINS" | "GREATER_THAN" | "BETWEEN" | "LESS_THAN_OR_EQUAL_TO" | "GREATER_THAN_OR_EQUAL_TO" | "EQUAL_TO" | "NOT_EQUAL_TO" | "ADDITION" | "MULTIPLICATION" | "DIVISION" | "SUBTRACTION" | "MASK_ALL" | "MASK_FIRST_N" | "MASK_LAST_N" | "VALIDATE_NON_NULL" | "VALIDATE_NON_ZERO" | "VALIDATE_NON_NEGATIVE" | "VALIDATE_NUMERIC" | "NO_OP")
|
137
|
+
attr_accessor service_now: ("PROJECTION" | "CONTAINS" | "LESS_THAN" | "GREATER_THAN" | "BETWEEN" | "LESS_THAN_OR_EQUAL_TO" | "GREATER_THAN_OR_EQUAL_TO" | "EQUAL_TO" | "NOT_EQUAL_TO" | "ADDITION" | "MULTIPLICATION" | "DIVISION" | "SUBTRACTION" | "MASK_ALL" | "MASK_FIRST_N" | "MASK_LAST_N" | "VALIDATE_NON_NULL" | "VALIDATE_NON_ZERO" | "VALIDATE_NON_NEGATIVE" | "VALIDATE_NUMERIC" | "NO_OP")
|
138
|
+
attr_accessor zendesk: ("PROJECTION" | "GREATER_THAN" | "ADDITION" | "MULTIPLICATION" | "DIVISION" | "SUBTRACTION" | "MASK_ALL" | "MASK_FIRST_N" | "MASK_LAST_N" | "VALIDATE_NON_NULL" | "VALIDATE_NON_ZERO" | "VALIDATE_NON_NEGATIVE" | "VALIDATE_NUMERIC" | "NO_OP")
|
139
|
+
SENSITIVE: []
|
140
|
+
end
|
141
|
+
|
142
|
+
class Consolidation
|
143
|
+
attr_accessor matching_attributes_list: ::Array[::Array[::String]]
|
144
|
+
SENSITIVE: []
|
145
|
+
end
|
146
|
+
|
147
|
+
class CreateCalculatedAttributeDefinitionRequest
|
148
|
+
attr_accessor domain_name: ::String
|
149
|
+
attr_accessor calculated_attribute_name: ::String
|
150
|
+
attr_accessor display_name: ::String
|
151
|
+
attr_accessor description: ::String
|
152
|
+
attr_accessor attribute_details: Types::AttributeDetails
|
153
|
+
attr_accessor conditions: Types::Conditions
|
154
|
+
attr_accessor statistic: ("FIRST_OCCURRENCE" | "LAST_OCCURRENCE" | "COUNT" | "SUM" | "MINIMUM" | "MAXIMUM" | "AVERAGE" | "MAX_OCCURRENCE")
|
155
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
156
|
+
SENSITIVE: [:description, :attribute_details, :conditions, :statistic]
|
157
|
+
end
|
158
|
+
|
159
|
+
class CreateCalculatedAttributeDefinitionResponse
|
160
|
+
attr_accessor calculated_attribute_name: ::String
|
161
|
+
attr_accessor display_name: ::String
|
162
|
+
attr_accessor description: ::String
|
163
|
+
attr_accessor attribute_details: Types::AttributeDetails
|
164
|
+
attr_accessor conditions: Types::Conditions
|
165
|
+
attr_accessor statistic: ("FIRST_OCCURRENCE" | "LAST_OCCURRENCE" | "COUNT" | "SUM" | "MINIMUM" | "MAXIMUM" | "AVERAGE" | "MAX_OCCURRENCE")
|
166
|
+
attr_accessor created_at: ::Time
|
167
|
+
attr_accessor last_updated_at: ::Time
|
168
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
169
|
+
SENSITIVE: [:description, :attribute_details, :conditions, :statistic]
|
170
|
+
end
|
171
|
+
|
172
|
+
class CreateDomainRequest
|
173
|
+
attr_accessor domain_name: ::String
|
174
|
+
attr_accessor default_expiration_days: ::Integer
|
175
|
+
attr_accessor default_encryption_key: ::String
|
176
|
+
attr_accessor dead_letter_queue_url: ::String
|
177
|
+
attr_accessor matching: Types::MatchingRequest
|
178
|
+
attr_accessor rule_based_matching: Types::RuleBasedMatchingRequest
|
179
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
180
|
+
SENSITIVE: []
|
181
|
+
end
|
182
|
+
|
183
|
+
class CreateDomainResponse
|
184
|
+
attr_accessor domain_name: ::String
|
185
|
+
attr_accessor default_expiration_days: ::Integer
|
186
|
+
attr_accessor default_encryption_key: ::String
|
187
|
+
attr_accessor dead_letter_queue_url: ::String
|
188
|
+
attr_accessor matching: Types::MatchingResponse
|
189
|
+
attr_accessor rule_based_matching: Types::RuleBasedMatchingResponse
|
190
|
+
attr_accessor created_at: ::Time
|
191
|
+
attr_accessor last_updated_at: ::Time
|
192
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
193
|
+
SENSITIVE: []
|
194
|
+
end
|
195
|
+
|
196
|
+
class CreateEventStreamRequest
|
197
|
+
attr_accessor domain_name: ::String
|
198
|
+
attr_accessor uri: ::String
|
199
|
+
attr_accessor event_stream_name: ::String
|
200
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
201
|
+
SENSITIVE: []
|
202
|
+
end
|
203
|
+
|
204
|
+
class CreateEventStreamResponse
|
205
|
+
attr_accessor event_stream_arn: ::String
|
206
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
207
|
+
SENSITIVE: []
|
208
|
+
end
|
209
|
+
|
210
|
+
class CreateIntegrationWorkflowRequest
|
211
|
+
attr_accessor domain_name: ::String
|
212
|
+
attr_accessor workflow_type: ("APPFLOW_INTEGRATION")
|
213
|
+
attr_accessor integration_config: Types::IntegrationConfig
|
214
|
+
attr_accessor object_type_name: ::String
|
215
|
+
attr_accessor role_arn: ::String
|
216
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
217
|
+
SENSITIVE: []
|
218
|
+
end
|
219
|
+
|
220
|
+
class CreateIntegrationWorkflowResponse
|
221
|
+
attr_accessor workflow_id: ::String
|
222
|
+
attr_accessor message: ::String
|
223
|
+
SENSITIVE: []
|
224
|
+
end
|
225
|
+
|
226
|
+
class CreateProfileRequest
|
227
|
+
attr_accessor domain_name: ::String
|
228
|
+
attr_accessor account_number: ::String
|
229
|
+
attr_accessor additional_information: ::String
|
230
|
+
attr_accessor party_type: ("INDIVIDUAL" | "BUSINESS" | "OTHER")
|
231
|
+
attr_accessor business_name: ::String
|
232
|
+
attr_accessor first_name: ::String
|
233
|
+
attr_accessor middle_name: ::String
|
234
|
+
attr_accessor last_name: ::String
|
235
|
+
attr_accessor birth_date: ::String
|
236
|
+
attr_accessor gender: ("MALE" | "FEMALE" | "UNSPECIFIED")
|
237
|
+
attr_accessor phone_number: ::String
|
238
|
+
attr_accessor mobile_phone_number: ::String
|
239
|
+
attr_accessor home_phone_number: ::String
|
240
|
+
attr_accessor business_phone_number: ::String
|
241
|
+
attr_accessor email_address: ::String
|
242
|
+
attr_accessor personal_email_address: ::String
|
243
|
+
attr_accessor business_email_address: ::String
|
244
|
+
attr_accessor address: Types::Address
|
245
|
+
attr_accessor shipping_address: Types::Address
|
246
|
+
attr_accessor mailing_address: Types::Address
|
247
|
+
attr_accessor billing_address: Types::Address
|
248
|
+
attr_accessor attributes: ::Hash[::String, ::String]
|
249
|
+
attr_accessor party_type_string: ::String
|
250
|
+
attr_accessor gender_string: ::String
|
251
|
+
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]
|
252
|
+
end
|
253
|
+
|
254
|
+
class CreateProfileResponse
|
255
|
+
attr_accessor profile_id: ::String
|
256
|
+
SENSITIVE: []
|
257
|
+
end
|
258
|
+
|
259
|
+
class DeleteCalculatedAttributeDefinitionRequest
|
260
|
+
attr_accessor domain_name: ::String
|
261
|
+
attr_accessor calculated_attribute_name: ::String
|
262
|
+
SENSITIVE: []
|
263
|
+
end
|
264
|
+
|
265
|
+
class DeleteCalculatedAttributeDefinitionResponse < Aws::EmptyStructure
|
266
|
+
end
|
267
|
+
|
268
|
+
class DeleteDomainRequest
|
269
|
+
attr_accessor domain_name: ::String
|
270
|
+
SENSITIVE: []
|
271
|
+
end
|
272
|
+
|
273
|
+
class DeleteDomainResponse
|
274
|
+
attr_accessor message: ::String
|
275
|
+
SENSITIVE: []
|
276
|
+
end
|
277
|
+
|
278
|
+
class DeleteEventStreamRequest
|
279
|
+
attr_accessor domain_name: ::String
|
280
|
+
attr_accessor event_stream_name: ::String
|
281
|
+
SENSITIVE: []
|
282
|
+
end
|
283
|
+
|
284
|
+
class DeleteEventStreamResponse < Aws::EmptyStructure
|
285
|
+
end
|
286
|
+
|
287
|
+
class DeleteIntegrationRequest
|
288
|
+
attr_accessor domain_name: ::String
|
289
|
+
attr_accessor uri: ::String
|
290
|
+
SENSITIVE: []
|
291
|
+
end
|
292
|
+
|
293
|
+
class DeleteIntegrationResponse
|
294
|
+
attr_accessor message: ::String
|
295
|
+
SENSITIVE: []
|
296
|
+
end
|
297
|
+
|
298
|
+
class DeleteProfileKeyRequest
|
299
|
+
attr_accessor profile_id: ::String
|
300
|
+
attr_accessor key_name: ::String
|
301
|
+
attr_accessor values: ::Array[::String]
|
302
|
+
attr_accessor domain_name: ::String
|
303
|
+
SENSITIVE: []
|
304
|
+
end
|
305
|
+
|
306
|
+
class DeleteProfileKeyResponse
|
307
|
+
attr_accessor message: ::String
|
308
|
+
SENSITIVE: []
|
309
|
+
end
|
310
|
+
|
311
|
+
class DeleteProfileObjectRequest
|
312
|
+
attr_accessor profile_id: ::String
|
313
|
+
attr_accessor profile_object_unique_key: ::String
|
314
|
+
attr_accessor object_type_name: ::String
|
315
|
+
attr_accessor domain_name: ::String
|
316
|
+
SENSITIVE: []
|
317
|
+
end
|
318
|
+
|
319
|
+
class DeleteProfileObjectResponse
|
320
|
+
attr_accessor message: ::String
|
321
|
+
SENSITIVE: []
|
322
|
+
end
|
323
|
+
|
324
|
+
class DeleteProfileObjectTypeRequest
|
325
|
+
attr_accessor domain_name: ::String
|
326
|
+
attr_accessor object_type_name: ::String
|
327
|
+
SENSITIVE: []
|
328
|
+
end
|
329
|
+
|
330
|
+
class DeleteProfileObjectTypeResponse
|
331
|
+
attr_accessor message: ::String
|
332
|
+
SENSITIVE: []
|
333
|
+
end
|
334
|
+
|
335
|
+
class DeleteProfileRequest
|
336
|
+
attr_accessor profile_id: ::String
|
337
|
+
attr_accessor domain_name: ::String
|
338
|
+
SENSITIVE: []
|
339
|
+
end
|
340
|
+
|
341
|
+
class DeleteProfileResponse
|
342
|
+
attr_accessor message: ::String
|
343
|
+
SENSITIVE: []
|
344
|
+
end
|
345
|
+
|
346
|
+
class DeleteWorkflowRequest
|
347
|
+
attr_accessor domain_name: ::String
|
348
|
+
attr_accessor workflow_id: ::String
|
349
|
+
SENSITIVE: []
|
350
|
+
end
|
351
|
+
|
352
|
+
class DeleteWorkflowResponse < Aws::EmptyStructure
|
353
|
+
end
|
354
|
+
|
355
|
+
class DestinationSummary
|
356
|
+
attr_accessor uri: ::String
|
357
|
+
attr_accessor status: ("HEALTHY" | "UNHEALTHY")
|
358
|
+
attr_accessor unhealthy_since: ::Time
|
359
|
+
SENSITIVE: []
|
360
|
+
end
|
361
|
+
|
362
|
+
class DetectProfileObjectTypeRequest
|
363
|
+
attr_accessor objects: ::Array[::String]
|
364
|
+
attr_accessor domain_name: ::String
|
365
|
+
SENSITIVE: [:objects]
|
366
|
+
end
|
367
|
+
|
368
|
+
class DetectProfileObjectTypeResponse
|
369
|
+
attr_accessor detected_profile_object_types: ::Array[Types::DetectedProfileObjectType]
|
370
|
+
SENSITIVE: []
|
371
|
+
end
|
372
|
+
|
373
|
+
class DetectedProfileObjectType
|
374
|
+
attr_accessor source_last_updated_timestamp_format: ::String
|
375
|
+
attr_accessor fields: ::Hash[::String, Types::ObjectTypeField]
|
376
|
+
attr_accessor keys: ::Hash[::String, ::Array[Types::ObjectTypeKey]]
|
377
|
+
SENSITIVE: [:fields, :keys]
|
378
|
+
end
|
379
|
+
|
380
|
+
class DomainStats
|
381
|
+
attr_accessor profile_count: ::Integer
|
382
|
+
attr_accessor metering_profile_count: ::Integer
|
383
|
+
attr_accessor object_count: ::Integer
|
384
|
+
attr_accessor total_size: ::Integer
|
385
|
+
SENSITIVE: []
|
386
|
+
end
|
387
|
+
|
388
|
+
class EventStreamDestinationDetails
|
389
|
+
attr_accessor uri: ::String
|
390
|
+
attr_accessor status: ("HEALTHY" | "UNHEALTHY")
|
391
|
+
attr_accessor unhealthy_since: ::Time
|
392
|
+
attr_accessor message: ::String
|
393
|
+
SENSITIVE: []
|
394
|
+
end
|
395
|
+
|
396
|
+
class EventStreamSummary
|
397
|
+
attr_accessor domain_name: ::String
|
398
|
+
attr_accessor event_stream_name: ::String
|
399
|
+
attr_accessor event_stream_arn: ::String
|
400
|
+
attr_accessor state: ("RUNNING" | "STOPPED")
|
401
|
+
attr_accessor stopped_since: ::Time
|
402
|
+
attr_accessor destination_summary: Types::DestinationSummary
|
403
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
404
|
+
SENSITIVE: []
|
405
|
+
end
|
406
|
+
|
407
|
+
class ExportingConfig
|
408
|
+
attr_accessor s3_exporting: Types::S3ExportingConfig
|
409
|
+
SENSITIVE: []
|
410
|
+
end
|
411
|
+
|
412
|
+
class ExportingLocation
|
413
|
+
attr_accessor s3_exporting: Types::S3ExportingLocation
|
414
|
+
SENSITIVE: []
|
415
|
+
end
|
416
|
+
|
417
|
+
class FieldSourceProfileIds
|
418
|
+
attr_accessor account_number: ::String
|
419
|
+
attr_accessor additional_information: ::String
|
420
|
+
attr_accessor party_type: ::String
|
421
|
+
attr_accessor business_name: ::String
|
422
|
+
attr_accessor first_name: ::String
|
423
|
+
attr_accessor middle_name: ::String
|
424
|
+
attr_accessor last_name: ::String
|
425
|
+
attr_accessor birth_date: ::String
|
426
|
+
attr_accessor gender: ::String
|
427
|
+
attr_accessor phone_number: ::String
|
428
|
+
attr_accessor mobile_phone_number: ::String
|
429
|
+
attr_accessor home_phone_number: ::String
|
430
|
+
attr_accessor business_phone_number: ::String
|
431
|
+
attr_accessor email_address: ::String
|
432
|
+
attr_accessor personal_email_address: ::String
|
433
|
+
attr_accessor business_email_address: ::String
|
434
|
+
attr_accessor address: ::String
|
435
|
+
attr_accessor shipping_address: ::String
|
436
|
+
attr_accessor mailing_address: ::String
|
437
|
+
attr_accessor billing_address: ::String
|
438
|
+
attr_accessor attributes: ::Hash[::String, ::String]
|
439
|
+
SENSITIVE: []
|
440
|
+
end
|
441
|
+
|
442
|
+
class FlowDefinition
|
443
|
+
attr_accessor description: ::String
|
444
|
+
attr_accessor flow_name: ::String
|
445
|
+
attr_accessor kms_arn: ::String
|
446
|
+
attr_accessor source_flow_config: Types::SourceFlowConfig
|
447
|
+
attr_accessor tasks: ::Array[Types::Task]
|
448
|
+
attr_accessor trigger_config: Types::TriggerConfig
|
449
|
+
SENSITIVE: []
|
450
|
+
end
|
451
|
+
|
452
|
+
class FoundByKeyValue
|
453
|
+
attr_accessor key_name: ::String
|
454
|
+
attr_accessor values: ::Array[::String]
|
455
|
+
SENSITIVE: []
|
456
|
+
end
|
457
|
+
|
458
|
+
class GetAutoMergingPreviewRequest
|
459
|
+
attr_accessor domain_name: ::String
|
460
|
+
attr_accessor consolidation: Types::Consolidation
|
461
|
+
attr_accessor conflict_resolution: Types::ConflictResolution
|
462
|
+
attr_accessor min_allowed_confidence_score_for_merging: ::Float
|
463
|
+
SENSITIVE: []
|
464
|
+
end
|
465
|
+
|
466
|
+
class GetAutoMergingPreviewResponse
|
467
|
+
attr_accessor domain_name: ::String
|
468
|
+
attr_accessor number_of_matches_in_sample: ::Integer
|
469
|
+
attr_accessor number_of_profiles_in_sample: ::Integer
|
470
|
+
attr_accessor number_of_profiles_will_be_merged: ::Integer
|
471
|
+
SENSITIVE: []
|
472
|
+
end
|
473
|
+
|
474
|
+
class GetCalculatedAttributeDefinitionRequest
|
475
|
+
attr_accessor domain_name: ::String
|
476
|
+
attr_accessor calculated_attribute_name: ::String
|
477
|
+
SENSITIVE: []
|
478
|
+
end
|
479
|
+
|
480
|
+
class GetCalculatedAttributeDefinitionResponse
|
481
|
+
attr_accessor calculated_attribute_name: ::String
|
482
|
+
attr_accessor display_name: ::String
|
483
|
+
attr_accessor description: ::String
|
484
|
+
attr_accessor created_at: ::Time
|
485
|
+
attr_accessor last_updated_at: ::Time
|
486
|
+
attr_accessor statistic: ("FIRST_OCCURRENCE" | "LAST_OCCURRENCE" | "COUNT" | "SUM" | "MINIMUM" | "MAXIMUM" | "AVERAGE" | "MAX_OCCURRENCE")
|
487
|
+
attr_accessor conditions: Types::Conditions
|
488
|
+
attr_accessor attribute_details: Types::AttributeDetails
|
489
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
490
|
+
SENSITIVE: [:description, :statistic, :conditions, :attribute_details]
|
491
|
+
end
|
492
|
+
|
493
|
+
class GetCalculatedAttributeForProfileRequest
|
494
|
+
attr_accessor domain_name: ::String
|
495
|
+
attr_accessor profile_id: ::String
|
496
|
+
attr_accessor calculated_attribute_name: ::String
|
497
|
+
SENSITIVE: []
|
498
|
+
end
|
499
|
+
|
500
|
+
class GetCalculatedAttributeForProfileResponse
|
501
|
+
attr_accessor calculated_attribute_name: ::String
|
502
|
+
attr_accessor display_name: ::String
|
503
|
+
attr_accessor is_data_partial: ::String
|
504
|
+
attr_accessor value: ::String
|
505
|
+
SENSITIVE: []
|
506
|
+
end
|
507
|
+
|
508
|
+
class GetDomainRequest
|
509
|
+
attr_accessor domain_name: ::String
|
510
|
+
SENSITIVE: []
|
511
|
+
end
|
512
|
+
|
513
|
+
class GetDomainResponse
|
514
|
+
attr_accessor domain_name: ::String
|
515
|
+
attr_accessor default_expiration_days: ::Integer
|
516
|
+
attr_accessor default_encryption_key: ::String
|
517
|
+
attr_accessor dead_letter_queue_url: ::String
|
518
|
+
attr_accessor stats: Types::DomainStats
|
519
|
+
attr_accessor matching: Types::MatchingResponse
|
520
|
+
attr_accessor rule_based_matching: Types::RuleBasedMatchingResponse
|
521
|
+
attr_accessor created_at: ::Time
|
522
|
+
attr_accessor last_updated_at: ::Time
|
523
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
524
|
+
SENSITIVE: []
|
525
|
+
end
|
526
|
+
|
527
|
+
class GetEventStreamRequest
|
528
|
+
attr_accessor domain_name: ::String
|
529
|
+
attr_accessor event_stream_name: ::String
|
530
|
+
SENSITIVE: []
|
531
|
+
end
|
532
|
+
|
533
|
+
class GetEventStreamResponse
|
534
|
+
attr_accessor domain_name: ::String
|
535
|
+
attr_accessor event_stream_arn: ::String
|
536
|
+
attr_accessor created_at: ::Time
|
537
|
+
attr_accessor state: ("RUNNING" | "STOPPED")
|
538
|
+
attr_accessor stopped_since: ::Time
|
539
|
+
attr_accessor destination_details: Types::EventStreamDestinationDetails
|
540
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
541
|
+
SENSITIVE: []
|
542
|
+
end
|
543
|
+
|
544
|
+
class GetIdentityResolutionJobRequest
|
545
|
+
attr_accessor domain_name: ::String
|
546
|
+
attr_accessor job_id: ::String
|
547
|
+
SENSITIVE: []
|
548
|
+
end
|
549
|
+
|
550
|
+
class GetIdentityResolutionJobResponse
|
551
|
+
attr_accessor domain_name: ::String
|
552
|
+
attr_accessor job_id: ::String
|
553
|
+
attr_accessor status: ("PENDING" | "PREPROCESSING" | "FIND_MATCHING" | "MERGING" | "COMPLETED" | "PARTIAL_SUCCESS" | "FAILED")
|
554
|
+
attr_accessor message: ::String
|
555
|
+
attr_accessor job_start_time: ::Time
|
556
|
+
attr_accessor job_end_time: ::Time
|
557
|
+
attr_accessor last_updated_at: ::Time
|
558
|
+
attr_accessor job_expiration_time: ::Time
|
559
|
+
attr_accessor auto_merging: Types::AutoMerging
|
560
|
+
attr_accessor exporting_location: Types::ExportingLocation
|
561
|
+
attr_accessor job_stats: Types::JobStats
|
562
|
+
SENSITIVE: []
|
563
|
+
end
|
564
|
+
|
565
|
+
class GetIntegrationRequest
|
566
|
+
attr_accessor domain_name: ::String
|
567
|
+
attr_accessor uri: ::String
|
568
|
+
SENSITIVE: []
|
569
|
+
end
|
570
|
+
|
571
|
+
class GetIntegrationResponse
|
572
|
+
attr_accessor domain_name: ::String
|
573
|
+
attr_accessor uri: ::String
|
574
|
+
attr_accessor object_type_name: ::String
|
575
|
+
attr_accessor created_at: ::Time
|
576
|
+
attr_accessor last_updated_at: ::Time
|
577
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
578
|
+
attr_accessor object_type_names: ::Hash[::String, ::String]
|
579
|
+
attr_accessor workflow_id: ::String
|
580
|
+
attr_accessor is_unstructured: bool
|
581
|
+
SENSITIVE: []
|
582
|
+
end
|
583
|
+
|
584
|
+
class GetMatchesRequest
|
585
|
+
attr_accessor next_token: ::String
|
586
|
+
attr_accessor max_results: ::Integer
|
587
|
+
attr_accessor domain_name: ::String
|
588
|
+
SENSITIVE: []
|
589
|
+
end
|
590
|
+
|
591
|
+
class GetMatchesResponse
|
592
|
+
attr_accessor next_token: ::String
|
593
|
+
attr_accessor match_generation_date: ::Time
|
594
|
+
attr_accessor potential_matches: ::Integer
|
595
|
+
attr_accessor matches: ::Array[Types::MatchItem]
|
596
|
+
SENSITIVE: []
|
597
|
+
end
|
598
|
+
|
599
|
+
class GetProfileObjectTypeRequest
|
600
|
+
attr_accessor domain_name: ::String
|
601
|
+
attr_accessor object_type_name: ::String
|
602
|
+
SENSITIVE: []
|
603
|
+
end
|
604
|
+
|
605
|
+
class GetProfileObjectTypeResponse
|
606
|
+
attr_accessor object_type_name: ::String
|
607
|
+
attr_accessor description: ::String
|
608
|
+
attr_accessor template_id: ::String
|
609
|
+
attr_accessor expiration_days: ::Integer
|
610
|
+
attr_accessor encryption_key: ::String
|
611
|
+
attr_accessor allow_profile_creation: bool
|
612
|
+
attr_accessor source_last_updated_timestamp_format: ::String
|
613
|
+
attr_accessor fields: ::Hash[::String, Types::ObjectTypeField]
|
614
|
+
attr_accessor keys: ::Hash[::String, ::Array[Types::ObjectTypeKey]]
|
615
|
+
attr_accessor created_at: ::Time
|
616
|
+
attr_accessor last_updated_at: ::Time
|
617
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
618
|
+
SENSITIVE: [:description, :fields, :keys]
|
619
|
+
end
|
620
|
+
|
621
|
+
class GetProfileObjectTypeTemplateRequest
|
622
|
+
attr_accessor template_id: ::String
|
623
|
+
SENSITIVE: []
|
624
|
+
end
|
625
|
+
|
626
|
+
class GetProfileObjectTypeTemplateResponse
|
627
|
+
attr_accessor template_id: ::String
|
628
|
+
attr_accessor source_name: ::String
|
629
|
+
attr_accessor source_object: ::String
|
630
|
+
attr_accessor allow_profile_creation: bool
|
631
|
+
attr_accessor source_last_updated_timestamp_format: ::String
|
632
|
+
attr_accessor fields: ::Hash[::String, Types::ObjectTypeField]
|
633
|
+
attr_accessor keys: ::Hash[::String, ::Array[Types::ObjectTypeKey]]
|
634
|
+
SENSITIVE: [:fields, :keys]
|
635
|
+
end
|
636
|
+
|
637
|
+
class GetSimilarProfilesRequest
|
638
|
+
attr_accessor next_token: ::String
|
639
|
+
attr_accessor max_results: ::Integer
|
640
|
+
attr_accessor domain_name: ::String
|
641
|
+
attr_accessor match_type: ("RULE_BASED_MATCHING" | "ML_BASED_MATCHING")
|
642
|
+
attr_accessor search_key: ::String
|
643
|
+
attr_accessor search_value: ::String
|
644
|
+
SENSITIVE: []
|
645
|
+
end
|
646
|
+
|
647
|
+
class GetSimilarProfilesResponse
|
648
|
+
attr_accessor profile_ids: ::Array[::String]
|
649
|
+
attr_accessor match_id: ::String
|
650
|
+
attr_accessor match_type: ("RULE_BASED_MATCHING" | "ML_BASED_MATCHING")
|
651
|
+
attr_accessor rule_level: ::Integer
|
652
|
+
attr_accessor confidence_score: ::Float
|
653
|
+
attr_accessor next_token: ::String
|
654
|
+
SENSITIVE: []
|
655
|
+
end
|
656
|
+
|
657
|
+
class GetWorkflowRequest
|
658
|
+
attr_accessor domain_name: ::String
|
659
|
+
attr_accessor workflow_id: ::String
|
660
|
+
SENSITIVE: []
|
661
|
+
end
|
662
|
+
|
663
|
+
class GetWorkflowResponse
|
664
|
+
attr_accessor workflow_id: ::String
|
665
|
+
attr_accessor workflow_type: ("APPFLOW_INTEGRATION")
|
666
|
+
attr_accessor status: ("NOT_STARTED" | "IN_PROGRESS" | "COMPLETE" | "FAILED" | "SPLIT" | "RETRY" | "CANCELLED")
|
667
|
+
attr_accessor error_description: ::String
|
668
|
+
attr_accessor start_date: ::Time
|
669
|
+
attr_accessor last_updated_at: ::Time
|
670
|
+
attr_accessor attributes: Types::WorkflowAttributes
|
671
|
+
attr_accessor metrics: Types::WorkflowMetrics
|
672
|
+
SENSITIVE: []
|
673
|
+
end
|
674
|
+
|
675
|
+
class GetWorkflowStepsRequest
|
676
|
+
attr_accessor domain_name: ::String
|
677
|
+
attr_accessor workflow_id: ::String
|
678
|
+
attr_accessor next_token: ::String
|
679
|
+
attr_accessor max_results: ::Integer
|
680
|
+
SENSITIVE: []
|
681
|
+
end
|
682
|
+
|
683
|
+
class GetWorkflowStepsResponse
|
684
|
+
attr_accessor workflow_id: ::String
|
685
|
+
attr_accessor workflow_type: ("APPFLOW_INTEGRATION")
|
686
|
+
attr_accessor items: ::Array[Types::WorkflowStepItem]
|
687
|
+
attr_accessor next_token: ::String
|
688
|
+
SENSITIVE: []
|
689
|
+
end
|
690
|
+
|
691
|
+
class IdentityResolutionJob
|
692
|
+
attr_accessor domain_name: ::String
|
693
|
+
attr_accessor job_id: ::String
|
694
|
+
attr_accessor status: ("PENDING" | "PREPROCESSING" | "FIND_MATCHING" | "MERGING" | "COMPLETED" | "PARTIAL_SUCCESS" | "FAILED")
|
695
|
+
attr_accessor job_start_time: ::Time
|
696
|
+
attr_accessor job_end_time: ::Time
|
697
|
+
attr_accessor job_stats: Types::JobStats
|
698
|
+
attr_accessor exporting_location: Types::ExportingLocation
|
699
|
+
attr_accessor message: ::String
|
700
|
+
SENSITIVE: []
|
701
|
+
end
|
702
|
+
|
703
|
+
class IncrementalPullConfig
|
704
|
+
attr_accessor datetime_type_field_name: ::String
|
705
|
+
SENSITIVE: []
|
706
|
+
end
|
707
|
+
|
708
|
+
class IntegrationConfig
|
709
|
+
attr_accessor appflow_integration: Types::AppflowIntegration
|
710
|
+
SENSITIVE: []
|
711
|
+
end
|
712
|
+
|
713
|
+
class InternalServerException
|
714
|
+
attr_accessor message: ::String
|
715
|
+
SENSITIVE: []
|
716
|
+
end
|
717
|
+
|
718
|
+
class JobSchedule
|
719
|
+
attr_accessor day_of_the_week: ("SUNDAY" | "MONDAY" | "TUESDAY" | "WEDNESDAY" | "THURSDAY" | "FRIDAY" | "SATURDAY")
|
720
|
+
attr_accessor time: ::String
|
721
|
+
SENSITIVE: []
|
722
|
+
end
|
723
|
+
|
724
|
+
class JobStats
|
725
|
+
attr_accessor number_of_profiles_reviewed: ::Integer
|
726
|
+
attr_accessor number_of_matches_found: ::Integer
|
727
|
+
attr_accessor number_of_merges_done: ::Integer
|
728
|
+
SENSITIVE: []
|
729
|
+
end
|
730
|
+
|
731
|
+
class ListAccountIntegrationsRequest
|
732
|
+
attr_accessor uri: ::String
|
733
|
+
attr_accessor next_token: ::String
|
734
|
+
attr_accessor max_results: ::Integer
|
735
|
+
attr_accessor include_hidden: bool
|
736
|
+
SENSITIVE: []
|
737
|
+
end
|
738
|
+
|
739
|
+
class ListAccountIntegrationsResponse
|
740
|
+
attr_accessor items: ::Array[Types::ListIntegrationItem]
|
741
|
+
attr_accessor next_token: ::String
|
742
|
+
SENSITIVE: []
|
743
|
+
end
|
744
|
+
|
745
|
+
class ListCalculatedAttributeDefinitionItem
|
746
|
+
attr_accessor calculated_attribute_name: ::String
|
747
|
+
attr_accessor display_name: ::String
|
748
|
+
attr_accessor description: ::String
|
749
|
+
attr_accessor created_at: ::Time
|
750
|
+
attr_accessor last_updated_at: ::Time
|
751
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
752
|
+
SENSITIVE: [:description]
|
753
|
+
end
|
754
|
+
|
755
|
+
class ListCalculatedAttributeDefinitionsRequest
|
756
|
+
attr_accessor domain_name: ::String
|
757
|
+
attr_accessor next_token: ::String
|
758
|
+
attr_accessor max_results: ::Integer
|
759
|
+
SENSITIVE: []
|
760
|
+
end
|
761
|
+
|
762
|
+
class ListCalculatedAttributeDefinitionsResponse
|
763
|
+
attr_accessor items: ::Array[Types::ListCalculatedAttributeDefinitionItem]
|
764
|
+
attr_accessor next_token: ::String
|
765
|
+
SENSITIVE: [:items]
|
766
|
+
end
|
767
|
+
|
768
|
+
class ListCalculatedAttributeForProfileItem
|
769
|
+
attr_accessor calculated_attribute_name: ::String
|
770
|
+
attr_accessor display_name: ::String
|
771
|
+
attr_accessor is_data_partial: ::String
|
772
|
+
attr_accessor value: ::String
|
773
|
+
SENSITIVE: []
|
774
|
+
end
|
775
|
+
|
776
|
+
class ListCalculatedAttributesForProfileRequest
|
777
|
+
attr_accessor next_token: ::String
|
778
|
+
attr_accessor max_results: ::Integer
|
779
|
+
attr_accessor domain_name: ::String
|
780
|
+
attr_accessor profile_id: ::String
|
781
|
+
SENSITIVE: []
|
782
|
+
end
|
783
|
+
|
784
|
+
class ListCalculatedAttributesForProfileResponse
|
785
|
+
attr_accessor items: ::Array[Types::ListCalculatedAttributeForProfileItem]
|
786
|
+
attr_accessor next_token: ::String
|
787
|
+
SENSITIVE: []
|
788
|
+
end
|
789
|
+
|
790
|
+
class ListDomainItem
|
791
|
+
attr_accessor domain_name: ::String
|
792
|
+
attr_accessor created_at: ::Time
|
793
|
+
attr_accessor last_updated_at: ::Time
|
794
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
795
|
+
SENSITIVE: []
|
796
|
+
end
|
797
|
+
|
798
|
+
class ListDomainsRequest
|
799
|
+
attr_accessor next_token: ::String
|
800
|
+
attr_accessor max_results: ::Integer
|
801
|
+
SENSITIVE: []
|
802
|
+
end
|
803
|
+
|
804
|
+
class ListDomainsResponse
|
805
|
+
attr_accessor items: ::Array[Types::ListDomainItem]
|
806
|
+
attr_accessor next_token: ::String
|
807
|
+
SENSITIVE: []
|
808
|
+
end
|
809
|
+
|
810
|
+
class ListEventStreamsRequest
|
811
|
+
attr_accessor domain_name: ::String
|
812
|
+
attr_accessor next_token: ::String
|
813
|
+
attr_accessor max_results: ::Integer
|
814
|
+
SENSITIVE: []
|
815
|
+
end
|
816
|
+
|
817
|
+
class ListEventStreamsResponse
|
818
|
+
attr_accessor items: ::Array[Types::EventStreamSummary]
|
819
|
+
attr_accessor next_token: ::String
|
820
|
+
SENSITIVE: []
|
821
|
+
end
|
822
|
+
|
823
|
+
class ListIdentityResolutionJobsRequest
|
824
|
+
attr_accessor domain_name: ::String
|
825
|
+
attr_accessor next_token: ::String
|
826
|
+
attr_accessor max_results: ::Integer
|
827
|
+
SENSITIVE: []
|
828
|
+
end
|
829
|
+
|
830
|
+
class ListIdentityResolutionJobsResponse
|
831
|
+
attr_accessor identity_resolution_jobs_list: ::Array[Types::IdentityResolutionJob]
|
832
|
+
attr_accessor next_token: ::String
|
833
|
+
SENSITIVE: []
|
834
|
+
end
|
835
|
+
|
836
|
+
class ListIntegrationItem
|
837
|
+
attr_accessor domain_name: ::String
|
838
|
+
attr_accessor uri: ::String
|
839
|
+
attr_accessor object_type_name: ::String
|
840
|
+
attr_accessor created_at: ::Time
|
841
|
+
attr_accessor last_updated_at: ::Time
|
842
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
843
|
+
attr_accessor object_type_names: ::Hash[::String, ::String]
|
844
|
+
attr_accessor workflow_id: ::String
|
845
|
+
attr_accessor is_unstructured: bool
|
846
|
+
SENSITIVE: []
|
847
|
+
end
|
848
|
+
|
849
|
+
class ListIntegrationsRequest
|
850
|
+
attr_accessor domain_name: ::String
|
851
|
+
attr_accessor next_token: ::String
|
852
|
+
attr_accessor max_results: ::Integer
|
853
|
+
attr_accessor include_hidden: bool
|
854
|
+
SENSITIVE: []
|
855
|
+
end
|
856
|
+
|
857
|
+
class ListIntegrationsResponse
|
858
|
+
attr_accessor items: ::Array[Types::ListIntegrationItem]
|
859
|
+
attr_accessor next_token: ::String
|
860
|
+
SENSITIVE: []
|
861
|
+
end
|
862
|
+
|
863
|
+
class ListProfileObjectTypeItem
|
864
|
+
attr_accessor object_type_name: ::String
|
865
|
+
attr_accessor description: ::String
|
866
|
+
attr_accessor created_at: ::Time
|
867
|
+
attr_accessor last_updated_at: ::Time
|
868
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
869
|
+
SENSITIVE: []
|
870
|
+
end
|
871
|
+
|
872
|
+
class ListProfileObjectTypeTemplateItem
|
873
|
+
attr_accessor template_id: ::String
|
874
|
+
attr_accessor source_name: ::String
|
875
|
+
attr_accessor source_object: ::String
|
876
|
+
SENSITIVE: []
|
877
|
+
end
|
878
|
+
|
879
|
+
class ListProfileObjectTypeTemplatesRequest
|
880
|
+
attr_accessor next_token: ::String
|
881
|
+
attr_accessor max_results: ::Integer
|
882
|
+
SENSITIVE: []
|
883
|
+
end
|
884
|
+
|
885
|
+
class ListProfileObjectTypeTemplatesResponse
|
886
|
+
attr_accessor items: ::Array[Types::ListProfileObjectTypeTemplateItem]
|
887
|
+
attr_accessor next_token: ::String
|
888
|
+
SENSITIVE: []
|
889
|
+
end
|
890
|
+
|
891
|
+
class ListProfileObjectTypesRequest
|
892
|
+
attr_accessor domain_name: ::String
|
893
|
+
attr_accessor next_token: ::String
|
894
|
+
attr_accessor max_results: ::Integer
|
895
|
+
SENSITIVE: []
|
896
|
+
end
|
897
|
+
|
898
|
+
class ListProfileObjectTypesResponse
|
899
|
+
attr_accessor items: ::Array[Types::ListProfileObjectTypeItem]
|
900
|
+
attr_accessor next_token: ::String
|
901
|
+
SENSITIVE: [:items]
|
902
|
+
end
|
903
|
+
|
904
|
+
class ListProfileObjectsItem
|
905
|
+
attr_accessor object_type_name: ::String
|
906
|
+
attr_accessor profile_object_unique_key: ::String
|
907
|
+
attr_accessor object: ::String
|
908
|
+
SENSITIVE: [:object]
|
909
|
+
end
|
910
|
+
|
911
|
+
class ListProfileObjectsRequest
|
912
|
+
attr_accessor next_token: ::String
|
913
|
+
attr_accessor max_results: ::Integer
|
914
|
+
attr_accessor domain_name: ::String
|
915
|
+
attr_accessor object_type_name: ::String
|
916
|
+
attr_accessor profile_id: ::String
|
917
|
+
attr_accessor object_filter: Types::ObjectFilter
|
918
|
+
SENSITIVE: []
|
919
|
+
end
|
920
|
+
|
921
|
+
class ListProfileObjectsResponse
|
922
|
+
attr_accessor items: ::Array[Types::ListProfileObjectsItem]
|
923
|
+
attr_accessor next_token: ::String
|
924
|
+
SENSITIVE: []
|
925
|
+
end
|
926
|
+
|
927
|
+
class ListRuleBasedMatchesRequest
|
928
|
+
attr_accessor next_token: ::String
|
929
|
+
attr_accessor max_results: ::Integer
|
930
|
+
attr_accessor domain_name: ::String
|
931
|
+
SENSITIVE: []
|
932
|
+
end
|
933
|
+
|
934
|
+
class ListRuleBasedMatchesResponse
|
935
|
+
attr_accessor match_ids: ::Array[::String]
|
936
|
+
attr_accessor next_token: ::String
|
937
|
+
SENSITIVE: []
|
938
|
+
end
|
939
|
+
|
940
|
+
class ListTagsForResourceRequest
|
941
|
+
attr_accessor resource_arn: ::String
|
942
|
+
SENSITIVE: []
|
943
|
+
end
|
944
|
+
|
945
|
+
class ListTagsForResourceResponse
|
946
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
947
|
+
SENSITIVE: []
|
948
|
+
end
|
949
|
+
|
950
|
+
class ListWorkflowsItem
|
951
|
+
attr_accessor workflow_type: ("APPFLOW_INTEGRATION")
|
952
|
+
attr_accessor workflow_id: ::String
|
953
|
+
attr_accessor status: ("NOT_STARTED" | "IN_PROGRESS" | "COMPLETE" | "FAILED" | "SPLIT" | "RETRY" | "CANCELLED")
|
954
|
+
attr_accessor status_description: ::String
|
955
|
+
attr_accessor created_at: ::Time
|
956
|
+
attr_accessor last_updated_at: ::Time
|
957
|
+
SENSITIVE: []
|
958
|
+
end
|
959
|
+
|
960
|
+
class ListWorkflowsRequest
|
961
|
+
attr_accessor domain_name: ::String
|
962
|
+
attr_accessor workflow_type: ("APPFLOW_INTEGRATION")
|
963
|
+
attr_accessor status: ("NOT_STARTED" | "IN_PROGRESS" | "COMPLETE" | "FAILED" | "SPLIT" | "RETRY" | "CANCELLED")
|
964
|
+
attr_accessor query_start_date: ::Time
|
965
|
+
attr_accessor query_end_date: ::Time
|
966
|
+
attr_accessor next_token: ::String
|
967
|
+
attr_accessor max_results: ::Integer
|
968
|
+
SENSITIVE: []
|
969
|
+
end
|
970
|
+
|
971
|
+
class ListWorkflowsResponse
|
972
|
+
attr_accessor items: ::Array[Types::ListWorkflowsItem]
|
973
|
+
attr_accessor next_token: ::String
|
974
|
+
SENSITIVE: []
|
975
|
+
end
|
976
|
+
|
977
|
+
class MarketoSourceProperties
|
978
|
+
attr_accessor object: ::String
|
979
|
+
SENSITIVE: []
|
980
|
+
end
|
981
|
+
|
982
|
+
class MatchItem
|
983
|
+
attr_accessor match_id: ::String
|
984
|
+
attr_accessor profile_ids: ::Array[::String]
|
985
|
+
attr_accessor confidence_score: ::Float
|
986
|
+
SENSITIVE: []
|
987
|
+
end
|
988
|
+
|
989
|
+
class MatchingRequest
|
990
|
+
attr_accessor enabled: bool
|
991
|
+
attr_accessor job_schedule: Types::JobSchedule
|
992
|
+
attr_accessor auto_merging: Types::AutoMerging
|
993
|
+
attr_accessor exporting_config: Types::ExportingConfig
|
994
|
+
SENSITIVE: []
|
995
|
+
end
|
996
|
+
|
997
|
+
class MatchingResponse
|
998
|
+
attr_accessor enabled: bool
|
999
|
+
attr_accessor job_schedule: Types::JobSchedule
|
1000
|
+
attr_accessor auto_merging: Types::AutoMerging
|
1001
|
+
attr_accessor exporting_config: Types::ExportingConfig
|
1002
|
+
SENSITIVE: []
|
1003
|
+
end
|
1004
|
+
|
1005
|
+
class MatchingRule
|
1006
|
+
attr_accessor rule: ::Array[::String]
|
1007
|
+
SENSITIVE: []
|
1008
|
+
end
|
1009
|
+
|
1010
|
+
class MergeProfilesRequest
|
1011
|
+
attr_accessor domain_name: ::String
|
1012
|
+
attr_accessor main_profile_id: ::String
|
1013
|
+
attr_accessor profile_ids_to_be_merged: ::Array[::String]
|
1014
|
+
attr_accessor field_source_profile_ids: Types::FieldSourceProfileIds
|
1015
|
+
SENSITIVE: []
|
1016
|
+
end
|
1017
|
+
|
1018
|
+
class MergeProfilesResponse
|
1019
|
+
attr_accessor message: ::String
|
1020
|
+
SENSITIVE: []
|
1021
|
+
end
|
1022
|
+
|
1023
|
+
class ObjectFilter
|
1024
|
+
attr_accessor key_name: ::String
|
1025
|
+
attr_accessor values: ::Array[::String]
|
1026
|
+
SENSITIVE: []
|
1027
|
+
end
|
1028
|
+
|
1029
|
+
class ObjectTypeField
|
1030
|
+
attr_accessor source: ::String
|
1031
|
+
attr_accessor target: ::String
|
1032
|
+
attr_accessor content_type: ("STRING" | "NUMBER" | "PHONE_NUMBER" | "EMAIL_ADDRESS" | "NAME")
|
1033
|
+
SENSITIVE: []
|
1034
|
+
end
|
1035
|
+
|
1036
|
+
class ObjectTypeKey
|
1037
|
+
attr_accessor standard_identifiers: ::Array[("PROFILE" | "ASSET" | "CASE" | "UNIQUE" | "SECONDARY" | "LOOKUP_ONLY" | "NEW_ONLY" | "ORDER")]
|
1038
|
+
attr_accessor field_names: ::Array[::String]
|
1039
|
+
SENSITIVE: []
|
1040
|
+
end
|
1041
|
+
|
1042
|
+
class Profile
|
1043
|
+
attr_accessor profile_id: ::String
|
1044
|
+
attr_accessor account_number: ::String
|
1045
|
+
attr_accessor additional_information: ::String
|
1046
|
+
attr_accessor party_type: ("INDIVIDUAL" | "BUSINESS" | "OTHER")
|
1047
|
+
attr_accessor business_name: ::String
|
1048
|
+
attr_accessor first_name: ::String
|
1049
|
+
attr_accessor middle_name: ::String
|
1050
|
+
attr_accessor last_name: ::String
|
1051
|
+
attr_accessor birth_date: ::String
|
1052
|
+
attr_accessor gender: ("MALE" | "FEMALE" | "UNSPECIFIED")
|
1053
|
+
attr_accessor phone_number: ::String
|
1054
|
+
attr_accessor mobile_phone_number: ::String
|
1055
|
+
attr_accessor home_phone_number: ::String
|
1056
|
+
attr_accessor business_phone_number: ::String
|
1057
|
+
attr_accessor email_address: ::String
|
1058
|
+
attr_accessor personal_email_address: ::String
|
1059
|
+
attr_accessor business_email_address: ::String
|
1060
|
+
attr_accessor address: Types::Address
|
1061
|
+
attr_accessor shipping_address: Types::Address
|
1062
|
+
attr_accessor mailing_address: Types::Address
|
1063
|
+
attr_accessor billing_address: Types::Address
|
1064
|
+
attr_accessor attributes: ::Hash[::String, ::String]
|
1065
|
+
attr_accessor found_by_items: ::Array[Types::FoundByKeyValue]
|
1066
|
+
attr_accessor party_type_string: ::String
|
1067
|
+
attr_accessor gender_string: ::String
|
1068
|
+
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]
|
1069
|
+
end
|
1070
|
+
|
1071
|
+
class PutIntegrationRequest
|
1072
|
+
attr_accessor domain_name: ::String
|
1073
|
+
attr_accessor uri: ::String
|
1074
|
+
attr_accessor object_type_name: ::String
|
1075
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1076
|
+
attr_accessor flow_definition: Types::FlowDefinition
|
1077
|
+
attr_accessor object_type_names: ::Hash[::String, ::String]
|
1078
|
+
SENSITIVE: [:flow_definition]
|
1079
|
+
end
|
1080
|
+
|
1081
|
+
class PutIntegrationResponse
|
1082
|
+
attr_accessor domain_name: ::String
|
1083
|
+
attr_accessor uri: ::String
|
1084
|
+
attr_accessor object_type_name: ::String
|
1085
|
+
attr_accessor created_at: ::Time
|
1086
|
+
attr_accessor last_updated_at: ::Time
|
1087
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1088
|
+
attr_accessor object_type_names: ::Hash[::String, ::String]
|
1089
|
+
attr_accessor workflow_id: ::String
|
1090
|
+
attr_accessor is_unstructured: bool
|
1091
|
+
SENSITIVE: []
|
1092
|
+
end
|
1093
|
+
|
1094
|
+
class PutProfileObjectRequest
|
1095
|
+
attr_accessor object_type_name: ::String
|
1096
|
+
attr_accessor object: ::String
|
1097
|
+
attr_accessor domain_name: ::String
|
1098
|
+
SENSITIVE: [:object]
|
1099
|
+
end
|
1100
|
+
|
1101
|
+
class PutProfileObjectResponse
|
1102
|
+
attr_accessor profile_object_unique_key: ::String
|
1103
|
+
SENSITIVE: []
|
1104
|
+
end
|
1105
|
+
|
1106
|
+
class PutProfileObjectTypeRequest
|
1107
|
+
attr_accessor domain_name: ::String
|
1108
|
+
attr_accessor object_type_name: ::String
|
1109
|
+
attr_accessor description: ::String
|
1110
|
+
attr_accessor template_id: ::String
|
1111
|
+
attr_accessor expiration_days: ::Integer
|
1112
|
+
attr_accessor encryption_key: ::String
|
1113
|
+
attr_accessor allow_profile_creation: bool
|
1114
|
+
attr_accessor source_last_updated_timestamp_format: ::String
|
1115
|
+
attr_accessor fields: ::Hash[::String, Types::ObjectTypeField]
|
1116
|
+
attr_accessor keys: ::Hash[::String, ::Array[Types::ObjectTypeKey]]
|
1117
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1118
|
+
SENSITIVE: [:description, :fields, :keys]
|
1119
|
+
end
|
1120
|
+
|
1121
|
+
class PutProfileObjectTypeResponse
|
1122
|
+
attr_accessor object_type_name: ::String
|
1123
|
+
attr_accessor description: ::String
|
1124
|
+
attr_accessor template_id: ::String
|
1125
|
+
attr_accessor expiration_days: ::Integer
|
1126
|
+
attr_accessor encryption_key: ::String
|
1127
|
+
attr_accessor allow_profile_creation: bool
|
1128
|
+
attr_accessor source_last_updated_timestamp_format: ::String
|
1129
|
+
attr_accessor fields: ::Hash[::String, Types::ObjectTypeField]
|
1130
|
+
attr_accessor keys: ::Hash[::String, ::Array[Types::ObjectTypeKey]]
|
1131
|
+
attr_accessor created_at: ::Time
|
1132
|
+
attr_accessor last_updated_at: ::Time
|
1133
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1134
|
+
SENSITIVE: [:description, :fields, :keys]
|
1135
|
+
end
|
1136
|
+
|
1137
|
+
class Range
|
1138
|
+
attr_accessor value: ::Integer
|
1139
|
+
attr_accessor unit: ("DAYS")
|
1140
|
+
SENSITIVE: []
|
1141
|
+
end
|
1142
|
+
|
1143
|
+
class ResourceNotFoundException
|
1144
|
+
attr_accessor message: ::String
|
1145
|
+
SENSITIVE: []
|
1146
|
+
end
|
1147
|
+
|
1148
|
+
class RuleBasedMatchingRequest
|
1149
|
+
attr_accessor enabled: bool
|
1150
|
+
attr_accessor matching_rules: ::Array[Types::MatchingRule]
|
1151
|
+
attr_accessor max_allowed_rule_level_for_merging: ::Integer
|
1152
|
+
attr_accessor max_allowed_rule_level_for_matching: ::Integer
|
1153
|
+
attr_accessor attribute_types_selector: Types::AttributeTypesSelector
|
1154
|
+
attr_accessor conflict_resolution: Types::ConflictResolution
|
1155
|
+
attr_accessor exporting_config: Types::ExportingConfig
|
1156
|
+
SENSITIVE: []
|
1157
|
+
end
|
1158
|
+
|
1159
|
+
class RuleBasedMatchingResponse
|
1160
|
+
attr_accessor enabled: bool
|
1161
|
+
attr_accessor matching_rules: ::Array[Types::MatchingRule]
|
1162
|
+
attr_accessor status: ("PENDING" | "IN_PROGRESS" | "ACTIVE")
|
1163
|
+
attr_accessor max_allowed_rule_level_for_merging: ::Integer
|
1164
|
+
attr_accessor max_allowed_rule_level_for_matching: ::Integer
|
1165
|
+
attr_accessor attribute_types_selector: Types::AttributeTypesSelector
|
1166
|
+
attr_accessor conflict_resolution: Types::ConflictResolution
|
1167
|
+
attr_accessor exporting_config: Types::ExportingConfig
|
1168
|
+
SENSITIVE: []
|
1169
|
+
end
|
1170
|
+
|
1171
|
+
class S3ExportingConfig
|
1172
|
+
attr_accessor s3_bucket_name: ::String
|
1173
|
+
attr_accessor s3_key_name: ::String
|
1174
|
+
SENSITIVE: []
|
1175
|
+
end
|
1176
|
+
|
1177
|
+
class S3ExportingLocation
|
1178
|
+
attr_accessor s3_bucket_name: ::String
|
1179
|
+
attr_accessor s3_key_name: ::String
|
1180
|
+
SENSITIVE: []
|
1181
|
+
end
|
1182
|
+
|
1183
|
+
class S3SourceProperties
|
1184
|
+
attr_accessor bucket_name: ::String
|
1185
|
+
attr_accessor bucket_prefix: ::String
|
1186
|
+
SENSITIVE: []
|
1187
|
+
end
|
1188
|
+
|
1189
|
+
class SalesforceSourceProperties
|
1190
|
+
attr_accessor object: ::String
|
1191
|
+
attr_accessor enable_dynamic_field_update: bool
|
1192
|
+
attr_accessor include_deleted_records: bool
|
1193
|
+
SENSITIVE: []
|
1194
|
+
end
|
1195
|
+
|
1196
|
+
class ScheduledTriggerProperties
|
1197
|
+
attr_accessor schedule_expression: ::String
|
1198
|
+
attr_accessor data_pull_mode: ("Incremental" | "Complete")
|
1199
|
+
attr_accessor schedule_start_time: ::Time
|
1200
|
+
attr_accessor schedule_end_time: ::Time
|
1201
|
+
attr_accessor timezone: ::String
|
1202
|
+
attr_accessor schedule_offset: ::Integer
|
1203
|
+
attr_accessor first_execution_from: ::Time
|
1204
|
+
SENSITIVE: []
|
1205
|
+
end
|
1206
|
+
|
1207
|
+
class SearchProfilesRequest
|
1208
|
+
attr_accessor next_token: ::String
|
1209
|
+
attr_accessor max_results: ::Integer
|
1210
|
+
attr_accessor domain_name: ::String
|
1211
|
+
attr_accessor key_name: ::String
|
1212
|
+
attr_accessor values: ::Array[::String]
|
1213
|
+
attr_accessor additional_search_keys: ::Array[Types::AdditionalSearchKey]
|
1214
|
+
attr_accessor logical_operator: ("AND" | "OR")
|
1215
|
+
SENSITIVE: []
|
1216
|
+
end
|
1217
|
+
|
1218
|
+
class SearchProfilesResponse
|
1219
|
+
attr_accessor items: ::Array[Types::Profile]
|
1220
|
+
attr_accessor next_token: ::String
|
1221
|
+
SENSITIVE: []
|
1222
|
+
end
|
1223
|
+
|
1224
|
+
class ServiceNowSourceProperties
|
1225
|
+
attr_accessor object: ::String
|
1226
|
+
SENSITIVE: []
|
1227
|
+
end
|
1228
|
+
|
1229
|
+
class SourceConnectorProperties
|
1230
|
+
attr_accessor marketo: Types::MarketoSourceProperties
|
1231
|
+
attr_accessor s3: Types::S3SourceProperties
|
1232
|
+
attr_accessor salesforce: Types::SalesforceSourceProperties
|
1233
|
+
attr_accessor service_now: Types::ServiceNowSourceProperties
|
1234
|
+
attr_accessor zendesk: Types::ZendeskSourceProperties
|
1235
|
+
SENSITIVE: []
|
1236
|
+
end
|
1237
|
+
|
1238
|
+
class SourceFlowConfig
|
1239
|
+
attr_accessor connector_profile_name: ::String
|
1240
|
+
attr_accessor connector_type: ("Salesforce" | "Marketo" | "Zendesk" | "Servicenow" | "S3")
|
1241
|
+
attr_accessor incremental_pull_config: Types::IncrementalPullConfig
|
1242
|
+
attr_accessor source_connector_properties: Types::SourceConnectorProperties
|
1243
|
+
SENSITIVE: []
|
1244
|
+
end
|
1245
|
+
|
1246
|
+
class TagResourceRequest
|
1247
|
+
attr_accessor resource_arn: ::String
|
1248
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1249
|
+
SENSITIVE: []
|
1250
|
+
end
|
1251
|
+
|
1252
|
+
class TagResourceResponse < Aws::EmptyStructure
|
1253
|
+
end
|
1254
|
+
|
1255
|
+
class Task
|
1256
|
+
attr_accessor connector_operator: Types::ConnectorOperator
|
1257
|
+
attr_accessor destination_field: ::String
|
1258
|
+
attr_accessor source_fields: ::Array[::String]
|
1259
|
+
attr_accessor task_properties: ::Hash[("VALUE" | "VALUES" | "DATA_TYPE" | "UPPER_BOUND" | "LOWER_BOUND" | "SOURCE_DATA_TYPE" | "DESTINATION_DATA_TYPE" | "VALIDATION_ACTION" | "MASK_VALUE" | "MASK_LENGTH" | "TRUNCATE_LENGTH" | "MATH_OPERATION_FIELDS_ORDER" | "CONCAT_FORMAT" | "SUBFIELD_CATEGORY_MAP"), ::String]
|
1260
|
+
attr_accessor task_type: ("Arithmetic" | "Filter" | "Map" | "Mask" | "Merge" | "Truncate" | "Validate")
|
1261
|
+
SENSITIVE: []
|
1262
|
+
end
|
1263
|
+
|
1264
|
+
class Threshold
|
1265
|
+
attr_accessor value: ::String
|
1266
|
+
attr_accessor operator: ("EQUAL_TO" | "GREATER_THAN" | "LESS_THAN" | "NOT_EQUAL_TO")
|
1267
|
+
SENSITIVE: []
|
1268
|
+
end
|
1269
|
+
|
1270
|
+
class ThrottlingException
|
1271
|
+
attr_accessor message: ::String
|
1272
|
+
SENSITIVE: []
|
1273
|
+
end
|
1274
|
+
|
1275
|
+
class TriggerConfig
|
1276
|
+
attr_accessor trigger_type: ("Scheduled" | "Event" | "OnDemand")
|
1277
|
+
attr_accessor trigger_properties: Types::TriggerProperties
|
1278
|
+
SENSITIVE: []
|
1279
|
+
end
|
1280
|
+
|
1281
|
+
class TriggerProperties
|
1282
|
+
attr_accessor scheduled: Types::ScheduledTriggerProperties
|
1283
|
+
SENSITIVE: []
|
1284
|
+
end
|
1285
|
+
|
1286
|
+
class UntagResourceRequest
|
1287
|
+
attr_accessor resource_arn: ::String
|
1288
|
+
attr_accessor tag_keys: ::Array[::String]
|
1289
|
+
SENSITIVE: []
|
1290
|
+
end
|
1291
|
+
|
1292
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
1293
|
+
end
|
1294
|
+
|
1295
|
+
class UpdateAddress
|
1296
|
+
attr_accessor address_1: ::String
|
1297
|
+
attr_accessor address_2: ::String
|
1298
|
+
attr_accessor address_3: ::String
|
1299
|
+
attr_accessor address_4: ::String
|
1300
|
+
attr_accessor city: ::String
|
1301
|
+
attr_accessor county: ::String
|
1302
|
+
attr_accessor state: ::String
|
1303
|
+
attr_accessor province: ::String
|
1304
|
+
attr_accessor country: ::String
|
1305
|
+
attr_accessor postal_code: ::String
|
1306
|
+
SENSITIVE: []
|
1307
|
+
end
|
1308
|
+
|
1309
|
+
class UpdateCalculatedAttributeDefinitionRequest
|
1310
|
+
attr_accessor domain_name: ::String
|
1311
|
+
attr_accessor calculated_attribute_name: ::String
|
1312
|
+
attr_accessor display_name: ::String
|
1313
|
+
attr_accessor description: ::String
|
1314
|
+
attr_accessor conditions: Types::Conditions
|
1315
|
+
SENSITIVE: [:description, :conditions]
|
1316
|
+
end
|
1317
|
+
|
1318
|
+
class UpdateCalculatedAttributeDefinitionResponse
|
1319
|
+
attr_accessor calculated_attribute_name: ::String
|
1320
|
+
attr_accessor display_name: ::String
|
1321
|
+
attr_accessor description: ::String
|
1322
|
+
attr_accessor created_at: ::Time
|
1323
|
+
attr_accessor last_updated_at: ::Time
|
1324
|
+
attr_accessor statistic: ("FIRST_OCCURRENCE" | "LAST_OCCURRENCE" | "COUNT" | "SUM" | "MINIMUM" | "MAXIMUM" | "AVERAGE" | "MAX_OCCURRENCE")
|
1325
|
+
attr_accessor conditions: Types::Conditions
|
1326
|
+
attr_accessor attribute_details: Types::AttributeDetails
|
1327
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1328
|
+
SENSITIVE: [:description, :statistic, :conditions, :attribute_details]
|
1329
|
+
end
|
1330
|
+
|
1331
|
+
class UpdateDomainRequest
|
1332
|
+
attr_accessor domain_name: ::String
|
1333
|
+
attr_accessor default_expiration_days: ::Integer
|
1334
|
+
attr_accessor default_encryption_key: ::String
|
1335
|
+
attr_accessor dead_letter_queue_url: ::String
|
1336
|
+
attr_accessor matching: Types::MatchingRequest
|
1337
|
+
attr_accessor rule_based_matching: Types::RuleBasedMatchingRequest
|
1338
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1339
|
+
SENSITIVE: []
|
1340
|
+
end
|
1341
|
+
|
1342
|
+
class UpdateDomainResponse
|
1343
|
+
attr_accessor domain_name: ::String
|
1344
|
+
attr_accessor default_expiration_days: ::Integer
|
1345
|
+
attr_accessor default_encryption_key: ::String
|
1346
|
+
attr_accessor dead_letter_queue_url: ::String
|
1347
|
+
attr_accessor matching: Types::MatchingResponse
|
1348
|
+
attr_accessor rule_based_matching: Types::RuleBasedMatchingResponse
|
1349
|
+
attr_accessor created_at: ::Time
|
1350
|
+
attr_accessor last_updated_at: ::Time
|
1351
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1352
|
+
SENSITIVE: []
|
1353
|
+
end
|
1354
|
+
|
1355
|
+
class UpdateProfileRequest
|
1356
|
+
attr_accessor domain_name: ::String
|
1357
|
+
attr_accessor profile_id: ::String
|
1358
|
+
attr_accessor additional_information: ::String
|
1359
|
+
attr_accessor account_number: ::String
|
1360
|
+
attr_accessor party_type: ("INDIVIDUAL" | "BUSINESS" | "OTHER")
|
1361
|
+
attr_accessor business_name: ::String
|
1362
|
+
attr_accessor first_name: ::String
|
1363
|
+
attr_accessor middle_name: ::String
|
1364
|
+
attr_accessor last_name: ::String
|
1365
|
+
attr_accessor birth_date: ::String
|
1366
|
+
attr_accessor gender: ("MALE" | "FEMALE" | "UNSPECIFIED")
|
1367
|
+
attr_accessor phone_number: ::String
|
1368
|
+
attr_accessor mobile_phone_number: ::String
|
1369
|
+
attr_accessor home_phone_number: ::String
|
1370
|
+
attr_accessor business_phone_number: ::String
|
1371
|
+
attr_accessor email_address: ::String
|
1372
|
+
attr_accessor personal_email_address: ::String
|
1373
|
+
attr_accessor business_email_address: ::String
|
1374
|
+
attr_accessor address: Types::UpdateAddress
|
1375
|
+
attr_accessor shipping_address: Types::UpdateAddress
|
1376
|
+
attr_accessor mailing_address: Types::UpdateAddress
|
1377
|
+
attr_accessor billing_address: Types::UpdateAddress
|
1378
|
+
attr_accessor attributes: ::Hash[::String, ::String]
|
1379
|
+
attr_accessor party_type_string: ::String
|
1380
|
+
attr_accessor gender_string: ::String
|
1381
|
+
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]
|
1382
|
+
end
|
1383
|
+
|
1384
|
+
class UpdateProfileResponse
|
1385
|
+
attr_accessor profile_id: ::String
|
1386
|
+
SENSITIVE: []
|
1387
|
+
end
|
1388
|
+
|
1389
|
+
class WorkflowAttributes
|
1390
|
+
attr_accessor appflow_integration: Types::AppflowIntegrationWorkflowAttributes
|
1391
|
+
SENSITIVE: []
|
1392
|
+
end
|
1393
|
+
|
1394
|
+
class WorkflowMetrics
|
1395
|
+
attr_accessor appflow_integration: Types::AppflowIntegrationWorkflowMetrics
|
1396
|
+
SENSITIVE: []
|
1397
|
+
end
|
1398
|
+
|
1399
|
+
class WorkflowStepItem
|
1400
|
+
attr_accessor appflow_integration: Types::AppflowIntegrationWorkflowStep
|
1401
|
+
SENSITIVE: []
|
1402
|
+
end
|
1403
|
+
|
1404
|
+
class ZendeskSourceProperties
|
1405
|
+
attr_accessor object: ::String
|
1406
|
+
SENSITIVE: []
|
1407
|
+
end
|
1408
|
+
end
|
1409
|
+
end
|