@awboost/cfn-resource-types 0.1.252 → 0.1.253
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -732,6 +732,7 @@ export type Origin = {
|
|
|
732
732
|
* Use this type to specify an origin that is an Amazon S3 bucket that is not configured with static website hosting. To specify any other type of origin, including an Amazon S3 bucket that is configured with static website hosting, use the ``CustomOriginConfig`` type instead.
|
|
733
733
|
*/
|
|
734
734
|
S3OriginConfig?: S3OriginConfig;
|
|
735
|
+
VpcOriginConfig?: VpcOriginConfig;
|
|
735
736
|
};
|
|
736
737
|
/**
|
|
737
738
|
* Type definition for `AWS::CloudFront::Distribution.OriginCustomHeader`.
|
|
@@ -971,6 +972,15 @@ export type ViewerCertificate = {
|
|
|
971
972
|
*/
|
|
972
973
|
SslSupportMethod?: string;
|
|
973
974
|
};
|
|
975
|
+
/**
|
|
976
|
+
* Type definition for `AWS::CloudFront::Distribution.VpcOriginConfig`.
|
|
977
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-vpcoriginconfig.html}
|
|
978
|
+
*/
|
|
979
|
+
export type VpcOriginConfig = {
|
|
980
|
+
OriginKeepaliveTimeout?: number;
|
|
981
|
+
OriginReadTimeout?: number;
|
|
982
|
+
VpcOriginId: string;
|
|
983
|
+
};
|
|
974
984
|
/**
|
|
975
985
|
* Resource type definition for `AWS::CloudFront::Distribution`.
|
|
976
986
|
* A distribution tells CloudFront where you want content to be delivered from, and the details about how to track and manage content delivery.
|