listIngressPoints
abstract suspend fun listIngressPoints(input: ListIngressPointsRequest = ListIngressPointsRequest { }): ListIngressPointsResponse
List all ingress endpoint resources.
Samples
// List IngressPoints
val resp = mailManagerClient.listIngressPoints()Content copied to clipboard
// List IngressPoints with PageSize
val resp = mailManagerClient.listIngressPoints {
pageSize = 10
}Content copied to clipboard
// List IngressPoints with NextToken
val resp = mailManagerClient.listIngressPoints {
nextToken = "nextToken"
}Content copied to clipboard