Skip to content

Update Assessment Framework Share

auditmanager_update_assessment_framework_share R Documentation

Updates a share request for a custom framework in Audit Manager

Description

Updates a share request for a custom framework in Audit Manager.

Usage

auditmanager_update_assessment_framework_share(requestId, requestType,
  action)

Arguments

requestId

[required] The unique identifier for the share request.

requestType

[required] Specifies whether the share request is a sent request or a received request.

action

[required] Specifies the update action for the share request.

Value

A list with the following syntax:

list(
  assessmentFrameworkShareRequest = list(
    id = "string",
    frameworkId = "string",
    frameworkName = "string",
    frameworkDescription = "string",
    status = "ACTIVE"|"REPLICATING"|"SHARED"|"EXPIRING"|"FAILED"|"EXPIRED"|"DECLINED"|"REVOKED",
    sourceAccount = "string",
    destinationAccount = "string",
    destinationRegion = "string",
    expirationTime = as.POSIXct(
      "2015-01-01"
    ),
    creationTime = as.POSIXct(
      "2015-01-01"
    ),
    lastUpdated = as.POSIXct(
      "2015-01-01"
    ),
    comment = "string",
    standardControlsCount = 123,
    customControlsCount = 123,
    complianceType = "string"
  )
)

Request syntax

svc$update_assessment_framework_share(
  requestId = "string",
  requestType = "SENT"|"RECEIVED",
  action = "ACCEPT"|"DECLINE"|"REVOKE"
)