Skip to content

Reject Data Share

redshift_reject_data_share R Documentation

From a datashare consumer account, rejects the specified datashare

Description

From a datashare consumer account, rejects the specified datashare.

Usage

redshift_reject_data_share(DataShareArn)

Arguments

DataShareArn

[required] The Amazon Resource Name (ARN) of the datashare to reject.

Value

A list with the following syntax:

list(
  DataShareArn = "string",
  ProducerArn = "string",
  AllowPubliclyAccessibleConsumers = TRUE|FALSE,
  DataShareAssociations = list(
    list(
      ConsumerIdentifier = "string",
      Status = "ACTIVE"|"PENDING_AUTHORIZATION"|"AUTHORIZED"|"DEAUTHORIZED"|"REJECTED"|"AVAILABLE",
      ConsumerRegion = "string",
      CreatedDate = as.POSIXct(
        "2015-01-01"
      ),
      StatusChangeDate = as.POSIXct(
        "2015-01-01"
      ),
      ProducerAllowedWrites = TRUE|FALSE,
      ConsumerAcceptedWrites = TRUE|FALSE
    )
  ),
  ManagedBy = "string"
)

Request syntax

svc$reject_data_share(
  DataShareArn = "string"
)