@awboost/cfn-resource-types 0.1.177 → 0.1.178

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,28 +5,74 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html}
6
6
  */
7
7
  export type AppConfigDeploymentStrategyProperties = {
8
+ /**
9
+ * Total amount of time for a deployment to last.
10
+ */
8
11
  DeploymentDurationInMinutes: number;
12
+ /**
13
+ * A description of the deployment strategy.
14
+ */
9
15
  Description?: string;
16
+ /**
17
+ * Specifies the amount of time AWS AppConfig monitors for Amazon CloudWatch alarms after the configuration has been deployed to 100% of its targets, before considering the deployment to be complete. If an alarm is triggered during this time, AWS AppConfig rolls back the deployment. You must configure permissions for AWS AppConfig to roll back based on CloudWatch alarms. For more information, see Configuring permissions for rollback based on Amazon CloudWatch alarms in the AWS AppConfig User Guide.
18
+ */
10
19
  FinalBakeTimeInMinutes?: number;
20
+ /**
21
+ * The percentage of targets to receive a deployed configuration during each interval.
22
+ */
11
23
  GrowthFactor: number;
12
- GrowthType?: string;
24
+ /**
25
+ * The algorithm used to define how percentage grows over time. AWS AppConfig supports the following growth types:
26
+
27
+ Linear: For this type, AWS AppConfig processes the deployment by dividing the total number of targets by the value specified for Step percentage. For example, a linear deployment that uses a Step percentage of 10 deploys the configuration to 10 percent of the hosts. After those deployments are complete, the system deploys the configuration to the next 10 percent. This continues until 100% of the targets have successfully received the configuration.
28
+
29
+ Exponential: For this type, AWS AppConfig processes the deployment exponentially using the following formula: G*(2^N). In this formula, G is the growth factor specified by the user and N is the number of steps until the configuration is deployed to all targets. For example, if you specify a growth factor of 2, then the system rolls out the configuration as follows:
30
+
31
+ 2*(2^0)
32
+
33
+ 2*(2^1)
34
+
35
+ 2*(2^2)
36
+
37
+ Expressed numerically, the deployment rolls out as follows: 2% of the targets, 4% of the targets, 8% of the targets, and continues until the configuration has been deployed to all targets.
38
+ */
39
+ GrowthType?: "EXPONENTIAL" | "LINEAR";
40
+ /**
41
+ * A name for the deployment strategy.
42
+ */
13
43
  Name: string;
14
- ReplicateTo: string;
15
- Tags?: Tags[];
44
+ /**
45
+ * Save the deployment strategy to a Systems Manager (SSM) document.
46
+ */
47
+ ReplicateTo: "NONE" | "SSM_DOCUMENT";
48
+ /**
49
+ * Assigns metadata to an AWS AppConfig resource. Tags help organize and categorize your AWS AppConfig resources. Each tag consists of a key and an optional value, both of which you define. You can specify a maximum of 50 tags for a resource.
50
+ */
51
+ Tags?: Tag[];
16
52
  };
17
53
  /**
18
54
  * Attribute type definition for `AWS::AppConfig::DeploymentStrategy`.
19
55
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deploymentstrategy.html#aws-resource-appconfig-deploymentstrategy-return-values}
20
56
  */
21
57
  export type AppConfigDeploymentStrategyAttributes = {
58
+ /**
59
+ * The deployment strategy ID.
60
+ */
22
61
  Id: string;
23
62
  };
24
63
  /**
25
- * Type definition for `AWS::AppConfig::DeploymentStrategy.Tags`.
26
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appconfig-deploymentstrategy-tags.html}
64
+ * Type definition for `AWS::AppConfig::DeploymentStrategy.Tag`.
65
+ * Metadata to assign to the deployment strategy. Tags help organize and categorize your AWS AppConfig resources. Each tag consists of a key and an optional value, both of which you define.
66
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appconfig-deploymentstrategy-tag.html}
27
67
  */
28
- export type Tags = {
68
+ export type Tag = {
69
+ /**
70
+ * 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 -.
71
+ */
29
72
  Key?: string;
73
+ /**
74
+ * 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 -.
75
+ */
30
76
  Value?: string;
31
77
  };
32
78
  /**
@@ -41,7 +41,7 @@ export type ConnectContactFlowProperties = {
41
41
  /**
42
42
  * The type of the contact flow.
43
43
  */
44
- Type: "CONTACT_FLOW" | "CUSTOMER_QUEUE" | "CUSTOMER_HOLD" | "CUSTOMER_WHISPER" | "AGENT_HOLD" | "AGENT_WHISPER" | "OUTBOUND_WHISPER" | "AGENT_TRANSFER" | "QUEUE_TRANSFER";
44
+ Type: "CONTACT_FLOW" | "CUSTOMER_QUEUE" | "CUSTOMER_HOLD" | "CUSTOMER_WHISPER" | "AGENT_HOLD" | "AGENT_WHISPER" | "OUTBOUND_WHISPER" | "AGENT_TRANSFER" | "QUEUE_TRANSFER" | "CAMPAIGN";
45
45
  };
46
46
  /**
47
47
  * Attribute type definition for `AWS::Connect::ContactFlow`.
@@ -8,6 +8,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
8
8
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-eip.html}
9
9
  */
10
10
  export type EC2EIPProperties = {
11
+ Address?: string;
11
12
  /**
12
13
  * The network (``vpc``).
13
14
  If you define an Elastic IP address and associate it with a VPC that is defined in the same template, you must declare a dependency on the VPC-gateway attachment by using the [DependsOn Attribute](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-dependson.html) on this resource.
@@ -18,6 +19,7 @@ export type EC2EIPProperties = {
18
19
  Updates to the ``InstanceId`` property may require *some interruptions*. Updates on an EIP reassociates the address on its associated resource.
19
20
  */
20
21
  InstanceId?: string;
22
+ IpamPoolId?: string;
21
23
  /**
22
24
  * A unique set of Availability Zones, Local Zones, or Wavelength Zones from which AWS advertises IP addresses. Use this parameter to limit the IP address to this location. IP addresses cannot move between network border groups.
23
25
  Use [DescribeAvailabilityZones](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeAvailabilityZones.html) to view the network border groups.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.177",
3
+ "version": "0.1.178",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },