Skip to content

Commit

Permalink
Pass ref-spec as it is
Browse files Browse the repository at this point in the history
  • Loading branch information
tnielsen2 committed Jul 27, 2023
1 parent 3221953 commit 13441c0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions troposphere/connect.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class EvaluationFormBaseItem(AWSProperty):
"""

props: PropsDictType = {
"Section": ("EvaluationFormSection", True),
"Section": (EvaluationFormSection, True),
}


Expand Down Expand Up @@ -723,8 +723,8 @@ class EvaluationFormItem(AWSProperty):
"""

props: PropsDictType = {
"Question": ("EvaluationFormQuestion", False),
"Section": ("EvaluationFormSection", False),
"Question": (EvaluationFormQuestion, False),
"Section": (EvaluationFormSection, False),
}


Expand All @@ -734,7 +734,7 @@ class EvaluationFormNumericQuestionAutomation(AWSProperty):
"""

props: PropsDictType = {
"PropertyValue": ("NumericQuestionPropertyValueAutomation", True),
"PropertyValue": (NumericQuestionPropertyValueAutomation, True),
}


Expand Down Expand Up @@ -771,7 +771,7 @@ class EvaluationFormQuestionTypeProperties(AWSProperty):

props: PropsDictType = {
"Numeric": (EvaluationFormNumericQuestionProperties, False),
"SingleSelect": ("EvaluationFormSingleSelectQuestionProperties", False),
"SingleSelect": (EvaluationFormSingleSelectQuestionProperties, False),
}


Expand Down Expand Up @@ -811,7 +811,7 @@ class EvaluationFormSingleSelectQuestionAutomationOption(AWSProperty):
"""

props: PropsDictType = {
"RuleCategory": ("SingleSelectQuestionRuleCategoryAutomation", True),
"RuleCategory": (SingleSelectQuestionRuleCategoryAutomation, True),
}


Expand Down
2 changes: 1 addition & 1 deletion troposphere/s3.py
Original file line number Diff line number Diff line change
Expand Up @@ -989,7 +989,7 @@ class Encryption(AWSProperty):
"""

props: PropsDictType = {
"SSEKMS": ("SSEKMS", False),
"SSEKMS": (SSEKMS, False),
"SSES3": (dict, False),
}

Expand Down

0 comments on commit 13441c0

Please sign in to comment.