@intentius/chant-lexicon-aws 0.38.0 → 0.41.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (89) hide show
  1. package/dist/ambient.d.ts.map +1 -1
  2. package/dist/api/read-client.d.ts.map +1 -1
  3. package/dist/codegen/generate.d.ts.map +1 -1
  4. package/dist/codegen/naming.d.ts +18 -1
  5. package/dist/codegen/naming.d.ts.map +1 -1
  6. package/dist/composites/alb-shared.d.ts +7 -1
  7. package/dist/composites/alb-shared.d.ts.map +1 -1
  8. package/dist/composites/ec2-instance-role.d.ts +4 -1
  9. package/dist/composites/ec2-instance-role.d.ts.map +1 -1
  10. package/dist/composites/efs-with-access-point.d.ts +5 -1
  11. package/dist/composites/efs-with-access-point.d.ts.map +1 -1
  12. package/dist/composites/fargate-alb.d.ts +14 -1
  13. package/dist/composites/fargate-alb.d.ts.map +1 -1
  14. package/dist/composites/fargate-service.d.ts +19 -8
  15. package/dist/composites/fargate-service.d.ts.map +1 -1
  16. package/dist/composites/index.d.ts +2 -2
  17. package/dist/composites/index.d.ts.map +1 -1
  18. package/dist/composites/lambda-api.d.ts +3 -1
  19. package/dist/composites/lambda-api.d.ts.map +1 -1
  20. package/dist/composites/lambda-dynamodb.d.ts +9 -2
  21. package/dist/composites/lambda-dynamodb.d.ts.map +1 -1
  22. package/dist/composites/lambda-eventbridge.d.ts +9 -2
  23. package/dist/composites/lambda-eventbridge.d.ts.map +1 -1
  24. package/dist/composites/lambda-s3.d.ts +3 -1
  25. package/dist/composites/lambda-s3.d.ts.map +1 -1
  26. package/dist/composites/lambda-sns.d.ts +10 -2
  27. package/dist/composites/lambda-sns.d.ts.map +1 -1
  28. package/dist/composites/lambda-sqs.d.ts +9 -2
  29. package/dist/composites/lambda-sqs.d.ts.map +1 -1
  30. package/dist/composites/microvm-app.d.ts +25 -4
  31. package/dist/composites/microvm-app.d.ts.map +1 -1
  32. package/dist/composites/minimal-vpc.d.ts +10 -1
  33. package/dist/composites/minimal-vpc.d.ts.map +1 -1
  34. package/dist/composites/rds-instance.d.ts +1 -1
  35. package/dist/composites/rds-instance.d.ts.map +1 -1
  36. package/dist/composites/scheduled-lambda.d.ts +15 -3
  37. package/dist/composites/scheduled-lambda.d.ts.map +1 -1
  38. package/dist/composites/solr-fargate-service.d.ts +27 -1
  39. package/dist/composites/solr-fargate-service.d.ts.map +1 -1
  40. package/dist/generated/index.d.ts +63 -49
  41. package/dist/generated/index.d.ts.map +1 -1
  42. package/dist/import/generator.d.ts.map +1 -1
  43. package/dist/index.d.ts +2 -2
  44. package/dist/index.d.ts.map +1 -1
  45. package/dist/integrity.json +4 -4
  46. package/dist/manifest.json +1 -1
  47. package/dist/meta.json +560 -448
  48. package/dist/reference-catalog.d.ts.map +1 -1
  49. package/dist/spec/pin.d.ts +116 -0
  50. package/dist/spec/pin.d.ts.map +1 -0
  51. package/dist/spec/pinned-types.json +1653 -0
  52. package/dist/types/index.d.ts +771 -555
  53. package/dist/validate.d.ts.map +1 -1
  54. package/package.json +2 -2
  55. package/src/ambient.test.ts +21 -0
  56. package/src/ambient.ts +16 -0
  57. package/src/api/read-client.test.ts +31 -0
  58. package/src/api/read-client.ts +43 -1
  59. package/src/codegen/generate.ts +17 -3
  60. package/src/codegen/naming.ts +31 -2
  61. package/src/composites/alb-shared.ts +1 -1
  62. package/src/composites/ec2-instance-role.ts +1 -1
  63. package/src/composites/efs-with-access-point.ts +1 -1
  64. package/src/composites/fargate-alb.ts +1 -1
  65. package/src/composites/fargate-service.ts +15 -10
  66. package/src/composites/index.ts +2 -2
  67. package/src/composites/lambda-api.ts +3 -2
  68. package/src/composites/lambda-dynamodb.ts +4 -3
  69. package/src/composites/lambda-eventbridge.ts +4 -3
  70. package/src/composites/lambda-s3.ts +3 -2
  71. package/src/composites/lambda-sns.ts +4 -3
  72. package/src/composites/lambda-sqs.ts +4 -3
  73. package/src/composites/microvm-app.test.ts +39 -1
  74. package/src/composites/microvm-app.ts +32 -11
  75. package/src/composites/minimal-vpc.ts +1 -1
  76. package/src/composites/rds-instance.ts +1 -1
  77. package/src/composites/scheduled-lambda.ts +4 -3
  78. package/src/composites/solr-fargate-service.ts +7 -1
  79. package/src/generated/index.d.ts +771 -555
  80. package/src/generated/index.ts +65 -51
  81. package/src/generated/lexicon-aws.json +560 -448
  82. package/src/import/generator.ts +5 -4
  83. package/src/index.ts +2 -2
  84. package/src/reference-catalog.test.ts +28 -0
  85. package/src/reference-catalog.ts +7 -0
  86. package/src/spec/pin.test.ts +263 -0
  87. package/src/spec/pin.ts +254 -0
  88. package/src/spec/pinned-types.json +1653 -0
  89. package/src/validate.ts +5 -0
package/dist/meta.json CHANGED
@@ -2308,6 +2308,16 @@
2308
2308
  "kind": "property",
2309
2309
  "lexicon": "aws"
2310
2310
  },
2311
+ "AdsPersonalizationConcurrency": {
2312
+ "resourceType": "AWS::MediaTailor::PlaybackConfiguration.AdsPersonalizationConcurrency",
2313
+ "kind": "property",
2314
+ "lexicon": "aws"
2315
+ },
2316
+ "AdsPersonalizationTimeouts": {
2317
+ "resourceType": "AWS::MediaTailor::PlaybackConfiguration.AdsPersonalizationTimeouts",
2318
+ "kind": "property",
2319
+ "lexicon": "aws"
2320
+ },
2311
2321
  "AdvancedBackupSettingResourceType": {
2312
2322
  "resourceType": "AWS::Backup::BackupPlan.AdvancedBackupSettingResourceType",
2313
2323
  "kind": "property",
@@ -9178,6 +9188,64 @@
9178
9188
  "kind": "property",
9179
9189
  "lexicon": "aws"
9180
9190
  },
9191
+ "BCMDataExportsExport": {
9192
+ "resourceType": "AWS::BCMDataExports::Export",
9193
+ "kind": "resource",
9194
+ "lexicon": "aws",
9195
+ "attrs": {
9196
+ "ExportArn": "ExportArn",
9197
+ "Export_ExportArn": "Export.ExportArn"
9198
+ },
9199
+ "propertyConstraints": {
9200
+ "ExportArn": {
9201
+ "pattern": "^arn:aws[-a-z0-9]*:(bcm-data-exports):[-a-z0-9]*:[0-9]{12}:[-a-zA-Z0-9/:_]+$",
9202
+ "minLength": 20,
9203
+ "maxLength": 2048
9204
+ }
9205
+ },
9206
+ "createOnly": [
9207
+ "Export/Name",
9208
+ "Export/RefreshCadence"
9209
+ ],
9210
+ "primaryIdentifier": [
9211
+ "ExportArn"
9212
+ ],
9213
+ "tagging": {
9214
+ "taggable": true,
9215
+ "tagOnCreate": true,
9216
+ "tagUpdatable": true
9217
+ }
9218
+ },
9219
+ "BCMDataExportsExport_DataQuery": {
9220
+ "resourceType": "AWS::BCMDataExports::Export.DataQuery",
9221
+ "kind": "property",
9222
+ "lexicon": "aws"
9223
+ },
9224
+ "BCMDataExportsExport_DestinationConfigurations": {
9225
+ "resourceType": "AWS::BCMDataExports::Export.DestinationConfigurations",
9226
+ "kind": "property",
9227
+ "lexicon": "aws"
9228
+ },
9229
+ "BCMDataExportsExport_Export": {
9230
+ "resourceType": "AWS::BCMDataExports::Export.Export",
9231
+ "kind": "property",
9232
+ "lexicon": "aws"
9233
+ },
9234
+ "BCMDataExportsExport_RefreshCadence": {
9235
+ "resourceType": "AWS::BCMDataExports::Export.RefreshCadence",
9236
+ "kind": "property",
9237
+ "lexicon": "aws"
9238
+ },
9239
+ "BCMDataExportsExport_ResourceTag": {
9240
+ "resourceType": "AWS::BCMDataExports::Export.ResourceTag",
9241
+ "kind": "property",
9242
+ "lexicon": "aws"
9243
+ },
9244
+ "BCMDataExportsExport_S3Destination": {
9245
+ "resourceType": "AWS::BCMDataExports::Export.S3Destination",
9246
+ "kind": "property",
9247
+ "lexicon": "aws"
9248
+ },
9181
9249
  "BackendDefaults": {
9182
9250
  "resourceType": "AWS::AppMesh::VirtualNode.BackendDefaults",
9183
9251
  "kind": "property",
@@ -10760,18 +10828,29 @@
10760
10828
  "Arn": "Arn"
10761
10829
  },
10762
10830
  "propertyConstraints": {
10831
+ "BotType": {
10832
+ "default": "Bot",
10833
+ "enum": [
10834
+ "Bot",
10835
+ "BotNetwork"
10836
+ ]
10837
+ },
10763
10838
  "IdleSessionTTLInSeconds": {
10764
10839
  "minimum": 60,
10765
10840
  "maximum": 86400
10766
10841
  }
10767
10842
  },
10843
+ "createOnly": [
10844
+ "BotType"
10845
+ ],
10768
10846
  "writeOnly": [
10769
10847
  "BotLocales",
10770
10848
  "BotFileS3Location",
10771
10849
  "AutoBuildBotLocales",
10772
10850
  "TestBotAliasTags",
10773
10851
  "Replication",
10774
- "TestBotAliasSettings"
10852
+ "TestBotAliasSettings",
10853
+ "BotMembers"
10775
10854
  ],
10776
10855
  "primaryIdentifier": [
10777
10856
  "Id"
@@ -10819,6 +10898,11 @@
10819
10898
  "kind": "property",
10820
10899
  "lexicon": "aws"
10821
10900
  },
10901
+ "BotMember": {
10902
+ "resourceType": "AWS::Lex::Bot.BotMember",
10903
+ "kind": "property",
10904
+ "lexicon": "aws"
10905
+ },
10822
10906
  "BotVersion": {
10823
10907
  "resourceType": "AWS::Lex::BotVersion",
10824
10908
  "kind": "resource",
@@ -10852,6 +10936,11 @@
10852
10936
  "kind": "property",
10853
10937
  "lexicon": "aws"
10854
10938
  },
10939
+ "Bot_BotMember": {
10940
+ "resourceType": "AWS::Lex::Bot.BotMember",
10941
+ "kind": "property",
10942
+ "lexicon": "aws"
10943
+ },
10855
10944
  "Bot_CompositeSlotTypeSetting": {
10856
10945
  "resourceType": "AWS::Lex::Bot.CompositeSlotTypeSetting",
10857
10946
  "kind": "property",
@@ -12689,7 +12778,11 @@
12689
12778
  "attrs": {
12690
12779
  "Id": "Id",
12691
12780
  "State": "State",
12692
- "Code_SourceLocationArn": "Code.SourceLocationArn"
12781
+ "Code_SourceLocationArn": "Code.SourceLocationArn",
12782
+ "Replicas_*_VpcConfig_VpcId": "Replicas.*.VpcConfig.VpcId",
12783
+ "Replicas_*_CanaryState": "Replicas.*.CanaryState",
12784
+ "Replicas_*_LastModified": "Replicas.*.LastModified",
12785
+ "Replicas_*_ReplicationStatus": "Replicas.*.ReplicationStatus"
12693
12786
  },
12694
12787
  "propertyConstraints": {
12695
12788
  "Name": {
@@ -12703,6 +12796,9 @@
12703
12796
  "AUTOMATIC",
12704
12797
  "OFF"
12705
12798
  ]
12799
+ },
12800
+ "KmsKeyArn": {
12801
+ "pattern": "^arn:[a-z0-9-]+:kms:[a-z0-9-]+:[0-9]{12}:(key/([a-f0-9-]{36}|mrk-[a-f0-9]{32})|alias/[a-zA-Z0-9:/_.-]+)$"
12706
12802
  }
12707
12803
  },
12708
12804
  "createOnly": [
@@ -12719,7 +12815,10 @@
12719
12815
  "RunConfig/EnvironmentVariables",
12720
12816
  "VisualReference",
12721
12817
  "VisualReferences",
12722
- "DryRunAndUpdate"
12818
+ "DryRunAndUpdate",
12819
+ "Replicas/*/Tags",
12820
+ "Replicas/*/ResourcesToReplicateTags",
12821
+ "Replicas/*/KmsKeyArn"
12723
12822
  ],
12724
12823
  "primaryIdentifier": [
12725
12824
  "Name"
@@ -12764,6 +12863,16 @@
12764
12863
  "kind": "property",
12765
12864
  "lexicon": "aws"
12766
12865
  },
12866
+ "Canary_Replica": {
12867
+ "resourceType": "AWS::Synthetics::Canary.Replica",
12868
+ "kind": "property",
12869
+ "lexicon": "aws"
12870
+ },
12871
+ "Canary_ReplicaReplicationStatus": {
12872
+ "resourceType": "AWS::Synthetics::Canary.ReplicaReplicationStatus",
12873
+ "kind": "property",
12874
+ "lexicon": "aws"
12875
+ },
12767
12876
  "Canary_RetryConfig": {
12768
12877
  "resourceType": "AWS::Synthetics::Canary.RetryConfig",
12769
12878
  "kind": "property",
@@ -13945,6 +14054,72 @@
13945
14054
  "tagUpdatable": true
13946
14055
  }
13947
14056
  },
14057
+ "Channel": {
14058
+ "resourceType": "AWS::MSK::Channel",
14059
+ "kind": "resource",
14060
+ "lexicon": "aws",
14061
+ "attrs": {
14062
+ "ChannelArn": "ChannelArn",
14063
+ "Status": "Status",
14064
+ "StateInfo": "StateInfo"
14065
+ },
14066
+ "propertyConstraints": {
14067
+ "ClusterArn": {
14068
+ "pattern": "^arn:[\\w-]+:kafka:[\\w-]+:\\d+:cluster.*\\Z"
14069
+ }
14070
+ },
14071
+ "createOnly": [
14072
+ "ChannelName",
14073
+ "ClusterArn",
14074
+ "TopicConfigurationList",
14075
+ "EncryptionConfiguration",
14076
+ "LoggingInfo",
14077
+ "IcebergDestinationConfiguration/ServiceExecutionRoleArn",
14078
+ "IcebergDestinationConfiguration/Catalog",
14079
+ "IcebergDestinationConfiguration/Catalog/CatalogArn",
14080
+ "IcebergDestinationConfiguration/Catalog/WarehouseLocation",
14081
+ "IcebergDestinationConfiguration/DeadLetterQueueS3",
14082
+ "IcebergDestinationConfiguration/DeadLetterQueueS3/BucketArn",
14083
+ "IcebergDestinationConfiguration/DeadLetterQueueS3/ErrorOutputPrefix",
14084
+ "IcebergDestinationConfiguration/DeadLetterQueueS3/ExpectedBucketOwner",
14085
+ "IcebergDestinationConfiguration/AppendOnly",
14086
+ "IcebergDestinationConfiguration/SchemaEvolution",
14087
+ "IcebergDestinationConfiguration/SchemaEvolution/EnableSchemaEvolution",
14088
+ "IcebergDestinationConfiguration/TableCreation",
14089
+ "IcebergDestinationConfiguration/TableCreation/EnableTableCreation",
14090
+ "IcebergDestinationConfiguration/DestinationTableList",
14091
+ "IcebergDestinationConfiguration/DestinationTableList/*/DestinationDatabaseName",
14092
+ "IcebergDestinationConfiguration/DestinationTableList/*/DestinationTableName",
14093
+ "IcebergDestinationConfiguration/DestinationTableList/*/PartitionSpec",
14094
+ "IcebergDestinationConfiguration/DestinationTableList/*/PartitionSpec/PartitionStrategy",
14095
+ "IcebergDestinationConfiguration/DestinationTableList/*/PartitionSpec/SourceList",
14096
+ "IcebergDestinationConfiguration/DestinationTableList/*/PartitionSpec/SourceList/*/SourceName",
14097
+ "IcebergDestinationConfiguration/CompressionType",
14098
+ "S3DestinationConfiguration/ServiceExecutionRoleArn",
14099
+ "S3DestinationConfiguration/DeadLetterQueueS3",
14100
+ "S3DestinationConfiguration/DeadLetterQueueS3/BucketArn",
14101
+ "S3DestinationConfiguration/DeadLetterQueueS3/ErrorOutputPrefix",
14102
+ "S3DestinationConfiguration/DeadLetterQueueS3/ExpectedBucketOwner",
14103
+ "S3DestinationConfiguration/Storage",
14104
+ "S3DestinationConfiguration/Storage/BucketArn",
14105
+ "S3DestinationConfiguration/Storage/OutputPrefix",
14106
+ "S3DestinationConfiguration/Storage/OutputKeyTemplate",
14107
+ "S3DestinationConfiguration/Storage/StorageClass",
14108
+ "S3DestinationConfiguration/Storage/CompressionType",
14109
+ "S3DestinationConfiguration/Storage/ExpectedBucketOwner"
14110
+ ],
14111
+ "writeOnly": [
14112
+ "ClusterArn"
14113
+ ],
14114
+ "primaryIdentifier": [
14115
+ "ChannelArn"
14116
+ ],
14117
+ "tagging": {
14118
+ "taggable": true,
14119
+ "tagOnCreate": true,
14120
+ "tagUpdatable": true
14121
+ }
14122
+ },
13948
14123
  "ChannelAssociation": {
13949
14124
  "resourceType": "AWS::Notifications::ChannelAssociation",
13950
14125
  "kind": "resource",
@@ -14106,6 +14281,96 @@
14106
14281
  "kind": "property",
14107
14282
  "lexicon": "aws"
14108
14283
  },
14284
+ "Channel_Catalog": {
14285
+ "resourceType": "AWS::MSK::Channel.Catalog",
14286
+ "kind": "property",
14287
+ "lexicon": "aws"
14288
+ },
14289
+ "Channel_ChannelLoggingInfo": {
14290
+ "resourceType": "AWS::MSK::Channel.ChannelLoggingInfo",
14291
+ "kind": "property",
14292
+ "lexicon": "aws"
14293
+ },
14294
+ "Channel_ChannelStateInfo": {
14295
+ "resourceType": "AWS::MSK::Channel.ChannelStateInfo",
14296
+ "kind": "property",
14297
+ "lexicon": "aws"
14298
+ },
14299
+ "Channel_CloudWatchLogsLogDestination": {
14300
+ "resourceType": "AWS::MSK::Channel.CloudWatchLogsLogDestination",
14301
+ "kind": "property",
14302
+ "lexicon": "aws"
14303
+ },
14304
+ "Channel_DeadLetterQueueS3": {
14305
+ "resourceType": "AWS::MSK::Channel.DeadLetterQueueS3",
14306
+ "kind": "property",
14307
+ "lexicon": "aws"
14308
+ },
14309
+ "Channel_DestinationTable": {
14310
+ "resourceType": "AWS::MSK::Channel.DestinationTable",
14311
+ "kind": "property",
14312
+ "lexicon": "aws"
14313
+ },
14314
+ "Channel_EncryptionConfiguration": {
14315
+ "resourceType": "AWS::MSK::Channel.EncryptionConfiguration",
14316
+ "kind": "property",
14317
+ "lexicon": "aws"
14318
+ },
14319
+ "Channel_FirehoseLogDestination": {
14320
+ "resourceType": "AWS::MSK::Channel.FirehoseLogDestination",
14321
+ "kind": "property",
14322
+ "lexicon": "aws"
14323
+ },
14324
+ "Channel_IcebergDestinationConfiguration": {
14325
+ "resourceType": "AWS::MSK::Channel.IcebergDestinationConfiguration",
14326
+ "kind": "property",
14327
+ "lexicon": "aws"
14328
+ },
14329
+ "Channel_PartitionSpec": {
14330
+ "resourceType": "AWS::MSK::Channel.PartitionSpec",
14331
+ "kind": "property",
14332
+ "lexicon": "aws"
14333
+ },
14334
+ "Channel_RecordConverter": {
14335
+ "resourceType": "AWS::MSK::Channel.RecordConverter",
14336
+ "kind": "property",
14337
+ "lexicon": "aws"
14338
+ },
14339
+ "Channel_RecordSchema": {
14340
+ "resourceType": "AWS::MSK::Channel.RecordSchema",
14341
+ "kind": "property",
14342
+ "lexicon": "aws"
14343
+ },
14344
+ "Channel_S3DestinationConfiguration": {
14345
+ "resourceType": "AWS::MSK::Channel.S3DestinationConfiguration",
14346
+ "kind": "property",
14347
+ "lexicon": "aws"
14348
+ },
14349
+ "Channel_S3LogDestination": {
14350
+ "resourceType": "AWS::MSK::Channel.S3LogDestination",
14351
+ "kind": "property",
14352
+ "lexicon": "aws"
14353
+ },
14354
+ "Channel_S3Storage": {
14355
+ "resourceType": "AWS::MSK::Channel.S3Storage",
14356
+ "kind": "property",
14357
+ "lexicon": "aws"
14358
+ },
14359
+ "Channel_SchemaEvolution": {
14360
+ "resourceType": "AWS::MSK::Channel.SchemaEvolution",
14361
+ "kind": "property",
14362
+ "lexicon": "aws"
14363
+ },
14364
+ "Channel_TableCreation": {
14365
+ "resourceType": "AWS::MSK::Channel.TableCreation",
14366
+ "kind": "property",
14367
+ "lexicon": "aws"
14368
+ },
14369
+ "Channel_TopicConfiguration": {
14370
+ "resourceType": "AWS::MSK::Channel.TopicConfiguration",
14371
+ "kind": "property",
14372
+ "lexicon": "aws"
14373
+ },
14109
14374
  "ChatChannel": {
14110
14375
  "resourceType": "AWS::SSMIncidents::ResponsePlan.ChatChannel",
14111
14376
  "kind": "property",
@@ -24605,6 +24870,52 @@
24605
24870
  "kind": "property",
24606
24871
  "lexicon": "aws"
24607
24872
  },
24873
+ "DataBrewRecipe": {
24874
+ "resourceType": "AWS::DataBrew::Recipe",
24875
+ "kind": "resource",
24876
+ "lexicon": "aws",
24877
+ "propertyConstraints": {
24878
+ "Description": {
24879
+ "minLength": 0,
24880
+ "maxLength": 1024
24881
+ },
24882
+ "Name": {
24883
+ "minLength": 1,
24884
+ "maxLength": 255
24885
+ }
24886
+ },
24887
+ "createOnly": [
24888
+ "Name"
24889
+ ],
24890
+ "primaryIdentifier": [
24891
+ "Name"
24892
+ ],
24893
+ "tagging": {
24894
+ "taggable": true,
24895
+ "tagOnCreate": true,
24896
+ "tagUpdatable": true
24897
+ }
24898
+ },
24899
+ "DataBrewRecipe_Action": {
24900
+ "resourceType": "AWS::DataBrew::Recipe.Action",
24901
+ "kind": "property",
24902
+ "lexicon": "aws"
24903
+ },
24904
+ "DataBrewRecipe_ConditionExpression": {
24905
+ "resourceType": "AWS::DataBrew::Recipe.ConditionExpression",
24906
+ "kind": "property",
24907
+ "lexicon": "aws"
24908
+ },
24909
+ "DataBrewRecipe_RecipeStep": {
24910
+ "resourceType": "AWS::DataBrew::Recipe.RecipeStep",
24911
+ "kind": "property",
24912
+ "lexicon": "aws"
24913
+ },
24914
+ "DataBrewRecipe_Tag": {
24915
+ "resourceType": "AWS::DataBrew::Recipe.Tag",
24916
+ "kind": "property",
24917
+ "lexicon": "aws"
24918
+ },
24608
24919
  "DataBrewSchedule": {
24609
24920
  "resourceType": "AWS::DataBrew::Schedule",
24610
24921
  "kind": "resource",
@@ -38232,32 +38543,9 @@
38232
38543
  "lexicon": "aws"
38233
38544
  },
38234
38545
  "Export": {
38235
- "resourceType": "AWS::BCMDataExports::Export",
38236
- "kind": "resource",
38237
- "lexicon": "aws",
38238
- "attrs": {
38239
- "ExportArn": "ExportArn",
38240
- "Export_ExportArn": "Export.ExportArn"
38241
- },
38242
- "propertyConstraints": {
38243
- "ExportArn": {
38244
- "pattern": "^arn:aws[-a-z0-9]*:(bcm-data-exports):[-a-z0-9]*:[0-9]{12}:[-a-zA-Z0-9/:_]+$",
38245
- "minLength": 20,
38246
- "maxLength": 2048
38247
- }
38248
- },
38249
- "createOnly": [
38250
- "Export/Name",
38251
- "Export/RefreshCadence"
38252
- ],
38253
- "primaryIdentifier": [
38254
- "ExportArn"
38255
- ],
38256
- "tagging": {
38257
- "taggable": true,
38258
- "tagOnCreate": true,
38259
- "tagUpdatable": true
38260
- }
38546
+ "resourceType": "AWS::BCMDataExports::Export.Export",
38547
+ "kind": "property",
38548
+ "lexicon": "aws"
38261
38549
  },
38262
38550
  "ExportHiddenFieldsOption": {
38263
38551
  "resourceType": "AWS::QuickSight::Dashboard.ExportHiddenFieldsOption",
@@ -38274,36 +38562,6 @@
38274
38562
  "kind": "property",
38275
38563
  "lexicon": "aws"
38276
38564
  },
38277
- "Export_DataQuery": {
38278
- "resourceType": "AWS::BCMDataExports::Export.DataQuery",
38279
- "kind": "property",
38280
- "lexicon": "aws"
38281
- },
38282
- "Export_DestinationConfigurations": {
38283
- "resourceType": "AWS::BCMDataExports::Export.DestinationConfigurations",
38284
- "kind": "property",
38285
- "lexicon": "aws"
38286
- },
38287
- "Export_Export": {
38288
- "resourceType": "AWS::BCMDataExports::Export.Export",
38289
- "kind": "property",
38290
- "lexicon": "aws"
38291
- },
38292
- "Export_RefreshCadence": {
38293
- "resourceType": "AWS::BCMDataExports::Export.RefreshCadence",
38294
- "kind": "property",
38295
- "lexicon": "aws"
38296
- },
38297
- "Export_ResourceTag": {
38298
- "resourceType": "AWS::BCMDataExports::Export.ResourceTag",
38299
- "kind": "property",
38300
- "lexicon": "aws"
38301
- },
38302
- "Export_S3Destination": {
38303
- "resourceType": "AWS::BCMDataExports::Export.S3Destination",
38304
- "kind": "property",
38305
- "lexicon": "aws"
38306
- },
38307
38565
  "ExportingConfig": {
38308
38566
  "resourceType": "AWS::CustomerProfiles::Domain.ExportingConfig",
38309
38567
  "kind": "property",
@@ -58192,162 +58450,6 @@
58192
58450
  "kind": "property",
58193
58451
  "lexicon": "aws"
58194
58452
  },
58195
- "MSKChannel": {
58196
- "resourceType": "AWS::MSK::Channel",
58197
- "kind": "resource",
58198
- "lexicon": "aws",
58199
- "attrs": {
58200
- "ChannelArn": "ChannelArn",
58201
- "Status": "Status",
58202
- "StateInfo": "StateInfo"
58203
- },
58204
- "propertyConstraints": {
58205
- "ClusterArn": {
58206
- "pattern": "^arn:[\\w-]+:kafka:[\\w-]+:\\d+:cluster.*\\Z"
58207
- }
58208
- },
58209
- "createOnly": [
58210
- "ChannelName",
58211
- "ClusterArn",
58212
- "TopicConfigurationList",
58213
- "EncryptionConfiguration",
58214
- "LoggingInfo",
58215
- "IcebergDestinationConfiguration/ServiceExecutionRoleArn",
58216
- "IcebergDestinationConfiguration/Catalog",
58217
- "IcebergDestinationConfiguration/Catalog/CatalogArn",
58218
- "IcebergDestinationConfiguration/Catalog/WarehouseLocation",
58219
- "IcebergDestinationConfiguration/DeadLetterQueueS3",
58220
- "IcebergDestinationConfiguration/DeadLetterQueueS3/BucketArn",
58221
- "IcebergDestinationConfiguration/DeadLetterQueueS3/ErrorOutputPrefix",
58222
- "IcebergDestinationConfiguration/DeadLetterQueueS3/ExpectedBucketOwner",
58223
- "IcebergDestinationConfiguration/AppendOnly",
58224
- "IcebergDestinationConfiguration/SchemaEvolution",
58225
- "IcebergDestinationConfiguration/SchemaEvolution/EnableSchemaEvolution",
58226
- "IcebergDestinationConfiguration/TableCreation",
58227
- "IcebergDestinationConfiguration/TableCreation/EnableTableCreation",
58228
- "IcebergDestinationConfiguration/DestinationTableList",
58229
- "IcebergDestinationConfiguration/DestinationTableList/*/DestinationDatabaseName",
58230
- "IcebergDestinationConfiguration/DestinationTableList/*/DestinationTableName",
58231
- "IcebergDestinationConfiguration/DestinationTableList/*/PartitionSpec",
58232
- "IcebergDestinationConfiguration/DestinationTableList/*/PartitionSpec/PartitionStrategy",
58233
- "IcebergDestinationConfiguration/DestinationTableList/*/PartitionSpec/SourceList",
58234
- "IcebergDestinationConfiguration/DestinationTableList/*/PartitionSpec/SourceList/*/SourceName",
58235
- "IcebergDestinationConfiguration/CompressionType",
58236
- "S3DestinationConfiguration/ServiceExecutionRoleArn",
58237
- "S3DestinationConfiguration/DeadLetterQueueS3",
58238
- "S3DestinationConfiguration/DeadLetterQueueS3/BucketArn",
58239
- "S3DestinationConfiguration/DeadLetterQueueS3/ErrorOutputPrefix",
58240
- "S3DestinationConfiguration/DeadLetterQueueS3/ExpectedBucketOwner",
58241
- "S3DestinationConfiguration/Storage",
58242
- "S3DestinationConfiguration/Storage/BucketArn",
58243
- "S3DestinationConfiguration/Storage/OutputPrefix",
58244
- "S3DestinationConfiguration/Storage/OutputKeyTemplate",
58245
- "S3DestinationConfiguration/Storage/StorageClass",
58246
- "S3DestinationConfiguration/Storage/CompressionType",
58247
- "S3DestinationConfiguration/Storage/ExpectedBucketOwner"
58248
- ],
58249
- "writeOnly": [
58250
- "ClusterArn"
58251
- ],
58252
- "primaryIdentifier": [
58253
- "ChannelArn"
58254
- ],
58255
- "tagging": {
58256
- "taggable": true,
58257
- "tagOnCreate": true,
58258
- "tagUpdatable": true
58259
- }
58260
- },
58261
- "MSKChannel_Catalog": {
58262
- "resourceType": "AWS::MSK::Channel.Catalog",
58263
- "kind": "property",
58264
- "lexicon": "aws"
58265
- },
58266
- "MSKChannel_ChannelLoggingInfo": {
58267
- "resourceType": "AWS::MSK::Channel.ChannelLoggingInfo",
58268
- "kind": "property",
58269
- "lexicon": "aws"
58270
- },
58271
- "MSKChannel_ChannelStateInfo": {
58272
- "resourceType": "AWS::MSK::Channel.ChannelStateInfo",
58273
- "kind": "property",
58274
- "lexicon": "aws"
58275
- },
58276
- "MSKChannel_CloudWatchLogsLogDestination": {
58277
- "resourceType": "AWS::MSK::Channel.CloudWatchLogsLogDestination",
58278
- "kind": "property",
58279
- "lexicon": "aws"
58280
- },
58281
- "MSKChannel_DeadLetterQueueS3": {
58282
- "resourceType": "AWS::MSK::Channel.DeadLetterQueueS3",
58283
- "kind": "property",
58284
- "lexicon": "aws"
58285
- },
58286
- "MSKChannel_DestinationTable": {
58287
- "resourceType": "AWS::MSK::Channel.DestinationTable",
58288
- "kind": "property",
58289
- "lexicon": "aws"
58290
- },
58291
- "MSKChannel_EncryptionConfiguration": {
58292
- "resourceType": "AWS::MSK::Channel.EncryptionConfiguration",
58293
- "kind": "property",
58294
- "lexicon": "aws"
58295
- },
58296
- "MSKChannel_FirehoseLogDestination": {
58297
- "resourceType": "AWS::MSK::Channel.FirehoseLogDestination",
58298
- "kind": "property",
58299
- "lexicon": "aws"
58300
- },
58301
- "MSKChannel_IcebergDestinationConfiguration": {
58302
- "resourceType": "AWS::MSK::Channel.IcebergDestinationConfiguration",
58303
- "kind": "property",
58304
- "lexicon": "aws"
58305
- },
58306
- "MSKChannel_PartitionSpec": {
58307
- "resourceType": "AWS::MSK::Channel.PartitionSpec",
58308
- "kind": "property",
58309
- "lexicon": "aws"
58310
- },
58311
- "MSKChannel_RecordConverter": {
58312
- "resourceType": "AWS::MSK::Channel.RecordConverter",
58313
- "kind": "property",
58314
- "lexicon": "aws"
58315
- },
58316
- "MSKChannel_RecordSchema": {
58317
- "resourceType": "AWS::MSK::Channel.RecordSchema",
58318
- "kind": "property",
58319
- "lexicon": "aws"
58320
- },
58321
- "MSKChannel_S3DestinationConfiguration": {
58322
- "resourceType": "AWS::MSK::Channel.S3DestinationConfiguration",
58323
- "kind": "property",
58324
- "lexicon": "aws"
58325
- },
58326
- "MSKChannel_S3LogDestination": {
58327
- "resourceType": "AWS::MSK::Channel.S3LogDestination",
58328
- "kind": "property",
58329
- "lexicon": "aws"
58330
- },
58331
- "MSKChannel_S3Storage": {
58332
- "resourceType": "AWS::MSK::Channel.S3Storage",
58333
- "kind": "property",
58334
- "lexicon": "aws"
58335
- },
58336
- "MSKChannel_SchemaEvolution": {
58337
- "resourceType": "AWS::MSK::Channel.SchemaEvolution",
58338
- "kind": "property",
58339
- "lexicon": "aws"
58340
- },
58341
- "MSKChannel_TableCreation": {
58342
- "resourceType": "AWS::MSK::Channel.TableCreation",
58343
- "kind": "property",
58344
- "lexicon": "aws"
58345
- },
58346
- "MSKChannel_TopicConfiguration": {
58347
- "resourceType": "AWS::MSK::Channel.TopicConfiguration",
58348
- "kind": "property",
58349
- "lexicon": "aws"
58350
- },
58351
58453
  "MSKCluster": {
58352
58454
  "resourceType": "AWS::MSK::Cluster",
58353
58455
  "kind": "resource",
@@ -58701,6 +58803,42 @@
58701
58803
  "kind": "property",
58702
58804
  "lexicon": "aws"
58703
58805
  },
58806
+ "MacieSession": {
58807
+ "resourceType": "AWS::Macie::Session",
58808
+ "kind": "resource",
58809
+ "lexicon": "aws",
58810
+ "attrs": {
58811
+ "AwsAccountId": "AwsAccountId",
58812
+ "ServiceRole": "ServiceRole",
58813
+ "AutomatedDiscoveryStatus": "AutomatedDiscoveryStatus"
58814
+ },
58815
+ "propertyConstraints": {
58816
+ "Status": {
58817
+ "default": "ENABLED",
58818
+ "enum": [
58819
+ "ENABLED",
58820
+ "PAUSED"
58821
+ ]
58822
+ },
58823
+ "FindingPublishingFrequency": {
58824
+ "default": "SIX_HOURS",
58825
+ "enum": [
58826
+ "FIFTEEN_MINUTES",
58827
+ "ONE_HOUR",
58828
+ "SIX_HOURS"
58829
+ ]
58830
+ },
58831
+ "AutomatedDiscoveryStatus": {
58832
+ "enum": [
58833
+ "ENABLED",
58834
+ "DISABLED"
58835
+ ]
58836
+ }
58837
+ },
58838
+ "primaryIdentifier": [
58839
+ "AwsAccountId"
58840
+ ]
58841
+ },
58704
58842
  "Macro": {
58705
58843
  "resourceType": "AWS::CloudFormation::Macro",
58706
58844
  "kind": "resource",
@@ -60903,7 +61041,8 @@
60903
61041
  "createOnly": [
60904
61042
  "ChannelGroupName",
60905
61043
  "ChannelName",
60906
- "InputType"
61044
+ "InputType",
61045
+ "OutputLockingMode"
60907
61046
  ],
60908
61047
  "primaryIdentifier": [
60909
61048
  "Arn"
@@ -69702,32 +69841,6 @@
69702
69841
  "kind": "property",
69703
69842
  "lexicon": "aws"
69704
69843
  },
69705
- "Package": {
69706
- "resourceType": "AWS::Panorama::Package",
69707
- "kind": "resource",
69708
- "lexicon": "aws",
69709
- "attrs": {
69710
- "PackageId": "PackageId",
69711
- "Arn": "Arn",
69712
- "CreatedTime": "CreatedTime",
69713
- "StorageLocation_Bucket": "StorageLocation.Bucket",
69714
- "StorageLocation_RepoPrefixLocation": "StorageLocation.RepoPrefixLocation",
69715
- "StorageLocation_GeneratedPrefixLocation": "StorageLocation.GeneratedPrefixLocation",
69716
- "StorageLocation_BinaryPrefixLocation": "StorageLocation.BinaryPrefixLocation",
69717
- "StorageLocation_ManifestPrefixLocation": "StorageLocation.ManifestPrefixLocation"
69718
- },
69719
- "createOnly": [
69720
- "PackageName"
69721
- ],
69722
- "primaryIdentifier": [
69723
- "PackageId"
69724
- ],
69725
- "tagging": {
69726
- "taggable": true,
69727
- "tagOnCreate": true,
69728
- "tagUpdatable": true
69729
- }
69730
- },
69731
69844
  "PackageGroup": {
69732
69845
  "resourceType": "AWS::CodeArtifact::PackageGroup",
69733
69846
  "kind": "resource",
@@ -69824,11 +69937,6 @@
69824
69937
  "kind": "property",
69825
69938
  "lexicon": "aws"
69826
69939
  },
69827
- "Package_StorageLocation": {
69828
- "resourceType": "AWS::Panorama::Package.StorageLocation",
69829
- "kind": "property",
69830
- "lexicon": "aws"
69831
- },
69832
69940
  "PackagingConfiguration": {
69833
69941
  "resourceType": "AWS::MediaPackage::PackagingConfiguration",
69834
69942
  "kind": "resource",
@@ -69982,6 +70090,37 @@
69982
70090
  "kind": "property",
69983
70091
  "lexicon": "aws"
69984
70092
  },
70093
+ "PanoramaPackage": {
70094
+ "resourceType": "AWS::Panorama::Package",
70095
+ "kind": "resource",
70096
+ "lexicon": "aws",
70097
+ "attrs": {
70098
+ "PackageId": "PackageId",
70099
+ "Arn": "Arn",
70100
+ "CreatedTime": "CreatedTime",
70101
+ "StorageLocation_Bucket": "StorageLocation.Bucket",
70102
+ "StorageLocation_RepoPrefixLocation": "StorageLocation.RepoPrefixLocation",
70103
+ "StorageLocation_GeneratedPrefixLocation": "StorageLocation.GeneratedPrefixLocation",
70104
+ "StorageLocation_BinaryPrefixLocation": "StorageLocation.BinaryPrefixLocation",
70105
+ "StorageLocation_ManifestPrefixLocation": "StorageLocation.ManifestPrefixLocation"
70106
+ },
70107
+ "createOnly": [
70108
+ "PackageName"
70109
+ ],
70110
+ "primaryIdentifier": [
70111
+ "PackageId"
70112
+ ],
70113
+ "tagging": {
70114
+ "taggable": true,
70115
+ "tagOnCreate": true,
70116
+ "tagUpdatable": true
70117
+ }
70118
+ },
70119
+ "PanoramaPackage_StorageLocation": {
70120
+ "resourceType": "AWS::Panorama::Package.StorageLocation",
70121
+ "kind": "property",
70122
+ "lexicon": "aws"
70123
+ },
69985
70124
  "ParallelismConfiguration": {
69986
70125
  "resourceType": "AWS::KinesisAnalyticsV2::Application.ParallelismConfiguration",
69987
70126
  "kind": "property",
@@ -72238,6 +72377,16 @@
72238
72377
  "kind": "property",
72239
72378
  "lexicon": "aws"
72240
72379
  },
72380
+ "PlaybackConfiguration_AdsPersonalizationConcurrency": {
72381
+ "resourceType": "AWS::MediaTailor::PlaybackConfiguration.AdsPersonalizationConcurrency",
72382
+ "kind": "property",
72383
+ "lexicon": "aws"
72384
+ },
72385
+ "PlaybackConfiguration_AdsPersonalizationTimeouts": {
72386
+ "resourceType": "AWS::MediaTailor::PlaybackConfiguration.AdsPersonalizationTimeouts",
72387
+ "kind": "property",
72388
+ "lexicon": "aws"
72389
+ },
72241
72390
  "PlaybackConfiguration_AvailSuppression": {
72242
72391
  "resourceType": "AWS::MediaTailor::PlaybackConfiguration.AvailSuppression",
72243
72392
  "kind": "property",
@@ -73199,15 +73348,19 @@
73199
73348
  "kind": "resource",
73200
73349
  "lexicon": "aws",
73201
73350
  "attrs": {
73202
- "Id": "Id",
73203
73351
  "Arn": "Arn"
73204
73352
  },
73205
73353
  "createOnly": [
73206
73354
  "Name"
73207
73355
  ],
73208
73356
  "primaryIdentifier": [
73209
- "Id"
73210
- ]
73357
+ "Name"
73358
+ ],
73359
+ "tagging": {
73360
+ "taggable": true,
73361
+ "tagOnCreate": true,
73362
+ "tagUpdatable": true
73363
+ }
73211
73364
  },
73212
73365
  "PrestoParameters": {
73213
73366
  "resourceType": "AWS::QuickSight::DataSource.PrestoParameters",
@@ -78115,30 +78268,9 @@
78115
78268
  "lexicon": "aws"
78116
78269
  },
78117
78270
  "Recipe": {
78118
- "resourceType": "AWS::DataBrew::Recipe",
78119
- "kind": "resource",
78120
- "lexicon": "aws",
78121
- "propertyConstraints": {
78122
- "Description": {
78123
- "minLength": 0,
78124
- "maxLength": 1024
78125
- },
78126
- "Name": {
78127
- "minLength": 1,
78128
- "maxLength": 255
78129
- }
78130
- },
78131
- "createOnly": [
78132
- "Name"
78133
- ],
78134
- "primaryIdentifier": [
78135
- "Name"
78136
- ],
78137
- "tagging": {
78138
- "taggable": true,
78139
- "tagOnCreate": true,
78140
- "tagUpdatable": true
78141
- }
78271
+ "resourceType": "AWS::DataBrew::Job.Recipe",
78272
+ "kind": "property",
78273
+ "lexicon": "aws"
78142
78274
  },
78143
78275
  "RecipeSelection": {
78144
78276
  "resourceType": "AWS::ImageBuilder::LifecyclePolicy.RecipeSelection",
@@ -78150,26 +78282,6 @@
78150
78282
  "kind": "property",
78151
78283
  "lexicon": "aws"
78152
78284
  },
78153
- "Recipe_Action": {
78154
- "resourceType": "AWS::DataBrew::Recipe.Action",
78155
- "kind": "property",
78156
- "lexicon": "aws"
78157
- },
78158
- "Recipe_ConditionExpression": {
78159
- "resourceType": "AWS::DataBrew::Recipe.ConditionExpression",
78160
- "kind": "property",
78161
- "lexicon": "aws"
78162
- },
78163
- "Recipe_RecipeStep": {
78164
- "resourceType": "AWS::DataBrew::Recipe.RecipeStep",
78165
- "kind": "property",
78166
- "lexicon": "aws"
78167
- },
78168
- "Recipe_Tag": {
78169
- "resourceType": "AWS::DataBrew::Recipe.Tag",
78170
- "kind": "property",
78171
- "lexicon": "aws"
78172
- },
78173
78285
  "RecommendationConfiguration": {
78174
78286
  "resourceType": "AWS::DataZone::DataSource.RecommendationConfiguration",
78175
78287
  "kind": "property",
@@ -79861,6 +79973,11 @@
79861
79973
  "kind": "property",
79862
79974
  "lexicon": "aws"
79863
79975
  },
79976
+ "Replica": {
79977
+ "resourceType": "AWS::Synthetics::Canary.Replica",
79978
+ "kind": "property",
79979
+ "lexicon": "aws"
79980
+ },
79864
79981
  "ReplicaGlobalSecondaryIndexSpecification": {
79865
79982
  "resourceType": "AWS::DynamoDB::GlobalTable.ReplicaGlobalSecondaryIndexSpecification",
79866
79983
  "kind": "property",
@@ -79913,6 +80030,11 @@
79913
80030
  "kind": "property",
79914
80031
  "lexicon": "aws"
79915
80032
  },
80033
+ "ReplicaReplicationStatus": {
80034
+ "resourceType": "AWS::Synthetics::Canary.ReplicaReplicationStatus",
80035
+ "kind": "property",
80036
+ "lexicon": "aws"
80037
+ },
79916
80038
  "ReplicaSSESpecification": {
79917
80039
  "resourceType": "AWS::DynamoDB::GlobalTable.ReplicaSSESpecification",
79918
80040
  "kind": "property",
@@ -87464,124 +87586,6 @@
87464
87586
  "kind": "property",
87465
87587
  "lexicon": "aws"
87466
87588
  },
87467
- "SageMakerSpace": {
87468
- "resourceType": "AWS::SageMaker::Space",
87469
- "kind": "resource",
87470
- "lexicon": "aws",
87471
- "attrs": {
87472
- "SpaceArn": "SpaceArn",
87473
- "Url": "Url"
87474
- },
87475
- "propertyConstraints": {
87476
- "SpaceArn": {
87477
- "pattern": "arn:aws[a-z\\-]*:sagemaker:[a-z0-9\\-]*:[0-9]{12}:space/.*",
87478
- "maxLength": 256
87479
- },
87480
- "DomainId": {
87481
- "minLength": 1,
87482
- "maxLength": 63
87483
- },
87484
- "SpaceName": {
87485
- "minLength": 1,
87486
- "maxLength": 63
87487
- },
87488
- "SpaceDisplayName": {
87489
- "pattern": "^(?!\\s*$).+",
87490
- "maxLength": 64
87491
- },
87492
- "Url": {
87493
- "maxLength": 1024
87494
- }
87495
- },
87496
- "createOnly": [
87497
- "DomainId",
87498
- "SpaceName",
87499
- "SpaceSharingSettings",
87500
- "OwnershipSettings"
87501
- ],
87502
- "writeOnly": [
87503
- "SpaceSettings"
87504
- ],
87505
- "primaryIdentifier": [
87506
- "DomainId",
87507
- "SpaceName"
87508
- ],
87509
- "tagging": {
87510
- "taggable": true,
87511
- "tagOnCreate": true,
87512
- "tagUpdatable": true
87513
- }
87514
- },
87515
- "SageMakerSpace_CodeRepository": {
87516
- "resourceType": "AWS::SageMaker::Space.CodeRepository",
87517
- "kind": "property",
87518
- "lexicon": "aws"
87519
- },
87520
- "SageMakerSpace_CustomImage": {
87521
- "resourceType": "AWS::SageMaker::Space.CustomImage",
87522
- "kind": "property",
87523
- "lexicon": "aws"
87524
- },
87525
- "SageMakerSpace_EbsStorageSettings": {
87526
- "resourceType": "AWS::SageMaker::Space.EbsStorageSettings",
87527
- "kind": "property",
87528
- "lexicon": "aws"
87529
- },
87530
- "SageMakerSpace_JupyterServerAppSettings": {
87531
- "resourceType": "AWS::SageMaker::Space.JupyterServerAppSettings",
87532
- "kind": "property",
87533
- "lexicon": "aws"
87534
- },
87535
- "SageMakerSpace_KernelGatewayAppSettings": {
87536
- "resourceType": "AWS::SageMaker::Space.KernelGatewayAppSettings",
87537
- "kind": "property",
87538
- "lexicon": "aws"
87539
- },
87540
- "SageMakerSpace_OwnershipSettings": {
87541
- "resourceType": "AWS::SageMaker::Space.OwnershipSettings",
87542
- "kind": "property",
87543
- "lexicon": "aws"
87544
- },
87545
- "SageMakerSpace_ResourceSpec": {
87546
- "resourceType": "AWS::SageMaker::Space.ResourceSpec",
87547
- "kind": "property",
87548
- "lexicon": "aws"
87549
- },
87550
- "SageMakerSpace_SpaceAppLifecycleManagement": {
87551
- "resourceType": "AWS::SageMaker::Space.SpaceAppLifecycleManagement",
87552
- "kind": "property",
87553
- "lexicon": "aws"
87554
- },
87555
- "SageMakerSpace_SpaceCodeEditorAppSettings": {
87556
- "resourceType": "AWS::SageMaker::Space.SpaceCodeEditorAppSettings",
87557
- "kind": "property",
87558
- "lexicon": "aws"
87559
- },
87560
- "SageMakerSpace_SpaceJupyterLabAppSettings": {
87561
- "resourceType": "AWS::SageMaker::Space.SpaceJupyterLabAppSettings",
87562
- "kind": "property",
87563
- "lexicon": "aws"
87564
- },
87565
- "SageMakerSpace_SpaceSettings": {
87566
- "resourceType": "AWS::SageMaker::Space.SpaceSettings",
87567
- "kind": "property",
87568
- "lexicon": "aws"
87569
- },
87570
- "SageMakerSpace_SpaceSharingSettings": {
87571
- "resourceType": "AWS::SageMaker::Space.SpaceSharingSettings",
87572
- "kind": "property",
87573
- "lexicon": "aws"
87574
- },
87575
- "SageMakerSpace_SpaceStorageSettings": {
87576
- "resourceType": "AWS::SageMaker::Space.SpaceStorageSettings",
87577
- "kind": "property",
87578
- "lexicon": "aws"
87579
- },
87580
- "SageMakerSpace_Tag": {
87581
- "resourceType": "AWS::SageMaker::Space.Tag",
87582
- "kind": "property",
87583
- "lexicon": "aws"
87584
- },
87585
87589
  "SageMakerUserProfile": {
87586
87590
  "resourceType": "AWS::SageMaker::UserProfile",
87587
87591
  "kind": "resource",
@@ -91299,42 +91303,6 @@
91299
91303
  "kind": "property",
91300
91304
  "lexicon": "aws"
91301
91305
  },
91302
- "Session": {
91303
- "resourceType": "AWS::Macie::Session",
91304
- "kind": "resource",
91305
- "lexicon": "aws",
91306
- "attrs": {
91307
- "AwsAccountId": "AwsAccountId",
91308
- "ServiceRole": "ServiceRole",
91309
- "AutomatedDiscoveryStatus": "AutomatedDiscoveryStatus"
91310
- },
91311
- "propertyConstraints": {
91312
- "Status": {
91313
- "default": "ENABLED",
91314
- "enum": [
91315
- "ENABLED",
91316
- "PAUSED"
91317
- ]
91318
- },
91319
- "FindingPublishingFrequency": {
91320
- "default": "SIX_HOURS",
91321
- "enum": [
91322
- "FIFTEEN_MINUTES",
91323
- "ONE_HOUR",
91324
- "SIX_HOURS"
91325
- ]
91326
- },
91327
- "AutomatedDiscoveryStatus": {
91328
- "enum": [
91329
- "ENABLED",
91330
- "DISABLED"
91331
- ]
91332
- }
91333
- },
91334
- "primaryIdentifier": [
91335
- "AwsAccountId"
91336
- ]
91337
- },
91338
91306
  "SessionConfig": {
91339
91307
  "resourceType": "AWS::BedrockAgentCore::OnlineEvaluationConfig.SessionConfig",
91340
91308
  "kind": "property",
@@ -92324,6 +92292,32 @@
92324
92292
  "kind": "property",
92325
92293
  "lexicon": "aws"
92326
92294
  },
92295
+ "SnapshotSchedule": {
92296
+ "resourceType": "AWS::Redshift::SnapshotSchedule",
92297
+ "kind": "resource",
92298
+ "lexicon": "aws",
92299
+ "attrs": {
92300
+ "Arn": "Arn",
92301
+ "AssociatedClusterCount": "AssociatedClusterCount"
92302
+ },
92303
+ "createOnly": [
92304
+ "ScheduleIdentifier",
92305
+ "ScheduleDescription"
92306
+ ],
92307
+ "primaryIdentifier": [
92308
+ "Arn"
92309
+ ],
92310
+ "tagging": {
92311
+ "taggable": true,
92312
+ "tagOnCreate": true,
92313
+ "tagUpdatable": true
92314
+ }
92315
+ },
92316
+ "SnapshotSchedule_Tag": {
92317
+ "resourceType": "AWS::Redshift::SnapshotSchedule.Tag",
92318
+ "kind": "property",
92319
+ "lexicon": "aws"
92320
+ },
92327
92321
  "SnowflakeBufferingHints": {
92328
92322
  "resourceType": "AWS::KinesisFirehose::DeliveryStream.SnowflakeBufferingHints",
92329
92323
  "kind": "property",
@@ -92765,6 +92759,54 @@
92765
92759
  "kind": "property",
92766
92760
  "lexicon": "aws"
92767
92761
  },
92762
+ "Space": {
92763
+ "resourceType": "AWS::SageMaker::Space",
92764
+ "kind": "resource",
92765
+ "lexicon": "aws",
92766
+ "attrs": {
92767
+ "SpaceArn": "SpaceArn",
92768
+ "Url": "Url"
92769
+ },
92770
+ "propertyConstraints": {
92771
+ "SpaceArn": {
92772
+ "pattern": "arn:aws[a-z\\-]*:sagemaker:[a-z0-9\\-]*:[0-9]{12}:space/.*",
92773
+ "maxLength": 256
92774
+ },
92775
+ "DomainId": {
92776
+ "minLength": 1,
92777
+ "maxLength": 63
92778
+ },
92779
+ "SpaceName": {
92780
+ "minLength": 1,
92781
+ "maxLength": 63
92782
+ },
92783
+ "SpaceDisplayName": {
92784
+ "pattern": "^(?!\\s*$).+",
92785
+ "maxLength": 64
92786
+ },
92787
+ "Url": {
92788
+ "maxLength": 1024
92789
+ }
92790
+ },
92791
+ "createOnly": [
92792
+ "DomainId",
92793
+ "SpaceName",
92794
+ "SpaceSharingSettings",
92795
+ "OwnershipSettings"
92796
+ ],
92797
+ "writeOnly": [
92798
+ "SpaceSettings"
92799
+ ],
92800
+ "primaryIdentifier": [
92801
+ "DomainId",
92802
+ "SpaceName"
92803
+ ],
92804
+ "tagging": {
92805
+ "taggable": true,
92806
+ "tagOnCreate": true,
92807
+ "tagUpdatable": true
92808
+ }
92809
+ },
92768
92810
  "SpaceAppLifecycleManagement": {
92769
92811
  "resourceType": "AWS::SageMaker::Space.SpaceAppLifecycleManagement",
92770
92812
  "kind": "property",
@@ -92800,6 +92842,76 @@
92800
92842
  "kind": "property",
92801
92843
  "lexicon": "aws"
92802
92844
  },
92845
+ "Space_CodeRepository": {
92846
+ "resourceType": "AWS::SageMaker::Space.CodeRepository",
92847
+ "kind": "property",
92848
+ "lexicon": "aws"
92849
+ },
92850
+ "Space_CustomImage": {
92851
+ "resourceType": "AWS::SageMaker::Space.CustomImage",
92852
+ "kind": "property",
92853
+ "lexicon": "aws"
92854
+ },
92855
+ "Space_EbsStorageSettings": {
92856
+ "resourceType": "AWS::SageMaker::Space.EbsStorageSettings",
92857
+ "kind": "property",
92858
+ "lexicon": "aws"
92859
+ },
92860
+ "Space_JupyterServerAppSettings": {
92861
+ "resourceType": "AWS::SageMaker::Space.JupyterServerAppSettings",
92862
+ "kind": "property",
92863
+ "lexicon": "aws"
92864
+ },
92865
+ "Space_KernelGatewayAppSettings": {
92866
+ "resourceType": "AWS::SageMaker::Space.KernelGatewayAppSettings",
92867
+ "kind": "property",
92868
+ "lexicon": "aws"
92869
+ },
92870
+ "Space_OwnershipSettings": {
92871
+ "resourceType": "AWS::SageMaker::Space.OwnershipSettings",
92872
+ "kind": "property",
92873
+ "lexicon": "aws"
92874
+ },
92875
+ "Space_ResourceSpec": {
92876
+ "resourceType": "AWS::SageMaker::Space.ResourceSpec",
92877
+ "kind": "property",
92878
+ "lexicon": "aws"
92879
+ },
92880
+ "Space_SpaceAppLifecycleManagement": {
92881
+ "resourceType": "AWS::SageMaker::Space.SpaceAppLifecycleManagement",
92882
+ "kind": "property",
92883
+ "lexicon": "aws"
92884
+ },
92885
+ "Space_SpaceCodeEditorAppSettings": {
92886
+ "resourceType": "AWS::SageMaker::Space.SpaceCodeEditorAppSettings",
92887
+ "kind": "property",
92888
+ "lexicon": "aws"
92889
+ },
92890
+ "Space_SpaceJupyterLabAppSettings": {
92891
+ "resourceType": "AWS::SageMaker::Space.SpaceJupyterLabAppSettings",
92892
+ "kind": "property",
92893
+ "lexicon": "aws"
92894
+ },
92895
+ "Space_SpaceSettings": {
92896
+ "resourceType": "AWS::SageMaker::Space.SpaceSettings",
92897
+ "kind": "property",
92898
+ "lexicon": "aws"
92899
+ },
92900
+ "Space_SpaceSharingSettings": {
92901
+ "resourceType": "AWS::SageMaker::Space.SpaceSharingSettings",
92902
+ "kind": "property",
92903
+ "lexicon": "aws"
92904
+ },
92905
+ "Space_SpaceStorageSettings": {
92906
+ "resourceType": "AWS::SageMaker::Space.SpaceStorageSettings",
92907
+ "kind": "property",
92908
+ "lexicon": "aws"
92909
+ },
92910
+ "Space_Tag": {
92911
+ "resourceType": "AWS::SageMaker::Space.Tag",
92912
+ "kind": "property",
92913
+ "lexicon": "aws"
92914
+ },
92803
92915
  "SparkParameters": {
92804
92916
  "resourceType": "AWS::QuickSight::DataSource.SparkParameters",
92805
92917
  "kind": "property",