@propulsionworks/cloudformation 0.1.29 → 0.1.30
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/out/exports/resources.generated/aws-applicationsignals-groupingconfiguration.d.ts +8 -2
- package/out/exports/resources.generated/aws-bedrock-agent.d.ts +8 -8
- package/out/exports/resources.generated/aws-bedrockagentcore-browsercustom.d.ts +3 -0
- package/out/exports/resources.generated/aws-bedrockagentcore-codeinterpretercustom.d.ts +3 -0
- package/out/exports/resources.generated/aws-bedrockagentcore-gateway.d.ts +33 -2
- package/out/exports/resources.generated/aws-bedrockagentcore-gatewaytarget.d.ts +55 -2
- package/out/exports/resources.generated/aws-bedrockagentcore-memory.d.ts +403 -0
- package/out/exports/resources.generated/aws-bedrockagentcore-runtime.d.ts +3 -0
- package/out/exports/resources.generated/aws-dax-cluster.d.ts +5 -0
- package/out/exports/resources.generated/aws-ecs-service.d.ts +1 -1
- package/out/exports/resources.generated/aws-ecs-taskdefinition.d.ts +1 -1
- package/out/exports/resources.generated/aws-imagebuilder-image.d.ts +5 -5
- package/out/exports/resources.generated/aws-imagebuilder-imagepipeline.d.ts +7 -7
- package/out/exports/resources.generated/aws-imagebuilder-imagerecipe.d.ts +1 -1
- package/out/exports/resources.generated/aws-iotsitewise-accesspolicy.d.ts +4 -0
- package/out/exports/resources.generated/aws-iotsitewise-assetmodel.d.ts +8 -7
- package/out/exports/resources.generated/aws-iotsitewise-computationmodel.d.ts +23 -16
- package/out/exports/resources.generated/aws-iotsitewise-dashboard.d.ts +4 -0
- package/out/exports/resources.generated/aws-iotsitewise-dataset.d.ts +11 -6
- package/out/exports/resources.generated/aws-iotsitewise-portal.d.ts +4 -0
- package/out/exports/resources.generated/aws-iotsitewise-project.d.ts +4 -0
- package/out/exports/resources.generated/aws-kinesis-resourcepolicy.d.ts +1 -1
- package/out/exports/resources.generated/aws-lightsail-disksnapshot.d.ts +11 -9
- package/out/exports/resources.generated/aws-logs-deliverydestination.d.ts +8 -8
- package/out/exports/resources.generated/aws-logs-metricfilter.d.ts +10 -0
- package/out/exports/resources.generated/aws-logs-subscriptionfilter.d.ts +10 -0
- package/out/exports/resources.generated/aws-lookoutmetrics-alert.d.ts +2 -2
- package/out/exports/resources.generated/aws-lookoutmetrics-anomalydetector.d.ts +2 -2
- package/out/exports/resources.generated/aws-m2-deployment.d.ts +4 -0
- package/out/exports/resources.generated/aws-m2-environment.d.ts +12 -0
- package/out/exports/resources.generated/aws-mwaa-environment.d.ts +2 -2
- package/out/exports/resources.generated/aws-observabilityadmin-organizationcentralizationrule.d.ts +2 -0
- package/out/exports/resources.generated/aws-omics-annotationstore.d.ts +4 -0
- package/out/exports/resources.generated/aws-pcs-cluster.d.ts +3 -14
- package/out/exports/resources.generated/aws-pcs-computenodegroup.d.ts +3 -14
- package/out/exports/resources.generated/aws-pcs-queue.d.ts +1 -1
- package/out/exports/resources.generated/aws-quicksight-dashboard.d.ts +13 -0
- package/out/exports/resources.generated/aws-refactorspaces-application.d.ts +4 -0
- package/out/exports/resources.generated/aws-refactorspaces-environment.d.ts +4 -0
- package/out/exports/resources.generated/aws-refactorspaces-service.d.ts +4 -0
- package/out/exports/resources.generated/aws-s3objectlambda-accesspoint.d.ts +6 -0
- package/out/exports/resources.generated/aws-s3objectlambda-accesspointpolicy.d.ts +2 -0
- package/out/exports/resources.generated/aws-servicecatalog-resourceupdateconstraint.d.ts +1 -0
- package/out/exports/resources.generated/aws-ssmquicksetup-configurationmanager.d.ts +2 -2
- package/out/exports/resources.generated/aws-vpclattice-accesslogsubscription.d.ts +1 -1
- package/out/exports/resources.generated/aws-vpclattice-resourcegateway.d.ts +5 -0
- package/out/exports/resources.generated/aws-vpclattice-resourcepolicy.d.ts +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,403 @@
|
|
|
1
|
+
import type { ResourceDefinitionWithAttributes } from "../main.ts";
|
|
2
|
+
/**
|
|
3
|
+
* Resource Type definition for AWS::BedrockAgentCore::Memory
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-memory.html}
|
|
5
|
+
*/
|
|
6
|
+
export type BedrockAgentCoreMemory = ResourceDefinitionWithAttributes<"AWS::BedrockAgentCore::Memory", BedrockAgentCoreMemoryProps, BedrockAgentCoreMemoryAttribs>;
|
|
7
|
+
/**
|
|
8
|
+
* Resource Type definition for AWS::BedrockAgentCore::Memory
|
|
9
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-memory.html}
|
|
10
|
+
*/
|
|
11
|
+
export type BedrockAgentCoreMemoryProps = {
|
|
12
|
+
/**
|
|
13
|
+
* Description of the Memory resource
|
|
14
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-memory.html#cfn-bedrockagentcore-memory-description}
|
|
15
|
+
*/
|
|
16
|
+
Description?: string | undefined;
|
|
17
|
+
/**
|
|
18
|
+
* ARN format
|
|
19
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-memory.html#cfn-bedrockagentcore-memory-encryptionkeyarn}
|
|
20
|
+
*/
|
|
21
|
+
EncryptionKeyArn?: string | undefined;
|
|
22
|
+
/**
|
|
23
|
+
* Duration in days until memory events expire
|
|
24
|
+
* @min 7
|
|
25
|
+
* @max 365
|
|
26
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-memory.html#cfn-bedrockagentcore-memory-eventexpiryduration}
|
|
27
|
+
*/
|
|
28
|
+
EventExpiryDuration: number;
|
|
29
|
+
/**
|
|
30
|
+
* ARN format
|
|
31
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-memory.html#cfn-bedrockagentcore-memory-memoryexecutionrolearn}
|
|
32
|
+
*/
|
|
33
|
+
MemoryExecutionRoleArn?: string | undefined;
|
|
34
|
+
/**
|
|
35
|
+
* List of memory strategies attached to this memory
|
|
36
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-memory.html#cfn-bedrockagentcore-memory-memorystrategies}
|
|
37
|
+
*/
|
|
38
|
+
MemoryStrategies?: MemoryStrategy[] | undefined;
|
|
39
|
+
/**
|
|
40
|
+
* Name of the Memory resource
|
|
41
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-memory.html#cfn-bedrockagentcore-memory-name}
|
|
42
|
+
*/
|
|
43
|
+
Name: string;
|
|
44
|
+
/**
|
|
45
|
+
* A map of tag keys and values
|
|
46
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-memory.html#cfn-bedrockagentcore-memory-tags}
|
|
47
|
+
*/
|
|
48
|
+
Tags?: Record<string, string> | undefined;
|
|
49
|
+
};
|
|
50
|
+
/**
|
|
51
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-memory.html#aws-resource-bedrockagentcore-memory-return-values}
|
|
52
|
+
*/
|
|
53
|
+
export type BedrockAgentCoreMemoryAttribs = {
|
|
54
|
+
/**
|
|
55
|
+
* @format date-time
|
|
56
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-memory.html#cfn-bedrockagentcore-memory-createdat}
|
|
57
|
+
*/
|
|
58
|
+
CreatedAt: string;
|
|
59
|
+
/**
|
|
60
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-memory.html#cfn-bedrockagentcore-memory-failurereason}
|
|
61
|
+
*/
|
|
62
|
+
FailureReason: string;
|
|
63
|
+
/**
|
|
64
|
+
* ARN of the Memory resource
|
|
65
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-memory.html#cfn-bedrockagentcore-memory-memoryarn}
|
|
66
|
+
*/
|
|
67
|
+
MemoryArn: string;
|
|
68
|
+
/**
|
|
69
|
+
* Unique identifier for the Memory resource
|
|
70
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-memory.html#cfn-bedrockagentcore-memory-memoryid}
|
|
71
|
+
*/
|
|
72
|
+
MemoryId: string;
|
|
73
|
+
/**
|
|
74
|
+
* Status of the Memory resource
|
|
75
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-memory.html#cfn-bedrockagentcore-memory-status}
|
|
76
|
+
*/
|
|
77
|
+
Status: MemoryStatus;
|
|
78
|
+
/**
|
|
79
|
+
* @format date-time
|
|
80
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-memory.html#cfn-bedrockagentcore-memory-updatedat}
|
|
81
|
+
*/
|
|
82
|
+
UpdatedAt: string;
|
|
83
|
+
};
|
|
84
|
+
/**
|
|
85
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-customconfigurationinput.html}
|
|
86
|
+
*/
|
|
87
|
+
export type CustomConfigurationInput = {
|
|
88
|
+
/**
|
|
89
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-customconfigurationinput.html#cfn-bedrockagentcore-memory-customconfigurationinput-selfmanagedconfiguration}
|
|
90
|
+
*/
|
|
91
|
+
SelfManagedConfiguration?: SelfManagedConfiguration | undefined;
|
|
92
|
+
/**
|
|
93
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-customconfigurationinput.html#cfn-bedrockagentcore-memory-customconfigurationinput-semanticoverride}
|
|
94
|
+
*/
|
|
95
|
+
SemanticOverride?: SemanticOverride | undefined;
|
|
96
|
+
/**
|
|
97
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-customconfigurationinput.html#cfn-bedrockagentcore-memory-customconfigurationinput-summaryoverride}
|
|
98
|
+
*/
|
|
99
|
+
SummaryOverride?: SummaryOverride | undefined;
|
|
100
|
+
/**
|
|
101
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-customconfigurationinput.html#cfn-bedrockagentcore-memory-customconfigurationinput-userpreferenceoverride}
|
|
102
|
+
*/
|
|
103
|
+
UserPreferenceOverride?: UserPreferenceOverride | undefined;
|
|
104
|
+
};
|
|
105
|
+
/**
|
|
106
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-custommemorystrategy.html}
|
|
107
|
+
*/
|
|
108
|
+
export type CustomMemoryStrategy = {
|
|
109
|
+
/**
|
|
110
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-custommemorystrategy.html#cfn-bedrockagentcore-memory-custommemorystrategy-configuration}
|
|
111
|
+
*/
|
|
112
|
+
Configuration?: CustomConfigurationInput | undefined;
|
|
113
|
+
/**
|
|
114
|
+
* Description of the Memory resource
|
|
115
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-custommemorystrategy.html#cfn-bedrockagentcore-memory-custommemorystrategy-description}
|
|
116
|
+
*/
|
|
117
|
+
Description?: string | undefined;
|
|
118
|
+
/**
|
|
119
|
+
* Name of the Memory resource
|
|
120
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-custommemorystrategy.html#cfn-bedrockagentcore-memory-custommemorystrategy-name}
|
|
121
|
+
*/
|
|
122
|
+
Name: string;
|
|
123
|
+
/**
|
|
124
|
+
* List of namespaces for memory strategy
|
|
125
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-custommemorystrategy.html#cfn-bedrockagentcore-memory-custommemorystrategy-namespaces}
|
|
126
|
+
*/
|
|
127
|
+
Namespaces?: string[] | undefined;
|
|
128
|
+
};
|
|
129
|
+
/**
|
|
130
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-invocationconfigurationinput.html}
|
|
131
|
+
*/
|
|
132
|
+
export type InvocationConfigurationInput = {
|
|
133
|
+
/**
|
|
134
|
+
* @pattern ^[a-z0-9][a-z0-9.-]{1,61}[a-z0-9]$
|
|
135
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-invocationconfigurationinput.html#cfn-bedrockagentcore-memory-invocationconfigurationinput-payloaddeliverybucketname}
|
|
136
|
+
*/
|
|
137
|
+
PayloadDeliveryBucketName?: string | undefined;
|
|
138
|
+
/**
|
|
139
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-invocationconfigurationinput.html#cfn-bedrockagentcore-memory-invocationconfigurationinput-topicarn}
|
|
140
|
+
*/
|
|
141
|
+
TopicArn?: string | undefined;
|
|
142
|
+
};
|
|
143
|
+
/**
|
|
144
|
+
* Status of the Memory resource
|
|
145
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-memorystatus.html}
|
|
146
|
+
*/
|
|
147
|
+
export type MemoryStatus = "CREATING" | "ACTIVE" | "FAILED" | "DELETING";
|
|
148
|
+
/**
|
|
149
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-memorystrategy.html}
|
|
150
|
+
*/
|
|
151
|
+
export type MemoryStrategy = {
|
|
152
|
+
/**
|
|
153
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-memorystrategy.html#cfn-bedrockagentcore-memory-memorystrategy-custommemorystrategy}
|
|
154
|
+
*/
|
|
155
|
+
CustomMemoryStrategy?: CustomMemoryStrategy | undefined;
|
|
156
|
+
/**
|
|
157
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-memorystrategy.html#cfn-bedrockagentcore-memory-memorystrategy-semanticmemorystrategy}
|
|
158
|
+
*/
|
|
159
|
+
SemanticMemoryStrategy?: SemanticMemoryStrategy | undefined;
|
|
160
|
+
/**
|
|
161
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-memorystrategy.html#cfn-bedrockagentcore-memory-memorystrategy-summarymemorystrategy}
|
|
162
|
+
*/
|
|
163
|
+
SummaryMemoryStrategy?: SummaryMemoryStrategy | undefined;
|
|
164
|
+
/**
|
|
165
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-memorystrategy.html#cfn-bedrockagentcore-memory-memorystrategy-userpreferencememorystrategy}
|
|
166
|
+
*/
|
|
167
|
+
UserPreferenceMemoryStrategy?: UserPreferenceMemoryStrategy | undefined;
|
|
168
|
+
};
|
|
169
|
+
/**
|
|
170
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-messagebasedtriggerinput.html}
|
|
171
|
+
*/
|
|
172
|
+
export type MessageBasedTriggerInput = {
|
|
173
|
+
/**
|
|
174
|
+
* @min 1
|
|
175
|
+
* @max 50
|
|
176
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-messagebasedtriggerinput.html#cfn-bedrockagentcore-memory-messagebasedtriggerinput-messagecount}
|
|
177
|
+
*/
|
|
178
|
+
MessageCount?: number | undefined;
|
|
179
|
+
};
|
|
180
|
+
/**
|
|
181
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-selfmanagedconfiguration.html}
|
|
182
|
+
*/
|
|
183
|
+
export type SelfManagedConfiguration = {
|
|
184
|
+
/**
|
|
185
|
+
* @min 0
|
|
186
|
+
* @max 50
|
|
187
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-selfmanagedconfiguration.html#cfn-bedrockagentcore-memory-selfmanagedconfiguration-historicalcontextwindowsize}
|
|
188
|
+
*/
|
|
189
|
+
HistoricalContextWindowSize?: number | undefined;
|
|
190
|
+
/**
|
|
191
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-selfmanagedconfiguration.html#cfn-bedrockagentcore-memory-selfmanagedconfiguration-invocationconfiguration}
|
|
192
|
+
*/
|
|
193
|
+
InvocationConfiguration?: InvocationConfigurationInput | undefined;
|
|
194
|
+
/**
|
|
195
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-selfmanagedconfiguration.html#cfn-bedrockagentcore-memory-selfmanagedconfiguration-triggerconditions}
|
|
196
|
+
*/
|
|
197
|
+
TriggerConditions?: TriggerConditionInput[] | undefined;
|
|
198
|
+
};
|
|
199
|
+
/**
|
|
200
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-semanticmemorystrategy.html}
|
|
201
|
+
*/
|
|
202
|
+
export type SemanticMemoryStrategy = {
|
|
203
|
+
/**
|
|
204
|
+
* Description of the Memory resource
|
|
205
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-semanticmemorystrategy.html#cfn-bedrockagentcore-memory-semanticmemorystrategy-description}
|
|
206
|
+
*/
|
|
207
|
+
Description?: string | undefined;
|
|
208
|
+
/**
|
|
209
|
+
* Name of the Memory resource
|
|
210
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-semanticmemorystrategy.html#cfn-bedrockagentcore-memory-semanticmemorystrategy-name}
|
|
211
|
+
*/
|
|
212
|
+
Name: string;
|
|
213
|
+
/**
|
|
214
|
+
* List of namespaces for memory strategy
|
|
215
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-semanticmemorystrategy.html#cfn-bedrockagentcore-memory-semanticmemorystrategy-namespaces}
|
|
216
|
+
*/
|
|
217
|
+
Namespaces?: string[] | undefined;
|
|
218
|
+
};
|
|
219
|
+
/**
|
|
220
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-semanticoverride.html}
|
|
221
|
+
*/
|
|
222
|
+
export type SemanticOverride = {
|
|
223
|
+
/**
|
|
224
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-semanticoverride.html#cfn-bedrockagentcore-memory-semanticoverride-consolidation}
|
|
225
|
+
*/
|
|
226
|
+
Consolidation?: SemanticOverrideConsolidationConfigurationInput | undefined;
|
|
227
|
+
/**
|
|
228
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-semanticoverride.html#cfn-bedrockagentcore-memory-semanticoverride-extraction}
|
|
229
|
+
*/
|
|
230
|
+
Extraction?: SemanticOverrideExtractionConfigurationInput | undefined;
|
|
231
|
+
};
|
|
232
|
+
/**
|
|
233
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-semanticoverrideconsolidationconfigurationinput.html}
|
|
234
|
+
*/
|
|
235
|
+
export type SemanticOverrideConsolidationConfigurationInput = {
|
|
236
|
+
/**
|
|
237
|
+
* Text prompt for model instructions
|
|
238
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-semanticoverrideconsolidationconfigurationinput.html#cfn-bedrockagentcore-memory-semanticoverrideconsolidationconfigurationinput-appendtoprompt}
|
|
239
|
+
*/
|
|
240
|
+
AppendToPrompt: string;
|
|
241
|
+
/**
|
|
242
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-semanticoverrideconsolidationconfigurationinput.html#cfn-bedrockagentcore-memory-semanticoverrideconsolidationconfigurationinput-modelid}
|
|
243
|
+
*/
|
|
244
|
+
ModelId: string;
|
|
245
|
+
};
|
|
246
|
+
/**
|
|
247
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-semanticoverrideextractionconfigurationinput.html}
|
|
248
|
+
*/
|
|
249
|
+
export type SemanticOverrideExtractionConfigurationInput = {
|
|
250
|
+
/**
|
|
251
|
+
* Text prompt for model instructions
|
|
252
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-semanticoverrideextractionconfigurationinput.html#cfn-bedrockagentcore-memory-semanticoverrideextractionconfigurationinput-appendtoprompt}
|
|
253
|
+
*/
|
|
254
|
+
AppendToPrompt: string;
|
|
255
|
+
/**
|
|
256
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-semanticoverrideextractionconfigurationinput.html#cfn-bedrockagentcore-memory-semanticoverrideextractionconfigurationinput-modelid}
|
|
257
|
+
*/
|
|
258
|
+
ModelId: string;
|
|
259
|
+
};
|
|
260
|
+
/**
|
|
261
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-summarymemorystrategy.html}
|
|
262
|
+
*/
|
|
263
|
+
export type SummaryMemoryStrategy = {
|
|
264
|
+
/**
|
|
265
|
+
* Description of the Memory resource
|
|
266
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-summarymemorystrategy.html#cfn-bedrockagentcore-memory-summarymemorystrategy-description}
|
|
267
|
+
*/
|
|
268
|
+
Description?: string | undefined;
|
|
269
|
+
/**
|
|
270
|
+
* Name of the Memory resource
|
|
271
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-summarymemorystrategy.html#cfn-bedrockagentcore-memory-summarymemorystrategy-name}
|
|
272
|
+
*/
|
|
273
|
+
Name: string;
|
|
274
|
+
/**
|
|
275
|
+
* List of namespaces for memory strategy
|
|
276
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-summarymemorystrategy.html#cfn-bedrockagentcore-memory-summarymemorystrategy-namespaces}
|
|
277
|
+
*/
|
|
278
|
+
Namespaces?: string[] | undefined;
|
|
279
|
+
};
|
|
280
|
+
/**
|
|
281
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-summaryoverride.html}
|
|
282
|
+
*/
|
|
283
|
+
export type SummaryOverride = {
|
|
284
|
+
/**
|
|
285
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-summaryoverride.html#cfn-bedrockagentcore-memory-summaryoverride-consolidation}
|
|
286
|
+
*/
|
|
287
|
+
Consolidation?: SummaryOverrideConsolidationConfigurationInput | undefined;
|
|
288
|
+
};
|
|
289
|
+
/**
|
|
290
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-summaryoverrideconsolidationconfigurationinput.html}
|
|
291
|
+
*/
|
|
292
|
+
export type SummaryOverrideConsolidationConfigurationInput = {
|
|
293
|
+
/**
|
|
294
|
+
* Text prompt for model instructions
|
|
295
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-summaryoverrideconsolidationconfigurationinput.html#cfn-bedrockagentcore-memory-summaryoverrideconsolidationconfigurationinput-appendtoprompt}
|
|
296
|
+
*/
|
|
297
|
+
AppendToPrompt: string;
|
|
298
|
+
/**
|
|
299
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-summaryoverrideconsolidationconfigurationinput.html#cfn-bedrockagentcore-memory-summaryoverrideconsolidationconfigurationinput-modelid}
|
|
300
|
+
*/
|
|
301
|
+
ModelId: string;
|
|
302
|
+
};
|
|
303
|
+
/**
|
|
304
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-timebasedtriggerinput.html}
|
|
305
|
+
*/
|
|
306
|
+
export type TimeBasedTriggerInput = {
|
|
307
|
+
/**
|
|
308
|
+
* @min 10
|
|
309
|
+
* @max 3000
|
|
310
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-timebasedtriggerinput.html#cfn-bedrockagentcore-memory-timebasedtriggerinput-idlesessiontimeout}
|
|
311
|
+
*/
|
|
312
|
+
IdleSessionTimeout?: number | undefined;
|
|
313
|
+
};
|
|
314
|
+
/**
|
|
315
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-tokenbasedtriggerinput.html}
|
|
316
|
+
*/
|
|
317
|
+
export type TokenBasedTriggerInput = {
|
|
318
|
+
/**
|
|
319
|
+
* @min 100
|
|
320
|
+
* @max 500000
|
|
321
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-tokenbasedtriggerinput.html#cfn-bedrockagentcore-memory-tokenbasedtriggerinput-tokencount}
|
|
322
|
+
*/
|
|
323
|
+
TokenCount?: number | undefined;
|
|
324
|
+
};
|
|
325
|
+
/**
|
|
326
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-triggerconditioninput.html}
|
|
327
|
+
*/
|
|
328
|
+
export type TriggerConditionInput = {
|
|
329
|
+
/**
|
|
330
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-triggerconditioninput.html#cfn-bedrockagentcore-memory-triggerconditioninput-messagebasedtrigger}
|
|
331
|
+
*/
|
|
332
|
+
MessageBasedTrigger?: MessageBasedTriggerInput | undefined;
|
|
333
|
+
/**
|
|
334
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-triggerconditioninput.html#cfn-bedrockagentcore-memory-triggerconditioninput-timebasedtrigger}
|
|
335
|
+
*/
|
|
336
|
+
TimeBasedTrigger?: TimeBasedTriggerInput | undefined;
|
|
337
|
+
/**
|
|
338
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-triggerconditioninput.html#cfn-bedrockagentcore-memory-triggerconditioninput-tokenbasedtrigger}
|
|
339
|
+
*/
|
|
340
|
+
TokenBasedTrigger?: TokenBasedTriggerInput | undefined;
|
|
341
|
+
};
|
|
342
|
+
/**
|
|
343
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-userpreferencememorystrategy.html}
|
|
344
|
+
*/
|
|
345
|
+
export type UserPreferenceMemoryStrategy = {
|
|
346
|
+
/**
|
|
347
|
+
* Description of the Memory resource
|
|
348
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-userpreferencememorystrategy.html#cfn-bedrockagentcore-memory-userpreferencememorystrategy-description}
|
|
349
|
+
*/
|
|
350
|
+
Description?: string | undefined;
|
|
351
|
+
/**
|
|
352
|
+
* Name of the Memory resource
|
|
353
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-userpreferencememorystrategy.html#cfn-bedrockagentcore-memory-userpreferencememorystrategy-name}
|
|
354
|
+
*/
|
|
355
|
+
Name: string;
|
|
356
|
+
/**
|
|
357
|
+
* List of namespaces for memory strategy
|
|
358
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-userpreferencememorystrategy.html#cfn-bedrockagentcore-memory-userpreferencememorystrategy-namespaces}
|
|
359
|
+
*/
|
|
360
|
+
Namespaces?: string[] | undefined;
|
|
361
|
+
};
|
|
362
|
+
/**
|
|
363
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-userpreferenceoverride.html}
|
|
364
|
+
*/
|
|
365
|
+
export type UserPreferenceOverride = {
|
|
366
|
+
/**
|
|
367
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-userpreferenceoverride.html#cfn-bedrockagentcore-memory-userpreferenceoverride-consolidation}
|
|
368
|
+
*/
|
|
369
|
+
Consolidation?: UserPreferenceOverrideConsolidationConfigurationInput | undefined;
|
|
370
|
+
/**
|
|
371
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-userpreferenceoverride.html#cfn-bedrockagentcore-memory-userpreferenceoverride-extraction}
|
|
372
|
+
*/
|
|
373
|
+
Extraction?: UserPreferenceOverrideExtractionConfigurationInput | undefined;
|
|
374
|
+
};
|
|
375
|
+
/**
|
|
376
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-userpreferenceoverrideconsolidationconfigurationinput.html}
|
|
377
|
+
*/
|
|
378
|
+
export type UserPreferenceOverrideConsolidationConfigurationInput = {
|
|
379
|
+
/**
|
|
380
|
+
* Text prompt for model instructions
|
|
381
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-userpreferenceoverrideconsolidationconfigurationinput.html#cfn-bedrockagentcore-memory-userpreferenceoverrideconsolidationconfigurationinput-appendtoprompt}
|
|
382
|
+
*/
|
|
383
|
+
AppendToPrompt: string;
|
|
384
|
+
/**
|
|
385
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-userpreferenceoverrideconsolidationconfigurationinput.html#cfn-bedrockagentcore-memory-userpreferenceoverrideconsolidationconfigurationinput-modelid}
|
|
386
|
+
*/
|
|
387
|
+
ModelId: string;
|
|
388
|
+
};
|
|
389
|
+
/**
|
|
390
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-userpreferenceoverrideextractionconfigurationinput.html}
|
|
391
|
+
*/
|
|
392
|
+
export type UserPreferenceOverrideExtractionConfigurationInput = {
|
|
393
|
+
/**
|
|
394
|
+
* Text prompt for model instructions
|
|
395
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-userpreferenceoverrideextractionconfigurationinput.html#cfn-bedrockagentcore-memory-userpreferenceoverrideextractionconfigurationinput-appendtoprompt}
|
|
396
|
+
*/
|
|
397
|
+
AppendToPrompt: string;
|
|
398
|
+
/**
|
|
399
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-userpreferenceoverrideextractionconfigurationinput.html#cfn-bedrockagentcore-memory-userpreferenceoverrideextractionconfigurationinput-modelid}
|
|
400
|
+
*/
|
|
401
|
+
ModelId: string;
|
|
402
|
+
};
|
|
403
|
+
//# sourceMappingURL=aws-bedrockagentcore-memory.d.ts.map
|
|
@@ -175,6 +175,7 @@ export type NetworkConfiguration = {
|
|
|
175
175
|
*/
|
|
176
176
|
NetworkMode: NetworkMode;
|
|
177
177
|
/**
|
|
178
|
+
* Network mode configuration for VPC
|
|
178
179
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-networkconfiguration.html#cfn-bedrockagentcore-runtime-networkconfiguration-networkmodeconfig}
|
|
179
180
|
*/
|
|
180
181
|
NetworkModeConfig?: VpcConfig | undefined;
|
|
@@ -194,10 +195,12 @@ export type ProtocolConfiguration = "MCP" | "HTTP";
|
|
|
194
195
|
*/
|
|
195
196
|
export type VpcConfig = {
|
|
196
197
|
/**
|
|
198
|
+
* Security groups for VPC
|
|
197
199
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-vpcconfig.html#cfn-bedrockagentcore-runtime-vpcconfig-securitygroups}
|
|
198
200
|
*/
|
|
199
201
|
SecurityGroups: string[];
|
|
200
202
|
/**
|
|
203
|
+
* Subnets for VPC
|
|
201
204
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-vpcconfig.html#cfn-bedrockagentcore-runtime-vpcconfig-subnets}
|
|
202
205
|
*/
|
|
203
206
|
Subnets: string[];
|
|
@@ -40,6 +40,11 @@ export type DAXClusterProps = {
|
|
|
40
40
|
*/
|
|
41
41
|
IAMRoleARN: string;
|
|
42
42
|
/**
|
|
43
|
+
* The IP address type of the cluster. Values are:
|
|
44
|
+
*
|
|
45
|
+
* - `ipv4` - IPv4 addresses only
|
|
46
|
+
* - `ipv6` - IPv6 addresses only
|
|
47
|
+
* - `dual_stack` - Both IPv4 and IPv6 addresses
|
|
43
48
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-networktype}
|
|
44
49
|
*/
|
|
45
50
|
NetworkType?: string | undefined;
|
|
@@ -137,7 +137,7 @@ export type ECSServiceProps = {
|
|
|
137
137
|
*/
|
|
138
138
|
ForceNewDeployment?: ForceNewDeployment | undefined;
|
|
139
139
|
/**
|
|
140
|
-
* The period of time, in seconds, that the Amazon
|
|
140
|
+
* The period of time, in seconds, that the Amazon ECS service scheduler ignores unhealthy Elastic Load Balancing, VPC Lattice, and container health checks after a task has first started. If you do not specify a health check grace period value, the default value of 0 is used. If you do not use any of the health checks, then `healthCheckGracePeriodSeconds` is unused.
|
|
141
141
|
*
|
|
142
142
|
* If your service has more running tasks than desired, unhealthy tasks in the grace period might be stopped to reach the desired count.
|
|
143
143
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html#cfn-ecs-service-healthcheckgraceperiodseconds}
|
|
@@ -139,7 +139,7 @@ export type ECSTaskDefinitionProps = {
|
|
|
139
139
|
*/
|
|
140
140
|
ProxyConfiguration?: ProxyConfiguration | undefined;
|
|
141
141
|
/**
|
|
142
|
-
* The task launch types the task definition was validated against. The valid values are `EC2` , `FARGATE` , and `EXTERNAL` . For more information, see [Amazon ECS launch types](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/launch_types.html) in the *Amazon Elastic Container Service Developer Guide* .
|
|
142
|
+
* The task launch types the task definition was validated against. The valid values are `MANAGED_INSTANCES` , `EC2` , `FARGATE` , and `EXTERNAL` . For more information, see [Amazon ECS launch types](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/launch_types.html) in the *Amazon Elastic Container Service Developer Guide* .
|
|
143
143
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskdefinition.html#cfn-ecs-taskdefinition-requirescompatibilities}
|
|
144
144
|
*/
|
|
145
145
|
RequiresCompatibilities?: string[] | undefined;
|
|
@@ -50,7 +50,7 @@ export type ImageBuilderImageProps = {
|
|
|
50
50
|
*/
|
|
51
51
|
InfrastructureConfigurationArn: string;
|
|
52
52
|
/**
|
|
53
|
-
* The logging configuration
|
|
53
|
+
* The logging configuration that's defined for the image. Image Builder uses the defined settings to direct execution log output during image creation.
|
|
54
54
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-loggingconfiguration}
|
|
55
55
|
*/
|
|
56
56
|
LoggingConfiguration?: ImageLoggingConfiguration | undefined;
|
|
@@ -106,7 +106,7 @@ export type ImageBuilderImageProps = {
|
|
|
106
106
|
*/
|
|
107
107
|
InfrastructureConfigurationArn: string;
|
|
108
108
|
/**
|
|
109
|
-
* The logging configuration
|
|
109
|
+
* The logging configuration that's defined for the image. Image Builder uses the defined settings to direct execution log output during image creation.
|
|
110
110
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-loggingconfiguration}
|
|
111
111
|
*/
|
|
112
112
|
LoggingConfiguration?: ImageLoggingConfiguration | undefined;
|
|
@@ -162,7 +162,7 @@ export type ImageBuilderImageProps = {
|
|
|
162
162
|
*/
|
|
163
163
|
InfrastructureConfigurationArn?: string | undefined;
|
|
164
164
|
/**
|
|
165
|
-
* The logging configuration
|
|
165
|
+
* The logging configuration that's defined for the image. Image Builder uses the defined settings to direct execution log output during image creation.
|
|
166
166
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-loggingconfiguration}
|
|
167
167
|
*/
|
|
168
168
|
LoggingConfiguration?: ImageLoggingConfiguration | undefined;
|
|
@@ -219,12 +219,12 @@ export type EcrConfiguration = {
|
|
|
219
219
|
RepositoryName?: string | undefined;
|
|
220
220
|
};
|
|
221
221
|
/**
|
|
222
|
-
* The logging configuration
|
|
222
|
+
* The logging configuration that's defined for the image. Image Builder uses the defined settings to direct execution log output during image creation.
|
|
223
223
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imageloggingconfiguration.html}
|
|
224
224
|
*/
|
|
225
225
|
export type ImageLoggingConfiguration = {
|
|
226
226
|
/**
|
|
227
|
-
* The name
|
|
227
|
+
* The log group name that Image Builder uses for image creation. If not specified, the log group name defaults to `/aws/imagebuilder/image-name` .
|
|
228
228
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imageloggingconfiguration.html#cfn-imagebuilder-image-imageloggingconfiguration-loggroupname}
|
|
229
229
|
*/
|
|
230
230
|
LogGroupName?: string | undefined;
|
|
@@ -55,7 +55,7 @@ export type ImageBuilderImagePipelineProps = {
|
|
|
55
55
|
*/
|
|
56
56
|
InfrastructureConfigurationArn: string;
|
|
57
57
|
/**
|
|
58
|
-
*
|
|
58
|
+
* Defines logging configuration for the output image.
|
|
59
59
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-loggingconfiguration}
|
|
60
60
|
*/
|
|
61
61
|
LoggingConfiguration?: PipelineLoggingConfiguration | undefined;
|
|
@@ -131,7 +131,7 @@ export type ImageBuilderImagePipelineProps = {
|
|
|
131
131
|
*/
|
|
132
132
|
InfrastructureConfigurationArn: string;
|
|
133
133
|
/**
|
|
134
|
-
*
|
|
134
|
+
* Defines logging configuration for the output image.
|
|
135
135
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-loggingconfiguration}
|
|
136
136
|
*/
|
|
137
137
|
LoggingConfiguration?: PipelineLoggingConfiguration | undefined;
|
|
@@ -177,12 +177,12 @@ export type ImageBuilderImagePipelineAttribs = {
|
|
|
177
177
|
Name: string;
|
|
178
178
|
};
|
|
179
179
|
/**
|
|
180
|
-
*
|
|
180
|
+
* Defines the rules by which an image pipeline is automatically disabled when it fails.
|
|
181
181
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-autodisablepolicy.html}
|
|
182
182
|
*/
|
|
183
183
|
export type AutoDisablePolicy = {
|
|
184
184
|
/**
|
|
185
|
-
* The number of consecutive
|
|
185
|
+
* The number of consecutive scheduled image pipeline executions that must fail before Image Builder automatically disables the pipeline.
|
|
186
186
|
* @min 1
|
|
187
187
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-autodisablepolicy.html#cfn-imagebuilder-imagepipeline-autodisablepolicy-failurecount}
|
|
188
188
|
*/
|
|
@@ -241,17 +241,17 @@ export type ImageTestsConfiguration = {
|
|
|
241
241
|
TimeoutMinutes?: number | undefined;
|
|
242
242
|
};
|
|
243
243
|
/**
|
|
244
|
-
* The logging configuration
|
|
244
|
+
* The logging configuration that's defined for pipeline execution.
|
|
245
245
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-pipelineloggingconfiguration.html}
|
|
246
246
|
*/
|
|
247
247
|
export type PipelineLoggingConfiguration = {
|
|
248
248
|
/**
|
|
249
|
-
* The name
|
|
249
|
+
* The log group name that Image Builder uses for image creation. If not specified, the log group name defaults to `/aws/imagebuilder/image-name` .
|
|
250
250
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-pipelineloggingconfiguration.html#cfn-imagebuilder-imagepipeline-pipelineloggingconfiguration-imageloggroupname}
|
|
251
251
|
*/
|
|
252
252
|
ImageLogGroupName?: string | undefined;
|
|
253
253
|
/**
|
|
254
|
-
* The name of the log group
|
|
254
|
+
* The log group name that Image Builder uses for the log output during creation of a new pipeline. If not specified, the pipeline log group name defaults to `/aws/imagebuilder/pipeline/pipeline-name` .
|
|
255
255
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-pipelineloggingconfiguration.html#cfn-imagebuilder-imagepipeline-pipelineloggingconfiguration-pipelineloggroupname}
|
|
256
256
|
*/
|
|
257
257
|
PipelineLogGroupName?: string | undefined;
|
|
@@ -15,7 +15,7 @@ export type ImageBuilderImageRecipeProps = {
|
|
|
15
15
|
*/
|
|
16
16
|
AdditionalInstanceConfiguration?: AdditionalInstanceConfiguration | undefined;
|
|
17
17
|
/**
|
|
18
|
-
*
|
|
18
|
+
* Tags that are applied to the AMI that Image Builder creates during the Build phase prior to image distribution.
|
|
19
19
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-amitags}
|
|
20
20
|
*/
|
|
21
21
|
AmiTags?: Record<string, string> | undefined;
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import type { ResourceDefinitionWithAttributes } from "../main.ts";
|
|
2
2
|
/**
|
|
3
|
+
* > The AWS IoT SiteWise Monitor feature will no longer be open to new customers starting November 7, 2025 . If you would like to use the AWS IoT SiteWise Monitor feature, sign up prior to that date. Existing customers can continue to use the service as normal. For more information, see [AWS IoT SiteWise Monitor availability change](https://docs.aws.amazon.com/iot-sitewise/latest/appguide/iotsitewise-monitor-availability-change.html) .
|
|
4
|
+
*
|
|
3
5
|
* Creates an access policy that grants the specified identity (IAM Identity Center user, IAM Identity Center group, or IAM user) access to the specified AWS IoT SiteWise Monitor portal or project resource.
|
|
4
6
|
*
|
|
5
7
|
* > Support for access policies that use an SSO Group as the identity is not supported at this time.
|
|
@@ -7,6 +9,8 @@ import type { ResourceDefinitionWithAttributes } from "../main.ts";
|
|
|
7
9
|
*/
|
|
8
10
|
export type IoTSiteWiseAccessPolicy = ResourceDefinitionWithAttributes<"AWS::IoTSiteWise::AccessPolicy", IoTSiteWiseAccessPolicyProps, IoTSiteWiseAccessPolicyAttribs>;
|
|
9
11
|
/**
|
|
12
|
+
* > The AWS IoT SiteWise Monitor feature will no longer be open to new customers starting November 7, 2025 . If you would like to use the AWS IoT SiteWise Monitor feature, sign up prior to that date. Existing customers can continue to use the service as normal. For more information, see [AWS IoT SiteWise Monitor availability change](https://docs.aws.amazon.com/iot-sitewise/latest/appguide/iotsitewise-monitor-availability-change.html) .
|
|
13
|
+
*
|
|
10
14
|
* Creates an access policy that grants the specified identity (IAM Identity Center user, IAM Identity Center group, or IAM user) access to the specified AWS IoT SiteWise Monitor portal or project resource.
|
|
11
15
|
*
|
|
12
16
|
* > Support for access policies that use an SSO Group as the identity is not supported at this time.
|
|
@@ -65,6 +65,7 @@ export type IoTSiteWiseAssetModelProps = {
|
|
|
65
65
|
*
|
|
66
66
|
* - *ASSET_MODEL* – (default) An asset model that you can use to create assets. Can't be included as a component in another asset model.
|
|
67
67
|
* - *COMPONENT_MODEL* – A reusable component that you can include in the composite models of other asset models. You can't create assets directly from this type of asset model.
|
|
68
|
+
* - *INTERFACE* – An interface is a type of model that defines a standard structure that can be applied to different asset models.
|
|
68
69
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-assetmodel.html#cfn-iotsitewise-assetmodel-assetmodeltype}
|
|
69
70
|
*/
|
|
70
71
|
AssetModelType?: string | undefined;
|
|
@@ -264,38 +265,38 @@ export type DataType = "STRING" | "INTEGER" | "DOUBLE" | "BOOLEAN" | "STRUCT";
|
|
|
264
265
|
*/
|
|
265
266
|
export type DataTypeSpec = "AWS/ALARM_STATE";
|
|
266
267
|
/**
|
|
267
|
-
* Contains information about
|
|
268
|
+
* Contains information about applied interface property and asset model property
|
|
268
269
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-assetmodel-enforcedassetmodelinterfacepropertymapping.html}
|
|
269
270
|
*/
|
|
270
271
|
export type EnforcedAssetModelInterfacePropertyMapping = {
|
|
271
272
|
/**
|
|
272
|
-
* The external ID of the
|
|
273
|
+
* The external ID of the linked asset model property
|
|
273
274
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-assetmodel-enforcedassetmodelinterfacepropertymapping.html#cfn-iotsitewise-assetmodel-enforcedassetmodelinterfacepropertymapping-assetmodelpropertyexternalid}
|
|
274
275
|
*/
|
|
275
276
|
AssetModelPropertyExternalId?: string | undefined;
|
|
276
277
|
/**
|
|
277
|
-
* The logical ID of the
|
|
278
|
+
* The logical ID of the linked asset model property
|
|
278
279
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-assetmodel-enforcedassetmodelinterfacepropertymapping.html#cfn-iotsitewise-assetmodel-enforcedassetmodelinterfacepropertymapping-assetmodelpropertylogicalid}
|
|
279
280
|
*/
|
|
280
281
|
AssetModelPropertyLogicalId?: string | undefined;
|
|
281
282
|
/**
|
|
282
|
-
* The external ID of the
|
|
283
|
+
* The external ID of the applied interface property
|
|
283
284
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-assetmodel-enforcedassetmodelinterfacepropertymapping.html#cfn-iotsitewise-assetmodel-enforcedassetmodelinterfacepropertymapping-interfaceassetmodelpropertyexternalid}
|
|
284
285
|
*/
|
|
285
286
|
InterfaceAssetModelPropertyExternalId: string;
|
|
286
287
|
};
|
|
287
288
|
/**
|
|
288
|
-
* Contains information about
|
|
289
|
+
* Contains information about applied interface hierarchy and asset model hierarchy
|
|
289
290
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-assetmodel-enforcedassetmodelinterfacerelationship.html}
|
|
290
291
|
*/
|
|
291
292
|
export type EnforcedAssetModelInterfaceRelationship = {
|
|
292
293
|
/**
|
|
293
|
-
* The ID of the
|
|
294
|
+
* The ID of the asset model that has the interface applied to it.
|
|
294
295
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-assetmodel-enforcedassetmodelinterfacerelationship.html#cfn-iotsitewise-assetmodel-enforcedassetmodelinterfacerelationship-interfaceassetmodelid}
|
|
295
296
|
*/
|
|
296
297
|
InterfaceAssetModelId?: string | undefined;
|
|
297
298
|
/**
|
|
298
|
-
*
|
|
299
|
+
* A list of property mappings between the interface asset model and the asset model where the interface is applied.
|
|
299
300
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-assetmodel-enforcedassetmodelinterfacerelationship.html#cfn-iotsitewise-assetmodel-enforcedassetmodelinterfacerelationship-propertymappings}
|
|
300
301
|
*/
|
|
301
302
|
PropertyMappings?: EnforcedAssetModelInterfacePropertyMapping[] | undefined;
|