@awboost/cfn-resource-types 0.1.331 → 0.1.333

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.
@@ -7,6 +7,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
7
7
  export type EC2NetworkInsightsAnalysisProperties = {
8
8
  AdditionalAccounts?: string[];
9
9
  FilterInArns?: string[];
10
+ FilterOutArns?: string[];
10
11
  NetworkInsightsPathId: string;
11
12
  Tags?: Tag[];
12
13
  };
@@ -127,9 +127,9 @@ export type ExecuteCommandConfiguration = {
127
127
  LogConfiguration?: ExecuteCommandLogConfiguration;
128
128
  /**
129
129
  * The log setting to use for redirecting logs for your execute command results. The following log settings are available.
130
- + ``NONE``: The execute command session is not logged.
131
- + ``DEFAULT``: The ``awslogs`` configuration in the task definition is used. If no logging parameter is specified, it defaults to this value. If no ``awslogs`` log driver is configured in the task definition, the output won't be logged.
132
- + ``OVERRIDE``: Specify the logging details as a part of ``logConfiguration``. If the ``OVERRIDE`` logging option is specified, the ``logConfiguration`` is required.
130
+ + ``NONE``: The execute command session is not logged.
131
+ + ``DEFAULT``: The ``awslogs`` configuration in the task definition is used. If no logging parameter is specified, it defaults to this value. If no ``awslogs`` log driver is configured in the task definition, the output won't be logged.
132
+ + ``OVERRIDE``: Specify the logging details as a part of ``logConfiguration``. If the ``OVERRIDE`` logging option is specified, the ``logConfiguration`` is required.
133
133
  */
134
134
  Logging?: string;
135
135
  };
@@ -633,6 +633,7 @@ export type ServiceManagedEBSVolumeConfiguration = {
633
633
  This parameter is only supported for the ``gp3`` volume type.
634
634
  */
635
635
  Throughput?: number;
636
+ VolumeInitializationRate?: number;
636
637
  /**
637
638
  * The volume type. This parameter maps 1:1 with the ``VolumeType`` parameter of the [CreateVolume API](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateVolume.html) in the *Amazon EC2 API Reference*. For more information, see [Amazon EBS volume types](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-volume-types.html) in the *Amazon EC2 User Guide*.
638
639
  The following are the supported volume types.
@@ -121,7 +121,7 @@ export type EncryptionConfiguration = {
121
121
  * Type definition for `AWS::QBusiness::Application.IdentityType`.
122
122
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-application-identitytype.html}
123
123
  */
124
- export type IdentityType = "AWS_IAM_IDP_SAML" | "AWS_IAM_IDP_OIDC" | "AWS_IAM_IDC" | "AWS_QUICKSIGHT_IDP";
124
+ export type IdentityType = "AWS_IAM_IDP_SAML" | "AWS_IAM_IDP_OIDC" | "AWS_IAM_IDC" | "AWS_QUICKSIGHT_IDP" | "ANONYMOUS";
125
125
  /**
126
126
  * Type definition for `AWS::QBusiness::Application.PersonalizationConfiguration`.
127
127
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-application-personalizationconfiguration.html}
@@ -34,7 +34,8 @@ export type RDSDBClusterProperties = {
34
34
  AssociatedRoles?: DBClusterRole[];
35
35
  /**
36
36
  * Specifies whether minor engine upgrades are applied automatically to the DB cluster during the maintenance window. By default, minor engine upgrades are applied automatically.
37
- Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB cluster
37
+ Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB cluster.
38
+ For more information about automatic minor version upgrades, see [Automatically upgrading the minor engine version](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Upgrading.html#USER_UpgradeDBInstance.Upgrading.AutoMinorVersionUpgrades).
38
39
  */
39
40
  AutoMinorVersionUpgrade?: boolean;
40
41
  /**
@@ -23,6 +23,7 @@ export type SSMContactsContactProperties = {
23
23
  * The stages that an escalation plan or engagement plan engages contacts and contact methods in.
24
24
  */
25
25
  Plan?: Stage[];
26
+ Tags?: Tag[];
26
27
  /**
27
28
  * Contact type, which specify type of contact. Currently supported values: “PERSONAL”, “SHARED”, “OTHER“.
28
29
  */
@@ -87,6 +88,25 @@ export type Stage = {
87
88
  */
88
89
  Targets?: Targets[];
89
90
  };
91
+ /**
92
+ * Type definition for `AWS::SSMContacts::Contact.Tag`.
93
+ * A key-value pair to associate with a resource.
94
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssmcontacts-contact-tag.html}
95
+ */
96
+ export type Tag = {
97
+ /**
98
+ * The key name of the tag
99
+ * @minLength `1`
100
+ * @maxLength `128`
101
+ */
102
+ Key: string;
103
+ /**
104
+ * The value for the tag.
105
+ * @minLength `0`
106
+ * @maxLength `256`
107
+ */
108
+ Value: string;
109
+ };
90
110
  /**
91
111
  * Type definition for `AWS::SSMContacts::Contact.Targets`.
92
112
  * The contacts or contact methods that the escalation plan or engagement plan is engaging.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.331",
3
+ "version": "0.1.333",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },