File tree Expand file tree Collapse file tree 8 files changed +21
-21
lines changed Expand file tree Collapse file tree 8 files changed +21
-21
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ class CreateTableInput implements Input
69
69
* Controls how you are charged for read and write throughput and how you manage capacity. This setting can be changed
70
70
* later.
71
71
*
72
- * @var BillingMode::*|null
72
+ * @var null| BillingMode::*
73
73
*/
74
74
private $ BillingMode ;
75
75
Original file line number Diff line number Diff line change @@ -49,20 +49,20 @@ class DeleteItemInput implements Input
49
49
*
50
50
* @see https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/LegacyConditionalParameters.ConditionalOperator.html
51
51
*
52
- * @var ConditionalOperator::*|null
52
+ * @var null| ConditionalOperator::*
53
53
*/
54
54
private $ ConditionalOperator ;
55
55
56
56
/**
57
57
* Use `ReturnValues` if you want to get the item attributes as they appeared before they were deleted. For
58
58
* `DeleteItem`, the valid values are:.
59
59
*
60
- * @var ReturnValue::*|null
60
+ * @var null| ReturnValue::*
61
61
*/
62
62
private $ ReturnValues ;
63
63
64
64
/**
65
- * @var ReturnConsumedCapacity::*|null
65
+ * @var null| ReturnConsumedCapacity::*
66
66
*/
67
67
private $ ReturnConsumedCapacity ;
68
68
@@ -71,7 +71,7 @@ class DeleteItemInput implements Input
71
71
* item collections, if any, that were modified during the operation are returned in the response. If set to `NONE` (the
72
72
* default), no statistics are returned.
73
73
*
74
- * @var ReturnItemCollectionMetrics::*|null
74
+ * @var null| ReturnItemCollectionMetrics::*
75
75
*/
76
76
private $ ReturnItemCollectionMetrics ;
77
77
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ class GetItemInput implements Input
48
48
private $ ConsistentRead ;
49
49
50
50
/**
51
- * @var ReturnConsumedCapacity::*|null
51
+ * @var null| ReturnConsumedCapacity::*
52
52
*/
53
53
private $ ReturnConsumedCapacity ;
54
54
Original file line number Diff line number Diff line change @@ -48,12 +48,12 @@ class PutItemInput implements Input
48
48
* Use `ReturnValues` if you want to get the item attributes as they appeared before they were updated with the
49
49
* `PutItem` request. For `PutItem`, the valid values are:.
50
50
*
51
- * @var ReturnValue::*|null
51
+ * @var null| ReturnValue::*
52
52
*/
53
53
private $ ReturnValues ;
54
54
55
55
/**
56
- * @var ReturnConsumedCapacity::*|null
56
+ * @var null| ReturnConsumedCapacity::*
57
57
*/
58
58
private $ ReturnConsumedCapacity ;
59
59
@@ -62,7 +62,7 @@ class PutItemInput implements Input
62
62
* item collections, if any, that were modified during the operation are returned in the response. If set to `NONE` (the
63
63
* default), no statistics are returned.
64
64
*
65
- * @var ReturnItemCollectionMetrics::*|null
65
+ * @var null| ReturnItemCollectionMetrics::*
66
66
*/
67
67
private $ ReturnItemCollectionMetrics ;
68
68
@@ -72,7 +72,7 @@ class PutItemInput implements Input
72
72
*
73
73
* @see https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/LegacyConditionalParameters.ConditionalOperator.html
74
74
*
75
- * @var ConditionalOperator::*|null
75
+ * @var null| ConditionalOperator::*
76
76
*/
77
77
private $ ConditionalOperator ;
78
78
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ class QueryInput implements Input
35
35
* The attributes to be returned in the result. You can retrieve all item attributes, specific item attributes, the
36
36
* count of matching items, or in the case of an index, some or all of the attributes projected into the index.
37
37
*
38
- * @var Select::*|null
38
+ * @var null| Select::*
39
39
*/
40
40
private $ Select ;
41
41
@@ -98,7 +98,7 @@ class QueryInput implements Input
98
98
*
99
99
* @see https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/LegacyConditionalParameters.ConditionalOperator.html
100
100
*
101
- * @var ConditionalOperator::*|null
101
+ * @var null| ConditionalOperator::*
102
102
*/
103
103
private $ ConditionalOperator ;
104
104
@@ -119,7 +119,7 @@ class QueryInput implements Input
119
119
private $ ExclusiveStartKey ;
120
120
121
121
/**
122
- * @var ReturnConsumedCapacity::*|null
122
+ * @var null| ReturnConsumedCapacity::*
123
123
*/
124
124
private $ ReturnConsumedCapacity ;
125
125
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ class ScanInput implements Input
61
61
* The attributes to be returned in the result. You can retrieve all item attributes, specific item attributes, the
62
62
* count of matching items, or in the case of an index, some or all of the attributes projected into the index.
63
63
*
64
- * @var Select::*|null
64
+ * @var null| Select::*
65
65
*/
66
66
private $ Select ;
67
67
@@ -81,7 +81,7 @@ class ScanInput implements Input
81
81
*
82
82
* @see https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/LegacyConditionalParameters.ConditionalOperator.html
83
83
*
84
- * @var ConditionalOperator::*|null
84
+ * @var null| ConditionalOperator::*
85
85
*/
86
86
private $ ConditionalOperator ;
87
87
@@ -94,7 +94,7 @@ class ScanInput implements Input
94
94
private $ ExclusiveStartKey ;
95
95
96
96
/**
97
- * @var ReturnConsumedCapacity::*|null
97
+ * @var null| ReturnConsumedCapacity::*
98
98
*/
99
99
private $ ReturnConsumedCapacity ;
100
100
Original file line number Diff line number Diff line change @@ -60,20 +60,20 @@ class UpdateItemInput implements Input
60
60
*
61
61
* @see https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/LegacyConditionalParameters.ConditionalOperator.html
62
62
*
63
- * @var ConditionalOperator::*|null
63
+ * @var null| ConditionalOperator::*
64
64
*/
65
65
private $ ConditionalOperator ;
66
66
67
67
/**
68
68
* Use `ReturnValues` if you want to get the item attributes as they appear before or after they are updated. For
69
69
* `UpdateItem`, the valid values are:.
70
70
*
71
- * @var ReturnValue::*|null
71
+ * @var null| ReturnValue::*
72
72
*/
73
73
private $ ReturnValues ;
74
74
75
75
/**
76
- * @var ReturnConsumedCapacity::*|null
76
+ * @var null| ReturnConsumedCapacity::*
77
77
*/
78
78
private $ ReturnConsumedCapacity ;
79
79
@@ -82,7 +82,7 @@ class UpdateItemInput implements Input
82
82
* item collections, if any, that were modified during the operation are returned in the response. If set to `NONE` (the
83
83
* default), no statistics are returned.
84
84
*
85
- * @var ReturnItemCollectionMetrics::*|null
85
+ * @var null| ReturnItemCollectionMetrics::*
86
86
*/
87
87
private $ ReturnItemCollectionMetrics ;
88
88
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ class UpdateTableInput implements Input
39
39
* capacity values are estimated based on the consumed read and write capacity of your table and global secondary
40
40
* indexes over the past 30 minutes.
41
41
*
42
- * @var BillingMode::*|null
42
+ * @var null| BillingMode::*
43
43
*/
44
44
private $ BillingMode ;
45
45
You can’t perform that action at this time.
0 commit comments