Describe Endpoint Access
redshift_describe_endpoint_access | R Documentation |
Describes a Redshift-managed VPC endpoint¶
Description¶
Describes a Redshift-managed VPC endpoint.
Usage¶
redshift_describe_endpoint_access(ClusterIdentifier, ResourceOwner,
EndpointName, VpcId, MaxRecords, Marker)
Arguments¶
ClusterIdentifier |
The cluster identifier associated with the described endpoint. |
ResourceOwner |
The Amazon Web Services account ID of the owner of the cluster. |
EndpointName |
The name of the endpoint to be described. |
VpcId |
The virtual private cloud (VPC) identifier with access to the cluster. |
MaxRecords |
The maximum number of records to include in the response. If more
records exist than the specified |
Marker |
An optional pagination token provided by a previous
|
Value¶
A list with the following syntax:
list(
EndpointAccessList = list(
list(
ClusterIdentifier = "string",
ResourceOwner = "string",
SubnetGroupName = "string",
EndpointStatus = "string",
EndpointName = "string",
EndpointCreateTime = as.POSIXct(
"2015-01-01"
),
Port = 123,
Address = "string",
VpcSecurityGroups = list(
list(
VpcSecurityGroupId = "string",
Status = "string"
)
),
VpcEndpoint = list(
VpcEndpointId = "string",
VpcId = "string",
NetworkInterfaces = list(
list(
NetworkInterfaceId = "string",
SubnetId = "string",
PrivateIpAddress = "string",
AvailabilityZone = "string",
Ipv6Address = "string"
)
)
)
)
),
Marker = "string"
)
Request syntax¶
svc$describe_endpoint_access(
ClusterIdentifier = "string",
ResourceOwner = "string",
EndpointName = "string",
VpcId = "string",
MaxRecords = 123,
Marker = "string"
)