aws-sdk-customerprofiles 1.65.0 → 1.67.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-customerprofiles/client.rb +282 -22
- data/lib/aws-sdk-customerprofiles/client_api.rb +174 -1
- data/lib/aws-sdk-customerprofiles/types.rb +354 -0
- data/lib/aws-sdk-customerprofiles.rb +1 -1
- data/sig/client.rbs +85 -0
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +96 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 948438e5243d77c73b8a46a0365347fc498d941db0faa566c5dc3a07cfb19cd4
|
4
|
+
data.tar.gz: 1872d9503f1a56d8a5d713c51ba00941600b810a72edf0b524e2712acd9f4d78
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 87ba17b54438276aa15a3f9e3ffe2328cf414fcae5d40d6c22cc8a9536c5c1cd9ed70ab3e659400f64026c268db5994735744ffffae8fb765fa8c04851ce8a14
|
7
|
+
data.tar.gz: 7cc86e757e763a6a1463c391a884555a5b148ca7766eb7665f2c0e6f6a7b6547abb1324b22951aed15b55dbf58cc79b780bba6c0172bcb5e5810f3a1c2ec1218
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.67.0 (2025-07-21)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.66.0 (2025-07-03)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release introduces capability of create Segments via importing a CSV file directly. This consumes the CSV file and creates/updates corresponding profiles for the particular domain.
|
13
|
+
|
4
14
|
1.65.0 (2025-06-09)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.67.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
|
-
#
|
134
|
-
#
|
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
|
-
#
|
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
|
-
#
|
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
|
@@ -2177,6 +2187,62 @@ module Aws::CustomerProfiles
|
|
2177
2187
|
req.send_request(options)
|
2178
2188
|
end
|
2179
2189
|
|
2190
|
+
# Creates an Upload job to ingest data for segment imports. The metadata
|
2191
|
+
# is created for the job with the provided field mapping and unique key.
|
2192
|
+
#
|
2193
|
+
# @option params [required, String] :domain_name
|
2194
|
+
# The unique name of the domain. Domain should be exists for the upload
|
2195
|
+
# job to be created.
|
2196
|
+
#
|
2197
|
+
# @option params [required, String] :display_name
|
2198
|
+
# The unique name of the upload job. Could be a file name to identify
|
2199
|
+
# the upload job.
|
2200
|
+
#
|
2201
|
+
# @option params [required, Hash<String,Types::ObjectTypeField>] :fields
|
2202
|
+
# The mapping between CSV Columns and Profile Object attributes. A map
|
2203
|
+
# of the name and ObjectType field.
|
2204
|
+
#
|
2205
|
+
# @option params [required, String] :unique_key
|
2206
|
+
# The unique key columns for de-duping the profiles used to map data to
|
2207
|
+
# the profile.
|
2208
|
+
#
|
2209
|
+
# @option params [Integer] :data_expiry
|
2210
|
+
# The expiry duration for the profiles ingested with the job. If not
|
2211
|
+
# provided, the system default of 2 weeks is used.
|
2212
|
+
#
|
2213
|
+
# @return [Types::CreateUploadJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2214
|
+
#
|
2215
|
+
# * {Types::CreateUploadJobResponse#job_id #job_id} => String
|
2216
|
+
#
|
2217
|
+
# @example Request syntax with placeholder values
|
2218
|
+
#
|
2219
|
+
# resp = client.create_upload_job({
|
2220
|
+
# domain_name: "name", # required
|
2221
|
+
# display_name: "string1To255", # required
|
2222
|
+
# fields: { # required
|
2223
|
+
# "fieldName" => {
|
2224
|
+
# source: "text",
|
2225
|
+
# target: "text",
|
2226
|
+
# content_type: "STRING", # accepts STRING, NUMBER, PHONE_NUMBER, EMAIL_ADDRESS, NAME
|
2227
|
+
# },
|
2228
|
+
# },
|
2229
|
+
# unique_key: "text", # required
|
2230
|
+
# data_expiry: 1,
|
2231
|
+
# })
|
2232
|
+
#
|
2233
|
+
# @example Response structure
|
2234
|
+
#
|
2235
|
+
# resp.job_id #=> String
|
2236
|
+
#
|
2237
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/CreateUploadJob AWS API Documentation
|
2238
|
+
#
|
2239
|
+
# @overload create_upload_job(params = {})
|
2240
|
+
# @param [Hash] params ({})
|
2241
|
+
def create_upload_job(params = {}, options = {})
|
2242
|
+
req = build_request(:create_upload_job, params)
|
2243
|
+
req.send_request(options)
|
2244
|
+
end
|
2245
|
+
|
2180
2246
|
# Deletes an existing calculated attribute definition. Note that
|
2181
2247
|
# deleting a default calculated attribute is possible, however once
|
2182
2248
|
# deleted, you will be unable to undo that action and will need to
|
@@ -2598,9 +2664,9 @@ module Aws::CustomerProfiles
|
|
2598
2664
|
# resp.detected_profile_object_types #=> Array
|
2599
2665
|
# resp.detected_profile_object_types[0].source_last_updated_timestamp_format #=> String
|
2600
2666
|
# resp.detected_profile_object_types[0].fields #=> Hash
|
2601
|
-
# resp.detected_profile_object_types[0].fields["
|
2602
|
-
# resp.detected_profile_object_types[0].fields["
|
2603
|
-
# resp.detected_profile_object_types[0].fields["
|
2667
|
+
# resp.detected_profile_object_types[0].fields["fieldName"].source #=> String
|
2668
|
+
# resp.detected_profile_object_types[0].fields["fieldName"].target #=> String
|
2669
|
+
# resp.detected_profile_object_types[0].fields["fieldName"].content_type #=> String, one of "STRING", "NUMBER", "PHONE_NUMBER", "EMAIL_ADDRESS", "NAME"
|
2604
2670
|
# resp.detected_profile_object_types[0].keys #=> Hash
|
2605
2671
|
# resp.detected_profile_object_types[0].keys["name"] #=> Array
|
2606
2672
|
# resp.detected_profile_object_types[0].keys["name"][0].standard_identifiers #=> Array
|
@@ -3312,9 +3378,9 @@ module Aws::CustomerProfiles
|
|
3312
3378
|
# resp.max_available_profile_object_count #=> Integer
|
3313
3379
|
# resp.max_profile_object_count #=> Integer
|
3314
3380
|
# resp.fields #=> Hash
|
3315
|
-
# resp.fields["
|
3316
|
-
# resp.fields["
|
3317
|
-
# resp.fields["
|
3381
|
+
# resp.fields["fieldName"].source #=> String
|
3382
|
+
# resp.fields["fieldName"].target #=> String
|
3383
|
+
# resp.fields["fieldName"].content_type #=> String, one of "STRING", "NUMBER", "PHONE_NUMBER", "EMAIL_ADDRESS", "NAME"
|
3318
3384
|
# resp.keys #=> Hash
|
3319
3385
|
# resp.keys["name"] #=> Array
|
3320
3386
|
# resp.keys["name"][0].standard_identifiers #=> Array
|
@@ -3370,9 +3436,9 @@ module Aws::CustomerProfiles
|
|
3370
3436
|
# resp.allow_profile_creation #=> Boolean
|
3371
3437
|
# resp.source_last_updated_timestamp_format #=> String
|
3372
3438
|
# resp.fields #=> Hash
|
3373
|
-
# resp.fields["
|
3374
|
-
# resp.fields["
|
3375
|
-
# resp.fields["
|
3439
|
+
# resp.fields["fieldName"].source #=> String
|
3440
|
+
# resp.fields["fieldName"].target #=> String
|
3441
|
+
# resp.fields["fieldName"].content_type #=> String, one of "STRING", "NUMBER", "PHONE_NUMBER", "EMAIL_ADDRESS", "NAME"
|
3376
3442
|
# resp.keys #=> Hash
|
3377
3443
|
# resp.keys["name"] #=> Array
|
3378
3444
|
# resp.keys["name"][0].standard_identifiers #=> Array
|
@@ -3836,6 +3902,99 @@ module Aws::CustomerProfiles
|
|
3836
3902
|
req.send_request(options)
|
3837
3903
|
end
|
3838
3904
|
|
3905
|
+
# This API retrieves the details of a specific upload job.
|
3906
|
+
#
|
3907
|
+
# @option params [required, String] :domain_name
|
3908
|
+
# The unique name of the domain containing the upload job.
|
3909
|
+
#
|
3910
|
+
# @option params [required, String] :job_id
|
3911
|
+
# The unique identifier of the upload job to retrieve.
|
3912
|
+
#
|
3913
|
+
# @return [Types::GetUploadJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3914
|
+
#
|
3915
|
+
# * {Types::GetUploadJobResponse#job_id #job_id} => String
|
3916
|
+
# * {Types::GetUploadJobResponse#display_name #display_name} => String
|
3917
|
+
# * {Types::GetUploadJobResponse#status #status} => String
|
3918
|
+
# * {Types::GetUploadJobResponse#status_reason #status_reason} => String
|
3919
|
+
# * {Types::GetUploadJobResponse#created_at #created_at} => Time
|
3920
|
+
# * {Types::GetUploadJobResponse#completed_at #completed_at} => Time
|
3921
|
+
# * {Types::GetUploadJobResponse#fields #fields} => Hash<String,Types::ObjectTypeField>
|
3922
|
+
# * {Types::GetUploadJobResponse#unique_key #unique_key} => String
|
3923
|
+
# * {Types::GetUploadJobResponse#results_summary #results_summary} => Types::ResultsSummary
|
3924
|
+
# * {Types::GetUploadJobResponse#data_expiry #data_expiry} => Integer
|
3925
|
+
#
|
3926
|
+
# @example Request syntax with placeholder values
|
3927
|
+
#
|
3928
|
+
# resp = client.get_upload_job({
|
3929
|
+
# domain_name: "name", # required
|
3930
|
+
# job_id: "uuid", # required
|
3931
|
+
# })
|
3932
|
+
#
|
3933
|
+
# @example Response structure
|
3934
|
+
#
|
3935
|
+
# resp.job_id #=> String
|
3936
|
+
# resp.display_name #=> String
|
3937
|
+
# resp.status #=> String, one of "CREATED", "IN_PROGRESS", "PARTIALLY_SUCCEEDED", "SUCCEEDED", "FAILED", "STOPPED"
|
3938
|
+
# resp.status_reason #=> String, one of "VALIDATION_FAILURE", "INTERNAL_FAILURE"
|
3939
|
+
# resp.created_at #=> Time
|
3940
|
+
# resp.completed_at #=> Time
|
3941
|
+
# resp.fields #=> Hash
|
3942
|
+
# resp.fields["fieldName"].source #=> String
|
3943
|
+
# resp.fields["fieldName"].target #=> String
|
3944
|
+
# resp.fields["fieldName"].content_type #=> String, one of "STRING", "NUMBER", "PHONE_NUMBER", "EMAIL_ADDRESS", "NAME"
|
3945
|
+
# resp.unique_key #=> String
|
3946
|
+
# resp.results_summary.updated_records #=> Integer
|
3947
|
+
# resp.results_summary.created_records #=> Integer
|
3948
|
+
# resp.results_summary.failed_records #=> Integer
|
3949
|
+
# resp.data_expiry #=> Integer
|
3950
|
+
#
|
3951
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/GetUploadJob AWS API Documentation
|
3952
|
+
#
|
3953
|
+
# @overload get_upload_job(params = {})
|
3954
|
+
# @param [Hash] params ({})
|
3955
|
+
def get_upload_job(params = {}, options = {})
|
3956
|
+
req = build_request(:get_upload_job, params)
|
3957
|
+
req.send_request(options)
|
3958
|
+
end
|
3959
|
+
|
3960
|
+
# This API retrieves the pre-signed URL and client token for uploading
|
3961
|
+
# the file associated with the upload job.
|
3962
|
+
#
|
3963
|
+
# @option params [required, String] :domain_name
|
3964
|
+
# The unique name of the domain containing the upload job.
|
3965
|
+
#
|
3966
|
+
# @option params [required, String] :job_id
|
3967
|
+
# The unique identifier of the upload job to retrieve the upload path
|
3968
|
+
# for. This is generated from the CreateUploadJob API.
|
3969
|
+
#
|
3970
|
+
# @return [Types::GetUploadJobPathResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3971
|
+
#
|
3972
|
+
# * {Types::GetUploadJobPathResponse#url #url} => String
|
3973
|
+
# * {Types::GetUploadJobPathResponse#client_token #client_token} => String
|
3974
|
+
# * {Types::GetUploadJobPathResponse#valid_until #valid_until} => Time
|
3975
|
+
#
|
3976
|
+
# @example Request syntax with placeholder values
|
3977
|
+
#
|
3978
|
+
# resp = client.get_upload_job_path({
|
3979
|
+
# domain_name: "name", # required
|
3980
|
+
# job_id: "name", # required
|
3981
|
+
# })
|
3982
|
+
#
|
3983
|
+
# @example Response structure
|
3984
|
+
#
|
3985
|
+
# resp.url #=> String
|
3986
|
+
# resp.client_token #=> String
|
3987
|
+
# resp.valid_until #=> Time
|
3988
|
+
#
|
3989
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/GetUploadJobPath AWS API Documentation
|
3990
|
+
#
|
3991
|
+
# @overload get_upload_job_path(params = {})
|
3992
|
+
# @param [Hash] params ({})
|
3993
|
+
def get_upload_job_path(params = {}, options = {})
|
3994
|
+
req = build_request(:get_upload_job_path, params)
|
3995
|
+
req.send_request(options)
|
3996
|
+
end
|
3997
|
+
|
3839
3998
|
# Get details of specified workflow.
|
3840
3999
|
#
|
3841
4000
|
# @option params [required, String] :domain_name
|
@@ -4742,6 +4901,54 @@ module Aws::CustomerProfiles
|
|
4742
4901
|
req.send_request(options)
|
4743
4902
|
end
|
4744
4903
|
|
4904
|
+
# This API retrieves a list of upload jobs for the specified domain.
|
4905
|
+
#
|
4906
|
+
# @option params [required, String] :domain_name
|
4907
|
+
# The unique name of the domain to list upload jobs for.
|
4908
|
+
#
|
4909
|
+
# @option params [Integer] :max_results
|
4910
|
+
# The maximum number of upload jobs to return per page.
|
4911
|
+
#
|
4912
|
+
# @option params [String] :next_token
|
4913
|
+
# The pagination token from the previous call to retrieve the next page
|
4914
|
+
# of results.
|
4915
|
+
#
|
4916
|
+
# @return [Types::ListUploadJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4917
|
+
#
|
4918
|
+
# * {Types::ListUploadJobsResponse#next_token #next_token} => String
|
4919
|
+
# * {Types::ListUploadJobsResponse#items #items} => Array<Types::UploadJobItem>
|
4920
|
+
#
|
4921
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
4922
|
+
#
|
4923
|
+
# @example Request syntax with placeholder values
|
4924
|
+
#
|
4925
|
+
# resp = client.list_upload_jobs({
|
4926
|
+
# domain_name: "name", # required
|
4927
|
+
# max_results: 1,
|
4928
|
+
# next_token: "token",
|
4929
|
+
# })
|
4930
|
+
#
|
4931
|
+
# @example Response structure
|
4932
|
+
#
|
4933
|
+
# resp.next_token #=> String
|
4934
|
+
# resp.items #=> Array
|
4935
|
+
# resp.items[0].job_id #=> String
|
4936
|
+
# resp.items[0].display_name #=> String
|
4937
|
+
# resp.items[0].status #=> String, one of "CREATED", "IN_PROGRESS", "PARTIALLY_SUCCEEDED", "SUCCEEDED", "FAILED", "STOPPED"
|
4938
|
+
# resp.items[0].status_reason #=> String, one of "VALIDATION_FAILURE", "INTERNAL_FAILURE"
|
4939
|
+
# resp.items[0].created_at #=> Time
|
4940
|
+
# resp.items[0].completed_at #=> Time
|
4941
|
+
# resp.items[0].data_expiry #=> Integer
|
4942
|
+
#
|
4943
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/ListUploadJobs AWS API Documentation
|
4944
|
+
#
|
4945
|
+
# @overload list_upload_jobs(params = {})
|
4946
|
+
# @param [Hash] params ({})
|
4947
|
+
def list_upload_jobs(params = {}, options = {})
|
4948
|
+
req = build_request(:list_upload_jobs, params)
|
4949
|
+
req.send_request(options)
|
4950
|
+
end
|
4951
|
+
|
4745
4952
|
# Query to list all workflows.
|
4746
4953
|
#
|
4747
4954
|
# @option params [required, String] :domain_name
|
@@ -5209,7 +5416,7 @@ module Aws::CustomerProfiles
|
|
5209
5416
|
# source_last_updated_timestamp_format: "string1To255",
|
5210
5417
|
# max_profile_object_count: 1,
|
5211
5418
|
# fields: {
|
5212
|
-
# "
|
5419
|
+
# "fieldName" => {
|
5213
5420
|
# source: "text",
|
5214
5421
|
# target: "text",
|
5215
5422
|
# content_type: "STRING", # accepts STRING, NUMBER, PHONE_NUMBER, EMAIL_ADDRESS, NAME
|
@@ -5240,9 +5447,9 @@ module Aws::CustomerProfiles
|
|
5240
5447
|
# resp.max_profile_object_count #=> Integer
|
5241
5448
|
# resp.max_available_profile_object_count #=> Integer
|
5242
5449
|
# resp.fields #=> Hash
|
5243
|
-
# resp.fields["
|
5244
|
-
# resp.fields["
|
5245
|
-
# resp.fields["
|
5450
|
+
# resp.fields["fieldName"].source #=> String
|
5451
|
+
# resp.fields["fieldName"].target #=> String
|
5452
|
+
# resp.fields["fieldName"].content_type #=> String, one of "STRING", "NUMBER", "PHONE_NUMBER", "EMAIL_ADDRESS", "NAME"
|
5246
5453
|
# resp.keys #=> Hash
|
5247
5454
|
# resp.keys["name"] #=> Array
|
5248
5455
|
# resp.keys["name"][0].standard_identifiers #=> Array
|
@@ -5423,6 +5630,59 @@ module Aws::CustomerProfiles
|
|
5423
5630
|
req.send_request(options)
|
5424
5631
|
end
|
5425
5632
|
|
5633
|
+
# This API starts the processing of an upload job to ingest profile
|
5634
|
+
# data.
|
5635
|
+
#
|
5636
|
+
# @option params [required, String] :domain_name
|
5637
|
+
# The unique name of the domain containing the upload job to start.
|
5638
|
+
#
|
5639
|
+
# @option params [required, String] :job_id
|
5640
|
+
# The unique identifier of the upload job to start.
|
5641
|
+
#
|
5642
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
5643
|
+
#
|
5644
|
+
# @example Request syntax with placeholder values
|
5645
|
+
#
|
5646
|
+
# resp = client.start_upload_job({
|
5647
|
+
# domain_name: "name", # required
|
5648
|
+
# job_id: "name", # required
|
5649
|
+
# })
|
5650
|
+
#
|
5651
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/StartUploadJob AWS API Documentation
|
5652
|
+
#
|
5653
|
+
# @overload start_upload_job(params = {})
|
5654
|
+
# @param [Hash] params ({})
|
5655
|
+
def start_upload_job(params = {}, options = {})
|
5656
|
+
req = build_request(:start_upload_job, params)
|
5657
|
+
req.send_request(options)
|
5658
|
+
end
|
5659
|
+
|
5660
|
+
# This API stops the processing of an upload job.
|
5661
|
+
#
|
5662
|
+
# @option params [required, String] :domain_name
|
5663
|
+
# The unique name of the domain containing the upload job to stop.
|
5664
|
+
#
|
5665
|
+
# @option params [required, String] :job_id
|
5666
|
+
# The unique identifier of the upload job to stop.
|
5667
|
+
#
|
5668
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
5669
|
+
#
|
5670
|
+
# @example Request syntax with placeholder values
|
5671
|
+
#
|
5672
|
+
# resp = client.stop_upload_job({
|
5673
|
+
# domain_name: "name", # required
|
5674
|
+
# job_id: "name", # required
|
5675
|
+
# })
|
5676
|
+
#
|
5677
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/StopUploadJob AWS API Documentation
|
5678
|
+
#
|
5679
|
+
# @overload stop_upload_job(params = {})
|
5680
|
+
# @param [Hash] params ({})
|
5681
|
+
def stop_upload_job(params = {}, options = {})
|
5682
|
+
req = build_request(:stop_upload_job, params)
|
5683
|
+
req.send_request(options)
|
5684
|
+
end
|
5685
|
+
|
5426
5686
|
# Assigns one or more tags (key-value pairs) to the specified Amazon
|
5427
5687
|
# Connect Customer Profiles resource. Tags can help you organize and
|
5428
5688
|
# categorize your resources. You can also use them to scope user
|
@@ -6175,7 +6435,7 @@ module Aws::CustomerProfiles
|
|
6175
6435
|
tracer: tracer
|
6176
6436
|
)
|
6177
6437
|
context[:gem_name] = 'aws-sdk-customerprofiles'
|
6178
|
-
context[:gem_version] = '1.
|
6438
|
+
context[:gem_version] = '1.67.0'
|
6179
6439
|
Seahorse::Client::Request.new(handlers, context)
|
6180
6440
|
end
|
6181
6441
|
|