Update Responsibility Transfer
| organizations_update_responsibility_transfer | R Documentation |
Updates a transfer¶
Description¶
Updates a transfer. A transfer is the arrangement between two management accounts where one account designates the other with specified responsibilities for their organization.
You can update the name assigned to a transfer.
Usage¶
organizations_update_responsibility_transfer(Id, Name)
Arguments¶
Id |
[required] ID for the transfer. |
Name |
[required] New name you want to assign to the transfer. |
Value¶
A list with the following syntax:
list(
ResponsibilityTransfer = list(
Arn = "string",
Name = "string",
Id = "string",
Type = "BILLING",
Status = "REQUESTED"|"DECLINED"|"CANCELED"|"EXPIRED"|"ACCEPTED"|"WITHDRAWN",
Source = list(
ManagementAccountId = "string",
ManagementAccountEmail = "string"
),
Target = list(
ManagementAccountId = "string",
ManagementAccountEmail = "string"
),
StartTimestamp = as.POSIXct(
"2015-01-01"
),
EndTimestamp = as.POSIXct(
"2015-01-01"
),
ActiveHandshakeId = "string"
)
)
Request syntax¶
svc$update_responsibility_transfer(
Id = "string",
Name = "string"
)