You must be logged in to view saved presets
Configuration template to create a CloudFront Origin Access Control which can be added to an origin in a CloudFront distribution so that CloudFront sends authenticated (signed) requests to the origin. For an Amazon S3 origin, this makes it possible to block public access to the Amazon S3 bucket so that viewers (users) can access the content in the bucket only through CloudFront.
AWSTemplateFormatVersion: '2010-09-09'
Description: ''
Resources:
CloudFrontOriginAccessControl:
Type: 'AWS::CloudFront::OriginAccessControl'
Properties:
OriginAccessControlConfig:
Name: ''
Description: ''
OriginAccessControlOriginType: s3
SigningBehavior: always
SigningProtocol: sigv4
Parameters: {}
Metadata: {}
Conditions: {}