Skip to content

Authorize Endpoint Access

redshift_authorize_endpoint_access R Documentation

Grants access to a cluster

Description

Grants access to a cluster.

Usage

redshift_authorize_endpoint_access(ClusterIdentifier, Account, VpcIds)

Arguments

ClusterIdentifier

The cluster identifier of the cluster to grant access to.

Account

[required] The Amazon Web Services account ID to grant access to.

VpcIds

The virtual private cloud (VPC) identifiers to grant access to.

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$authorize_endpoint_access(
  ClusterIdentifier = "string",
  Account = "string",
  VpcIds = list(
    "string"
  )
)