alchemy 0.68.0 → 0.69.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 (92) hide show
  1. package/bin/alchemy.js +19 -1
  2. package/lib/aws/control/properties.d.ts +64 -0
  3. package/lib/aws/control/properties.d.ts.map +1 -1
  4. package/lib/aws/control/properties.js +554 -39
  5. package/lib/aws/control/properties.js.map +1 -1
  6. package/lib/aws/control/resource.d.ts.map +1 -1
  7. package/lib/aws/control/resource.js +33 -0
  8. package/lib/aws/control/resource.js.map +1 -1
  9. package/lib/aws/control/types.d.ts +5451 -1587
  10. package/lib/aws/control/types.d.ts.map +1 -1
  11. package/lib/aws/control/types.js.map +1 -1
  12. package/lib/aws/control/update-types.d.ts +12913 -0
  13. package/lib/aws/control/update-types.d.ts.map +1 -0
  14. package/lib/aws/control/update-types.js +12916 -0
  15. package/lib/aws/control/update-types.js.map +1 -0
  16. package/lib/cloudflare/api.d.ts +1 -1
  17. package/lib/cloudflare/api.d.ts.map +1 -1
  18. package/lib/cloudflare/api.js +9 -10
  19. package/lib/cloudflare/api.js.map +1 -1
  20. package/lib/cloudflare/astro/astro.d.ts.map +1 -1
  21. package/lib/cloudflare/astro/astro.js +3 -3
  22. package/lib/cloudflare/astro/astro.js.map +1 -1
  23. package/lib/cloudflare/bucket-object.d.ts +81 -0
  24. package/lib/cloudflare/bucket-object.d.ts.map +1 -0
  25. package/lib/cloudflare/bucket-object.js +67 -0
  26. package/lib/cloudflare/bucket-object.js.map +1 -0
  27. package/lib/cloudflare/bucket.d.ts +30 -3
  28. package/lib/cloudflare/bucket.d.ts.map +1 -1
  29. package/lib/cloudflare/bucket.js +97 -13
  30. package/lib/cloudflare/bucket.js.map +1 -1
  31. package/lib/cloudflare/compatibility-date.gen.d.ts +1 -1
  32. package/lib/cloudflare/compatibility-date.gen.js +1 -1
  33. package/lib/cloudflare/container.d.ts.map +1 -1
  34. package/lib/cloudflare/container.js +1 -1
  35. package/lib/cloudflare/container.js.map +1 -1
  36. package/lib/cloudflare/index.d.ts +1 -0
  37. package/lib/cloudflare/index.d.ts.map +1 -1
  38. package/lib/cloudflare/index.js +1 -0
  39. package/lib/cloudflare/index.js.map +1 -1
  40. package/lib/cloudflare/next.js.map +1 -1
  41. package/lib/cloudflare/nuxt/nuxt.d.ts.map +1 -1
  42. package/lib/cloudflare/nuxt/nuxt.js +3 -3
  43. package/lib/cloudflare/nuxt/nuxt.js.map +1 -1
  44. package/lib/cloudflare/vite/vite.d.ts.map +1 -1
  45. package/lib/cloudflare/vite/vite.js +3 -3
  46. package/lib/cloudflare/vite/vite.js.map +1 -1
  47. package/lib/cloudflare/website.d.ts +7 -1
  48. package/lib/cloudflare/website.d.ts.map +1 -1
  49. package/lib/cloudflare/website.js +19 -1
  50. package/lib/cloudflare/website.js.map +1 -1
  51. package/lib/cloudflare/wrangler.json.d.ts +27 -8
  52. package/lib/cloudflare/wrangler.json.d.ts.map +1 -1
  53. package/lib/cloudflare/wrangler.json.js +3 -1
  54. package/lib/cloudflare/wrangler.json.js.map +1 -1
  55. package/lib/llms.cloudflare.txt +2 -2
  56. package/lib/neon/branch.d.ts +19 -3
  57. package/lib/neon/branch.d.ts.map +1 -1
  58. package/lib/neon/branch.js +4 -4
  59. package/lib/neon/branch.js.map +1 -1
  60. package/lib/neon/project.d.ts +17 -1
  61. package/lib/neon/project.d.ts.map +1 -1
  62. package/lib/neon/project.js +4 -4
  63. package/lib/neon/project.js.map +1 -1
  64. package/lib/serde.d.ts +3 -0
  65. package/lib/serde.d.ts.map +1 -1
  66. package/lib/serde.js +40 -0
  67. package/lib/serde.js.map +1 -1
  68. package/lib/test/bun.js.map +1 -1
  69. package/package.json +1 -1
  70. package/src/aws/control/properties.ts +554 -39
  71. package/src/aws/control/resource.ts +58 -0
  72. package/src/aws/control/types.ts +85281 -84914
  73. package/src/aws/control/update-types.ts +12917 -0
  74. package/src/cloudflare/api.ts +9 -10
  75. package/src/cloudflare/astro/astro.ts +8 -3
  76. package/src/cloudflare/bucket-object.ts +117 -0
  77. package/src/cloudflare/bucket.ts +148 -14
  78. package/src/cloudflare/compatibility-date.gen.ts +1 -1
  79. package/src/cloudflare/container.ts +2 -3
  80. package/src/cloudflare/index.ts +1 -0
  81. package/src/cloudflare/next.ts +2 -2
  82. package/src/cloudflare/nuxt/nuxt.ts +8 -3
  83. package/src/cloudflare/vite/vite.ts +8 -3
  84. package/src/cloudflare/website.ts +28 -2
  85. package/src/cloudflare/wrangler.json.ts +32 -17
  86. package/src/llms.cloudflare.txt +2 -2
  87. package/src/neon/branch.ts +6 -5
  88. package/src/neon/project.ts +4 -4
  89. package/src/serde.ts +50 -0
  90. package/src/test/bun.ts +1 -1
  91. package/templates/rwsdk/.cursor/rules/alchemy_cloudflare.mdc +2 -2
  92. package/workers/tunnel-proxy.js +1 -1
@@ -36,11 +36,39 @@ const properties = {
36
36
  "SourceAccount",
37
37
  ],
38
38
  },
39
+ AIOps: {
40
+ InvestigationGroup: [
41
+ "Arn",
42
+ "CreatedAt",
43
+ "CreatedBy",
44
+ "LastModifiedAt",
45
+ "LastModifiedBy",
46
+ "Name",
47
+ "RetentionInDays",
48
+ ],
49
+ },
39
50
  APS: {
51
+ ResourcePolicy: ["WorkspaceArn"],
40
52
  RuleGroupsNamespace: ["Arn", "Name", "Workspace"],
41
53
  Scraper: ["Arn", "RoleArn", "ScraperId", "Source"],
42
54
  Workspace: ["Arn", "KmsKeyArn", "PrometheusEndpoint", "WorkspaceId"],
43
55
  },
56
+ ARCRegionSwitch: {
57
+ Plan: [
58
+ "Arn",
59
+ "Name",
60
+ "Owner",
61
+ "PrimaryRegion",
62
+ "RecoveryApproach",
63
+ "Regions",
64
+ "Route53HealthChecks",
65
+ "Route53HealthChecks.HealthCheckIds",
66
+ "Route53HealthChecks.HostedZoneIds",
67
+ "Route53HealthChecks.RecordNames",
68
+ "Route53HealthChecks.Regions",
69
+ "Version",
70
+ ],
71
+ },
44
72
  ARCZonalShift: {
45
73
  AutoshiftObserverNotificationStatus: ["AccountId", "Region", "Status"],
46
74
  ZonalAutoshiftConfiguration: ["ResourceIdentifier"],
@@ -56,6 +84,7 @@ const properties = {
56
84
  "BrokerName",
57
85
  "ConfigurationId",
58
86
  "ConfigurationRevision",
87
+ "ConsoleURLs",
59
88
  "DeploymentMode",
60
89
  "EncryptionOptions",
61
90
  "EngineType",
@@ -77,7 +106,7 @@ const properties = {
77
106
  "Name",
78
107
  "Revision",
79
108
  ],
80
- ConfigurationAssociation: ["Broker"],
109
+ ConfigurationAssociation: ["Broker", "Id"],
81
110
  },
82
111
  Amplify: {
83
112
  App: ["AppId", "AppName", "Arn", "DefaultDomain"],
@@ -188,6 +217,7 @@ const properties = {
188
217
  "DynamicExtensionParameters",
189
218
  "EnvironmentId",
190
219
  "KmsKeyIdentifier",
220
+ "State",
191
221
  "Tags",
192
222
  ],
193
223
  DeploymentStrategy: ["Id", "Name", "ReplicateTo"],
@@ -659,8 +689,13 @@ const properties = {
659
689
  "Tags",
660
690
  ],
661
691
  JobDefinition: ["JobDefinitionArn", "JobDefinitionName"],
662
- JobQueue: ["JobQueueArn", "JobQueueName", "Tags"],
692
+ JobQueue: ["JobQueueArn", "JobQueueName", "JobQueueType", "Tags"],
663
693
  SchedulingPolicy: ["Arn", "Name", "Tags"],
694
+ ServiceEnvironment: [
695
+ "ServiceEnvironmentArn",
696
+ "ServiceEnvironmentName",
697
+ "ServiceEnvironmentType",
698
+ ],
664
699
  },
665
700
  Bedrock: {
666
701
  Agent: [
@@ -696,6 +731,26 @@ const properties = {
696
731
  "Type",
697
732
  "UpdatedAt",
698
733
  ],
734
+ AutomatedReasoningPolicy: [
735
+ "CreatedAt",
736
+ "DefinitionHash",
737
+ "PolicyArn",
738
+ "PolicyId",
739
+ "UpdatedAt",
740
+ "Version",
741
+ ],
742
+ AutomatedReasoningPolicyVersion: [
743
+ "CreatedAt",
744
+ "DefinitionHash",
745
+ "Description",
746
+ "LastUpdatedDefinitionHash",
747
+ "Name",
748
+ "PolicyArn",
749
+ "PolicyId",
750
+ "Tags",
751
+ "UpdatedAt",
752
+ "Version",
753
+ ],
699
754
  Blueprint: [
700
755
  "BlueprintArn",
701
756
  "BlueprintName",
@@ -799,6 +854,18 @@ const properties = {
799
854
  "Version",
800
855
  ],
801
856
  },
857
+ Billing: {
858
+ BillingView: [
859
+ "Arn",
860
+ "BillingViewType",
861
+ "CreatedAt",
862
+ "Description",
863
+ "Name",
864
+ "OwnerAccountId",
865
+ "SourceViews",
866
+ "UpdatedAt",
867
+ ],
868
+ },
802
869
  BillingConductor: {
803
870
  BillingGroup: [
804
871
  "Arn",
@@ -908,6 +975,7 @@ const properties = {
908
975
  "Arn",
909
976
  "CollaborationArn",
910
977
  "CollaborationIdentifier",
978
+ "ErrorMessageConfiguration",
911
979
  "Format",
912
980
  "MembershipArn",
913
981
  "MembershipIdentifier",
@@ -917,6 +985,7 @@ const properties = {
917
985
  ],
918
986
  Collaboration: [
919
987
  "Arn",
988
+ "AutoApprovedChangeTypes",
920
989
  "CollaborationIdentifier",
921
990
  "CreatorDisplayName",
922
991
  "CreatorMLMemberAbilities",
@@ -927,12 +996,7 @@ const properties = {
927
996
  "Members",
928
997
  "QueryLogStatus",
929
998
  ],
930
- ConfiguredTable: [
931
- "AllowedColumns",
932
- "Arn",
933
- "ConfiguredTableIdentifier",
934
- "TableReference",
935
- ],
999
+ ConfiguredTable: ["Arn", "ConfiguredTableIdentifier"],
936
1000
  ConfiguredTableAssociation: [
937
1001
  "Arn",
938
1002
  "ConfiguredTableAssociationIdentifier",
@@ -1112,7 +1176,7 @@ const properties = {
1112
1176
  "Name",
1113
1177
  "Status",
1114
1178
  ],
1115
- Function: ["FunctionARN", "FunctionMetadata.FunctionARN", "Stage"],
1179
+ Function: ["FunctionARN", "FunctionMetadata.FunctionARN", "Name", "Stage"],
1116
1180
  KeyGroup: ["Id", "LastModifiedTime"],
1117
1181
  KeyValueStore: ["Arn", "Id", "Name", "Status"],
1118
1182
  MonitoringSubscription: ["DistributionId"],
@@ -1234,7 +1298,7 @@ const properties = {
1234
1298
  "Version",
1235
1299
  ],
1236
1300
  Pipeline: ["Name", "Version"],
1237
- Webhook: ["Name", "Url"],
1301
+ Webhook: ["Id", "Name", "Url"],
1238
1302
  },
1239
1303
  CodeStarConnections: {
1240
1304
  Connection: [
@@ -1436,6 +1500,11 @@ const properties = {
1436
1500
  "CreatedAt",
1437
1501
  "DomainName",
1438
1502
  "LastUpdatedAt",
1503
+ "Readiness",
1504
+ "Readiness.Message",
1505
+ "Readiness.ProgressPercentage",
1506
+ "Status",
1507
+ "UseHistoricalData",
1439
1508
  ],
1440
1509
  Domain: [
1441
1510
  "CreatedAt",
@@ -1466,7 +1535,13 @@ const properties = {
1466
1535
  "LastUpdatedAt",
1467
1536
  ],
1468
1537
  Integration: ["CreatedAt", "DomainName", "LastUpdatedAt", "Uri"],
1469
- ObjectType: ["CreatedAt", "DomainName", "LastUpdatedAt", "ObjectTypeName"],
1538
+ ObjectType: [
1539
+ "CreatedAt",
1540
+ "DomainName",
1541
+ "LastUpdatedAt",
1542
+ "MaxAvailableProfileObjectCount",
1543
+ "ObjectTypeName",
1544
+ ],
1470
1545
  SegmentDefinition: [
1471
1546
  "CreatedAt",
1472
1547
  "DisplayName",
@@ -1484,6 +1559,7 @@ const properties = {
1484
1559
  "ClusterEndpointEncryptionType",
1485
1560
  "ClusterName",
1486
1561
  "IAMRoleARN",
1562
+ "NetworkType",
1487
1563
  "NodeType",
1488
1564
  "SSESpecification",
1489
1565
  "SubnetGroupName",
@@ -1527,6 +1603,10 @@ const properties = {
1527
1603
  DSQL: {
1528
1604
  Cluster: [
1529
1605
  "CreationTime",
1606
+ "EncryptionDetails",
1607
+ "EncryptionDetails.EncryptionStatus",
1608
+ "EncryptionDetails.EncryptionType",
1609
+ "EncryptionDetails.KmsKeyArn",
1530
1610
  "Identifier",
1531
1611
  "ResourceArn",
1532
1612
  "Status",
@@ -1722,12 +1802,22 @@ const properties = {
1722
1802
  "Id",
1723
1803
  ],
1724
1804
  Owner: ["DomainIdentifier", "EntityIdentifier", "EntityType", "Owner"],
1805
+ PolicyGrant: [
1806
+ "CreatedAt",
1807
+ "CreatedBy",
1808
+ "Detail",
1809
+ "DomainIdentifier",
1810
+ "EntityIdentifier",
1811
+ "EntityType",
1812
+ "GrantId",
1813
+ "PolicyType",
1814
+ "Principal",
1815
+ ],
1725
1816
  Project: [
1726
1817
  "CreatedAt",
1727
1818
  "CreatedBy",
1728
1819
  "DomainId",
1729
1820
  "DomainIdentifier",
1730
- "DomainUnitId",
1731
1821
  "Id",
1732
1822
  "LastUpdatedAt",
1733
1823
  "ProjectProfileId",
@@ -1783,6 +1873,7 @@ const properties = {
1783
1873
  "FarmId",
1784
1874
  "FleetId",
1785
1875
  "Status",
1876
+ "StatusMessage",
1786
1877
  "WorkerCount",
1787
1878
  ],
1788
1879
  LicenseEndpoint: [
@@ -1858,6 +1949,7 @@ const properties = {
1858
1949
  "DBClusterIdentifier",
1859
1950
  "DBSubnetGroupName",
1860
1951
  "Endpoint",
1952
+ "GlobalClusterIdentifier",
1861
1953
  "KmsKeyId",
1862
1954
  "MasterUsername",
1863
1955
  "Port",
@@ -1890,6 +1982,7 @@ const properties = {
1890
1982
  DynamoDB: {
1891
1983
  GlobalTable: [
1892
1984
  "Arn",
1985
+ "GlobalTableSourceArn",
1893
1986
  "KeySchema",
1894
1987
  "LocalSecondaryIndexes",
1895
1988
  "StreamArn",
@@ -2150,6 +2243,11 @@ const properties = {
2150
2243
  "SubnetId",
2151
2244
  ],
2152
2245
  InternetGateway: ["InternetGatewayId"],
2246
+ IpPoolRouteTableAssociation: [
2247
+ "AssociationId",
2248
+ "PublicIpv4Pool",
2249
+ "RouteTableId",
2250
+ ],
2153
2251
  KeyPair: [
2154
2252
  "KeyFingerprint",
2155
2253
  "KeyFormat",
@@ -2369,6 +2467,8 @@ const properties = {
2369
2467
  "AvailabilityZone",
2370
2468
  "AvailabilityZoneId",
2371
2469
  "AvailabilityZoneId",
2470
+ "BlockPublicAccessStates",
2471
+ "BlockPublicAccessStates.InternetGatewayBlockMode",
2372
2472
  "CidrBlock",
2373
2473
  "CidrBlock",
2374
2474
  "Ipv4IpamPoolId",
@@ -2395,12 +2495,16 @@ const properties = {
2395
2495
  ],
2396
2496
  SubnetNetworkAclAssociation: ["AssociationId", "NetworkAclId", "SubnetId"],
2397
2497
  SubnetRouteTableAssociation: ["Id", "RouteTableId", "SubnetId"],
2398
- TrafficMirrorFilter: ["Description"],
2399
- TrafficMirrorFilterRule: ["TrafficMirrorFilterId"],
2400
- TrafficMirrorSession: ["NetworkInterfaceId"],
2498
+ TrafficMirrorFilter: ["Description", "Id"],
2499
+ TrafficMirrorFilterRule: [
2500
+ "TrafficMirrorFilterId",
2501
+ "TrafficMirrorFilterRuleId",
2502
+ ],
2503
+ TrafficMirrorSession: ["Id"],
2401
2504
  TrafficMirrorTarget: [
2402
2505
  "Description",
2403
2506
  "GatewayLoadBalancerEndpointId",
2507
+ "Id",
2404
2508
  "NetworkInterfaceId",
2405
2509
  "NetworkLoadBalancerArn",
2406
2510
  ],
@@ -2419,6 +2523,15 @@ const properties = {
2419
2523
  "TransitGatewayId",
2420
2524
  "TransportTransitGatewayAttachmentId",
2421
2525
  ],
2526
+ TransitGatewayConnectPeer: [
2527
+ "ConnectPeerConfiguration",
2528
+ "ConnectPeerConfiguration.BgpConfigurations",
2529
+ "ConnectPeerConfiguration.Protocol",
2530
+ "CreationTime",
2531
+ "State",
2532
+ "TransitGatewayAttachmentId",
2533
+ "TransitGatewayConnectPeerId",
2534
+ ],
2422
2535
  TransitGatewayMulticastDomain: [
2423
2536
  "CreationTime",
2424
2537
  "State",
@@ -2506,7 +2619,7 @@ const properties = {
2506
2619
  "VpcId",
2507
2620
  ],
2508
2621
  VPCBlockPublicAccessExclusion: ["ExclusionId", "SubnetId", "VpcId"],
2509
- VPCBlockPublicAccessOptions: ["AccountId"],
2622
+ VPCBlockPublicAccessOptions: ["AccountId", "ExclusionsAllowed"],
2510
2623
  VPCCidrBlock: [
2511
2624
  "AmazonProvidedIpv6CidrBlock",
2512
2625
  "CidrBlock",
@@ -2557,6 +2670,7 @@ const properties = {
2557
2670
  "LocalIpv4NetworkCidr",
2558
2671
  "LocalIpv6NetworkCidr",
2559
2672
  "OutsideIpAddressType",
2673
+ "PreSharedKeyStorage",
2560
2674
  "RemoteIpv4NetworkCidr",
2561
2675
  "RemoteIpv6NetworkCidr",
2562
2676
  "StaticRoutesOnly",
@@ -2654,7 +2768,6 @@ const properties = {
2654
2768
  "EphemeralStorage",
2655
2769
  "ExecutionRoleArn",
2656
2770
  "Family",
2657
- "InferenceAccelerators",
2658
2771
  "IpcMode",
2659
2772
  "Memory",
2660
2773
  "NetworkMode",
@@ -2698,11 +2811,19 @@ const properties = {
2698
2811
  "KmsKeyId",
2699
2812
  "PerformanceMode",
2700
2813
  ],
2701
- MountTarget: ["FileSystemId", "Id", "IpAddress", "IpAddress", "SubnetId"],
2814
+ MountTarget: [
2815
+ "FileSystemId",
2816
+ "Id",
2817
+ "IpAddress",
2818
+ "IpAddress",
2819
+ "IpAddressType",
2820
+ "Ipv6Address",
2821
+ "SubnetId",
2822
+ ],
2702
2823
  },
2703
2824
  EKS: {
2704
2825
  AccessEntry: ["AccessEntryArn", "ClusterName", "PrincipalArn", "Type"],
2705
- Addon: ["AddonName", "Arn", "ClusterName"],
2826
+ Addon: ["AddonName", "Arn", "ClusterName", "NamespaceConfig"],
2706
2827
  Cluster: [
2707
2828
  "Arn",
2708
2829
  "BootstrapSelfManagedAddons",
@@ -2752,6 +2873,7 @@ const properties = {
2752
2873
  "AssociationArn",
2753
2874
  "AssociationId",
2754
2875
  "ClusterName",
2876
+ "ExternalId",
2755
2877
  "Namespace",
2756
2878
  "ServiceAccount",
2757
2879
  ],
@@ -3042,7 +3164,7 @@ const properties = {
3042
3164
  Segment: ["Arn"],
3043
3165
  },
3044
3166
  FIS: {
3045
- ExperimentTemplate: ["Id", "Tags"],
3167
+ ExperimentTemplate: ["Id"],
3046
3168
  TargetAccountConfiguration: ["AccountId", "ExperimentTemplateId"],
3047
3169
  },
3048
3170
  FMS: {
@@ -3069,6 +3191,14 @@ const properties = {
3069
3191
  "SecurityGroupIds",
3070
3192
  "SubnetIds",
3071
3193
  ],
3194
+ S3AccessPointAttachment: [
3195
+ "Name",
3196
+ "OpenZFSConfiguration",
3197
+ "S3AccessPoint",
3198
+ "S3AccessPoint.Alias",
3199
+ "S3AccessPoint.ResourceARN",
3200
+ "Type",
3201
+ ],
3072
3202
  Snapshot: ["ResourceARN", "VolumeId"],
3073
3203
  StorageVirtualMachine: [
3074
3204
  "FileSystemId",
@@ -3149,7 +3279,6 @@ const properties = {
3149
3279
  "VersionNumber",
3150
3280
  ],
3151
3281
  Fleet: [
3152
- "ApplyCapacity",
3153
3282
  "BuildId",
3154
3283
  "CertificateConfiguration",
3155
3284
  "ComputeType",
@@ -3348,7 +3477,25 @@ const properties = {
3348
3477
  "PublishingFailureStartTimestamp",
3349
3478
  "Status",
3350
3479
  ],
3480
+ ThreatEntitySet: [
3481
+ "CreatedAt",
3482
+ "DetectorId",
3483
+ "ErrorDetails",
3484
+ "Format",
3485
+ "Id",
3486
+ "Status",
3487
+ "UpdatedAt",
3488
+ ],
3351
3489
  ThreatIntelSet: ["DetectorId", "Format", "Id"],
3490
+ TrustedEntitySet: [
3491
+ "CreatedAt",
3492
+ "DetectorId",
3493
+ "ErrorDetails",
3494
+ "Format",
3495
+ "Id",
3496
+ "Status",
3497
+ "UpdatedAt",
3498
+ ],
3352
3499
  },
3353
3500
  HealthImaging: {
3354
3501
  Datastore: [
@@ -3468,7 +3615,6 @@ const properties = {
3468
3615
  "Name",
3469
3616
  "Platform",
3470
3617
  "SupportedOsVersions",
3471
- "Tags",
3472
3618
  "Type",
3473
3619
  "Uri",
3474
3620
  "Version",
@@ -3487,7 +3633,6 @@ const properties = {
3487
3633
  "Name",
3488
3634
  "ParentImage",
3489
3635
  "PlatformOverride",
3490
- "Tags",
3491
3636
  "TargetRepository",
3492
3637
  "Version",
3493
3638
  "WorkingDirectory",
@@ -3505,7 +3650,6 @@ const properties = {
3505
3650
  "ImageUri",
3506
3651
  "InfrastructureConfigurationArn",
3507
3652
  "Name",
3508
- "Tags",
3509
3653
  "Workflows",
3510
3654
  ],
3511
3655
  ImagePipeline: ["Arn", "Name", "Name"],
@@ -3517,7 +3661,6 @@ const properties = {
3517
3661
  "Name",
3518
3662
  "Name",
3519
3663
  "ParentImage",
3520
- "Tags",
3521
3664
  "Version",
3522
3665
  "WorkingDirectory",
3523
3666
  ],
@@ -3530,7 +3673,6 @@ const properties = {
3530
3673
  "Description",
3531
3674
  "KmsKeyId",
3532
3675
  "Name",
3533
- "Tags",
3534
3676
  "Type",
3535
3677
  "Uri",
3536
3678
  "Version",
@@ -3550,6 +3692,23 @@ const properties = {
3550
3692
  },
3551
3693
  InspectorV2: {
3552
3694
  CisScanConfiguration: ["Arn"],
3695
+ CodeSecurityIntegration: [
3696
+ "Arn",
3697
+ "AuthorizationUrl",
3698
+ "CreateIntegrationDetails",
3699
+ "CreatedAt",
3700
+ "LastUpdatedAt",
3701
+ "Status",
3702
+ "StatusReason",
3703
+ "Tags",
3704
+ ],
3705
+ CodeSecurityScanConfiguration: [
3706
+ "Arn",
3707
+ "Level",
3708
+ "Name",
3709
+ "ScopeSettings",
3710
+ "Tags",
3711
+ ],
3553
3712
  Filter: ["Arn"],
3554
3713
  },
3555
3714
  InternetMonitor: {
@@ -3598,6 +3757,14 @@ const properties = {
3598
3757
  "ServiceType",
3599
3758
  "ValidationCertificateArn",
3600
3759
  ],
3760
+ EncryptionConfiguration: [
3761
+ "AccountId",
3762
+ "ConfigurationDetails",
3763
+ "ConfigurationDetails.ConfigurationStatus",
3764
+ "ConfigurationDetails.ErrorCode",
3765
+ "ConfigurationDetails.ErrorMessage",
3766
+ "LastModifiedDate",
3767
+ ],
3601
3768
  FleetMetric: [
3602
3769
  "CreationDate",
3603
3770
  "LastModifiedDate",
@@ -3691,6 +3858,7 @@ const properties = {
3691
3858
  "CollectionScheme",
3692
3859
  "Compression",
3693
3860
  "CreationTime",
3861
+ "DataDestinationConfigs",
3694
3862
  "DataPartitions",
3695
3863
  "DiagnosticsMode",
3696
3864
  "ExpiryTime",
@@ -3699,6 +3867,8 @@ const properties = {
3699
3867
  "PostTriggerCollectionDuration",
3700
3868
  "Priority",
3701
3869
  "SignalCatalogArn",
3870
+ "SignalsToCollect",
3871
+ "SignalsToFetch",
3702
3872
  "SpoolingMode",
3703
3873
  "StartTime",
3704
3874
  "Status",
@@ -3744,6 +3914,7 @@ const properties = {
3744
3914
  AccessPolicy: ["AccessPolicyArn", "AccessPolicyId"],
3745
3915
  Asset: ["AssetArn", "AssetId"],
3746
3916
  AssetModel: ["AssetModelArn", "AssetModelId", "AssetModelType"],
3917
+ ComputationModel: ["ComputationModelArn", "ComputationModelId"],
3747
3918
  Dashboard: ["DashboardArn", "DashboardId", "ProjectId"],
3748
3919
  Dataset: ["DatasetArn", "DatasetId"],
3749
3920
  Gateway: ["GatewayId", "GatewayPlatform", "GatewayVersion"],
@@ -3920,6 +4091,7 @@ const properties = {
3920
4091
  "ConsumerStatus",
3921
4092
  "StreamARN",
3922
4093
  "StreamARN",
4094
+ "Tags",
3923
4095
  ],
3924
4096
  },
3925
4097
  KinesisAnalytics: {
@@ -3982,12 +4154,10 @@ const properties = {
3982
4154
  CodeSigningConfig: ["CodeSigningConfigArn", "CodeSigningConfigId"],
3983
4155
  EventInvokeConfig: ["FunctionName", "Qualifier"],
3984
4156
  EventSourceMapping: [
3985
- "AmazonManagedKafkaEventSourceConfig",
3986
4157
  "EventSourceArn",
3987
4158
  "EventSourceMappingArn",
3988
4159
  "Id",
3989
4160
  "SelfManagedEventSource",
3990
- "SelfManagedKafkaEventSourceConfig",
3991
4161
  "StartingPosition",
3992
4162
  "StartingPositionTimestamp",
3993
4163
  ],
@@ -4115,6 +4285,16 @@ const properties = {
4115
4285
  "IpAddressType",
4116
4286
  "Status",
4117
4287
  ],
4288
+ Domain: [
4289
+ "Arn",
4290
+ "CreatedAt",
4291
+ "DomainName",
4292
+ "Location",
4293
+ "Location.AvailabilityZone",
4294
+ "Location.RegionName",
4295
+ "ResourceType",
4296
+ "SupportCode",
4297
+ ],
4118
4298
  Instance: [
4119
4299
  "AvailabilityZone",
4120
4300
  "BlueprintId",
@@ -4296,6 +4476,31 @@ const properties = {
4296
4476
  "SubnetIds",
4297
4477
  ],
4298
4478
  },
4479
+ MPA: {
4480
+ ApprovalTeam: [
4481
+ "Arn",
4482
+ "CreationTime",
4483
+ "LastUpdateTime",
4484
+ "Name",
4485
+ "NumberOfApprovers",
4486
+ "Policies",
4487
+ "Status",
4488
+ "StatusCode",
4489
+ "StatusMessage",
4490
+ "UpdateSessionArn",
4491
+ "VersionId",
4492
+ ],
4493
+ IdentitySource: [
4494
+ "CreationTime",
4495
+ "IdentitySourceArn",
4496
+ "IdentitySourceParameters",
4497
+ "IdentitySourceParameters.IamIdentityCenter.ApprovalPortalUrl",
4498
+ "IdentitySourceType",
4499
+ "Status",
4500
+ "StatusCode",
4501
+ "StatusMessage",
4502
+ ],
4503
+ },
4299
4504
  MSK: {
4300
4505
  BatchScramSecret: ["ClusterArn"],
4301
4506
  Cluster: ["Arn", "ClusterName"],
@@ -4505,7 +4710,7 @@ const properties = {
4505
4710
  ],
4506
4711
  },
4507
4712
  MediaPackage: {
4508
- Asset: ["Arn", "CreatedAt"],
4713
+ Asset: ["Arn", "CreatedAt", "Id", "Tags"],
4509
4714
  Channel: ["Arn", "Id", "Tags"],
4510
4715
  OriginEndpoint: ["Arn", "Id", "Url"],
4511
4716
  PackagingConfiguration: ["Arn", "Id"],
@@ -4619,7 +4824,6 @@ const properties = {
4619
4824
  "AvailabilityZone",
4620
4825
  "DBClusterIdentifier",
4621
4826
  "DBInstanceIdentifier",
4622
- "DBSnapshotIdentifier",
4623
4827
  "DBSubnetGroupName",
4624
4828
  "Endpoint",
4625
4829
  "Port",
@@ -4851,6 +5055,10 @@ const properties = {
4851
5055
  "NotificationHubStatusSummary.NotificationHubStatusReason",
4852
5056
  "Region",
4853
5057
  ],
5058
+ OrganizationalUnitAssociation: [
5059
+ "NotificationConfigurationArn",
5060
+ "OrganizationalUnitId",
5061
+ ],
4854
5062
  },
4855
5063
  NotificationsContacts: {
4856
5064
  EmailContact: [
@@ -4867,6 +5075,161 @@ const properties = {
4867
5075
  "Tags",
4868
5076
  ],
4869
5077
  },
5078
+ ODB: {
5079
+ CloudAutonomousVmCluster: [
5080
+ "AutonomousDataStoragePercentage",
5081
+ "AutonomousDataStorageSizeInTBs",
5082
+ "AvailableAutonomousDataStorageSizeInTBs",
5083
+ "AvailableContainerDatabases",
5084
+ "AvailableCpus",
5085
+ "CloudAutonomousVmClusterArn",
5086
+ "CloudAutonomousVmClusterId",
5087
+ "CloudExadataInfrastructureId",
5088
+ "ComputeModel",
5089
+ "CpuCoreCount",
5090
+ "CpuCoreCountPerNode",
5091
+ "CpuPercentage",
5092
+ "DataStorageSizeInGBs",
5093
+ "DataStorageSizeInTBs",
5094
+ "DbNodeStorageSizeInGBs",
5095
+ "DbServers",
5096
+ "Description",
5097
+ "DisplayName",
5098
+ "Domain",
5099
+ "ExadataStorageInTBsLowestScaledValue",
5100
+ "Hostname",
5101
+ "IsMtlsEnabledVmCluster",
5102
+ "LicenseModel",
5103
+ "MaintenanceWindow",
5104
+ "MaxAcdsLowestScaledValue",
5105
+ "MemoryPerOracleComputeUnitInGBs",
5106
+ "MemorySizeInGBs",
5107
+ "NodeCount",
5108
+ "NonProvisionableAutonomousContainerDatabases",
5109
+ "OciResourceAnchorName",
5110
+ "OciUrl",
5111
+ "Ocid",
5112
+ "OdbNetworkId",
5113
+ "ProvisionableAutonomousContainerDatabases",
5114
+ "ProvisionedAutonomousContainerDatabases",
5115
+ "ProvisionedCpus",
5116
+ "ReclaimableCpus",
5117
+ "ReservedCpus",
5118
+ "ScanListenerPortNonTls",
5119
+ "ScanListenerPortTls",
5120
+ "Shape",
5121
+ "TimeZone",
5122
+ "TotalContainerDatabases",
5123
+ ],
5124
+ CloudExadataInfrastructure: [
5125
+ "ActivatedStorageCount",
5126
+ "AdditionalStorageCount",
5127
+ "AvailabilityZone",
5128
+ "AvailabilityZoneId",
5129
+ "AvailableStorageSizeInGBs",
5130
+ "CloudExadataInfrastructureArn",
5131
+ "CloudExadataInfrastructureId",
5132
+ "ComputeCount",
5133
+ "ComputeModel",
5134
+ "CpuCount",
5135
+ "CustomerContactsToSendToOCI",
5136
+ "DataStorageSizeInTBs",
5137
+ "DatabaseServerType",
5138
+ "DbNodeStorageSizeInGBs",
5139
+ "DbServerIds",
5140
+ "DbServerVersion",
5141
+ "DisplayName",
5142
+ "MaxCpuCount",
5143
+ "MaxDataStorageInTBs",
5144
+ "MaxDbNodeStorageSizeInGBs",
5145
+ "MaxMemoryInGBs",
5146
+ "MemorySizeInGBs",
5147
+ "OciResourceAnchorName",
5148
+ "OciUrl",
5149
+ "Ocid",
5150
+ "Shape",
5151
+ "StorageCount",
5152
+ "StorageServerType",
5153
+ "StorageServerVersion",
5154
+ "TotalStorageSizeInGBs",
5155
+ ],
5156
+ CloudVmCluster: [
5157
+ "CloudExadataInfrastructureId",
5158
+ "CloudVmClusterArn",
5159
+ "CloudVmClusterId",
5160
+ "ClusterName",
5161
+ "ComputeModel",
5162
+ "CpuCoreCount",
5163
+ "DataCollectionOptions",
5164
+ "DataStorageSizeInTBs",
5165
+ "DbNodeStorageSizeInGBs",
5166
+ "DbServers",
5167
+ "DiskRedundancy",
5168
+ "DisplayName",
5169
+ "Domain",
5170
+ "GiVersion",
5171
+ "Hostname",
5172
+ "IsLocalBackupEnabled",
5173
+ "IsSparseDiskgroupEnabled",
5174
+ "LicenseModel",
5175
+ "ListenerPort",
5176
+ "MemorySizeInGBs",
5177
+ "NodeCount",
5178
+ "OciResourceAnchorName",
5179
+ "OciUrl",
5180
+ "Ocid",
5181
+ "OdbNetworkId",
5182
+ "ScanDnsName",
5183
+ "ScanIpIds",
5184
+ "ScanListenerPortTcp",
5185
+ "Shape",
5186
+ "SshPublicKeys",
5187
+ "StorageSizeInGBs",
5188
+ "SystemVersion",
5189
+ "TimeZone",
5190
+ "VipIds",
5191
+ ],
5192
+ OdbNetwork: [
5193
+ "AvailabilityZone",
5194
+ "AvailabilityZoneId",
5195
+ "BackupSubnetCidr",
5196
+ "ClientSubnetCidr",
5197
+ "CustomDomainName",
5198
+ "DefaultDnsPrefix",
5199
+ "ManagedServices",
5200
+ "ManagedServices.ManagedS3BackupAccess",
5201
+ "ManagedServices.ManagedS3BackupAccess.Ipv4Addresses",
5202
+ "ManagedServices.ManagedS3BackupAccess.Status",
5203
+ "ManagedServices.ManagedServicesIpv4Cidrs",
5204
+ "ManagedServices.ResourceGatewayArn",
5205
+ "ManagedServices.S3Access",
5206
+ "ManagedServices.S3Access.DomainName",
5207
+ "ManagedServices.S3Access.Ipv4Addresses",
5208
+ "ManagedServices.S3Access.S3PolicyDocument",
5209
+ "ManagedServices.S3Access.Status",
5210
+ "ManagedServices.ServiceNetworkArn",
5211
+ "ManagedServices.ServiceNetworkEndpoint",
5212
+ "ManagedServices.ServiceNetworkEndpoint.VpcEndpointId",
5213
+ "ManagedServices.ServiceNetworkEndpoint.VpcEndpointType",
5214
+ "ManagedServices.ZeroEtlAccess",
5215
+ "ManagedServices.ZeroEtlAccess.Cidr",
5216
+ "ManagedServices.ZeroEtlAccess.Status",
5217
+ "OciNetworkAnchorId",
5218
+ "OciResourceAnchorName",
5219
+ "OciVcnUrl",
5220
+ "OdbNetworkArn",
5221
+ "OdbNetworkId",
5222
+ ],
5223
+ OdbPeeringConnection: [
5224
+ "DisplayName",
5225
+ "OdbNetworkArn",
5226
+ "OdbNetworkId",
5227
+ "OdbPeeringConnectionArn",
5228
+ "OdbPeeringConnectionId",
5229
+ "PeerNetworkArn",
5230
+ "PeerNetworkId",
5231
+ ],
5232
+ },
4870
5233
  OSIS: {
4871
5234
  Pipeline: [
4872
5235
  "IngestEndpointUrls",
@@ -4880,6 +5243,10 @@ const properties = {
4880
5243
  Link: ["Arn", "Label", "LabelTemplate", "SinkIdentifier"],
4881
5244
  Sink: ["Arn", "Name"],
4882
5245
  },
5246
+ ObservabilityAdmin: {
5247
+ OrganizationTelemetryRule: ["RuleArn", "RuleName"],
5248
+ TelemetryRule: ["RuleArn", "RuleName"],
5249
+ },
4883
5250
  Omics: {
4884
5251
  AnnotationStore: [
4885
5252
  "CreationTime",
@@ -4935,30 +5302,39 @@ const properties = {
4935
5302
  "Accelerators",
4936
5303
  "Arn",
4937
5304
  "CreationTime",
5305
+ "DefinitionRepository",
4938
5306
  "DefinitionUri",
4939
5307
  "Engine",
4940
5308
  "Id",
4941
5309
  "Main",
4942
5310
  "ParameterTemplate",
5311
+ "ParameterTemplatePath",
4943
5312
  "Status",
4944
5313
  "StorageCapacity",
4945
5314
  "Type",
4946
5315
  "Uuid",
5316
+ "WorkflowBucketOwnerId",
5317
+ "readmePath",
5318
+ "readmeUri",
4947
5319
  ],
4948
5320
  WorkflowVersion: [
4949
5321
  "Accelerators",
4950
5322
  "Arn",
4951
5323
  "CreationTime",
5324
+ "DefinitionRepository",
4952
5325
  "DefinitionUri",
4953
5326
  "Engine",
4954
5327
  "Main",
4955
5328
  "ParameterTemplate",
5329
+ "ParameterTemplatePath",
4956
5330
  "Status",
4957
5331
  "Type",
4958
5332
  "Uuid",
4959
5333
  "VersionName",
4960
5334
  "WorkflowBucketOwnerId",
4961
5335
  "WorkflowId",
5336
+ "readmePath",
5337
+ "readmeUri",
4962
5338
  ],
4963
5339
  },
4964
5340
  OpenSearchServerless: {
@@ -5291,7 +5667,13 @@ const properties = {
5291
5667
  "Type",
5292
5668
  "UpdatedAt",
5293
5669
  ],
5294
- Permission: ["Actions", "ApplicationId", "Principal", "StatementId"],
5670
+ Permission: [
5671
+ "Actions",
5672
+ "ApplicationId",
5673
+ "Conditions",
5674
+ "Principal",
5675
+ "StatementId",
5676
+ ],
5295
5677
  Plugin: [
5296
5678
  "ApplicationId",
5297
5679
  "BuildStatus",
@@ -5429,7 +5811,7 @@ const properties = {
5429
5811
  "Version.Status",
5430
5812
  "Version.VersionNumber",
5431
5813
  ],
5432
- Topic: ["Arn", "AwsAccountId", "FolderArns", "TopicId"],
5814
+ Topic: ["Arn", "AwsAccountId", "FolderArns", "Tags", "TopicId"],
5433
5815
  VPCConnection: [
5434
5816
  "Arn",
5435
5817
  "AwsAccountId",
@@ -5488,6 +5870,7 @@ const properties = {
5488
5870
  "RestoreType",
5489
5871
  "SnapshotIdentifier",
5490
5872
  "SourceDBClusterIdentifier",
5873
+ "SourceDbClusterResourceId",
5491
5874
  "SourceRegion",
5492
5875
  "StorageEncrypted",
5493
5876
  "StorageThroughput",
@@ -5499,6 +5882,8 @@ const properties = {
5499
5882
  "Family",
5500
5883
  ],
5501
5884
  DBInstance: [
5885
+ "AutomaticRestartTime",
5886
+ "BackupTarget",
5502
5887
  "CertificateDetails",
5503
5888
  "CertificateDetails.CAIdentifier",
5504
5889
  "CertificateDetails.ValidTill",
@@ -5507,6 +5892,7 @@ const properties = {
5507
5892
  "DBClusterIdentifier",
5508
5893
  "DBInstanceArn",
5509
5894
  "DBInstanceIdentifier",
5895
+ "DBInstanceStatus",
5510
5896
  "DBName",
5511
5897
  "DBSubnetGroupName",
5512
5898
  "DBSystemId",
@@ -5516,11 +5902,24 @@ const properties = {
5516
5902
  "Endpoint.Address",
5517
5903
  "Endpoint.HostedZoneId",
5518
5904
  "Endpoint.Port",
5905
+ "InstanceCreateTime",
5906
+ "IsStorageConfigUpgradeAvailable",
5519
5907
  "KmsKeyId",
5908
+ "LatestRestorableTime",
5909
+ "ListenerEndpoint",
5910
+ "ListenerEndpoint.Address",
5911
+ "ListenerEndpoint.HostedZoneId",
5912
+ "ListenerEndpoint.Port",
5520
5913
  "MasterUserSecret.SecretArn",
5521
5914
  "MasterUsername",
5522
5915
  "NcharCharacterSetName",
5916
+ "PercentProgress",
5917
+ "ReadReplicaDBClusterIdentifiers",
5918
+ "ReadReplicaDBInstanceIdentifiers",
5919
+ "ResumeFullAutomationModeTime",
5920
+ "SecondaryAvailabilityZone",
5523
5921
  "SourceRegion",
5922
+ "StatusInfos",
5524
5923
  "StorageEncrypted",
5525
5924
  "Timezone",
5526
5925
  ],
@@ -5679,6 +6078,23 @@ const properties = {
5679
6078
  "Namespace.Status",
5680
6079
  "NamespaceName",
5681
6080
  ],
6081
+ Snapshot: [
6082
+ "NamespaceName",
6083
+ "OwnerAccount",
6084
+ "Snapshot",
6085
+ "Snapshot.AdminUsername",
6086
+ "Snapshot.KmsKeyId",
6087
+ "Snapshot.NamespaceArn",
6088
+ "Snapshot.NamespaceName",
6089
+ "Snapshot.OwnerAccount",
6090
+ "Snapshot.RetentionPeriod",
6091
+ "Snapshot.SnapshotArn",
6092
+ "Snapshot.SnapshotCreateTime",
6093
+ "Snapshot.SnapshotName",
6094
+ "Snapshot.Status",
6095
+ "SnapshotName",
6096
+ "Tags",
6097
+ ],
5682
6098
  Workgroup: [
5683
6099
  "NamespaceName",
5684
6100
  "Workgroup.BaseCapacity",
@@ -5997,6 +6413,14 @@ const properties = {
5997
6413
  "BucketName",
5998
6414
  "DomainName",
5999
6415
  "DualStackDomainName",
6416
+ "MetadataConfiguration.Destination",
6417
+ "MetadataConfiguration.Destination.TableBucketArn",
6418
+ "MetadataConfiguration.Destination.TableBucketType",
6419
+ "MetadataConfiguration.Destination.TableNamespace",
6420
+ "MetadataConfiguration.InventoryTableConfiguration.TableArn",
6421
+ "MetadataConfiguration.InventoryTableConfiguration.TableName",
6422
+ "MetadataConfiguration.JournalTableConfiguration.TableArn",
6423
+ "MetadataConfiguration.JournalTableConfiguration.TableName",
6000
6424
  "MetadataTableConfiguration.S3TablesDestination.TableArn",
6001
6425
  "MetadataTableConfiguration.S3TablesDestination.TableNamespace",
6002
6426
  "RegionalDomainName",
@@ -6071,8 +6495,19 @@ const properties = {
6071
6495
  ],
6072
6496
  },
6073
6497
  S3Tables: {
6498
+ Namespace: ["Namespace", "TableBucketARN"],
6499
+ Table: [
6500
+ "IcebergMetadata",
6501
+ "OpenTableFormat",
6502
+ "TableARN",
6503
+ "TableBucketARN",
6504
+ "VersionToken",
6505
+ "WarehouseLocation",
6506
+ "WithoutMetadata",
6507
+ ],
6074
6508
  TableBucket: ["TableBucketARN", "TableBucketName"],
6075
6509
  TableBucketPolicy: ["TableBucketARN"],
6510
+ TablePolicy: ["Namespace", "TableARN", "TableBucketARN", "TableName"],
6076
6511
  },
6077
6512
  SES: {
6078
6513
  ConfigurationSet: ["Name"],
@@ -6127,6 +6562,22 @@ const properties = {
6127
6562
  Template: ["Id"],
6128
6563
  VdmAttributes: ["VdmAttributesResourceId"],
6129
6564
  },
6565
+ SMSVOICE: {
6566
+ ConfigurationSet: ["Arn", "ConfigurationSetName"],
6567
+ OptOutList: ["Arn", "OptOutListName"],
6568
+ PhoneNumber: [
6569
+ "Arn",
6570
+ "IsoCountryCode",
6571
+ "NumberCapabilities",
6572
+ "NumberType",
6573
+ "PhoneNumber",
6574
+ "PhoneNumberId",
6575
+ ],
6576
+ Pool: ["Arn", "PoolId"],
6577
+ ProtectConfiguration: ["Arn", "ProtectConfigurationId"],
6578
+ ResourcePolicy: ["ResourceArn"],
6579
+ SenderId: ["Arn", "IsoCountryCode", "SenderId"],
6580
+ },
6130
6581
  SNS: {
6131
6582
  Subscription: ["Arn", "Endpoint", "Protocol", "TopicArn"],
6132
6583
  Topic: ["FifoTopic", "TopicArn", "TopicName", "TopicName"],
@@ -6201,10 +6652,9 @@ const properties = {
6201
6652
  "BuiltInLifecycleConfigArn",
6202
6653
  "DomainId",
6203
6654
  "ResourceSpec",
6204
- "Tags",
6205
6655
  "UserProfileName",
6206
6656
  ],
6207
- AppImageConfig: ["AppImageConfigArn", "AppImageConfigName", "Tags"],
6657
+ AppImageConfig: ["AppImageConfigArn", "AppImageConfigName"],
6208
6658
  Cluster: [
6209
6659
  "ClusterArn",
6210
6660
  "ClusterName",
@@ -6432,6 +6882,30 @@ const properties = {
6432
6882
  "Type",
6433
6883
  ],
6434
6884
  Pipeline: ["PipelineName"],
6885
+ ProcessingJob: [
6886
+ "AppSpecification",
6887
+ "AutoMLJobArn",
6888
+ "CreationTime",
6889
+ "Environment",
6890
+ "ExitMessage",
6891
+ "ExperimentConfig",
6892
+ "FailureReason",
6893
+ "LastModifiedTime",
6894
+ "MonitoringScheduleArn",
6895
+ "NetworkConfig",
6896
+ "ProcessingEndTime",
6897
+ "ProcessingInputs",
6898
+ "ProcessingJobArn",
6899
+ "ProcessingJobName",
6900
+ "ProcessingJobStatus",
6901
+ "ProcessingOutputConfig",
6902
+ "ProcessingResources",
6903
+ "ProcessingStartTime",
6904
+ "RoleArn",
6905
+ "StoppingCondition",
6906
+ "Tags",
6907
+ "TrainingJobArn",
6908
+ ],
6435
6909
  Project: [
6436
6910
  "CreationTime",
6437
6911
  "ProjectArn",
@@ -6441,6 +6915,7 @@ const properties = {
6441
6915
  "ProjectStatus",
6442
6916
  "ServiceCatalogProvisioningDetails",
6443
6917
  "Tags",
6918
+ "TemplateProviderDetails",
6444
6919
  ],
6445
6920
  Space: [
6446
6921
  "DomainId",
@@ -6484,7 +6959,9 @@ const properties = {
6484
6959
  SecretTargetAttachment: ["Id", "SecretId"],
6485
6960
  },
6486
6961
  SecurityHub: {
6962
+ AggregatorV2: ["AggregationRegion", "AggregatorV2Arn"],
6487
6963
  AutomationRule: ["CreatedAt", "CreatedBy", "RuleArn", "UpdatedAt"],
6964
+ AutomationRuleV2: ["CreatedAt", "RuleArn", "RuleId", "UpdatedAt"],
6488
6965
  ConfigurationPolicy: [
6489
6966
  "Arn",
6490
6967
  "CreatedAt",
@@ -6495,6 +6972,7 @@ const properties = {
6495
6972
  DelegatedAdmin: ["AdminAccountId", "DelegatedAdminIdentifier", "Status"],
6496
6973
  FindingAggregator: ["FindingAggregationRegion", "FindingAggregatorArn"],
6497
6974
  Hub: ["ARN", "SubscribedAt"],
6975
+ HubV2: ["HubV2Arn", "SubscribedAt"],
6498
6976
  Insight: ["InsightArn"],
6499
6977
  OrganizationConfiguration: [
6500
6978
  "MemberAccountLimitReached",
@@ -6545,7 +7023,7 @@ const properties = {
6545
7023
  ],
6546
7024
  LaunchNotificationConstraint: ["PortfolioId", "ProductId"],
6547
7025
  LaunchRoleConstraint: ["PortfolioId", "ProductId"],
6548
- LaunchTemplateConstraint: ["PortfolioId", "ProductId"],
7026
+ LaunchTemplateConstraint: ["Id", "PortfolioId", "ProductId"],
6549
7027
  Portfolio: ["PortfolioName"],
6550
7028
  PortfolioPrincipalAssociation: [
6551
7029
  "AcceptLanguage",
@@ -6568,7 +7046,7 @@ const properties = {
6568
7046
  "ServiceActionId",
6569
7047
  ],
6570
7048
  StackSetConstraint: ["PortfolioId", "ProductId"],
6571
- TagOption: ["Key", "Value"],
7049
+ TagOption: ["Id", "Key", "Value"],
6572
7050
  TagOptionAssociation: ["ResourceId", "TagOptionId"],
6573
7051
  },
6574
7052
  ServiceCatalogAppRegistry: {
@@ -6682,11 +7160,9 @@ const properties = {
6682
7160
  Timestream: {
6683
7161
  Database: ["Arn", "DatabaseName"],
6684
7162
  InfluxDBInstance: [
6685
- "AllocatedStorage",
6686
7163
  "Arn",
6687
7164
  "AvailabilityZone",
6688
7165
  "Bucket",
6689
- "DbStorageType",
6690
7166
  "Endpoint",
6691
7167
  "Id",
6692
7168
  "InfluxAuthParametersSecretArn",
@@ -6930,7 +7406,6 @@ const properties = {
6930
7406
  "ApiFormat",
6931
7407
  "AssistantArn",
6932
7408
  "AssistantId",
6933
- "ModelId",
6934
7409
  "ModifiedTimeSeconds",
6935
7410
  "Name",
6936
7411
  "Tags",
@@ -6986,6 +7461,17 @@ const properties = {
6986
7461
  "MessageTemplateVersionArn",
6987
7462
  "MessageTemplateVersionNumber",
6988
7463
  ],
7464
+ QuickResponse: [
7465
+ "Contents",
7466
+ "Contents.Markdown",
7467
+ "Contents.Markdown.Content",
7468
+ "Contents.PlainText",
7469
+ "Contents.PlainText.Content",
7470
+ "KnowledgeBaseArn",
7471
+ "QuickResponseArn",
7472
+ "QuickResponseId",
7473
+ "Status",
7474
+ ],
6989
7475
  },
6990
7476
  WorkSpaces: {
6991
7477
  ConnectionAlias: [
@@ -7049,6 +7535,13 @@ const properties = {
7049
7535
  "ServiceProviderSamlMetadata",
7050
7536
  "StatusReason",
7051
7537
  ],
7538
+ SessionLogger: [
7539
+ "AdditionalEncryptionContext",
7540
+ "AssociatedPortalArns",
7541
+ "CreationDate",
7542
+ "CustomerManagedKey",
7543
+ "SessionLoggerArn",
7544
+ ],
7052
7545
  TrustStore: ["AssociatedPortalArns", "TrustStoreArn"],
7053
7546
  UserAccessLoggingSettings: [
7054
7547
  "AssociatedPortalArns",
@@ -7056,6 +7549,28 @@ const properties = {
7056
7549
  ],
7057
7550
  UserSettings: ["AssociatedPortalArns", "UserSettingsArn"],
7058
7551
  },
7552
+ WorkspacesInstances: {
7553
+ Volume: [
7554
+ "AvailabilityZone",
7555
+ "Encrypted",
7556
+ "Iops",
7557
+ "KmsKeyId",
7558
+ "SizeInGB",
7559
+ "SnapshotId",
7560
+ "TagSpecifications",
7561
+ "Throughput",
7562
+ "VolumeId",
7563
+ "VolumeType",
7564
+ ],
7565
+ VolumeAssociation: ["Device", "VolumeId", "WorkspaceInstanceId"],
7566
+ WorkspaceInstance: [
7567
+ "EC2ManagedInstance",
7568
+ "EC2ManagedInstance.InstanceId",
7569
+ "ManagedInstance",
7570
+ "ProvisionState",
7571
+ "WorkspaceInstanceId",
7572
+ ],
7573
+ },
7059
7574
  XRay: {
7060
7575
  Group: ["GroupARN"],
7061
7576
  ResourcePolicy: ["PolicyName"],