deleteSharedTrustStoreAssociation

Deletes a shared trust store association.

Samples


fun main() { 
   //sampleStart 
   // This example deletes the association between the specified trust store and the specified load
// balancer.
elasticLoadBalancingV2Client.deleteSharedTrustStoreAssociation {
    trustStoreArn = "arn:aws:elasticloadbalancing:us-east-1:123456789012:truststore/my-trust-store/73e2d6bc24d8a063"
    resourceArn = "arn:aws:elasticloadbalancing:us-east-1:123456789012:loadbalancer/app/my-load-balancer/80233fa81d678c2c"
} 
   //sampleEnd
}