Package org.jets3t.service.model.cloudfront

Examples of org.jets3t.service.model.cloudfront.CustomOrigin


        // ------------------------------------------------------------
        // Non-S3 origin
        // ------------------------------------------------------------

        // Create a new distribution with a non-S3 (custom) origin
        CustomOrigin customOrigin = new CustomOrigin(
            "www.jamesmurty.com", // DNS name
            CustomOrigin.OriginProtocolPolicy.HTTP_ONLY  // Access content over HTTP only
            // To distribute content over HTTPS use:
            // CustomOrigin.OriginProtocolPolicy.MATCH_VIEWER
            );
View Full Code Here

TOP

Related Classes of org.jets3t.service.model.cloudfront.CustomOrigin

Copyright © 2018 www.massapicom. 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.