Describe Endpoint Authorization
| redshift_describe_endpoint_authorization | R Documentation |
Describes an endpoint authorization¶
Description¶
Describes an endpoint authorization.
Usage¶
Arguments¶
ClusterIdentifierThe cluster identifier of the cluster to access.
AccountThe Amazon Web Services account ID of either the cluster owner (grantor) or grantee. If
Granteeparameter is true, then theAccountvalue is of the grantor.GranteeIndicates whether to check authorization from a grantor or grantee point of view. If true, Amazon Redshift returns endpoint authorizations that you've been granted. If false (default), checks authorization from a grantor point of view.
MaxRecordsThe maximum number of records to include in the response. If more records exist than the specified
MaxRecordsvalue, a pagination token called aMarkeris included in the response so that the remaining results can be retrieved.MarkerAn optional pagination token provided by a previous
describe_endpoint_authorizationrequest. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by theMaxRecordsparameter.
Value¶
A list with the following syntax:
list(
EndpointAuthorizationList = list(
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
)
),
Marker = "string"
)