listServices

abstract suspend fun listServices(input: ListServicesRequest = ListServicesRequest { }): ListServicesResponse

Returns a paginated list of Amazon Web Services service identifiers that you can use as values for the visibleServices setting in UpdateAccountCustomizations. The available services vary by Amazon Web Services partition. Use pagination to retrieve all results.

The visibleServices setting controls only the appearance of services in the Amazon Web Services Management Console. It does not restrict access through the CLI, SDKs, or other APIs.

Samples


fun main() { 
   //sampleStart 
   // Retrieves a paginated list of available AWS services
val resp = uxcClient.listServices() 
   //sampleEnd
}