Skip to content

Terminate Responsibility Transfer

organizations_terminate_responsibility_transfer R Documentation

Ends a transfer

Description

Ends a transfer. A transfer is an arrangement between two management accounts where one account designates the other with specified responsibilities for their organization.

Usage

organizations_terminate_responsibility_transfer(Id, EndTimestamp)

Arguments

Id

[required] ID for the transfer.

EndTimestamp

Timestamp when the responsibility transfer is to end.

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$terminate_responsibility_transfer(
  Id = "string",
  EndTimestamp = as.POSIXct(
    "2015-01-01"
  )
)