public void ElasticLoadBalancingV2SetSecurityGroups()
        {
            #region elbv2-set-security-groups-1

            var response = client.SetSecurityGroups(new SetSecurityGroupsRequest
            {
                LoadBalancerArn = "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188",
                SecurityGroups  = new List <string> {
                    "sg-5943793c"
                }
            });

            List <string> securityGroupIds = response.SecurityGroupIds;

            #endregion
        }
Esempio n. 2
0
 private Amazon.ElasticLoadBalancingV2.Model.SetSecurityGroupsResponse CallAWSServiceOperation(IAmazonElasticLoadBalancingV2 client, Amazon.ElasticLoadBalancingV2.Model.SetSecurityGroupsRequest request)
 {
     Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "Elastic Load Balancing V2", "SetSecurityGroups");
     try
     {
         #if DESKTOP
         return(client.SetSecurityGroups(request));
         #elif CORECLR
         return(client.SetSecurityGroupsAsync(request).GetAwaiter().GetResult());
         #else
                 #error "Unknown build edition"
         #endif
     }
     catch (AmazonServiceException exc)
     {
         var webException = exc.InnerException as System.Net.WebException;
         if (webException != null)
         {
             throw new Exception(Utils.Common.FormatNameResolutionFailureMessage(client.Config, webException.Message), webException);
         }
         throw;
     }
 }