@awboost/cfn-resource-types 0.1.245 → 0.1.246

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.
@@ -82,6 +82,10 @@ export type BedrockEmbeddingModelConfiguration = {
82
82
  * @max `4096`
83
83
  */
84
84
  Dimensions?: number;
85
+ /**
86
+ * The data type for the vectors when using a model to convert text into vector embeddings.
87
+ */
88
+ EmbeddingDataType?: "FLOAT32" | "BINARY";
85
89
  };
86
90
  /**
87
91
  * Type definition for `AWS::Bedrock::KnowledgeBase.CuratedQuery`.
@@ -5,7 +5,8 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html}
6
6
  */
7
7
  export type EC2CapacityReservationProperties = {
8
- AvailabilityZone: string;
8
+ AvailabilityZone?: string;
9
+ AvailabilityZoneId?: string;
9
10
  EbsOptimized?: boolean;
10
11
  EndDate?: string;
11
12
  EndDateType?: string;
@@ -425,8 +425,9 @@ export type InstanceRequirements = {
425
425
  AcceleratorTotalMemoryMiB?: AcceleratorTotalMemoryMiB;
426
426
  /**
427
427
  * The accelerator types that must be on the instance type.
428
- + For instance types with GPU accelerators, specify ``gpu``.
429
428
  + For instance types with FPGA accelerators, specify ``fpga``.
429
+ + For instance types with GPU accelerators, specify ``gpu``.
430
+ + For instance types with Inference accelerators, specify ``inference``.
430
431
 
431
432
  Default: Any accelerator type
432
433
  */
@@ -950,8 +951,9 @@ export type NetworkInterface = {
950
951
  */
951
952
  Description?: string;
952
953
  /**
953
- * The device index for the network interface attachment. Each network interface requires a device index. If you create a launch template that includes secondary network interfaces but not a primary network interface, then you must add a primary network interface as a launch parameter when you launch an instance from the template.
954
- */
954
+ * The device index for the network interface attachment. If the network interface is of type ``interface``, you must specify a device index.
955
+ If you create a launch template that includes secondary network interfaces but no primary network interface, and you specify it using the ``LaunchTemplate`` property of ``AWS::EC2::Instance``, then you must include a primary network interface using the ``NetworkInterfaces`` property of ``AWS::EC2::Instance``.
956
+ */
955
957
  DeviceIndex?: number;
956
958
  /**
957
959
  * The ENA Express configuration for the network interface.
@@ -29,6 +29,7 @@ export type FMSPolicyProperties = {
29
29
  PolicyName: string;
30
30
  RemediationEnabled: boolean;
31
31
  ResourceSetIds?: string[];
32
+ ResourceTagLogicalOperator?: "AND" | "OR";
32
33
  /**
33
34
  * @maxLength `8`
34
35
  */
@@ -11,6 +11,7 @@ export type QBusinessWebExperienceProperties = {
11
11
  * @pattern `^[a-zA-Z0-9][a-zA-Z0-9-]{35}$`
12
12
  */
13
13
  ApplicationId: string;
14
+ BrowserExtensionConfiguration?: BrowserExtensionConfiguration;
14
15
  CustomizationConfiguration?: CustomizationConfiguration;
15
16
  IdentityProviderConfiguration?: IdentityProviderConfiguration;
16
17
  /**
@@ -75,6 +76,22 @@ export type QBusinessWebExperienceAttributes = {
75
76
  */
76
77
  WebExperienceId: string;
77
78
  };
79
+ /**
80
+ * Type definition for `AWS::QBusiness::WebExperience.BrowserExtension`.
81
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-webexperience-browserextension.html}
82
+ */
83
+ export type BrowserExtension = "FIREFOX" | "CHROME";
84
+ /**
85
+ * Type definition for `AWS::QBusiness::WebExperience.BrowserExtensionConfiguration`.
86
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-webexperience-browserextensionconfiguration.html}
87
+ */
88
+ export type BrowserExtensionConfiguration = {
89
+ /**
90
+ * @minLength `0`
91
+ * @maxLength `2`
92
+ */
93
+ EnabledBrowserExtensions: BrowserExtension[];
94
+ };
78
95
  /**
79
96
  * Type definition for `AWS::QBusiness::WebExperience.CustomizationConfiguration`.
80
97
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-webexperience-customizationconfiguration.html}
@@ -35,11 +35,6 @@ export type ResilienceHubAppProperties = {
35
35
  * Defines the roles and credentials that AWS Resilience Hub would use while creating the application, importing its resources, and running an assessment.
36
36
  */
37
37
  PermissionModel?: PermissionModel;
38
- /**
39
- * Amazon Resource Name (ARN) of the Regulatory Policy.
40
- * @pattern `^arn:(aws|aws-cn|aws-iso|aws-iso-[a-z]{1}|aws-us-gov):[A-Za-z0-9][A-Za-z0-9_/.-]{0,62}:([a-z]{2}-((iso[a-z]{0,1}-)|(gov-)){0,1}[a-z]+-[0-9]):[0-9]{12}:[A-Za-z0-9][A-Za-z0-9:_/+=,@.-]{0,1023}$`
41
- */
42
- RegulatoryPolicyArn?: string;
43
38
  /**
44
39
  * Amazon Resource Name (ARN) of the Resiliency Policy.
45
40
  * @pattern `^arn:(aws|aws-cn|aws-iso|aws-iso-[a-z]{1}|aws-us-gov):[A-Za-z0-9][A-Za-z0-9_/.-]{0,62}:([a-z]{2}-((iso[a-z]{0,1}-)|(gov-)){0,1}[a-z]+-[0-9]):[0-9]{12}:[A-Za-z0-9][A-Za-z0-9:_/+=,@.-]{0,1023}$`
@@ -62,9 +62,13 @@ export type TimestreamInfluxDBInstanceProperties = {
62
62
  * The unique name that is associated with the InfluxDB instance.
63
63
  * @minLength `3`
64
64
  * @maxLength `40`
65
- * @pattern `^[a-zA-z][a-zA-Z0-9]*(-[a-zA-Z0-9]+)*$`
65
+ * @pattern `^[a-zA-Z][a-zA-Z0-9]*(-[a-zA-Z0-9]+)*$`
66
66
  */
67
67
  Name?: string;
68
+ /**
69
+ * Network type of the InfluxDB Instance.
70
+ */
71
+ NetworkType?: "IPV4" | "DUAL";
68
72
  /**
69
73
  * The organization for the InfluxDB instance.
70
74
  * @minLength `1`
@@ -78,6 +82,12 @@ export type TimestreamInfluxDBInstanceProperties = {
78
82
  * @pattern `^[a-zA-Z0-9]+$`
79
83
  */
80
84
  Password?: string;
85
+ /**
86
+ * The port number on which InfluxDB accepts connections.
87
+ * @min `1024`
88
+ * @max `65535`
89
+ */
90
+ Port?: number;
81
91
  /**
82
92
  * Attach a public IP to the customer ENI.
83
93
  */
@@ -146,7 +156,7 @@ export type TimestreamInfluxDBInstanceAttributes = {
146
156
  /**
147
157
  * Status of the InfluxDB Instance.
148
158
  */
149
- Status: "CREATING" | "AVAILABLE" | "DELETING" | "MODIFYING" | "UPDATING" | "DELETED" | "FAILED";
159
+ Status: "CREATING" | "AVAILABLE" | "DELETING" | "MODIFYING" | "UPDATING" | "UPDATING_DEPLOYMENT_TYPE" | "UPDATING_INSTANCE_TYPE" | "DELETED" | "FAILED";
150
160
  };
151
161
  /**
152
162
  * Type definition for `AWS::Timestream::InfluxDBInstance.Tag`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.245",
3
+ "version": "0.1.246",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },