@awboost/cfn-resource-types 0.1.183 → 0.1.185
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-ApiGateway-Account.d.ts +0 -3
- package/lib/AWS-ApiGateway-ApiKey.d.ts +0 -27
- package/lib/AWS-ApiGateway-Authorizer.d.ts +0 -30
- package/lib/AWS-ApiGateway-BasePathMapping.d.ts +0 -12
- package/lib/AWS-ApiGateway-ClientCertificate.d.ts +0 -6
- package/lib/AWS-ApiGateway-Deployment.d.ts +1 -61
- package/lib/AWS-ApiGateway-DocumentationPart.d.ts +3 -23
- package/lib/AWS-ApiGateway-DocumentationVersion.d.ts +0 -5
- package/lib/AWS-ApiGateway-GatewayResponse.d.ts +0 -15
- package/lib/AWS-ApiGateway-Method.d.ts +1 -103
- package/lib/AWS-ApiGateway-Model.d.ts +0 -12
- package/lib/AWS-ApiGateway-RequestValidator.d.ts +0 -12
- package/lib/AWS-ApiGateway-Resource.d.ts +0 -9
- package/lib/AWS-ApiGateway-RestApi.d.ts +0 -33
- package/lib/AWS-ApiGateway-Stage.d.ts +3 -69
- package/lib/AWS-ApiGateway-UsagePlan.d.ts +4 -32
- package/lib/AWS-ApiGateway-UsagePlanKey.d.ts +0 -3
- package/lib/AWS-NimbleStudio-LaunchProfile.d.ts +9 -186
- package/lib/AWS-NimbleStudio-LaunchProfile.js +1 -2
- package/lib/AWS-NimbleStudio-StreamingImage.d.ts +6 -72
- package/lib/AWS-NimbleStudio-StreamingImage.js +1 -2
- package/lib/AWS-NimbleStudio-Studio.d.ts +4 -58
- package/lib/AWS-NimbleStudio-Studio.js +1 -2
- package/lib/AWS-NimbleStudio-StudioComponent.d.ts +11 -187
- package/lib/AWS-NimbleStudio-StudioComponent.js +1 -2
- package/lib/AWS-Wisdom-AIAgent.d.ts +182 -0
- package/lib/AWS-Wisdom-AIAgent.js +12 -0
- package/lib/AWS-Wisdom-AIAgentVersion.d.ts +45 -0
- package/lib/AWS-Wisdom-AIAgentVersion.js +12 -0
- package/package.json +1 -1
|
@@ -0,0 +1,182 @@
|
|
|
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::Wisdom::AIAgent Resource Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-aiagent.html}
|
|
6
|
+
*/
|
|
7
|
+
export type WisdomAIAgentProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$|^arn:[a-z-]*?:wisdom:[a-z0-9-]*?:[0-9]{12}:[a-z-]*?/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(?:/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}){0,2}$`
|
|
10
|
+
*/
|
|
11
|
+
AssistantId: string;
|
|
12
|
+
Configuration: AIAgentConfiguration;
|
|
13
|
+
/**
|
|
14
|
+
* @minLength `1`
|
|
15
|
+
* @maxLength `255`
|
|
16
|
+
* @pattern `^[a-zA-Z0-9\s_.,-]+`
|
|
17
|
+
*/
|
|
18
|
+
Description?: string;
|
|
19
|
+
/**
|
|
20
|
+
* @minLength `1`
|
|
21
|
+
* @maxLength `255`
|
|
22
|
+
* @pattern `^[a-zA-Z0-9\s_.,-]+`
|
|
23
|
+
*/
|
|
24
|
+
Name?: string;
|
|
25
|
+
Tags?: Tags;
|
|
26
|
+
Type: AIAgentType;
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* Attribute type definition for `AWS::Wisdom::AIAgent`.
|
|
30
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-aiagent.html#aws-resource-wisdom-aiagent-return-values}
|
|
31
|
+
*/
|
|
32
|
+
export type WisdomAIAgentAttributes = {
|
|
33
|
+
/**
|
|
34
|
+
* @pattern `^arn:[a-z-]*?:wisdom:[a-z0-9-]*?:[0-9]{12}:[a-z-]*?/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(?:/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}){0,2}$`
|
|
35
|
+
*/
|
|
36
|
+
AIAgentArn: string;
|
|
37
|
+
/**
|
|
38
|
+
* @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}$|^arn:[a-z-]*?:wisdom:[a-z0-9-]*?:[0-9]{12}:[a-z-]*?/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(?:/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}){0,2}(:[A-Z0-9_$]+){0,1}$`
|
|
39
|
+
*/
|
|
40
|
+
AIAgentId: string;
|
|
41
|
+
/**
|
|
42
|
+
* @pattern `^arn:[a-z-]*?:wisdom:[a-z0-9-]*?:[0-9]{12}:[a-z-]*?/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(?:/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}){0,2}$`
|
|
43
|
+
*/
|
|
44
|
+
AssistantArn: string;
|
|
45
|
+
};
|
|
46
|
+
/**
|
|
47
|
+
* Type definition for `AWS::Wisdom::AIAgent.AIAgentAssociationConfigurationType`.
|
|
48
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-aiagentassociationconfigurationtype.html}
|
|
49
|
+
*/
|
|
50
|
+
export type AIAgentAssociationConfigurationType = "KNOWLEDGE_BASE";
|
|
51
|
+
/**
|
|
52
|
+
* Type definition for `AWS::Wisdom::AIAgent.AIAgentConfiguration`.
|
|
53
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-aiagentconfiguration.html}
|
|
54
|
+
*/
|
|
55
|
+
export type AIAgentConfiguration = {
|
|
56
|
+
ManualSearchAIAgentConfiguration: ManualSearchAIAgentConfiguration;
|
|
57
|
+
} | {
|
|
58
|
+
AnswerRecommendationAIAgentConfiguration: AnswerRecommendationAIAgentConfiguration;
|
|
59
|
+
};
|
|
60
|
+
/**
|
|
61
|
+
* Type definition for `AWS::Wisdom::AIAgent.AIAgentType`.
|
|
62
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-aiagenttype.html}
|
|
63
|
+
*/
|
|
64
|
+
export type AIAgentType = "MANUAL_SEARCH" | "ANSWER_RECOMMENDATION";
|
|
65
|
+
/**
|
|
66
|
+
* Type definition for `AWS::Wisdom::AIAgent.AnswerRecommendationAIAgentConfiguration`.
|
|
67
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-answerrecommendationaiagentconfiguration.html}
|
|
68
|
+
*/
|
|
69
|
+
export type AnswerRecommendationAIAgentConfiguration = {
|
|
70
|
+
/**
|
|
71
|
+
* @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}$`
|
|
72
|
+
*/
|
|
73
|
+
AnswerGenerationAIPromptId?: string;
|
|
74
|
+
AssociationConfigurations?: AssociationConfiguration[];
|
|
75
|
+
/**
|
|
76
|
+
* @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}$`
|
|
77
|
+
*/
|
|
78
|
+
IntentLabelingGenerationAIPromptId?: string;
|
|
79
|
+
/**
|
|
80
|
+
* @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}$`
|
|
81
|
+
*/
|
|
82
|
+
QueryReformulationAIPromptId?: string;
|
|
83
|
+
};
|
|
84
|
+
/**
|
|
85
|
+
* Type definition for `AWS::Wisdom::AIAgent.AssociationConfiguration`.
|
|
86
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-associationconfiguration.html}
|
|
87
|
+
*/
|
|
88
|
+
export type AssociationConfiguration = {
|
|
89
|
+
AssociationConfigurationData?: AssociationConfigurationData;
|
|
90
|
+
/**
|
|
91
|
+
* @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$`
|
|
92
|
+
*/
|
|
93
|
+
AssociationId?: string;
|
|
94
|
+
AssociationType?: AIAgentAssociationConfigurationType;
|
|
95
|
+
};
|
|
96
|
+
/**
|
|
97
|
+
* Type definition for `AWS::Wisdom::AIAgent.AssociationConfigurationData`.
|
|
98
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-associationconfigurationdata.html}
|
|
99
|
+
*/
|
|
100
|
+
export type AssociationConfigurationData = {
|
|
101
|
+
KnowledgeBaseAssociationConfigurationData: KnowledgeBaseAssociationConfigurationData;
|
|
102
|
+
};
|
|
103
|
+
/**
|
|
104
|
+
* Type definition for `AWS::Wisdom::AIAgent.KnowledgeBaseAssociationConfigurationData`.
|
|
105
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-knowledgebaseassociationconfigurationdata.html}
|
|
106
|
+
*/
|
|
107
|
+
export type KnowledgeBaseAssociationConfigurationData = {
|
|
108
|
+
ContentTagFilter?: TagFilter;
|
|
109
|
+
/**
|
|
110
|
+
* @min `1`
|
|
111
|
+
* @max `100`
|
|
112
|
+
*/
|
|
113
|
+
MaxResults?: number;
|
|
114
|
+
OverrideKnowledgeBaseSearchType?: KnowledgeBaseSearchType;
|
|
115
|
+
};
|
|
116
|
+
/**
|
|
117
|
+
* Type definition for `AWS::Wisdom::AIAgent.KnowledgeBaseSearchType`.
|
|
118
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-knowledgebasesearchtype.html}
|
|
119
|
+
*/
|
|
120
|
+
export type KnowledgeBaseSearchType = "HYBRID" | "SEMANTIC";
|
|
121
|
+
/**
|
|
122
|
+
* Type definition for `AWS::Wisdom::AIAgent.ManualSearchAIAgentConfiguration`.
|
|
123
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-manualsearchaiagentconfiguration.html}
|
|
124
|
+
*/
|
|
125
|
+
export type ManualSearchAIAgentConfiguration = {
|
|
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
|
+
AnswerGenerationAIPromptId?: string;
|
|
130
|
+
AssociationConfigurations?: AssociationConfiguration[];
|
|
131
|
+
};
|
|
132
|
+
/**
|
|
133
|
+
* Type definition for `AWS::Wisdom::AIAgent.OrCondition`.
|
|
134
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-orcondition.html}
|
|
135
|
+
*/
|
|
136
|
+
export type OrCondition = {
|
|
137
|
+
AndConditions: TagCondition[];
|
|
138
|
+
} | {
|
|
139
|
+
TagCondition: TagCondition;
|
|
140
|
+
};
|
|
141
|
+
/**
|
|
142
|
+
* Type definition for `AWS::Wisdom::AIAgent.TagCondition`.
|
|
143
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-tagcondition.html}
|
|
144
|
+
*/
|
|
145
|
+
export type TagCondition = {
|
|
146
|
+
/**
|
|
147
|
+
* @minLength `1`
|
|
148
|
+
* @maxLength `128`
|
|
149
|
+
* @pattern `^(?!aws:)[a-zA-Z+-=._:/]+$`
|
|
150
|
+
*/
|
|
151
|
+
Key: string;
|
|
152
|
+
/**
|
|
153
|
+
* @minLength `1`
|
|
154
|
+
* @maxLength `256`
|
|
155
|
+
*/
|
|
156
|
+
Value?: string;
|
|
157
|
+
};
|
|
158
|
+
/**
|
|
159
|
+
* Type definition for `AWS::Wisdom::AIAgent.TagFilter`.
|
|
160
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-tagfilter.html}
|
|
161
|
+
*/
|
|
162
|
+
export type TagFilter = {
|
|
163
|
+
TagCondition: TagCondition;
|
|
164
|
+
} | {
|
|
165
|
+
AndConditions: TagCondition[];
|
|
166
|
+
} | {
|
|
167
|
+
OrConditions: OrCondition[];
|
|
168
|
+
};
|
|
169
|
+
/**
|
|
170
|
+
* Type definition for `AWS::Wisdom::AIAgent.Tags`.
|
|
171
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-tags.html}
|
|
172
|
+
*/
|
|
173
|
+
export type Tags = Record<string, string>;
|
|
174
|
+
/**
|
|
175
|
+
* Definition of AWS::Wisdom::AIAgent Resource Type
|
|
176
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-aiagent.html}
|
|
177
|
+
*/
|
|
178
|
+
export declare class WisdomAIAgent extends $Resource<"AWS::Wisdom::AIAgent", WisdomAIAgentProperties, WisdomAIAgentAttributes> {
|
|
179
|
+
static readonly Type = "AWS::Wisdom::AIAgent";
|
|
180
|
+
constructor(logicalId: string, properties: WisdomAIAgentProperties, options?: $ResourceOptions);
|
|
181
|
+
}
|
|
182
|
+
//# sourceMappingURL=AWS-Wisdom-AIAgent.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Definition of AWS::Wisdom::AIAgent Resource Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-aiagent.html}
|
|
5
|
+
*/
|
|
6
|
+
export class WisdomAIAgent extends $Resource {
|
|
7
|
+
static Type = "AWS::Wisdom::AIAgent";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, WisdomAIAgent.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-Wisdom-AIAgent.js.map
|
|
@@ -0,0 +1,45 @@
|
|
|
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::Wisdom::AIAgentVersion Resource Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-aiagentversion.html}
|
|
6
|
+
*/
|
|
7
|
+
export type WisdomAIAgentVersionProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$`
|
|
10
|
+
*/
|
|
11
|
+
AIAgentId: string;
|
|
12
|
+
/**
|
|
13
|
+
* @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$`
|
|
14
|
+
*/
|
|
15
|
+
AssistantId: string;
|
|
16
|
+
ModifiedTimeSeconds?: number;
|
|
17
|
+
};
|
|
18
|
+
/**
|
|
19
|
+
* Attribute type definition for `AWS::Wisdom::AIAgentVersion`.
|
|
20
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-aiagentversion.html#aws-resource-wisdom-aiagentversion-return-values}
|
|
21
|
+
*/
|
|
22
|
+
export type WisdomAIAgentVersionAttributes = {
|
|
23
|
+
/**
|
|
24
|
+
* @pattern `^arn:[a-z-]*?:wisdom:[a-z0-9-]*?:[0-9]{12}:[a-z-]*?/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(?:/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12})?$`
|
|
25
|
+
*/
|
|
26
|
+
AIAgentArn: string;
|
|
27
|
+
/**
|
|
28
|
+
* @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}$`
|
|
29
|
+
*/
|
|
30
|
+
AIAgentVersionId: string;
|
|
31
|
+
/**
|
|
32
|
+
* @pattern `^arn:[a-z-]*?:wisdom:[a-z0-9-]*?:[0-9]{12}:[a-z-]*?/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(?:/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12})?$`
|
|
33
|
+
*/
|
|
34
|
+
AssistantArn: string;
|
|
35
|
+
VersionNumber: number;
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* Definition of AWS::Wisdom::AIAgentVersion Resource Type
|
|
39
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-aiagentversion.html}
|
|
40
|
+
*/
|
|
41
|
+
export declare class WisdomAIAgentVersion extends $Resource<"AWS::Wisdom::AIAgentVersion", WisdomAIAgentVersionProperties, WisdomAIAgentVersionAttributes> {
|
|
42
|
+
static readonly Type = "AWS::Wisdom::AIAgentVersion";
|
|
43
|
+
constructor(logicalId: string, properties: WisdomAIAgentVersionProperties, options?: $ResourceOptions);
|
|
44
|
+
}
|
|
45
|
+
//# sourceMappingURL=AWS-Wisdom-AIAgentVersion.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Definition of AWS::Wisdom::AIAgentVersion Resource Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-aiagentversion.html}
|
|
5
|
+
*/
|
|
6
|
+
export class WisdomAIAgentVersion extends $Resource {
|
|
7
|
+
static Type = "AWS::Wisdom::AIAgentVersion";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, WisdomAIAgentVersion.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-Wisdom-AIAgentVersion.js.map
|