Class: Aws::Pinpoint::Types::UpdateAttributesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::UpdateAttributesRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpoint/types.rb
Overview
Note:
When making an API call, you may pass UpdateAttributesRequest data as a hash:
{
blacklist: ["__string"],
}
Specifies one or more attributes to remove from all the endpoints that are associated with an application.
Instance Attribute Summary collapse
-
#blacklist ⇒ Array<String>
An array of the attributes to remove from all the endpoints that are associated with the application.
Instance Attribute Details
#blacklist ⇒ Array<String>
An array of the attributes to remove from all the endpoints that are associated with the application. The array can specify the complete, exact name of each attribute to remove or it can specify a glob pattern that an attribute name must match in order for the attribute to be removed.
15349 15350 15351 15352 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 15349 class UpdateAttributesRequest < Struct.new( :blacklist) include Aws::Structure end |