describeCacheSecurityGroups

abstract suspend fun describeCacheSecurityGroups(input: DescribeCacheSecurityGroupsRequest = DescribeCacheSecurityGroupsRequest { }): DescribeCacheSecurityGroupsResponse

Returns a list of cache security group descriptions. If a cache security group name is specified, the list contains only the description of that group. This applicable only when you have ElastiCache in Classic setup

Samples


fun main() { 
   //sampleStart 
   // Returns a list of cache security group descriptions. If a cache security group name is specified,
// the list contains only the description of that group.
elastiCacheClient.describeCacheSecurityGroups {
    cacheSecurityGroupName = "my-sec-group"
} 
   //sampleEnd
}