@awboost/cfn-resource-types 0.1.363 → 0.1.364

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.
@@ -0,0 +1,129 @@
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
+ * Definition of AWS::AIOps::InvestigationGroup Resource Type
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aiops-investigationgroup.html}
6
+ */
7
+ export type AIOpsInvestigationGroupProperties = {
8
+ /**
9
+ * An array of key-value pairs of notification channels to apply to this resource.
10
+ */
11
+ ChatbotNotificationChannels?: ChatbotNotificationChannel[];
12
+ EncryptionConfig?: EncryptionConfigMap;
13
+ /**
14
+ * Investigation Group policy
15
+ */
16
+ InvestigationGroupPolicy?: string;
17
+ /**
18
+ * Flag to enable cloud trail history
19
+ */
20
+ IsCloudTrailEventHistoryEnabled?: boolean;
21
+ /**
22
+ * User friendly name for resources.
23
+ * @minLength `1`
24
+ * @maxLength `512`
25
+ */
26
+ Name: string;
27
+ /**
28
+ * The number of days to retain the investigation group
29
+ */
30
+ RetentionInDays?: number;
31
+ /**
32
+ * The Investigation Role's ARN.
33
+ * @minLength `20`
34
+ * @maxLength `2048`
35
+ */
36
+ RoleArn?: string;
37
+ TagKeyBoundaries?: string[];
38
+ /**
39
+ * An array of key-value pairs to apply to this resource.
40
+ */
41
+ Tags?: Tag[];
42
+ };
43
+ /**
44
+ * Attribute type definition for `AWS::AIOps::InvestigationGroup`.
45
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aiops-investigationgroup.html#aws-resource-aiops-investigationgroup-return-values}
46
+ */
47
+ export type AIOpsInvestigationGroupAttributes = {
48
+ /**
49
+ * The Investigation Group's ARN.
50
+ * @minLength `20`
51
+ * @maxLength `2048`
52
+ */
53
+ Arn: string;
54
+ /**
55
+ * The timestamp value.
56
+ */
57
+ CreatedAt: string;
58
+ /**
59
+ * User friendly name for resources.
60
+ * @minLength `1`
61
+ * @maxLength `512`
62
+ */
63
+ CreatedBy: string;
64
+ /**
65
+ * User friendly name for resources.
66
+ * @minLength `1`
67
+ * @maxLength `512`
68
+ */
69
+ LastModifiedAt: string;
70
+ /**
71
+ * User friendly name for resources.
72
+ * @minLength `1`
73
+ * @maxLength `512`
74
+ */
75
+ LastModifiedBy: string;
76
+ };
77
+ /**
78
+ * Type definition for `AWS::AIOps::InvestigationGroup.ChatbotNotificationChannel`.
79
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aiops-investigationgroup-chatbotnotificationchannel.html}
80
+ */
81
+ export type ChatbotNotificationChannel = {
82
+ ChatConfigurationArns?: string[];
83
+ /**
84
+ * @minLength `20`
85
+ * @maxLength `2048`
86
+ */
87
+ SNSTopicArn?: string;
88
+ };
89
+ /**
90
+ * Type definition for `AWS::AIOps::InvestigationGroup.EncryptionConfigMap`.
91
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aiops-investigationgroup-encryptionconfigmap.html}
92
+ */
93
+ export type EncryptionConfigMap = {
94
+ /**
95
+ * @minLength `1`
96
+ * @maxLength `128`
97
+ */
98
+ EncryptionConfigurationType?: string;
99
+ /**
100
+ * @minLength `1`
101
+ * @maxLength `256`
102
+ */
103
+ KmsKeyId?: string;
104
+ };
105
+ /**
106
+ * Type definition for `AWS::AIOps::InvestigationGroup.Tag`.
107
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aiops-investigationgroup-tag.html}
108
+ */
109
+ export type Tag = {
110
+ /**
111
+ * @minLength `1`
112
+ * @maxLength `128`
113
+ */
114
+ Key: string;
115
+ /**
116
+ * @minLength `1`
117
+ * @maxLength `256`
118
+ */
119
+ Value: string;
120
+ };
121
+ /**
122
+ * Definition of AWS::AIOps::InvestigationGroup Resource Type
123
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aiops-investigationgroup.html}
124
+ */
125
+ export declare class AIOpsInvestigationGroup extends $Resource<"AWS::AIOps::InvestigationGroup", AIOpsInvestigationGroupProperties, AIOpsInvestigationGroupAttributes> {
126
+ static readonly Type = "AWS::AIOps::InvestigationGroup";
127
+ constructor(logicalId: string, properties: AIOpsInvestigationGroupProperties, options?: $ResourceOptions);
128
+ }
129
+ //# sourceMappingURL=AWS-AIOps-InvestigationGroup.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Definition of AWS::AIOps::InvestigationGroup Resource Type
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aiops-investigationgroup.html}
5
+ */
6
+ export class AIOpsInvestigationGroup extends $Resource {
7
+ static Type = "AWS::AIOps::InvestigationGroup";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, AIOpsInvestigationGroup.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-AIOps-InvestigationGroup.js.map
@@ -25,6 +25,10 @@ export type BedrockGuardrailProperties = {
25
25
  * Contextual grounding policy config for a guardrail.
26
26
  */
27
27
  ContextualGroundingPolicyConfig?: ContextualGroundingPolicyConfig;
28
+ /**
29
+ * The system-defined guardrail profile that you’re using with your guardrail
30
+ */
31
+ CrossRegionConfig?: GuardrailCrossRegionConfig;
28
32
  /**
29
33
  * Description of the guardrail or its version
30
34
  * @minLength `1`
@@ -213,6 +217,20 @@ export type ContextualGroundingPolicyConfig = {
213
217
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-guardrail-filterstrength.html}
214
218
  */
215
219
  export type FilterStrength = "NONE" | "LOW" | "MEDIUM" | "HIGH";
220
+ /**
221
+ * Type definition for `AWS::Bedrock::Guardrail.GuardrailCrossRegionConfig`.
222
+ * The system-defined guardrail profile that you’re using with your guardrail
223
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-guardrail-guardrailcrossregionconfig.html}
224
+ */
225
+ export type GuardrailCrossRegionConfig = {
226
+ /**
227
+ * The Amazon Resource Name (ARN) of the guardrail profile
228
+ * @minLength `15`
229
+ * @maxLength `2048`
230
+ * @pattern `^arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}:[0-9]{12}:guardrail-profile/[a-z0-9-]+[.]{1}guardrail[.]{1}v[0-9:]+$`
231
+ */
232
+ GuardrailProfileArn: string;
233
+ };
216
234
  /**
217
235
  * Type definition for `AWS::Bedrock::Guardrail.GuardrailStatus`.
218
236
  * Status of the guardrail
@@ -747,6 +747,7 @@ export type Origin = {
747
747
  For more information, see [Using Origin Shield](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/origin-shield.html) in the *Amazon CloudFront Developer Guide*.
748
748
  */
749
749
  OriginShield?: OriginShield;
750
+ ResponseCompletionTimeout?: number;
750
751
  /**
751
752
  * Use this type to specify an origin that is an Amazon S3 bucket that is not configured with static website hosting. To specify any other type of origin, including an Amazon S3 bucket that is configured with static website hosting, use the ``CustomOriginConfig`` type instead.
752
753
  */
@@ -920,6 +921,7 @@ export type S3OriginConfig = {
920
921
  For more information about the origin access identity, see [Serving Private Content through CloudFront](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html) in the *Amazon CloudFront Developer Guide*.
921
922
  */
922
923
  OriginAccessIdentity?: string;
924
+ OriginReadTimeout?: number;
923
925
  };
924
926
  /**
925
927
  * Type definition for `AWS::CloudFront::Distribution.StatusCodes`.
@@ -144,6 +144,10 @@ export type CommunicationLimitsConfig = {
144
144
  * Communication limits
145
145
  */
146
146
  AllChannelsSubtypes?: CommunicationLimits;
147
+ /**
148
+ * Enumeration of Instance Limits handling in a Campaign
149
+ */
150
+ InstanceLimitsHandling?: InstanceLimitsHandling;
147
151
  };
148
152
  /**
149
153
  * Type definition for `AWS::ConnectCampaignsV2::Campaign.CommunicationLimitTimeUnit`.
@@ -268,6 +272,12 @@ export type EventTrigger = {
268
272
  */
269
273
  CustomerProfilesDomainArn?: string;
270
274
  };
275
+ /**
276
+ * Type definition for `AWS::ConnectCampaignsV2::Campaign.InstanceLimitsHandling`.
277
+ * Enumeration of Instance Limits handling in a Campaign
278
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-instancelimitshandling.html}
279
+ */
280
+ export type InstanceLimitsHandling = "OPT_IN" | "OPT_OUT";
271
281
  /**
272
282
  * Type definition for `AWS::ConnectCampaignsV2::Campaign.LocalTimeZoneConfig`.
273
283
  * Local time zone config
@@ -9,6 +9,10 @@ export type DSQLClusterProperties = {
9
9
  * Whether deletion protection is enabled in this cluster.
10
10
  */
11
11
  DeletionProtectionEnabled?: boolean;
12
+ /**
13
+ * The KMS key that encrypts data on the cluster.
14
+ */
15
+ KmsEncryptionKey?: string;
12
16
  /**
13
17
  * The Multi-region properties associated to this cluster.
14
18
  */
@@ -30,6 +34,23 @@ export type DSQLClusterAttributes = {
30
34
  * The time of when the cluster was created in ISO-8601 format.
31
35
  */
32
36
  CreationTime: string;
37
+ /**
38
+ * The encryption configuration details for the cluster.
39
+ */
40
+ EncryptionDetails: {
41
+ /**
42
+ * The status of encryption for the cluster.
43
+ */
44
+ EncryptionStatus: string;
45
+ /**
46
+ * The type of encryption that protects data in the cluster.
47
+ */
48
+ EncryptionType: string;
49
+ /**
50
+ * The Amazon Resource Name (ARN) of the KMS key that encrypts data in the cluster.
51
+ */
52
+ KmsKeyArn: string;
53
+ };
33
54
  /**
34
55
  * The ID of the created cluster.
35
56
  */
@@ -133,6 +133,11 @@ export type EnvironmentConfigurationParameter = {
133
133
  */
134
134
  export type EnvironmentConfigurationParametersDetails = {
135
135
  ParameterOverrides?: EnvironmentConfigurationParameter[];
136
+ /**
137
+ * @minLength `1`
138
+ * @maxLength `2048`
139
+ */
140
+ SsmPath?: string;
136
141
  };
137
142
  /**
138
143
  * Type definition for `AWS::DataZone::ProjectProfile.Region`.
@@ -94,7 +94,7 @@ export type Tag = {
94
94
  * Type definition for `AWS::RolesAnywhere::TrustAnchor.TrustAnchorType`.
95
95
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rolesanywhere-trustanchor-trustanchortype.html}
96
96
  */
97
- export type TrustAnchorType = "AWS_ACM_PCA" | "CERTIFICATE_BUNDLE" | "SELF_SIGNED_REPOSITORY";
97
+ export type TrustAnchorType = "AWS_ACM_PCA" | "CERTIFICATE_BUNDLE";
98
98
  /**
99
99
  * Definition of AWS::RolesAnywhere::TrustAnchor Resource Type.
100
100
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rolesanywhere-trustanchor.html}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.363",
3
+ "version": "0.1.364",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },