@awboost/cfntypes 1.0.0-beta.2 → 1.0.0-beta.4

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.
package/lib/index.d.ts CHANGED
@@ -60714,7 +60714,7 @@ export interface AttributeTypes {
60714
60714
  }
60715
60715
  export type AttributeTypeFor<T extends ResourceType> = T extends keyof AttributeTypes ? AttributeTypes[T] : never;
60716
60716
  export type AttributesFor<T extends ResourceType> = T extends keyof AttributeTypes ? keyof AttributeTypes[T] : never;
60717
- export type ResourceAttributeMap = {
60717
+ export type AttributeNameMap = {
60718
60718
  [K in ResourceType]: (AttributesFor<K>)[];
60719
60719
  };
60720
60720
  export declare const ResourceType: {
@@ -61744,4 +61744,5 @@ export declare const ResourceType: {
61744
61744
  readonly LocationPlaceIndexProps: "AWS::Location::PlaceIndex";
61745
61745
  readonly ApiGatewayV2ApiMappingProps: "AWS::ApiGatewayV2::ApiMapping";
61746
61746
  };
61747
+ export declare const AttributeNames: AttributeNameMap;
61747
61748
  export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];