@awboost/cfn-resource-types 0.1.297 → 0.1.298

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.
@@ -115,10 +115,20 @@ export type BedrockGuardrailAttributes = {
115
115
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-guardrail-contentfilterconfig.html}
116
116
  */
117
117
  export type ContentFilterConfig = {
118
+ /**
119
+ * List of modalities
120
+ * @minLength `1`
121
+ */
122
+ InputModalities?: Modality[];
118
123
  /**
119
124
  * Strength for filters
120
125
  */
121
126
  InputStrength: FilterStrength;
127
+ /**
128
+ * List of modalities
129
+ * @minLength `1`
130
+ */
131
+ OutputModalities?: Modality[];
122
132
  /**
123
133
  * Strength for filters
124
134
  */
@@ -210,6 +220,12 @@ export type ManagedWordsConfig = {
210
220
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-guardrail-managedwordstype.html}
211
221
  */
212
222
  export type ManagedWordsType = "PROFANITY";
223
+ /**
224
+ * Type definition for `AWS::Bedrock::Guardrail.Modality`.
225
+ * Modality for filters
226
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-guardrail-modality.html}
227
+ */
228
+ export type Modality = "TEXT" | "IMAGE";
213
229
  /**
214
230
  * Type definition for `AWS::Bedrock::Guardrail.PiiEntityConfig`.
215
231
  * Pii entity configuration.
@@ -139,6 +139,7 @@ export type ProjectBuildBatchConfig = {
139
139
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectcache.html}
140
140
  */
141
141
  export type ProjectCache = {
142
+ CacheNamespace?: string;
142
143
  Location?: string;
143
144
  Modes?: string[];
144
145
  Type: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.297",
3
+ "version": "0.1.298",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },