@@ -14,7 +14,7 @@ public class ApplicationLoadBalancerResponse
14
14
/// The HTTP status code for the request
15
15
/// </summary>
16
16
[ DataMember ( Name = "statusCode" ) ]
17
- #if NETCOREAPP3_1
17
+ #if NETCOREAPP3_1_OR_GREATER
18
18
[ System . Text . Json . Serialization . JsonPropertyName ( "statusCode" ) ]
19
19
#endif
20
20
public int StatusCode { get ; set ; }
@@ -23,7 +23,7 @@ public class ApplicationLoadBalancerResponse
23
23
/// The HTTP status description for the request
24
24
/// </summary>
25
25
[ DataMember ( Name = "statusDescription" ) ]
26
- #if NETCOREAPP3_1
26
+ #if NETCOREAPP3_1_OR_GREATER
27
27
[ System . Text . Json . Serialization . JsonPropertyName ( "statusDescription" ) ]
28
28
#endif
29
29
public string StatusDescription { get ; set ; }
@@ -33,7 +33,7 @@ public class ApplicationLoadBalancerResponse
33
33
/// Note: Use this property when "Multi value headers" is disabled on ELB Target Group.
34
34
/// </summary>
35
35
[ DataMember ( Name = "headers" ) ]
36
- #if NETCOREAPP3_1
36
+ #if NETCOREAPP3_1_OR_GREATER
37
37
[ System . Text . Json . Serialization . JsonPropertyName ( "headers" ) ]
38
38
#endif
39
39
public IDictionary < string , string > Headers { get ; set ; }
@@ -43,7 +43,7 @@ public class ApplicationLoadBalancerResponse
43
43
/// Note: Use this property when "Multi value headers" is enabled on ELB Target Group.
44
44
/// </summary>
45
45
[ DataMember ( Name = "multiValueHeaders" ) ]
46
- #if NETCOREAPP3_1
46
+ #if NETCOREAPP3_1_OR_GREATER
47
47
[ System . Text . Json . Serialization . JsonPropertyName ( "multiValueHeaders" ) ]
48
48
#endif
49
49
public IDictionary < string , IList < string > > MultiValueHeaders { get ; set ; }
@@ -52,7 +52,7 @@ public class ApplicationLoadBalancerResponse
52
52
/// The response body
53
53
/// </summary>
54
54
[ DataMember ( Name = "body" ) ]
55
- #if NETCOREAPP3_1
55
+ #if NETCOREAPP3_1_OR_GREATER
56
56
[ System . Text . Json . Serialization . JsonPropertyName ( "body" ) ]
57
57
#endif
58
58
public string Body { get ; set ; }
@@ -61,7 +61,7 @@ public class ApplicationLoadBalancerResponse
61
61
/// Flag indicating whether the body should be treated as a base64-encoded string
62
62
/// </summary>
63
63
[ DataMember ( Name = "isBase64Encoded" ) ]
64
- #if NETCOREAPP3_1
64
+ #if NETCOREAPP3_1_OR_GREATER
65
65
[ System . Text . Json . Serialization . JsonPropertyName ( "isBase64Encoded" ) ]
66
66
#endif
67
67
public bool IsBase64Encoded { get ; set ; }
0 commit comments