Describe Registration Attachments
pinpointsmsvoicev2_describe_registration_attachments | R Documentation |
Retrieves the specified registration attachments or all registration attachments associated with your Amazon Web Services account¶
Description¶
Retrieves the specified registration attachments or all registration attachments associated with your Amazon Web Services account.
Usage¶
pinpointsmsvoicev2_describe_registration_attachments(
RegistrationAttachmentIds, Filters, NextToken, MaxResults)
Arguments¶
RegistrationAttachmentIds |
The unique identifier of registration attachments to find. This is an array of RegistrationAttachmentId. |
Filters |
An array of RegistrationAttachmentFilter objects to filter the results. |
NextToken |
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. |
MaxResults |
The maximum number of results to return per each request. |
Value¶
A list with the following syntax:
list(
RegistrationAttachments = list(
list(
RegistrationAttachmentArn = "string",
RegistrationAttachmentId = "string",
AttachmentStatus = "UPLOAD_IN_PROGRESS"|"UPLOAD_COMPLETE"|"UPLOAD_FAILED"|"DELETED",
AttachmentUploadErrorReason = "INTERNAL_ERROR",
CreatedTimestamp = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)
Request syntax¶
svc$describe_registration_attachments(
RegistrationAttachmentIds = list(
"string"
),
Filters = list(
list(
Name = "attachment-status",
Values = list(
"string"
)
)
),
NextToken = "string",
MaxResults = 123
)