Class: Aws::CustomerProfiles::Types::ResultsSummary

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-customerprofiles/types.rb

Overview

The summary of results for an upload job, including the number of updated, created, and failed records.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#created_recordsInteger

The number of records that were newly created during the upload job.

Returns:

  • (Integer)


8367
8368
8369
8370
8371
8372
8373
# File 'lib/aws-sdk-customerprofiles/types.rb', line 8367

class ResultsSummary < Struct.new(
  :updated_records,
  :created_records,
  :failed_records)
  SENSITIVE = []
  include Aws::Structure
end

#failed_recordsInteger

The number of records that failed to be processed during the upload job.

Returns:

  • (Integer)


8367
8368
8369
8370
8371
8372
8373
# File 'lib/aws-sdk-customerprofiles/types.rb', line 8367

class ResultsSummary < Struct.new(
  :updated_records,
  :created_records,
  :failed_records)
  SENSITIVE = []
  include Aws::Structure
end

#updated_recordsInteger

The number of records that were updated during the upload job.

Returns:

  • (Integer)


8367
8368
8369
8370
8371
8372
8373
# File 'lib/aws-sdk-customerprofiles/types.rb', line 8367

class ResultsSummary < Struct.new(
  :updated_records,
  :created_records,
  :failed_records)
  SENSITIVE = []
  include Aws::Structure
end