Class: Aws::Personalize::Types::ListCampaignsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Personalize::Types::ListCampaignsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-personalize/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of campaigns to return.
-
#next_token ⇒ String
A token returned from the previous call to [ListCampaigns] for getting the next set of campaigns (if they exist).
-
#solution_arn ⇒ String
The Amazon Resource Name (ARN) of the solution to list the campaigns for.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of campaigns to return.
3970 3971 3972 3973 3974 3975 3976 |
# File 'lib/aws-sdk-personalize/types.rb', line 3970 class ListCampaignsRequest < Struct.new( :solution_arn, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A token returned from the previous call to [ListCampaigns] for getting the next set of campaigns (if they exist).
[1]: docs.aws.amazon.com/personalize/latest/dg/API_ListCampaigns.html
3970 3971 3972 3973 3974 3975 3976 |
# File 'lib/aws-sdk-personalize/types.rb', line 3970 class ListCampaignsRequest < Struct.new( :solution_arn, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#solution_arn ⇒ String
The Amazon Resource Name (ARN) of the solution to list the campaigns for. When a solution is not specified, all the campaigns associated with the account are listed.
3970 3971 3972 3973 3974 3975 3976 |
# File 'lib/aws-sdk-personalize/types.rb', line 3970 class ListCampaignsRequest < Struct.new( :solution_arn, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |