Skip to content

Delete Subscription Grant

datazone_delete_subscription_grant R Documentation

Deletes and subscription grant in Amazon DataZone

Description

Deletes and subscription grant in Amazon DataZone.

Usage

datazone_delete_subscription_grant(domainIdentifier, identifier)

Arguments

domainIdentifier

[required] The ID of the Amazon DataZone domain where the subscription grant is deleted.

identifier

[required] The ID of the subscription grant that is deleted.

Value

A list with the following syntax:

list(
  assets = list(
    list(
      assetId = "string",
      assetRevision = "string",
      failureCause = list(
        message = "string"
      ),
      failureTimestamp = as.POSIXct(
        "2015-01-01"
      ),
      grantedTimestamp = as.POSIXct(
        "2015-01-01"
      ),
      status = "GRANT_PENDING"|"REVOKE_PENDING"|"GRANT_IN_PROGRESS"|"REVOKE_IN_PROGRESS"|"GRANTED"|"REVOKED"|"GRANT_FAILED"|"REVOKE_FAILED",
      targetName = "string"
    )
  ),
  createdAt = as.POSIXct(
    "2015-01-01"
  ),
  createdBy = "string",
  domainId = "string",
  grantedEntity = list(
    listing = list(
      id = "string",
      revision = "string"
    )
  ),
  id = "string",
  status = "PENDING"|"IN_PROGRESS"|"GRANT_FAILED"|"REVOKE_FAILED"|"GRANT_AND_REVOKE_FAILED"|"COMPLETED"|"INACCESSIBLE",
  subscriptionId = "string",
  subscriptionTargetId = "string",
  updatedAt = as.POSIXct(
    "2015-01-01"
  ),
  updatedBy = "string"
)

Request syntax

svc$delete_subscription_grant(
  domainIdentifier = "string",
  identifier = "string"
)