Class: Aws::SESV2::Types::ListRecommendationsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::SESV2::Types::ListRecommendationsResponse
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sesv2/types.rb
Overview
Contains the response to your request to retrieve the list of recommendations for your account.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
A string token indicating that there might be additional recommendations available to be listed.
-
#recommendations ⇒ Array<Types::Recommendation>
The recommendations applicable to your account.
Instance Attribute Details
#next_token ⇒ String
A string token indicating that there might be additional recommendations available to be listed. Use the token provided in the ‘ListRecommendationsResponse` to use in the subsequent call to `ListRecommendations` with the same parameters to retrieve the next page of recommendations.
4756 4757 4758 4759 4760 4761 |
# File 'lib/aws-sdk-sesv2/types.rb', line 4756 class ListRecommendationsResponse < Struct.new( :recommendations, :next_token) SENSITIVE = [] include Aws::Structure end |
#recommendations ⇒ Array<Types::Recommendation>
The recommendations applicable to your account.
4756 4757 4758 4759 4760 4761 |
# File 'lib/aws-sdk-sesv2/types.rb', line 4756 class ListRecommendationsResponse < Struct.new( :recommendations, :next_token) SENSITIVE = [] include Aws::Structure end |