@awboost/cfn-resource-types 0.1.481 → 0.1.483
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.
- package/lib/AWS-Backup-BackupPlan.d.ts +1 -0
- package/lib/AWS-BillingConductor-CustomLineItem.d.ts +1 -1
- package/lib/AWS-CloudFront-ConnectionFunction.d.ts +69 -0
- package/lib/AWS-CloudFront-ConnectionFunction.js +12 -0
- package/lib/AWS-CloudTrail-Trail.d.ts +28 -0
- package/lib/AWS-Cognito-Terms.d.ts +51 -0
- package/lib/AWS-Cognito-Terms.js +12 -0
- package/lib/AWS-Connect-EvaluationForm.d.ts +4 -4
- package/lib/AWS-CustomerProfiles-Domain.d.ts +52 -0
- package/lib/AWS-EC2-NatGateway.d.ts +14 -0
- package/lib/AWS-EC2-TransitGatewayMeteringPolicy.d.ts +52 -0
- package/lib/AWS-EC2-TransitGatewayMeteringPolicy.js +12 -0
- package/lib/AWS-EC2-TransitGatewayMeteringPolicyEntry.d.ts +89 -0
- package/lib/AWS-EC2-TransitGatewayMeteringPolicyEntry.js +12 -0
- package/lib/AWS-EC2-VPCEncryptionControl.d.ts +135 -0
- package/lib/AWS-EC2-VPCEncryptionControl.js +12 -0
- package/lib/AWS-ECS-ExpressGatewayService.d.ts +201 -0
- package/lib/AWS-ECS-ExpressGatewayService.js +12 -0
- package/lib/AWS-EKS-Cluster.d.ts +15 -0
- package/lib/AWS-EntityResolution-MatchingWorkflow.d.ts +2 -2
- package/lib/AWS-FSx-FileSystem.d.ts +1 -0
- package/lib/AWS-FSx-StorageVirtualMachine.d.ts +1 -0
- package/lib/AWS-KMS-Key.d.ts +3 -0
- package/lib/AWS-Lambda-EventSourceMapping.d.ts +10 -6
- package/lib/AWS-MSK-Cluster.d.ts +12 -4
- package/lib/AWS-OpenSearchServerless-Collection.d.ts +0 -30
- package/lib/AWS-PCS-Cluster.d.ts +47 -2
- package/lib/AWS-RUM-AppMonitor.d.ts +47 -0
- package/lib/AWS-Rbin-Rule.d.ts +1 -1
- package/lib/AWS-S3-Bucket.d.ts +11 -0
- package/lib/AWS-SageMaker-PartnerApp.d.ts +14 -0
- package/lib/AWS-SecretsManager-Secret.d.ts +1 -0
- package/lib/AWS-Wisdom-AIAgent.d.ts +59 -1
- package/package.json +1 -1
|
@@ -5,6 +5,12 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-partnerapp.html}
|
|
6
6
|
*/
|
|
7
7
|
export type SageMakerPartnerAppProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* The version of the PartnerApp.
|
|
10
|
+
* @minLength `1`
|
|
11
|
+
* @maxLength `64`
|
|
12
|
+
*/
|
|
13
|
+
AppVersion?: string;
|
|
8
14
|
/**
|
|
9
15
|
* A collection of settings that specify the maintenance schedule for the PartnerApp.
|
|
10
16
|
*/
|
|
@@ -20,6 +26,10 @@ export type SageMakerPartnerAppProperties = {
|
|
|
20
26
|
* @pattern `^[a-zA-Z0-9-]+$`
|
|
21
27
|
*/
|
|
22
28
|
ClientToken?: string;
|
|
29
|
+
/**
|
|
30
|
+
* Enables automatic minor version upgrades for the PartnerApp.
|
|
31
|
+
*/
|
|
32
|
+
EnableAutoMinorVersionUpgrade?: boolean;
|
|
23
33
|
/**
|
|
24
34
|
* Enables IAM Session based Identity for PartnerApp.
|
|
25
35
|
*/
|
|
@@ -82,6 +92,10 @@ export type SageMakerPartnerAppAttributes = {
|
|
|
82
92
|
* @maxLength `2048`
|
|
83
93
|
*/
|
|
84
94
|
BaseUrl: string;
|
|
95
|
+
/**
|
|
96
|
+
* The end-of-life date for the current version of the PartnerApp.
|
|
97
|
+
*/
|
|
98
|
+
CurrentVersionEolDate: string;
|
|
85
99
|
};
|
|
86
100
|
/**
|
|
87
101
|
* Type definition for `AWS::SageMaker::PartnerApp.PartnerAppConfig`.
|
|
@@ -57,6 +57,7 @@ export type SecretsManagerSecretProperties = {
|
|
|
57
57
|
+ If you use your tagging schema across multiple services and resources, other services might have restrictions on allowed characters. Generally allowed characters: letters, spaces, and numbers representable in UTF-8, plus the following special characters: + - = . _ : / @.
|
|
58
58
|
*/
|
|
59
59
|
Tags?: Tag[];
|
|
60
|
+
Type?: string;
|
|
60
61
|
};
|
|
61
62
|
/**
|
|
62
63
|
* Attribute type definition for `AWS::SecretsManager::Secret`.
|
|
@@ -59,12 +59,18 @@ export type AIAgentConfiguration = {
|
|
|
59
59
|
AnswerRecommendationAIAgentConfiguration: AnswerRecommendationAIAgentConfiguration;
|
|
60
60
|
} | {
|
|
61
61
|
SelfServiceAIAgentConfiguration: SelfServiceAIAgentConfiguration;
|
|
62
|
+
} | {
|
|
63
|
+
EmailResponseAIAgentConfiguration: EmailResponseAIAgentConfiguration;
|
|
64
|
+
} | {
|
|
65
|
+
EmailOverviewAIAgentConfiguration: EmailOverviewAIAgentConfiguration;
|
|
66
|
+
} | {
|
|
67
|
+
EmailGenerativeAnswerAIAgentConfiguration: EmailGenerativeAnswerAIAgentConfiguration;
|
|
62
68
|
};
|
|
63
69
|
/**
|
|
64
70
|
* Type definition for `AWS::Wisdom::AIAgent.AIAgentType`.
|
|
65
71
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-aiagenttype.html}
|
|
66
72
|
*/
|
|
67
|
-
export type AIAgentType = "MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE";
|
|
73
|
+
export type AIAgentType = "MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE" | "EMAIL_RESPONSE" | "EMAIL_OVERVIEW" | "EMAIL_GENERATIVE_ANSWER";
|
|
68
74
|
/**
|
|
69
75
|
* Type definition for `AWS::Wisdom::AIAgent.AnswerRecommendationAIAgentConfiguration`.
|
|
70
76
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-answerrecommendationaiagentconfiguration.html}
|
|
@@ -111,6 +117,58 @@ export type AssociationConfiguration = {
|
|
|
111
117
|
export type AssociationConfigurationData = {
|
|
112
118
|
KnowledgeBaseAssociationConfigurationData: KnowledgeBaseAssociationConfigurationData;
|
|
113
119
|
};
|
|
120
|
+
/**
|
|
121
|
+
* Type definition for `AWS::Wisdom::AIAgent.EmailGenerativeAnswerAIAgentConfiguration`.
|
|
122
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-emailgenerativeansweraiagentconfiguration.html}
|
|
123
|
+
*/
|
|
124
|
+
export type EmailGenerativeAnswerAIAgentConfiguration = {
|
|
125
|
+
AssociationConfigurations?: AssociationConfiguration[];
|
|
126
|
+
/**
|
|
127
|
+
* @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(:[A-Z0-9_$]+){0,1}$`
|
|
128
|
+
*/
|
|
129
|
+
EmailGenerativeAnswerAIPromptId?: string;
|
|
130
|
+
/**
|
|
131
|
+
* @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(:[A-Z0-9_$]+){0,1}$`
|
|
132
|
+
*/
|
|
133
|
+
EmailQueryReformulationAIPromptId?: string;
|
|
134
|
+
/**
|
|
135
|
+
* @minLength `1`
|
|
136
|
+
*/
|
|
137
|
+
Locale?: string;
|
|
138
|
+
};
|
|
139
|
+
/**
|
|
140
|
+
* Type definition for `AWS::Wisdom::AIAgent.EmailOverviewAIAgentConfiguration`.
|
|
141
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-emailoverviewaiagentconfiguration.html}
|
|
142
|
+
*/
|
|
143
|
+
export type EmailOverviewAIAgentConfiguration = {
|
|
144
|
+
/**
|
|
145
|
+
* @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(:[A-Z0-9_$]+){0,1}$`
|
|
146
|
+
*/
|
|
147
|
+
EmailOverviewAIPromptId?: string;
|
|
148
|
+
/**
|
|
149
|
+
* @minLength `1`
|
|
150
|
+
*/
|
|
151
|
+
Locale?: string;
|
|
152
|
+
};
|
|
153
|
+
/**
|
|
154
|
+
* Type definition for `AWS::Wisdom::AIAgent.EmailResponseAIAgentConfiguration`.
|
|
155
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-emailresponseaiagentconfiguration.html}
|
|
156
|
+
*/
|
|
157
|
+
export type EmailResponseAIAgentConfiguration = {
|
|
158
|
+
AssociationConfigurations?: AssociationConfiguration[];
|
|
159
|
+
/**
|
|
160
|
+
* @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(:[A-Z0-9_$]+){0,1}$`
|
|
161
|
+
*/
|
|
162
|
+
EmailQueryReformulationAIPromptId?: string;
|
|
163
|
+
/**
|
|
164
|
+
* @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(:[A-Z0-9_$]+){0,1}$`
|
|
165
|
+
*/
|
|
166
|
+
EmailResponseAIPromptId?: string;
|
|
167
|
+
/**
|
|
168
|
+
* @minLength `1`
|
|
169
|
+
*/
|
|
170
|
+
Locale?: string;
|
|
171
|
+
};
|
|
114
172
|
/**
|
|
115
173
|
* Type definition for `AWS::Wisdom::AIAgent.KnowledgeBaseAssociationConfigurationData`.
|
|
116
174
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-knowledgebaseassociationconfigurationdata.html}
|