Пример #1
0
        public void Route53AssociateVPCWithHostedZone()
        {
            #region to-associate-a-vpc-with-a-hosted-zone-1484069228699

            var client   = new AmazonRoute53Client();
            var response = client.AssociateVPCWithHostedZone(new AssociateVPCWithHostedZoneRequest
            {
                Comment      = "",
                HostedZoneId = "Z3M3LMPEXAMPLE",
                VPC          = new VPC {
                    VPCId     = "vpc-1a2b3c4d",
                    VPCRegion = "us-east-2"
                }
            });

            ChangeInfo changeInfo = response.ChangeInfo;

            #endregion
        }