@awboost/cfn-resource-types 0.1.261 → 0.1.262

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.
@@ -16,7 +16,6 @@ export type CognitoUserPoolDomainProperties = {
16
16
  */
17
17
  export type CognitoUserPoolDomainAttributes = {
18
18
  CloudFrontDistribution: string;
19
- Id: string;
20
19
  };
21
20
  /**
22
21
  * Type definition for `AWS::Cognito::UserPoolDomain.CustomDomainConfigType`.
@@ -0,0 +1,55 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
+ /**
4
+ * Resource type definition for `AWS::Connect::ContactFlowVersion`.
5
+ * Resource Type Definition for ContactFlowVersion
6
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-contactflowversion.html}
7
+ */
8
+ export type ConnectContactFlowVersionProperties = {
9
+ /**
10
+ * The ARN of the contact flow this version is tied to.
11
+ * @minLength `1`
12
+ * @maxLength `500`
13
+ * @pattern `^arn:aws[-a-z0-9]*:connect:[-a-z0-9]+:[0-9]{12}:instance/[-a-zA-Z0-9]+/contact-flow/[-a-zA-Z0-9]+$`
14
+ */
15
+ ContactFlowId: string;
16
+ /**
17
+ * The description of the version.
18
+ * @maxLength `500`
19
+ */
20
+ Description?: string;
21
+ };
22
+ /**
23
+ * Attribute type definition for `AWS::Connect::ContactFlowVersion`.
24
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-contactflowversion.html#aws-resource-connect-contactflowversion-return-values}
25
+ */
26
+ export type ConnectContactFlowVersionAttributes = {
27
+ /**
28
+ * The identifier of the contact flow version (ARN).
29
+ * @minLength `1`
30
+ * @maxLength `500`
31
+ * @pattern `^arn:aws[-a-z0-9]*:connect:[-a-z0-9]+:[0-9]{12}:instance/[-a-zA-Z0-9]+/contact-flow/[-a-zA-Z0-9]+:[0-9]+$`
32
+ */
33
+ ContactFlowVersionARN: string;
34
+ /**
35
+ * Indicates the checksum value of the latest published flow content
36
+ * @minLength `1`
37
+ * @maxLength `64`
38
+ * @pattern `^[a-zA-Z0-9]{64}$`
39
+ */
40
+ FlowContentSha256: string;
41
+ /**
42
+ * The version number of this revision
43
+ */
44
+ Version: number;
45
+ };
46
+ /**
47
+ * Resource type definition for `AWS::Connect::ContactFlowVersion`.
48
+ * Resource Type Definition for ContactFlowVersion
49
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-contactflowversion.html}
50
+ */
51
+ export declare class ConnectContactFlowVersion extends $Resource<"AWS::Connect::ContactFlowVersion", ConnectContactFlowVersionProperties, ConnectContactFlowVersionAttributes> {
52
+ static readonly Type = "AWS::Connect::ContactFlowVersion";
53
+ constructor(logicalId: string, properties: ConnectContactFlowVersionProperties, options?: $ResourceOptions);
54
+ }
55
+ //# sourceMappingURL=AWS-Connect-ContactFlowVersion.d.ts.map
@@ -0,0 +1,13 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource type definition for `AWS::Connect::ContactFlowVersion`.
4
+ * Resource Type Definition for ContactFlowVersion
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-contactflowversion.html}
6
+ */
7
+ export class ConnectContactFlowVersion extends $Resource {
8
+ static Type = "AWS::Connect::ContactFlowVersion";
9
+ constructor(logicalId, properties, options) {
10
+ super(logicalId, ConnectContactFlowVersion.Type, properties, options);
11
+ }
12
+ }
13
+ //# sourceMappingURL=AWS-Connect-ContactFlowVersion.js.map
@@ -17,8 +17,10 @@ export type ECSClusterProperties = {
17
17
  */
18
18
  ClusterName?: string;
19
19
  /**
20
- * The settings to use when creating a cluster. This parameter is used to turn on CloudWatch Container Insights for a cluster.
21
- */
20
+ * The settings to use when creating a cluster. This parameter is used to turn on CloudWatch Container Insights with enhanced observability or CloudWatch Container Insights for a cluster.
21
+ Container Insights with enhanced observability provides all the Container Insights metrics, plus additional task and container metrics. This version supports enhanced observability for Amazon ECS clusters using the Amazon EC2 and Fargate launch types. After you configure Container Insights with enhanced observability on Amazon ECS, Container Insights auto-collects detailed infrastructure telemetry from the cluster level down to the container level in your environment and displays these critical performance data in curated dashboards removing the heavy lifting in observability set-up.
22
+ For more information, see [Monitor Amazon ECS containers using Container Insights with enhanced observability](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/cloudwatch-container-insights.html) in the *Amazon Elastic Container Service Developer Guide*.
23
+ */
22
24
  ClusterSettings?: ClusterSettings[];
23
25
  /**
24
26
  * The execute command and managed storage configuration for the cluster.
@@ -91,7 +93,9 @@ export type ClusterConfiguration = {
91
93
  };
92
94
  /**
93
95
  * Type definition for `AWS::ECS::Cluster.ClusterSettings`.
94
- * The settings to use when creating a cluster. This parameter is used to turn on CloudWatch Container Insights for a cluster.
96
+ * The settings to use when creating a cluster. This parameter is used to turn on CloudWatch Container Insights with enhanced observability or CloudWatch Container Insights for a cluster.
97
+ Container Insights with enhanced observability provides all the Container Insights metrics, plus additional task and container metrics. This version supports enhanced observability for Amazon ECS clusters using the Amazon EC2 and Fargate launch types. After you configure Container Insights with enhanced observability on Amazon ECS, Container Insights auto-collects detailed infrastructure telemetry from the cluster level down to the container level in your environment and displays these critical performance data in curated dashboards removing the heavy lifting in observability set-up.
98
+ For more information, see [Monitor Amazon ECS containers using Container Insights with enhanced observability](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/cloudwatch-container-insights.html) in the *Amazon Elastic Container Service Developer Guide*.
95
99
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-cluster-clustersettings.html}
96
100
  */
97
101
  export type ClusterSettings = {
@@ -100,8 +104,10 @@ export type ClusterSettings = {
100
104
  */
101
105
  Name?: string;
102
106
  /**
103
- * The value to set for the cluster setting. The supported values are ``enabled`` and ``disabled``.
104
- If you set ``name`` to ``containerInsights`` and ``value`` to ``enabled``, CloudWatch Container Insights will be on for the cluster, otherwise it will be off unless the ``containerInsights`` account setting is turned on. If a cluster value is specified, it will override the ``containerInsights`` value set with [PutAccountSetting](https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_PutAccountSetting.html) or [PutAccountSettingDefault](https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_PutAccountSettingDefault.html).
107
+ * The value to set for the cluster setting. The supported values are ``enhanced``, ``enabled``, and ``disabled``.
108
+ To use Container Insights with enhanced observability, set the ``containerInsights`` account setting to ``enhanced``.
109
+ To use Container Insights, set the ``containerInsights`` account setting to ``enabled``.
110
+ If a cluster value is specified, it will override the ``containerInsights`` value set with [PutAccountSetting](https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_PutAccountSetting.html) or [PutAccountSettingDefault](https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_PutAccountSettingDefault.html).
105
111
  */
106
112
  Value?: string;
107
113
  };
@@ -70,6 +70,10 @@ export type StreamsKmsKey = {
70
70
  * @pattern `^(arn:(aws[a-zA-Z-]*)?:[a-z0-9-.]+:.*)|()$`
71
71
  */
72
72
  KmsAliasArn?: string;
73
+ /**
74
+ * @pattern `^alias/[a-zA-Z0-9:/_-]+$`
75
+ */
76
+ KmsAliasName?: string;
73
77
  /**
74
78
  * @pattern `^(arn:(aws[a-zA-Z-]*)?:[a-z0-9-.]+:.*)|()$`
75
79
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.261",
3
+ "version": "0.1.262",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },