Skip to content

Commit

Permalink
Update required fields in IoT TopicRule DynamoDBAction
Browse files Browse the repository at this point in the history
  • Loading branch information
markpeek committed Jan 30, 2018
1 parent 010460e commit 451411d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions troposphere/iot.py
Expand Up @@ -30,12 +30,12 @@ class CloudwatchMetricAction(AWSProperty):
class DynamoDBAction(AWSProperty):
props = {
'HashKeyField': (basestring, True),
'HashKeyType': (basestring, True),
'HashKeyType': (basestring, False),
'HashKeyValue': (basestring, True),
'PayloadField': (basestring, False),
'RangeKeyField': (basestring, True),
'RangeKeyType': (basestring, True),
'RangeKeyValue': (basestring, True),
'RangeKeyField': (basestring, False),
'RangeKeyType': (basestring, False),
'RangeKeyValue': (basestring, False),
'RoleArn': (basestring, True),
'TableName': (basestring, True),
}
Expand Down

0 comments on commit 451411d

Please sign in to comment.