@@ -14,28 +14,28 @@ module {:extern} CreateWrappedItemEncryptor {
1414 // The `ensures` clause is copy-pasted from the DynamoDbItemEncryptor client method's `ensures` clause.
1515 method {:extern} CreateWrappedItemEncryptor (config: ENC .DynamoDbItemEncryptorConfig)
1616 returns (output: Result< ENC. IDynamoDbItemEncryptorClient, ENC. Error> )
17- requires config. keyring. Some? ==>
18- config. keyring. value. ValidState ()
19- requires config. cmm. Some? ==>
20- config. cmm. value. ValidState ()
21- requires config. legacyOverride. Some? ==>
22- config. legacyOverride. value. encryptor. ValidState ()
23- modifies if config. keyring. Some? then
24- config. keyring. value. Modifies
25- else {}
26- modifies if config. cmm. Some? then
27- config. cmm. value. Modifies
28- else {}
29- modifies if config. legacyOverride. Some? then
30- config. legacyOverride. value. encryptor. Modifies
31- else {}
17+ // requires config.keyring.Some? ==>
18+ // config.keyring.value.ValidState()
19+ // requires config.cmm.Some? ==>
20+ // config.cmm.value.ValidState()
21+ // requires config.legacyOverride.Some? ==>
22+ // config.legacyOverride.value.encryptor.ValidState()
23+ // modifies if config.keyring.Some? then
24+ // config.keyring.value.Modifies
25+ // else {}
26+ // modifies if config.cmm.Some? then
27+ // config.cmm.value.Modifies
28+ // else {}
29+ // modifies if config.legacyOverride.Some? then
30+ // config.legacyOverride.value.encryptor.Modifies
31+ // else {}
3232 ensures output. Success? ==>
3333 && output. value is DynamoDbItemEncryptor. DynamoDbItemEncryptorClient
3434 && fresh (output. value)
3535 && fresh (output. value. History)
3636 && output. value. ValidState ()
3737 && var rconfig := (output. value as DynamoDbItemEncryptor. DynamoDbItemEncryptorClient). config;
38- && fresh (output. value. Modifies - Operations . ModifiesInternalConfig (rconfig) )
38+ && fresh (output. value. Modifies)
3939 && rconfig. logicalTableName == config. logicalTableName
4040 && rconfig. partitionKeyName == config. partitionKeyName
4141 && rconfig. sortKeyName == config. sortKeyName
0 commit comments