Class: Aws::Personalize::Types::ListCampaignsRequest

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

Overview

Note:

When making an API call, you may pass ListCampaignsRequest data as a hash:

{
  solution_arn: "Arn",
  next_token: "NextToken",
  max_results: 1,
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#max_resultsInteger

The maximum number of campaigns to return.

Returns:

  • (Integer)


2977
2978
2979
2980
2981
2982
2983
# File 'lib/aws-sdk-personalize/types.rb', line 2977

class ListCampaignsRequest < Struct.new(
  :solution_arn,
  :next_token,
  :max_results)
  SENSITIVE = []
  include Aws::Structure
end

#next_tokenString

A token returned from the previous call to ‘ListCampaigns` for getting the next set of campaigns (if they exist).

Returns:

  • (String)


2977
2978
2979
2980
2981
2982
2983
# File 'lib/aws-sdk-personalize/types.rb', line 2977

class ListCampaignsRequest < Struct.new(
  :solution_arn,
  :next_token,
  :max_results)
  SENSITIVE = []
  include Aws::Structure
end

#solution_arnString

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.

Returns:

  • (String)


2977
2978
2979
2980
2981
2982
2983
# File 'lib/aws-sdk-personalize/types.rb', line 2977

class ListCampaignsRequest < Struct.new(
  :solution_arn,
  :next_token,
  :max_results)
  SENSITIVE = []
  include Aws::Structure
end