You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What is the expected format of readOnlyProperties? There are several examples in the current schemas, shown below. Since this format is an extension of JSON Schema, I'd have expected readOnlyProperties to match required, i.e. just having property names. Instead it has something which looks like a JSON Pointer, but in most cases isn't actually a valid reference.
Are all of the properties listed here supposed to be now accessible with Fn::GetAtt? The last word on this was in 2019 (#59): "supposed to be, but not quite working yet".
Prefixed with /properties/, nested with /
The /properties/ prefix implies that this is a JSON Pointer, but these aren't actually valid references, since the nested property isn't a child of the schema at that location.
When defining resource semantics like `createOnlyProperties`, `primaryIdentifier` you are expected to use a JSON Pointer to a property definition in the same resource document. Schemas you author can be checked with the CFN CLI `validate` command.
What is the expected format of
readOnlyProperties
? There are several examples in the current schemas, shown below. Since this format is an extension of JSON Schema, I'd have expectedreadOnlyProperties
to matchrequired
, i.e. just having property names. Instead it has something which looks like a JSON Pointer, but in most cases isn't actually a valid reference.Are all of the properties listed here supposed to be now accessible with
Fn::GetAtt
? The last word on this was in 2019 (#59): "supposed to be, but not quite working yet".Prefixed with
/properties/
, nested with/
The
/properties/
prefix implies that this is a JSON Pointer, but these aren't actually valid references, since the nested property isn't a child of the schema at that location.E.g.
AWS::RDS::DBInstance
:Prefixed with
/properties/
, nested with/
, contains*
wildcardsAlso not a valid reference. E.g.
AWS::WAFv2::RuleGroup
:Prefixed with
/properties/
, nested with.
Also not a valid reference. E.g.
AWS::ElastiCache::CacheCluster
:Prefixed with
/Properties/
(uppercaseP
)I assume this is a mistake. Only example is
AWS::DMS::ReplicationConfig
:The text was updated successfully, but these errors were encountered: