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¶
ClusterIdentifierThe cluster identifier associated with the described endpoint.
ResourceOwnerThe Amazon Web Services account ID of the owner of the cluster.
EndpointNameThe name of the endpoint to be described.
VpcIdThe virtual private cloud (VPC) identifier with access to the cluster.
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_accessrequest. 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(
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"
)