File tree 2 files changed +4
-4
lines changed 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ def __init__(
33
33
"Canary-x86-64" ,
34
34
layer_arn = layer_arn ,
35
35
powertools_version = powertools_version ,
36
- architecture = Architecture .X86_64 () ,
36
+ architecture = Architecture .X86_64 ,
37
37
)
38
38
39
39
layer_arm64_arn = StringParameter .from_string_parameter_attributes (
@@ -46,7 +46,7 @@ def __init__(
46
46
"Canary-arm64" ,
47
47
layer_arn = layer_arm64_arn ,
48
48
powertools_version = powertools_version ,
49
- architecture = Architecture .ARM_64 () ,
49
+ architecture = Architecture .ARM_64 ,
50
50
)
51
51
52
52
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ def __init__(
23
23
layer_version_name = "AWSLambdaPowertoolsPythonV2" ,
24
24
version = powertools_version ,
25
25
include_extras = True ,
26
- compatible_architectures = [Architecture .X86_64 () ],
26
+ compatible_architectures = [Architecture .X86_64 ],
27
27
)
28
28
29
29
layer_arm64 = LambdaPowertoolsLayer (
@@ -32,7 +32,7 @@ def __init__(
32
32
layer_version_name = "AWSLambdaPowertoolsPythonV2-Arm64" ,
33
33
version = powertools_version ,
34
34
include_extras = True ,
35
- compatible_architectures = [Architecture .ARM_64 () ],
35
+ compatible_architectures = [Architecture .ARM_64 ],
36
36
)
37
37
38
38
layer_permission = CfnLayerVersionPermission (
You can’t perform that action at this time.
0 commit comments