describeSslPolicies
inline suspend fun ElasticLoadBalancingV2Client.describeSslPolicies(crossinline block: DescribeSslPoliciesRequest.Builder.() -> Unit): DescribeSslPoliciesResponse
Describes the specified policies or all policies used for SSL negotiation.
For more information, see Security policies in the Application Load Balancers Guide and Security policies in the Network Load Balancers Guide.
Samples
fun main() {
//sampleStart
// This example describes the specified policy used for SSL negotiation.
val resp = elasticLoadBalancingV2Client.describeSslPolicies {
names = listOf<String>(
"ELBSecurityPolicy-2015-05"
)
}
//sampleEnd
}