Submit Registration Version
| pinpointsmsvoicev2_submit_registration_version | R Documentation |
Submit the specified registration for review and approval¶
Description¶
Submit the specified registration for review and approval.
Usage¶
pinpointsmsvoicev2_submit_registration_version(RegistrationId,
AwsReview)
Arguments¶
RegistrationId |
[required] The unique identifier for the registration. |
AwsReview |
Set to true to request AWS review of the registration. When enabled, AWS will perform additional validation and review of the registration submission before processing. |
Value¶
A list with the following syntax:
list(
RegistrationArn = "string",
RegistrationId = "string",
VersionNumber = 123,
RegistrationVersionStatus = "DRAFT"|"SUBMITTED"|"AWS_REVIEWING"|"REVIEWING"|"REQUIRES_AUTHENTICATION"|"APPROVED"|"DISCARDED"|"DENIED"|"REVOKED"|"ARCHIVED"|"REQUIRES_OFFLINE_REVIEW",
RegistrationVersionStatusHistory = list(
DraftTimestamp = as.POSIXct(
"2015-01-01"
),
SubmittedTimestamp = as.POSIXct(
"2015-01-01"
),
AwsReviewingTimestamp = as.POSIXct(
"2015-01-01"
),
ReviewingTimestamp = as.POSIXct(
"2015-01-01"
),
RequiresAuthenticationTimestamp = as.POSIXct(
"2015-01-01"
),
ApprovedTimestamp = as.POSIXct(
"2015-01-01"
),
DiscardedTimestamp = as.POSIXct(
"2015-01-01"
),
DeniedTimestamp = as.POSIXct(
"2015-01-01"
),
RevokedTimestamp = as.POSIXct(
"2015-01-01"
),
ArchivedTimestamp = as.POSIXct(
"2015-01-01"
)
),
AwsReview = TRUE|FALSE
)
Request syntax¶
svc$submit_registration_version(
RegistrationId = "string",
AwsReview = TRUE|FALSE
)