Skip to content

Revoke Endpoint Access

redshift_revoke_endpoint_access R Documentation

Revokes access to a cluster

Description

Revokes access to a cluster.

Usage

redshift_revoke_endpoint_access(ClusterIdentifier, Account, VpcIds,
  Force)

Arguments

ClusterIdentifier

The cluster to revoke access from.

Account

The Amazon Web Services account ID whose access is to be revoked.

VpcIds

The virtual private cloud (VPC) identifiers for which access is to be revoked.

Force

Indicates whether to force the revoke action. If true, the Redshift-managed VPC endpoints associated with the endpoint authorization are also deleted.

Value

A list with the following syntax:

list(
  Grantor = "string",
  Grantee = "string",
  ClusterIdentifier = "string",
  AuthorizeTime = as.POSIXct(
    "2015-01-01"
  ),
  ClusterStatus = "string",
  Status = "Authorized"|"Revoking",
  AllowedAllVPCs = TRUE|FALSE,
  AllowedVPCs = list(
    "string"
  ),
  EndpointCount = 123
)

Request syntax

svc$revoke_endpoint_access(
  ClusterIdentifier = "string",
  Account = "string",
  VpcIds = list(
    "string"
  ),
  Force = TRUE|FALSE
)