Class: Aws::PinpointSMSVoiceV2::Types::DescribeOptOutListsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::PinpointSMSVoiceV2::Types::DescribeOptOutListsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpointsmsvoicev2/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of results to return per each request.
-
#next_token ⇒ String
The token to be used for the next set of paginated results.
-
#opt_out_list_names ⇒ Array<String>
The OptOutLists to show the details of.
-
#owner ⇒ String
Use ‘SELF` to filter the list of Opt-Out List to ones your account owns or use `SHARED` to filter on Opt-Out List shared with your account.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of results to return per each request.
2328 2329 2330 2331 2332 2333 2334 2335 |
# File 'lib/aws-sdk-pinpointsmsvoicev2/types.rb', line 2328 class DescribeOptOutListsRequest < Struct.new( :opt_out_list_names, :next_token, :max_results, :owner) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token to be used for the next set of paginated results. You don’t need to supply a value for this field in the initial request.
2328 2329 2330 2331 2332 2333 2334 2335 |
# File 'lib/aws-sdk-pinpointsmsvoicev2/types.rb', line 2328 class DescribeOptOutListsRequest < Struct.new( :opt_out_list_names, :next_token, :max_results, :owner) SENSITIVE = [] include Aws::Structure end |
#opt_out_list_names ⇒ Array<String>
The OptOutLists to show the details of. This is an array of strings that can be either the OptOutListName or OptOutListArn.
If you are using a shared AWS End User Messaging SMS and Voice resource then you must use the full Amazon Resource Name(ARN).
2328 2329 2330 2331 2332 2333 2334 2335 |
# File 'lib/aws-sdk-pinpointsmsvoicev2/types.rb', line 2328 class DescribeOptOutListsRequest < Struct.new( :opt_out_list_names, :next_token, :max_results, :owner) SENSITIVE = [] include Aws::Structure end |
#owner ⇒ String
Use ‘SELF` to filter the list of Opt-Out List to ones your account owns or use `SHARED` to filter on Opt-Out List shared with your account. The `Owner` and `OptOutListNames` parameters can’t be used at the same time.
2328 2329 2330 2331 2332 2333 2334 2335 |
# File 'lib/aws-sdk-pinpointsmsvoicev2/types.rb', line 2328 class DescribeOptOutListsRequest < Struct.new( :opt_out_list_names, :next_token, :max_results, :owner) SENSITIVE = [] include Aws::Structure end |