@awboost/cfn-resource-types 0.1.244 → 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`.
@@ -3,10 +3,10 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
3
3
  /**
4
4
  * Resource type definition for `AWS::Config::ConfigRule`.
5
5
  * You must first create and start the CC configuration recorder in order to create CC managed rules with CFNlong. For more information, see [Managing the Configuration Recorder](https://docs.aws.amazon.com/config/latest/developerguide/stop-start-recorder.html).
6
- Adds or updates an CC rule to evaluate if your AWS resources comply with your desired configurations. For information on how many CC rules you can have per account, see [Service Limits](https://docs.aws.amazon.com/config/latest/developerguide/configlimits.html) in the *Developer Guide*.
6
+ Adds or updates an CC rule to evaluate if your AWS resources comply with your desired configurations. For information on how many CC rules you can have per account, see [Service Limits](https://docs.aws.amazon.com/config/latest/developerguide/configlimits.html) in the *Developer Guide*.
7
7
  There are two types of rules: *Managed Rules* and *Custom Rules*. You can use the ``ConfigRule`` resource to create both CC Managed Rules and CC Custom Rules.
8
- CC Managed Rules are predefined, customizable rules created by CC. For a list of managed rules, see [List of Managed Rules](https://docs.aws.amazon.com/config/latest/developerguide/managed-rules-by-aws-config.html). If you are adding an CC managed rule, you must specify the rule's identifier for the ``SourceIdentifier`` key.
9
- CC Custom Rules are rules that you create from scratch. There are two ways to create CC custom rules: with Lambda functions ([Developer Guide](https://docs.aws.amazon.com/config/latest/developerguide/gettingstarted-concepts.html#gettingstarted-concepts-function)) and with CFNGUARDshort ([Guard GitHub Repository](https://docs.aws.amazon.com/https://github.com/aws-cloudformation/cloudformation-guard)), a policy-as-code language. CC custom rules created with LAMlong are called *Custom Lambda Rules* and CC custom rules created with CFNGUARDshort are called *Custom Policy Rules*.
8
+ CC Managed Rules are predefined, customizable rules created by CC. For a list of managed rules, see [List of Managed Rules](https://docs.aws.amazon.com/config/latest/developerguide/managed-rules-by-aws-config.html). If you are adding an CC managed rule, you must specify the rule's identifier for the ``SourceIdentifier`` key.
9
+ CC Custom Rules are rules that you create from scratch. There are two ways to create CC custom rules: with Lambda functions ([Developer Guide](https://docs.aws.amazon.com/config/latest/developerguide/gettingstarted-concepts.html#gettingstarted-concepts-function)) and with CFNGUARDshort ([Guard GitHub Repository](https://docs.aws.amazon.com/https://github.com/aws-cloudformation/cloudformation-guard)), a policy-as-code language. CC custom rules created with LAMlong are called *Custom Lambda Rules* and CC custom rules created with CFNGUARDshort are called *Custom Policy Rules*.
10
10
  If you are adding a new CC Custom LAM rule, you first need to create an LAMlong function that the rule invokes to evaluate your resources. When you use the ``ConfigRule`` resource to add a Custom LAM rule to CC, you must specify the Amazon Resource Name (ARN) that LAMlong assigns to the function. You specify the ARN in the ``SourceIdentifier`` key. This key is part of the ``Source`` object, which is part of the ``ConfigRule`` object.
11
11
  For any new CC rule that you add, specify the ``ConfigRuleName`` in the ``ConfigRule`` object. Do not specify the ``ConfigRuleArn`` or the ``ConfigRuleId``. These values are generated by CC for new rules.
12
12
  If you are updating a rule that you added previously, you can specify the rule by ``ConfigRuleName``, ``ConfigRuleId``, or ``ConfigRuleArn`` in the ``ConfigRule`` data type that you use in this request.
@@ -176,10 +176,10 @@ export type SourceDetail = {
176
176
  /**
177
177
  * Resource type definition for `AWS::Config::ConfigRule`.
178
178
  * You must first create and start the CC configuration recorder in order to create CC managed rules with CFNlong. For more information, see [Managing the Configuration Recorder](https://docs.aws.amazon.com/config/latest/developerguide/stop-start-recorder.html).
179
- Adds or updates an CC rule to evaluate if your AWS resources comply with your desired configurations. For information on how many CC rules you can have per account, see [Service Limits](https://docs.aws.amazon.com/config/latest/developerguide/configlimits.html) in the *Developer Guide*.
179
+ Adds or updates an CC rule to evaluate if your AWS resources comply with your desired configurations. For information on how many CC rules you can have per account, see [Service Limits](https://docs.aws.amazon.com/config/latest/developerguide/configlimits.html) in the *Developer Guide*.
180
180
  There are two types of rules: *Managed Rules* and *Custom Rules*. You can use the ``ConfigRule`` resource to create both CC Managed Rules and CC Custom Rules.
181
- CC Managed Rules are predefined, customizable rules created by CC. For a list of managed rules, see [List of Managed Rules](https://docs.aws.amazon.com/config/latest/developerguide/managed-rules-by-aws-config.html). If you are adding an CC managed rule, you must specify the rule's identifier for the ``SourceIdentifier`` key.
182
- CC Custom Rules are rules that you create from scratch. There are two ways to create CC custom rules: with Lambda functions ([Developer Guide](https://docs.aws.amazon.com/config/latest/developerguide/gettingstarted-concepts.html#gettingstarted-concepts-function)) and with CFNGUARDshort ([Guard GitHub Repository](https://docs.aws.amazon.com/https://github.com/aws-cloudformation/cloudformation-guard)), a policy-as-code language. CC custom rules created with LAMlong are called *Custom Lambda Rules* and CC custom rules created with CFNGUARDshort are called *Custom Policy Rules*.
181
+ CC Managed Rules are predefined, customizable rules created by CC. For a list of managed rules, see [List of Managed Rules](https://docs.aws.amazon.com/config/latest/developerguide/managed-rules-by-aws-config.html). If you are adding an CC managed rule, you must specify the rule's identifier for the ``SourceIdentifier`` key.
182
+ CC Custom Rules are rules that you create from scratch. There are two ways to create CC custom rules: with Lambda functions ([Developer Guide](https://docs.aws.amazon.com/config/latest/developerguide/gettingstarted-concepts.html#gettingstarted-concepts-function)) and with CFNGUARDshort ([Guard GitHub Repository](https://docs.aws.amazon.com/https://github.com/aws-cloudformation/cloudformation-guard)), a policy-as-code language. CC custom rules created with LAMlong are called *Custom Lambda Rules* and CC custom rules created with CFNGUARDshort are called *Custom Policy Rules*.
183
183
  If you are adding a new CC Custom LAM rule, you first need to create an LAMlong function that the rule invokes to evaluate your resources. When you use the ``ConfigRule`` resource to add a Custom LAM rule to CC, you must specify the Amazon Resource Name (ARN) that LAMlong assigns to the function. You specify the ARN in the ``SourceIdentifier`` key. This key is part of the ``Source`` object, which is part of the ``ConfigRule`` object.
184
184
  For any new CC rule that you add, specify the ``ConfigRuleName`` in the ``ConfigRule`` object. Do not specify the ``ConfigRuleArn`` or the ``ConfigRuleId``. These values are generated by CC for new rules.
185
185
  If you are updating a rule that you added previously, you can specify the rule by ``ConfigRuleName``, ``ConfigRuleId``, or ``ConfigRuleArn`` in the ``ConfigRule`` data type that you use in this request.
@@ -2,10 +2,10 @@ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/re
2
2
  /**
3
3
  * Resource type definition for `AWS::Config::ConfigRule`.
4
4
  * You must first create and start the CC configuration recorder in order to create CC managed rules with CFNlong. For more information, see [Managing the Configuration Recorder](https://docs.aws.amazon.com/config/latest/developerguide/stop-start-recorder.html).
5
- Adds or updates an CC rule to evaluate if your AWS resources comply with your desired configurations. For information on how many CC rules you can have per account, see [Service Limits](https://docs.aws.amazon.com/config/latest/developerguide/configlimits.html) in the *Developer Guide*.
5
+ Adds or updates an CC rule to evaluate if your AWS resources comply with your desired configurations. For information on how many CC rules you can have per account, see [Service Limits](https://docs.aws.amazon.com/config/latest/developerguide/configlimits.html) in the *Developer Guide*.
6
6
  There are two types of rules: *Managed Rules* and *Custom Rules*. You can use the ``ConfigRule`` resource to create both CC Managed Rules and CC Custom Rules.
7
- CC Managed Rules are predefined, customizable rules created by CC. For a list of managed rules, see [List of Managed Rules](https://docs.aws.amazon.com/config/latest/developerguide/managed-rules-by-aws-config.html). If you are adding an CC managed rule, you must specify the rule's identifier for the ``SourceIdentifier`` key.
8
- CC Custom Rules are rules that you create from scratch. There are two ways to create CC custom rules: with Lambda functions ([Developer Guide](https://docs.aws.amazon.com/config/latest/developerguide/gettingstarted-concepts.html#gettingstarted-concepts-function)) and with CFNGUARDshort ([Guard GitHub Repository](https://docs.aws.amazon.com/https://github.com/aws-cloudformation/cloudformation-guard)), a policy-as-code language. CC custom rules created with LAMlong are called *Custom Lambda Rules* and CC custom rules created with CFNGUARDshort are called *Custom Policy Rules*.
7
+ CC Managed Rules are predefined, customizable rules created by CC. For a list of managed rules, see [List of Managed Rules](https://docs.aws.amazon.com/config/latest/developerguide/managed-rules-by-aws-config.html). If you are adding an CC managed rule, you must specify the rule's identifier for the ``SourceIdentifier`` key.
8
+ CC Custom Rules are rules that you create from scratch. There are two ways to create CC custom rules: with Lambda functions ([Developer Guide](https://docs.aws.amazon.com/config/latest/developerguide/gettingstarted-concepts.html#gettingstarted-concepts-function)) and with CFNGUARDshort ([Guard GitHub Repository](https://docs.aws.amazon.com/https://github.com/aws-cloudformation/cloudformation-guard)), a policy-as-code language. CC custom rules created with LAMlong are called *Custom Lambda Rules* and CC custom rules created with CFNGUARDshort are called *Custom Policy Rules*.
9
9
  If you are adding a new CC Custom LAM rule, you first need to create an LAMlong function that the rule invokes to evaluate your resources. When you use the ``ConfigRule`` resource to add a Custom LAM rule to CC, you must specify the Amazon Resource Name (ARN) that LAMlong assigns to the function. You specify the ARN in the ``SourceIdentifier`` key. This key is part of the ``Source`` object, which is part of the ``ConfigRule`` object.
10
10
  For any new CC rule that you add, specify the ``ConfigRuleName`` in the ``ConfigRule`` object. Do not specify the ``ConfigRuleArn`` or the ``ConfigRuleId``. These values are generated by CC for new rules.
11
11
  If you are updating a rule that you added previously, you can specify the rule by ``ConfigRuleName``, ``ConfigRuleId``, or ``ConfigRuleArn`` in the ``ConfigRule`` data type that you use in this request.
@@ -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
  */
@@ -39,14 +39,14 @@ export type IoTBillingGroupAttributes = {
39
39
  */
40
40
  export type Tag = {
41
41
  /**
42
- * The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
42
+ * Tag key (1-128 chars). No 'aws:' prefix. Allows: [A-Za-z0-9 _.:/=+-]
43
43
  * @minLength `1`
44
44
  * @maxLength `128`
45
45
  * @pattern `^([\p{L}\p{Z}\p{N}_.:/=+\-@]*)$`
46
46
  */
47
47
  Key: string;
48
48
  /**
49
- * The value for the tag. You can specify a value that is 1 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
49
+ * Tag value (1-256 chars). No 'aws:' prefix. Allows: [A-Za-z0-9 _.:/=+-]
50
50
  * @minLength `1`
51
51
  * @maxLength `256`
52
52
  */
@@ -58,14 +58,14 @@ export type AttributePayload = {
58
58
  */
59
59
  export type Tag = {
60
60
  /**
61
- * The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
61
+ * Tag key (1-128 chars). No 'aws:' prefix. Allows: [A-Za-z0-9 _.:/=+-]
62
62
  * @minLength `1`
63
63
  * @maxLength `128`
64
64
  * @pattern `^([\p{L}\p{Z}\p{N}_.:/=+\-@]*)$`
65
65
  */
66
66
  Key: string;
67
67
  /**
68
- * The value for the tag. You can specify a value that is 1 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
68
+ * Tag value (1-256 chars). No 'aws:' prefix. Allows: [A-Za-z0-9 _.:/=+-]
69
69
  * @minLength `1`
70
70
  * @maxLength `256`
71
71
  */
@@ -91,6 +91,32 @@ export type MediaConnectFlowAttributes = {
91
91
  NetworkInterfaceIds: string[];
92
92
  }[];
93
93
  };
94
+ /**
95
+ * Type definition for `AWS::MediaConnect::Flow.AudioMonitoringSetting`.
96
+ * Specifies the configuration for audio stream metrics monitoring.
97
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flow-audiomonitoringsetting.html}
98
+ */
99
+ export type AudioMonitoringSetting = {
100
+ /**
101
+ * Configures settings for the SilentAudio metric.
102
+ */
103
+ SilentAudio?: SilentAudio;
104
+ };
105
+ /**
106
+ * Type definition for `AWS::MediaConnect::Flow.BlackFrames`.
107
+ * Configures settings for the BlackFrames metric.
108
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flow-blackframes.html}
109
+ */
110
+ export type BlackFrames = {
111
+ /**
112
+ * Indicates whether the BlackFrames metric is enabled or disabled.
113
+ */
114
+ State?: "ENABLED" | "DISABLED";
115
+ /**
116
+ * Specifies the number of consecutive seconds of black frames that triggers an event or alert.
117
+ */
118
+ ThresholdSeconds?: number;
119
+ };
94
120
  /**
95
121
  * Type definition for `AWS::MediaConnect::Flow.Encryption`.
96
122
  * Information about the encryption of the flow.
@@ -194,6 +220,21 @@ export type Fmtp = {
194
220
  */
195
221
  Tcs?: "SDR" | "PQ" | "HLG" | "LINEAR" | "BT2100LINPQ" | "BT2100LINHLG" | "ST2065-1" | "ST428-1" | "DENSITY";
196
222
  };
223
+ /**
224
+ * Type definition for `AWS::MediaConnect::Flow.FrozenFrames`.
225
+ * Configures settings for the FrozenFrames metric.
226
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flow-frozenframes.html}
227
+ */
228
+ export type FrozenFrames = {
229
+ /**
230
+ * Indicates whether the FrozenFrames metric is enabled or disabled.
231
+ */
232
+ State?: "ENABLED" | "DISABLED";
233
+ /**
234
+ * Specifies the number of consecutive seconds of a static image that triggers an event or alert.
235
+ */
236
+ ThresholdSeconds?: number;
237
+ };
197
238
  /**
198
239
  * Type definition for `AWS::MediaConnect::Flow.GatewayBridgeSource`.
199
240
  * The source configuration for cloud flows receiving a stream from a bridge.
@@ -319,6 +360,21 @@ export type MediaStreamSourceConfiguration = {
319
360
  */
320
361
  MediaStreamName: string;
321
362
  };
363
+ /**
364
+ * Type definition for `AWS::MediaConnect::Flow.SilentAudio`.
365
+ * Configures settings for the SilentAudio metric.
366
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flow-silentaudio.html}
367
+ */
368
+ export type SilentAudio = {
369
+ /**
370
+ * Indicates whether the SilentAudio metric is enabled or disabled.
371
+ */
372
+ State?: "ENABLED" | "DISABLED";
373
+ /**
374
+ * Specifies the number of consecutive seconds of silence that triggers an event or alert.
375
+ */
376
+ ThresholdSeconds?: number;
377
+ };
322
378
  /**
323
379
  * Type definition for `AWS::MediaConnect::Flow.Source`.
324
380
  * The settings for the source of the flow.
@@ -408,10 +464,37 @@ export type Source = {
408
464
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flow-sourcemonitoringconfig.html}
409
465
  */
410
466
  export type SourceMonitoringConfig = {
467
+ /**
468
+ * Contains the settings for audio stream metrics monitoring.
469
+ */
470
+ AudioMonitoringSettings?: AudioMonitoringSetting[];
471
+ /**
472
+ * Indicates whether content quality analysis is enabled or disabled.
473
+ */
474
+ ContentQualityAnalysisState?: "ENABLED" | "DISABLED";
411
475
  /**
412
476
  * The state of thumbnail monitoring.
413
477
  */
414
- ThumbnailState: "ENABLED" | "DISABLED";
478
+ ThumbnailState?: "ENABLED" | "DISABLED";
479
+ /**
480
+ * Contains the settings for video stream metrics monitoring.
481
+ */
482
+ VideoMonitoringSettings?: VideoMonitoringSetting[];
483
+ };
484
+ /**
485
+ * Type definition for `AWS::MediaConnect::Flow.VideoMonitoringSetting`.
486
+ * Specifies the configuration for video stream metrics monitoring.
487
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flow-videomonitoringsetting.html}
488
+ */
489
+ export type VideoMonitoringSetting = {
490
+ /**
491
+ * Configures settings for the BlackFrames metric.
492
+ */
493
+ BlackFrames?: BlackFrames;
494
+ /**
495
+ * Configures settings for the FrozenFrames metric.
496
+ */
497
+ FrozenFrames?: FrozenFrames;
415
498
  };
416
499
  /**
417
500
  * Type definition for `AWS::MediaConnect::Flow.VpcInterface`.
@@ -7,7 +7,6 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
7
7
  export type PCSClusterProperties = {
8
8
  /**
9
9
  * The name that identifies the cluster.
10
- * @pattern `^(?!pcs_)^(?![A-Za-z0-9]{10}$)[A-Za-z][A-Za-z0-9-]+$`
11
10
  */
12
11
  Name?: string;
13
12
  /**
@@ -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}$`
@@ -40,9 +40,8 @@ export type SSMIncidentsReplicationSetAttributes = {
40
40
  */
41
41
  export type RegionConfiguration = {
42
42
  /**
43
- * The ARN of the ReplicationSet.
44
- * @maxLength `1000`
45
- * @pattern `^arn:aws(-(cn|us-gov|iso(-b)?))?:[a-z-]+:(([a-z]+-)+[0-9])?:([0-9]{12})?:[^.]+$`
43
+ * The AWS Key Management Service key ID or Key Alias to use to encrypt your replication set.
44
+ * @maxLength `2048`
46
45
  */
47
46
  SseKmsKeyId: string;
48
47
  };
@@ -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.244",
3
+ "version": "0.1.246",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },