@@ -23,14 +23,14 @@ public enum CloudFormation {
23
23
case delete = " Delete "
24
24
}
25
25
26
- let requestType : RequestType
27
- let requestId : String
28
- let responseURL : String
29
- let physicalResourceId : String ?
30
- let logicalResourceId : String
31
- let stackId : String
32
- let resourceProperties : R ?
33
- let oldResourceProperties : O ?
26
+ public let requestType : RequestType
27
+ public let requestId : String
28
+ public let responseURL : String
29
+ public let physicalResourceId : String ?
30
+ public let logicalResourceId : String
31
+ public let stackId : String
32
+ public let resourceProperties : R ?
33
+ public let oldResourceProperties : O ?
34
34
35
35
enum CodingKeys : String , CodingKey {
36
36
case requestType = " RequestType "
@@ -65,14 +65,14 @@ public enum CloudFormation {
65
65
case failed = " FAILED "
66
66
}
67
67
68
- let status : StatusType
69
- let requestId : String
70
- let logicalResourceId : String
71
- let stackId : String
72
- let physicalResourceId : String ?
73
- let reason : String ?
74
- let noEcho : Bool ?
75
- let data : D ?
68
+ public let status : StatusType
69
+ public let requestId : String
70
+ public let logicalResourceId : String
71
+ public let stackId : String
72
+ public let physicalResourceId : String ?
73
+ public let reason : String ?
74
+ public let noEcho : Bool ?
75
+ public let data : D ?
76
76
77
77
enum CodingKeys : String , CodingKey {
78
78
case status = " Status "
0 commit comments