Class: Aws::CustomerProfiles::Types::ResultsSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::CustomerProfiles::Types::ResultsSummary
- Defined in:
- gems/aws-sdk-customerprofiles/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
-
#created_records ⇒ Integer
The number of records that were newly created during the upload job.
-
#failed_records ⇒ Integer
The number of records that failed to be processed during the upload job.
-
#updated_records ⇒ Integer
The number of records that were updated during the upload job.
Instance Attribute Details
#created_records ⇒ Integer
The number of records that were newly created during the upload job.
7041 7042 7043 7044 7045 7046 7047 |
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 7041 class ResultsSummary < Struct.new( :updated_records, :created_records, :failed_records) SENSITIVE = [] include Aws::Structure end |
#failed_records ⇒ Integer
The number of records that failed to be processed during the upload job.
7041 7042 7043 7044 7045 7046 7047 |
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 7041 class ResultsSummary < Struct.new( :updated_records, :created_records, :failed_records) SENSITIVE = [] include Aws::Structure end |
#updated_records ⇒ Integer
The number of records that were updated during the upload job.
7041 7042 7043 7044 7045 7046 7047 |
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 7041 class ResultsSummary < Struct.new( :updated_records, :created_records, :failed_records) SENSITIVE = [] include Aws::Structure end |