Examples of CreateHostedZoneRequest


Examples of com.amazonaws.services.route53.model.CreateHostedZoneRequest

            return zone;
        }

        log.info("Creating Route 53 zone: {}", zoneName);

        CreateHostedZoneRequest request = new CreateHostedZoneRequest();
        request.setName(zoneName);
        request.setCallerReference("CreateHostedZoneRequest:" + zoneName);

        // HostedZoneConfig hostedZoneConfig = new HostedZoneConfig();
        // hostedZoneConfig.setComment(comment);
        // request.setHostedZoneConfig(hostedZoneConfig);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.