@awboost/cfn-resource-types 0.1.448 → 0.1.450

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.
@@ -169,6 +169,7 @@ export type BedrockAgentCoreMemoryAttributes = {
169
169
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-customconfigurationinput.html}
170
170
  */
171
171
  export type CustomConfigurationInput = {
172
+ SelfManagedConfiguration?: SelfManagedConfiguration;
172
173
  SemanticOverride?: SemanticOverride;
173
174
  SummaryOverride?: SummaryOverride;
174
175
  UserPreferenceOverride?: UserPreferenceOverride;
@@ -194,6 +195,21 @@ export type CustomMemoryStrategy = {
194
195
  */
195
196
  Namespaces?: string[];
196
197
  };
198
+ /**
199
+ * Type definition for `AWS::BedrockAgentCore::Memory.InvocationConfigurationInput`.
200
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-invocationconfigurationinput.html}
201
+ */
202
+ export type InvocationConfigurationInput = {
203
+ /**
204
+ * @pattern `^[a-z0-9][a-z0-9.-]{1,61}[a-z0-9]$`
205
+ */
206
+ PayloadDeliveryBucketName?: string;
207
+ /**
208
+ * ARN format
209
+ * @pattern `^arn:aws:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}:[^/].{0,1023}$`
210
+ */
211
+ TopicArn?: string;
212
+ };
197
213
  /**
198
214
  * Type definition for `AWS::BedrockAgentCore::Memory.MemoryStatus`.
199
215
  * Status of the Memory resource
@@ -210,6 +226,33 @@ export type MemoryStrategy = {
210
226
  SummaryMemoryStrategy?: SummaryMemoryStrategy;
211
227
  UserPreferenceMemoryStrategy?: UserPreferenceMemoryStrategy;
212
228
  };
229
+ /**
230
+ * Type definition for `AWS::BedrockAgentCore::Memory.MessageBasedTriggerInput`.
231
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-messagebasedtriggerinput.html}
232
+ */
233
+ export type MessageBasedTriggerInput = {
234
+ /**
235
+ * @min `1`
236
+ * @max `50`
237
+ */
238
+ MessageCount?: number;
239
+ };
240
+ /**
241
+ * Type definition for `AWS::BedrockAgentCore::Memory.SelfManagedConfiguration`.
242
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-selfmanagedconfiguration.html}
243
+ */
244
+ export type SelfManagedConfiguration = {
245
+ /**
246
+ * @min `0`
247
+ * @max `50`
248
+ */
249
+ HistoricalContextWindowSize?: number;
250
+ InvocationConfiguration?: InvocationConfigurationInput;
251
+ /**
252
+ * @minLength `1`
253
+ */
254
+ TriggerConditions?: TriggerConditionInput[];
255
+ };
213
256
  /**
214
257
  * Type definition for `AWS::BedrockAgentCore::Memory.SemanticMemoryStrategy`.
215
258
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-semanticmemorystrategy.html}
@@ -310,6 +353,37 @@ export type SummaryOverrideConsolidationConfigurationInput = {
310
353
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-tagsmap.html}
311
354
  */
312
355
  export type TagsMap = Record<string, string>;
356
+ /**
357
+ * Type definition for `AWS::BedrockAgentCore::Memory.TimeBasedTriggerInput`.
358
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-timebasedtriggerinput.html}
359
+ */
360
+ export type TimeBasedTriggerInput = {
361
+ /**
362
+ * @min `10`
363
+ * @max `3000`
364
+ */
365
+ IdleSessionTimeout?: number;
366
+ };
367
+ /**
368
+ * Type definition for `AWS::BedrockAgentCore::Memory.TokenBasedTriggerInput`.
369
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-tokenbasedtriggerinput.html}
370
+ */
371
+ export type TokenBasedTriggerInput = {
372
+ /**
373
+ * @min `100`
374
+ * @max `500000`
375
+ */
376
+ TokenCount?: number;
377
+ };
378
+ /**
379
+ * Type definition for `AWS::BedrockAgentCore::Memory.TriggerConditionInput`.
380
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-triggerconditioninput.html}
381
+ */
382
+ export type TriggerConditionInput = {
383
+ MessageBasedTrigger?: MessageBasedTriggerInput;
384
+ TimeBasedTrigger?: TimeBasedTriggerInput;
385
+ TokenBasedTrigger?: TokenBasedTriggerInput;
386
+ };
313
387
  /**
314
388
  * Type definition for `AWS::BedrockAgentCore::Memory.UserPreferenceMemoryStrategy`.
315
389
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-userpreferencememorystrategy.html}
@@ -118,7 +118,7 @@ export type ClusterConfiguration = {
118
118
  */
119
119
  export type ClusterSettings = {
120
120
  /**
121
- * The name of the cluster setting. The value is ``containerInsights`` .
121
+ * The name of the cluster setting. The value is ``containerInsights``.
122
122
  */
123
123
  Name?: string;
124
124
  /**
@@ -9,7 +9,7 @@ export type ECSClusterCapacityProviderAssociationsProperties = {
9
9
  /**
10
10
  * List of capacity providers to associate with the cluster
11
11
  */
12
- CapacityProviders: CapacityProvider[];
12
+ CapacityProviders?: CapacityProvider[];
13
13
  /**
14
14
  * The name of the cluster
15
15
  * @minLength `1`
@@ -328,6 +328,7 @@ export type DeploymentConfiguration = {
328
328
  * @max `1440`
329
329
  */
330
330
  BakeTimeInMinutes?: number;
331
+ CanaryConfiguration?: any;
331
332
  /**
332
333
  * The deployment circuit breaker can only be used for services using the rolling update (``ECS``) deployment type.
333
334
  The *deployment circuit breaker* determines whether a service deployment will fail if the service can't reach a steady state. If you use the deployment circuit breaker, a service deployment will transition to a failed state and stop launching new tasks. If you use the rollback option, when a service deployment fails, the service is rolled back to the last deployment that completed successfully. For more information, see [Rolling update](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/deployment-type-ecs.html) in the *Amazon Elastic Container Service Developer Guide*
@@ -337,6 +338,7 @@ export type DeploymentConfiguration = {
337
338
  * An array of deployment lifecycle hook objects to run custom logic at specific stages of the deployment lifecycle.
338
339
  */
339
340
  LifecycleHooks?: DeploymentLifecycleHook[];
341
+ LinearConfiguration?: any;
340
342
  /**
341
343
  * If a service is using the rolling update (``ECS``) deployment type, the ``maximumPercent`` parameter represents an upper limit on the number of your service's tasks that are allowed in the ``RUNNING`` or ``PENDING`` state during a deployment, as a percentage of the ``desiredCount`` (rounded down to the nearest integer). This parameter enables you to define the deployment batch size. For example, if your service is using the ``REPLICA`` service scheduler and has a ``desiredCount`` of four tasks and a ``maximumPercent`` value of 200%, the scheduler may start four new tasks before stopping the four older tasks (provided that the cluster resources required to do this are available). The default ``maximumPercent`` value for a service using the ``REPLICA`` service scheduler is 200%.
342
344
  The Amazon ECS scheduler uses this parameter to replace unhealthy tasks by starting replacement tasks first and then stopping the unhealthy tasks, as long as cluster resources for starting replacement tasks are available. For more information about how the scheduler replaces unhealthy tasks, see [Amazon ECS services](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs_services.html).
@@ -369,7 +371,7 @@ export type DeploymentConfiguration = {
369
371
  + ``ROLLING`` - When you create a service which uses the rolling update (``ROLLING``) deployment strategy, the Amazon ECS service scheduler replaces the currently running tasks with new tasks. The number of tasks that Amazon ECS adds or removes from the service during a rolling update is controlled by the service deployment configuration.
370
372
  + ``BLUE_GREEN`` - A blue/green deployment strategy (``BLUE_GREEN``) is a release methodology that reduces downtime and risk by running two identical production environments called blue and green. With Amazon ECS blue/green deployments, you can validate new service revisions before directing production traffic to them. This approach provides a safer way to deploy changes with the ability to quickly roll back if needed.
371
373
  */
372
- Strategy?: "ROLLING" | "BLUE_GREEN";
374
+ Strategy?: "ROLLING" | "BLUE_GREEN" | "LINEAR" | "CANARY";
373
375
  };
374
376
  /**
375
377
  * Type definition for `AWS::ECS::Service.DeploymentController`.
@@ -16,6 +16,9 @@ export type ServiceCatalogLaunchNotificationConstraintProperties = {
16
16
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#aws-resource-servicecatalog-launchnotificationconstraint-return-values}
17
17
  */
18
18
  export type ServiceCatalogLaunchNotificationConstraintAttributes = {
19
+ /**
20
+ * Unique identifier for the constraint
21
+ */
19
22
  Id: string;
20
23
  };
21
24
  /**
@@ -5,23 +5,29 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html}
6
6
  */
7
7
  export type ServiceCatalogPortfolioPrincipalAssociationProperties = {
8
+ /**
9
+ * The language code.
10
+ */
8
11
  AcceptLanguage?: string;
9
- PortfolioId: string;
10
- PrincipalARN: string;
12
+ /**
13
+ * The portfolio identifier.
14
+ */
15
+ PortfolioId?: string;
16
+ /**
17
+ * The ARN of the principal (user, role, or group).
18
+ * @pattern `arn:(aws|aws-cn|aws-us-gov):iam::[0-9]*:(role|user|group)\/.*`
19
+ */
20
+ PrincipalARN?: string;
21
+ /**
22
+ * The principal type. The supported value is IAM if you use a fully defined Amazon Resource Name (ARN), or IAM_PATTERN if you use an ARN with no accountID, with or without wildcard characters.
23
+ */
11
24
  PrincipalType: string;
12
25
  };
13
- /**
14
- * Attribute type definition for `AWS::ServiceCatalog::PortfolioPrincipalAssociation`.
15
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#aws-resource-servicecatalog-portfolioprincipalassociation-return-values}
16
- */
17
- export type ServiceCatalogPortfolioPrincipalAssociationAttributes = {
18
- Id: string;
19
- };
20
26
  /**
21
27
  * Resource Type definition for AWS::ServiceCatalog::PortfolioPrincipalAssociation
22
28
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html}
23
29
  */
24
- export declare class ServiceCatalogPortfolioPrincipalAssociation extends $Resource<"AWS::ServiceCatalog::PortfolioPrincipalAssociation", ServiceCatalogPortfolioPrincipalAssociationProperties, ServiceCatalogPortfolioPrincipalAssociationAttributes> {
30
+ export declare class ServiceCatalogPortfolioPrincipalAssociation extends $Resource<"AWS::ServiceCatalog::PortfolioPrincipalAssociation", ServiceCatalogPortfolioPrincipalAssociationProperties, Record<string, never>> {
25
31
  static readonly Type = "AWS::ServiceCatalog::PortfolioPrincipalAssociation";
26
32
  constructor(logicalId: string, properties: ServiceCatalogPortfolioPrincipalAssociationProperties, options?: $ResourceOptions);
27
33
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.448",
3
+ "version": "0.1.450",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },