Remove Attributes
pinpoint_remove_attributes | R Documentation |
Removes one or more custom attributes, of the same attribute type, from the application¶
Description¶
Removes one or more custom attributes, of the same attribute type, from the application. Existing endpoints still have the attributes but Amazon Pinpoint will stop capturing new or changed values for these attributes.
Usage¶
pinpoint_remove_attributes(ApplicationId, AttributeType,
UpdateAttributesRequest)
Arguments¶
ApplicationId |
[required] The unique identifier for the application. This identifier is displayed as the Project ID on the Amazon Pinpoint console. |
AttributeType |
[required] The type of attribute or attributes to remove. Valid values are:
|
UpdateAttributesRequest |
[required] |
Value¶
A list with the following syntax:
list(
AttributesResource = list(
ApplicationId = "string",
AttributeType = "string",
Attributes = list(
"string"
)
)
)
Request syntax¶
svc$remove_attributes(
ApplicationId = "string",
AttributeType = "string",
UpdateAttributesRequest = list(
Blacklist = list(
"string"
)
)
)