Class: Aws::CustomerProfiles::Types::ListIdentityResolutionJobsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CustomerProfiles::Types::ListIdentityResolutionJobsRequest
- Defined in:
- gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb
Overview
Note:
When making an API call, you may pass ListIdentityResolutionJobsRequest data as a hash:
{
domain_name: "name", # required
next_token: "token",
max_results: 1,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#domain_name ⇒ String
The unique name of the domain.
-
#max_results ⇒ Integer
The maximum number of results to return per page.
-
#next_token ⇒ String
The token for the next set of results.
Instance Attribute Details
#domain_name ⇒ String
The unique name of the domain.
2807 2808 2809 2810 2811 2812 2813 |
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 2807 class ListIdentityResolutionJobsRequest < Struct.new( :domain_name, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of results to return per page.
2807 2808 2809 2810 2811 2812 2813 |
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 2807 class ListIdentityResolutionJobsRequest < Struct.new( :domain_name, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
2807 2808 2809 2810 2811 2812 2813 |
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 2807 class ListIdentityResolutionJobsRequest < Struct.new( :domain_name, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |