@awboost/cfn-resource-types 0.1.150 → 0.1.151

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.
@@ -5,12 +5,33 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html}
6
6
  */
7
7
  export type AmazonMQConfigurationProperties = {
8
+ /**
9
+ * The authentication strategy associated with the configuration. The default is SIMPLE.
10
+ */
8
11
  AuthenticationStrategy?: string;
12
+ /**
13
+ * The base64-encoded XML configuration.
14
+ */
9
15
  Data: string;
16
+ /**
17
+ * The description of the configuration.
18
+ */
10
19
  Description?: string;
20
+ /**
21
+ * The type of broker engine. Note: Currently, Amazon MQ only supports ACTIVEMQ for creating and editing broker configurations.
22
+ */
11
23
  EngineType: string;
24
+ /**
25
+ * The version of the broker engine.
26
+ */
12
27
  EngineVersion?: string;
28
+ /**
29
+ * The name of the configuration.
30
+ */
13
31
  Name: string;
32
+ /**
33
+ * Create tags when creating the configuration.
34
+ */
14
35
  Tags?: TagsEntry[];
15
36
  };
16
37
  /**
@@ -18,9 +39,18 @@ export type AmazonMQConfigurationProperties = {
18
39
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#aws-resource-amazonmq-configuration-return-values}
19
40
  */
20
41
  export type AmazonMQConfigurationAttributes = {
42
+ /**
43
+ * The Amazon Resource Name (ARN) of the Amazon MQ configuration.
44
+ */
21
45
  Arn: string;
46
+ /**
47
+ * The ID of the Amazon MQ configuration.
48
+ */
22
49
  Id: string;
23
- Revision: number;
50
+ /**
51
+ * The revision number of the configuration.
52
+ */
53
+ Revision: string;
24
54
  };
25
55
  /**
26
56
  * Type definition for `AWS::AmazonMQ::Configuration.TagsEntry`.
@@ -38,6 +38,30 @@ export type RDSGlobalClusterProperties = {
38
38
  If you specify the SourceDBClusterIdentifier property, don't specify this property. The value is inherited from the cluster.
39
39
  */
40
40
  StorageEncrypted?: boolean;
41
+ /**
42
+ * An array of key-value pairs to apply to this resource.
43
+ * @maxLength `50`
44
+ */
45
+ Tags?: Tag[];
46
+ };
47
+ /**
48
+ * Type definition for `AWS::RDS::GlobalCluster.Tag`.
49
+ * A key-value pair to associate with a resource.
50
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-globalcluster-tag.html}
51
+ */
52
+ export type Tag = {
53
+ /**
54
+ * 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 -.
55
+ * @minLength `1`
56
+ * @maxLength `128`
57
+ */
58
+ Key: string;
59
+ /**
60
+ * The value for the tag. You can specify a value that is 0 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 -.
61
+ * @minLength `0`
62
+ * @maxLength `256`
63
+ */
64
+ Value?: string;
41
65
  };
42
66
  /**
43
67
  * Resource Type definition for AWS::RDS::GlobalCluster
@@ -336,6 +336,11 @@ export type RuleStringOperator = "EQUALS" | "NOT_EQUALS" | "STARTS_WITH" | "ENDS
336
336
  */
337
337
  export type RuleStringToEvaluate = {
338
338
  Attribute: RuleStringEmailAttribute;
339
+ } | {
340
+ /**
341
+ * @pattern `^X-[a-zA-Z0-9-]{1,256}$`
342
+ */
343
+ MimeHeaderAttribute: string;
339
344
  };
340
345
  /**
341
346
  * Type definition for `AWS::SES::MailManagerRuleSet.RuleVerdict`.
@@ -98,7 +98,7 @@ export type ClusterInstanceGroup = {
98
98
  ExecutionRole: string;
99
99
  /**
100
100
  * The number of instances you specified to add to the instance group of a SageMaker HyperPod cluster.
101
- * @min `1`
101
+ * @min `0`
102
102
  */
103
103
  InstanceCount: number;
104
104
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.150",
3
+ "version": "0.1.151",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },