@awboost/cfn-resource-types 0.1.325 → 0.1.326

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.
@@ -35,7 +35,7 @@ export type BedrockBlueprintProperties = {
35
35
  /**
36
36
  * Modality Type
37
37
  */
38
- Type: "DOCUMENT" | "IMAGE";
38
+ Type: "DOCUMENT" | "IMAGE" | "AUDIO";
39
39
  };
40
40
  /**
41
41
  * Attribute type definition for `AWS::Bedrock::Blueprint`.
@@ -35,10 +35,21 @@ export type BudgetData = {
35
35
  BudgetType: string;
36
36
  CostFilters?: Record<string, any>;
37
37
  CostTypes?: CostTypes;
38
+ FilterExpression?: Expression;
39
+ Metrics?: string[];
38
40
  PlannedBudgetLimits?: Record<string, any>;
39
41
  TimePeriod?: TimePeriod;
40
42
  TimeUnit: string;
41
43
  };
44
+ /**
45
+ * Type definition for `AWS::Budgets::Budget.CostCategoryValues`.
46
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costcategoryvalues.html}
47
+ */
48
+ export type CostCategoryValues = {
49
+ Key?: string;
50
+ MatchOptions?: string[];
51
+ Values?: string[];
52
+ };
42
53
  /**
43
54
  * Type definition for `AWS::Budgets::Budget.CostTypes`.
44
55
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html}
@@ -56,6 +67,27 @@ export type CostTypes = {
56
67
  UseAmortized?: boolean;
57
68
  UseBlended?: boolean;
58
69
  };
70
+ /**
71
+ * Type definition for `AWS::Budgets::Budget.Expression`.
72
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-expression.html}
73
+ */
74
+ export type Expression = {
75
+ And?: Expression[];
76
+ CostCategories?: CostCategoryValues;
77
+ Dimensions?: ExpressionDimensionValues;
78
+ Not?: Expression;
79
+ Or?: Expression[];
80
+ Tags?: TagValues;
81
+ };
82
+ /**
83
+ * Type definition for `AWS::Budgets::Budget.ExpressionDimensionValues`.
84
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-expressiondimensionvalues.html}
85
+ */
86
+ export type ExpressionDimensionValues = {
87
+ Key?: string;
88
+ MatchOptions?: string[];
89
+ Values?: string[];
90
+ };
59
91
  /**
60
92
  * Type definition for `AWS::Budgets::Budget.HistoricalOptions`.
61
93
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-historicaloptions.html}
@@ -105,6 +137,15 @@ export type Subscriber = {
105
137
  Address: string;
106
138
  SubscriptionType: string;
107
139
  };
140
+ /**
141
+ * Type definition for `AWS::Budgets::Budget.TagValues`.
142
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-tagvalues.html}
143
+ */
144
+ export type TagValues = {
145
+ Key?: string;
146
+ MatchOptions?: string[];
147
+ Values?: string[];
148
+ };
108
149
  /**
109
150
  * Type definition for `AWS::Budgets::Budget.TimePeriod`.
110
151
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-timeperiod.html}
@@ -9,6 +9,7 @@ export type EC2ClientVpnEndpointProperties = {
9
9
  ClientCidrBlock: string;
10
10
  ClientConnectOptions?: ClientConnectOptions;
11
11
  ClientLoginBannerOptions?: ClientLoginBannerOptions;
12
+ ClientRouteEnforcementOptions?: ClientRouteEnforcementOptions;
12
13
  ConnectionLogOptions: ConnectionLogOptions;
13
14
  Description?: string;
14
15
  DisconnectOnSessionTimeout?: boolean;
@@ -63,6 +64,13 @@ export type ClientLoginBannerOptions = {
63
64
  BannerText?: string;
64
65
  Enabled: boolean;
65
66
  };
67
+ /**
68
+ * Type definition for `AWS::EC2::ClientVpnEndpoint.ClientRouteEnforcementOptions`.
69
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-clientrouteenforcementoptions.html}
70
+ */
71
+ export type ClientRouteEnforcementOptions = {
72
+ Enforced?: boolean;
73
+ };
66
74
  /**
67
75
  * Type definition for `AWS::EC2::ClientVpnEndpoint.ConnectionLogOptions`.
68
76
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.325",
3
+ "version": "0.1.326",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },