@awboost/cfn-resource-types 0.1.330 → 0.1.331
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.
|
@@ -44,9 +44,9 @@ export type OriginAccessControlConfig = {
|
|
|
44
44
|
/**
|
|
45
45
|
* Specifies which requests CloudFront signs (adds authentication information to). Specify ``always`` for the most common use case. For more information, see [origin access control advanced settings](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/private-content-restricting-access-to-s3.html#oac-advanced-settings) in the *Amazon CloudFront Developer Guide*.
|
|
46
46
|
This field can have one of the following values:
|
|
47
|
-
+
|
|
48
|
-
+
|
|
49
|
-
+
|
|
47
|
+
+ ``always`` – CloudFront signs all origin requests, overwriting the ``Authorization`` header from the viewer request if one exists.
|
|
48
|
+
+ ``never`` – CloudFront doesn't sign any origin requests. This value turns off origin access control for all origins in all distributions that use this origin access control.
|
|
49
|
+
+ ``no-override`` – If the viewer request doesn't contain the ``Authorization`` header, then CloudFront signs the origin request. If the viewer request contains the ``Authorization`` header, then CloudFront doesn't sign the origin request and instead passes along the ``Authorization`` header from the viewer request. *WARNING: To pass along the Authorization header from the viewer request, you must add the Authorization header to a cache policy for all cache behaviors that use origins associated with this origin access control.*
|
|
50
50
|
* @pattern `^(never|no-override|always)$`
|
|
51
51
|
*/
|
|
52
52
|
SigningBehavior: string;
|
|
@@ -10,7 +10,7 @@ export type CodeBuildFleetProperties = {
|
|
|
10
10
|
*/
|
|
11
11
|
BaseCapacity?: number;
|
|
12
12
|
ComputeConfiguration?: ComputeConfiguration;
|
|
13
|
-
ComputeType?: "BUILD_GENERAL1_SMALL" | "BUILD_GENERAL1_MEDIUM" | "BUILD_GENERAL1_LARGE" | "BUILD_GENERAL1_XLARGE" | "BUILD_GENERAL1_2XLARGE" | "ATTRIBUTE_BASED_COMPUTE";
|
|
13
|
+
ComputeType?: "BUILD_GENERAL1_SMALL" | "BUILD_GENERAL1_MEDIUM" | "BUILD_GENERAL1_LARGE" | "BUILD_GENERAL1_XLARGE" | "BUILD_GENERAL1_2XLARGE" | "ATTRIBUTE_BASED_COMPUTE" | "CUSTOM_INSTANCE_TYPE";
|
|
14
14
|
EnvironmentType?: "WINDOWS_SERVER_2019_CONTAINER" | "WINDOWS_SERVER_2022_CONTAINER" | "LINUX_CONTAINER" | "LINUX_GPU_CONTAINER" | "ARM_CONTAINER" | "MAC_ARM" | "LINUX_EC2" | "ARM_EC2" | "WINDOWS_EC2";
|
|
15
15
|
FleetProxyConfiguration?: ProxyConfiguration;
|
|
16
16
|
/**
|
|
@@ -47,6 +47,7 @@ export type CodeBuildFleetAttributes = {
|
|
|
47
47
|
*/
|
|
48
48
|
export type ComputeConfiguration = {
|
|
49
49
|
disk?: number;
|
|
50
|
+
instanceType?: string;
|
|
50
51
|
machineType?: "GENERAL" | "NVME";
|
|
51
52
|
memory?: number;
|
|
52
53
|
vCpu?: number;
|